diff --git a/src/grammar.json b/src/grammar.json index 2cf9992..88b0c19 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -2830,6 +2830,18 @@ } ] }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "macro_modifier" + }, + { + "type": "BLANK" + } + ] + }, { "type": "FIELD", "name": "declarator", @@ -2863,6 +2875,18 @@ } ] }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "macro_modifier" + }, + { + "type": "BLANK" + } + ] + }, { "type": "SYMBOL", "name": "_declaration_specifiers" @@ -2928,6 +2952,18 @@ } ] }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "macro_modifier" + }, + { + "type": "BLANK" + } + ] + }, { "type": "SYMBOL", "name": "_declaration_declarator" @@ -2983,6 +3019,18 @@ } ] }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "macro_modifier" + }, + { + "type": "BLANK" + } + ] + }, { "type": "SYMBOL", "name": "_declaration_declarator" @@ -3335,7 +3383,11 @@ }, { "type": "STRING", - "value": "__init" + "value": "__noreturn" + }, + { + "type": "STRING", + "value": "__cold" } ] } @@ -3463,6 +3515,19 @@ } ] }, + "macro_modifier": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "__init" + }, + { + "type": "STRING", + "value": "__exit" + } + ] + }, "ms_call_modifier": { "type": "CHOICE", "members": [ @@ -3802,6 +3867,18 @@ } ] }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "macro_modifier" + }, + { + "type": "BLANK" + } + ] + }, { "type": "SYMBOL", "name": "_declarator" @@ -3835,6 +3912,18 @@ } ] }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "macro_modifier" + }, + { + "type": "BLANK" + } + ] + }, { "type": "SYMBOL", "name": "_field_declarator" @@ -3868,6 +3957,18 @@ } ] }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "macro_modifier" + }, + { + "type": "BLANK" + } + ] + }, { "type": "SYMBOL", "name": "_type_declarator" @@ -3901,6 +4002,18 @@ } ] }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "macro_modifier" + }, + { + "type": "BLANK" + } + ] + }, { "type": "SYMBOL", "name": "_abstract_declarator" @@ -5608,6 +5721,31 @@ }, "named": true, "value": "preproc_ifdef" + }, + { + "type": "SYMBOL", + "name": "macro_invocation" + } + ] + }, + "macro_invocation": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "declarator", + "content": { + "type": "SYMBOL", + "name": "_declarator" + } + }, + { + "type": "FIELD", + "name": "parameters", + "content": { + "type": "SYMBOL", + "name": "parameter_list" + } } ] }, diff --git a/src/parser.c b/src/parser.c index 55577fd..ea25352 100644 --- a/src/parser.c +++ b/src/parser.c @@ -13,15 +13,15 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 2066 -#define LARGE_STATE_COUNT 456 -#define SYMBOL_COUNT 366 +#define STATE_COUNT 2317 +#define LARGE_STATE_COUNT 523 +#define SYMBOL_COUNT 371 #define ALIAS_COUNT 3 -#define TOKEN_COUNT 165 +#define TOKEN_COUNT 168 #define EXTERNAL_TOKEN_COUNT 0 #define FIELD_COUNT 39 #define MAX_ALIAS_SEQUENCE_LENGTH 10 -#define PRODUCTION_ID_COUNT 132 +#define PRODUCTION_ID_COUNT 139 enum ts_symbol_identifiers { sym_identifier = 1, @@ -76,322 +76,327 @@ enum ts_symbol_identifiers { anon_sym___read_mostly = 50, anon_sym___must_hold = 51, anon_sym___ro_after_init = 52, - anon_sym___init = 53, - anon_sym_COLON_COLON = 54, - anon_sym_LBRACK_LBRACK = 55, - anon_sym_RBRACK_RBRACK = 56, - anon_sym___declspec = 57, - anon_sym___based = 58, - anon_sym___cdecl = 59, - anon_sym___clrcall = 60, - anon_sym___stdcall = 61, - anon_sym___fastcall = 62, - anon_sym___thiscall = 63, - anon_sym___vectorcall = 64, - sym_ms_restrict_modifier = 65, - sym_ms_unsigned_ptr_modifier = 66, - sym_ms_signed_ptr_modifier = 67, - anon_sym__unaligned = 68, - anon_sym___unaligned = 69, - anon_sym_LBRACE = 70, - anon_sym_RBRACE = 71, - anon_sym_signed = 72, - anon_sym_unsigned = 73, - anon_sym_long = 74, - anon_sym_short = 75, - anon_sym_LBRACK = 76, - anon_sym_static = 77, - anon_sym_RBRACK = 78, - anon_sym_EQ = 79, - anon_sym_auto = 80, - anon_sym_register = 81, - anon_sym_inline = 82, - anon_sym___inline = 83, - anon_sym___inline__ = 84, - anon_sym___forceinline = 85, - anon_sym_thread_local = 86, - anon_sym___thread = 87, - anon_sym_const = 88, - anon_sym_constexpr = 89, - anon_sym_volatile = 90, - anon_sym_restrict = 91, - anon_sym___restrict__ = 92, - anon_sym__Atomic = 93, - anon_sym__Noreturn = 94, - anon_sym_noreturn = 95, - anon_sym_alignas = 96, - anon_sym__Alignas = 97, - sym_primitive_type = 98, - anon_sym_enum = 99, - anon_sym_COLON = 100, - anon_sym_struct = 101, - anon_sym___aligned = 102, - anon_sym_union = 103, - anon_sym_if = 104, - anon_sym_else = 105, - anon_sym_switch = 106, - anon_sym_case = 107, - anon_sym_default = 108, - anon_sym_while = 109, - anon_sym_do = 110, - anon_sym_for = 111, - anon_sym_return = 112, - anon_sym_break = 113, - anon_sym_continue = 114, - anon_sym_goto = 115, - anon_sym___try = 116, - anon_sym___except = 117, - anon_sym___finally = 118, - anon_sym___leave = 119, - anon_sym_QMARK = 120, - anon_sym_STAR_EQ = 121, - anon_sym_SLASH_EQ = 122, - anon_sym_PERCENT_EQ = 123, - anon_sym_PLUS_EQ = 124, - anon_sym_DASH_EQ = 125, - anon_sym_LT_LT_EQ = 126, - anon_sym_GT_GT_EQ = 127, - anon_sym_AMP_EQ = 128, - anon_sym_CARET_EQ = 129, - anon_sym_PIPE_EQ = 130, - anon_sym_DASH_DASH = 131, - anon_sym_PLUS_PLUS = 132, - anon_sym_sizeof = 133, - anon_sym___alignof__ = 134, - anon_sym___alignof = 135, - anon_sym__alignof = 136, - anon_sym_alignof = 137, - anon_sym__Alignof = 138, - anon_sym_offsetof = 139, - anon_sym__Generic = 140, - anon_sym_asm = 141, - anon_sym___asm__ = 142, - anon_sym_DOT = 143, - anon_sym_DASH_GT = 144, - sym_number_literal = 145, - anon_sym_L_SQUOTE = 146, - anon_sym_u_SQUOTE = 147, - anon_sym_U_SQUOTE = 148, - anon_sym_u8_SQUOTE = 149, - anon_sym_SQUOTE = 150, - aux_sym_char_literal_token1 = 151, - anon_sym_L_DQUOTE = 152, - anon_sym_u_DQUOTE = 153, - anon_sym_U_DQUOTE = 154, - anon_sym_u8_DQUOTE = 155, - anon_sym_DQUOTE = 156, - aux_sym_string_literal_token1 = 157, - sym_escape_sequence = 158, - sym_system_lib_string = 159, - sym_true = 160, - sym_false = 161, - anon_sym_NULL = 162, - anon_sym_nullptr = 163, - sym_comment = 164, - sym_translation_unit = 165, - sym__top_level_item = 166, - sym__block_item = 167, - sym_preproc_include = 168, - sym_preproc_def = 169, - sym_preproc_function_def = 170, - sym_preproc_params = 171, - sym_preproc_call = 172, - sym_preproc_if = 173, - sym_preproc_ifdef = 174, - sym_preproc_else = 175, - sym_preproc_elif = 176, - sym_preproc_elifdef = 177, - sym_preproc_if_in_field_declaration_list = 178, - sym_preproc_ifdef_in_field_declaration_list = 179, - sym_preproc_else_in_field_declaration_list = 180, - sym_preproc_elif_in_field_declaration_list = 181, - sym_preproc_elifdef_in_field_declaration_list = 182, - sym_preproc_if_in_enumerator_list = 183, - sym_preproc_ifdef_in_enumerator_list = 184, - sym_preproc_else_in_enumerator_list = 185, - sym_preproc_elif_in_enumerator_list = 186, - sym_preproc_elifdef_in_enumerator_list = 187, - sym_preproc_if_in_enumerator_list_no_comma = 188, - sym_preproc_ifdef_in_enumerator_list_no_comma = 189, - sym_preproc_else_in_enumerator_list_no_comma = 190, - sym_preproc_elif_in_enumerator_list_no_comma = 191, - sym_preproc_elifdef_in_enumerator_list_no_comma = 192, - sym_preproc_arg = 193, - sym__preproc_expression = 194, - sym_preproc_parenthesized_expression = 195, - sym_preproc_defined = 196, - sym_preproc_unary_expression = 197, - sym_preproc_call_expression = 198, - sym_preproc_argument_list = 199, - sym_preproc_binary_expression = 200, - sym_function_definition = 201, - sym__old_style_function_definition = 202, - sym_declaration = 203, - sym_type_definition = 204, - sym__type_definition_type = 205, - sym__type_definition_declarators = 206, - sym__declaration_modifiers = 207, - sym__declaration_specifiers = 208, - sym_linkage_specification = 209, - sym_attribute_specifier = 210, - sym_attribute = 211, - sym_attribute_declaration = 212, - sym_ms_declspec_modifier = 213, - sym_ms_based_modifier = 214, - sym_ms_call_modifier = 215, - sym_ms_unaligned_ptr_modifier = 216, - sym_ms_pointer_modifier = 217, - sym_declaration_list = 218, - sym__declarator = 219, - sym__declaration_declarator = 220, - sym__field_declarator = 221, - sym__type_declarator = 222, - sym__abstract_declarator = 223, - sym_parenthesized_declarator = 224, - sym_parenthesized_field_declarator = 225, - sym_parenthesized_type_declarator = 226, - sym_abstract_parenthesized_declarator = 227, - sym_attributed_declarator = 228, - sym_attributed_field_declarator = 229, - sym_attributed_type_declarator = 230, - sym_pointer_declarator = 231, - sym_pointer_field_declarator = 232, - sym_pointer_type_declarator = 233, - sym_abstract_pointer_declarator = 234, - sym_function_declarator = 235, - sym__function_declaration_declarator = 236, - sym_function_field_declarator = 237, - sym_function_type_declarator = 238, - sym_abstract_function_declarator = 239, - sym__old_style_function_declarator = 240, - sym_array_declarator = 241, - sym_array_field_declarator = 242, - sym_array_type_declarator = 243, - sym_abstract_array_declarator = 244, - sym_init_declarator = 245, - sym_compound_statement = 246, - sym_storage_class_specifier = 247, - sym_type_qualifier = 248, - sym_alignas_qualifier = 249, - sym_type_specifier = 250, - sym_sized_type_specifier = 251, - sym_enum_specifier = 252, - sym_enumerator_list = 253, - sym_struct_specifier = 254, - sym_union_specifier = 255, - sym_field_declaration_list = 256, - sym__field_declaration_list_item = 257, - sym_field_declaration = 258, - sym__field_declaration_declarator = 259, - sym_bitfield_clause = 260, - sym_enumerator = 261, - sym_variadic_parameter = 262, - sym_parameter_list = 263, - sym__old_style_parameter_list = 264, - sym_parameter_declaration = 265, - sym_attributed_statement = 266, - sym_statement = 267, - sym__top_level_statement = 268, - sym_labeled_statement = 269, - sym__top_level_expression_statement = 270, - sym_expression_statement = 271, - sym_if_statement = 272, - sym_else_clause = 273, - sym_switch_statement = 274, - sym_case_statement = 275, - sym_while_statement = 276, - sym_do_statement = 277, - sym_for_statement = 278, - sym__for_statement_body = 279, - sym_return_statement = 280, - sym_break_statement = 281, - sym_continue_statement = 282, - sym_goto_statement = 283, - sym_seh_try_statement = 284, - sym_seh_except_clause = 285, - sym_seh_finally_clause = 286, - sym_seh_leave_statement = 287, - sym_expression = 288, - sym__string = 289, - sym_comma_expression = 290, - sym_conditional_expression = 291, - sym_assignment_expression = 292, - sym_pointer_expression = 293, - sym_unary_expression = 294, - sym_binary_expression = 295, - sym_update_expression = 296, - sym_cast_expression = 297, - sym_type_descriptor = 298, - sym_sizeof_expression = 299, - sym_alignof_expression = 300, - sym_offsetof_expression = 301, - sym_generic_expression = 302, - sym_subscript_expression = 303, - sym_call_expression = 304, - sym_gnu_asm_expression = 305, - sym_gnu_asm_qualifier = 306, - sym_gnu_asm_output_operand_list = 307, - sym_gnu_asm_output_operand = 308, - sym_gnu_asm_input_operand_list = 309, - sym_gnu_asm_input_operand = 310, - sym_gnu_asm_clobber_list = 311, - sym_gnu_asm_goto_list = 312, - sym_argument_list = 313, - sym_field_expression = 314, - sym_compound_literal_expression = 315, - sym_parenthesized_expression = 316, - sym_initializer_list = 317, - sym_initializer_pair = 318, - sym_subscript_designator = 319, - sym_subscript_range_designator = 320, - sym_field_designator = 321, - sym_char_literal = 322, - sym_concatenated_string = 323, - sym_string_literal = 324, - sym_null = 325, - sym__empty_declaration = 326, - sym_macro_type_specifier = 327, - aux_sym_translation_unit_repeat1 = 328, - aux_sym_preproc_params_repeat1 = 329, - aux_sym_preproc_if_repeat1 = 330, - aux_sym_preproc_if_in_field_declaration_list_repeat1 = 331, - aux_sym_preproc_if_in_enumerator_list_repeat1 = 332, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1 = 333, - aux_sym_preproc_arg_repeat1 = 334, - aux_sym_preproc_argument_list_repeat1 = 335, - aux_sym__old_style_function_definition_repeat1 = 336, - aux_sym_declaration_repeat1 = 337, - aux_sym_type_definition_repeat1 = 338, - aux_sym__type_definition_type_repeat1 = 339, - aux_sym__type_definition_declarators_repeat1 = 340, - aux_sym__declaration_specifiers_repeat1 = 341, - aux_sym_attribute_specifier_repeat1 = 342, - aux_sym_attribute_declaration_repeat1 = 343, - aux_sym_attributed_declarator_repeat1 = 344, - aux_sym_pointer_declarator_repeat1 = 345, - aux_sym_function_declarator_repeat1 = 346, - aux_sym_array_declarator_repeat1 = 347, - aux_sym_sized_type_specifier_repeat1 = 348, - aux_sym_enumerator_list_repeat1 = 349, - aux_sym__field_declaration_declarator_repeat1 = 350, - aux_sym_parameter_list_repeat1 = 351, - aux_sym__old_style_parameter_list_repeat1 = 352, - aux_sym_case_statement_repeat1 = 353, - aux_sym_generic_expression_repeat1 = 354, - aux_sym_gnu_asm_expression_repeat1 = 355, - aux_sym_gnu_asm_output_operand_list_repeat1 = 356, - aux_sym_gnu_asm_input_operand_list_repeat1 = 357, - aux_sym_gnu_asm_clobber_list_repeat1 = 358, - aux_sym_gnu_asm_goto_list_repeat1 = 359, - aux_sym_argument_list_repeat1 = 360, - aux_sym_initializer_list_repeat1 = 361, - aux_sym_initializer_pair_repeat1 = 362, - aux_sym_char_literal_repeat1 = 363, - aux_sym_concatenated_string_repeat1 = 364, - aux_sym_string_literal_repeat1 = 365, - alias_sym_field_identifier = 366, - alias_sym_statement_identifier = 367, - alias_sym_type_identifier = 368, + anon_sym___noreturn = 53, + anon_sym___cold = 54, + anon_sym_COLON_COLON = 55, + anon_sym_LBRACK_LBRACK = 56, + anon_sym_RBRACK_RBRACK = 57, + anon_sym___declspec = 58, + anon_sym___based = 59, + anon_sym___init = 60, + anon_sym___exit = 61, + anon_sym___cdecl = 62, + anon_sym___clrcall = 63, + anon_sym___stdcall = 64, + anon_sym___fastcall = 65, + anon_sym___thiscall = 66, + anon_sym___vectorcall = 67, + sym_ms_restrict_modifier = 68, + sym_ms_unsigned_ptr_modifier = 69, + sym_ms_signed_ptr_modifier = 70, + anon_sym__unaligned = 71, + anon_sym___unaligned = 72, + anon_sym_LBRACE = 73, + anon_sym_RBRACE = 74, + anon_sym_signed = 75, + anon_sym_unsigned = 76, + anon_sym_long = 77, + anon_sym_short = 78, + anon_sym_LBRACK = 79, + anon_sym_static = 80, + anon_sym_RBRACK = 81, + anon_sym_EQ = 82, + anon_sym_auto = 83, + anon_sym_register = 84, + anon_sym_inline = 85, + anon_sym___inline = 86, + anon_sym___inline__ = 87, + anon_sym___forceinline = 88, + anon_sym_thread_local = 89, + anon_sym___thread = 90, + anon_sym_const = 91, + anon_sym_constexpr = 92, + anon_sym_volatile = 93, + anon_sym_restrict = 94, + anon_sym___restrict__ = 95, + anon_sym__Atomic = 96, + anon_sym__Noreturn = 97, + anon_sym_noreturn = 98, + anon_sym_alignas = 99, + anon_sym__Alignas = 100, + sym_primitive_type = 101, + anon_sym_enum = 102, + anon_sym_COLON = 103, + anon_sym_struct = 104, + anon_sym___aligned = 105, + anon_sym_union = 106, + anon_sym_if = 107, + anon_sym_else = 108, + anon_sym_switch = 109, + anon_sym_case = 110, + anon_sym_default = 111, + anon_sym_while = 112, + anon_sym_do = 113, + anon_sym_for = 114, + anon_sym_return = 115, + anon_sym_break = 116, + anon_sym_continue = 117, + anon_sym_goto = 118, + anon_sym___try = 119, + anon_sym___except = 120, + anon_sym___finally = 121, + anon_sym___leave = 122, + anon_sym_QMARK = 123, + anon_sym_STAR_EQ = 124, + anon_sym_SLASH_EQ = 125, + anon_sym_PERCENT_EQ = 126, + anon_sym_PLUS_EQ = 127, + anon_sym_DASH_EQ = 128, + anon_sym_LT_LT_EQ = 129, + anon_sym_GT_GT_EQ = 130, + anon_sym_AMP_EQ = 131, + anon_sym_CARET_EQ = 132, + anon_sym_PIPE_EQ = 133, + anon_sym_DASH_DASH = 134, + anon_sym_PLUS_PLUS = 135, + anon_sym_sizeof = 136, + anon_sym___alignof__ = 137, + anon_sym___alignof = 138, + anon_sym__alignof = 139, + anon_sym_alignof = 140, + anon_sym__Alignof = 141, + anon_sym_offsetof = 142, + anon_sym__Generic = 143, + anon_sym_asm = 144, + anon_sym___asm__ = 145, + anon_sym_DOT = 146, + anon_sym_DASH_GT = 147, + sym_number_literal = 148, + anon_sym_L_SQUOTE = 149, + anon_sym_u_SQUOTE = 150, + anon_sym_U_SQUOTE = 151, + anon_sym_u8_SQUOTE = 152, + anon_sym_SQUOTE = 153, + aux_sym_char_literal_token1 = 154, + anon_sym_L_DQUOTE = 155, + anon_sym_u_DQUOTE = 156, + anon_sym_U_DQUOTE = 157, + anon_sym_u8_DQUOTE = 158, + anon_sym_DQUOTE = 159, + aux_sym_string_literal_token1 = 160, + sym_escape_sequence = 161, + sym_system_lib_string = 162, + sym_true = 163, + sym_false = 164, + anon_sym_NULL = 165, + anon_sym_nullptr = 166, + sym_comment = 167, + sym_translation_unit = 168, + sym__top_level_item = 169, + sym__block_item = 170, + sym_preproc_include = 171, + sym_preproc_def = 172, + sym_preproc_function_def = 173, + sym_preproc_params = 174, + sym_preproc_call = 175, + sym_preproc_if = 176, + sym_preproc_ifdef = 177, + sym_preproc_else = 178, + sym_preproc_elif = 179, + sym_preproc_elifdef = 180, + sym_preproc_if_in_field_declaration_list = 181, + sym_preproc_ifdef_in_field_declaration_list = 182, + sym_preproc_else_in_field_declaration_list = 183, + sym_preproc_elif_in_field_declaration_list = 184, + sym_preproc_elifdef_in_field_declaration_list = 185, + sym_preproc_if_in_enumerator_list = 186, + sym_preproc_ifdef_in_enumerator_list = 187, + sym_preproc_else_in_enumerator_list = 188, + sym_preproc_elif_in_enumerator_list = 189, + sym_preproc_elifdef_in_enumerator_list = 190, + sym_preproc_if_in_enumerator_list_no_comma = 191, + sym_preproc_ifdef_in_enumerator_list_no_comma = 192, + sym_preproc_else_in_enumerator_list_no_comma = 193, + sym_preproc_elif_in_enumerator_list_no_comma = 194, + sym_preproc_elifdef_in_enumerator_list_no_comma = 195, + sym_preproc_arg = 196, + sym__preproc_expression = 197, + sym_preproc_parenthesized_expression = 198, + sym_preproc_defined = 199, + sym_preproc_unary_expression = 200, + sym_preproc_call_expression = 201, + sym_preproc_argument_list = 202, + sym_preproc_binary_expression = 203, + sym_function_definition = 204, + sym__old_style_function_definition = 205, + sym_declaration = 206, + sym_type_definition = 207, + sym__type_definition_type = 208, + sym__type_definition_declarators = 209, + sym__declaration_modifiers = 210, + sym__declaration_specifiers = 211, + sym_linkage_specification = 212, + sym_attribute_specifier = 213, + sym_attribute = 214, + sym_attribute_declaration = 215, + sym_ms_declspec_modifier = 216, + sym_ms_based_modifier = 217, + sym_macro_modifier = 218, + sym_ms_call_modifier = 219, + sym_ms_unaligned_ptr_modifier = 220, + sym_ms_pointer_modifier = 221, + sym_declaration_list = 222, + sym__declarator = 223, + sym__declaration_declarator = 224, + sym__field_declarator = 225, + sym__type_declarator = 226, + sym__abstract_declarator = 227, + sym_parenthesized_declarator = 228, + sym_parenthesized_field_declarator = 229, + sym_parenthesized_type_declarator = 230, + sym_abstract_parenthesized_declarator = 231, + sym_attributed_declarator = 232, + sym_attributed_field_declarator = 233, + sym_attributed_type_declarator = 234, + sym_pointer_declarator = 235, + sym_pointer_field_declarator = 236, + sym_pointer_type_declarator = 237, + sym_abstract_pointer_declarator = 238, + sym_function_declarator = 239, + sym__function_declaration_declarator = 240, + sym_function_field_declarator = 241, + sym_function_type_declarator = 242, + sym_abstract_function_declarator = 243, + sym__old_style_function_declarator = 244, + sym_array_declarator = 245, + sym_array_field_declarator = 246, + sym_array_type_declarator = 247, + sym_abstract_array_declarator = 248, + sym_init_declarator = 249, + sym_compound_statement = 250, + sym_storage_class_specifier = 251, + sym_type_qualifier = 252, + sym_alignas_qualifier = 253, + sym_type_specifier = 254, + sym_sized_type_specifier = 255, + sym_enum_specifier = 256, + sym_enumerator_list = 257, + sym_struct_specifier = 258, + sym_union_specifier = 259, + sym_field_declaration_list = 260, + sym__field_declaration_list_item = 261, + sym_macro_invocation = 262, + sym_field_declaration = 263, + sym__field_declaration_declarator = 264, + sym_bitfield_clause = 265, + sym_enumerator = 266, + sym_variadic_parameter = 267, + sym_parameter_list = 268, + sym__old_style_parameter_list = 269, + sym_parameter_declaration = 270, + sym_attributed_statement = 271, + sym_statement = 272, + sym__top_level_statement = 273, + sym_labeled_statement = 274, + sym__top_level_expression_statement = 275, + sym_expression_statement = 276, + sym_if_statement = 277, + sym_else_clause = 278, + sym_switch_statement = 279, + sym_case_statement = 280, + sym_while_statement = 281, + sym_do_statement = 282, + sym_for_statement = 283, + sym__for_statement_body = 284, + sym_return_statement = 285, + sym_break_statement = 286, + sym_continue_statement = 287, + sym_goto_statement = 288, + sym_seh_try_statement = 289, + sym_seh_except_clause = 290, + sym_seh_finally_clause = 291, + sym_seh_leave_statement = 292, + sym_expression = 293, + sym__string = 294, + sym_comma_expression = 295, + sym_conditional_expression = 296, + sym_assignment_expression = 297, + sym_pointer_expression = 298, + sym_unary_expression = 299, + sym_binary_expression = 300, + sym_update_expression = 301, + sym_cast_expression = 302, + sym_type_descriptor = 303, + sym_sizeof_expression = 304, + sym_alignof_expression = 305, + sym_offsetof_expression = 306, + sym_generic_expression = 307, + sym_subscript_expression = 308, + sym_call_expression = 309, + sym_gnu_asm_expression = 310, + sym_gnu_asm_qualifier = 311, + sym_gnu_asm_output_operand_list = 312, + sym_gnu_asm_output_operand = 313, + sym_gnu_asm_input_operand_list = 314, + sym_gnu_asm_input_operand = 315, + sym_gnu_asm_clobber_list = 316, + sym_gnu_asm_goto_list = 317, + sym_argument_list = 318, + sym_field_expression = 319, + sym_compound_literal_expression = 320, + sym_parenthesized_expression = 321, + sym_initializer_list = 322, + sym_initializer_pair = 323, + sym_subscript_designator = 324, + sym_subscript_range_designator = 325, + sym_field_designator = 326, + sym_char_literal = 327, + sym_concatenated_string = 328, + sym_string_literal = 329, + sym_null = 330, + sym__empty_declaration = 331, + sym_macro_type_specifier = 332, + aux_sym_translation_unit_repeat1 = 333, + aux_sym_preproc_params_repeat1 = 334, + aux_sym_preproc_if_repeat1 = 335, + aux_sym_preproc_if_in_field_declaration_list_repeat1 = 336, + aux_sym_preproc_if_in_enumerator_list_repeat1 = 337, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1 = 338, + aux_sym_preproc_arg_repeat1 = 339, + aux_sym_preproc_argument_list_repeat1 = 340, + aux_sym__old_style_function_definition_repeat1 = 341, + aux_sym_declaration_repeat1 = 342, + aux_sym_type_definition_repeat1 = 343, + aux_sym__type_definition_type_repeat1 = 344, + aux_sym__type_definition_declarators_repeat1 = 345, + aux_sym__declaration_specifiers_repeat1 = 346, + aux_sym_attribute_specifier_repeat1 = 347, + aux_sym_attribute_declaration_repeat1 = 348, + aux_sym_attributed_declarator_repeat1 = 349, + aux_sym_pointer_declarator_repeat1 = 350, + aux_sym_function_declarator_repeat1 = 351, + aux_sym_array_declarator_repeat1 = 352, + aux_sym_sized_type_specifier_repeat1 = 353, + aux_sym_enumerator_list_repeat1 = 354, + aux_sym__field_declaration_declarator_repeat1 = 355, + aux_sym_parameter_list_repeat1 = 356, + aux_sym__old_style_parameter_list_repeat1 = 357, + aux_sym_case_statement_repeat1 = 358, + aux_sym_generic_expression_repeat1 = 359, + aux_sym_gnu_asm_expression_repeat1 = 360, + aux_sym_gnu_asm_output_operand_list_repeat1 = 361, + aux_sym_gnu_asm_input_operand_list_repeat1 = 362, + aux_sym_gnu_asm_clobber_list_repeat1 = 363, + aux_sym_gnu_asm_goto_list_repeat1 = 364, + aux_sym_argument_list_repeat1 = 365, + aux_sym_initializer_list_repeat1 = 366, + aux_sym_initializer_pair_repeat1 = 367, + aux_sym_char_literal_repeat1 = 368, + aux_sym_concatenated_string_repeat1 = 369, + aux_sym_string_literal_repeat1 = 370, + alias_sym_field_identifier = 371, + alias_sym_statement_identifier = 372, + alias_sym_type_identifier = 373, }; static const char * const ts_symbol_names[] = { @@ -448,12 +453,15 @@ static const char * const ts_symbol_names[] = { [anon_sym___read_mostly] = "__read_mostly", [anon_sym___must_hold] = "__must_hold", [anon_sym___ro_after_init] = "__ro_after_init", - [anon_sym___init] = "__init", + [anon_sym___noreturn] = "__noreturn", + [anon_sym___cold] = "__cold", [anon_sym_COLON_COLON] = "::", [anon_sym_LBRACK_LBRACK] = "[[", [anon_sym_RBRACK_RBRACK] = "]]", [anon_sym___declspec] = "__declspec", [anon_sym___based] = "__based", + [anon_sym___init] = "__init", + [anon_sym___exit] = "__exit", [anon_sym___cdecl] = "__cdecl", [anon_sym___clrcall] = "__clrcall", [anon_sym___stdcall] = "__stdcall", @@ -610,6 +618,7 @@ static const char * const ts_symbol_names[] = { [sym_attribute_declaration] = "attribute_declaration", [sym_ms_declspec_modifier] = "ms_declspec_modifier", [sym_ms_based_modifier] = "ms_based_modifier", + [sym_macro_modifier] = "macro_modifier", [sym_ms_call_modifier] = "ms_call_modifier", [sym_ms_unaligned_ptr_modifier] = "ms_unaligned_ptr_modifier", [sym_ms_pointer_modifier] = "ms_pointer_modifier", @@ -653,6 +662,7 @@ static const char * const ts_symbol_names[] = { [sym_union_specifier] = "union_specifier", [sym_field_declaration_list] = "field_declaration_list", [sym__field_declaration_list_item] = "_field_declaration_list_item", + [sym_macro_invocation] = "macro_invocation", [sym_field_declaration] = "field_declaration", [sym__field_declaration_declarator] = "_field_declaration_declarator", [sym_bitfield_clause] = "bitfield_clause", @@ -820,12 +830,15 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym___read_mostly] = anon_sym___read_mostly, [anon_sym___must_hold] = anon_sym___must_hold, [anon_sym___ro_after_init] = anon_sym___ro_after_init, - [anon_sym___init] = anon_sym___init, + [anon_sym___noreturn] = anon_sym___noreturn, + [anon_sym___cold] = anon_sym___cold, [anon_sym_COLON_COLON] = anon_sym_COLON_COLON, [anon_sym_LBRACK_LBRACK] = anon_sym_LBRACK_LBRACK, [anon_sym_RBRACK_RBRACK] = anon_sym_RBRACK_RBRACK, [anon_sym___declspec] = anon_sym___declspec, [anon_sym___based] = anon_sym___based, + [anon_sym___init] = anon_sym___init, + [anon_sym___exit] = anon_sym___exit, [anon_sym___cdecl] = anon_sym___cdecl, [anon_sym___clrcall] = anon_sym___clrcall, [anon_sym___stdcall] = anon_sym___stdcall, @@ -982,6 +995,7 @@ static const TSSymbol ts_symbol_map[] = { [sym_attribute_declaration] = sym_attribute_declaration, [sym_ms_declspec_modifier] = sym_ms_declspec_modifier, [sym_ms_based_modifier] = sym_ms_based_modifier, + [sym_macro_modifier] = sym_macro_modifier, [sym_ms_call_modifier] = sym_ms_call_modifier, [sym_ms_unaligned_ptr_modifier] = sym_ms_unaligned_ptr_modifier, [sym_ms_pointer_modifier] = sym_ms_pointer_modifier, @@ -1025,6 +1039,7 @@ static const TSSymbol ts_symbol_map[] = { [sym_union_specifier] = sym_union_specifier, [sym_field_declaration_list] = sym_field_declaration_list, [sym__field_declaration_list_item] = sym__field_declaration_list_item, + [sym_macro_invocation] = sym_macro_invocation, [sym_field_declaration] = sym_field_declaration, [sym__field_declaration_declarator] = sym__field_declaration_declarator, [sym_bitfield_clause] = sym_bitfield_clause, @@ -1351,7 +1366,11 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [anon_sym___init] = { + [anon_sym___noreturn] = { + .visible = true, + .named = false, + }, + [anon_sym___cold] = { .visible = true, .named = false, }, @@ -1375,6 +1394,14 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [anon_sym___init] = { + .visible = true, + .named = false, + }, + [anon_sym___exit] = { + .visible = true, + .named = false, + }, [anon_sym___cdecl] = { .visible = true, .named = false, @@ -1999,6 +2026,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_macro_modifier] = { + .visible = true, + .named = true, + }, [sym_ms_call_modifier] = { .visible = true, .named = true, @@ -2176,6 +2207,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = true, }, + [sym_macro_invocation] = { + .visible = true, + .named = true, + }, [sym_field_declaration] = { .visible = true, .named = true, @@ -2773,8 +2808,8 @@ static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [64] = {.index = 101, .length = 3}, [65] = {.index = 104, .length = 2}, [66] = {.index = 106, .length = 5}, - [67] = {.index = 111, .length = 3}, - [68] = {.index = 114, .length = 5}, + [67] = {.index = 111, .length = 5}, + [68] = {.index = 116, .length = 3}, [69] = {.index = 119, .length = 2}, [70] = {.index = 121, .length = 2}, [71] = {.index = 123, .length = 3}, @@ -2798,45 +2833,52 @@ static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [89] = {.index = 159, .length = 1}, [90] = {.index = 160, .length = 4}, [91] = {.index = 164, .length = 4}, - [92] = {.index = 168, .length = 2}, - [93] = {.index = 170, .length = 2}, - [94] = {.index = 172, .length = 3}, + [92] = {.index = 168, .length = 3}, + [93] = {.index = 171, .length = 2}, + [94] = {.index = 173, .length = 2}, [95] = {.index = 175, .length = 5}, [96] = {.index = 180, .length = 3}, - [97] = {.index = 183, .length = 2}, - [98] = {.index = 185, .length = 1}, - [100] = {.index = 186, .length = 2}, - [101] = {.index = 188, .length = 2}, - [102] = {.index = 190, .length = 2}, - [103] = {.index = 192, .length = 3}, - [104] = {.index = 195, .length = 2}, - [105] = {.index = 197, .length = 2}, - [106] = {.index = 199, .length = 2}, - [107] = {.index = 201, .length = 2}, - [108] = {.index = 203, .length = 3}, - [109] = {.index = 206, .length = 2}, - [110] = {.index = 208, .length = 1}, - [111] = {.index = 209, .length = 5}, - [112] = {.index = 214, .length = 2}, - [113] = {.index = 216, .length = 3}, - [114] = {.index = 219, .length = 2}, - [115] = {.index = 219, .length = 2}, - [116] = {.index = 221, .length = 3}, - [117] = {.index = 224, .length = 2}, - [118] = {.index = 226, .length = 1}, - [119] = {.index = 227, .length = 4}, - [120] = {.index = 231, .length = 3}, - [121] = {.index = 234, .length = 2}, - [122] = {.index = 236, .length = 2}, - [123] = {.index = 35, .length = 1}, - [124] = {.index = 238, .length = 5}, - [125] = {.index = 243, .length = 4}, - [126] = {.index = 247, .length = 2}, - [127] = {.index = 249, .length = 2}, - [128] = {.index = 251, .length = 2}, - [129] = {.index = 253, .length = 5}, - [130] = {.index = 258, .length = 2}, - [131] = {.index = 260, .length = 3}, + [97] = {.index = 183, .length = 5}, + [98] = {.index = 188, .length = 3}, + [99] = {.index = 191, .length = 2}, + [100] = {.index = 193, .length = 1}, + [102] = {.index = 194, .length = 2}, + [103] = {.index = 196, .length = 2}, + [104] = {.index = 198, .length = 2}, + [105] = {.index = 200, .length = 3}, + [106] = {.index = 203, .length = 2}, + [107] = {.index = 205, .length = 2}, + [108] = {.index = 207, .length = 2}, + [109] = {.index = 209, .length = 2}, + [110] = {.index = 211, .length = 3}, + [111] = {.index = 214, .length = 2}, + [112] = {.index = 216, .length = 1}, + [113] = {.index = 217, .length = 5}, + [114] = {.index = 222, .length = 5}, + [115] = {.index = 227, .length = 2}, + [116] = {.index = 229, .length = 3}, + [117] = {.index = 232, .length = 3}, + [118] = {.index = 235, .length = 5}, + [119] = {.index = 240, .length = 2}, + [120] = {.index = 240, .length = 2}, + [121] = {.index = 242, .length = 3}, + [122] = {.index = 245, .length = 2}, + [123] = {.index = 247, .length = 1}, + [124] = {.index = 248, .length = 4}, + [125] = {.index = 252, .length = 3}, + [126] = {.index = 255, .length = 6}, + [127] = {.index = 261, .length = 4}, + [128] = {.index = 265, .length = 2}, + [129] = {.index = 267, .length = 2}, + [130] = {.index = 35, .length = 1}, + [131] = {.index = 269, .length = 5}, + [132] = {.index = 274, .length = 4}, + [133] = {.index = 278, .length = 2}, + [134] = {.index = 280, .length = 2}, + [135] = {.index = 282, .length = 2}, + [136] = {.index = 284, .length = 5}, + [137] = {.index = 289, .length = 2}, + [138] = {.index = 291, .length = 3}, }; static const TSFieldMapEntry ts_field_map_entries[] = { @@ -3014,12 +3056,12 @@ static const TSFieldMapEntry ts_field_map_entries[] = { [111] = {field_body, 3}, {field_declarator, 2}, + {field_declarator, 2, .inherited = true}, + {field_parameters, 2, .inherited = true}, {field_type, 1, .inherited = true}, - [114] = + [116] = {field_body, 3}, {field_declarator, 2}, - {field_declarator, 2, .inherited = true}, - {field_parameters, 2, .inherited = true}, {field_type, 1, .inherited = true}, [119] = {field_argument, 0}, @@ -3094,15 +3136,15 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_declarator, 3, .inherited = true}, {field_type, 0, .inherited = true}, [168] = + {field_body, 4}, + {field_declarator, 3}, + {field_type, 0, .inherited = true}, + [171] = {field_declarator, 0}, {field_size, 2}, - [170] = + [173] = {field_declarator, 1}, {field_declarator, 2}, - [172] = - {field_body, 4}, - {field_declarator, 3}, - {field_type, 1, .inherited = true}, [175] = {field_body, 4}, {field_declarator, 2}, @@ -3110,118 +3152,156 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_parameters, 2, .inherited = true}, {field_type, 1, .inherited = true}, [180] = + {field_body, 4}, + {field_declarator, 3}, + {field_type, 1, .inherited = true}, + [183] = + {field_body, 4}, + {field_declarator, 3}, + {field_declarator, 3, .inherited = true}, + {field_parameters, 3, .inherited = true}, + {field_type, 2, .inherited = true}, + [188] = {field_alternative, 4}, {field_condition, 0}, {field_consequence, 2}, - [183] = + [191] = {field_alternative, 4}, {field_condition, 1}, - [185] = + [193] = {field_size, 2}, - [186] = + [194] = {field_body, 2}, {field_filter, 1}, - [188] = + [196] = {field_declarator, 0}, {field_declarator, 2, .inherited = true}, - [190] = + [198] = {field_condition, 1}, {field_update, 3}, - [192] = + [200] = {field_condition, 1}, {field_initializer, 0}, {field_update, 3}, - [195] = + [203] = {field_initializer, 0}, {field_update, 3}, - [197] = + [205] = {field_condition, 2}, {field_initializer, 0}, - [199] = + [207] = {field_member, 4}, {field_type, 2}, - [201] = + [209] = {field_operand, 1}, {field_operand, 2, .inherited = true}, - [203] = + [211] = {field_assembly_code, 2}, {field_input_operands, 4}, {field_output_operands, 3}, - [206] = + [214] = {field_assembly_code, 3}, {field_output_operands, 4}, - [208] = + [216] = {field_declarator, 4}, - [209] = + [217] = {field_declarator, 1}, {field_declarator, 2}, {field_declarator, 3}, {field_declarator, 4, .inherited = true}, {field_type, 0, .inherited = true}, - [214] = + [222] = + {field_declarator, 1}, + {field_declarator, 2}, + {field_declarator, 3}, + {field_declarator, 4}, + {field_type, 0, .inherited = true}, + [227] = {field_declarator, 0}, {field_size, 3}, - [216] = + [229] = {field_declarator, 1}, {field_declarator, 2}, {field_declarator, 3}, - [219] = + [232] = + {field_body, 5}, + {field_declarator, 4}, + {field_type, 1, .inherited = true}, + [235] = + {field_body, 5}, + {field_declarator, 3}, + {field_declarator, 3, .inherited = true}, + {field_parameters, 3, .inherited = true}, + {field_type, 2, .inherited = true}, + [240] = {field_designator, 0}, {field_value, 2}, - [221] = + [242] = {field_condition, 2}, {field_initializer, 0}, {field_update, 4}, - [224] = + [245] = {field_operand, 0, .inherited = true}, {field_operand, 1, .inherited = true}, - [226] = + [247] = {field_register, 1}, - [227] = + [248] = {field_assembly_code, 2}, {field_clobbers, 5}, {field_input_operands, 4}, {field_output_operands, 3}, - [231] = + [252] = {field_assembly_code, 3}, {field_input_operands, 5}, {field_output_operands, 4}, - [234] = + [255] = + {field_declarator, 1}, + {field_declarator, 2}, + {field_declarator, 3}, + {field_declarator, 4}, + {field_declarator, 5, .inherited = true}, + {field_type, 0, .inherited = true}, + [261] = + {field_declarator, 1}, + {field_declarator, 2}, + {field_declarator, 3}, + {field_declarator, 4}, + [265] = {field_constraint, 0}, {field_value, 2}, - [236] = + [267] = {field_register, 1}, {field_register, 2, .inherited = true}, - [238] = + [269] = {field_assembly_code, 2}, {field_clobbers, 5}, {field_goto_labels, 6}, {field_input_operands, 4}, {field_output_operands, 3}, - [243] = + [274] = {field_assembly_code, 3}, {field_clobbers, 6}, {field_input_operands, 5}, {field_output_operands, 4}, - [247] = + [278] = {field_end, 3}, {field_start, 1}, - [249] = + [280] = {field_register, 0, .inherited = true}, {field_register, 1, .inherited = true}, - [251] = + [282] = {field_label, 1}, {field_label, 2, .inherited = true}, - [253] = + [284] = {field_assembly_code, 3}, {field_clobbers, 6}, {field_goto_labels, 7}, {field_input_operands, 5}, {field_output_operands, 4}, - [258] = + [289] = {field_label, 0, .inherited = true}, {field_label, 1, .inherited = true}, - [260] = + [291] = {field_constraint, 3}, {field_symbol, 1}, {field_value, 5}, @@ -3277,13 +3357,13 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [80] = { [3] = alias_sym_type_identifier, }, - [99] = { + [101] = { [1] = alias_sym_field_identifier, }, - [106] = { + [108] = { [4] = alias_sym_field_identifier, }, - [114] = { + [119] = { [0] = alias_sym_field_identifier, }, }; @@ -3298,44 +3378,44 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2] = 2, [3] = 3, [4] = 4, - [5] = 3, - [6] = 6, + [5] = 5, + [6] = 5, [7] = 4, - [8] = 3, - [9] = 9, + [8] = 8, + [9] = 5, [10] = 3, - [11] = 2, - [12] = 4, - [13] = 9, - [14] = 14, - [15] = 2, - [16] = 9, - [17] = 4, - [18] = 18, - [19] = 9, - [20] = 2, - [21] = 21, + [11] = 4, + [12] = 12, + [13] = 2, + [14] = 2, + [15] = 4, + [16] = 5, + [17] = 17, + [18] = 2, + [19] = 19, + [20] = 3, + [21] = 3, [22] = 22, [23] = 23, [24] = 24, - [25] = 22, - [26] = 26, - [27] = 23, - [28] = 24, - [29] = 29, - [30] = 26, - [31] = 29, + [25] = 23, + [26] = 23, + [27] = 24, + [28] = 28, + [29] = 28, + [30] = 30, + [31] = 31, [32] = 32, - [33] = 23, + [33] = 32, [34] = 24, - [35] = 29, - [36] = 29, - [37] = 26, - [38] = 24, - [39] = 22, - [40] = 40, + [35] = 24, + [36] = 28, + [37] = 22, + [38] = 32, + [39] = 32, + [40] = 22, [41] = 23, - [42] = 26, + [42] = 28, [43] = 43, [44] = 44, [45] = 45, @@ -3343,26 +3423,26 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [47] = 47, [48] = 48, [49] = 49, - [50] = 46, - [51] = 48, - [52] = 47, - [53] = 47, - [54] = 48, - [55] = 45, - [56] = 49, - [57] = 47, - [58] = 48, - [59] = 45, - [60] = 49, + [50] = 47, + [51] = 49, + [52] = 45, + [53] = 46, + [54] = 47, + [55] = 49, + [56] = 45, + [57] = 46, + [58] = 49, + [59] = 48, + [60] = 45, [61] = 46, - [62] = 46, - [63] = 45, - [64] = 49, - [65] = 47, - [66] = 45, - [67] = 48, - [68] = 46, - [69] = 49, + [62] = 48, + [63] = 47, + [64] = 48, + [65] = 48, + [66] = 49, + [67] = 45, + [68] = 47, + [69] = 46, [70] = 70, [71] = 70, [72] = 70, @@ -3394,16 +3474,16 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [98] = 98, [99] = 99, [100] = 100, - [101] = 101, + [101] = 97, [102] = 102, [103] = 103, [104] = 104, [105] = 105, [106] = 106, - [107] = 78, + [107] = 107, [108] = 108, [109] = 109, - [110] = 92, + [110] = 110, [111] = 111, [112] = 112, [113] = 113, @@ -3414,7 +3494,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [118] = 118, [119] = 119, [120] = 120, - [121] = 121, + [121] = 91, [122] = 122, [123] = 123, [124] = 124, @@ -3436,614 +3516,614 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [140] = 140, [141] = 141, [142] = 142, - [143] = 75, - [144] = 75, - [145] = 75, - [146] = 106, - [147] = 76, - [148] = 93, - [149] = 99, - [150] = 82, - [151] = 112, - [152] = 86, - [153] = 94, - [154] = 76, - [155] = 90, - [156] = 95, - [157] = 96, - [158] = 90, - [159] = 86, - [160] = 102, - [161] = 112, - [162] = 104, - [163] = 109, - [164] = 76, - [165] = 102, - [166] = 100, - [167] = 83, - [168] = 84, - [169] = 103, - [170] = 101, - [171] = 97, - [172] = 91, - [173] = 92, - [174] = 93, - [175] = 89, - [176] = 94, - [177] = 95, + [143] = 143, + [144] = 144, + [145] = 145, + [146] = 146, + [147] = 147, + [148] = 148, + [149] = 149, + [150] = 150, + [151] = 151, + [152] = 152, + [153] = 153, + [154] = 154, + [155] = 155, + [156] = 156, + [157] = 157, + [158] = 158, + [159] = 75, + [160] = 75, + [161] = 75, + [162] = 112, + [163] = 85, + [164] = 86, + [165] = 108, + [166] = 111, + [167] = 117, + [168] = 96, + [169] = 98, + [170] = 117, + [171] = 87, + [172] = 88, + [173] = 115, + [174] = 114, + [175] = 110, + [176] = 76, + [177] = 89, [178] = 96, - [179] = 98, - [180] = 87, - [181] = 85, - [182] = 105, - [183] = 82, - [184] = 78, - [185] = 81, - [186] = 108, - [187] = 77, + [179] = 97, + [180] = 77, + [181] = 104, + [182] = 108, + [183] = 111, + [184] = 109, + [185] = 100, + [186] = 107, + [187] = 90, [188] = 113, - [189] = 111, - [190] = 98, - [191] = 111, - [192] = 113, - [193] = 99, - [194] = 77, - [195] = 108, - [196] = 109, - [197] = 85, - [198] = 102, - [199] = 91, - [200] = 109, - [201] = 78, - [202] = 106, - [203] = 100, - [204] = 99, - [205] = 100, - [206] = 105, - [207] = 88, - [208] = 97, - [209] = 101, - [210] = 98, - [211] = 88, - [212] = 103, - [213] = 89, - [214] = 96, - [215] = 95, - [216] = 87, - [217] = 81, - [218] = 94, - [219] = 80, - [220] = 87, - [221] = 89, - [222] = 79, - [223] = 104, - [224] = 112, - [225] = 86, - [226] = 90, - [227] = 84, - [228] = 85, - [229] = 83, - [230] = 82, - [231] = 79, - [232] = 93, - [233] = 80, - [234] = 77, - [235] = 113, - [236] = 92, - [237] = 111, - [238] = 91, - [239] = 97, - [240] = 79, - [241] = 108, - [242] = 104, - [243] = 101, + [189] = 95, + [190] = 93, + [191] = 94, + [192] = 115, + [193] = 114, + [194] = 94, + [195] = 110, + [196] = 76, + [197] = 113, + [198] = 95, + [199] = 93, + [200] = 84, + [201] = 90, + [202] = 89, + [203] = 96, + [204] = 97, + [205] = 77, + [206] = 103, + [207] = 104, + [208] = 108, + [209] = 111, + [210] = 85, + [211] = 102, + [212] = 113, + [213] = 88, + [214] = 104, + [215] = 87, + [216] = 119, + [217] = 120, + [218] = 91, + [219] = 86, + [220] = 92, + [221] = 112, + [222] = 99, + [223] = 83, + [224] = 105, + [225] = 116, + [226] = 118, + [227] = 86, + [228] = 106, + [229] = 84, + [230] = 105, + [231] = 83, + [232] = 82, + [233] = 81, + [234] = 80, + [235] = 117, + [236] = 95, + [237] = 115, + [238] = 94, + [239] = 93, + [240] = 114, + [241] = 119, + [242] = 110, + [243] = 76, [244] = 103, - [245] = 80, - [246] = 81, - [247] = 88, - [248] = 84, - [249] = 106, - [250] = 105, - [251] = 83, - [252] = 139, - [253] = 122, - [254] = 140, - [255] = 141, - [256] = 142, - [257] = 127, - [258] = 116, - [259] = 116, - [260] = 119, - [261] = 129, - [262] = 138, - [263] = 121, - [264] = 128, - [265] = 125, - [266] = 117, - [267] = 118, - [268] = 114, - [269] = 133, - [270] = 140, - [271] = 132, - [272] = 115, - [273] = 132, - [274] = 115, - [275] = 128, - [276] = 141, - [277] = 142, - [278] = 120, - [279] = 117, - [280] = 118, - [281] = 119, - [282] = 127, - [283] = 136, - [284] = 137, - [285] = 136, - [286] = 135, - [287] = 134, - [288] = 133, - [289] = 114, - [290] = 131, - [291] = 129, - [292] = 138, - [293] = 130, - [294] = 137, - [295] = 126, - [296] = 121, - [297] = 120, - [298] = 124, - [299] = 123, - [300] = 135, - [301] = 125, - [302] = 126, - [303] = 134, - [304] = 124, - [305] = 123, - [306] = 122, - [307] = 139, - [308] = 131, - [309] = 130, - [310] = 310, - [311] = 120, - [312] = 125, - [313] = 142, - [314] = 133, - [315] = 114, + [245] = 106, + [246] = 118, + [247] = 98, + [248] = 102, + [249] = 92, + [250] = 99, + [251] = 85, + [252] = 109, + [253] = 120, + [254] = 84, + [255] = 78, + [256] = 83, + [257] = 82, + [258] = 81, + [259] = 107, + [260] = 91, + [261] = 79, + [262] = 80, + [263] = 116, + [264] = 119, + [265] = 120, + [266] = 112, + [267] = 116, + [268] = 118, + [269] = 106, + [270] = 78, + [271] = 79, + [272] = 107, + [273] = 109, + [274] = 105, + [275] = 103, + [276] = 102, + [277] = 92, + [278] = 99, + [279] = 78, + [280] = 79, + [281] = 80, + [282] = 100, + [283] = 81, + [284] = 98, + [285] = 82, + [286] = 90, + [287] = 89, + [288] = 88, + [289] = 87, + [290] = 77, + [291] = 100, + [292] = 127, + [293] = 134, + [294] = 138, + [295] = 132, + [296] = 156, + [297] = 123, + [298] = 148, + [299] = 126, + [300] = 153, + [301] = 128, + [302] = 141, + [303] = 142, + [304] = 140, + [305] = 134, + [306] = 151, + [307] = 122, + [308] = 133, + [309] = 139, + [310] = 151, + [311] = 157, + [312] = 149, + [313] = 146, + [314] = 137, + [315] = 136, [316] = 135, - [317] = 136, + [317] = 150, [318] = 130, - [319] = 138, - [320] = 121, - [321] = 124, - [322] = 322, - [323] = 137, - [324] = 131, - [325] = 127, - [326] = 134, - [327] = 116, - [328] = 140, - [329] = 141, - [330] = 123, - [331] = 119, - [332] = 332, - [333] = 139, - [334] = 132, - [335] = 335, - [336] = 115, - [337] = 129, - [338] = 122, - [339] = 126, - [340] = 128, - [341] = 310, - [342] = 342, - [343] = 342, - [344] = 344, - [345] = 345, - [346] = 342, - [347] = 347, - [348] = 347, - [349] = 344, - [350] = 350, - [351] = 344, - [352] = 352, - [353] = 353, - [354] = 345, - [355] = 355, - [356] = 350, - [357] = 350, - [358] = 352, - [359] = 355, - [360] = 342, - [361] = 355, - [362] = 353, - [363] = 352, - [364] = 345, - [365] = 347, - [366] = 352, - [367] = 345, - [368] = 344, - [369] = 355, - [370] = 353, - [371] = 350, - [372] = 353, - [373] = 347, - [374] = 352, - [375] = 347, - [376] = 355, - [377] = 353, - [378] = 350, - [379] = 342, - [380] = 345, - [381] = 381, - [382] = 382, - [383] = 310, - [384] = 310, - [385] = 385, - [386] = 386, - [387] = 385, - [388] = 386, - [389] = 385, - [390] = 75, - [391] = 385, - [392] = 386, - [393] = 386, - [394] = 385, - [395] = 385, - [396] = 386, - [397] = 386, - [398] = 398, + [319] = 131, + [320] = 158, + [321] = 154, + [322] = 152, + [323] = 146, + [324] = 147, + [325] = 145, + [326] = 144, + [327] = 143, + [328] = 139, + [329] = 155, + [330] = 141, + [331] = 142, + [332] = 128, + [333] = 143, + [334] = 127, + [335] = 150, + [336] = 135, + [337] = 157, + [338] = 129, + [339] = 129, + [340] = 136, + [341] = 137, + [342] = 125, + [343] = 124, + [344] = 153, + [345] = 155, + [346] = 144, + [347] = 145, + [348] = 156, + [349] = 122, + [350] = 147, + [351] = 138, + [352] = 126, + [353] = 125, + [354] = 152, + [355] = 140, + [356] = 133, + [357] = 154, + [358] = 124, + [359] = 130, + [360] = 148, + [361] = 132, + [362] = 158, + [363] = 123, + [364] = 149, + [365] = 131, + [366] = 148, + [367] = 128, + [368] = 123, + [369] = 122, + [370] = 130, + [371] = 136, + [372] = 372, + [373] = 135, + [374] = 154, + [375] = 131, + [376] = 133, + [377] = 152, + [378] = 158, + [379] = 137, + [380] = 150, + [381] = 146, + [382] = 157, + [383] = 153, + [384] = 155, + [385] = 134, + [386] = 156, + [387] = 387, + [388] = 138, + [389] = 147, + [390] = 140, + [391] = 124, + [392] = 129, + [393] = 127, + [394] = 139, + [395] = 144, + [396] = 145, + [397] = 126, + [398] = 141, [399] = 399, - [400] = 399, - [401] = 399, - [402] = 399, - [403] = 399, - [404] = 398, - [405] = 405, - [406] = 399, - [407] = 399, - [408] = 399, + [400] = 142, + [401] = 401, + [402] = 132, + [403] = 143, + [404] = 125, + [405] = 372, + [406] = 406, + [407] = 407, + [408] = 408, [409] = 409, - [410] = 410, - [411] = 310, + [410] = 408, + [411] = 409, [412] = 412, - [413] = 310, - [414] = 414, - [415] = 414, - [416] = 416, - [417] = 417, + [413] = 408, + [414] = 407, + [415] = 415, + [416] = 412, + [417] = 406, [418] = 418, - [419] = 418, - [420] = 414, - [421] = 421, - [422] = 417, - [423] = 418, - [424] = 417, - [425] = 425, - [426] = 421, - [427] = 427, - [428] = 421, - [429] = 429, - [430] = 430, + [419] = 408, + [420] = 418, + [421] = 415, + [422] = 422, + [423] = 412, + [424] = 409, + [425] = 406, + [426] = 418, + [427] = 406, + [428] = 415, + [429] = 418, + [430] = 422, [431] = 431, - [432] = 432, - [433] = 433, - [434] = 434, - [435] = 435, - [436] = 436, - [437] = 437, - [438] = 438, - [439] = 439, - [440] = 440, - [441] = 441, - [442] = 442, + [432] = 408, + [433] = 422, + [434] = 409, + [435] = 406, + [436] = 407, + [437] = 418, + [438] = 407, + [439] = 415, + [440] = 412, + [441] = 409, + [442] = 415, [443] = 443, - [444] = 444, - [445] = 445, - [446] = 441, + [444] = 407, + [445] = 412, + [446] = 422, [447] = 447, - [448] = 441, - [449] = 449, - [450] = 450, - [451] = 451, - [452] = 452, - [453] = 452, - [454] = 452, - [455] = 452, - [456] = 456, + [448] = 447, + [449] = 372, + [450] = 372, + [451] = 447, + [452] = 447, + [453] = 447, + [454] = 447, + [455] = 447, + [456] = 447, [457] = 457, - [458] = 458, + [458] = 75, [459] = 459, [460] = 460, - [461] = 459, - [462] = 462, - [463] = 463, - [464] = 464, - [465] = 465, - [466] = 466, - [467] = 467, + [461] = 461, + [462] = 461, + [463] = 460, + [464] = 460, + [465] = 460, + [466] = 460, + [467] = 461, [468] = 468, - [469] = 469, - [470] = 470, - [471] = 471, - [472] = 465, + [469] = 461, + [470] = 461, + [471] = 461, + [472] = 460, [473] = 473, - [474] = 473, + [474] = 474, [475] = 475, - [476] = 476, + [476] = 475, [477] = 477, [478] = 478, - [479] = 479, - [480] = 465, - [481] = 473, - [482] = 473, - [483] = 467, + [479] = 477, + [480] = 480, + [481] = 481, + [482] = 474, + [483] = 475, [484] = 484, - [485] = 465, - [486] = 486, - [487] = 487, - [488] = 409, - [489] = 489, - [490] = 465, + [485] = 485, + [486] = 477, + [487] = 474, + [488] = 480, + [489] = 473, + [490] = 480, [491] = 491, [492] = 492, - [493] = 493, + [493] = 372, [494] = 494, - [495] = 467, - [496] = 473, + [495] = 492, + [496] = 492, [497] = 497, [498] = 498, - [499] = 467, - [500] = 500, + [499] = 499, + [500] = 372, [501] = 501, [502] = 502, - [503] = 465, - [504] = 473, + [503] = 503, + [504] = 504, [505] = 505, [506] = 506, - [507] = 505, + [507] = 507, [508] = 508, [509] = 509, [510] = 510, [511] = 511, [512] = 512, [513] = 513, - [514] = 505, + [514] = 514, [515] = 515, - [516] = 505, - [517] = 517, + [516] = 515, + [517] = 515, [518] = 518, - [519] = 506, + [519] = 515, [520] = 520, - [521] = 513, - [522] = 511, - [523] = 511, - [524] = 506, + [521] = 521, + [522] = 522, + [523] = 523, + [524] = 524, [525] = 525, - [526] = 525, - [527] = 506, + [526] = 526, + [527] = 526, [528] = 528, [529] = 529, [530] = 530, - [531] = 511, - [532] = 513, + [531] = 531, + [532] = 532, [533] = 533, [534] = 534, - [535] = 513, + [535] = 535, [536] = 536, [537] = 537, - [538] = 537, + [538] = 538, [539] = 539, [540] = 540, [541] = 541, - [542] = 539, + [542] = 542, [543] = 543, - [544] = 540, + [544] = 544, [545] = 545, - [546] = 546, - [547] = 545, + [546] = 459, + [547] = 547, [548] = 548, - [549] = 549, + [549] = 544, [550] = 550, - [551] = 548, + [551] = 551, [552] = 552, - [553] = 546, - [554] = 554, + [553] = 553, + [554] = 552, [555] = 555, [556] = 556, - [557] = 550, - [558] = 558, - [559] = 554, - [560] = 539, + [557] = 557, + [558] = 548, + [559] = 553, + [560] = 544, [561] = 561, - [562] = 562, - [563] = 558, - [564] = 543, + [562] = 548, + [563] = 544, + [564] = 564, [565] = 565, - [566] = 541, - [567] = 561, - [568] = 556, - [569] = 548, - [570] = 556, - [571] = 554, - [572] = 550, - [573] = 548, - [574] = 558, - [575] = 545, - [576] = 576, - [577] = 546, - [578] = 540, - [579] = 543, - [580] = 539, - [581] = 581, - [582] = 565, - [583] = 541, - [584] = 584, - [585] = 558, - [586] = 586, - [587] = 561, - [588] = 588, - [589] = 541, - [590] = 565, - [591] = 536, - [592] = 581, - [593] = 593, - [594] = 536, - [595] = 593, - [596] = 596, - [597] = 597, - [598] = 593, - [599] = 599, - [600] = 581, - [601] = 555, - [602] = 584, - [603] = 539, - [604] = 536, - [605] = 581, - [606] = 543, - [607] = 565, + [566] = 566, + [567] = 567, + [568] = 555, + [569] = 561, + [570] = 544, + [571] = 550, + [572] = 572, + [573] = 555, + [574] = 551, + [575] = 575, + [576] = 547, + [577] = 575, + [578] = 567, + [579] = 557, + [580] = 556, + [581] = 553, + [582] = 555, + [583] = 561, + [584] = 552, + [585] = 567, + [586] = 551, + [587] = 557, + [588] = 555, + [589] = 556, + [590] = 551, + [591] = 591, + [592] = 592, + [593] = 544, + [594] = 552, + [595] = 575, + [596] = 555, + [597] = 553, + [598] = 548, + [599] = 561, + [600] = 575, + [601] = 601, + [602] = 556, + [603] = 550, + [604] = 604, + [605] = 557, + [606] = 567, + [607] = 607, [608] = 608, [609] = 609, - [610] = 540, - [611] = 546, + [610] = 610, + [611] = 611, [612] = 612, [613] = 613, [614] = 614, - [615] = 576, - [616] = 545, - [617] = 593, + [615] = 615, + [616] = 616, + [617] = 617, [618] = 618, - [619] = 550, - [620] = 541, - [621] = 576, - [622] = 565, - [623] = 543, - [624] = 576, - [625] = 576, - [626] = 540, - [627] = 554, - [628] = 546, - [629] = 545, - [630] = 550, - [631] = 556, - [632] = 554, - [633] = 556, - [634] = 548, + [619] = 619, + [620] = 615, + [621] = 621, + [622] = 615, + [623] = 623, + [624] = 624, + [625] = 625, + [626] = 626, + [627] = 615, + [628] = 628, + [629] = 629, + [630] = 621, + [631] = 631, + [632] = 632, + [633] = 633, + [634] = 634, [635] = 635, - [636] = 558, + [636] = 636, [637] = 637, [638] = 638, - [639] = 536, - [640] = 581, - [641] = 548, - [642] = 556, - [643] = 554, - [644] = 550, - [645] = 545, - [646] = 546, - [647] = 540, - [648] = 543, - [649] = 565, - [650] = 541, - [651] = 593, - [652] = 584, - [653] = 593, - [654] = 536, - [655] = 581, - [656] = 539, - [657] = 558, - [658] = 658, - [659] = 659, + [639] = 637, + [640] = 640, + [641] = 641, + [642] = 633, + [643] = 641, + [644] = 635, + [645] = 645, + [646] = 632, + [647] = 647, + [648] = 648, + [649] = 649, + [650] = 632, + [651] = 651, + [652] = 652, + [653] = 633, + [654] = 637, + [655] = 631, + [656] = 656, + [657] = 635, + [658] = 652, + [659] = 656, [660] = 660, [661] = 661, [662] = 662, - [663] = 663, - [664] = 664, + [663] = 661, + [664] = 648, [665] = 665, - [666] = 666, + [666] = 640, [667] = 667, [668] = 668, - [669] = 669, - [670] = 670, + [669] = 651, + [670] = 647, [671] = 671, - [672] = 672, - [673] = 673, - [674] = 674, - [675] = 675, - [676] = 676, - [677] = 677, - [678] = 678, - [679] = 679, - [680] = 677, - [681] = 681, + [672] = 641, + [673] = 665, + [674] = 667, + [675] = 661, + [676] = 667, + [677] = 661, + [678] = 660, + [679] = 660, + [680] = 648, + [681] = 667, [682] = 682, - [683] = 683, - [684] = 682, - [685] = 685, - [686] = 686, - [687] = 687, - [688] = 682, - [689] = 689, - [690] = 690, - [691] = 677, - [692] = 682, - [693] = 677, - [694] = 694, - [695] = 695, - [696] = 696, - [697] = 697, - [698] = 460, - [699] = 699, - [700] = 700, - [701] = 701, + [683] = 656, + [684] = 652, + [685] = 640, + [686] = 647, + [687] = 635, + [688] = 641, + [689] = 631, + [690] = 667, + [691] = 691, + [692] = 637, + [693] = 693, + [694] = 633, + [695] = 640, + [696] = 682, + [697] = 636, + [698] = 698, + [699] = 665, + [700] = 632, + [701] = 647, [702] = 702, [703] = 703, - [704] = 704, - [705] = 705, - [706] = 382, - [707] = 707, - [708] = 708, - [709] = 709, + [704] = 661, + [705] = 656, + [706] = 665, + [707] = 652, + [708] = 645, + [709] = 660, [710] = 710, [711] = 711, - [712] = 712, - [713] = 713, - [714] = 714, - [715] = 715, - [716] = 381, - [717] = 717, - [718] = 718, - [719] = 719, - [720] = 720, + [712] = 636, + [713] = 656, + [714] = 665, + [715] = 660, + [716] = 682, + [717] = 636, + [718] = 648, + [719] = 636, + [720] = 667, [721] = 721, - [722] = 658, - [723] = 723, - [724] = 724, - [725] = 725, - [726] = 381, - [727] = 727, - [728] = 728, - [729] = 729, - [730] = 730, - [731] = 731, - [732] = 732, - [733] = 733, - [734] = 734, - [735] = 735, - [736] = 382, - [737] = 737, - [738] = 738, - [739] = 739, - [740] = 740, - [741] = 741, - [742] = 742, + [722] = 641, + [723] = 648, + [724] = 632, + [725] = 640, + [726] = 641, + [727] = 647, + [728] = 636, + [729] = 632, + [730] = 633, + [731] = 633, + [732] = 637, + [733] = 703, + [734] = 631, + [735] = 635, + [736] = 652, + [737] = 656, + [738] = 660, + [739] = 661, + [740] = 651, + [741] = 640, + [742] = 647, [743] = 743, - [744] = 744, + [744] = 631, [745] = 745, - [746] = 746, - [747] = 747, - [748] = 748, - [749] = 749, - [750] = 750, + [746] = 637, + [747] = 631, + [748] = 652, + [749] = 635, + [750] = 648, [751] = 751, [752] = 752, [753] = 753, @@ -4067,529 +4147,529 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [771] = 771, [772] = 772, [773] = 773, - [774] = 774, - [775] = 775, + [774] = 545, + [775] = 638, [776] = 776, [777] = 777, - [778] = 778, + [778] = 777, [779] = 779, - [780] = 780, + [780] = 693, [781] = 781, [782] = 782, [783] = 783, - [784] = 784, - [785] = 785, - [786] = 786, + [784] = 773, + [785] = 772, + [786] = 772, [787] = 787, - [788] = 788, + [788] = 777, [789] = 789, - [790] = 790, + [790] = 773, [791] = 791, [792] = 792, [793] = 793, - [794] = 794, + [794] = 777, [795] = 795, - [796] = 796, + [796] = 711, [797] = 797, - [798] = 798, - [799] = 659, - [800] = 784, + [798] = 772, + [799] = 799, + [800] = 545, [801] = 801, - [802] = 784, - [803] = 140, + [802] = 773, + [803] = 803, [804] = 804, - [805] = 133, - [806] = 114, + [805] = 805, + [806] = 431, [807] = 807, [808] = 808, [809] = 809, [810] = 810, - [811] = 811, + [811] = 523, [812] = 812, - [813] = 125, - [814] = 123, - [815] = 120, - [816] = 460, - [817] = 784, - [818] = 670, + [813] = 813, + [814] = 814, + [815] = 443, + [816] = 816, + [817] = 817, + [818] = 818, [819] = 819, - [820] = 700, - [821] = 703, + [820] = 820, + [821] = 821, [822] = 822, [823] = 823, [824] = 824, - [825] = 462, - [826] = 464, - [827] = 123, + [825] = 825, + [826] = 826, + [827] = 827, [828] = 828, - [829] = 807, - [830] = 828, - [831] = 811, - [832] = 810, - [833] = 809, - [834] = 120, - [835] = 123, - [836] = 125, - [837] = 114, + [829] = 829, + [830] = 830, + [831] = 831, + [832] = 832, + [833] = 833, + [834] = 834, + [835] = 835, + [836] = 836, + [837] = 837, [838] = 838, - [839] = 133, - [840] = 140, + [839] = 839, + [840] = 840, [841] = 841, - [842] = 140, - [843] = 812, - [844] = 804, - [845] = 783, - [846] = 793, - [847] = 808, - [848] = 841, - [849] = 841, - [850] = 793, - [851] = 851, - [852] = 796, - [853] = 133, - [854] = 114, - [855] = 125, + [842] = 842, + [843] = 843, + [844] = 141, + [845] = 845, + [846] = 846, + [847] = 847, + [848] = 848, + [849] = 849, + [850] = 850, + [851] = 128, + [852] = 852, + [853] = 853, + [854] = 854, + [855] = 855, [856] = 856, - [857] = 796, - [858] = 797, - [859] = 797, - [860] = 798, - [861] = 828, - [862] = 841, - [863] = 120, - [864] = 812, - [865] = 828, - [866] = 811, - [867] = 810, - [868] = 804, - [869] = 809, - [870] = 828, - [871] = 783, - [872] = 798, + [857] = 857, + [858] = 858, + [859] = 859, + [860] = 860, + [861] = 861, + [862] = 862, + [863] = 863, + [864] = 864, + [865] = 865, + [866] = 142, + [867] = 867, + [868] = 868, + [869] = 869, + [870] = 870, + [871] = 871, + [872] = 872, [873] = 873, - [874] = 808, - [875] = 807, - [876] = 795, - [877] = 782, - [878] = 785, - [879] = 786, - [880] = 787, - [881] = 801, - [882] = 788, - [883] = 789, - [884] = 790, - [885] = 460, - [886] = 791, - [887] = 792, - [888] = 794, + [874] = 874, + [875] = 875, + [876] = 876, + [877] = 877, + [878] = 878, + [879] = 879, + [880] = 880, + [881] = 126, + [882] = 882, + [883] = 883, + [884] = 884, + [885] = 885, + [886] = 886, + [887] = 887, + [888] = 133, [889] = 889, - [890] = 670, + [890] = 890, [891] = 891, - [892] = 892, + [892] = 148, [893] = 893, [894] = 894, [895] = 895, - [896] = 87, - [897] = 897, - [898] = 84, - [899] = 899, - [900] = 83, - [901] = 82, - [902] = 79, - [903] = 90, - [904] = 904, - [905] = 899, - [906] = 899, - [907] = 86, - [908] = 112, - [909] = 104, - [910] = 89, - [911] = 899, + [896] = 896, + [897] = 693, + [898] = 711, + [899] = 896, + [900] = 638, + [901] = 896, + [902] = 896, + [903] = 662, + [904] = 443, + [905] = 905, + [906] = 906, + [907] = 431, + [908] = 908, + [909] = 909, + [910] = 910, + [911] = 911, [912] = 912, - [913] = 789, - [914] = 788, - [915] = 787, - [916] = 681, - [917] = 683, - [918] = 689, - [919] = 801, - [920] = 686, - [921] = 786, - [922] = 785, - [923] = 782, - [924] = 794, - [925] = 679, - [926] = 792, - [927] = 685, - [928] = 791, - [929] = 795, - [930] = 790, - [931] = 801, - [932] = 785, - [933] = 789, - [934] = 934, - [935] = 790, - [936] = 794, - [937] = 791, - [938] = 678, - [939] = 788, - [940] = 940, - [941] = 787, - [942] = 694, - [943] = 670, - [944] = 944, - [945] = 786, - [946] = 690, - [947] = 795, - [948] = 687, - [949] = 782, - [950] = 950, - [951] = 792, - [952] = 952, - [953] = 112, - [954] = 83, - [955] = 87, - [956] = 86, - [957] = 90, - [958] = 89, - [959] = 104, + [913] = 913, + [914] = 914, + [915] = 915, + [916] = 916, + [917] = 917, + [918] = 918, + [919] = 919, + [920] = 920, + [921] = 872, + [922] = 861, + [923] = 863, + [924] = 880, + [925] = 128, + [926] = 886, + [927] = 148, + [928] = 872, + [929] = 523, + [930] = 880, + [931] = 886, + [932] = 889, + [933] = 889, + [934] = 126, + [935] = 850, + [936] = 864, + [937] = 864, + [938] = 843, + [939] = 887, + [940] = 671, + [941] = 863, + [942] = 894, + [943] = 894, + [944] = 762, + [945] = 843, + [946] = 133, + [947] = 887, + [948] = 850, + [949] = 859, + [950] = 133, + [951] = 148, + [952] = 859, + [953] = 142, + [954] = 861, + [955] = 141, + [956] = 142, + [957] = 126, + [958] = 141, + [959] = 128, [960] = 960, [961] = 961, - [962] = 962, - [963] = 79, - [964] = 84, - [965] = 965, - [966] = 82, - [967] = 967, - [968] = 968, - [969] = 822, - [970] = 970, - [971] = 971, - [972] = 972, - [973] = 819, - [974] = 791, - [975] = 787, - [976] = 976, - [977] = 801, - [978] = 794, - [979] = 979, - [980] = 980, - [981] = 981, - [982] = 792, - [983] = 983, - [984] = 984, - [985] = 785, - [986] = 790, - [987] = 795, - [988] = 988, - [989] = 989, - [990] = 789, - [991] = 782, - [992] = 992, - [993] = 786, - [994] = 788, - [995] = 856, - [996] = 996, - [997] = 873, - [998] = 851, + [962] = 776, + [963] = 963, + [964] = 964, + [965] = 799, + [966] = 966, + [967] = 528, + [968] = 525, + [969] = 969, + [970] = 969, + [971] = 969, + [972] = 969, + [973] = 973, + [974] = 963, + [975] = 975, + [976] = 975, + [977] = 977, + [978] = 975, + [979] = 975, + [980] = 961, + [981] = 975, + [982] = 913, + [983] = 910, + [984] = 919, + [985] = 915, + [986] = 912, + [987] = 987, + [988] = 914, + [989] = 920, + [990] = 917, + [991] = 909, + [992] = 523, + [993] = 911, + [994] = 994, + [995] = 908, + [996] = 918, + [997] = 762, + [998] = 998, [999] = 999, [1000] = 1000, - [1001] = 1000, + [1001] = 998, [1002] = 1002, - [1003] = 1003, - [1004] = 1004, - [1005] = 1004, - [1006] = 1004, - [1007] = 1004, - [1008] = 1000, - [1009] = 1000, + [1003] = 99, + [1004] = 102, + [1005] = 1005, + [1006] = 87, + [1007] = 86, + [1008] = 79, + [1009] = 78, [1010] = 1010, - [1011] = 1011, + [1011] = 1005, [1012] = 1012, - [1013] = 1013, - [1014] = 1014, - [1015] = 1015, - [1016] = 1016, - [1017] = 1013, - [1018] = 1018, - [1019] = 1019, - [1020] = 1020, + [1013] = 100, + [1014] = 92, + [1015] = 98, + [1016] = 89, + [1017] = 1005, + [1018] = 1005, + [1019] = 88, + [1020] = 103, [1021] = 1021, - [1022] = 1022, - [1023] = 1022, - [1024] = 1024, - [1025] = 1025, - [1026] = 1025, - [1027] = 1027, - [1028] = 1028, - [1029] = 786, - [1030] = 1030, - [1031] = 1031, - [1032] = 789, - [1033] = 1031, - [1034] = 790, - [1035] = 1035, - [1036] = 1036, - [1037] = 1037, - [1038] = 787, - [1039] = 801, - [1040] = 1040, - [1041] = 1041, - [1042] = 1042, - [1043] = 1043, - [1044] = 788, - [1045] = 1036, - [1046] = 1046, - [1047] = 1047, - [1048] = 1048, - [1049] = 1036, - [1050] = 1046, - [1051] = 1051, - [1052] = 1052, - [1053] = 791, - [1054] = 795, - [1055] = 785, - [1056] = 1056, - [1057] = 1048, - [1058] = 1048, - [1059] = 1036, - [1060] = 1031, - [1061] = 1036, + [1022] = 76, + [1023] = 110, + [1024] = 114, + [1025] = 115, + [1026] = 117, + [1027] = 90, + [1028] = 910, + [1029] = 918, + [1030] = 801, + [1031] = 914, + [1032] = 910, + [1033] = 920, + [1034] = 911, + [1035] = 917, + [1036] = 918, + [1037] = 781, + [1038] = 909, + [1039] = 917, + [1040] = 908, + [1041] = 911, + [1042] = 909, + [1043] = 920, + [1044] = 912, + [1045] = 912, + [1046] = 919, + [1047] = 915, + [1048] = 913, + [1049] = 789, + [1050] = 783, + [1051] = 915, + [1052] = 919, + [1053] = 908, + [1054] = 914, + [1055] = 913, + [1056] = 782, + [1057] = 771, + [1058] = 1058, + [1059] = 779, + [1060] = 1060, + [1061] = 1061, [1062] = 1062, - [1063] = 1036, - [1064] = 782, - [1065] = 1065, - [1066] = 794, + [1063] = 792, + [1064] = 795, + [1065] = 797, + [1066] = 762, [1067] = 1067, [1068] = 1068, [1069] = 1069, - [1070] = 792, + [1070] = 1070, [1071] = 1071, - [1072] = 983, - [1073] = 1031, - [1074] = 1048, - [1075] = 1075, - [1076] = 1076, - [1077] = 1077, - [1078] = 1078, - [1079] = 1079, - [1080] = 1080, - [1081] = 1081, - [1082] = 1079, - [1083] = 1078, - [1084] = 1084, - [1085] = 1078, + [1072] = 98, + [1073] = 102, + [1074] = 103, + [1075] = 89, + [1076] = 87, + [1077] = 90, + [1078] = 92, + [1079] = 76, + [1080] = 110, + [1081] = 114, + [1082] = 115, + [1083] = 99, + [1084] = 117, + [1085] = 100, [1086] = 1086, - [1087] = 1087, - [1088] = 1078, - [1089] = 1078, - [1090] = 1090, - [1091] = 1091, - [1092] = 1092, + [1087] = 78, + [1088] = 79, + [1089] = 88, + [1090] = 86, + [1091] = 905, + [1092] = 916, [1093] = 1093, [1094] = 1094, [1095] = 1095, [1096] = 1096, [1097] = 1097, - [1098] = 1098, - [1099] = 1099, + [1098] = 912, + [1099] = 914, [1100] = 1100, [1101] = 1101, - [1102] = 1102, - [1103] = 1103, - [1104] = 1104, - [1105] = 1105, - [1106] = 1106, - [1107] = 819, + [1102] = 960, + [1103] = 913, + [1104] = 919, + [1105] = 915, + [1106] = 964, + [1107] = 910, [1108] = 1108, [1109] = 1109, [1110] = 1110, - [1111] = 1111, - [1112] = 747, - [1113] = 756, - [1114] = 1114, - [1115] = 1115, - [1116] = 1116, - [1117] = 1117, + [1111] = 911, + [1112] = 909, + [1113] = 920, + [1114] = 917, + [1115] = 918, + [1116] = 966, + [1117] = 908, [1118] = 1118, [1119] = 1119, [1120] = 1120, - [1121] = 1120, + [1121] = 1121, [1122] = 1122, - [1123] = 1120, - [1124] = 1120, + [1123] = 1123, + [1124] = 1124, [1125] = 1125, - [1126] = 758, - [1127] = 1127, - [1128] = 757, - [1129] = 1129, - [1130] = 1127, - [1131] = 756, - [1132] = 781, - [1133] = 762, - [1134] = 1134, - [1135] = 779, - [1136] = 1127, + [1126] = 1126, + [1127] = 1122, + [1128] = 1128, + [1129] = 1125, + [1130] = 1125, + [1131] = 1122, + [1132] = 1132, + [1133] = 1122, + [1134] = 1125, + [1135] = 1135, + [1136] = 1136, [1137] = 1137, - [1138] = 747, - [1139] = 1139, - [1140] = 1129, + [1138] = 1138, + [1139] = 1135, + [1140] = 1140, [1141] = 1141, - [1142] = 1141, - [1143] = 1134, + [1142] = 1142, + [1143] = 1143, [1144] = 1144, - [1145] = 1134, - [1146] = 1129, - [1147] = 1144, - [1148] = 1127, - [1149] = 1125, - [1150] = 1150, - [1151] = 753, - [1152] = 754, - [1153] = 1144, + [1145] = 1145, + [1146] = 1144, + [1147] = 1147, + [1148] = 1148, + [1149] = 1149, + [1150] = 1147, + [1151] = 920, + [1152] = 911, + [1153] = 1153, [1154] = 1154, - [1155] = 777, - [1156] = 1127, - [1157] = 1141, - [1158] = 1134, + [1155] = 1154, + [1156] = 1156, + [1157] = 1157, + [1158] = 1158, [1159] = 1159, - [1160] = 1127, - [1161] = 1161, + [1160] = 914, + [1161] = 910, [1162] = 1162, - [1163] = 1163, - [1164] = 1164, - [1165] = 1165, - [1166] = 1166, - [1167] = 1167, - [1168] = 1168, - [1169] = 1169, - [1170] = 1170, + [1163] = 1154, + [1164] = 919, + [1165] = 915, + [1166] = 912, + [1167] = 1157, + [1168] = 909, + [1169] = 1154, + [1170] = 917, [1171] = 1171, - [1172] = 1172, - [1173] = 1173, - [1174] = 1163, - [1175] = 1175, + [1172] = 918, + [1173] = 1156, + [1174] = 908, + [1175] = 913, [1176] = 1176, - [1177] = 1177, - [1178] = 1178, - [1179] = 1179, + [1177] = 1156, + [1178] = 1154, + [1179] = 1157, [1180] = 1180, - [1181] = 1181, + [1181] = 1171, [1182] = 1182, [1183] = 1183, - [1184] = 1181, - [1185] = 672, + [1184] = 1184, + [1185] = 1185, [1186] = 1186, [1187] = 1187, - [1188] = 1188, + [1188] = 1108, [1189] = 1189, [1190] = 1190, - [1191] = 1171, + [1191] = 1191, [1192] = 1192, - [1193] = 1193, - [1194] = 1189, - [1195] = 1182, - [1196] = 1168, + [1193] = 1157, + [1194] = 1194, + [1195] = 1154, + [1196] = 1156, [1197] = 1197, [1198] = 1198, [1199] = 1199, [1200] = 1200, [1201] = 1201, - [1202] = 1172, + [1202] = 1202, [1203] = 1203, - [1204] = 1177, - [1205] = 1193, - [1206] = 1198, - [1207] = 1207, - [1208] = 1179, - [1209] = 1169, - [1210] = 1207, + [1204] = 1204, + [1205] = 1205, + [1206] = 1206, + [1207] = 1201, + [1208] = 1201, + [1209] = 1209, + [1210] = 1205, [1211] = 1211, [1212] = 1212, - [1213] = 1207, - [1214] = 1214, + [1213] = 1213, + [1214] = 1201, [1215] = 1215, - [1216] = 1179, - [1217] = 1179, - [1218] = 1192, - [1219] = 1164, - [1220] = 1170, - [1221] = 1221, + [1216] = 1216, + [1217] = 1201, + [1218] = 1218, + [1219] = 1219, + [1220] = 1220, + [1221] = 905, [1222] = 1222, [1223] = 1223, - [1224] = 1186, + [1224] = 1224, [1225] = 1225, [1226] = 1226, [1227] = 1227, [1228] = 1228, - [1229] = 1228, - [1230] = 672, + [1229] = 1229, + [1230] = 1230, [1231] = 1231, [1232] = 1232, [1233] = 1233, - [1234] = 1167, - [1235] = 1166, - [1236] = 1178, - [1237] = 1165, - [1238] = 1238, + [1234] = 1231, + [1235] = 1231, + [1236] = 1236, + [1237] = 1237, + [1238] = 1231, [1239] = 1239, - [1240] = 960, - [1241] = 1239, - [1242] = 962, - [1243] = 1175, - [1244] = 1176, - [1245] = 1238, - [1246] = 1162, - [1247] = 965, - [1248] = 1180, - [1249] = 1239, - [1250] = 1239, - [1251] = 1251, - [1252] = 1228, - [1253] = 961, - [1254] = 1197, + [1240] = 1240, + [1241] = 1241, + [1242] = 1241, + [1243] = 883, + [1244] = 1241, + [1245] = 1245, + [1246] = 890, + [1247] = 1241, + [1248] = 1241, + [1249] = 1241, + [1250] = 1245, + [1251] = 1245, + [1252] = 1245, + [1253] = 1253, + [1254] = 1254, [1255] = 1255, - [1256] = 1238, - [1257] = 1232, + [1256] = 1256, + [1257] = 1257, [1258] = 1258, - [1259] = 1188, - [1260] = 1190, - [1261] = 1238, + [1259] = 1259, + [1260] = 1260, + [1261] = 1261, [1262] = 1262, [1263] = 1263, - [1264] = 1264, - [1265] = 1265, - [1266] = 1262, - [1267] = 1262, - [1268] = 1262, - [1269] = 1269, + [1264] = 1261, + [1265] = 1260, + [1266] = 1266, + [1267] = 1260, + [1268] = 1261, + [1269] = 1260, [1270] = 1270, [1271] = 1271, [1272] = 1272, - [1273] = 1273, + [1273] = 874, [1274] = 1274, - [1275] = 1274, + [1275] = 1275, [1276] = 1276, - [1277] = 1274, - [1278] = 1276, - [1279] = 1276, - [1280] = 1280, - [1281] = 1281, - [1282] = 1276, + [1277] = 1276, + [1278] = 1275, + [1279] = 883, + [1280] = 1274, + [1281] = 1276, + [1282] = 1282, [1283] = 1274, - [1284] = 1284, + [1284] = 870, [1285] = 1285, [1286] = 1286, - [1287] = 1287, - [1288] = 1288, - [1289] = 1289, - [1290] = 1290, - [1291] = 1291, - [1292] = 1292, - [1293] = 1293, - [1294] = 1294, - [1295] = 1295, - [1296] = 1296, + [1287] = 890, + [1288] = 852, + [1289] = 838, + [1290] = 1270, + [1291] = 1275, + [1292] = 885, + [1293] = 879, + [1294] = 1274, + [1295] = 839, + [1296] = 882, [1297] = 1297, [1298] = 1298, [1299] = 1299, @@ -4602,133 +4682,133 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1306] = 1306, [1307] = 1307, [1308] = 1308, - [1309] = 1309, - [1310] = 1310, - [1311] = 1311, + [1309] = 1304, + [1310] = 1303, + [1311] = 1302, [1312] = 1312, [1313] = 1313, [1314] = 1312, - [1315] = 1312, - [1316] = 1316, - [1317] = 1317, - [1318] = 1318, + [1315] = 1297, + [1316] = 1301, + [1317] = 1300, + [1318] = 1299, [1319] = 1319, [1320] = 1320, [1321] = 1321, - [1322] = 1322, + [1322] = 1305, [1323] = 1323, - [1324] = 1324, - [1325] = 1325, - [1326] = 1312, - [1327] = 1327, - [1328] = 1312, - [1329] = 1312, + [1324] = 1312, + [1325] = 1312, + [1326] = 1298, + [1327] = 1306, + [1328] = 1328, + [1329] = 1329, [1330] = 1330, [1331] = 1331, - [1332] = 1332, + [1332] = 1320, [1333] = 1333, - [1334] = 1324, + [1334] = 1334, [1335] = 1335, - [1336] = 1324, - [1337] = 1324, + [1336] = 1336, + [1337] = 1323, [1338] = 1338, [1339] = 1339, [1340] = 1340, [1341] = 1341, - [1342] = 1342, + [1342] = 1297, [1343] = 1343, [1344] = 1344, [1345] = 1345, [1346] = 1346, - [1347] = 1347, + [1347] = 1321, [1348] = 1348, [1349] = 1349, [1350] = 1350, - [1351] = 1343, + [1351] = 1351, [1352] = 1352, - [1353] = 1353, - [1354] = 1343, - [1355] = 1355, - [1356] = 1356, - [1357] = 1357, - [1358] = 1358, - [1359] = 1343, - [1360] = 1360, - [1361] = 1361, + [1353] = 757, + [1354] = 1349, + [1355] = 757, + [1356] = 1313, + [1357] = 1071, + [1358] = 1352, + [1359] = 1341, + [1360] = 1070, + [1361] = 1319, [1362] = 1362, [1363] = 1363, [1364] = 1364, - [1365] = 1365, - [1366] = 1366, - [1367] = 1367, - [1368] = 1368, - [1369] = 1369, - [1370] = 1370, - [1371] = 1371, - [1372] = 1372, - [1373] = 1373, - [1374] = 1363, - [1375] = 1375, - [1376] = 1362, + [1365] = 1351, + [1366] = 1308, + [1367] = 1336, + [1368] = 1331, + [1369] = 1329, + [1370] = 1328, + [1371] = 1350, + [1372] = 1345, + [1373] = 1363, + [1374] = 1374, + [1375] = 1307, + [1376] = 1376, [1377] = 1377, - [1378] = 1378, - [1379] = 1379, - [1380] = 1363, - [1381] = 1381, - [1382] = 1378, - [1383] = 1375, - [1384] = 1363, - [1385] = 1366, - [1386] = 1375, + [1378] = 1362, + [1379] = 1068, + [1380] = 1067, + [1381] = 1362, + [1382] = 1382, + [1383] = 1383, + [1384] = 1362, + [1385] = 1363, + [1386] = 1386, [1387] = 1387, - [1388] = 1366, - [1389] = 1389, - [1390] = 1366, - [1391] = 1362, - [1392] = 1378, - [1393] = 1362, - [1394] = 1378, - [1395] = 1375, + [1388] = 1388, + [1389] = 1364, + [1390] = 1390, + [1391] = 1391, + [1392] = 1392, + [1393] = 1393, + [1394] = 1394, + [1395] = 1395, [1396] = 1396, [1397] = 1397, [1398] = 1398, - [1399] = 1397, + [1399] = 1399, [1400] = 1400, [1401] = 1401, - [1402] = 1402, + [1402] = 1401, [1403] = 1403, - [1404] = 1400, - [1405] = 1397, - [1406] = 1402, - [1407] = 1400, - [1408] = 1408, - [1409] = 1402, + [1404] = 1404, + [1405] = 1401, + [1406] = 1400, + [1407] = 1401, + [1408] = 1400, + [1409] = 1409, [1410] = 1410, - [1411] = 1403, - [1412] = 1403, - [1413] = 1397, + [1411] = 1400, + [1412] = 1412, + [1413] = 1413, [1414] = 1414, - [1415] = 1403, - [1416] = 1400, - [1417] = 1417, + [1415] = 1414, + [1416] = 1414, + [1417] = 1413, [1418] = 1418, - [1419] = 1419, + [1419] = 1413, [1420] = 1420, [1421] = 1421, - [1422] = 1421, - [1423] = 1423, - [1424] = 1424, + [1422] = 1414, + [1423] = 1413, + [1424] = 1413, [1425] = 1425, - [1426] = 1419, - [1427] = 1425, - [1428] = 1419, + [1426] = 1426, + [1427] = 1427, + [1428] = 1413, [1429] = 1429, - [1430] = 1421, - [1431] = 1425, + [1430] = 1430, + [1431] = 1431, [1432] = 1432, - [1433] = 1425, - [1434] = 1419, - [1435] = 1421, + [1433] = 1433, + [1434] = 1434, + [1435] = 1435, [1436] = 1436, [1437] = 1437, [1438] = 1438, @@ -4747,54 +4827,54 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1451] = 1451, [1452] = 1452, [1453] = 1453, - [1454] = 1451, - [1455] = 1449, + [1454] = 1454, + [1455] = 1455, [1456] = 1456, - [1457] = 1457, - [1458] = 1449, + [1457] = 1453, + [1458] = 1458, [1459] = 1459, - [1460] = 1451, - [1461] = 1461, - [1462] = 1462, + [1460] = 1460, + [1461] = 1453, + [1462] = 1453, [1463] = 1463, - [1464] = 1451, + [1464] = 1464, [1465] = 1465, [1466] = 1466, - [1467] = 1449, + [1467] = 1466, [1468] = 1468, [1469] = 1469, - [1470] = 1470, + [1470] = 1466, [1471] = 1471, - [1472] = 1451, + [1472] = 1472, [1473] = 1473, - [1474] = 1474, - [1475] = 1475, + [1474] = 1468, + [1475] = 1472, [1476] = 1476, - [1477] = 1477, + [1477] = 1468, [1478] = 1478, - [1479] = 1479, - [1480] = 1480, - [1481] = 1449, - [1482] = 1451, - [1483] = 1449, - [1484] = 1484, - [1485] = 1485, - [1486] = 1486, - [1487] = 1487, - [1488] = 1486, - [1489] = 1489, - [1490] = 1490, + [1479] = 1472, + [1480] = 1469, + [1481] = 1466, + [1482] = 1482, + [1483] = 1472, + [1484] = 1466, + [1485] = 1469, + [1486] = 1468, + [1487] = 1466, + [1488] = 1468, + [1489] = 1468, + [1490] = 1469, [1491] = 1491, [1492] = 1492, [1493] = 1493, - [1494] = 1494, - [1495] = 1486, + [1494] = 1493, + [1495] = 1493, [1496] = 1496, - [1497] = 1497, - [1498] = 1498, - [1499] = 1486, - [1500] = 1486, - [1501] = 1486, + [1497] = 1496, + [1498] = 1496, + [1499] = 1496, + [1500] = 1500, + [1501] = 1493, [1502] = 1502, [1503] = 1503, [1504] = 1504, @@ -4802,187 +4882,187 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1506] = 1506, [1507] = 1507, [1508] = 1508, - [1509] = 1509, - [1510] = 1486, + [1509] = 1507, + [1510] = 1510, [1511] = 1511, [1512] = 1512, - [1513] = 1513, + [1513] = 1507, [1514] = 1514, [1515] = 1515, [1516] = 1516, - [1517] = 1517, + [1517] = 1511, [1518] = 1518, [1519] = 1519, [1520] = 1520, [1521] = 1521, [1522] = 1522, - [1523] = 1517, + [1523] = 1511, [1524] = 1524, - [1525] = 1513, - [1526] = 1521, - [1527] = 1513, + [1525] = 1516, + [1526] = 1504, + [1527] = 1511, [1528] = 1528, - [1529] = 1529, - [1530] = 1530, - [1531] = 1517, - [1532] = 1521, + [1529] = 1516, + [1530] = 1504, + [1531] = 1516, + [1532] = 1532, [1533] = 1533, - [1534] = 1517, - [1535] = 1511, - [1536] = 1517, - [1537] = 1511, + [1534] = 1534, + [1535] = 1520, + [1536] = 1536, + [1537] = 1518, [1538] = 1538, [1539] = 1539, - [1540] = 1540, - [1541] = 1541, - [1542] = 1542, - [1543] = 1543, + [1540] = 1507, + [1541] = 1504, + [1542] = 1520, + [1543] = 1518, [1544] = 1544, [1545] = 1545, [1546] = 1546, [1547] = 1547, [1548] = 1548, [1549] = 1549, - [1550] = 1550, + [1550] = 1518, [1551] = 1551, - [1552] = 1552, + [1552] = 1520, [1553] = 1553, [1554] = 1554, [1555] = 1555, - [1556] = 1547, + [1556] = 1555, [1557] = 1557, [1558] = 1558, [1559] = 1559, [1560] = 1560, - [1561] = 1561, - [1562] = 1562, + [1561] = 1555, + [1562] = 1553, [1563] = 1563, [1564] = 1564, [1565] = 1565, - [1566] = 1566, - [1567] = 1565, - [1568] = 1568, - [1569] = 1546, + [1566] = 1553, + [1567] = 1567, + [1568] = 1555, + [1569] = 1569, [1570] = 1570, [1571] = 1571, [1572] = 1572, - [1573] = 1573, + [1573] = 1571, [1574] = 1574, - [1575] = 1575, - [1576] = 1555, + [1575] = 1571, + [1576] = 1576, [1577] = 1577, [1578] = 1578, - [1579] = 1579, - [1580] = 1429, + [1579] = 1578, + [1580] = 1578, [1581] = 1581, - [1582] = 1582, + [1582] = 1576, [1583] = 1583, - [1584] = 1565, - [1585] = 1585, - [1586] = 1583, - [1587] = 1554, - [1588] = 1548, - [1589] = 1550, - [1590] = 1554, - [1591] = 1570, - [1592] = 1546, - [1593] = 1568, - [1594] = 1547, - [1595] = 1557, - [1596] = 1562, - [1597] = 1597, - [1598] = 1583, - [1599] = 1599, - [1600] = 1599, - [1601] = 1550, - [1602] = 1554, - [1603] = 1570, - [1604] = 1546, - [1605] = 1568, - [1606] = 1547, - [1607] = 1607, - [1608] = 1557, - [1609] = 1562, - [1610] = 1610, - [1611] = 1583, - [1612] = 1585, - [1613] = 1599, - [1614] = 1550, - [1615] = 1554, - [1616] = 1570, - [1617] = 1546, - [1618] = 1568, - [1619] = 1573, - [1620] = 1620, - [1621] = 1621, - [1622] = 1547, - [1623] = 1557, - [1624] = 1562, + [1584] = 1571, + [1585] = 1578, + [1586] = 1576, + [1587] = 1587, + [1588] = 1576, + [1589] = 1589, + [1590] = 1590, + [1591] = 1591, + [1592] = 1592, + [1593] = 1593, + [1594] = 1594, + [1595] = 1595, + [1596] = 1596, + [1597] = 1591, + [1598] = 1598, + [1599] = 1593, + [1600] = 1600, + [1601] = 1592, + [1602] = 1592, + [1603] = 1596, + [1604] = 1595, + [1605] = 1605, + [1606] = 1596, + [1607] = 1595, + [1608] = 1600, + [1609] = 1589, + [1610] = 1591, + [1611] = 1589, + [1612] = 1592, + [1613] = 1596, + [1614] = 1614, + [1615] = 1615, + [1616] = 1593, + [1617] = 1600, + [1618] = 1595, + [1619] = 1593, + [1620] = 1591, + [1621] = 1600, + [1622] = 1589, + [1623] = 1623, + [1624] = 1624, [1625] = 1625, [1626] = 1626, - [1627] = 1564, - [1628] = 1550, + [1627] = 1627, + [1628] = 1628, [1629] = 1629, - [1630] = 1575, + [1630] = 1630, [1631] = 1631, - [1632] = 1562, - [1633] = 1557, - [1634] = 1550, - [1635] = 1547, - [1636] = 1583, - [1637] = 1564, - [1638] = 1599, + [1632] = 1632, + [1633] = 1633, + [1634] = 1634, + [1635] = 1635, + [1636] = 1636, + [1637] = 1637, + [1638] = 1638, [1639] = 1639, [1640] = 1640, [1641] = 1641, - [1642] = 1573, + [1642] = 1642, [1643] = 1643, - [1644] = 1550, - [1645] = 1583, - [1646] = 1646, - [1647] = 1647, + [1644] = 1644, + [1645] = 1645, + [1646] = 1645, + [1647] = 1637, [1648] = 1648, [1649] = 1649, - [1650] = 1573, + [1650] = 1650, [1651] = 1651, - [1652] = 1652, - [1653] = 1653, - [1654] = 1654, - [1655] = 1554, - [1656] = 1585, + [1652] = 1637, + [1653] = 1643, + [1654] = 1642, + [1655] = 1645, + [1656] = 1656, [1657] = 1657, - [1658] = 1577, - [1659] = 1570, + [1658] = 1658, + [1659] = 1642, [1660] = 1660, - [1661] = 1568, + [1661] = 1645, [1662] = 1662, - [1663] = 1663, - [1664] = 1664, - [1665] = 1577, - [1666] = 1666, - [1667] = 1574, - [1668] = 1668, + [1663] = 1643, + [1664] = 1645, + [1665] = 1665, + [1666] = 1660, + [1667] = 1637, + [1668] = 1660, [1669] = 1669, - [1670] = 1570, - [1671] = 1546, + [1670] = 1670, + [1671] = 1642, [1672] = 1672, - [1673] = 1568, + [1673] = 1643, [1674] = 1674, - [1675] = 1599, - [1676] = 1599, + [1675] = 1675, + [1676] = 1676, [1677] = 1677, - [1678] = 1678, - [1679] = 1583, - [1680] = 1575, - [1681] = 1562, - [1682] = 1557, + [1678] = 1645, + [1679] = 1637, + [1680] = 1680, + [1681] = 1637, + [1682] = 1682, [1683] = 1683, [1684] = 1684, - [1685] = 1685, + [1685] = 1642, [1686] = 1686, - [1687] = 1687, - [1688] = 1688, - [1689] = 1689, + [1687] = 1642, + [1688] = 1643, + [1689] = 1643, [1690] = 1690, [1691] = 1691, [1692] = 1692, @@ -4991,374 +5071,625 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1695] = 1695, [1696] = 1696, [1697] = 1697, - [1698] = 1685, + [1698] = 1696, [1699] = 1699, - [1700] = 1700, + [1700] = 1696, [1701] = 1701, - [1702] = 1700, - [1703] = 1703, - [1704] = 1700, - [1705] = 1693, - [1706] = 1697, + [1702] = 1702, + [1703] = 1696, + [1704] = 1704, + [1705] = 1696, + [1706] = 1706, [1707] = 1707, [1708] = 1708, [1709] = 1709, - [1710] = 1699, - [1711] = 1711, + [1710] = 1710, + [1711] = 1696, [1712] = 1712, - [1713] = 1713, - [1714] = 1700, + [1713] = 1696, + [1714] = 1714, [1715] = 1715, - [1716] = 1703, + [1716] = 1716, [1717] = 1717, - [1718] = 1697, + [1718] = 1718, [1719] = 1719, [1720] = 1720, [1721] = 1721, - [1722] = 1693, - [1723] = 1723, + [1722] = 1722, + [1723] = 1721, [1724] = 1724, - [1725] = 1701, - [1726] = 1699, - [1727] = 1685, - [1728] = 1696, + [1725] = 1721, + [1726] = 1726, + [1727] = 1727, + [1728] = 1728, [1729] = 1729, [1730] = 1730, [1731] = 1731, [1732] = 1732, [1733] = 1733, - [1734] = 1700, + [1734] = 1734, [1735] = 1735, [1736] = 1736, [1737] = 1737, - [1738] = 1738, + [1738] = 1726, [1739] = 1739, [1740] = 1740, [1741] = 1741, - [1742] = 1703, - [1743] = 1740, - [1744] = 1740, - [1745] = 1745, - [1746] = 1746, + [1742] = 1721, + [1743] = 1733, + [1744] = 1744, + [1745] = 1728, + [1746] = 1733, [1747] = 1747, [1748] = 1748, - [1749] = 1749, - [1750] = 1697, - [1751] = 1751, + [1749] = 1731, + [1750] = 1728, + [1751] = 1731, [1752] = 1752, [1753] = 1753, - [1754] = 1701, - [1755] = 1699, - [1756] = 1685, + [1754] = 1754, + [1755] = 1721, + [1756] = 1756, [1757] = 1757, - [1758] = 1696, + [1758] = 1758, [1759] = 1759, [1760] = 1760, [1761] = 1761, - [1762] = 1703, - [1763] = 1730, - [1764] = 1740, - [1765] = 1693, + [1762] = 1759, + [1763] = 1758, + [1764] = 1764, + [1765] = 1765, [1766] = 1766, - [1767] = 1697, - [1768] = 1740, - [1769] = 1732, - [1770] = 1693, + [1767] = 1767, + [1768] = 1768, + [1769] = 1769, + [1770] = 1770, [1771] = 1771, - [1772] = 1701, - [1773] = 1701, - [1774] = 1730, - [1775] = 1685, - [1776] = 1730, - [1777] = 1777, + [1772] = 1772, + [1773] = 1773, + [1774] = 1774, + [1775] = 1775, + [1776] = 1776, + [1777] = 1769, [1778] = 1778, [1779] = 1779, - [1780] = 1780, + [1780] = 1761, [1781] = 1781, [1782] = 1782, [1783] = 1783, - [1784] = 1784, - [1785] = 1785, + [1784] = 1760, + [1785] = 1759, [1786] = 1786, [1787] = 1787, [1788] = 1788, - [1789] = 1789, + [1789] = 1775, [1790] = 1790, [1791] = 1791, - [1792] = 1792, + [1792] = 1758, [1793] = 1793, - [1794] = 1794, + [1794] = 1765, [1795] = 1795, [1796] = 1796, - [1797] = 1797, - [1798] = 1798, + [1797] = 1773, + [1798] = 1772, [1799] = 1799, - [1800] = 1800, - [1801] = 1782, - [1802] = 1802, - [1803] = 1803, - [1804] = 1804, - [1805] = 1805, - [1806] = 1806, + [1800] = 1772, + [1801] = 1801, + [1802] = 1767, + [1803] = 1760, + [1804] = 1773, + [1805] = 1771, + [1806] = 1774, [1807] = 1807, [1808] = 1808, - [1809] = 1809, + [1809] = 1775, [1810] = 1810, - [1811] = 1803, + [1811] = 1811, [1812] = 1812, - [1813] = 1793, + [1813] = 1813, [1814] = 1814, - [1815] = 1785, + [1815] = 1815, [1816] = 1816, [1817] = 1817, - [1818] = 1792, - [1819] = 1819, - [1820] = 1820, - [1821] = 1792, + [1818] = 1790, + [1819] = 1757, + [1820] = 1781, + [1821] = 1767, [1822] = 1822, [1823] = 1823, - [1824] = 1793, + [1824] = 1824, [1825] = 1825, - [1826] = 1784, - [1827] = 1796, - [1828] = 1828, - [1829] = 1829, - [1830] = 1790, - [1831] = 1831, - [1832] = 1832, - [1833] = 1833, - [1834] = 1800, - [1835] = 1788, - [1836] = 1836, - [1837] = 1800, - [1838] = 1797, - [1839] = 1839, - [1840] = 1788, + [1826] = 1824, + [1827] = 1827, + [1828] = 1757, + [1829] = 1815, + [1830] = 1813, + [1831] = 1605, + [1832] = 1816, + [1833] = 1761, + [1834] = 1834, + [1835] = 1835, + [1836] = 1765, + [1837] = 1764, + [1838] = 1827, + [1839] = 1766, + [1840] = 1825, [1841] = 1841, - [1842] = 1842, - [1843] = 1789, - [1844] = 1844, - [1845] = 1782, - [1846] = 1808, - [1847] = 1790, - [1848] = 1808, - [1849] = 1849, - [1850] = 1803, - [1851] = 1816, - [1852] = 1807, - [1853] = 1792, - [1854] = 1854, - [1855] = 1855, - [1856] = 965, - [1857] = 1784, - [1858] = 1858, - [1859] = 1859, - [1860] = 1788, + [1842] = 1758, + [1843] = 1825, + [1844] = 1759, + [1845] = 1845, + [1846] = 1846, + [1847] = 1827, + [1848] = 1848, + [1849] = 1760, + [1850] = 1761, + [1851] = 1813, + [1852] = 1772, + [1853] = 1815, + [1854] = 1757, + [1855] = 1808, + [1856] = 1773, + [1857] = 1774, + [1858] = 1775, + [1859] = 1788, + [1860] = 1781, [1861] = 1861, - [1862] = 1796, - [1863] = 1797, - [1864] = 1782, - [1865] = 961, + [1862] = 1767, + [1863] = 1863, + [1864] = 1808, + [1865] = 1768, [1866] = 1866, - [1867] = 1867, - [1868] = 1868, - [1869] = 1816, - [1870] = 1870, - [1871] = 1871, - [1872] = 1872, + [1867] = 1757, + [1868] = 1815, + [1869] = 1869, + [1870] = 1813, + [1871] = 1827, + [1872] = 1790, [1873] = 1873, - [1874] = 1874, - [1875] = 1875, - [1876] = 1788, + [1874] = 1825, + [1875] = 1825, + [1876] = 1876, [1877] = 1877, - [1878] = 1782, - [1879] = 1816, + [1878] = 1827, + [1879] = 1825, [1880] = 1880, [1881] = 1881, [1882] = 1882, [1883] = 1883, - [1884] = 1884, - [1885] = 1788, - [1886] = 1789, - [1887] = 1887, - [1888] = 1798, + [1884] = 1815, + [1885] = 1885, + [1886] = 1813, + [1887] = 1765, + [1888] = 1758, [1889] = 1889, - [1890] = 1890, - [1891] = 1891, - [1892] = 1892, - [1893] = 1887, - [1894] = 1894, - [1895] = 1895, - [1896] = 1789, - [1897] = 1897, + [1890] = 1816, + [1891] = 1759, + [1892] = 1767, + [1893] = 1841, + [1894] = 1760, + [1895] = 1761, + [1896] = 1781, + [1897] = 1765, [1898] = 1898, - [1899] = 1899, + [1899] = 1824, [1900] = 1900, - [1901] = 464, + [1901] = 1901, [1902] = 1902, - [1903] = 1903, - [1904] = 1871, - [1905] = 1872, - [1906] = 1906, - [1907] = 1907, - [1908] = 1908, - [1909] = 1909, - [1910] = 1910, - [1911] = 1874, - [1912] = 1912, - [1913] = 1871, - [1914] = 1914, - [1915] = 1915, - [1916] = 1916, - [1917] = 1789, - [1918] = 1918, - [1919] = 1836, - [1920] = 1920, - [1921] = 1785, - [1922] = 1788, - [1923] = 1802, - [1924] = 1782, - [1925] = 1925, - [1926] = 1926, - [1927] = 1790, - [1928] = 1868, - [1929] = 1798, - [1930] = 1855, - [1931] = 1808, + [1903] = 1827, + [1904] = 1765, + [1905] = 1758, + [1906] = 1772, + [1907] = 1773, + [1908] = 1759, + [1909] = 1760, + [1910] = 1761, + [1911] = 1774, + [1912] = 1790, + [1913] = 1775, + [1914] = 1781, + [1915] = 1813, + [1916] = 1815, + [1917] = 1766, + [1918] = 1767, + [1919] = 1768, + [1920] = 1767, + [1921] = 1827, + [1922] = 1781, + [1923] = 1757, + [1924] = 1924, + [1925] = 1774, + [1926] = 1788, + [1927] = 1771, + [1928] = 1772, + [1929] = 1773, + [1930] = 1774, + [1931] = 1775, [1932] = 1932, - [1933] = 1887, - [1934] = 1816, - [1935] = 1831, - [1936] = 1807, + [1933] = 1933, + [1934] = 1934, + [1935] = 1935, + [1936] = 1935, [1937] = 1937, - [1938] = 1782, - [1939] = 1939, - [1940] = 462, + [1938] = 1938, + [1939] = 1934, + [1940] = 1940, [1941] = 1941, [1942] = 1942, - [1943] = 1816, - [1944] = 1831, - [1945] = 1784, - [1946] = 1817, + [1943] = 1943, + [1944] = 1944, + [1945] = 1945, + [1946] = 1946, [1947] = 1947, [1948] = 1948, - [1949] = 1870, + [1949] = 1949, [1950] = 1950, [1951] = 1951, [1952] = 1952, [1953] = 1953, - [1954] = 1947, + [1954] = 1954, [1955] = 1955, - [1956] = 1956, + [1956] = 1938, [1957] = 1957, - [1958] = 1855, - [1959] = 1807, + [1958] = 1958, + [1959] = 1959, [1960] = 1960, [1961] = 1961, - [1962] = 1881, - [1963] = 1882, + [1962] = 1962, + [1963] = 1952, [1964] = 1964, [1965] = 1965, - [1966] = 1966, - [1967] = 1825, - [1968] = 1819, - [1969] = 1969, - [1970] = 1970, - [1971] = 1890, + [1966] = 1955, + [1967] = 1967, + [1968] = 1940, + [1969] = 1934, + [1970] = 1937, + [1971] = 1935, [1972] = 1972, - [1973] = 1831, - [1974] = 1974, + [1973] = 1973, + [1974] = 1941, [1975] = 1975, [1976] = 1976, - [1977] = 1977, - [1978] = 1890, - [1979] = 1796, + [1977] = 1955, + [1978] = 1938, + [1979] = 1979, [1980] = 1980, [1981] = 1981, - [1982] = 1868, - [1983] = 1819, - [1984] = 1855, + [1982] = 1982, + [1983] = 1983, + [1984] = 1984, [1985] = 1985, - [1986] = 962, - [1987] = 1817, + [1986] = 1986, + [1987] = 1952, [1988] = 1988, - [1989] = 1816, - [1990] = 1797, - [1991] = 1991, - [1992] = 1881, - [1993] = 1882, - [1994] = 1785, - [1995] = 1807, + [1989] = 1989, + [1990] = 1953, + [1991] = 1955, + [1992] = 1960, + [1993] = 1993, + [1994] = 1941, + [1995] = 1937, [1996] = 1996, - [1997] = 1793, - [1998] = 1890, - [1999] = 1999, + [1997] = 1997, + [1998] = 1998, + [1999] = 1941, [2000] = 2000, [2001] = 2001, - [2002] = 2002, + [2002] = 1953, [2003] = 2003, - [2004] = 2004, - [2005] = 1872, + [2004] = 1952, + [2005] = 1960, [2006] = 2006, - [2007] = 1800, - [2008] = 1874, - [2009] = 2009, + [2007] = 1935, + [2008] = 1934, + [2009] = 1960, [2010] = 2010, [2011] = 2011, - [2012] = 2012, - [2013] = 1881, + [2012] = 1960, + [2013] = 1953, [2014] = 2014, - [2015] = 1800, - [2016] = 2016, - [2017] = 1881, - [2018] = 1881, + [2015] = 2015, + [2016] = 1953, + [2017] = 1938, + [2018] = 1947, [2019] = 2019, - [2020] = 2020, - [2021] = 1976, - [2022] = 2022, - [2023] = 2023, - [2024] = 2024, - [2025] = 2003, + [2020] = 1941, + [2021] = 2021, + [2022] = 1935, + [2023] = 1937, + [2024] = 1934, + [2025] = 1940, [2026] = 2026, - [2027] = 1825, + [2027] = 1938, [2028] = 2028, [2029] = 2029, - [2030] = 1789, - [2031] = 1808, - [2032] = 1976, + [2030] = 2030, + [2031] = 2031, + [2032] = 2032, [2033] = 2033, - [2034] = 1781, - [2035] = 2024, + [2034] = 2034, + [2035] = 2035, [2036] = 2036, [2037] = 2037, - [2038] = 1803, + [2038] = 1068, [2039] = 2039, - [2040] = 1825, - [2041] = 1807, + [2040] = 2040, + [2041] = 2041, [2042] = 2042, [2043] = 2043, - [2044] = 2003, + [2044] = 2044, [2045] = 2045, [2046] = 2046, - [2047] = 1781, + [2047] = 2047, [2048] = 2048, [2049] = 2049, [2050] = 2050, - [2051] = 2051, - [2052] = 1808, - [2053] = 1855, - [2054] = 1819, - [2055] = 1781, - [2056] = 960, - [2057] = 2057, - [2058] = 1817, - [2059] = 1882, - [2060] = 2003, + [2051] = 2048, + [2052] = 2052, + [2053] = 2053, + [2054] = 2054, + [2055] = 2055, + [2056] = 2056, + [2057] = 2037, + [2058] = 2058, + [2059] = 2059, + [2060] = 2050, [2061] = 2061, - [2062] = 1942, - [2063] = 2003, + [2062] = 2062, + [2063] = 2063, [2064] = 2064, - [2065] = 1881, + [2065] = 2065, + [2066] = 2066, + [2067] = 2067, + [2068] = 2068, + [2069] = 2069, + [2070] = 2070, + [2071] = 2071, + [2072] = 2045, + [2073] = 2045, + [2074] = 2074, + [2075] = 2075, + [2076] = 2076, + [2077] = 2050, + [2078] = 2078, + [2079] = 2079, + [2080] = 2080, + [2081] = 2081, + [2082] = 2082, + [2083] = 2037, + [2084] = 2084, + [2085] = 2042, + [2086] = 2086, + [2087] = 2048, + [2088] = 2088, + [2089] = 2089, + [2090] = 2090, + [2091] = 2091, + [2092] = 2092, + [2093] = 2093, + [2094] = 2094, + [2095] = 2095, + [2096] = 2096, + [2097] = 2045, + [2098] = 2098, + [2099] = 2050, + [2100] = 2037, + [2101] = 2101, + [2102] = 2102, + [2103] = 2103, + [2104] = 2104, + [2105] = 2105, + [2106] = 2106, + [2107] = 2107, + [2108] = 2108, + [2109] = 2109, + [2110] = 2110, + [2111] = 2111, + [2112] = 2112, + [2113] = 2113, + [2114] = 2114, + [2115] = 2115, + [2116] = 2112, + [2117] = 2071, + [2118] = 2110, + [2119] = 2095, + [2120] = 2120, + [2121] = 2059, + [2122] = 2122, + [2123] = 2106, + [2124] = 2124, + [2125] = 2082, + [2126] = 2126, + [2127] = 2081, + [2128] = 2128, + [2129] = 2129, + [2130] = 2130, + [2131] = 2131, + [2132] = 2132, + [2133] = 2076, + [2134] = 2134, + [2135] = 2135, + [2136] = 2045, + [2137] = 2137, + [2138] = 2138, + [2139] = 2139, + [2140] = 2140, + [2141] = 2141, + [2142] = 2142, + [2143] = 2050, + [2144] = 2144, + [2145] = 2145, + [2146] = 2141, + [2147] = 1067, + [2148] = 2148, + [2149] = 2149, + [2150] = 2150, + [2151] = 2068, + [2152] = 2034, + [2153] = 2080, + [2154] = 2048, + [2155] = 2071, + [2156] = 2156, + [2157] = 2069, + [2158] = 2036, + [2159] = 2067, + [2160] = 2160, + [2161] = 2035, + [2162] = 2162, + [2163] = 2036, + [2164] = 2037, + [2165] = 2165, + [2166] = 2162, + [2167] = 1071, + [2168] = 2037, + [2169] = 2169, + [2170] = 2063, + [2171] = 2171, + [2172] = 2128, + [2173] = 2173, + [2174] = 2174, + [2175] = 2175, + [2176] = 2176, + [2177] = 2177, + [2178] = 2178, + [2179] = 2179, + [2180] = 2180, + [2181] = 2108, + [2182] = 2182, + [2183] = 2062, + [2184] = 2063, + [2185] = 2128, + [2186] = 2162, + [2187] = 2187, + [2188] = 525, + [2189] = 2189, + [2190] = 2062, + [2191] = 2102, + [2192] = 2103, + [2193] = 2193, + [2194] = 2194, + [2195] = 2050, + [2196] = 2059, + [2197] = 2054, + [2198] = 2066, + [2199] = 2048, + [2200] = 2111, + [2201] = 2080, + [2202] = 2080, + [2203] = 2048, + [2204] = 2204, + [2205] = 2205, + [2206] = 2206, + [2207] = 2067, + [2208] = 2042, + [2209] = 2209, + [2210] = 2059, + [2211] = 2069, + [2212] = 2035, + [2213] = 2068, + [2214] = 2050, + [2215] = 2080, + [2216] = 2216, + [2217] = 2217, + [2218] = 1070, + [2219] = 2219, + [2220] = 2062, + [2221] = 2063, + [2222] = 2162, + [2223] = 2223, + [2224] = 2037, + [2225] = 2225, + [2226] = 2226, + [2227] = 2227, + [2228] = 2228, + [2229] = 2102, + [2230] = 2103, + [2231] = 2231, + [2232] = 2067, + [2233] = 2176, + [2234] = 2234, + [2235] = 2111, + [2236] = 2069, + [2237] = 2237, + [2238] = 2238, + [2239] = 2071, + [2240] = 2045, + [2241] = 2241, + [2242] = 2242, + [2243] = 2036, + [2244] = 2244, + [2245] = 2035, + [2246] = 2076, + [2247] = 2247, + [2248] = 2029, + [2249] = 2034, + [2250] = 2081, + [2251] = 2251, + [2252] = 2082, + [2253] = 2162, + [2254] = 2254, + [2255] = 2255, + [2256] = 2256, + [2257] = 2257, + [2258] = 2102, + [2259] = 2071, + [2260] = 2145, + [2261] = 2042, + [2262] = 2102, + [2263] = 2102, + [2264] = 2264, + [2265] = 2045, + [2266] = 2128, + [2267] = 2267, + [2268] = 2268, + [2269] = 2269, + [2270] = 2270, + [2271] = 2271, + [2272] = 2272, + [2273] = 2029, + [2274] = 2274, + [2275] = 2275, + [2276] = 2071, + [2277] = 2076, + [2278] = 2278, + [2279] = 2279, + [2280] = 2104, + [2281] = 2281, + [2282] = 2282, + [2283] = 2283, + [2284] = 2284, + [2285] = 2285, + [2286] = 2286, + [2287] = 2287, + [2288] = 2162, + [2289] = 2289, + [2290] = 2111, + [2291] = 2270, + [2292] = 2081, + [2293] = 2082, + [2294] = 2270, + [2295] = 2104, + [2296] = 2034, + [2297] = 2042, + [2298] = 2298, + [2299] = 2299, + [2300] = 2300, + [2301] = 2108, + [2302] = 2110, + [2303] = 528, + [2304] = 2112, + [2305] = 2104, + [2306] = 2269, + [2307] = 2307, + [2308] = 2095, + [2309] = 2309, + [2310] = 2310, + [2311] = 2270, + [2312] = 2106, + [2313] = 2103, + [2314] = 2270, + [2315] = 2315, + [2316] = 2102, }; static TSCharacterRange sym_number_literal_character_set_13[] = { @@ -6228,11 +6559,21 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (set_contains(sym_identifier_character_set_1, 658, lookahead)) ADVANCE(309); END_STATE(); case 60: - if (lookahead == '#') ADVANCE(83); - if (lookahead == '/') ADVANCE(63); - if (lookahead == '[') ADVANCE(76); - if (lookahead == '\\') ADVANCE(16); - if (lookahead == '}') ADVANCE(230); + ADVANCE_MAP( + '#', 83, + '(', 184, + ')', 129, + '*', 198, + ',', 128, + '/', 63, + ':', 236, + ';', 225, + '=', 234, + '[', 232, + '\\', 16, + '{', 229, + '}', 230, + ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(60); if (set_contains(sym_identifier_character_set_1, 658, lookahead)) ADVANCE(309); @@ -8052,1586 +8393,1628 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { 'i', 86, 'l', 87, 'm', 88, - 'p', 89, - 'r', 90, - 's', 91, - 't', 92, - 'u', 93, - 'v', 94, + 'n', 89, + 'p', 90, + 'r', 91, + 's', 92, + 't', 93, + 'u', 94, + 'v', 95, ); END_STATE(); case 33: - if (lookahead == 'l') ADVANCE(95); + if (lookahead == 'l') ADVANCE(96); END_STATE(); case 34: - if (lookahead == 'n') ADVANCE(96); + if (lookahead == 'n') ADVANCE(97); END_STATE(); case 35: - if (lookahead == 'i') ADVANCE(97); + if (lookahead == 'i') ADVANCE(98); END_STATE(); case 36: - if (lookahead == 'm') ADVANCE(98); + if (lookahead == 'm') ADVANCE(99); END_STATE(); case 37: - if (lookahead == 't') ADVANCE(99); + if (lookahead == 't') ADVANCE(100); END_STATE(); case 38: - if (lookahead == 'o') ADVANCE(100); + if (lookahead == 'o') ADVANCE(101); END_STATE(); case 39: - if (lookahead == 'e') ADVANCE(101); + if (lookahead == 'e') ADVANCE(102); END_STATE(); case 40: - if (lookahead == 's') ADVANCE(102); + if (lookahead == 's') ADVANCE(103); END_STATE(); case 41: - if (lookahead == 'a') ADVANCE(103); + if (lookahead == 'a') ADVANCE(104); END_STATE(); case 42: - if (lookahead == 'n') ADVANCE(104); + if (lookahead == 'n') ADVANCE(105); END_STATE(); case 43: - if (lookahead == 'f') ADVANCE(105); + if (lookahead == 'f') ADVANCE(106); END_STATE(); case 44: ACCEPT_TOKEN(anon_sym_do); - if (lookahead == 'u') ADVANCE(106); + if (lookahead == 'u') ADVANCE(107); END_STATE(); case 45: - if (lookahead == 's') ADVANCE(107); + if (lookahead == 's') ADVANCE(108); END_STATE(); case 46: - if (lookahead == 'u') ADVANCE(108); + if (lookahead == 'u') ADVANCE(109); END_STATE(); case 47: - if (lookahead == 't') ADVANCE(109); + if (lookahead == 't') ADVANCE(110); END_STATE(); case 48: - if (lookahead == 'l') ADVANCE(110); + if (lookahead == 'l') ADVANCE(111); END_STATE(); case 49: - if (lookahead == 'o') ADVANCE(111); + if (lookahead == 'o') ADVANCE(112); END_STATE(); case 50: - if (lookahead == 'r') ADVANCE(112); + if (lookahead == 'r') ADVANCE(113); END_STATE(); case 51: - if (lookahead == 't') ADVANCE(113); + if (lookahead == 't') ADVANCE(114); END_STATE(); case 52: ACCEPT_TOKEN(anon_sym_if); END_STATE(); case 53: - if (lookahead == 'l') ADVANCE(114); - if (lookahead == 't') ADVANCE(115); + if (lookahead == 'l') ADVANCE(115); + if (lookahead == 't') ADVANCE(116); END_STATE(); case 54: - if (lookahead == 'n') ADVANCE(116); + if (lookahead == 'n') ADVANCE(117); END_STATE(); case 55: - if (lookahead == 'x') ADVANCE(117); + if (lookahead == 'x') ADVANCE(118); END_STATE(); case 56: - if (lookahead == 'r') ADVANCE(118); + if (lookahead == 'r') ADVANCE(119); END_STATE(); case 57: - if (lookahead == 'l') ADVANCE(119); + if (lookahead == 'l') ADVANCE(120); END_STATE(); case 58: - if (lookahead == 'f') ADVANCE(120); + if (lookahead == 'f') ADVANCE(121); END_STATE(); case 59: - if (lookahead == 'r') ADVANCE(121); + if (lookahead == 'r') ADVANCE(122); END_STATE(); case 60: - if (lookahead == 'g') ADVANCE(122); - if (lookahead == 's') ADVANCE(123); - if (lookahead == 't') ADVANCE(124); + if (lookahead == 'g') ADVANCE(123); + if (lookahead == 's') ADVANCE(124); + if (lookahead == 't') ADVANCE(125); END_STATE(); case 61: - if (lookahead == 'o') ADVANCE(125); + if (lookahead == 'o') ADVANCE(126); END_STATE(); case 62: - if (lookahead == 'g') ADVANCE(126); - if (lookahead == 'z') ADVANCE(127); + if (lookahead == 'g') ADVANCE(127); + if (lookahead == 'z') ADVANCE(128); END_STATE(); case 63: - if (lookahead == 'i') ADVANCE(128); + if (lookahead == 'i') ADVANCE(129); END_STATE(); case 64: - if (lookahead == 'a') ADVANCE(129); - if (lookahead == 'r') ADVANCE(130); + if (lookahead == 'a') ADVANCE(130); + if (lookahead == 'r') ADVANCE(131); END_STATE(); case 65: - if (lookahead == 'i') ADVANCE(131); + if (lookahead == 'i') ADVANCE(132); END_STATE(); case 66: - if (lookahead == 'r') ADVANCE(132); + if (lookahead == 'r') ADVANCE(133); END_STATE(); case 67: - if (lookahead == 'u') ADVANCE(133); + if (lookahead == 'u') ADVANCE(134); END_STATE(); case 68: - if (lookahead == 'p') ADVANCE(134); + if (lookahead == 'p') ADVANCE(135); END_STATE(); case 69: - if (lookahead == 'n') ADVANCE(135); + if (lookahead == 'n') ADVANCE(136); END_STATE(); case 70: - if (lookahead == 'i') ADVANCE(136); - if (lookahead == 's') ADVANCE(137); + if (lookahead == 'i') ADVANCE(137); + if (lookahead == 's') ADVANCE(138); END_STATE(); case 71: - if (lookahead == 'i') ADVANCE(138); - if (lookahead == 'l') ADVANCE(139); + if (lookahead == 'i') ADVANCE(139); + if (lookahead == 'l') ADVANCE(140); END_STATE(); case 72: - if (lookahead == 'i') ADVANCE(140); + if (lookahead == 'i') ADVANCE(141); END_STATE(); case 73: - if (lookahead == 'S') ADVANCE(141); + if (lookahead == 'S') ADVANCE(142); END_STATE(); case 74: - if (lookahead == 'L') ADVANCE(142); + if (lookahead == 'L') ADVANCE(143); END_STATE(); case 75: - if (lookahead == 'E') ADVANCE(143); + if (lookahead == 'E') ADVANCE(144); END_STATE(); case 76: - if (lookahead == 'i') ADVANCE(144); + if (lookahead == 'i') ADVANCE(145); END_STATE(); case 77: - if (lookahead == 'o') ADVANCE(145); + if (lookahead == 'o') ADVANCE(146); END_STATE(); case 78: - if (lookahead == 'n') ADVANCE(146); + if (lookahead == 'n') ADVANCE(147); END_STATE(); case 79: - if (lookahead == 'r') ADVANCE(147); + if (lookahead == 'r') ADVANCE(148); END_STATE(); case 80: - if (lookahead == 'l') ADVANCE(148); - if (lookahead == 's') ADVANCE(149); - if (lookahead == 't') ADVANCE(150); + if (lookahead == 'l') ADVANCE(149); + if (lookahead == 's') ADVANCE(150); + if (lookahead == 't') ADVANCE(151); END_STATE(); case 81: - if (lookahead == 'a') ADVANCE(151); + if (lookahead == 'a') ADVANCE(152); END_STATE(); case 82: - if (lookahead == 'd') ADVANCE(152); - if (lookahead == 'l') ADVANCE(153); + if (lookahead == 'd') ADVANCE(153); + if (lookahead == 'l') ADVANCE(154); + if (lookahead == 'o') ADVANCE(155); END_STATE(); case 83: - if (lookahead == 'e') ADVANCE(154); + if (lookahead == 'e') ADVANCE(156); END_STATE(); case 84: - if (lookahead == 'x') ADVANCE(155); + if (lookahead == 'x') ADVANCE(157); END_STATE(); case 85: - if (lookahead == 'a') ADVANCE(156); - if (lookahead == 'i') ADVANCE(157); - if (lookahead == 'o') ADVANCE(158); + if (lookahead == 'a') ADVANCE(158); + if (lookahead == 'i') ADVANCE(159); + if (lookahead == 'o') ADVANCE(160); END_STATE(); case 86: - if (lookahead == 'n') ADVANCE(159); + if (lookahead == 'n') ADVANCE(161); END_STATE(); case 87: - if (lookahead == 'e') ADVANCE(160); + if (lookahead == 'e') ADVANCE(162); END_STATE(); case 88: - if (lookahead == 'u') ADVANCE(161); + if (lookahead == 'u') ADVANCE(163); END_STATE(); case 89: - if (lookahead == 'r') ADVANCE(162); + if (lookahead == 'o') ADVANCE(164); END_STATE(); case 90: - if (lookahead == 'e') ADVANCE(163); - if (lookahead == 'o') ADVANCE(164); + if (lookahead == 'r') ADVANCE(165); END_STATE(); case 91: - if (lookahead == 'c') ADVANCE(165); - if (lookahead == 'p') ADVANCE(166); - if (lookahead == 't') ADVANCE(167); + if (lookahead == 'e') ADVANCE(166); + if (lookahead == 'o') ADVANCE(167); END_STATE(); case 92: - if (lookahead == 'h') ADVANCE(168); - if (lookahead == 'r') ADVANCE(169); + if (lookahead == 'c') ADVANCE(168); + if (lookahead == 'p') ADVANCE(169); + if (lookahead == 't') ADVANCE(170); END_STATE(); case 93: - if (lookahead == 'n') ADVANCE(170); - if (lookahead == 'p') ADVANCE(171); + if (lookahead == 'h') ADVANCE(171); + if (lookahead == 'r') ADVANCE(172); END_STATE(); case 94: - if (lookahead == 'e') ADVANCE(172); + if (lookahead == 'n') ADVANCE(173); + if (lookahead == 'p') ADVANCE(174); END_STATE(); case 95: - if (lookahead == 'i') ADVANCE(173); + if (lookahead == 'e') ADVANCE(175); END_STATE(); case 96: - if (lookahead == 'a') ADVANCE(174); + if (lookahead == 'i') ADVANCE(176); END_STATE(); case 97: - if (lookahead == 'g') ADVANCE(175); + if (lookahead == 'a') ADVANCE(177); END_STATE(); case 98: - ACCEPT_TOKEN(anon_sym_asm); + if (lookahead == 'g') ADVANCE(178); END_STATE(); case 99: - if (lookahead == 'o') ADVANCE(176); + ACCEPT_TOKEN(anon_sym_asm); END_STATE(); case 100: - if (lookahead == 'l') ADVANCE(177); + if (lookahead == 'o') ADVANCE(179); END_STATE(); case 101: - if (lookahead == 'a') ADVANCE(178); + if (lookahead == 'l') ADVANCE(180); END_STATE(); case 102: - if (lookahead == 'e') ADVANCE(179); + if (lookahead == 'a') ADVANCE(181); END_STATE(); case 103: - if (lookahead == 'r') ADVANCE(180); + if (lookahead == 'e') ADVANCE(182); END_STATE(); case 104: - if (lookahead == 's') ADVANCE(181); - if (lookahead == 't') ADVANCE(182); + if (lookahead == 'r') ADVANCE(183); END_STATE(); case 105: - if (lookahead == 'a') ADVANCE(183); - if (lookahead == 'i') ADVANCE(184); + if (lookahead == 's') ADVANCE(184); + if (lookahead == 't') ADVANCE(185); END_STATE(); case 106: - if (lookahead == 'b') ADVANCE(185); + if (lookahead == 'a') ADVANCE(186); + if (lookahead == 'i') ADVANCE(187); END_STATE(); case 107: - if (lookahead == 'e') ADVANCE(186); + if (lookahead == 'b') ADVANCE(188); END_STATE(); case 108: - if (lookahead == 'm') ADVANCE(187); + if (lookahead == 'e') ADVANCE(189); END_STATE(); case 109: - if (lookahead == 'e') ADVANCE(188); + if (lookahead == 'm') ADVANCE(190); END_STATE(); case 110: - if (lookahead == 's') ADVANCE(189); + if (lookahead == 'e') ADVANCE(191); END_STATE(); case 111: - if (lookahead == 'a') ADVANCE(190); + if (lookahead == 's') ADVANCE(192); END_STATE(); case 112: - ACCEPT_TOKEN(anon_sym_for); + if (lookahead == 'a') ADVANCE(193); END_STATE(); case 113: - if (lookahead == 'o') ADVANCE(191); + ACCEPT_TOKEN(anon_sym_for); END_STATE(); case 114: - if (lookahead == 'i') ADVANCE(192); + if (lookahead == 'o') ADVANCE(194); END_STATE(); case 115: - ACCEPT_TOKEN(sym_primitive_type); - if (lookahead == '1') ADVANCE(193); - if (lookahead == '3') ADVANCE(194); - if (lookahead == '6') ADVANCE(195); - if (lookahead == '8') ADVANCE(196); - if (lookahead == 'p') ADVANCE(197); + if (lookahead == 'i') ADVANCE(195); END_STATE(); case 116: - if (lookahead == 'g') ADVANCE(198); + ACCEPT_TOKEN(sym_primitive_type); + if (lookahead == '1') ADVANCE(196); + if (lookahead == '3') ADVANCE(197); + if (lookahead == '6') ADVANCE(198); + if (lookahead == '8') ADVANCE(199); + if (lookahead == 'p') ADVANCE(200); END_STATE(); case 117: - if (lookahead == '_') ADVANCE(199); + if (lookahead == 'g') ADVANCE(201); END_STATE(); case 118: - if (lookahead == 'e') ADVANCE(200); + if (lookahead == '_') ADVANCE(202); END_STATE(); case 119: - if (lookahead == 'l') ADVANCE(201); + if (lookahead == 'e') ADVANCE(203); END_STATE(); case 120: - if (lookahead == 's') ADVANCE(202); + if (lookahead == 'l') ADVANCE(204); END_STATE(); case 121: - if (lookahead == 'd') ADVANCE(203); + if (lookahead == 's') ADVANCE(205); END_STATE(); case 122: - if (lookahead == 'i') ADVANCE(204); + if (lookahead == 'd') ADVANCE(206); END_STATE(); case 123: - if (lookahead == 't') ADVANCE(205); + if (lookahead == 'i') ADVANCE(207); END_STATE(); case 124: - if (lookahead == 'u') ADVANCE(206); + if (lookahead == 't') ADVANCE(208); END_STATE(); case 125: - if (lookahead == 'r') ADVANCE(207); + if (lookahead == 'u') ADVANCE(209); END_STATE(); case 126: - if (lookahead == 'n') ADVANCE(208); + if (lookahead == 'r') ADVANCE(210); END_STATE(); case 127: - if (lookahead == 'e') ADVANCE(209); + if (lookahead == 'n') ADVANCE(211); END_STATE(); case 128: - if (lookahead == 'z') ADVANCE(210); + if (lookahead == 'e') ADVANCE(212); END_STATE(); case 129: - if (lookahead == 't') ADVANCE(211); + if (lookahead == 'z') ADVANCE(213); END_STATE(); case 130: - if (lookahead == 'u') ADVANCE(212); + if (lookahead == 't') ADVANCE(214); END_STATE(); case 131: - if (lookahead == 't') ADVANCE(213); + if (lookahead == 'u') ADVANCE(215); END_STATE(); case 132: - if (lookahead == 'e') ADVANCE(214); + if (lookahead == 't') ADVANCE(216); END_STATE(); case 133: - if (lookahead == 'e') ADVANCE(143); + if (lookahead == 'e') ADVANCE(217); END_STATE(); case 134: - if (lookahead == 'e') ADVANCE(215); + if (lookahead == 'e') ADVANCE(144); END_STATE(); case 135: - if (lookahead == 't') ADVANCE(216); + if (lookahead == 'e') ADVANCE(218); END_STATE(); case 136: - if (lookahead == 'o') ADVANCE(217); + if (lookahead == 't') ADVANCE(219); END_STATE(); case 137: - if (lookahead == 'i') ADVANCE(218); + if (lookahead == 'o') ADVANCE(220); END_STATE(); case 138: - if (lookahead == 'd') ADVANCE(177); + if (lookahead == 'i') ADVANCE(221); END_STATE(); case 139: - if (lookahead == 'a') ADVANCE(219); + if (lookahead == 'd') ADVANCE(180); END_STATE(); case 140: - if (lookahead == 'l') ADVANCE(220); + if (lookahead == 'a') ADVANCE(222); END_STATE(); case 141: - if (lookahead == 'E') ADVANCE(221); + if (lookahead == 'l') ADVANCE(223); END_STATE(); case 142: - ACCEPT_TOKEN(anon_sym_NULL); + if (lookahead == 'E') ADVANCE(224); END_STATE(); case 143: - ACCEPT_TOKEN(sym_true); + ACCEPT_TOKEN(anon_sym_NULL); END_STATE(); case 144: - if (lookahead == 'g') ADVANCE(222); + ACCEPT_TOKEN(sym_true); END_STATE(); case 145: - if (lookahead == 'm') ADVANCE(223); + if (lookahead == 'g') ADVANCE(225); END_STATE(); case 146: - if (lookahead == 'e') ADVANCE(224); + if (lookahead == 'm') ADVANCE(226); END_STATE(); case 147: - if (lookahead == 'e') ADVANCE(225); + if (lookahead == 'e') ADVANCE(227); END_STATE(); case 148: - if (lookahead == 'i') ADVANCE(226); + if (lookahead == 'e') ADVANCE(228); END_STATE(); case 149: - if (lookahead == 'm') ADVANCE(227); + if (lookahead == 'i') ADVANCE(229); END_STATE(); case 150: - if (lookahead == 't') ADVANCE(228); + if (lookahead == 'm') ADVANCE(230); END_STATE(); case 151: - if (lookahead == 's') ADVANCE(229); + if (lookahead == 't') ADVANCE(231); END_STATE(); case 152: - if (lookahead == 'e') ADVANCE(230); + if (lookahead == 's') ADVANCE(232); END_STATE(); case 153: - if (lookahead == 'r') ADVANCE(231); + if (lookahead == 'e') ADVANCE(233); END_STATE(); case 154: - if (lookahead == 'c') ADVANCE(232); + if (lookahead == 'r') ADVANCE(234); END_STATE(); case 155: - if (lookahead == 'c') ADVANCE(233); - if (lookahead == 't') ADVANCE(234); + if (lookahead == 'l') ADVANCE(235); END_STATE(); case 156: - if (lookahead == 's') ADVANCE(235); + if (lookahead == 'c') ADVANCE(236); END_STATE(); case 157: - if (lookahead == 'n') ADVANCE(236); + if (lookahead == 'c') ADVANCE(237); + if (lookahead == 'i') ADVANCE(238); + if (lookahead == 't') ADVANCE(239); END_STATE(); case 158: - if (lookahead == 'r') ADVANCE(237); + if (lookahead == 's') ADVANCE(240); END_STATE(); case 159: - if (lookahead == 'i') ADVANCE(238); - if (lookahead == 'l') ADVANCE(239); + if (lookahead == 'n') ADVANCE(241); END_STATE(); case 160: - if (lookahead == 'a') ADVANCE(240); + if (lookahead == 'r') ADVANCE(242); END_STATE(); case 161: - if (lookahead == 's') ADVANCE(241); + if (lookahead == 'i') ADVANCE(243); + if (lookahead == 'l') ADVANCE(244); END_STATE(); case 162: - if (lookahead == 'i') ADVANCE(242); + if (lookahead == 'a') ADVANCE(245); END_STATE(); case 163: - if (lookahead == 'a') ADVANCE(243); - if (lookahead == 's') ADVANCE(244); + if (lookahead == 's') ADVANCE(246); END_STATE(); case 164: - if (lookahead == '_') ADVANCE(245); + if (lookahead == 'r') ADVANCE(247); END_STATE(); case 165: - if (lookahead == 'a') ADVANCE(246); + if (lookahead == 'i') ADVANCE(248); END_STATE(); case 166: - if (lookahead == 't') ADVANCE(247); + if (lookahead == 'a') ADVANCE(249); + if (lookahead == 's') ADVANCE(250); END_STATE(); case 167: - if (lookahead == 'd') ADVANCE(248); + if (lookahead == '_') ADVANCE(251); END_STATE(); case 168: - if (lookahead == 'i') ADVANCE(249); - if (lookahead == 'r') ADVANCE(250); + if (lookahead == 'a') ADVANCE(252); END_STATE(); case 169: - if (lookahead == 'y') ADVANCE(251); + if (lookahead == 't') ADVANCE(253); END_STATE(); case 170: - if (lookahead == 'a') ADVANCE(252); + if (lookahead == 'd') ADVANCE(254); END_STATE(); case 171: - if (lookahead == 't') ADVANCE(253); + if (lookahead == 'i') ADVANCE(255); + if (lookahead == 'r') ADVANCE(256); END_STATE(); case 172: - if (lookahead == 'c') ADVANCE(254); + if (lookahead == 'y') ADVANCE(257); END_STATE(); case 173: - if (lookahead == 'g') ADVANCE(255); + if (lookahead == 'a') ADVANCE(258); END_STATE(); case 174: - if (lookahead == 'l') ADVANCE(256); + if (lookahead == 't') ADVANCE(259); END_STATE(); case 175: - if (lookahead == 'n') ADVANCE(257); + if (lookahead == 'c') ADVANCE(260); END_STATE(); case 176: - ACCEPT_TOKEN(anon_sym_auto); + if (lookahead == 'g') ADVANCE(261); END_STATE(); case 177: - ACCEPT_TOKEN(sym_primitive_type); + if (lookahead == 'l') ADVANCE(262); END_STATE(); case 178: - if (lookahead == 'k') ADVANCE(258); + if (lookahead == 'n') ADVANCE(263); END_STATE(); case 179: - ACCEPT_TOKEN(anon_sym_case); + ACCEPT_TOKEN(anon_sym_auto); END_STATE(); case 180: ACCEPT_TOKEN(sym_primitive_type); - if (lookahead == '1') ADVANCE(259); - if (lookahead == '3') ADVANCE(260); - if (lookahead == '6') ADVANCE(261); - if (lookahead == '8') ADVANCE(262); - if (lookahead == 'p') ADVANCE(263); END_STATE(); case 181: - if (lookahead == 't') ADVANCE(264); + if (lookahead == 'k') ADVANCE(264); END_STATE(); case 182: - if (lookahead == 'i') ADVANCE(265); + ACCEPT_TOKEN(anon_sym_case); END_STATE(); case 183: - if (lookahead == 'u') ADVANCE(266); + ACCEPT_TOKEN(sym_primitive_type); + if (lookahead == '1') ADVANCE(265); + if (lookahead == '3') ADVANCE(266); + if (lookahead == '6') ADVANCE(267); + if (lookahead == '8') ADVANCE(268); + if (lookahead == 'p') ADVANCE(269); END_STATE(); case 184: - if (lookahead == 'n') ADVANCE(267); + if (lookahead == 't') ADVANCE(270); END_STATE(); case 185: - if (lookahead == 'l') ADVANCE(268); + if (lookahead == 'i') ADVANCE(271); END_STATE(); case 186: - ACCEPT_TOKEN(anon_sym_else); + if (lookahead == 'u') ADVANCE(272); END_STATE(); case 187: - ACCEPT_TOKEN(anon_sym_enum); + if (lookahead == 'n') ADVANCE(273); END_STATE(); case 188: - if (lookahead == 'r') ADVANCE(269); + if (lookahead == 'l') ADVANCE(274); END_STATE(); case 189: - if (lookahead == 'e') ADVANCE(221); + ACCEPT_TOKEN(anon_sym_else); END_STATE(); case 190: - if (lookahead == 't') ADVANCE(177); + ACCEPT_TOKEN(anon_sym_enum); END_STATE(); case 191: - ACCEPT_TOKEN(anon_sym_goto); + if (lookahead == 'r') ADVANCE(275); END_STATE(); case 192: - if (lookahead == 'n') ADVANCE(270); + if (lookahead == 'e') ADVANCE(224); END_STATE(); case 193: - if (lookahead == '6') ADVANCE(271); + if (lookahead == 't') ADVANCE(180); END_STATE(); case 194: - if (lookahead == '2') ADVANCE(272); + ACCEPT_TOKEN(anon_sym_goto); END_STATE(); case 195: - if (lookahead == '4') ADVANCE(273); + if (lookahead == 'n') ADVANCE(276); END_STATE(); case 196: - if (lookahead == '_') ADVANCE(274); + if (lookahead == '6') ADVANCE(277); END_STATE(); case 197: - if (lookahead == 't') ADVANCE(275); + if (lookahead == '2') ADVANCE(278); END_STATE(); case 198: - ACCEPT_TOKEN(anon_sym_long); + if (lookahead == '4') ADVANCE(279); END_STATE(); case 199: - if (lookahead == 'a') ADVANCE(276); + if (lookahead == '_') ADVANCE(280); END_STATE(); case 200: - if (lookahead == 't') ADVANCE(277); + if (lookahead == 't') ADVANCE(281); END_STATE(); case 201: - if (lookahead == 'p') ADVANCE(278); + ACCEPT_TOKEN(anon_sym_long); END_STATE(); case 202: - if (lookahead == 'e') ADVANCE(279); + if (lookahead == 'a') ADVANCE(282); END_STATE(); case 203: - if (lookahead == 'i') ADVANCE(280); + if (lookahead == 't') ADVANCE(283); END_STATE(); case 204: - if (lookahead == 's') ADVANCE(281); + if (lookahead == 'p') ADVANCE(284); END_STATE(); case 205: - if (lookahead == 'r') ADVANCE(282); + if (lookahead == 'e') ADVANCE(285); END_STATE(); case 206: - if (lookahead == 'r') ADVANCE(283); + if (lookahead == 'i') ADVANCE(286); END_STATE(); case 207: - if (lookahead == 't') ADVANCE(284); + if (lookahead == 's') ADVANCE(287); END_STATE(); case 208: - if (lookahead == 'e') ADVANCE(285); + if (lookahead == 'r') ADVANCE(288); END_STATE(); case 209: - if (lookahead == '_') ADVANCE(286); - if (lookahead == 'o') ADVANCE(287); + if (lookahead == 'r') ADVANCE(289); END_STATE(); case 210: - if (lookahead == 'e') ADVANCE(288); + if (lookahead == 't') ADVANCE(290); END_STATE(); case 211: - if (lookahead == 'i') ADVANCE(289); + if (lookahead == 'e') ADVANCE(291); END_STATE(); case 212: - if (lookahead == 'c') ADVANCE(290); + if (lookahead == '_') ADVANCE(292); + if (lookahead == 'o') ADVANCE(293); END_STATE(); case 213: - if (lookahead == 'c') ADVANCE(291); + if (lookahead == 'e') ADVANCE(294); END_STATE(); case 214: - if (lookahead == 'a') ADVANCE(292); + if (lookahead == 'i') ADVANCE(295); END_STATE(); case 215: - if (lookahead == 'd') ADVANCE(293); + if (lookahead == 'c') ADVANCE(296); END_STATE(); case 216: - if (lookahead == '1') ADVANCE(294); - if (lookahead == '3') ADVANCE(295); - if (lookahead == '6') ADVANCE(296); - if (lookahead == '8') ADVANCE(297); - if (lookahead == 'p') ADVANCE(298); + if (lookahead == 'c') ADVANCE(297); END_STATE(); case 217: - if (lookahead == 'n') ADVANCE(299); + if (lookahead == 'a') ADVANCE(298); END_STATE(); case 218: - if (lookahead == 'g') ADVANCE(300); + if (lookahead == 'd') ADVANCE(299); END_STATE(); case 219: - if (lookahead == 't') ADVANCE(301); + if (lookahead == '1') ADVANCE(300); + if (lookahead == '3') ADVANCE(301); + if (lookahead == '6') ADVANCE(302); + if (lookahead == '8') ADVANCE(303); + if (lookahead == 'p') ADVANCE(304); END_STATE(); case 220: - if (lookahead == 'e') ADVANCE(302); + if (lookahead == 'n') ADVANCE(305); END_STATE(); case 221: - ACCEPT_TOKEN(sym_false); + if (lookahead == 'g') ADVANCE(306); END_STATE(); case 222: - if (lookahead == 'n') ADVANCE(303); + if (lookahead == 't') ADVANCE(307); END_STATE(); case 223: - if (lookahead == 'i') ADVANCE(304); + if (lookahead == 'e') ADVANCE(308); END_STATE(); case 224: - if (lookahead == 'r') ADVANCE(305); + ACCEPT_TOKEN(sym_false); END_STATE(); case 225: - if (lookahead == 't') ADVANCE(306); + if (lookahead == 'n') ADVANCE(309); END_STATE(); case 226: - if (lookahead == 'g') ADVANCE(307); + if (lookahead == 'i') ADVANCE(310); END_STATE(); case 227: - if (lookahead == '_') ADVANCE(308); + if (lookahead == 'r') ADVANCE(311); END_STATE(); case 228: - if (lookahead == 'r') ADVANCE(309); + if (lookahead == 't') ADVANCE(312); END_STATE(); case 229: - if (lookahead == 'e') ADVANCE(310); + if (lookahead == 'g') ADVANCE(313); END_STATE(); case 230: - if (lookahead == 'c') ADVANCE(311); + if (lookahead == '_') ADVANCE(314); END_STATE(); case 231: - if (lookahead == 'c') ADVANCE(312); + if (lookahead == 'r') ADVANCE(315); END_STATE(); case 232: - if (lookahead == 'l') ADVANCE(313); + if (lookahead == 'e') ADVANCE(316); END_STATE(); case 233: - if (lookahead == 'e') ADVANCE(314); + if (lookahead == 'c') ADVANCE(317); END_STATE(); case 234: - if (lookahead == 'e') ADVANCE(315); + if (lookahead == 'c') ADVANCE(318); END_STATE(); case 235: - if (lookahead == 't') ADVANCE(316); + if (lookahead == 'd') ADVANCE(319); END_STATE(); case 236: - if (lookahead == 'a') ADVANCE(317); + if (lookahead == 'l') ADVANCE(320); END_STATE(); case 237: - if (lookahead == 'c') ADVANCE(318); + if (lookahead == 'e') ADVANCE(321); END_STATE(); case 238: - if (lookahead == 't') ADVANCE(319); + if (lookahead == 't') ADVANCE(322); END_STATE(); case 239: - if (lookahead == 'i') ADVANCE(320); + if (lookahead == 'e') ADVANCE(323); END_STATE(); case 240: - if (lookahead == 'v') ADVANCE(321); + if (lookahead == 't') ADVANCE(324); END_STATE(); case 241: - if (lookahead == 't') ADVANCE(322); + if (lookahead == 'a') ADVANCE(325); END_STATE(); case 242: - if (lookahead == 'n') ADVANCE(323); + if (lookahead == 'c') ADVANCE(326); END_STATE(); case 243: - if (lookahead == 'd') ADVANCE(324); + if (lookahead == 't') ADVANCE(327); END_STATE(); case 244: - if (lookahead == 't') ADVANCE(325); + if (lookahead == 'i') ADVANCE(328); END_STATE(); case 245: - if (lookahead == 'a') ADVANCE(326); + if (lookahead == 'v') ADVANCE(329); END_STATE(); case 246: - if (lookahead == 'n') ADVANCE(327); + if (lookahead == 't') ADVANCE(330); END_STATE(); case 247: - if (lookahead == 'r') ADVANCE(328); + if (lookahead == 'e') ADVANCE(331); END_STATE(); case 248: - if (lookahead == 'c') ADVANCE(329); + if (lookahead == 'n') ADVANCE(332); END_STATE(); case 249: - if (lookahead == 's') ADVANCE(330); + if (lookahead == 'd') ADVANCE(333); END_STATE(); case 250: - if (lookahead == 'e') ADVANCE(331); + if (lookahead == 't') ADVANCE(334); END_STATE(); case 251: - ACCEPT_TOKEN(anon_sym___try); + if (lookahead == 'a') ADVANCE(335); END_STATE(); case 252: - if (lookahead == 'l') ADVANCE(332); + if (lookahead == 'n') ADVANCE(336); END_STATE(); case 253: - if (lookahead == 'r') ADVANCE(333); + if (lookahead == 'r') ADVANCE(337); END_STATE(); case 254: - if (lookahead == 't') ADVANCE(334); + if (lookahead == 'c') ADVANCE(338); END_STATE(); case 255: - if (lookahead == 'n') ADVANCE(335); + if (lookahead == 's') ADVANCE(339); END_STATE(); case 256: - if (lookahead == 'i') ADVANCE(336); + if (lookahead == 'e') ADVANCE(340); END_STATE(); case 257: - if (lookahead == 'a') ADVANCE(337); - if (lookahead == 'o') ADVANCE(338); + ACCEPT_TOKEN(anon_sym___try); END_STATE(); case 258: - ACCEPT_TOKEN(anon_sym_break); + if (lookahead == 'l') ADVANCE(341); END_STATE(); case 259: - if (lookahead == '6') ADVANCE(339); + if (lookahead == 'r') ADVANCE(342); END_STATE(); case 260: - if (lookahead == '2') ADVANCE(340); + if (lookahead == 't') ADVANCE(343); END_STATE(); case 261: - if (lookahead == '4') ADVANCE(341); + if (lookahead == 'n') ADVANCE(344); END_STATE(); case 262: - if (lookahead == '_') ADVANCE(342); + if (lookahead == 'i') ADVANCE(345); END_STATE(); case 263: - if (lookahead == 't') ADVANCE(343); + if (lookahead == 'a') ADVANCE(346); + if (lookahead == 'o') ADVANCE(347); END_STATE(); case 264: - ACCEPT_TOKEN(anon_sym_const); - if (lookahead == 'e') ADVANCE(344); + ACCEPT_TOKEN(anon_sym_break); END_STATE(); case 265: - if (lookahead == 'n') ADVANCE(345); + if (lookahead == '6') ADVANCE(348); END_STATE(); case 266: - if (lookahead == 'l') ADVANCE(346); + if (lookahead == '2') ADVANCE(349); END_STATE(); case 267: - if (lookahead == 'e') ADVANCE(347); + if (lookahead == '4') ADVANCE(350); END_STATE(); case 268: - if (lookahead == 'e') ADVANCE(177); + if (lookahead == '_') ADVANCE(351); END_STATE(); case 269: - if (lookahead == 'n') ADVANCE(348); + if (lookahead == 't') ADVANCE(352); END_STATE(); case 270: - if (lookahead == 'e') ADVANCE(349); + ACCEPT_TOKEN(anon_sym_const); + if (lookahead == 'e') ADVANCE(353); END_STATE(); case 271: - if (lookahead == '_') ADVANCE(350); + if (lookahead == 'n') ADVANCE(354); END_STATE(); case 272: - if (lookahead == '_') ADVANCE(351); + if (lookahead == 'l') ADVANCE(355); END_STATE(); case 273: - if (lookahead == '_') ADVANCE(352); + if (lookahead == 'e') ADVANCE(356); END_STATE(); case 274: - if (lookahead == 't') ADVANCE(177); + if (lookahead == 'e') ADVANCE(180); END_STATE(); case 275: - if (lookahead == 'r') ADVANCE(353); + if (lookahead == 'n') ADVANCE(357); END_STATE(); case 276: - if (lookahead == 'l') ADVANCE(354); + if (lookahead == 'e') ADVANCE(358); END_STATE(); case 277: - if (lookahead == 'u') ADVANCE(355); + if (lookahead == '_') ADVANCE(359); END_STATE(); case 278: - if (lookahead == 't') ADVANCE(356); + if (lookahead == '_') ADVANCE(360); END_STATE(); case 279: - if (lookahead == 't') ADVANCE(357); + if (lookahead == '_') ADVANCE(361); END_STATE(); case 280: - if (lookahead == 'f') ADVANCE(358); + if (lookahead == 't') ADVANCE(180); END_STATE(); case 281: - if (lookahead == 't') ADVANCE(359); + if (lookahead == 'r') ADVANCE(362); END_STATE(); case 282: - if (lookahead == 'i') ADVANCE(360); + if (lookahead == 'l') ADVANCE(363); END_STATE(); case 283: - if (lookahead == 'n') ADVANCE(361); + if (lookahead == 'u') ADVANCE(364); END_STATE(); case 284: - ACCEPT_TOKEN(anon_sym_short); + if (lookahead == 't') ADVANCE(365); END_STATE(); case 285: - if (lookahead == 'd') ADVANCE(362); + if (lookahead == 't') ADVANCE(366); END_STATE(); case 286: - if (lookahead == 't') ADVANCE(177); + if (lookahead == 'f') ADVANCE(367); END_STATE(); case 287: - if (lookahead == 'f') ADVANCE(363); + if (lookahead == 't') ADVANCE(368); END_STATE(); case 288: - if (lookahead == '_') ADVANCE(364); + if (lookahead == 'i') ADVANCE(369); END_STATE(); case 289: - if (lookahead == 'c') ADVANCE(365); + if (lookahead == 'n') ADVANCE(370); END_STATE(); case 290: - if (lookahead == 't') ADVANCE(366); + ACCEPT_TOKEN(anon_sym_short); END_STATE(); case 291: - if (lookahead == 'h') ADVANCE(367); + if (lookahead == 'd') ADVANCE(371); END_STATE(); case 292: - if (lookahead == 'd') ADVANCE(368); + if (lookahead == 't') ADVANCE(180); END_STATE(); case 293: - if (lookahead == 'e') ADVANCE(369); + if (lookahead == 'f') ADVANCE(372); END_STATE(); case 294: - if (lookahead == '6') ADVANCE(370); + if (lookahead == '_') ADVANCE(373); END_STATE(); case 295: - if (lookahead == '2') ADVANCE(371); + if (lookahead == 'c') ADVANCE(374); END_STATE(); case 296: - if (lookahead == '4') ADVANCE(372); + if (lookahead == 't') ADVANCE(375); END_STATE(); case 297: - if (lookahead == '_') ADVANCE(373); + if (lookahead == 'h') ADVANCE(376); END_STATE(); case 298: - if (lookahead == 't') ADVANCE(374); + if (lookahead == 'd') ADVANCE(377); END_STATE(); case 299: - ACCEPT_TOKEN(anon_sym_union); + if (lookahead == 'e') ADVANCE(378); END_STATE(); case 300: - if (lookahead == 'n') ADVANCE(375); + if (lookahead == '6') ADVANCE(379); END_STATE(); case 301: - if (lookahead == 'i') ADVANCE(376); + if (lookahead == '2') ADVANCE(380); END_STATE(); case 302: - ACCEPT_TOKEN(anon_sym_while); + if (lookahead == '4') ADVANCE(381); END_STATE(); case 303: - if (lookahead == 'a') ADVANCE(377); - if (lookahead == 'o') ADVANCE(378); + if (lookahead == '_') ADVANCE(382); END_STATE(); case 304: - if (lookahead == 'c') ADVANCE(379); + if (lookahead == 't') ADVANCE(383); END_STATE(); case 305: - if (lookahead == 'i') ADVANCE(380); + ACCEPT_TOKEN(anon_sym_union); END_STATE(); case 306: - if (lookahead == 'u') ADVANCE(381); + if (lookahead == 'n') ADVANCE(384); END_STATE(); case 307: - if (lookahead == 'n') ADVANCE(382); + if (lookahead == 'i') ADVANCE(385); END_STATE(); case 308: - if (lookahead == '_') ADVANCE(383); + ACCEPT_TOKEN(anon_sym_while); END_STATE(); case 309: - if (lookahead == 'i') ADVANCE(384); + if (lookahead == 'a') ADVANCE(386); + if (lookahead == 'o') ADVANCE(387); END_STATE(); case 310: - if (lookahead == 'd') ADVANCE(385); + if (lookahead == 'c') ADVANCE(388); END_STATE(); case 311: - if (lookahead == 'l') ADVANCE(386); + if (lookahead == 'i') ADVANCE(389); END_STATE(); case 312: - if (lookahead == 'a') ADVANCE(387); + if (lookahead == 'u') ADVANCE(390); END_STATE(); case 313: - if (lookahead == 's') ADVANCE(388); + if (lookahead == 'n') ADVANCE(391); END_STATE(); case 314: - if (lookahead == 'p') ADVANCE(389); + if (lookahead == '_') ADVANCE(392); END_STATE(); case 315: - if (lookahead == 'n') ADVANCE(390); + if (lookahead == 'i') ADVANCE(393); END_STATE(); case 316: - if (lookahead == 'c') ADVANCE(391); + if (lookahead == 'd') ADVANCE(394); END_STATE(); case 317: - if (lookahead == 'l') ADVANCE(392); + if (lookahead == 'l') ADVANCE(395); END_STATE(); case 318: - if (lookahead == 'e') ADVANCE(393); + if (lookahead == 'a') ADVANCE(396); END_STATE(); case 319: - ACCEPT_TOKEN(anon_sym___init); + ACCEPT_TOKEN(anon_sym___cold); END_STATE(); case 320: - if (lookahead == 'n') ADVANCE(394); + if (lookahead == 's') ADVANCE(397); END_STATE(); case 321: - if (lookahead == 'e') ADVANCE(395); + if (lookahead == 'p') ADVANCE(398); END_STATE(); case 322: - if (lookahead == '_') ADVANCE(396); + ACCEPT_TOKEN(anon_sym___exit); END_STATE(); case 323: - if (lookahead == 't') ADVANCE(397); + if (lookahead == 'n') ADVANCE(399); END_STATE(); case 324: - if (lookahead == '_') ADVANCE(398); + if (lookahead == 'c') ADVANCE(400); END_STATE(); case 325: - if (lookahead == 'r') ADVANCE(399); + if (lookahead == 'l') ADVANCE(401); END_STATE(); case 326: - if (lookahead == 'f') ADVANCE(400); + if (lookahead == 'e') ADVANCE(402); END_STATE(); case 327: - if (lookahead == 'f') ADVANCE(401); + ACCEPT_TOKEN(anon_sym___init); END_STATE(); case 328: - ACCEPT_TOKEN(sym_ms_signed_ptr_modifier); + if (lookahead == 'n') ADVANCE(403); END_STATE(); case 329: - if (lookahead == 'a') ADVANCE(402); + if (lookahead == 'e') ADVANCE(404); END_STATE(); case 330: - if (lookahead == 'c') ADVANCE(403); + if (lookahead == '_') ADVANCE(405); END_STATE(); case 331: - if (lookahead == 'a') ADVANCE(404); + if (lookahead == 't') ADVANCE(406); END_STATE(); case 332: - if (lookahead == 'i') ADVANCE(405); + if (lookahead == 't') ADVANCE(407); END_STATE(); case 333: - ACCEPT_TOKEN(sym_ms_unsigned_ptr_modifier); + if (lookahead == '_') ADVANCE(408); END_STATE(); case 334: - if (lookahead == 'o') ADVANCE(406); + if (lookahead == 'r') ADVANCE(409); END_STATE(); case 335: - if (lookahead == 'o') ADVANCE(407); + if (lookahead == 'f') ADVANCE(410); END_STATE(); case 336: - if (lookahead == 'g') ADVANCE(408); + if (lookahead == 'f') ADVANCE(411); END_STATE(); case 337: - if (lookahead == 's') ADVANCE(409); + ACCEPT_TOKEN(sym_ms_signed_ptr_modifier); END_STATE(); case 338: - if (lookahead == 'f') ADVANCE(410); + if (lookahead == 'a') ADVANCE(412); END_STATE(); case 339: - if (lookahead == '_') ADVANCE(411); + if (lookahead == 'c') ADVANCE(413); END_STATE(); case 340: - if (lookahead == '_') ADVANCE(412); + if (lookahead == 'a') ADVANCE(414); END_STATE(); case 341: - if (lookahead == '_') ADVANCE(413); + if (lookahead == 'i') ADVANCE(415); END_STATE(); case 342: - if (lookahead == 't') ADVANCE(177); + ACCEPT_TOKEN(sym_ms_unsigned_ptr_modifier); END_STATE(); case 343: - if (lookahead == 'r') ADVANCE(414); + if (lookahead == 'o') ADVANCE(416); END_STATE(); case 344: - if (lookahead == 'x') ADVANCE(415); + if (lookahead == 'o') ADVANCE(417); END_STATE(); case 345: - if (lookahead == 'u') ADVANCE(416); + if (lookahead == 'g') ADVANCE(418); END_STATE(); case 346: - if (lookahead == 't') ADVANCE(417); + if (lookahead == 's') ADVANCE(419); END_STATE(); case 347: - if (lookahead == 'd') ADVANCE(418); + if (lookahead == 'f') ADVANCE(420); END_STATE(); case 348: - ACCEPT_TOKEN(anon_sym_extern); + if (lookahead == '_') ADVANCE(421); END_STATE(); case 349: - ACCEPT_TOKEN(anon_sym_inline); + if (lookahead == '_') ADVANCE(422); END_STATE(); case 350: - if (lookahead == 't') ADVANCE(177); + if (lookahead == '_') ADVANCE(423); END_STATE(); case 351: - if (lookahead == 't') ADVANCE(177); + if (lookahead == 't') ADVANCE(180); END_STATE(); case 352: - if (lookahead == 't') ADVANCE(177); + if (lookahead == 'r') ADVANCE(424); END_STATE(); case 353: - if (lookahead == '_') ADVANCE(419); + if (lookahead == 'x') ADVANCE(425); END_STATE(); case 354: - if (lookahead == 'i') ADVANCE(420); + if (lookahead == 'u') ADVANCE(426); END_STATE(); case 355: - if (lookahead == 'r') ADVANCE(421); + if (lookahead == 't') ADVANCE(427); END_STATE(); case 356: - if (lookahead == 'r') ADVANCE(422); + if (lookahead == 'd') ADVANCE(428); END_STATE(); case 357: - if (lookahead == 'o') ADVANCE(423); + ACCEPT_TOKEN(anon_sym_extern); END_STATE(); case 358: - if (lookahead == 'f') ADVANCE(424); + ACCEPT_TOKEN(anon_sym_inline); END_STATE(); case 359: - if (lookahead == 'e') ADVANCE(425); + if (lookahead == 't') ADVANCE(180); END_STATE(); case 360: - if (lookahead == 'c') ADVANCE(426); + if (lookahead == 't') ADVANCE(180); END_STATE(); case 361: - ACCEPT_TOKEN(anon_sym_return); + if (lookahead == 't') ADVANCE(180); END_STATE(); case 362: - ACCEPT_TOKEN(anon_sym_signed); + if (lookahead == '_') ADVANCE(429); END_STATE(); case 363: - ACCEPT_TOKEN(anon_sym_sizeof); + if (lookahead == 'i') ADVANCE(430); END_STATE(); case 364: - if (lookahead == 't') ADVANCE(177); + if (lookahead == 'r') ADVANCE(431); END_STATE(); case 365: - ACCEPT_TOKEN(anon_sym_static); + if (lookahead == 'r') ADVANCE(432); END_STATE(); case 366: - ACCEPT_TOKEN(anon_sym_struct); + if (lookahead == 'o') ADVANCE(433); END_STATE(); case 367: - ACCEPT_TOKEN(anon_sym_switch); + if (lookahead == 'f') ADVANCE(434); END_STATE(); case 368: - if (lookahead == '_') ADVANCE(427); + if (lookahead == 'e') ADVANCE(435); END_STATE(); case 369: - if (lookahead == 'f') ADVANCE(428); + if (lookahead == 'c') ADVANCE(436); END_STATE(); case 370: - if (lookahead == '_') ADVANCE(429); + ACCEPT_TOKEN(anon_sym_return); END_STATE(); case 371: - if (lookahead == '_') ADVANCE(430); + ACCEPT_TOKEN(anon_sym_signed); END_STATE(); case 372: - if (lookahead == '_') ADVANCE(431); + ACCEPT_TOKEN(anon_sym_sizeof); END_STATE(); case 373: - if (lookahead == 't') ADVANCE(177); + if (lookahead == 't') ADVANCE(180); END_STATE(); case 374: - if (lookahead == 'r') ADVANCE(432); + ACCEPT_TOKEN(anon_sym_static); END_STATE(); case 375: - if (lookahead == 'e') ADVANCE(433); + ACCEPT_TOKEN(anon_sym_struct); END_STATE(); case 376: - if (lookahead == 'l') ADVANCE(434); + ACCEPT_TOKEN(anon_sym_switch); END_STATE(); case 377: - if (lookahead == 's') ADVANCE(435); + if (lookahead == '_') ADVANCE(437); END_STATE(); case 378: - if (lookahead == 'f') ADVANCE(436); + if (lookahead == 'f') ADVANCE(438); END_STATE(); case 379: - ACCEPT_TOKEN(anon_sym__Atomic); + if (lookahead == '_') ADVANCE(439); END_STATE(); case 380: - if (lookahead == 'c') ADVANCE(437); + if (lookahead == '_') ADVANCE(440); END_STATE(); case 381: - if (lookahead == 'r') ADVANCE(438); + if (lookahead == '_') ADVANCE(441); END_STATE(); case 382: - if (lookahead == 'e') ADVANCE(439); - if (lookahead == 'o') ADVANCE(440); + if (lookahead == 't') ADVANCE(180); END_STATE(); case 383: - ACCEPT_TOKEN(anon_sym___asm__); + if (lookahead == 'r') ADVANCE(442); END_STATE(); case 384: - if (lookahead == 'b') ADVANCE(441); + if (lookahead == 'e') ADVANCE(443); END_STATE(); case 385: - ACCEPT_TOKEN(anon_sym___based); + if (lookahead == 'l') ADVANCE(444); END_STATE(); case 386: - ACCEPT_TOKEN(anon_sym___cdecl); + if (lookahead == 's') ADVANCE(445); END_STATE(); case 387: - if (lookahead == 'l') ADVANCE(442); + if (lookahead == 'f') ADVANCE(446); END_STATE(); case 388: - if (lookahead == 'p') ADVANCE(443); + ACCEPT_TOKEN(anon_sym__Atomic); END_STATE(); case 389: - if (lookahead == 't') ADVANCE(444); + if (lookahead == 'c') ADVANCE(447); END_STATE(); case 390: - if (lookahead == 's') ADVANCE(445); + if (lookahead == 'r') ADVANCE(448); END_STATE(); case 391: - if (lookahead == 'a') ADVANCE(446); + if (lookahead == 'e') ADVANCE(449); + if (lookahead == 'o') ADVANCE(450); END_STATE(); case 392: - if (lookahead == 'l') ADVANCE(447); + ACCEPT_TOKEN(anon_sym___asm__); END_STATE(); case 393: - if (lookahead == 'i') ADVANCE(448); + if (lookahead == 'b') ADVANCE(451); END_STATE(); case 394: - if (lookahead == 'e') ADVANCE(449); + ACCEPT_TOKEN(anon_sym___based); END_STATE(); case 395: - ACCEPT_TOKEN(anon_sym___leave); + ACCEPT_TOKEN(anon_sym___cdecl); END_STATE(); case 396: - if (lookahead == 'h') ADVANCE(450); + if (lookahead == 'l') ADVANCE(452); END_STATE(); case 397: - if (lookahead == 'f') ADVANCE(451); + if (lookahead == 'p') ADVANCE(453); END_STATE(); case 398: - if (lookahead == 'm') ADVANCE(452); + if (lookahead == 't') ADVANCE(454); END_STATE(); case 399: - if (lookahead == 'i') ADVANCE(453); + if (lookahead == 's') ADVANCE(455); END_STATE(); case 400: - if (lookahead == 't') ADVANCE(454); + if (lookahead == 'a') ADVANCE(456); END_STATE(); case 401: - ACCEPT_TOKEN(anon_sym___scanf); + if (lookahead == 'l') ADVANCE(457); END_STATE(); case 402: - if (lookahead == 'l') ADVANCE(455); + if (lookahead == 'i') ADVANCE(458); END_STATE(); case 403: - if (lookahead == 'a') ADVANCE(456); + if (lookahead == 'e') ADVANCE(459); END_STATE(); case 404: - if (lookahead == 'd') ADVANCE(457); + ACCEPT_TOKEN(anon_sym___leave); END_STATE(); case 405: - if (lookahead == 'g') ADVANCE(458); + if (lookahead == 'h') ADVANCE(460); END_STATE(); case 406: - if (lookahead == 'r') ADVANCE(459); + if (lookahead == 'u') ADVANCE(461); END_STATE(); case 407: - if (lookahead == 'f') ADVANCE(460); + if (lookahead == 'f') ADVANCE(462); END_STATE(); case 408: - if (lookahead == 'n') ADVANCE(461); + if (lookahead == 'm') ADVANCE(463); END_STATE(); case 409: - ACCEPT_TOKEN(anon_sym_alignas); + if (lookahead == 'i') ADVANCE(464); END_STATE(); case 410: - ACCEPT_TOKEN(anon_sym_alignof); + if (lookahead == 't') ADVANCE(465); END_STATE(); case 411: - if (lookahead == 't') ADVANCE(177); + ACCEPT_TOKEN(anon_sym___scanf); END_STATE(); case 412: - if (lookahead == 't') ADVANCE(177); + if (lookahead == 'l') ADVANCE(466); END_STATE(); case 413: - if (lookahead == 't') ADVANCE(177); + if (lookahead == 'a') ADVANCE(467); END_STATE(); case 414: - if (lookahead == '_') ADVANCE(462); + if (lookahead == 'd') ADVANCE(468); END_STATE(); case 415: - if (lookahead == 'p') ADVANCE(463); + if (lookahead == 'g') ADVANCE(469); END_STATE(); case 416: - if (lookahead == 'e') ADVANCE(464); + if (lookahead == 'r') ADVANCE(470); END_STATE(); case 417: - ACCEPT_TOKEN(anon_sym_default); + if (lookahead == 'f') ADVANCE(471); END_STATE(); case 418: - ACCEPT_TOKEN(anon_sym_defined); + if (lookahead == 'n') ADVANCE(472); END_STATE(); case 419: - if (lookahead == 't') ADVANCE(177); + ACCEPT_TOKEN(anon_sym_alignas); END_STATE(); case 420: - if (lookahead == 'g') ADVANCE(465); + ACCEPT_TOKEN(anon_sym_alignof); END_STATE(); case 421: - if (lookahead == 'n') ADVANCE(466); + if (lookahead == 't') ADVANCE(180); END_STATE(); case 422: - ACCEPT_TOKEN(anon_sym_nullptr); - if (lookahead == '_') ADVANCE(467); + if (lookahead == 't') ADVANCE(180); END_STATE(); case 423: - if (lookahead == 'f') ADVANCE(468); + if (lookahead == 't') ADVANCE(180); END_STATE(); case 424: - if (lookahead == '_') ADVANCE(469); + if (lookahead == '_') ADVANCE(473); END_STATE(); case 425: - if (lookahead == 'r') ADVANCE(470); + if (lookahead == 'p') ADVANCE(474); END_STATE(); case 426: - if (lookahead == 't') ADVANCE(471); + if (lookahead == 'e') ADVANCE(475); END_STATE(); case 427: - if (lookahead == 'l') ADVANCE(472); + ACCEPT_TOKEN(anon_sym_default); END_STATE(); case 428: - ACCEPT_TOKEN(anon_sym_typedef); + ACCEPT_TOKEN(anon_sym_defined); END_STATE(); case 429: - if (lookahead == 't') ADVANCE(177); + if (lookahead == 't') ADVANCE(180); END_STATE(); case 430: - if (lookahead == 't') ADVANCE(177); + if (lookahead == 'g') ADVANCE(476); END_STATE(); case 431: - if (lookahead == 't') ADVANCE(177); + if (lookahead == 'n') ADVANCE(477); END_STATE(); case 432: - if (lookahead == '_') ADVANCE(473); + ACCEPT_TOKEN(anon_sym_nullptr); + if (lookahead == '_') ADVANCE(478); END_STATE(); case 433: - if (lookahead == 'd') ADVANCE(474); + if (lookahead == 'f') ADVANCE(479); END_STATE(); case 434: - if (lookahead == 'e') ADVANCE(475); + if (lookahead == '_') ADVANCE(480); END_STATE(); case 435: - ACCEPT_TOKEN(anon_sym__Alignas); + if (lookahead == 'r') ADVANCE(481); END_STATE(); case 436: - ACCEPT_TOKEN(anon_sym__Alignof); + if (lookahead == 't') ADVANCE(482); END_STATE(); case 437: - ACCEPT_TOKEN(anon_sym__Generic); + if (lookahead == 'l') ADVANCE(483); END_STATE(); case 438: - if (lookahead == 'n') ADVANCE(476); + ACCEPT_TOKEN(anon_sym_typedef); END_STATE(); case 439: - if (lookahead == 'd') ADVANCE(477); + if (lookahead == 't') ADVANCE(180); END_STATE(); case 440: - if (lookahead == 'f') ADVANCE(478); + if (lookahead == 't') ADVANCE(180); END_STATE(); case 441: - if (lookahead == 'u') ADVANCE(479); + if (lookahead == 't') ADVANCE(180); END_STATE(); case 442: - if (lookahead == 'l') ADVANCE(480); + if (lookahead == '_') ADVANCE(484); END_STATE(); case 443: - if (lookahead == 'e') ADVANCE(481); + if (lookahead == 'd') ADVANCE(485); END_STATE(); case 444: - ACCEPT_TOKEN(anon_sym___except); + if (lookahead == 'e') ADVANCE(486); END_STATE(); case 445: - if (lookahead == 'i') ADVANCE(482); + ACCEPT_TOKEN(anon_sym__Alignas); END_STATE(); case 446: - if (lookahead == 'l') ADVANCE(483); + ACCEPT_TOKEN(anon_sym__Alignof); END_STATE(); case 447: - if (lookahead == 'y') ADVANCE(484); + ACCEPT_TOKEN(anon_sym__Generic); END_STATE(); case 448: - if (lookahead == 'n') ADVANCE(485); + if (lookahead == 'n') ADVANCE(487); END_STATE(); case 449: - ACCEPT_TOKEN(anon_sym___inline); - if (lookahead == '_') ADVANCE(486); + if (lookahead == 'd') ADVANCE(488); END_STATE(); case 450: - if (lookahead == 'o') ADVANCE(487); + if (lookahead == 'f') ADVANCE(489); END_STATE(); case 451: - ACCEPT_TOKEN(anon_sym___printf); + if (lookahead == 'u') ADVANCE(490); END_STATE(); case 452: - if (lookahead == 'o') ADVANCE(488); + if (lookahead == 'l') ADVANCE(491); END_STATE(); case 453: - if (lookahead == 'c') ADVANCE(489); + if (lookahead == 'e') ADVANCE(492); END_STATE(); case 454: - if (lookahead == 'e') ADVANCE(490); + ACCEPT_TOKEN(anon_sym___except); END_STATE(); case 455: - if (lookahead == 'l') ADVANCE(491); + if (lookahead == 'i') ADVANCE(493); END_STATE(); case 456: - if (lookahead == 'l') ADVANCE(492); + if (lookahead == 'l') ADVANCE(494); END_STATE(); case 457: - ACCEPT_TOKEN(anon_sym___thread); + if (lookahead == 'y') ADVANCE(495); END_STATE(); case 458: - if (lookahead == 'n') ADVANCE(493); + if (lookahead == 'n') ADVANCE(496); END_STATE(); case 459: - if (lookahead == 'c') ADVANCE(494); + ACCEPT_TOKEN(anon_sym___inline); + if (lookahead == '_') ADVANCE(497); END_STATE(); case 460: - ACCEPT_TOKEN(anon_sym__alignof); + if (lookahead == 'o') ADVANCE(498); END_STATE(); case 461: - if (lookahead == 'e') ADVANCE(495); + if (lookahead == 'r') ADVANCE(499); END_STATE(); case 462: - if (lookahead == 't') ADVANCE(177); + ACCEPT_TOKEN(anon_sym___printf); END_STATE(); case 463: - if (lookahead == 'r') ADVANCE(496); + if (lookahead == 'o') ADVANCE(500); END_STATE(); case 464: - ACCEPT_TOKEN(anon_sym_continue); + if (lookahead == 'c') ADVANCE(501); END_STATE(); case 465: - if (lookahead == 'n') ADVANCE(497); + if (lookahead == 'e') ADVANCE(502); END_STATE(); case 466: - ACCEPT_TOKEN(anon_sym_noreturn); + if (lookahead == 'l') ADVANCE(503); END_STATE(); case 467: - if (lookahead == 't') ADVANCE(177); + if (lookahead == 'l') ADVANCE(504); END_STATE(); case 468: - ACCEPT_TOKEN(anon_sym_offsetof); + ACCEPT_TOKEN(anon_sym___thread); END_STATE(); case 469: - if (lookahead == 't') ADVANCE(177); + if (lookahead == 'n') ADVANCE(505); END_STATE(); case 470: - ACCEPT_TOKEN(anon_sym_register); + if (lookahead == 'c') ADVANCE(506); END_STATE(); case 471: - ACCEPT_TOKEN(anon_sym_restrict); + ACCEPT_TOKEN(anon_sym__alignof); END_STATE(); case 472: - if (lookahead == 'o') ADVANCE(498); + if (lookahead == 'e') ADVANCE(507); END_STATE(); case 473: - if (lookahead == 't') ADVANCE(177); + if (lookahead == 't') ADVANCE(180); END_STATE(); case 474: - ACCEPT_TOKEN(anon_sym_unsigned); + if (lookahead == 'r') ADVANCE(508); END_STATE(); case 475: - ACCEPT_TOKEN(anon_sym_volatile); + ACCEPT_TOKEN(anon_sym_continue); END_STATE(); case 476: - ACCEPT_TOKEN(anon_sym__Noreturn); + if (lookahead == 'n') ADVANCE(509); END_STATE(); case 477: - ACCEPT_TOKEN(anon_sym___aligned); + ACCEPT_TOKEN(anon_sym_noreturn); END_STATE(); case 478: - ACCEPT_TOKEN(anon_sym___alignof); - if (lookahead == '_') ADVANCE(499); + if (lookahead == 't') ADVANCE(180); END_STATE(); case 479: - if (lookahead == 't') ADVANCE(500); + ACCEPT_TOKEN(anon_sym_offsetof); END_STATE(); case 480: - ACCEPT_TOKEN(anon_sym___clrcall); + if (lookahead == 't') ADVANCE(180); END_STATE(); case 481: - if (lookahead == 'c') ADVANCE(501); + ACCEPT_TOKEN(anon_sym_register); END_STATE(); case 482: - if (lookahead == 'o') ADVANCE(502); + ACCEPT_TOKEN(anon_sym_restrict); END_STATE(); case 483: - if (lookahead == 'l') ADVANCE(503); + if (lookahead == 'o') ADVANCE(510); END_STATE(); case 484: - ACCEPT_TOKEN(anon_sym___finally); + if (lookahead == 't') ADVANCE(180); END_STATE(); case 485: - if (lookahead == 'l') ADVANCE(504); + ACCEPT_TOKEN(anon_sym_unsigned); END_STATE(); case 486: - if (lookahead == '_') ADVANCE(505); + ACCEPT_TOKEN(anon_sym_volatile); END_STATE(); case 487: - if (lookahead == 'l') ADVANCE(506); + ACCEPT_TOKEN(anon_sym__Noreturn); END_STATE(); case 488: - if (lookahead == 's') ADVANCE(507); + ACCEPT_TOKEN(anon_sym___aligned); END_STATE(); case 489: - if (lookahead == 't') ADVANCE(508); + ACCEPT_TOKEN(anon_sym___alignof); + if (lookahead == '_') ADVANCE(511); END_STATE(); case 490: - if (lookahead == 'r') ADVANCE(509); + if (lookahead == 't') ADVANCE(512); END_STATE(); case 491: - ACCEPT_TOKEN(anon_sym___stdcall); + ACCEPT_TOKEN(anon_sym___clrcall); END_STATE(); case 492: - if (lookahead == 'l') ADVANCE(510); + if (lookahead == 'c') ADVANCE(513); END_STATE(); case 493: - if (lookahead == 'e') ADVANCE(511); + if (lookahead == 'o') ADVANCE(514); END_STATE(); case 494: - if (lookahead == 'a') ADVANCE(512); + if (lookahead == 'l') ADVANCE(515); END_STATE(); case 495: - if (lookahead == 'd') ADVANCE(513); + ACCEPT_TOKEN(anon_sym___finally); END_STATE(); case 496: - ACCEPT_TOKEN(anon_sym_constexpr); + if (lookahead == 'l') ADVANCE(516); END_STATE(); case 497: - if (lookahead == '_') ADVANCE(514); + if (lookahead == '_') ADVANCE(517); END_STATE(); case 498: - if (lookahead == 'c') ADVANCE(515); + if (lookahead == 'l') ADVANCE(518); END_STATE(); case 499: - if (lookahead == '_') ADVANCE(516); + if (lookahead == 'n') ADVANCE(519); END_STATE(); case 500: - if (lookahead == 'e') ADVANCE(517); + if (lookahead == 's') ADVANCE(520); END_STATE(); case 501: - ACCEPT_TOKEN(anon_sym___declspec); + if (lookahead == 't') ADVANCE(521); END_STATE(); case 502: - if (lookahead == 'n') ADVANCE(518); + if (lookahead == 'r') ADVANCE(522); END_STATE(); case 503: - ACCEPT_TOKEN(anon_sym___fastcall); + ACCEPT_TOKEN(anon_sym___stdcall); END_STATE(); case 504: - if (lookahead == 'i') ADVANCE(519); + if (lookahead == 'l') ADVANCE(523); END_STATE(); case 505: - ACCEPT_TOKEN(anon_sym___inline__); + if (lookahead == 'e') ADVANCE(524); END_STATE(); case 506: - if (lookahead == 'd') ADVANCE(520); + if (lookahead == 'a') ADVANCE(525); END_STATE(); case 507: - if (lookahead == 't') ADVANCE(521); + if (lookahead == 'd') ADVANCE(526); END_STATE(); case 508: - ACCEPT_TOKEN(sym_ms_restrict_modifier); - if (lookahead == '_') ADVANCE(522); + ACCEPT_TOKEN(anon_sym_constexpr); END_STATE(); case 509: - if (lookahead == '_') ADVANCE(523); + if (lookahead == '_') ADVANCE(527); END_STATE(); case 510: - ACCEPT_TOKEN(anon_sym___thiscall); + if (lookahead == 'c') ADVANCE(528); END_STATE(); case 511: - if (lookahead == 'd') ADVANCE(524); + if (lookahead == '_') ADVANCE(529); END_STATE(); case 512: - if (lookahead == 'l') ADVANCE(525); + if (lookahead == 'e') ADVANCE(530); END_STATE(); case 513: - ACCEPT_TOKEN(anon_sym__unaligned); + ACCEPT_TOKEN(anon_sym___declspec); END_STATE(); case 514: - if (lookahead == 't') ADVANCE(177); + if (lookahead == 'n') ADVANCE(531); END_STATE(); case 515: - if (lookahead == 'a') ADVANCE(526); + ACCEPT_TOKEN(anon_sym___fastcall); END_STATE(); case 516: - ACCEPT_TOKEN(anon_sym___alignof__); + if (lookahead == 'i') ADVANCE(532); END_STATE(); case 517: - if (lookahead == '_') ADVANCE(527); + ACCEPT_TOKEN(anon_sym___inline__); END_STATE(); case 518: - if (lookahead == '_') ADVANCE(528); + if (lookahead == 'd') ADVANCE(533); END_STATE(); case 519: - if (lookahead == 'n') ADVANCE(529); + ACCEPT_TOKEN(anon_sym___noreturn); END_STATE(); case 520: - ACCEPT_TOKEN(anon_sym___must_hold); + if (lookahead == 't') ADVANCE(534); END_STATE(); case 521: - if (lookahead == 'l') ADVANCE(530); + ACCEPT_TOKEN(sym_ms_restrict_modifier); + if (lookahead == '_') ADVANCE(535); END_STATE(); case 522: - if (lookahead == '_') ADVANCE(531); + if (lookahead == '_') ADVANCE(536); END_STATE(); case 523: - if (lookahead == 'i') ADVANCE(532); + ACCEPT_TOKEN(anon_sym___thiscall); END_STATE(); case 524: - ACCEPT_TOKEN(anon_sym___unaligned); + if (lookahead == 'd') ADVANCE(537); END_STATE(); case 525: - if (lookahead == 'l') ADVANCE(533); + if (lookahead == 'l') ADVANCE(538); END_STATE(); case 526: - if (lookahead == 'l') ADVANCE(534); + ACCEPT_TOKEN(anon_sym__unaligned); END_STATE(); case 527: - if (lookahead == '_') ADVANCE(535); + if (lookahead == 't') ADVANCE(180); END_STATE(); case 528: - if (lookahead == '_') ADVANCE(536); + if (lookahead == 'a') ADVANCE(539); END_STATE(); case 529: - if (lookahead == 'e') ADVANCE(537); + ACCEPT_TOKEN(anon_sym___alignof__); END_STATE(); case 530: - if (lookahead == 'y') ADVANCE(538); + if (lookahead == '_') ADVANCE(540); END_STATE(); case 531: - ACCEPT_TOKEN(anon_sym___restrict__); + if (lookahead == '_') ADVANCE(541); END_STATE(); case 532: - if (lookahead == 'n') ADVANCE(539); + if (lookahead == 'n') ADVANCE(542); END_STATE(); case 533: - ACCEPT_TOKEN(anon_sym___vectorcall); + ACCEPT_TOKEN(anon_sym___must_hold); END_STATE(); case 534: - ACCEPT_TOKEN(anon_sym_thread_local); + if (lookahead == 'l') ADVANCE(543); END_STATE(); case 535: - ACCEPT_TOKEN(anon_sym___attribute__); + if (lookahead == '_') ADVANCE(544); END_STATE(); case 536: - ACCEPT_TOKEN(anon_sym___extension__); + if (lookahead == 'i') ADVANCE(545); END_STATE(); case 537: - ACCEPT_TOKEN(anon_sym___forceinline); + ACCEPT_TOKEN(anon_sym___unaligned); END_STATE(); case 538: - ACCEPT_TOKEN(anon_sym___read_mostly); + if (lookahead == 'l') ADVANCE(546); END_STATE(); case 539: - if (lookahead == 'i') ADVANCE(540); + if (lookahead == 'l') ADVANCE(547); END_STATE(); case 540: - if (lookahead == 't') ADVANCE(541); + if (lookahead == '_') ADVANCE(548); END_STATE(); case 541: + if (lookahead == '_') ADVANCE(549); + END_STATE(); + case 542: + if (lookahead == 'e') ADVANCE(550); + END_STATE(); + case 543: + if (lookahead == 'y') ADVANCE(551); + END_STATE(); + case 544: + ACCEPT_TOKEN(anon_sym___restrict__); + END_STATE(); + case 545: + if (lookahead == 'n') ADVANCE(552); + END_STATE(); + case 546: + ACCEPT_TOKEN(anon_sym___vectorcall); + END_STATE(); + case 547: + ACCEPT_TOKEN(anon_sym_thread_local); + END_STATE(); + case 548: + ACCEPT_TOKEN(anon_sym___attribute__); + END_STATE(); + case 549: + ACCEPT_TOKEN(anon_sym___extension__); + END_STATE(); + case 550: + ACCEPT_TOKEN(anon_sym___forceinline); + END_STATE(); + case 551: + ACCEPT_TOKEN(anon_sym___read_mostly); + END_STATE(); + case 552: + if (lookahead == 'i') ADVANCE(553); + END_STATE(); + case 553: + if (lookahead == 't') ADVANCE(554); + END_STATE(); + case 554: ACCEPT_TOKEN(anon_sym___ro_after_init); END_STATE(); default: @@ -9665,22 +10048,22 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [22] = {.lex_state = 48}, [23] = {.lex_state = 121}, [24] = {.lex_state = 121}, - [25] = {.lex_state = 50}, + [25] = {.lex_state = 121}, [26] = {.lex_state = 121}, [27] = {.lex_state = 121}, [28] = {.lex_state = 121}, [29] = {.lex_state = 121}, - [30] = {.lex_state = 121}, - [31] = {.lex_state = 121}, - [32] = {.lex_state = 50}, + [30] = {.lex_state = 50}, + [31] = {.lex_state = 50}, + [32] = {.lex_state = 121}, [33] = {.lex_state = 121}, [34] = {.lex_state = 121}, [35] = {.lex_state = 121}, [36] = {.lex_state = 121}, - [37] = {.lex_state = 121}, + [37] = {.lex_state = 50}, [38] = {.lex_state = 121}, [39] = {.lex_state = 121}, - [40] = {.lex_state = 50}, + [40] = {.lex_state = 121}, [41] = {.lex_state = 121}, [42] = {.lex_state = 121}, [43] = {.lex_state = 121}, @@ -9691,17 +10074,17 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [48] = {.lex_state = 48}, [49] = {.lex_state = 48}, [50] = {.lex_state = 50}, - [51] = {.lex_state = 50}, + [51] = {.lex_state = 121}, [52] = {.lex_state = 121}, [53] = {.lex_state = 121}, [54] = {.lex_state = 121}, [55] = {.lex_state = 121}, [56] = {.lex_state = 121}, - [57] = {.lex_state = 50}, - [58] = {.lex_state = 121}, + [57] = {.lex_state = 121}, + [58] = {.lex_state = 50}, [59] = {.lex_state = 50}, [60] = {.lex_state = 50}, - [61] = {.lex_state = 121}, + [61] = {.lex_state = 50}, [62] = {.lex_state = 121}, [63] = {.lex_state = 121}, [64] = {.lex_state = 121}, @@ -9718,7 +10101,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [75] = {.lex_state = 48}, [76] = {.lex_state = 48}, [77] = {.lex_state = 48}, - [78] = {.lex_state = 121}, + [78] = {.lex_state = 48}, [79] = {.lex_state = 48}, [80] = {.lex_state = 48}, [81] = {.lex_state = 48}, @@ -9731,7 +10114,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [88] = {.lex_state = 48}, [89] = {.lex_state = 48}, [90] = {.lex_state = 48}, - [91] = {.lex_state = 48}, + [91] = {.lex_state = 121}, [92] = {.lex_state = 48}, [93] = {.lex_state = 48}, [94] = {.lex_state = 48}, @@ -9741,7 +10124,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [98] = {.lex_state = 48}, [99] = {.lex_state = 48}, [100] = {.lex_state = 48}, - [101] = {.lex_state = 48}, + [101] = {.lex_state = 121}, [102] = {.lex_state = 48}, [103] = {.lex_state = 48}, [104] = {.lex_state = 48}, @@ -9750,7 +10133,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [107] = {.lex_state = 48}, [108] = {.lex_state = 48}, [109] = {.lex_state = 48}, - [110] = {.lex_state = 121}, + [110] = {.lex_state = 48}, [111] = {.lex_state = 48}, [112] = {.lex_state = 48}, [113] = {.lex_state = 48}, @@ -9783,23 +10166,23 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [140] = {.lex_state = 48}, [141] = {.lex_state = 48}, [142] = {.lex_state = 48}, - [143] = {.lex_state = 50}, - [144] = {.lex_state = 121}, - [145] = {.lex_state = 121}, - [146] = {.lex_state = 50}, - [147] = {.lex_state = 50}, - [148] = {.lex_state = 121}, - [149] = {.lex_state = 121}, - [150] = {.lex_state = 121}, - [151] = {.lex_state = 121}, - [152] = {.lex_state = 121}, - [153] = {.lex_state = 121}, - [154] = {.lex_state = 121}, - [155] = {.lex_state = 121}, - [156] = {.lex_state = 121}, - [157] = {.lex_state = 121}, - [158] = {.lex_state = 121}, - [159] = {.lex_state = 121}, + [143] = {.lex_state = 48}, + [144] = {.lex_state = 48}, + [145] = {.lex_state = 48}, + [146] = {.lex_state = 48}, + [147] = {.lex_state = 48}, + [148] = {.lex_state = 48}, + [149] = {.lex_state = 48}, + [150] = {.lex_state = 48}, + [151] = {.lex_state = 48}, + [152] = {.lex_state = 48}, + [153] = {.lex_state = 48}, + [154] = {.lex_state = 48}, + [155] = {.lex_state = 48}, + [156] = {.lex_state = 48}, + [157] = {.lex_state = 48}, + [158] = {.lex_state = 48}, + [159] = {.lex_state = 50}, [160] = {.lex_state = 121}, [161] = {.lex_state = 121}, [162] = {.lex_state = 121}, @@ -9812,38 +10195,38 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [169] = {.lex_state = 121}, [170] = {.lex_state = 121}, [171] = {.lex_state = 121}, - [172] = {.lex_state = 50}, - [173] = {.lex_state = 50}, - [174] = {.lex_state = 50}, + [172] = {.lex_state = 121}, + [173] = {.lex_state = 121}, + [174] = {.lex_state = 121}, [175] = {.lex_state = 121}, - [176] = {.lex_state = 50}, - [177] = {.lex_state = 50}, - [178] = {.lex_state = 50}, - [179] = {.lex_state = 50}, + [176] = {.lex_state = 121}, + [177] = {.lex_state = 121}, + [178] = {.lex_state = 121}, + [179] = {.lex_state = 121}, [180] = {.lex_state = 121}, [181] = {.lex_state = 121}, - [182] = {.lex_state = 50}, + [182] = {.lex_state = 121}, [183] = {.lex_state = 121}, - [184] = {.lex_state = 50}, + [184] = {.lex_state = 121}, [185] = {.lex_state = 121}, - [186] = {.lex_state = 50}, + [186] = {.lex_state = 121}, [187] = {.lex_state = 121}, [188] = {.lex_state = 121}, [189] = {.lex_state = 121}, [190] = {.lex_state = 121}, - [191] = {.lex_state = 50}, - [192] = {.lex_state = 50}, + [191] = {.lex_state = 121}, + [192] = {.lex_state = 121}, [193] = {.lex_state = 121}, - [194] = {.lex_state = 50}, + [194] = {.lex_state = 121}, [195] = {.lex_state = 121}, [196] = {.lex_state = 121}, - [197] = {.lex_state = 50}, - [198] = {.lex_state = 50}, + [197] = {.lex_state = 121}, + [198] = {.lex_state = 121}, [199] = {.lex_state = 121}, - [200] = {.lex_state = 50}, + [200] = {.lex_state = 121}, [201] = {.lex_state = 121}, [202] = {.lex_state = 121}, - [203] = {.lex_state = 121}, + [203] = {.lex_state = 50}, [204] = {.lex_state = 50}, [205] = {.lex_state = 50}, [206] = {.lex_state = 121}, @@ -9856,120 +10239,120 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [213] = {.lex_state = 121}, [214] = {.lex_state = 121}, [215] = {.lex_state = 121}, - [216] = {.lex_state = 121}, + [216] = {.lex_state = 50}, [217] = {.lex_state = 50}, - [218] = {.lex_state = 121}, - [219] = {.lex_state = 50}, - [220] = {.lex_state = 50}, + [218] = {.lex_state = 50}, + [219] = {.lex_state = 121}, + [220] = {.lex_state = 121}, [221] = {.lex_state = 50}, [222] = {.lex_state = 121}, - [223] = {.lex_state = 50}, - [224] = {.lex_state = 50}, + [223] = {.lex_state = 121}, + [224] = {.lex_state = 121}, [225] = {.lex_state = 50}, [226] = {.lex_state = 50}, [227] = {.lex_state = 50}, - [228] = {.lex_state = 121}, - [229] = {.lex_state = 50}, + [228] = {.lex_state = 50}, + [229] = {.lex_state = 121}, [230] = {.lex_state = 50}, - [231] = {.lex_state = 50}, + [231] = {.lex_state = 121}, [232] = {.lex_state = 121}, [233] = {.lex_state = 121}, [234] = {.lex_state = 121}, - [235] = {.lex_state = 121}, - [236] = {.lex_state = 121}, - [237] = {.lex_state = 121}, - [238] = {.lex_state = 121}, - [239] = {.lex_state = 121}, - [240] = {.lex_state = 121}, + [235] = {.lex_state = 50}, + [236] = {.lex_state = 50}, + [237] = {.lex_state = 50}, + [238] = {.lex_state = 50}, + [239] = {.lex_state = 50}, + [240] = {.lex_state = 50}, [241] = {.lex_state = 121}, - [242] = {.lex_state = 121}, - [243] = {.lex_state = 121}, - [244] = {.lex_state = 121}, + [242] = {.lex_state = 50}, + [243] = {.lex_state = 50}, + [244] = {.lex_state = 50}, [245] = {.lex_state = 121}, [246] = {.lex_state = 121}, [247] = {.lex_state = 121}, - [248] = {.lex_state = 121}, - [249] = {.lex_state = 121}, - [250] = {.lex_state = 121}, - [251] = {.lex_state = 121}, - [252] = {.lex_state = 50}, - [253] = {.lex_state = 50}, - [254] = {.lex_state = 121}, - [255] = {.lex_state = 121}, - [256] = {.lex_state = 121}, - [257] = {.lex_state = 121}, - [258] = {.lex_state = 121}, - [259] = {.lex_state = 50}, + [248] = {.lex_state = 50}, + [249] = {.lex_state = 50}, + [250] = {.lex_state = 50}, + [251] = {.lex_state = 50}, + [252] = {.lex_state = 121}, + [253] = {.lex_state = 121}, + [254] = {.lex_state = 50}, + [255] = {.lex_state = 50}, + [256] = {.lex_state = 50}, + [257] = {.lex_state = 50}, + [258] = {.lex_state = 50}, + [259] = {.lex_state = 121}, [260] = {.lex_state = 121}, - [261] = {.lex_state = 121}, - [262] = {.lex_state = 121}, + [261] = {.lex_state = 50}, + [262] = {.lex_state = 50}, [263] = {.lex_state = 121}, - [264] = {.lex_state = 50}, - [265] = {.lex_state = 50}, - [266] = {.lex_state = 50}, - [267] = {.lex_state = 50}, - [268] = {.lex_state = 50}, - [269] = {.lex_state = 50}, - [270] = {.lex_state = 50}, + [264] = {.lex_state = 121}, + [265] = {.lex_state = 121}, + [266] = {.lex_state = 121}, + [267] = {.lex_state = 121}, + [268] = {.lex_state = 121}, + [269] = {.lex_state = 121}, + [270] = {.lex_state = 121}, [271] = {.lex_state = 121}, [272] = {.lex_state = 50}, [273] = {.lex_state = 50}, [274] = {.lex_state = 121}, [275] = {.lex_state = 121}, - [276] = {.lex_state = 50}, - [277] = {.lex_state = 50}, + [276] = {.lex_state = 121}, + [277] = {.lex_state = 121}, [278] = {.lex_state = 121}, [279] = {.lex_state = 121}, [280] = {.lex_state = 121}, - [281] = {.lex_state = 50}, + [281] = {.lex_state = 121}, [282] = {.lex_state = 50}, - [283] = {.lex_state = 50}, - [284] = {.lex_state = 121}, + [283] = {.lex_state = 121}, + [284] = {.lex_state = 50}, [285] = {.lex_state = 121}, - [286] = {.lex_state = 121}, - [287] = {.lex_state = 121}, - [288] = {.lex_state = 121}, - [289] = {.lex_state = 121}, + [286] = {.lex_state = 50}, + [287] = {.lex_state = 50}, + [288] = {.lex_state = 50}, + [289] = {.lex_state = 50}, [290] = {.lex_state = 121}, - [291] = {.lex_state = 50}, + [291] = {.lex_state = 121}, [292] = {.lex_state = 50}, - [293] = {.lex_state = 121}, + [293] = {.lex_state = 50}, [294] = {.lex_state = 50}, - [295] = {.lex_state = 121}, + [295] = {.lex_state = 50}, [296] = {.lex_state = 50}, [297] = {.lex_state = 50}, [298] = {.lex_state = 50}, [299] = {.lex_state = 50}, [300] = {.lex_state = 50}, - [301] = {.lex_state = 121}, + [301] = {.lex_state = 50}, [302] = {.lex_state = 50}, [303] = {.lex_state = 50}, - [304] = {.lex_state = 121}, + [304] = {.lex_state = 50}, [305] = {.lex_state = 121}, [306] = {.lex_state = 121}, - [307] = {.lex_state = 121}, + [307] = {.lex_state = 50}, [308] = {.lex_state = 50}, - [309] = {.lex_state = 50}, - [310] = {.lex_state = 47}, - [311] = {.lex_state = 121}, + [309] = {.lex_state = 121}, + [310] = {.lex_state = 50}, + [311] = {.lex_state = 50}, [312] = {.lex_state = 121}, - [313] = {.lex_state = 121}, - [314] = {.lex_state = 121}, - [315] = {.lex_state = 121}, - [316] = {.lex_state = 121}, - [317] = {.lex_state = 121}, - [318] = {.lex_state = 121}, - [319] = {.lex_state = 121}, - [320] = {.lex_state = 121}, - [321] = {.lex_state = 121}, - [322] = {.lex_state = 121}, + [313] = {.lex_state = 50}, + [314] = {.lex_state = 50}, + [315] = {.lex_state = 50}, + [316] = {.lex_state = 50}, + [317] = {.lex_state = 50}, + [318] = {.lex_state = 50}, + [319] = {.lex_state = 50}, + [320] = {.lex_state = 50}, + [321] = {.lex_state = 50}, + [322] = {.lex_state = 50}, [323] = {.lex_state = 121}, - [324] = {.lex_state = 121}, - [325] = {.lex_state = 121}, - [326] = {.lex_state = 121}, - [327] = {.lex_state = 121}, - [328] = {.lex_state = 121}, - [329] = {.lex_state = 121}, + [324] = {.lex_state = 50}, + [325] = {.lex_state = 50}, + [326] = {.lex_state = 50}, + [327] = {.lex_state = 50}, + [328] = {.lex_state = 50}, + [329] = {.lex_state = 50}, [330] = {.lex_state = 121}, [331] = {.lex_state = 121}, [332] = {.lex_state = 121}, @@ -9979,11 +10362,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [336] = {.lex_state = 121}, [337] = {.lex_state = 121}, [338] = {.lex_state = 121}, - [339] = {.lex_state = 121}, + [339] = {.lex_state = 50}, [340] = {.lex_state = 121}, - [341] = {.lex_state = 47}, - [342] = {.lex_state = 121}, - [343] = {.lex_state = 121}, + [341] = {.lex_state = 121}, + [342] = {.lex_state = 50}, + [343] = {.lex_state = 50}, [344] = {.lex_state = 121}, [345] = {.lex_state = 121}, [346] = {.lex_state = 121}, @@ -10004,7 +10387,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [361] = {.lex_state = 121}, [362] = {.lex_state = 121}, [363] = {.lex_state = 121}, - [364] = {.lex_state = 121}, + [364] = {.lex_state = 50}, [365] = {.lex_state = 121}, [366] = {.lex_state = 121}, [367] = {.lex_state = 121}, @@ -10012,7 +10395,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [369] = {.lex_state = 121}, [370] = {.lex_state = 121}, [371] = {.lex_state = 121}, - [372] = {.lex_state = 121}, + [372] = {.lex_state = 47}, [373] = {.lex_state = 121}, [374] = {.lex_state = 121}, [375] = {.lex_state = 121}, @@ -10023,8 +10406,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [380] = {.lex_state = 121}, [381] = {.lex_state = 121}, [382] = {.lex_state = 121}, - [383] = {.lex_state = 47}, - [384] = {.lex_state = 47}, + [383] = {.lex_state = 121}, + [384] = {.lex_state = 121}, [385] = {.lex_state = 121}, [386] = {.lex_state = 121}, [387] = {.lex_state = 121}, @@ -10039,38 +10422,38 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [396] = {.lex_state = 121}, [397] = {.lex_state = 121}, [398] = {.lex_state = 121}, - [399] = {.lex_state = 52}, - [400] = {.lex_state = 52}, - [401] = {.lex_state = 52}, - [402] = {.lex_state = 52}, - [403] = {.lex_state = 52}, + [399] = {.lex_state = 121}, + [400] = {.lex_state = 121}, + [401] = {.lex_state = 121}, + [402] = {.lex_state = 121}, + [403] = {.lex_state = 121}, [404] = {.lex_state = 121}, - [405] = {.lex_state = 121}, - [406] = {.lex_state = 52}, - [407] = {.lex_state = 52}, - [408] = {.lex_state = 52}, - [409] = {.lex_state = 52}, - [410] = {.lex_state = 52}, - [411] = {.lex_state = 47}, - [412] = {.lex_state = 55}, - [413] = {.lex_state = 47}, - [414] = {.lex_state = 55}, - [415] = {.lex_state = 55}, - [416] = {.lex_state = 55}, - [417] = {.lex_state = 55}, - [418] = {.lex_state = 55}, - [419] = {.lex_state = 55}, - [420] = {.lex_state = 55}, - [421] = {.lex_state = 55}, - [422] = {.lex_state = 55}, - [423] = {.lex_state = 55}, - [424] = {.lex_state = 55}, - [425] = {.lex_state = 55}, - [426] = {.lex_state = 55}, - [427] = {.lex_state = 55}, - [428] = {.lex_state = 55}, - [429] = {.lex_state = 55}, - [430] = {.lex_state = 55}, + [405] = {.lex_state = 47}, + [406] = {.lex_state = 121}, + [407] = {.lex_state = 121}, + [408] = {.lex_state = 121}, + [409] = {.lex_state = 121}, + [410] = {.lex_state = 121}, + [411] = {.lex_state = 121}, + [412] = {.lex_state = 121}, + [413] = {.lex_state = 121}, + [414] = {.lex_state = 121}, + [415] = {.lex_state = 121}, + [416] = {.lex_state = 121}, + [417] = {.lex_state = 121}, + [418] = {.lex_state = 121}, + [419] = {.lex_state = 121}, + [420] = {.lex_state = 121}, + [421] = {.lex_state = 121}, + [422] = {.lex_state = 121}, + [423] = {.lex_state = 121}, + [424] = {.lex_state = 121}, + [425] = {.lex_state = 121}, + [426] = {.lex_state = 121}, + [427] = {.lex_state = 121}, + [428] = {.lex_state = 121}, + [429] = {.lex_state = 121}, + [430] = {.lex_state = 121}, [431] = {.lex_state = 121}, [432] = {.lex_state = 121}, [433] = {.lex_state = 121}, @@ -10081,195 +10464,195 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [438] = {.lex_state = 121}, [439] = {.lex_state = 121}, [440] = {.lex_state = 121}, - [441] = {.lex_state = 55}, - [442] = {.lex_state = 56}, - [443] = {.lex_state = 60}, - [444] = {.lex_state = 60}, - [445] = {.lex_state = 56}, - [446] = {.lex_state = 56}, - [447] = {.lex_state = 121}, - [448] = {.lex_state = 60}, - [449] = {.lex_state = 121}, - [450] = {.lex_state = 121}, - [451] = {.lex_state = 121}, - [452] = {.lex_state = 55}, - [453] = {.lex_state = 55}, - [454] = {.lex_state = 55}, - [455] = {.lex_state = 55}, + [441] = {.lex_state = 121}, + [442] = {.lex_state = 121}, + [443] = {.lex_state = 121}, + [444] = {.lex_state = 121}, + [445] = {.lex_state = 121}, + [446] = {.lex_state = 121}, + [447] = {.lex_state = 52}, + [448] = {.lex_state = 52}, + [449] = {.lex_state = 47}, + [450] = {.lex_state = 47}, + [451] = {.lex_state = 52}, + [452] = {.lex_state = 52}, + [453] = {.lex_state = 52}, + [454] = {.lex_state = 52}, + [455] = {.lex_state = 52}, [456] = {.lex_state = 52}, [457] = {.lex_state = 52}, - [458] = {.lex_state = 52}, - [459] = {.lex_state = 121}, - [460] = {.lex_state = 52}, + [458] = {.lex_state = 121}, + [459] = {.lex_state = 52}, + [460] = {.lex_state = 121}, [461] = {.lex_state = 121}, - [462] = {.lex_state = 52}, + [462] = {.lex_state = 121}, [463] = {.lex_state = 121}, - [464] = {.lex_state = 52}, + [464] = {.lex_state = 121}, [465] = {.lex_state = 121}, [466] = {.lex_state = 121}, [467] = {.lex_state = 121}, - [468] = {.lex_state = 53}, + [468] = {.lex_state = 121}, [469] = {.lex_state = 121}, - [470] = {.lex_state = 53}, + [470] = {.lex_state = 121}, [471] = {.lex_state = 121}, [472] = {.lex_state = 121}, [473] = {.lex_state = 121}, - [474] = {.lex_state = 121}, - [475] = {.lex_state = 121}, - [476] = {.lex_state = 121}, - [477] = {.lex_state = 53}, - [478] = {.lex_state = 53}, + [474] = {.lex_state = 55}, + [475] = {.lex_state = 55}, + [476] = {.lex_state = 55}, + [477] = {.lex_state = 55}, + [478] = {.lex_state = 55}, [479] = {.lex_state = 55}, - [480] = {.lex_state = 121}, - [481] = {.lex_state = 121}, - [482] = {.lex_state = 121}, - [483] = {.lex_state = 121}, - [484] = {.lex_state = 121}, - [485] = {.lex_state = 121}, - [486] = {.lex_state = 53}, - [487] = {.lex_state = 53}, - [488] = {.lex_state = 52}, - [489] = {.lex_state = 53}, - [490] = {.lex_state = 121}, - [491] = {.lex_state = 53}, - [492] = {.lex_state = 53}, - [493] = {.lex_state = 121}, - [494] = {.lex_state = 121}, - [495] = {.lex_state = 121}, - [496] = {.lex_state = 121}, - [497] = {.lex_state = 121}, - [498] = {.lex_state = 121}, - [499] = {.lex_state = 121}, - [500] = {.lex_state = 121}, - [501] = {.lex_state = 53}, + [480] = {.lex_state = 55}, + [481] = {.lex_state = 55}, + [482] = {.lex_state = 55}, + [483] = {.lex_state = 55}, + [484] = {.lex_state = 55}, + [485] = {.lex_state = 55}, + [486] = {.lex_state = 55}, + [487] = {.lex_state = 55}, + [488] = {.lex_state = 55}, + [489] = {.lex_state = 121}, + [490] = {.lex_state = 55}, + [491] = {.lex_state = 55}, + [492] = {.lex_state = 55}, + [493] = {.lex_state = 47}, + [494] = {.lex_state = 56}, + [495] = {.lex_state = 56}, + [496] = {.lex_state = 60}, + [497] = {.lex_state = 56}, + [498] = {.lex_state = 60}, + [499] = {.lex_state = 60}, + [500] = {.lex_state = 47}, + [501] = {.lex_state = 55}, [502] = {.lex_state = 121}, [503] = {.lex_state = 121}, [504] = {.lex_state = 121}, - [505] = {.lex_state = 55}, - [506] = {.lex_state = 55}, - [507] = {.lex_state = 55}, + [505] = {.lex_state = 121}, + [506] = {.lex_state = 121}, + [507] = {.lex_state = 121}, [508] = {.lex_state = 121}, - [509] = {.lex_state = 55}, - [510] = {.lex_state = 55}, - [511] = {.lex_state = 55}, + [509] = {.lex_state = 121}, + [510] = {.lex_state = 121}, + [511] = {.lex_state = 121}, [512] = {.lex_state = 121}, - [513] = {.lex_state = 55}, - [514] = {.lex_state = 55}, - [515] = {.lex_state = 121}, + [513] = {.lex_state = 121}, + [514] = {.lex_state = 121}, + [515] = {.lex_state = 55}, [516] = {.lex_state = 55}, - [517] = {.lex_state = 121}, + [517] = {.lex_state = 55}, [518] = {.lex_state = 121}, [519] = {.lex_state = 55}, - [520] = {.lex_state = 121}, - [521] = {.lex_state = 55}, - [522] = {.lex_state = 55}, - [523] = {.lex_state = 55}, + [520] = {.lex_state = 52}, + [521] = {.lex_state = 52}, + [522] = {.lex_state = 52}, + [523] = {.lex_state = 52}, [524] = {.lex_state = 55}, - [525] = {.lex_state = 121}, + [525] = {.lex_state = 52}, [526] = {.lex_state = 121}, - [527] = {.lex_state = 55}, - [528] = {.lex_state = 121}, - [529] = {.lex_state = 121}, - [530] = {.lex_state = 121}, + [527] = {.lex_state = 121}, + [528] = {.lex_state = 52}, + [529] = {.lex_state = 55}, + [530] = {.lex_state = 55}, [531] = {.lex_state = 55}, [532] = {.lex_state = 55}, - [533] = {.lex_state = 121}, - [534] = {.lex_state = 121}, - [535] = {.lex_state = 55}, - [536] = {.lex_state = 121}, - [537] = {.lex_state = 121}, - [538] = {.lex_state = 121}, - [539] = {.lex_state = 121}, - [540] = {.lex_state = 121}, - [541] = {.lex_state = 121}, - [542] = {.lex_state = 121}, - [543] = {.lex_state = 121}, + [533] = {.lex_state = 53}, + [534] = {.lex_state = 53}, + [535] = {.lex_state = 121}, + [536] = {.lex_state = 53}, + [537] = {.lex_state = 53}, + [538] = {.lex_state = 53}, + [539] = {.lex_state = 53}, + [540] = {.lex_state = 53}, + [541] = {.lex_state = 53}, + [542] = {.lex_state = 53}, + [543] = {.lex_state = 53}, [544] = {.lex_state = 121}, - [545] = {.lex_state = 121}, - [546] = {.lex_state = 121}, - [547] = {.lex_state = 121}, - [548] = {.lex_state = 121}, + [545] = {.lex_state = 55}, + [546] = {.lex_state = 52}, + [547] = {.lex_state = 55}, + [548] = {.lex_state = 55}, [549] = {.lex_state = 121}, - [550] = {.lex_state = 121}, - [551] = {.lex_state = 121}, + [550] = {.lex_state = 55}, + [551] = {.lex_state = 55}, [552] = {.lex_state = 55}, - [553] = {.lex_state = 121}, - [554] = {.lex_state = 121}, + [553] = {.lex_state = 55}, + [554] = {.lex_state = 55}, [555] = {.lex_state = 121}, - [556] = {.lex_state = 121}, - [557] = {.lex_state = 121}, - [558] = {.lex_state = 121}, - [559] = {.lex_state = 121}, + [556] = {.lex_state = 55}, + [557] = {.lex_state = 55}, + [558] = {.lex_state = 55}, + [559] = {.lex_state = 55}, [560] = {.lex_state = 121}, - [561] = {.lex_state = 121}, + [561] = {.lex_state = 55}, [562] = {.lex_state = 55}, [563] = {.lex_state = 121}, [564] = {.lex_state = 121}, [565] = {.lex_state = 121}, [566] = {.lex_state = 121}, - [567] = {.lex_state = 121}, + [567] = {.lex_state = 55}, [568] = {.lex_state = 121}, - [569] = {.lex_state = 121}, + [569] = {.lex_state = 55}, [570] = {.lex_state = 121}, - [571] = {.lex_state = 121}, + [571] = {.lex_state = 55}, [572] = {.lex_state = 121}, [573] = {.lex_state = 121}, - [574] = {.lex_state = 121}, + [574] = {.lex_state = 55}, [575] = {.lex_state = 121}, - [576] = {.lex_state = 121}, + [576] = {.lex_state = 55}, [577] = {.lex_state = 121}, - [578] = {.lex_state = 121}, - [579] = {.lex_state = 121}, - [580] = {.lex_state = 121}, - [581] = {.lex_state = 121}, + [578] = {.lex_state = 55}, + [579] = {.lex_state = 55}, + [580] = {.lex_state = 55}, + [581] = {.lex_state = 55}, [582] = {.lex_state = 121}, - [583] = {.lex_state = 121}, - [584] = {.lex_state = 121}, - [585] = {.lex_state = 121}, - [586] = {.lex_state = 121}, - [587] = {.lex_state = 121}, + [583] = {.lex_state = 55}, + [584] = {.lex_state = 55}, + [585] = {.lex_state = 55}, + [586] = {.lex_state = 55}, + [587] = {.lex_state = 55}, [588] = {.lex_state = 121}, - [589] = {.lex_state = 121}, - [590] = {.lex_state = 121}, + [589] = {.lex_state = 55}, + [590] = {.lex_state = 55}, [591] = {.lex_state = 121}, [592] = {.lex_state = 121}, [593] = {.lex_state = 121}, - [594] = {.lex_state = 121}, + [594] = {.lex_state = 55}, [595] = {.lex_state = 121}, - [596] = {.lex_state = 55}, + [596] = {.lex_state = 121}, [597] = {.lex_state = 55}, - [598] = {.lex_state = 121}, - [599] = {.lex_state = 121}, + [598] = {.lex_state = 55}, + [599] = {.lex_state = 55}, [600] = {.lex_state = 121}, [601] = {.lex_state = 121}, - [602] = {.lex_state = 121}, - [603] = {.lex_state = 121}, + [602] = {.lex_state = 55}, + [603] = {.lex_state = 55}, [604] = {.lex_state = 121}, - [605] = {.lex_state = 121}, - [606] = {.lex_state = 121}, + [605] = {.lex_state = 55}, + [606] = {.lex_state = 55}, [607] = {.lex_state = 121}, [608] = {.lex_state = 121}, - [609] = {.lex_state = 55}, + [609] = {.lex_state = 121}, [610] = {.lex_state = 121}, - [611] = {.lex_state = 121}, + [611] = {.lex_state = 55}, [612] = {.lex_state = 121}, - [613] = {.lex_state = 121}, + [613] = {.lex_state = 55}, [614] = {.lex_state = 121}, - [615] = {.lex_state = 121}, + [615] = {.lex_state = 55}, [616] = {.lex_state = 121}, [617] = {.lex_state = 121}, [618] = {.lex_state = 121}, [619] = {.lex_state = 121}, - [620] = {.lex_state = 121}, + [620] = {.lex_state = 55}, [621] = {.lex_state = 121}, - [622] = {.lex_state = 121}, + [622] = {.lex_state = 55}, [623] = {.lex_state = 121}, [624] = {.lex_state = 121}, [625] = {.lex_state = 121}, [626] = {.lex_state = 121}, - [627] = {.lex_state = 121}, + [627] = {.lex_state = 55}, [628] = {.lex_state = 121}, - [629] = {.lex_state = 121}, + [629] = {.lex_state = 55}, [630] = {.lex_state = 121}, [631] = {.lex_state = 121}, [632] = {.lex_state = 121}, @@ -10277,8 +10660,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [634] = {.lex_state = 121}, [635] = {.lex_state = 121}, [636] = {.lex_state = 121}, - [637] = {.lex_state = 55}, - [638] = {.lex_state = 55}, + [637] = {.lex_state = 121}, + [638] = {.lex_state = 60}, [639] = {.lex_state = 121}, [640] = {.lex_state = 121}, [641] = {.lex_state = 121}, @@ -10298,150 +10681,150 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [655] = {.lex_state = 121}, [656] = {.lex_state = 121}, [657] = {.lex_state = 121}, - [658] = {.lex_state = 53}, - [659] = {.lex_state = 52}, - [660] = {.lex_state = 53}, - [661] = {.lex_state = 53}, + [658] = {.lex_state = 121}, + [659] = {.lex_state = 121}, + [660] = {.lex_state = 121}, + [661] = {.lex_state = 121}, [662] = {.lex_state = 53}, - [663] = {.lex_state = 53}, - [664] = {.lex_state = 53}, - [665] = {.lex_state = 53}, - [666] = {.lex_state = 53}, - [667] = {.lex_state = 53}, - [668] = {.lex_state = 53}, - [669] = {.lex_state = 53}, - [670] = {.lex_state = 53}, - [671] = {.lex_state = 53}, - [672] = {.lex_state = 53}, - [673] = {.lex_state = 53}, - [674] = {.lex_state = 53}, - [675] = {.lex_state = 53}, - [676] = {.lex_state = 53}, - [677] = {.lex_state = 55}, - [678] = {.lex_state = 54}, - [679] = {.lex_state = 53}, - [680] = {.lex_state = 55}, - [681] = {.lex_state = 53}, - [682] = {.lex_state = 55}, - [683] = {.lex_state = 53}, - [684] = {.lex_state = 55}, - [685] = {.lex_state = 53}, - [686] = {.lex_state = 53}, - [687] = {.lex_state = 54}, - [688] = {.lex_state = 55}, - [689] = {.lex_state = 53}, - [690] = {.lex_state = 54}, - [691] = {.lex_state = 55}, - [692] = {.lex_state = 55}, - [693] = {.lex_state = 55}, - [694] = {.lex_state = 54}, - [695] = {.lex_state = 55}, - [696] = {.lex_state = 55}, - [697] = {.lex_state = 55}, - [698] = {.lex_state = 52}, - [699] = {.lex_state = 55}, - [700] = {.lex_state = 55}, - [701] = {.lex_state = 55}, - [702] = {.lex_state = 55}, - [703] = {.lex_state = 55}, - [704] = {.lex_state = 55}, - [705] = {.lex_state = 55}, - [706] = {.lex_state = 55}, - [707] = {.lex_state = 55}, - [708] = {.lex_state = 55}, - [709] = {.lex_state = 55}, - [710] = {.lex_state = 55}, - [711] = {.lex_state = 55}, - [712] = {.lex_state = 55}, - [713] = {.lex_state = 55}, - [714] = {.lex_state = 55}, - [715] = {.lex_state = 55}, - [716] = {.lex_state = 55}, - [717] = {.lex_state = 55}, - [718] = {.lex_state = 55}, - [719] = {.lex_state = 55}, - [720] = {.lex_state = 55}, - [721] = {.lex_state = 55}, + [663] = {.lex_state = 121}, + [664] = {.lex_state = 121}, + [665] = {.lex_state = 121}, + [666] = {.lex_state = 121}, + [667] = {.lex_state = 121}, + [668] = {.lex_state = 121}, + [669] = {.lex_state = 121}, + [670] = {.lex_state = 121}, + [671] = {.lex_state = 52}, + [672] = {.lex_state = 121}, + [673] = {.lex_state = 121}, + [674] = {.lex_state = 121}, + [675] = {.lex_state = 121}, + [676] = {.lex_state = 121}, + [677] = {.lex_state = 121}, + [678] = {.lex_state = 121}, + [679] = {.lex_state = 121}, + [680] = {.lex_state = 121}, + [681] = {.lex_state = 121}, + [682] = {.lex_state = 121}, + [683] = {.lex_state = 121}, + [684] = {.lex_state = 121}, + [685] = {.lex_state = 121}, + [686] = {.lex_state = 121}, + [687] = {.lex_state = 121}, + [688] = {.lex_state = 121}, + [689] = {.lex_state = 121}, + [690] = {.lex_state = 121}, + [691] = {.lex_state = 121}, + [692] = {.lex_state = 121}, + [693] = {.lex_state = 60}, + [694] = {.lex_state = 121}, + [695] = {.lex_state = 121}, + [696] = {.lex_state = 121}, + [697] = {.lex_state = 121}, + [698] = {.lex_state = 121}, + [699] = {.lex_state = 121}, + [700] = {.lex_state = 121}, + [701] = {.lex_state = 121}, + [702] = {.lex_state = 121}, + [703] = {.lex_state = 121}, + [704] = {.lex_state = 121}, + [705] = {.lex_state = 121}, + [706] = {.lex_state = 121}, + [707] = {.lex_state = 121}, + [708] = {.lex_state = 121}, + [709] = {.lex_state = 121}, + [710] = {.lex_state = 121}, + [711] = {.lex_state = 60}, + [712] = {.lex_state = 121}, + [713] = {.lex_state = 121}, + [714] = {.lex_state = 121}, + [715] = {.lex_state = 121}, + [716] = {.lex_state = 121}, + [717] = {.lex_state = 121}, + [718] = {.lex_state = 121}, + [719] = {.lex_state = 121}, + [720] = {.lex_state = 121}, + [721] = {.lex_state = 121}, [722] = {.lex_state = 121}, - [723] = {.lex_state = 55}, - [724] = {.lex_state = 55}, - [725] = {.lex_state = 55}, + [723] = {.lex_state = 121}, + [724] = {.lex_state = 121}, + [725] = {.lex_state = 121}, [726] = {.lex_state = 121}, - [727] = {.lex_state = 55}, - [728] = {.lex_state = 55}, - [729] = {.lex_state = 55}, - [730] = {.lex_state = 55}, - [731] = {.lex_state = 55}, - [732] = {.lex_state = 55}, + [727] = {.lex_state = 121}, + [728] = {.lex_state = 121}, + [729] = {.lex_state = 121}, + [730] = {.lex_state = 121}, + [731] = {.lex_state = 121}, + [732] = {.lex_state = 121}, [733] = {.lex_state = 121}, - [734] = {.lex_state = 55}, - [735] = {.lex_state = 55}, + [734] = {.lex_state = 121}, + [735] = {.lex_state = 121}, [736] = {.lex_state = 121}, - [737] = {.lex_state = 55}, - [738] = {.lex_state = 55}, - [739] = {.lex_state = 55}, - [740] = {.lex_state = 55}, - [741] = {.lex_state = 55}, - [742] = {.lex_state = 55}, - [743] = {.lex_state = 55}, - [744] = {.lex_state = 55}, - [745] = {.lex_state = 55}, - [746] = {.lex_state = 55}, - [747] = {.lex_state = 55}, - [748] = {.lex_state = 55}, - [749] = {.lex_state = 55}, - [750] = {.lex_state = 55}, + [737] = {.lex_state = 121}, + [738] = {.lex_state = 121}, + [739] = {.lex_state = 121}, + [740] = {.lex_state = 121}, + [741] = {.lex_state = 121}, + [742] = {.lex_state = 121}, + [743] = {.lex_state = 121}, + [744] = {.lex_state = 121}, + [745] = {.lex_state = 121}, + [746] = {.lex_state = 121}, + [747] = {.lex_state = 121}, + [748] = {.lex_state = 121}, + [749] = {.lex_state = 121}, + [750] = {.lex_state = 121}, [751] = {.lex_state = 55}, - [752] = {.lex_state = 55}, - [753] = {.lex_state = 55}, - [754] = {.lex_state = 55}, - [755] = {.lex_state = 55}, - [756] = {.lex_state = 55}, - [757] = {.lex_state = 55}, - [758] = {.lex_state = 55}, - [759] = {.lex_state = 55}, - [760] = {.lex_state = 55}, - [761] = {.lex_state = 55}, - [762] = {.lex_state = 55}, + [752] = {.lex_state = 53}, + [753] = {.lex_state = 53}, + [754] = {.lex_state = 53}, + [755] = {.lex_state = 53}, + [756] = {.lex_state = 53}, + [757] = {.lex_state = 53}, + [758] = {.lex_state = 53}, + [759] = {.lex_state = 53}, + [760] = {.lex_state = 53}, + [761] = {.lex_state = 53}, + [762] = {.lex_state = 53}, [763] = {.lex_state = 55}, - [764] = {.lex_state = 55}, - [765] = {.lex_state = 55}, + [764] = {.lex_state = 53}, + [765] = {.lex_state = 53}, [766] = {.lex_state = 55}, - [767] = {.lex_state = 55}, - [768] = {.lex_state = 55}, - [769] = {.lex_state = 55}, - [770] = {.lex_state = 55}, - [771] = {.lex_state = 55}, + [767] = {.lex_state = 53}, + [768] = {.lex_state = 53}, + [769] = {.lex_state = 53}, + [770] = {.lex_state = 53}, + [771] = {.lex_state = 53}, [772] = {.lex_state = 55}, [773] = {.lex_state = 55}, - [774] = {.lex_state = 55}, + [774] = {.lex_state = 56}, [775] = {.lex_state = 55}, [776] = {.lex_state = 55}, [777] = {.lex_state = 55}, [778] = {.lex_state = 55}, - [779] = {.lex_state = 55}, + [779] = {.lex_state = 54}, [780] = {.lex_state = 55}, - [781] = {.lex_state = 55}, - [782] = {.lex_state = 55}, - [783] = {.lex_state = 55}, + [781] = {.lex_state = 53}, + [782] = {.lex_state = 53}, + [783] = {.lex_state = 53}, [784] = {.lex_state = 55}, [785] = {.lex_state = 55}, [786] = {.lex_state = 55}, [787] = {.lex_state = 55}, [788] = {.lex_state = 55}, - [789] = {.lex_state = 55}, + [789] = {.lex_state = 53}, [790] = {.lex_state = 55}, [791] = {.lex_state = 55}, - [792] = {.lex_state = 55}, + [792] = {.lex_state = 54}, [793] = {.lex_state = 55}, [794] = {.lex_state = 55}, - [795] = {.lex_state = 55}, + [795] = {.lex_state = 54}, [796] = {.lex_state = 55}, - [797] = {.lex_state = 55}, + [797] = {.lex_state = 54}, [798] = {.lex_state = 55}, - [799] = {.lex_state = 52}, - [800] = {.lex_state = 55}, - [801] = {.lex_state = 55}, + [799] = {.lex_state = 55}, + [800] = {.lex_state = 60}, + [801] = {.lex_state = 53}, [802] = {.lex_state = 55}, [803] = {.lex_state = 55}, [804] = {.lex_state = 55}, @@ -10451,193 +10834,193 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [808] = {.lex_state = 55}, [809] = {.lex_state = 55}, [810] = {.lex_state = 55}, - [811] = {.lex_state = 55}, + [811] = {.lex_state = 52}, [812] = {.lex_state = 55}, [813] = {.lex_state = 55}, [814] = {.lex_state = 55}, [815] = {.lex_state = 55}, - [816] = {.lex_state = 52}, + [816] = {.lex_state = 55}, [817] = {.lex_state = 55}, [818] = {.lex_state = 55}, [819] = {.lex_state = 55}, - [820] = {.lex_state = 121}, - [821] = {.lex_state = 121}, + [820] = {.lex_state = 55}, + [821] = {.lex_state = 55}, [822] = {.lex_state = 55}, [823] = {.lex_state = 55}, [824] = {.lex_state = 55}, [825] = {.lex_state = 55}, [826] = {.lex_state = 55}, - [827] = {.lex_state = 60}, - [828] = {.lex_state = 52}, - [829] = {.lex_state = 60}, - [830] = {.lex_state = 52}, - [831] = {.lex_state = 60}, - [832] = {.lex_state = 60}, - [833] = {.lex_state = 60}, - [834] = {.lex_state = 56}, - [835] = {.lex_state = 56}, - [836] = {.lex_state = 56}, - [837] = {.lex_state = 56}, - [838] = {.lex_state = 52}, - [839] = {.lex_state = 56}, - [840] = {.lex_state = 56}, - [841] = {.lex_state = 52}, - [842] = {.lex_state = 60}, - [843] = {.lex_state = 60}, - [844] = {.lex_state = 60}, - [845] = {.lex_state = 60}, - [846] = {.lex_state = 60}, - [847] = {.lex_state = 60}, - [848] = {.lex_state = 52}, - [849] = {.lex_state = 52}, - [850] = {.lex_state = 56}, + [827] = {.lex_state = 55}, + [828] = {.lex_state = 55}, + [829] = {.lex_state = 55}, + [830] = {.lex_state = 55}, + [831] = {.lex_state = 55}, + [832] = {.lex_state = 55}, + [833] = {.lex_state = 55}, + [834] = {.lex_state = 55}, + [835] = {.lex_state = 55}, + [836] = {.lex_state = 55}, + [837] = {.lex_state = 55}, + [838] = {.lex_state = 55}, + [839] = {.lex_state = 55}, + [840] = {.lex_state = 55}, + [841] = {.lex_state = 55}, + [842] = {.lex_state = 55}, + [843] = {.lex_state = 55}, + [844] = {.lex_state = 55}, + [845] = {.lex_state = 55}, + [846] = {.lex_state = 55}, + [847] = {.lex_state = 55}, + [848] = {.lex_state = 55}, + [849] = {.lex_state = 55}, + [850] = {.lex_state = 55}, [851] = {.lex_state = 55}, - [852] = {.lex_state = 60}, - [853] = {.lex_state = 60}, - [854] = {.lex_state = 60}, - [855] = {.lex_state = 60}, + [852] = {.lex_state = 55}, + [853] = {.lex_state = 55}, + [854] = {.lex_state = 55}, + [855] = {.lex_state = 55}, [856] = {.lex_state = 55}, - [857] = {.lex_state = 56}, - [858] = {.lex_state = 56}, - [859] = {.lex_state = 60}, - [860] = {.lex_state = 56}, - [861] = {.lex_state = 52}, - [862] = {.lex_state = 52}, - [863] = {.lex_state = 60}, - [864] = {.lex_state = 56}, - [865] = {.lex_state = 52}, - [866] = {.lex_state = 56}, - [867] = {.lex_state = 56}, - [868] = {.lex_state = 56}, - [869] = {.lex_state = 56}, - [870] = {.lex_state = 52}, - [871] = {.lex_state = 56}, - [872] = {.lex_state = 60}, + [857] = {.lex_state = 55}, + [858] = {.lex_state = 55}, + [859] = {.lex_state = 55}, + [860] = {.lex_state = 55}, + [861] = {.lex_state = 55}, + [862] = {.lex_state = 55}, + [863] = {.lex_state = 55}, + [864] = {.lex_state = 55}, + [865] = {.lex_state = 55}, + [866] = {.lex_state = 55}, + [867] = {.lex_state = 55}, + [868] = {.lex_state = 55}, + [869] = {.lex_state = 55}, + [870] = {.lex_state = 55}, + [871] = {.lex_state = 55}, + [872] = {.lex_state = 55}, [873] = {.lex_state = 55}, - [874] = {.lex_state = 56}, - [875] = {.lex_state = 56}, - [876] = {.lex_state = 53}, - [877] = {.lex_state = 53}, - [878] = {.lex_state = 53}, - [879] = {.lex_state = 53}, - [880] = {.lex_state = 53}, - [881] = {.lex_state = 53}, - [882] = {.lex_state = 53}, - [883] = {.lex_state = 53}, - [884] = {.lex_state = 53}, - [885] = {.lex_state = 52}, - [886] = {.lex_state = 53}, - [887] = {.lex_state = 53}, - [888] = {.lex_state = 53}, + [874] = {.lex_state = 55}, + [875] = {.lex_state = 55}, + [876] = {.lex_state = 55}, + [877] = {.lex_state = 55}, + [878] = {.lex_state = 55}, + [879] = {.lex_state = 55}, + [880] = {.lex_state = 55}, + [881] = {.lex_state = 55}, + [882] = {.lex_state = 55}, + [883] = {.lex_state = 55}, + [884] = {.lex_state = 55}, + [885] = {.lex_state = 55}, + [886] = {.lex_state = 55}, + [887] = {.lex_state = 55}, + [888] = {.lex_state = 55}, [889] = {.lex_state = 55}, - [890] = {.lex_state = 53}, + [890] = {.lex_state = 55}, [891] = {.lex_state = 55}, [892] = {.lex_state = 55}, [893] = {.lex_state = 55}, [894] = {.lex_state = 55}, [895] = {.lex_state = 55}, [896] = {.lex_state = 55}, - [897] = {.lex_state = 55}, - [898] = {.lex_state = 55}, + [897] = {.lex_state = 56}, + [898] = {.lex_state = 56}, [899] = {.lex_state = 55}, - [900] = {.lex_state = 55}, + [900] = {.lex_state = 56}, [901] = {.lex_state = 55}, [902] = {.lex_state = 55}, - [903] = {.lex_state = 55}, - [904] = {.lex_state = 55}, + [903] = {.lex_state = 121}, + [904] = {.lex_state = 121}, [905] = {.lex_state = 55}, - [906] = {.lex_state = 55}, - [907] = {.lex_state = 55}, + [906] = {.lex_state = 121}, + [907] = {.lex_state = 121}, [908] = {.lex_state = 55}, [909] = {.lex_state = 55}, [910] = {.lex_state = 55}, [911] = {.lex_state = 55}, [912] = {.lex_state = 55}, - [913] = {.lex_state = 52}, - [914] = {.lex_state = 52}, - [915] = {.lex_state = 52}, - [916] = {.lex_state = 52}, - [917] = {.lex_state = 52}, - [918] = {.lex_state = 52}, - [919] = {.lex_state = 52}, - [920] = {.lex_state = 52}, - [921] = {.lex_state = 52}, - [922] = {.lex_state = 52}, - [923] = {.lex_state = 52}, - [924] = {.lex_state = 52}, - [925] = {.lex_state = 52}, - [926] = {.lex_state = 52}, - [927] = {.lex_state = 52}, - [928] = {.lex_state = 52}, + [913] = {.lex_state = 55}, + [914] = {.lex_state = 55}, + [915] = {.lex_state = 55}, + [916] = {.lex_state = 55}, + [917] = {.lex_state = 55}, + [918] = {.lex_state = 55}, + [919] = {.lex_state = 55}, + [920] = {.lex_state = 55}, + [921] = {.lex_state = 60}, + [922] = {.lex_state = 56}, + [923] = {.lex_state = 56}, + [924] = {.lex_state = 60}, + [925] = {.lex_state = 60}, + [926] = {.lex_state = 60}, + [927] = {.lex_state = 60}, + [928] = {.lex_state = 56}, [929] = {.lex_state = 52}, - [930] = {.lex_state = 52}, - [931] = {.lex_state = 55}, - [932] = {.lex_state = 55}, - [933] = {.lex_state = 55}, - [934] = {.lex_state = 55}, - [935] = {.lex_state = 55}, - [936] = {.lex_state = 55}, - [937] = {.lex_state = 55}, - [938] = {.lex_state = 52}, - [939] = {.lex_state = 55}, - [940] = {.lex_state = 55}, - [941] = {.lex_state = 55}, - [942] = {.lex_state = 52}, - [943] = {.lex_state = 52}, + [930] = {.lex_state = 56}, + [931] = {.lex_state = 56}, + [932] = {.lex_state = 56}, + [933] = {.lex_state = 60}, + [934] = {.lex_state = 60}, + [935] = {.lex_state = 56}, + [936] = {.lex_state = 56}, + [937] = {.lex_state = 60}, + [938] = {.lex_state = 60}, + [939] = {.lex_state = 60}, + [940] = {.lex_state = 52}, + [941] = {.lex_state = 60}, + [942] = {.lex_state = 56}, + [943] = {.lex_state = 60}, [944] = {.lex_state = 55}, - [945] = {.lex_state = 55}, - [946] = {.lex_state = 52}, - [947] = {.lex_state = 55}, - [948] = {.lex_state = 52}, - [949] = {.lex_state = 55}, - [950] = {.lex_state = 55}, - [951] = {.lex_state = 55}, - [952] = {.lex_state = 52}, - [953] = {.lex_state = 121}, - [954] = {.lex_state = 121}, - [955] = {.lex_state = 121}, - [956] = {.lex_state = 121}, - [957] = {.lex_state = 121}, - [958] = {.lex_state = 121}, - [959] = {.lex_state = 121}, - [960] = {.lex_state = 56}, - [961] = {.lex_state = 56}, - [962] = {.lex_state = 56}, - [963] = {.lex_state = 121}, - [964] = {.lex_state = 121}, - [965] = {.lex_state = 56}, - [966] = {.lex_state = 121}, + [945] = {.lex_state = 56}, + [946] = {.lex_state = 60}, + [947] = {.lex_state = 56}, + [948] = {.lex_state = 60}, + [949] = {.lex_state = 56}, + [950] = {.lex_state = 56}, + [951] = {.lex_state = 56}, + [952] = {.lex_state = 60}, + [953] = {.lex_state = 56}, + [954] = {.lex_state = 60}, + [955] = {.lex_state = 60}, + [956] = {.lex_state = 60}, + [957] = {.lex_state = 56}, + [958] = {.lex_state = 56}, + [959] = {.lex_state = 56}, + [960] = {.lex_state = 55}, + [961] = {.lex_state = 55}, + [962] = {.lex_state = 121}, + [963] = {.lex_state = 55}, + [964] = {.lex_state = 55}, + [965] = {.lex_state = 121}, + [966] = {.lex_state = 55}, [967] = {.lex_state = 55}, [968] = {.lex_state = 55}, - [969] = {.lex_state = 55}, - [970] = {.lex_state = 55}, - [971] = {.lex_state = 55}, - [972] = {.lex_state = 55}, + [969] = {.lex_state = 52}, + [970] = {.lex_state = 52}, + [971] = {.lex_state = 52}, + [972] = {.lex_state = 52}, [973] = {.lex_state = 55}, - [974] = {.lex_state = 53}, - [975] = {.lex_state = 53}, - [976] = {.lex_state = 55}, - [977] = {.lex_state = 53}, - [978] = {.lex_state = 53}, - [979] = {.lex_state = 55}, + [974] = {.lex_state = 55}, + [975] = {.lex_state = 52}, + [976] = {.lex_state = 52}, + [977] = {.lex_state = 52}, + [978] = {.lex_state = 52}, + [979] = {.lex_state = 52}, [980] = {.lex_state = 55}, - [981] = {.lex_state = 55}, + [981] = {.lex_state = 52}, [982] = {.lex_state = 53}, [983] = {.lex_state = 53}, - [984] = {.lex_state = 55}, + [984] = {.lex_state = 53}, [985] = {.lex_state = 53}, [986] = {.lex_state = 53}, - [987] = {.lex_state = 53}, - [988] = {.lex_state = 55}, - [989] = {.lex_state = 55}, + [987] = {.lex_state = 55}, + [988] = {.lex_state = 53}, + [989] = {.lex_state = 53}, [990] = {.lex_state = 53}, [991] = {.lex_state = 53}, - [992] = {.lex_state = 55}, + [992] = {.lex_state = 52}, [993] = {.lex_state = 53}, - [994] = {.lex_state = 53}, - [995] = {.lex_state = 55}, - [996] = {.lex_state = 55}, - [997] = {.lex_state = 55}, + [994] = {.lex_state = 55}, + [995] = {.lex_state = 53}, + [996] = {.lex_state = 53}, + [997] = {.lex_state = 53}, [998] = {.lex_state = 55}, [999] = {.lex_state = 55}, [1000] = {.lex_state = 55}, @@ -10654,110 +11037,110 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1011] = {.lex_state = 55}, [1012] = {.lex_state = 55}, [1013] = {.lex_state = 55}, - [1014] = {.lex_state = 52}, + [1014] = {.lex_state = 55}, [1015] = {.lex_state = 55}, [1016] = {.lex_state = 55}, [1017] = {.lex_state = 55}, [1018] = {.lex_state = 55}, [1019] = {.lex_state = 55}, [1020] = {.lex_state = 55}, - [1021] = {.lex_state = 52}, - [1022] = {.lex_state = 52}, - [1023] = {.lex_state = 52}, + [1021] = {.lex_state = 55}, + [1022] = {.lex_state = 55}, + [1023] = {.lex_state = 55}, [1024] = {.lex_state = 55}, - [1025] = {.lex_state = 52}, - [1026] = {.lex_state = 52}, - [1027] = {.lex_state = 52}, + [1025] = {.lex_state = 55}, + [1026] = {.lex_state = 55}, + [1027] = {.lex_state = 55}, [1028] = {.lex_state = 52}, - [1029] = {.lex_state = 52}, + [1029] = {.lex_state = 55}, [1030] = {.lex_state = 52}, - [1031] = {.lex_state = 52}, - [1032] = {.lex_state = 52}, - [1033] = {.lex_state = 52}, + [1031] = {.lex_state = 55}, + [1032] = {.lex_state = 55}, + [1033] = {.lex_state = 55}, [1034] = {.lex_state = 52}, [1035] = {.lex_state = 52}, [1036] = {.lex_state = 52}, [1037] = {.lex_state = 52}, [1038] = {.lex_state = 52}, - [1039] = {.lex_state = 52}, + [1039] = {.lex_state = 55}, [1040] = {.lex_state = 52}, - [1041] = {.lex_state = 52}, - [1042] = {.lex_state = 52}, + [1041] = {.lex_state = 55}, + [1042] = {.lex_state = 55}, [1043] = {.lex_state = 52}, [1044] = {.lex_state = 52}, - [1045] = {.lex_state = 52}, + [1045] = {.lex_state = 55}, [1046] = {.lex_state = 52}, [1047] = {.lex_state = 52}, [1048] = {.lex_state = 52}, [1049] = {.lex_state = 52}, [1050] = {.lex_state = 52}, - [1051] = {.lex_state = 52}, - [1052] = {.lex_state = 52}, - [1053] = {.lex_state = 52}, + [1051] = {.lex_state = 55}, + [1052] = {.lex_state = 55}, + [1053] = {.lex_state = 55}, [1054] = {.lex_state = 52}, - [1055] = {.lex_state = 52}, + [1055] = {.lex_state = 55}, [1056] = {.lex_state = 52}, [1057] = {.lex_state = 52}, - [1058] = {.lex_state = 52}, + [1058] = {.lex_state = 55}, [1059] = {.lex_state = 52}, - [1060] = {.lex_state = 52}, - [1061] = {.lex_state = 52}, - [1062] = {.lex_state = 52}, + [1060] = {.lex_state = 55}, + [1061] = {.lex_state = 55}, + [1062] = {.lex_state = 55}, [1063] = {.lex_state = 52}, [1064] = {.lex_state = 52}, [1065] = {.lex_state = 52}, [1066] = {.lex_state = 52}, - [1067] = {.lex_state = 52}, - [1068] = {.lex_state = 52}, + [1067] = {.lex_state = 56}, + [1068] = {.lex_state = 56}, [1069] = {.lex_state = 52}, - [1070] = {.lex_state = 52}, - [1071] = {.lex_state = 52}, - [1072] = {.lex_state = 52}, - [1073] = {.lex_state = 52}, - [1074] = {.lex_state = 52}, - [1075] = {.lex_state = 52}, - [1076] = {.lex_state = 52}, - [1077] = {.lex_state = 52}, - [1078] = {.lex_state = 52}, - [1079] = {.lex_state = 52}, - [1080] = {.lex_state = 52}, - [1081] = {.lex_state = 52}, - [1082] = {.lex_state = 52}, - [1083] = {.lex_state = 52}, - [1084] = {.lex_state = 52}, - [1085] = {.lex_state = 52}, - [1086] = {.lex_state = 52}, - [1087] = {.lex_state = 52}, - [1088] = {.lex_state = 52}, - [1089] = {.lex_state = 52}, - [1090] = {.lex_state = 52}, - [1091] = {.lex_state = 52}, - [1092] = {.lex_state = 52}, - [1093] = {.lex_state = 52}, - [1094] = {.lex_state = 52}, - [1095] = {.lex_state = 52}, - [1096] = {.lex_state = 52}, + [1070] = {.lex_state = 56}, + [1071] = {.lex_state = 56}, + [1072] = {.lex_state = 121}, + [1073] = {.lex_state = 121}, + [1074] = {.lex_state = 121}, + [1075] = {.lex_state = 121}, + [1076] = {.lex_state = 121}, + [1077] = {.lex_state = 121}, + [1078] = {.lex_state = 121}, + [1079] = {.lex_state = 121}, + [1080] = {.lex_state = 121}, + [1081] = {.lex_state = 121}, + [1082] = {.lex_state = 121}, + [1083] = {.lex_state = 121}, + [1084] = {.lex_state = 121}, + [1085] = {.lex_state = 121}, + [1086] = {.lex_state = 55}, + [1087] = {.lex_state = 121}, + [1088] = {.lex_state = 121}, + [1089] = {.lex_state = 121}, + [1090] = {.lex_state = 121}, + [1091] = {.lex_state = 55}, + [1092] = {.lex_state = 55}, + [1093] = {.lex_state = 55}, + [1094] = {.lex_state = 55}, + [1095] = {.lex_state = 55}, + [1096] = {.lex_state = 55}, [1097] = {.lex_state = 55}, - [1098] = {.lex_state = 55}, - [1099] = {.lex_state = 52}, - [1100] = {.lex_state = 52}, + [1098] = {.lex_state = 53}, + [1099] = {.lex_state = 53}, + [1100] = {.lex_state = 55}, [1101] = {.lex_state = 55}, [1102] = {.lex_state = 55}, - [1103] = {.lex_state = 55}, - [1104] = {.lex_state = 55}, - [1105] = {.lex_state = 55}, + [1103] = {.lex_state = 53}, + [1104] = {.lex_state = 53}, + [1105] = {.lex_state = 53}, [1106] = {.lex_state = 55}, - [1107] = {.lex_state = 55}, - [1108] = {.lex_state = 55}, + [1107] = {.lex_state = 53}, + [1108] = {.lex_state = 53}, [1109] = {.lex_state = 55}, [1110] = {.lex_state = 55}, - [1111] = {.lex_state = 55}, - [1112] = {.lex_state = 55}, - [1113] = {.lex_state = 55}, - [1114] = {.lex_state = 55}, - [1115] = {.lex_state = 55}, + [1111] = {.lex_state = 53}, + [1112] = {.lex_state = 53}, + [1113] = {.lex_state = 53}, + [1114] = {.lex_state = 53}, + [1115] = {.lex_state = 53}, [1116] = {.lex_state = 55}, - [1117] = {.lex_state = 55}, + [1117] = {.lex_state = 53}, [1118] = {.lex_state = 55}, [1119] = {.lex_state = 55}, [1120] = {.lex_state = 55}, @@ -10765,11 +11148,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1122] = {.lex_state = 55}, [1123] = {.lex_state = 55}, [1124] = {.lex_state = 55}, - [1125] = {.lex_state = 56}, + [1125] = {.lex_state = 55}, [1126] = {.lex_state = 55}, [1127] = {.lex_state = 55}, [1128] = {.lex_state = 55}, - [1129] = {.lex_state = 51}, + [1129] = {.lex_state = 55}, [1130] = {.lex_state = 55}, [1131] = {.lex_state = 55}, [1132] = {.lex_state = 55}, @@ -10778,130 +11161,130 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1135] = {.lex_state = 55}, [1136] = {.lex_state = 55}, [1137] = {.lex_state = 55}, - [1138] = {.lex_state = 55}, + [1138] = {.lex_state = 52}, [1139] = {.lex_state = 55}, - [1140] = {.lex_state = 51}, + [1140] = {.lex_state = 55}, [1141] = {.lex_state = 55}, [1142] = {.lex_state = 55}, - [1143] = {.lex_state = 55}, - [1144] = {.lex_state = 56}, + [1143] = {.lex_state = 52}, + [1144] = {.lex_state = 52}, [1145] = {.lex_state = 55}, - [1146] = {.lex_state = 51}, - [1147] = {.lex_state = 56}, - [1148] = {.lex_state = 55}, - [1149] = {.lex_state = 25}, - [1150] = {.lex_state = 55}, - [1151] = {.lex_state = 55}, - [1152] = {.lex_state = 55}, - [1153] = {.lex_state = 56}, - [1154] = {.lex_state = 55}, - [1155] = {.lex_state = 55}, - [1156] = {.lex_state = 55}, - [1157] = {.lex_state = 55}, - [1158] = {.lex_state = 55}, - [1159] = {.lex_state = 55}, - [1160] = {.lex_state = 55}, - [1161] = {.lex_state = 55}, - [1162] = {.lex_state = 56}, - [1163] = {.lex_state = 51}, - [1164] = {.lex_state = 56}, - [1165] = {.lex_state = 56}, - [1166] = {.lex_state = 56}, - [1167] = {.lex_state = 56}, - [1168] = {.lex_state = 51}, - [1169] = {.lex_state = 51}, - [1170] = {.lex_state = 56}, - [1171] = {.lex_state = 51}, - [1172] = {.lex_state = 51}, - [1173] = {.lex_state = 51}, - [1174] = {.lex_state = 51}, - [1175] = {.lex_state = 56}, - [1176] = {.lex_state = 56}, - [1177] = {.lex_state = 51}, - [1178] = {.lex_state = 56}, - [1179] = {.lex_state = 51}, - [1180] = {.lex_state = 56}, - [1181] = {.lex_state = 51}, - [1182] = {.lex_state = 51}, - [1183] = {.lex_state = 56}, - [1184] = {.lex_state = 51}, - [1185] = {.lex_state = 56}, - [1186] = {.lex_state = 56}, - [1187] = {.lex_state = 51}, - [1188] = {.lex_state = 56}, - [1189] = {.lex_state = 51}, - [1190] = {.lex_state = 56}, - [1191] = {.lex_state = 51}, - [1192] = {.lex_state = 51}, - [1193] = {.lex_state = 51}, - [1194] = {.lex_state = 51}, - [1195] = {.lex_state = 51}, - [1196] = {.lex_state = 51}, - [1197] = {.lex_state = 56}, - [1198] = {.lex_state = 51}, - [1199] = {.lex_state = 51}, - [1200] = {.lex_state = 51}, - [1201] = {.lex_state = 55}, - [1202] = {.lex_state = 51}, - [1203] = {.lex_state = 51}, - [1204] = {.lex_state = 51}, - [1205] = {.lex_state = 51}, - [1206] = {.lex_state = 51}, - [1207] = {.lex_state = 51}, - [1208] = {.lex_state = 51}, - [1209] = {.lex_state = 51}, - [1210] = {.lex_state = 51}, - [1211] = {.lex_state = 55}, - [1212] = {.lex_state = 51}, - [1213] = {.lex_state = 51}, - [1214] = {.lex_state = 51}, - [1215] = {.lex_state = 51}, - [1216] = {.lex_state = 51}, - [1217] = {.lex_state = 51}, - [1218] = {.lex_state = 51}, - [1219] = {.lex_state = 25}, - [1220] = {.lex_state = 25}, - [1221] = {.lex_state = 25}, - [1222] = {.lex_state = 25}, - [1223] = {.lex_state = 25}, - [1224] = {.lex_state = 25}, - [1225] = {.lex_state = 25}, + [1146] = {.lex_state = 52}, + [1147] = {.lex_state = 52}, + [1148] = {.lex_state = 52}, + [1149] = {.lex_state = 55}, + [1150] = {.lex_state = 52}, + [1151] = {.lex_state = 52}, + [1152] = {.lex_state = 52}, + [1153] = {.lex_state = 52}, + [1154] = {.lex_state = 52}, + [1155] = {.lex_state = 52}, + [1156] = {.lex_state = 52}, + [1157] = {.lex_state = 52}, + [1158] = {.lex_state = 52}, + [1159] = {.lex_state = 52}, + [1160] = {.lex_state = 52}, + [1161] = {.lex_state = 52}, + [1162] = {.lex_state = 52}, + [1163] = {.lex_state = 52}, + [1164] = {.lex_state = 52}, + [1165] = {.lex_state = 52}, + [1166] = {.lex_state = 52}, + [1167] = {.lex_state = 52}, + [1168] = {.lex_state = 52}, + [1169] = {.lex_state = 52}, + [1170] = {.lex_state = 52}, + [1171] = {.lex_state = 52}, + [1172] = {.lex_state = 52}, + [1173] = {.lex_state = 52}, + [1174] = {.lex_state = 52}, + [1175] = {.lex_state = 52}, + [1176] = {.lex_state = 52}, + [1177] = {.lex_state = 52}, + [1178] = {.lex_state = 52}, + [1179] = {.lex_state = 52}, + [1180] = {.lex_state = 52}, + [1181] = {.lex_state = 52}, + [1182] = {.lex_state = 52}, + [1183] = {.lex_state = 52}, + [1184] = {.lex_state = 52}, + [1185] = {.lex_state = 52}, + [1186] = {.lex_state = 52}, + [1187] = {.lex_state = 52}, + [1188] = {.lex_state = 52}, + [1189] = {.lex_state = 52}, + [1190] = {.lex_state = 52}, + [1191] = {.lex_state = 52}, + [1192] = {.lex_state = 52}, + [1193] = {.lex_state = 52}, + [1194] = {.lex_state = 52}, + [1195] = {.lex_state = 52}, + [1196] = {.lex_state = 52}, + [1197] = {.lex_state = 52}, + [1198] = {.lex_state = 52}, + [1199] = {.lex_state = 52}, + [1200] = {.lex_state = 52}, + [1201] = {.lex_state = 52}, + [1202] = {.lex_state = 52}, + [1203] = {.lex_state = 52}, + [1204] = {.lex_state = 52}, + [1205] = {.lex_state = 52}, + [1206] = {.lex_state = 52}, + [1207] = {.lex_state = 52}, + [1208] = {.lex_state = 52}, + [1209] = {.lex_state = 52}, + [1210] = {.lex_state = 52}, + [1211] = {.lex_state = 52}, + [1212] = {.lex_state = 52}, + [1213] = {.lex_state = 52}, + [1214] = {.lex_state = 52}, + [1215] = {.lex_state = 52}, + [1216] = {.lex_state = 52}, + [1217] = {.lex_state = 52}, + [1218] = {.lex_state = 52}, + [1219] = {.lex_state = 52}, + [1220] = {.lex_state = 55}, + [1221] = {.lex_state = 55}, + [1222] = {.lex_state = 55}, + [1223] = {.lex_state = 52}, + [1224] = {.lex_state = 55}, + [1225] = {.lex_state = 52}, [1226] = {.lex_state = 55}, [1227] = {.lex_state = 55}, - [1228] = {.lex_state = 25}, - [1229] = {.lex_state = 25}, - [1230] = {.lex_state = 25}, + [1228] = {.lex_state = 55}, + [1229] = {.lex_state = 55}, + [1230] = {.lex_state = 55}, [1231] = {.lex_state = 55}, - [1232] = {.lex_state = 56}, - [1233] = {.lex_state = 25}, - [1234] = {.lex_state = 25}, - [1235] = {.lex_state = 25}, - [1236] = {.lex_state = 25}, - [1237] = {.lex_state = 25}, - [1238] = {.lex_state = 25}, + [1232] = {.lex_state = 55}, + [1233] = {.lex_state = 55}, + [1234] = {.lex_state = 55}, + [1235] = {.lex_state = 55}, + [1236] = {.lex_state = 55}, + [1237] = {.lex_state = 55}, + [1238] = {.lex_state = 55}, [1239] = {.lex_state = 55}, - [1240] = {.lex_state = 25}, + [1240] = {.lex_state = 55}, [1241] = {.lex_state = 55}, - [1242] = {.lex_state = 25}, - [1243] = {.lex_state = 25}, - [1244] = {.lex_state = 25}, - [1245] = {.lex_state = 25}, - [1246] = {.lex_state = 25}, - [1247] = {.lex_state = 25}, - [1248] = {.lex_state = 25}, + [1242] = {.lex_state = 55}, + [1243] = {.lex_state = 55}, + [1244] = {.lex_state = 55}, + [1245] = {.lex_state = 55}, + [1246] = {.lex_state = 55}, + [1247] = {.lex_state = 55}, + [1248] = {.lex_state = 55}, [1249] = {.lex_state = 55}, [1250] = {.lex_state = 55}, - [1251] = {.lex_state = 25}, - [1252] = {.lex_state = 25}, - [1253] = {.lex_state = 25}, - [1254] = {.lex_state = 25}, - [1255] = {.lex_state = 25}, - [1256] = {.lex_state = 25}, - [1257] = {.lex_state = 56}, + [1251] = {.lex_state = 55}, + [1252] = {.lex_state = 55}, + [1253] = {.lex_state = 55}, + [1254] = {.lex_state = 55}, + [1255] = {.lex_state = 55}, + [1256] = {.lex_state = 55}, + [1257] = {.lex_state = 55}, [1258] = {.lex_state = 55}, - [1259] = {.lex_state = 25}, - [1260] = {.lex_state = 25}, - [1261] = {.lex_state = 25}, + [1259] = {.lex_state = 55}, + [1260] = {.lex_state = 55}, + [1261] = {.lex_state = 55}, [1262] = {.lex_state = 55}, [1263] = {.lex_state = 55}, [1264] = {.lex_state = 55}, @@ -10910,18 +11293,18 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1267] = {.lex_state = 55}, [1268] = {.lex_state = 55}, [1269] = {.lex_state = 55}, - [1270] = {.lex_state = 55}, + [1270] = {.lex_state = 56}, [1271] = {.lex_state = 55}, [1272] = {.lex_state = 55}, [1273] = {.lex_state = 55}, [1274] = {.lex_state = 55}, - [1275] = {.lex_state = 55}, - [1276] = {.lex_state = 55}, - [1277] = {.lex_state = 55}, - [1278] = {.lex_state = 55}, + [1275] = {.lex_state = 51}, + [1276] = {.lex_state = 56}, + [1277] = {.lex_state = 56}, + [1278] = {.lex_state = 51}, [1279] = {.lex_state = 55}, [1280] = {.lex_state = 55}, - [1281] = {.lex_state = 55}, + [1281] = {.lex_state = 56}, [1282] = {.lex_state = 55}, [1283] = {.lex_state = 55}, [1284] = {.lex_state = 55}, @@ -10930,782 +11313,1033 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1287] = {.lex_state = 55}, [1288] = {.lex_state = 55}, [1289] = {.lex_state = 55}, - [1290] = {.lex_state = 55}, - [1291] = {.lex_state = 55}, - [1292] = {.lex_state = 53}, - [1293] = {.lex_state = 53}, - [1294] = {.lex_state = 53}, - [1295] = {.lex_state = 53}, + [1290] = {.lex_state = 25}, + [1291] = {.lex_state = 51}, + [1292] = {.lex_state = 55}, + [1293] = {.lex_state = 55}, + [1294] = {.lex_state = 55}, + [1295] = {.lex_state = 55}, [1296] = {.lex_state = 55}, - [1297] = {.lex_state = 55}, - [1298] = {.lex_state = 55}, - [1299] = {.lex_state = 55}, - [1300] = {.lex_state = 55}, - [1301] = {.lex_state = 55}, - [1302] = {.lex_state = 55}, - [1303] = {.lex_state = 55}, - [1304] = {.lex_state = 55}, - [1305] = {.lex_state = 55}, - [1306] = {.lex_state = 55}, - [1307] = {.lex_state = 55}, - [1308] = {.lex_state = 55}, - [1309] = {.lex_state = 59}, - [1310] = {.lex_state = 55}, - [1311] = {.lex_state = 59}, - [1312] = {.lex_state = 55}, - [1313] = {.lex_state = 55}, - [1314] = {.lex_state = 55}, - [1315] = {.lex_state = 55}, - [1316] = {.lex_state = 55}, - [1317] = {.lex_state = 55}, - [1318] = {.lex_state = 55}, - [1319] = {.lex_state = 55}, - [1320] = {.lex_state = 55}, - [1321] = {.lex_state = 55}, - [1322] = {.lex_state = 55}, - [1323] = {.lex_state = 55}, - [1324] = {.lex_state = 55}, - [1325] = {.lex_state = 55}, - [1326] = {.lex_state = 55}, - [1327] = {.lex_state = 55}, - [1328] = {.lex_state = 55}, - [1329] = {.lex_state = 55}, - [1330] = {.lex_state = 55}, - [1331] = {.lex_state = 55}, - [1332] = {.lex_state = 55}, - [1333] = {.lex_state = 55}, + [1297] = {.lex_state = 51}, + [1298] = {.lex_state = 51}, + [1299] = {.lex_state = 51}, + [1300] = {.lex_state = 51}, + [1301] = {.lex_state = 51}, + [1302] = {.lex_state = 51}, + [1303] = {.lex_state = 51}, + [1304] = {.lex_state = 51}, + [1305] = {.lex_state = 51}, + [1306] = {.lex_state = 51}, + [1307] = {.lex_state = 56}, + [1308] = {.lex_state = 56}, + [1309] = {.lex_state = 51}, + [1310] = {.lex_state = 51}, + [1311] = {.lex_state = 51}, + [1312] = {.lex_state = 51}, + [1313] = {.lex_state = 56}, + [1314] = {.lex_state = 51}, + [1315] = {.lex_state = 51}, + [1316] = {.lex_state = 51}, + [1317] = {.lex_state = 51}, + [1318] = {.lex_state = 51}, + [1319] = {.lex_state = 56}, + [1320] = {.lex_state = 51}, + [1321] = {.lex_state = 51}, + [1322] = {.lex_state = 51}, + [1323] = {.lex_state = 51}, + [1324] = {.lex_state = 51}, + [1325] = {.lex_state = 51}, + [1326] = {.lex_state = 51}, + [1327] = {.lex_state = 51}, + [1328] = {.lex_state = 56}, + [1329] = {.lex_state = 56}, + [1330] = {.lex_state = 51}, + [1331] = {.lex_state = 56}, + [1332] = {.lex_state = 51}, + [1333] = {.lex_state = 51}, [1334] = {.lex_state = 55}, - [1335] = {.lex_state = 55}, - [1336] = {.lex_state = 55}, - [1337] = {.lex_state = 55}, - [1338] = {.lex_state = 55}, - [1339] = {.lex_state = 53}, - [1340] = {.lex_state = 53}, - [1341] = {.lex_state = 53}, - [1342] = {.lex_state = 55}, + [1335] = {.lex_state = 51}, + [1336] = {.lex_state = 56}, + [1337] = {.lex_state = 51}, + [1338] = {.lex_state = 56}, + [1339] = {.lex_state = 51}, + [1340] = {.lex_state = 51}, + [1341] = {.lex_state = 56}, + [1342] = {.lex_state = 51}, [1343] = {.lex_state = 55}, - [1344] = {.lex_state = 53}, - [1345] = {.lex_state = 53}, - [1346] = {.lex_state = 55}, - [1347] = {.lex_state = 59}, - [1348] = {.lex_state = 53}, - [1349] = {.lex_state = 53}, - [1350] = {.lex_state = 53}, - [1351] = {.lex_state = 55}, - [1352] = {.lex_state = 53}, - [1353] = {.lex_state = 53}, - [1354] = {.lex_state = 55}, - [1355] = {.lex_state = 53}, - [1356] = {.lex_state = 53}, - [1357] = {.lex_state = 55}, - [1358] = {.lex_state = 53}, - [1359] = {.lex_state = 55}, - [1360] = {.lex_state = 53}, - [1361] = {.lex_state = 52}, - [1362] = {.lex_state = 55}, - [1363] = {.lex_state = 55}, - [1364] = {.lex_state = 0}, - [1365] = {.lex_state = 55}, - [1366] = {.lex_state = 121}, - [1367] = {.lex_state = 55}, - [1368] = {.lex_state = 55}, - [1369] = {.lex_state = 55}, - [1370] = {.lex_state = 55}, - [1371] = {.lex_state = 55}, - [1372] = {.lex_state = 55}, - [1373] = {.lex_state = 0}, - [1374] = {.lex_state = 55}, - [1375] = {.lex_state = 55}, - [1376] = {.lex_state = 55}, - [1377] = {.lex_state = 55}, - [1378] = {.lex_state = 55}, - [1379] = {.lex_state = 55}, - [1380] = {.lex_state = 55}, - [1381] = {.lex_state = 55}, + [1344] = {.lex_state = 51}, + [1345] = {.lex_state = 56}, + [1346] = {.lex_state = 51}, + [1347] = {.lex_state = 51}, + [1348] = {.lex_state = 51}, + [1349] = {.lex_state = 56}, + [1350] = {.lex_state = 56}, + [1351] = {.lex_state = 56}, + [1352] = {.lex_state = 56}, + [1353] = {.lex_state = 56}, + [1354] = {.lex_state = 25}, + [1355] = {.lex_state = 25}, + [1356] = {.lex_state = 25}, + [1357] = {.lex_state = 25}, + [1358] = {.lex_state = 25}, + [1359] = {.lex_state = 25}, + [1360] = {.lex_state = 25}, + [1361] = {.lex_state = 25}, + [1362] = {.lex_state = 25}, + [1363] = {.lex_state = 25}, + [1364] = {.lex_state = 56}, + [1365] = {.lex_state = 25}, + [1366] = {.lex_state = 25}, + [1367] = {.lex_state = 25}, + [1368] = {.lex_state = 25}, + [1369] = {.lex_state = 25}, + [1370] = {.lex_state = 25}, + [1371] = {.lex_state = 25}, + [1372] = {.lex_state = 25}, + [1373] = {.lex_state = 25}, + [1374] = {.lex_state = 25}, + [1375] = {.lex_state = 25}, + [1376] = {.lex_state = 25}, + [1377] = {.lex_state = 25}, + [1378] = {.lex_state = 25}, + [1379] = {.lex_state = 25}, + [1380] = {.lex_state = 25}, + [1381] = {.lex_state = 25}, [1382] = {.lex_state = 55}, - [1383] = {.lex_state = 55}, - [1384] = {.lex_state = 55}, - [1385] = {.lex_state = 121}, + [1383] = {.lex_state = 25}, + [1384] = {.lex_state = 25}, + [1385] = {.lex_state = 25}, [1386] = {.lex_state = 55}, - [1387] = {.lex_state = 55}, - [1388] = {.lex_state = 121}, - [1389] = {.lex_state = 55}, - [1390] = {.lex_state = 121}, + [1387] = {.lex_state = 25}, + [1388] = {.lex_state = 25}, + [1389] = {.lex_state = 56}, + [1390] = {.lex_state = 25}, [1391] = {.lex_state = 55}, [1392] = {.lex_state = 55}, [1393] = {.lex_state = 55}, [1394] = {.lex_state = 55}, [1395] = {.lex_state = 55}, [1396] = {.lex_state = 55}, - [1397] = {.lex_state = 121}, - [1398] = {.lex_state = 121}, - [1399] = {.lex_state = 121}, - [1400] = {.lex_state = 121}, + [1397] = {.lex_state = 55}, + [1398] = {.lex_state = 55}, + [1399] = {.lex_state = 55}, + [1400] = {.lex_state = 55}, [1401] = {.lex_state = 55}, [1402] = {.lex_state = 55}, - [1403] = {.lex_state = 57}, - [1404] = {.lex_state = 121}, - [1405] = {.lex_state = 121}, + [1403] = {.lex_state = 55}, + [1404] = {.lex_state = 55}, + [1405] = {.lex_state = 55}, [1406] = {.lex_state = 55}, - [1407] = {.lex_state = 121}, - [1408] = {.lex_state = 52}, + [1407] = {.lex_state = 55}, + [1408] = {.lex_state = 55}, [1409] = {.lex_state = 55}, - [1410] = {.lex_state = 52}, - [1411] = {.lex_state = 57}, - [1412] = {.lex_state = 57}, - [1413] = {.lex_state = 121}, + [1410] = {.lex_state = 55}, + [1411] = {.lex_state = 55}, + [1412] = {.lex_state = 55}, + [1413] = {.lex_state = 55}, [1414] = {.lex_state = 55}, - [1415] = {.lex_state = 57}, - [1416] = {.lex_state = 121}, - [1417] = {.lex_state = 52}, - [1418] = {.lex_state = 0}, - [1419] = {.lex_state = 121}, - [1420] = {.lex_state = 121}, - [1421] = {.lex_state = 121}, - [1422] = {.lex_state = 121}, - [1423] = {.lex_state = 53}, - [1424] = {.lex_state = 53}, - [1425] = {.lex_state = 121}, - [1426] = {.lex_state = 121}, - [1427] = {.lex_state = 121}, - [1428] = {.lex_state = 121}, - [1429] = {.lex_state = 53}, - [1430] = {.lex_state = 121}, - [1431] = {.lex_state = 121}, - [1432] = {.lex_state = 0}, - [1433] = {.lex_state = 121}, - [1434] = {.lex_state = 121}, - [1435] = {.lex_state = 121}, - [1436] = {.lex_state = 121}, - [1437] = {.lex_state = 121}, - [1438] = {.lex_state = 121}, - [1439] = {.lex_state = 53}, - [1440] = {.lex_state = 121}, - [1441] = {.lex_state = 0}, - [1442] = {.lex_state = 0}, - [1443] = {.lex_state = 121}, - [1444] = {.lex_state = 121}, - [1445] = {.lex_state = 121}, + [1415] = {.lex_state = 55}, + [1416] = {.lex_state = 55}, + [1417] = {.lex_state = 55}, + [1418] = {.lex_state = 55}, + [1419] = {.lex_state = 55}, + [1420] = {.lex_state = 55}, + [1421] = {.lex_state = 55}, + [1422] = {.lex_state = 55}, + [1423] = {.lex_state = 55}, + [1424] = {.lex_state = 55}, + [1425] = {.lex_state = 55}, + [1426] = {.lex_state = 55}, + [1427] = {.lex_state = 55}, + [1428] = {.lex_state = 55}, + [1429] = {.lex_state = 55}, + [1430] = {.lex_state = 55}, + [1431] = {.lex_state = 55}, + [1432] = {.lex_state = 55}, + [1433] = {.lex_state = 53}, + [1434] = {.lex_state = 53}, + [1435] = {.lex_state = 53}, + [1436] = {.lex_state = 55}, + [1437] = {.lex_state = 55}, + [1438] = {.lex_state = 55}, + [1439] = {.lex_state = 55}, + [1440] = {.lex_state = 55}, + [1441] = {.lex_state = 55}, + [1442] = {.lex_state = 53}, + [1443] = {.lex_state = 55}, + [1444] = {.lex_state = 55}, + [1445] = {.lex_state = 55}, [1446] = {.lex_state = 55}, - [1447] = {.lex_state = 59}, - [1448] = {.lex_state = 59}, + [1447] = {.lex_state = 55}, + [1448] = {.lex_state = 55}, [1449] = {.lex_state = 55}, - [1450] = {.lex_state = 59}, + [1450] = {.lex_state = 55}, [1451] = {.lex_state = 55}, - [1452] = {.lex_state = 0}, + [1452] = {.lex_state = 55}, [1453] = {.lex_state = 55}, [1454] = {.lex_state = 55}, [1455] = {.lex_state = 55}, - [1456] = {.lex_state = 59}, - [1457] = {.lex_state = 59}, + [1456] = {.lex_state = 55}, + [1457] = {.lex_state = 55}, [1458] = {.lex_state = 55}, - [1459] = {.lex_state = 0}, + [1459] = {.lex_state = 55}, [1460] = {.lex_state = 55}, - [1461] = {.lex_state = 59}, - [1462] = {.lex_state = 121}, - [1463] = {.lex_state = 59}, + [1461] = {.lex_state = 55}, + [1462] = {.lex_state = 55}, + [1463] = {.lex_state = 55}, [1464] = {.lex_state = 55}, - [1465] = {.lex_state = 59}, - [1466] = {.lex_state = 121}, + [1465] = {.lex_state = 55}, + [1466] = {.lex_state = 55}, [1467] = {.lex_state = 55}, [1468] = {.lex_state = 55}, - [1469] = {.lex_state = 53}, - [1470] = {.lex_state = 121}, - [1471] = {.lex_state = 0}, + [1469] = {.lex_state = 55}, + [1470] = {.lex_state = 55}, + [1471] = {.lex_state = 59}, [1472] = {.lex_state = 55}, - [1473] = {.lex_state = 121}, - [1474] = {.lex_state = 59}, - [1475] = {.lex_state = 121}, - [1476] = {.lex_state = 121}, - [1477] = {.lex_state = 59}, - [1478] = {.lex_state = 59}, - [1479] = {.lex_state = 121}, - [1480] = {.lex_state = 121}, + [1473] = {.lex_state = 55}, + [1474] = {.lex_state = 55}, + [1475] = {.lex_state = 55}, + [1476] = {.lex_state = 55}, + [1477] = {.lex_state = 55}, + [1478] = {.lex_state = 55}, + [1479] = {.lex_state = 55}, + [1480] = {.lex_state = 55}, [1481] = {.lex_state = 55}, [1482] = {.lex_state = 55}, [1483] = {.lex_state = 55}, - [1484] = {.lex_state = 121}, - [1485] = {.lex_state = 121}, - [1486] = {.lex_state = 30}, - [1487] = {.lex_state = 121}, - [1488] = {.lex_state = 30}, - [1489] = {.lex_state = 121}, + [1484] = {.lex_state = 55}, + [1485] = {.lex_state = 55}, + [1486] = {.lex_state = 55}, + [1487] = {.lex_state = 55}, + [1488] = {.lex_state = 55}, + [1489] = {.lex_state = 55}, [1490] = {.lex_state = 55}, - [1491] = {.lex_state = 55}, - [1492] = {.lex_state = 121}, - [1493] = {.lex_state = 121}, - [1494] = {.lex_state = 121}, - [1495] = {.lex_state = 30}, - [1496] = {.lex_state = 121}, + [1491] = {.lex_state = 59}, + [1492] = {.lex_state = 55}, + [1493] = {.lex_state = 55}, + [1494] = {.lex_state = 55}, + [1495] = {.lex_state = 55}, + [1496] = {.lex_state = 55}, [1497] = {.lex_state = 55}, - [1498] = {.lex_state = 53}, - [1499] = {.lex_state = 30}, - [1500] = {.lex_state = 30}, - [1501] = {.lex_state = 30}, - [1502] = {.lex_state = 121}, - [1503] = {.lex_state = 48}, - [1504] = {.lex_state = 121}, - [1505] = {.lex_state = 121}, - [1506] = {.lex_state = 121}, + [1498] = {.lex_state = 55}, + [1499] = {.lex_state = 55}, + [1500] = {.lex_state = 55}, + [1501] = {.lex_state = 55}, + [1502] = {.lex_state = 53}, + [1503] = {.lex_state = 55}, + [1504] = {.lex_state = 55}, + [1505] = {.lex_state = 53}, + [1506] = {.lex_state = 53}, [1507] = {.lex_state = 55}, - [1508] = {.lex_state = 121}, - [1509] = {.lex_state = 121}, - [1510] = {.lex_state = 30}, - [1511] = {.lex_state = 37}, + [1508] = {.lex_state = 52}, + [1509] = {.lex_state = 55}, + [1510] = {.lex_state = 53}, + [1511] = {.lex_state = 55}, [1512] = {.lex_state = 53}, - [1513] = {.lex_state = 39}, - [1514] = {.lex_state = 55}, - [1515] = {.lex_state = 121}, - [1516] = {.lex_state = 53}, + [1513] = {.lex_state = 55}, + [1514] = {.lex_state = 53}, + [1515] = {.lex_state = 53}, + [1516] = {.lex_state = 55}, [1517] = {.lex_state = 55}, - [1518] = {.lex_state = 0}, - [1519] = {.lex_state = 0}, - [1520] = {.lex_state = 53}, - [1521] = {.lex_state = 39}, - [1522] = {.lex_state = 0}, + [1518] = {.lex_state = 55}, + [1519] = {.lex_state = 55}, + [1520] = {.lex_state = 55}, + [1521] = {.lex_state = 53}, + [1522] = {.lex_state = 53}, [1523] = {.lex_state = 55}, - [1524] = {.lex_state = 0}, - [1525] = {.lex_state = 39}, - [1526] = {.lex_state = 39}, - [1527] = {.lex_state = 39}, - [1528] = {.lex_state = 48}, - [1529] = {.lex_state = 0}, - [1530] = {.lex_state = 0}, + [1524] = {.lex_state = 55}, + [1525] = {.lex_state = 55}, + [1526] = {.lex_state = 55}, + [1527] = {.lex_state = 55}, + [1528] = {.lex_state = 55}, + [1529] = {.lex_state = 55}, + [1530] = {.lex_state = 55}, [1531] = {.lex_state = 55}, - [1532] = {.lex_state = 39}, - [1533] = {.lex_state = 53}, - [1534] = {.lex_state = 55}, - [1535] = {.lex_state = 37}, - [1536] = {.lex_state = 55}, - [1537] = {.lex_state = 37}, - [1538] = {.lex_state = 0}, - [1539] = {.lex_state = 37}, - [1540] = {.lex_state = 0}, + [1532] = {.lex_state = 55}, + [1533] = {.lex_state = 55}, + [1534] = {.lex_state = 53}, + [1535] = {.lex_state = 55}, + [1536] = {.lex_state = 53}, + [1537] = {.lex_state = 55}, + [1538] = {.lex_state = 59}, + [1539] = {.lex_state = 53}, + [1540] = {.lex_state = 55}, [1541] = {.lex_state = 55}, - [1542] = {.lex_state = 121}, - [1543] = {.lex_state = 39}, - [1544] = {.lex_state = 0}, - [1545] = {.lex_state = 0}, - [1546] = {.lex_state = 0}, - [1547] = {.lex_state = 0}, - [1548] = {.lex_state = 0}, - [1549] = {.lex_state = 0}, - [1550] = {.lex_state = 31}, - [1551] = {.lex_state = 0}, - [1552] = {.lex_state = 0}, - [1553] = {.lex_state = 0}, - [1554] = {.lex_state = 0}, - [1555] = {.lex_state = 0}, - [1556] = {.lex_state = 0}, + [1542] = {.lex_state = 55}, + [1543] = {.lex_state = 55}, + [1544] = {.lex_state = 55}, + [1545] = {.lex_state = 53}, + [1546] = {.lex_state = 55}, + [1547] = {.lex_state = 55}, + [1548] = {.lex_state = 55}, + [1549] = {.lex_state = 55}, + [1550] = {.lex_state = 55}, + [1551] = {.lex_state = 53}, + [1552] = {.lex_state = 55}, + [1553] = {.lex_state = 55}, + [1554] = {.lex_state = 55}, + [1555] = {.lex_state = 121}, + [1556] = {.lex_state = 121}, [1557] = {.lex_state = 0}, - [1558] = {.lex_state = 0}, - [1559] = {.lex_state = 0}, - [1560] = {.lex_state = 0}, - [1561] = {.lex_state = 0}, - [1562] = {.lex_state = 0}, - [1563] = {.lex_state = 0}, - [1564] = {.lex_state = 55}, - [1565] = {.lex_state = 37}, - [1566] = {.lex_state = 0}, - [1567] = {.lex_state = 37}, - [1568] = {.lex_state = 0}, - [1569] = {.lex_state = 0}, - [1570] = {.lex_state = 0}, - [1571] = {.lex_state = 0}, - [1572] = {.lex_state = 0}, - [1573] = {.lex_state = 32}, - [1574] = {.lex_state = 0}, - [1575] = {.lex_state = 48}, - [1576] = {.lex_state = 0}, - [1577] = {.lex_state = 0}, - [1578] = {.lex_state = 0}, - [1579] = {.lex_state = 0}, - [1580] = {.lex_state = 0}, - [1581] = {.lex_state = 33}, - [1582] = {.lex_state = 0}, - [1583] = {.lex_state = 31}, - [1584] = {.lex_state = 37}, - [1585] = {.lex_state = 48}, - [1586] = {.lex_state = 31}, - [1587] = {.lex_state = 0}, - [1588] = {.lex_state = 0}, - [1589] = {.lex_state = 31}, + [1558] = {.lex_state = 55}, + [1559] = {.lex_state = 55}, + [1560] = {.lex_state = 55}, + [1561] = {.lex_state = 121}, + [1562] = {.lex_state = 55}, + [1563] = {.lex_state = 55}, + [1564] = {.lex_state = 0}, + [1565] = {.lex_state = 55}, + [1566] = {.lex_state = 55}, + [1567] = {.lex_state = 55}, + [1568] = {.lex_state = 121}, + [1569] = {.lex_state = 55}, + [1570] = {.lex_state = 55}, + [1571] = {.lex_state = 57}, + [1572] = {.lex_state = 52}, + [1573] = {.lex_state = 57}, + [1574] = {.lex_state = 52}, + [1575] = {.lex_state = 57}, + [1576] = {.lex_state = 121}, + [1577] = {.lex_state = 52}, + [1578] = {.lex_state = 121}, + [1579] = {.lex_state = 121}, + [1580] = {.lex_state = 121}, + [1581] = {.lex_state = 55}, + [1582] = {.lex_state = 121}, + [1583] = {.lex_state = 121}, + [1584] = {.lex_state = 57}, + [1585] = {.lex_state = 121}, + [1586] = {.lex_state = 121}, + [1587] = {.lex_state = 121}, + [1588] = {.lex_state = 121}, + [1589] = {.lex_state = 121}, [1590] = {.lex_state = 0}, - [1591] = {.lex_state = 0}, - [1592] = {.lex_state = 0}, - [1593] = {.lex_state = 0}, - [1594] = {.lex_state = 0}, - [1595] = {.lex_state = 0}, - [1596] = {.lex_state = 0}, - [1597] = {.lex_state = 55}, - [1598] = {.lex_state = 31}, - [1599] = {.lex_state = 0}, - [1600] = {.lex_state = 0}, - [1601] = {.lex_state = 31}, - [1602] = {.lex_state = 0}, - [1603] = {.lex_state = 0}, - [1604] = {.lex_state = 0}, - [1605] = {.lex_state = 0}, - [1606] = {.lex_state = 0}, - [1607] = {.lex_state = 33}, - [1608] = {.lex_state = 0}, - [1609] = {.lex_state = 0}, - [1610] = {.lex_state = 0}, - [1611] = {.lex_state = 31}, - [1612] = {.lex_state = 48}, - [1613] = {.lex_state = 0}, - [1614] = {.lex_state = 31}, - [1615] = {.lex_state = 0}, - [1616] = {.lex_state = 0}, - [1617] = {.lex_state = 0}, - [1618] = {.lex_state = 0}, - [1619] = {.lex_state = 32}, - [1620] = {.lex_state = 0}, - [1621] = {.lex_state = 0}, - [1622] = {.lex_state = 0}, + [1591] = {.lex_state = 121}, + [1592] = {.lex_state = 121}, + [1593] = {.lex_state = 121}, + [1594] = {.lex_state = 121}, + [1595] = {.lex_state = 121}, + [1596] = {.lex_state = 121}, + [1597] = {.lex_state = 121}, + [1598] = {.lex_state = 0}, + [1599] = {.lex_state = 121}, + [1600] = {.lex_state = 121}, + [1601] = {.lex_state = 121}, + [1602] = {.lex_state = 121}, + [1603] = {.lex_state = 121}, + [1604] = {.lex_state = 121}, + [1605] = {.lex_state = 53}, + [1606] = {.lex_state = 121}, + [1607] = {.lex_state = 121}, + [1608] = {.lex_state = 121}, + [1609] = {.lex_state = 121}, + [1610] = {.lex_state = 121}, + [1611] = {.lex_state = 121}, + [1612] = {.lex_state = 121}, + [1613] = {.lex_state = 121}, + [1614] = {.lex_state = 53}, + [1615] = {.lex_state = 53}, + [1616] = {.lex_state = 121}, + [1617] = {.lex_state = 121}, + [1618] = {.lex_state = 121}, + [1619] = {.lex_state = 121}, + [1620] = {.lex_state = 121}, + [1621] = {.lex_state = 121}, + [1622] = {.lex_state = 121}, [1623] = {.lex_state = 0}, - [1624] = {.lex_state = 0}, - [1625] = {.lex_state = 0}, - [1626] = {.lex_state = 0}, - [1627] = {.lex_state = 55}, - [1628] = {.lex_state = 31}, - [1629] = {.lex_state = 0}, - [1630] = {.lex_state = 48}, - [1631] = {.lex_state = 0}, - [1632] = {.lex_state = 0}, - [1633] = {.lex_state = 0}, - [1634] = {.lex_state = 31}, - [1635] = {.lex_state = 0}, - [1636] = {.lex_state = 31}, + [1624] = {.lex_state = 121}, + [1625] = {.lex_state = 121}, + [1626] = {.lex_state = 121}, + [1627] = {.lex_state = 0}, + [1628] = {.lex_state = 121}, + [1629] = {.lex_state = 53}, + [1630] = {.lex_state = 121}, + [1631] = {.lex_state = 121}, + [1632] = {.lex_state = 121}, + [1633] = {.lex_state = 121}, + [1634] = {.lex_state = 121}, + [1635] = {.lex_state = 121}, + [1636] = {.lex_state = 121}, [1637] = {.lex_state = 55}, - [1638] = {.lex_state = 0}, - [1639] = {.lex_state = 55}, - [1640] = {.lex_state = 0}, + [1638] = {.lex_state = 121}, + [1639] = {.lex_state = 0}, + [1640] = {.lex_state = 55}, [1641] = {.lex_state = 55}, - [1642] = {.lex_state = 32}, - [1643] = {.lex_state = 0}, - [1644] = {.lex_state = 31}, - [1645] = {.lex_state = 31}, - [1646] = {.lex_state = 0}, - [1647] = {.lex_state = 0}, - [1648] = {.lex_state = 55}, - [1649] = {.lex_state = 0}, - [1650] = {.lex_state = 32}, - [1651] = {.lex_state = 0}, - [1652] = {.lex_state = 0}, - [1653] = {.lex_state = 0}, - [1654] = {.lex_state = 0}, - [1655] = {.lex_state = 0}, - [1656] = {.lex_state = 48}, - [1657] = {.lex_state = 0}, - [1658] = {.lex_state = 0}, - [1659] = {.lex_state = 0}, - [1660] = {.lex_state = 55}, - [1661] = {.lex_state = 0}, - [1662] = {.lex_state = 0}, - [1663] = {.lex_state = 0}, - [1664] = {.lex_state = 33}, - [1665] = {.lex_state = 0}, - [1666] = {.lex_state = 0}, - [1667] = {.lex_state = 0}, - [1668] = {.lex_state = 0}, - [1669] = {.lex_state = 0}, - [1670] = {.lex_state = 0}, - [1671] = {.lex_state = 0}, - [1672] = {.lex_state = 0}, - [1673] = {.lex_state = 0}, - [1674] = {.lex_state = 48}, - [1675] = {.lex_state = 0}, - [1676] = {.lex_state = 0}, - [1677] = {.lex_state = 0}, - [1678] = {.lex_state = 0}, - [1679] = {.lex_state = 31}, - [1680] = {.lex_state = 48}, - [1681] = {.lex_state = 0}, - [1682] = {.lex_state = 0}, - [1683] = {.lex_state = 0}, - [1684] = {.lex_state = 121}, - [1685] = {.lex_state = 121}, - [1686] = {.lex_state = 121}, - [1687] = {.lex_state = 0}, - [1688] = {.lex_state = 0}, + [1642] = {.lex_state = 55}, + [1643] = {.lex_state = 55}, + [1644] = {.lex_state = 59}, + [1645] = {.lex_state = 55}, + [1646] = {.lex_state = 55}, + [1647] = {.lex_state = 55}, + [1648] = {.lex_state = 59}, + [1649] = {.lex_state = 121}, + [1650] = {.lex_state = 59}, + [1651] = {.lex_state = 59}, + [1652] = {.lex_state = 55}, + [1653] = {.lex_state = 55}, + [1654] = {.lex_state = 55}, + [1655] = {.lex_state = 55}, + [1656] = {.lex_state = 0}, + [1657] = {.lex_state = 121}, + [1658] = {.lex_state = 121}, + [1659] = {.lex_state = 55}, + [1660] = {.lex_state = 121}, + [1661] = {.lex_state = 55}, + [1662] = {.lex_state = 121}, + [1663] = {.lex_state = 55}, + [1664] = {.lex_state = 55}, + [1665] = {.lex_state = 59}, + [1666] = {.lex_state = 121}, + [1667] = {.lex_state = 55}, + [1668] = {.lex_state = 121}, + [1669] = {.lex_state = 59}, + [1670] = {.lex_state = 59}, + [1671] = {.lex_state = 55}, + [1672] = {.lex_state = 121}, + [1673] = {.lex_state = 55}, + [1674] = {.lex_state = 59}, + [1675] = {.lex_state = 55}, + [1676] = {.lex_state = 59}, + [1677] = {.lex_state = 53}, + [1678] = {.lex_state = 55}, + [1679] = {.lex_state = 55}, + [1680] = {.lex_state = 59}, + [1681] = {.lex_state = 55}, + [1682] = {.lex_state = 121}, + [1683] = {.lex_state = 121}, + [1684] = {.lex_state = 0}, + [1685] = {.lex_state = 55}, + [1686] = {.lex_state = 59}, + [1687] = {.lex_state = 55}, + [1688] = {.lex_state = 55}, [1689] = {.lex_state = 55}, - [1690] = {.lex_state = 0}, - [1691] = {.lex_state = 31}, - [1692] = {.lex_state = 0}, - [1693] = {.lex_state = 0}, - [1694] = {.lex_state = 121}, - [1695] = {.lex_state = 48}, - [1696] = {.lex_state = 55}, - [1697] = {.lex_state = 0}, - [1698] = {.lex_state = 121}, + [1690] = {.lex_state = 121}, + [1691] = {.lex_state = 121}, + [1692] = {.lex_state = 55}, + [1693] = {.lex_state = 121}, + [1694] = {.lex_state = 55}, + [1695] = {.lex_state = 55}, + [1696] = {.lex_state = 30}, + [1697] = {.lex_state = 121}, + [1698] = {.lex_state = 30}, [1699] = {.lex_state = 121}, - [1700] = {.lex_state = 121}, - [1701] = {.lex_state = 121}, + [1700] = {.lex_state = 30}, + [1701] = {.lex_state = 55}, [1702] = {.lex_state = 121}, - [1703] = {.lex_state = 121}, + [1703] = {.lex_state = 30}, [1704] = {.lex_state = 121}, - [1705] = {.lex_state = 0}, - [1706] = {.lex_state = 0}, - [1707] = {.lex_state = 48}, - [1708] = {.lex_state = 0}, - [1709] = {.lex_state = 0}, + [1705] = {.lex_state = 30}, + [1706] = {.lex_state = 121}, + [1707] = {.lex_state = 55}, + [1708] = {.lex_state = 121}, + [1709] = {.lex_state = 121}, [1710] = {.lex_state = 121}, - [1711] = {.lex_state = 121}, - [1712] = {.lex_state = 121}, - [1713] = {.lex_state = 121}, - [1714] = {.lex_state = 121}, + [1711] = {.lex_state = 30}, + [1712] = {.lex_state = 48}, + [1713] = {.lex_state = 30}, + [1714] = {.lex_state = 53}, [1715] = {.lex_state = 121}, [1716] = {.lex_state = 121}, [1717] = {.lex_state = 121}, - [1718] = {.lex_state = 0}, - [1719] = {.lex_state = 55}, - [1720] = {.lex_state = 121}, - [1721] = {.lex_state = 31}, - [1722] = {.lex_state = 0}, - [1723] = {.lex_state = 0}, - [1724] = {.lex_state = 121}, - [1725] = {.lex_state = 121}, - [1726] = {.lex_state = 121}, + [1718] = {.lex_state = 121}, + [1719] = {.lex_state = 121}, + [1720] = {.lex_state = 0}, + [1721] = {.lex_state = 55}, + [1722] = {.lex_state = 121}, + [1723] = {.lex_state = 55}, + [1724] = {.lex_state = 48}, + [1725] = {.lex_state = 55}, + [1726] = {.lex_state = 0}, [1727] = {.lex_state = 121}, - [1728] = {.lex_state = 55}, - [1729] = {.lex_state = 0}, + [1728] = {.lex_state = 37}, + [1729] = {.lex_state = 53}, [1730] = {.lex_state = 0}, - [1731] = {.lex_state = 0}, - [1732] = {.lex_state = 55}, - [1733] = {.lex_state = 0}, - [1734] = {.lex_state = 121}, - [1735] = {.lex_state = 121}, + [1731] = {.lex_state = 39}, + [1732] = {.lex_state = 53}, + [1733] = {.lex_state = 39}, + [1734] = {.lex_state = 0}, + [1735] = {.lex_state = 39}, [1736] = {.lex_state = 0}, - [1737] = {.lex_state = 121}, + [1737] = {.lex_state = 55}, [1738] = {.lex_state = 0}, - [1739] = {.lex_state = 0}, - [1740] = {.lex_state = 0}, - [1741] = {.lex_state = 48}, - [1742] = {.lex_state = 121}, - [1743] = {.lex_state = 0}, - [1744] = {.lex_state = 0}, - [1745] = {.lex_state = 0}, - [1746] = {.lex_state = 121}, - [1747] = {.lex_state = 121}, + [1739] = {.lex_state = 55}, + [1740] = {.lex_state = 53}, + [1741] = {.lex_state = 0}, + [1742] = {.lex_state = 55}, + [1743] = {.lex_state = 39}, + [1744] = {.lex_state = 37}, + [1745] = {.lex_state = 37}, + [1746] = {.lex_state = 39}, + [1747] = {.lex_state = 0}, [1748] = {.lex_state = 0}, - [1749] = {.lex_state = 121}, - [1750] = {.lex_state = 0}, - [1751] = {.lex_state = 121}, - [1752] = {.lex_state = 121}, - [1753] = {.lex_state = 121}, - [1754] = {.lex_state = 121}, - [1755] = {.lex_state = 121}, - [1756] = {.lex_state = 121}, - [1757] = {.lex_state = 31}, - [1758] = {.lex_state = 55}, + [1749] = {.lex_state = 39}, + [1750] = {.lex_state = 37}, + [1751] = {.lex_state = 39}, + [1752] = {.lex_state = 53}, + [1753] = {.lex_state = 0}, + [1754] = {.lex_state = 0}, + [1755] = {.lex_state = 55}, + [1756] = {.lex_state = 0}, + [1757] = {.lex_state = 0}, + [1758] = {.lex_state = 0}, [1759] = {.lex_state = 0}, [1760] = {.lex_state = 0}, - [1761] = {.lex_state = 55}, - [1762] = {.lex_state = 121}, + [1761] = {.lex_state = 0}, + [1762] = {.lex_state = 0}, [1763] = {.lex_state = 0}, [1764] = {.lex_state = 0}, [1765] = {.lex_state = 0}, - [1766] = {.lex_state = 121}, - [1767] = {.lex_state = 0}, + [1766] = {.lex_state = 0}, + [1767] = {.lex_state = 31}, [1768] = {.lex_state = 0}, - [1769] = {.lex_state = 55}, + [1769] = {.lex_state = 0}, [1770] = {.lex_state = 0}, - [1771] = {.lex_state = 121}, - [1772] = {.lex_state = 121}, - [1773] = {.lex_state = 121}, + [1771] = {.lex_state = 55}, + [1772] = {.lex_state = 0}, + [1773] = {.lex_state = 0}, [1774] = {.lex_state = 0}, - [1775] = {.lex_state = 121}, + [1775] = {.lex_state = 0}, [1776] = {.lex_state = 0}, [1777] = {.lex_state = 0}, - [1778] = {.lex_state = 121}, - [1779] = {.lex_state = 47}, - [1780] = {.lex_state = 55}, - [1781] = {.lex_state = 55}, - [1782] = {.lex_state = 32}, + [1778] = {.lex_state = 0}, + [1779] = {.lex_state = 0}, + [1780] = {.lex_state = 0}, + [1781] = {.lex_state = 0}, + [1782] = {.lex_state = 0}, [1783] = {.lex_state = 0}, - [1784] = {.lex_state = 32}, + [1784] = {.lex_state = 0}, [1785] = {.lex_state = 0}, - [1786] = {.lex_state = 0}, - [1787] = {.lex_state = 47}, - [1788] = {.lex_state = 32}, + [1786] = {.lex_state = 55}, + [1787] = {.lex_state = 0}, + [1788] = {.lex_state = 37}, [1789] = {.lex_state = 0}, - [1790] = {.lex_state = 0}, - [1791] = {.lex_state = 47}, + [1790] = {.lex_state = 32}, + [1791] = {.lex_state = 0}, [1792] = {.lex_state = 0}, [1793] = {.lex_state = 0}, - [1794] = {.lex_state = 47}, + [1794] = {.lex_state = 0}, [1795] = {.lex_state = 0}, [1796] = {.lex_state = 0}, [1797] = {.lex_state = 0}, [1798] = {.lex_state = 0}, - [1799] = {.lex_state = 0}, + [1799] = {.lex_state = 48}, [1800] = {.lex_state = 0}, - [1801] = {.lex_state = 32}, - [1802] = {.lex_state = 55}, - [1803] = {.lex_state = 47}, + [1801] = {.lex_state = 33}, + [1802] = {.lex_state = 31}, + [1803] = {.lex_state = 0}, [1804] = {.lex_state = 0}, - [1805] = {.lex_state = 0}, - [1806] = {.lex_state = 121}, + [1805] = {.lex_state = 55}, + [1806] = {.lex_state = 0}, [1807] = {.lex_state = 0}, - [1808] = {.lex_state = 0}, + [1808] = {.lex_state = 48}, [1809] = {.lex_state = 0}, [1810] = {.lex_state = 0}, - [1811] = {.lex_state = 47}, + [1811] = {.lex_state = 0}, [1812] = {.lex_state = 0}, [1813] = {.lex_state = 0}, [1814] = {.lex_state = 0}, [1815] = {.lex_state = 0}, - [1816] = {.lex_state = 32}, - [1817] = {.lex_state = 47}, - [1818] = {.lex_state = 0}, - [1819] = {.lex_state = 47}, - [1820] = {.lex_state = 47}, - [1821] = {.lex_state = 0}, - [1822] = {.lex_state = 47}, - [1823] = {.lex_state = 47}, - [1824] = {.lex_state = 0}, + [1816] = {.lex_state = 0}, + [1817] = {.lex_state = 0}, + [1818] = {.lex_state = 32}, + [1819] = {.lex_state = 0}, + [1820] = {.lex_state = 0}, + [1821] = {.lex_state = 31}, + [1822] = {.lex_state = 0}, + [1823] = {.lex_state = 0}, + [1824] = {.lex_state = 48}, [1825] = {.lex_state = 0}, - [1826] = {.lex_state = 32}, - [1827] = {.lex_state = 0}, + [1826] = {.lex_state = 48}, + [1827] = {.lex_state = 31}, [1828] = {.lex_state = 0}, - [1829] = {.lex_state = 47}, + [1829] = {.lex_state = 0}, [1830] = {.lex_state = 0}, - [1831] = {.lex_state = 47}, - [1832] = {.lex_state = 47}, - [1833] = {.lex_state = 47}, + [1831] = {.lex_state = 0}, + [1832] = {.lex_state = 0}, + [1833] = {.lex_state = 0}, [1834] = {.lex_state = 0}, - [1835] = {.lex_state = 32}, + [1835] = {.lex_state = 0}, [1836] = {.lex_state = 0}, [1837] = {.lex_state = 0}, - [1838] = {.lex_state = 0}, + [1838] = {.lex_state = 31}, [1839] = {.lex_state = 0}, - [1840] = {.lex_state = 32}, - [1841] = {.lex_state = 121}, - [1842] = {.lex_state = 121}, + [1840] = {.lex_state = 0}, + [1841] = {.lex_state = 0}, + [1842] = {.lex_state = 0}, [1843] = {.lex_state = 0}, [1844] = {.lex_state = 0}, - [1845] = {.lex_state = 32}, + [1845] = {.lex_state = 33}, [1846] = {.lex_state = 0}, - [1847] = {.lex_state = 0}, + [1847] = {.lex_state = 31}, [1848] = {.lex_state = 0}, - [1849] = {.lex_state = 55}, - [1850] = {.lex_state = 47}, - [1851] = {.lex_state = 32}, + [1849] = {.lex_state = 0}, + [1850] = {.lex_state = 0}, + [1851] = {.lex_state = 0}, [1852] = {.lex_state = 0}, [1853] = {.lex_state = 0}, [1854] = {.lex_state = 0}, - [1855] = {.lex_state = 0}, - [1856] = {.lex_state = 32}, - [1857] = {.lex_state = 32}, - [1858] = {.lex_state = 55}, - [1859] = {.lex_state = 121}, - [1860] = {.lex_state = 32}, - [1861] = {.lex_state = 0}, - [1862] = {.lex_state = 0}, + [1855] = {.lex_state = 48}, + [1856] = {.lex_state = 0}, + [1857] = {.lex_state = 0}, + [1858] = {.lex_state = 0}, + [1859] = {.lex_state = 37}, + [1860] = {.lex_state = 0}, + [1861] = {.lex_state = 55}, + [1862] = {.lex_state = 31}, [1863] = {.lex_state = 0}, - [1864] = {.lex_state = 32}, - [1865] = {.lex_state = 32}, - [1866] = {.lex_state = 121}, - [1867] = {.lex_state = 121}, - [1868] = {.lex_state = 55}, - [1869] = {.lex_state = 32}, - [1870] = {.lex_state = 55}, - [1871] = {.lex_state = 47}, - [1872] = {.lex_state = 47}, + [1864] = {.lex_state = 48}, + [1865] = {.lex_state = 0}, + [1866] = {.lex_state = 0}, + [1867] = {.lex_state = 0}, + [1868] = {.lex_state = 0}, + [1869] = {.lex_state = 55}, + [1870] = {.lex_state = 0}, + [1871] = {.lex_state = 31}, + [1872] = {.lex_state = 32}, [1873] = {.lex_state = 0}, - [1874] = {.lex_state = 47}, + [1874] = {.lex_state = 0}, [1875] = {.lex_state = 0}, - [1876] = {.lex_state = 32}, + [1876] = {.lex_state = 55}, [1877] = {.lex_state = 0}, - [1878] = {.lex_state = 32}, - [1879] = {.lex_state = 32}, - [1880] = {.lex_state = 121}, - [1881] = {.lex_state = 55}, - [1882] = {.lex_state = 55}, - [1883] = {.lex_state = 55}, + [1878] = {.lex_state = 31}, + [1879] = {.lex_state = 0}, + [1880] = {.lex_state = 0}, + [1881] = {.lex_state = 0}, + [1882] = {.lex_state = 0}, + [1883] = {.lex_state = 0}, [1884] = {.lex_state = 0}, - [1885] = {.lex_state = 32}, + [1885] = {.lex_state = 0}, [1886] = {.lex_state = 0}, - [1887] = {.lex_state = 47}, + [1887] = {.lex_state = 0}, [1888] = {.lex_state = 0}, - [1889] = {.lex_state = 55}, - [1890] = {.lex_state = 55}, + [1889] = {.lex_state = 0}, + [1890] = {.lex_state = 0}, [1891] = {.lex_state = 0}, - [1892] = {.lex_state = 0}, - [1893] = {.lex_state = 47}, + [1892] = {.lex_state = 31}, + [1893] = {.lex_state = 0}, [1894] = {.lex_state = 0}, [1895] = {.lex_state = 0}, [1896] = {.lex_state = 0}, [1897] = {.lex_state = 0}, [1898] = {.lex_state = 0}, - [1899] = {.lex_state = 121}, - [1900] = {.lex_state = 55}, - [1901] = {.lex_state = 32}, - [1902] = {.lex_state = 47}, - [1903] = {.lex_state = 0}, - [1904] = {.lex_state = 47}, - [1905] = {.lex_state = 47}, + [1899] = {.lex_state = 48}, + [1900] = {.lex_state = 0}, + [1901] = {.lex_state = 0}, + [1902] = {.lex_state = 55}, + [1903] = {.lex_state = 31}, + [1904] = {.lex_state = 0}, + [1905] = {.lex_state = 0}, [1906] = {.lex_state = 0}, - [1907] = {.lex_state = 47}, + [1907] = {.lex_state = 0}, [1908] = {.lex_state = 0}, [1909] = {.lex_state = 0}, - [1910] = {.lex_state = 121}, - [1911] = {.lex_state = 47}, - [1912] = {.lex_state = 47}, - [1913] = {.lex_state = 47}, + [1910] = {.lex_state = 0}, + [1911] = {.lex_state = 0}, + [1912] = {.lex_state = 32}, + [1913] = {.lex_state = 0}, [1914] = {.lex_state = 0}, - [1915] = {.lex_state = 47}, - [1916] = {.lex_state = 47}, + [1915] = {.lex_state = 0}, + [1916] = {.lex_state = 0}, [1917] = {.lex_state = 0}, - [1918] = {.lex_state = 47}, + [1918] = {.lex_state = 31}, [1919] = {.lex_state = 0}, - [1920] = {.lex_state = 0}, - [1921] = {.lex_state = 0}, - [1922] = {.lex_state = 32}, - [1923] = {.lex_state = 55}, - [1924] = {.lex_state = 32}, + [1920] = {.lex_state = 31}, + [1921] = {.lex_state = 31}, + [1922] = {.lex_state = 0}, + [1923] = {.lex_state = 0}, + [1924] = {.lex_state = 33}, [1925] = {.lex_state = 0}, - [1926] = {.lex_state = 55}, - [1927] = {.lex_state = 0}, - [1928] = {.lex_state = 55}, + [1926] = {.lex_state = 37}, + [1927] = {.lex_state = 55}, + [1928] = {.lex_state = 0}, [1929] = {.lex_state = 0}, [1930] = {.lex_state = 0}, [1931] = {.lex_state = 0}, [1932] = {.lex_state = 0}, - [1933] = {.lex_state = 47}, - [1934] = {.lex_state = 32}, - [1935] = {.lex_state = 47}, - [1936] = {.lex_state = 0}, - [1937] = {.lex_state = 0}, - [1938] = {.lex_state = 32}, - [1939] = {.lex_state = 47}, - [1940] = {.lex_state = 32}, - [1941] = {.lex_state = 55}, - [1942] = {.lex_state = 0}, - [1943] = {.lex_state = 32}, - [1944] = {.lex_state = 47}, - [1945] = {.lex_state = 32}, - [1946] = {.lex_state = 47}, - [1947] = {.lex_state = 0}, - [1948] = {.lex_state = 0}, - [1949] = {.lex_state = 55}, + [1933] = {.lex_state = 0}, + [1934] = {.lex_state = 121}, + [1935] = {.lex_state = 121}, + [1936] = {.lex_state = 121}, + [1937] = {.lex_state = 121}, + [1938] = {.lex_state = 0}, + [1939] = {.lex_state = 121}, + [1940] = {.lex_state = 55}, + [1941] = {.lex_state = 0}, + [1942] = {.lex_state = 121}, + [1943] = {.lex_state = 121}, + [1944] = {.lex_state = 121}, + [1945] = {.lex_state = 121}, + [1946] = {.lex_state = 121}, + [1947] = {.lex_state = 55}, + [1948] = {.lex_state = 121}, + [1949] = {.lex_state = 121}, [1950] = {.lex_state = 121}, - [1951] = {.lex_state = 55}, - [1952] = {.lex_state = 0}, - [1953] = {.lex_state = 55}, + [1951] = {.lex_state = 121}, + [1952] = {.lex_state = 121}, + [1953] = {.lex_state = 0}, [1954] = {.lex_state = 0}, [1955] = {.lex_state = 0}, [1956] = {.lex_state = 0}, - [1957] = {.lex_state = 0}, + [1957] = {.lex_state = 48}, [1958] = {.lex_state = 0}, [1959] = {.lex_state = 0}, - [1960] = {.lex_state = 0}, + [1960] = {.lex_state = 121}, [1961] = {.lex_state = 0}, - [1962] = {.lex_state = 55}, - [1963] = {.lex_state = 55}, - [1964] = {.lex_state = 121}, - [1965] = {.lex_state = 0}, + [1962] = {.lex_state = 31}, + [1963] = {.lex_state = 121}, + [1964] = {.lex_state = 0}, + [1965] = {.lex_state = 121}, [1966] = {.lex_state = 0}, - [1967] = {.lex_state = 0}, - [1968] = {.lex_state = 47}, + [1967] = {.lex_state = 121}, + [1968] = {.lex_state = 55}, [1969] = {.lex_state = 121}, - [1970] = {.lex_state = 47}, - [1971] = {.lex_state = 55}, - [1972] = {.lex_state = 0}, - [1973] = {.lex_state = 47}, + [1970] = {.lex_state = 121}, + [1971] = {.lex_state = 121}, + [1972] = {.lex_state = 121}, + [1973] = {.lex_state = 121}, [1974] = {.lex_state = 0}, [1975] = {.lex_state = 121}, - [1976] = {.lex_state = 0}, - [1977] = {.lex_state = 121}, - [1978] = {.lex_state = 55}, - [1979] = {.lex_state = 0}, + [1976] = {.lex_state = 121}, + [1977] = {.lex_state = 0}, + [1978] = {.lex_state = 0}, + [1979] = {.lex_state = 121}, [1980] = {.lex_state = 0}, - [1981] = {.lex_state = 121}, - [1982] = {.lex_state = 55}, - [1983] = {.lex_state = 47}, - [1984] = {.lex_state = 0}, - [1985] = {.lex_state = 121}, - [1986] = {.lex_state = 32}, - [1987] = {.lex_state = 47}, - [1988] = {.lex_state = 121}, - [1989] = {.lex_state = 32}, + [1981] = {.lex_state = 0}, + [1982] = {.lex_state = 0}, + [1983] = {.lex_state = 31}, + [1984] = {.lex_state = 121}, + [1985] = {.lex_state = 0}, + [1986] = {.lex_state = 55}, + [1987] = {.lex_state = 121}, + [1988] = {.lex_state = 55}, + [1989] = {.lex_state = 0}, [1990] = {.lex_state = 0}, [1991] = {.lex_state = 0}, - [1992] = {.lex_state = 55}, - [1993] = {.lex_state = 55}, + [1992] = {.lex_state = 121}, + [1993] = {.lex_state = 0}, [1994] = {.lex_state = 0}, - [1995] = {.lex_state = 0}, + [1995] = {.lex_state = 121}, [1996] = {.lex_state = 0}, - [1997] = {.lex_state = 0}, - [1998] = {.lex_state = 55}, + [1997] = {.lex_state = 31}, + [1998] = {.lex_state = 0}, [1999] = {.lex_state = 0}, - [2000] = {.lex_state = 0}, - [2001] = {.lex_state = 0}, - [2002] = {.lex_state = 55}, - [2003] = {.lex_state = 121}, - [2004] = {.lex_state = 55}, - [2005] = {.lex_state = 47}, - [2006] = {.lex_state = 121}, - [2007] = {.lex_state = 0}, - [2008] = {.lex_state = 47}, - [2009] = {.lex_state = 47}, + [2000] = {.lex_state = 121}, + [2001] = {.lex_state = 121}, + [2002] = {.lex_state = 0}, + [2003] = {.lex_state = 0}, + [2004] = {.lex_state = 121}, + [2005] = {.lex_state = 121}, + [2006] = {.lex_state = 0}, + [2007] = {.lex_state = 121}, + [2008] = {.lex_state = 121}, + [2009] = {.lex_state = 121}, [2010] = {.lex_state = 55}, - [2011] = {.lex_state = 55}, - [2012] = {.lex_state = 0}, - [2013] = {.lex_state = 55}, - [2014] = {.lex_state = 0}, + [2011] = {.lex_state = 48}, + [2012] = {.lex_state = 121}, + [2013] = {.lex_state = 0}, + [2014] = {.lex_state = 48}, [2015] = {.lex_state = 0}, [2016] = {.lex_state = 0}, - [2017] = {.lex_state = 55}, + [2017] = {.lex_state = 0}, [2018] = {.lex_state = 55}, - [2019] = {.lex_state = 0}, + [2019] = {.lex_state = 121}, [2020] = {.lex_state = 0}, [2021] = {.lex_state = 0}, - [2022] = {.lex_state = 47}, - [2023] = {.lex_state = 55}, + [2022] = {.lex_state = 121}, + [2023] = {.lex_state = 121}, [2024] = {.lex_state = 121}, - [2025] = {.lex_state = 121}, + [2025] = {.lex_state = 55}, [2026] = {.lex_state = 0}, [2027] = {.lex_state = 0}, - [2028] = {.lex_state = 47}, - [2029] = {.lex_state = 47}, + [2028] = {.lex_state = 0}, + [2029] = {.lex_state = 0}, [2030] = {.lex_state = 0}, - [2031] = {.lex_state = 0}, + [2031] = {.lex_state = 55}, [2032] = {.lex_state = 0}, - [2033] = {.lex_state = 0}, - [2034] = {.lex_state = 55}, - [2035] = {.lex_state = 121}, - [2036] = {.lex_state = 121}, - [2037] = {.lex_state = 121}, - [2038] = {.lex_state = 47}, - [2039] = {.lex_state = 55}, + [2033] = {.lex_state = 55}, + [2034] = {.lex_state = 0}, + [2035] = {.lex_state = 47}, + [2036] = {.lex_state = 47}, + [2037] = {.lex_state = 32}, + [2038] = {.lex_state = 32}, + [2039] = {.lex_state = 0}, [2040] = {.lex_state = 0}, - [2041] = {.lex_state = 0}, - [2042] = {.lex_state = 121}, + [2041] = {.lex_state = 121}, + [2042] = {.lex_state = 0}, [2043] = {.lex_state = 0}, - [2044] = {.lex_state = 121}, - [2045] = {.lex_state = 121}, - [2046] = {.lex_state = 121}, - [2047] = {.lex_state = 55}, - [2048] = {.lex_state = 121}, - [2049] = {.lex_state = 47}, - [2050] = {.lex_state = 47}, - [2051] = {.lex_state = 55}, - [2052] = {.lex_state = 0}, - [2053] = {.lex_state = 0}, - [2054] = {.lex_state = 47}, - [2055] = {.lex_state = 55}, - [2056] = {.lex_state = 32}, - [2057] = {.lex_state = 121}, - [2058] = {.lex_state = 47}, - [2059] = {.lex_state = 55}, - [2060] = {.lex_state = 121}, - [2061] = {.lex_state = 121}, + [2044] = {.lex_state = 55}, + [2045] = {.lex_state = 32}, + [2046] = {.lex_state = 0}, + [2047] = {.lex_state = 0}, + [2048] = {.lex_state = 0}, + [2049] = {.lex_state = 0}, + [2050] = {.lex_state = 32}, + [2051] = {.lex_state = 0}, + [2052] = {.lex_state = 47}, + [2053] = {.lex_state = 47}, + [2054] = {.lex_state = 0}, + [2055] = {.lex_state = 0}, + [2056] = {.lex_state = 0}, + [2057] = {.lex_state = 32}, + [2058] = {.lex_state = 55}, + [2059] = {.lex_state = 47}, + [2060] = {.lex_state = 32}, + [2061] = {.lex_state = 0}, [2062] = {.lex_state = 0}, - [2063] = {.lex_state = 121}, - [2064] = {.lex_state = 121}, - [2065] = {.lex_state = 55}, + [2063] = {.lex_state = 0}, + [2064] = {.lex_state = 0}, + [2065] = {.lex_state = 121}, + [2066] = {.lex_state = 55}, + [2067] = {.lex_state = 0}, + [2068] = {.lex_state = 55}, + [2069] = {.lex_state = 0}, + [2070] = {.lex_state = 121}, + [2071] = {.lex_state = 0}, + [2072] = {.lex_state = 32}, + [2073] = {.lex_state = 32}, + [2074] = {.lex_state = 121}, + [2075] = {.lex_state = 121}, + [2076] = {.lex_state = 32}, + [2077] = {.lex_state = 32}, + [2078] = {.lex_state = 121}, + [2079] = {.lex_state = 47}, + [2080] = {.lex_state = 0}, + [2081] = {.lex_state = 0}, + [2082] = {.lex_state = 0}, + [2083] = {.lex_state = 32}, + [2084] = {.lex_state = 0}, + [2085] = {.lex_state = 0}, + [2086] = {.lex_state = 47}, + [2087] = {.lex_state = 0}, + [2088] = {.lex_state = 0}, + [2089] = {.lex_state = 0}, + [2090] = {.lex_state = 121}, + [2091] = {.lex_state = 121}, + [2092] = {.lex_state = 121}, + [2093] = {.lex_state = 0}, + [2094] = {.lex_state = 0}, + [2095] = {.lex_state = 0}, + [2096] = {.lex_state = 0}, + [2097] = {.lex_state = 32}, + [2098] = {.lex_state = 0}, + [2099] = {.lex_state = 32}, + [2100] = {.lex_state = 32}, + [2101] = {.lex_state = 55}, + [2102] = {.lex_state = 55}, + [2103] = {.lex_state = 55}, + [2104] = {.lex_state = 55}, + [2105] = {.lex_state = 47}, + [2106] = {.lex_state = 47}, + [2107] = {.lex_state = 55}, + [2108] = {.lex_state = 47}, + [2109] = {.lex_state = 0}, + [2110] = {.lex_state = 47}, + [2111] = {.lex_state = 55}, + [2112] = {.lex_state = 47}, + [2113] = {.lex_state = 0}, + [2114] = {.lex_state = 55}, + [2115] = {.lex_state = 47}, + [2116] = {.lex_state = 47}, + [2117] = {.lex_state = 0}, + [2118] = {.lex_state = 47}, + [2119] = {.lex_state = 0}, + [2120] = {.lex_state = 0}, + [2121] = {.lex_state = 47}, + [2122] = {.lex_state = 0}, + [2123] = {.lex_state = 47}, + [2124] = {.lex_state = 55}, + [2125] = {.lex_state = 0}, + [2126] = {.lex_state = 0}, + [2127] = {.lex_state = 0}, + [2128] = {.lex_state = 47}, + [2129] = {.lex_state = 121}, + [2130] = {.lex_state = 55}, + [2131] = {.lex_state = 121}, + [2132] = {.lex_state = 121}, + [2133] = {.lex_state = 32}, + [2134] = {.lex_state = 121}, + [2135] = {.lex_state = 0}, + [2136] = {.lex_state = 32}, + [2137] = {.lex_state = 0}, + [2138] = {.lex_state = 0}, + [2139] = {.lex_state = 0}, + [2140] = {.lex_state = 0}, + [2141] = {.lex_state = 55}, + [2142] = {.lex_state = 0}, + [2143] = {.lex_state = 32}, + [2144] = {.lex_state = 47}, + [2145] = {.lex_state = 0}, + [2146] = {.lex_state = 55}, + [2147] = {.lex_state = 32}, + [2148] = {.lex_state = 55}, + [2149] = {.lex_state = 55}, + [2150] = {.lex_state = 121}, + [2151] = {.lex_state = 55}, + [2152] = {.lex_state = 0}, + [2153] = {.lex_state = 0}, + [2154] = {.lex_state = 0}, + [2155] = {.lex_state = 0}, + [2156] = {.lex_state = 47}, + [2157] = {.lex_state = 0}, + [2158] = {.lex_state = 47}, + [2159] = {.lex_state = 0}, + [2160] = {.lex_state = 55}, + [2161] = {.lex_state = 47}, + [2162] = {.lex_state = 0}, + [2163] = {.lex_state = 47}, + [2164] = {.lex_state = 32}, + [2165] = {.lex_state = 47}, + [2166] = {.lex_state = 0}, + [2167] = {.lex_state = 32}, + [2168] = {.lex_state = 32}, + [2169] = {.lex_state = 0}, + [2170] = {.lex_state = 0}, + [2171] = {.lex_state = 0}, + [2172] = {.lex_state = 47}, + [2173] = {.lex_state = 47}, + [2174] = {.lex_state = 0}, + [2175] = {.lex_state = 0}, + [2176] = {.lex_state = 0}, + [2177] = {.lex_state = 47}, + [2178] = {.lex_state = 47}, + [2179] = {.lex_state = 47}, + [2180] = {.lex_state = 0}, + [2181] = {.lex_state = 47}, + [2182] = {.lex_state = 47}, + [2183] = {.lex_state = 0}, + [2184] = {.lex_state = 0}, + [2185] = {.lex_state = 47}, + [2186] = {.lex_state = 0}, + [2187] = {.lex_state = 0}, + [2188] = {.lex_state = 32}, + [2189] = {.lex_state = 0}, + [2190] = {.lex_state = 0}, + [2191] = {.lex_state = 55}, + [2192] = {.lex_state = 55}, + [2193] = {.lex_state = 0}, + [2194] = {.lex_state = 55}, + [2195] = {.lex_state = 32}, + [2196] = {.lex_state = 47}, + [2197] = {.lex_state = 0}, + [2198] = {.lex_state = 55}, + [2199] = {.lex_state = 0}, + [2200] = {.lex_state = 55}, + [2201] = {.lex_state = 0}, + [2202] = {.lex_state = 0}, + [2203] = {.lex_state = 0}, + [2204] = {.lex_state = 121}, + [2205] = {.lex_state = 47}, + [2206] = {.lex_state = 0}, + [2207] = {.lex_state = 0}, + [2208] = {.lex_state = 0}, + [2209] = {.lex_state = 0}, + [2210] = {.lex_state = 47}, + [2211] = {.lex_state = 0}, + [2212] = {.lex_state = 47}, + [2213] = {.lex_state = 55}, + [2214] = {.lex_state = 32}, + [2215] = {.lex_state = 0}, + [2216] = {.lex_state = 0}, + [2217] = {.lex_state = 0}, + [2218] = {.lex_state = 32}, + [2219] = {.lex_state = 0}, + [2220] = {.lex_state = 0}, + [2221] = {.lex_state = 0}, + [2222] = {.lex_state = 0}, + [2223] = {.lex_state = 0}, + [2224] = {.lex_state = 32}, + [2225] = {.lex_state = 47}, + [2226] = {.lex_state = 47}, + [2227] = {.lex_state = 47}, + [2228] = {.lex_state = 47}, + [2229] = {.lex_state = 55}, + [2230] = {.lex_state = 55}, + [2231] = {.lex_state = 55}, + [2232] = {.lex_state = 0}, + [2233] = {.lex_state = 0}, + [2234] = {.lex_state = 47}, + [2235] = {.lex_state = 55}, + [2236] = {.lex_state = 0}, + [2237] = {.lex_state = 47}, + [2238] = {.lex_state = 0}, + [2239] = {.lex_state = 0}, + [2240] = {.lex_state = 32}, + [2241] = {.lex_state = 0}, + [2242] = {.lex_state = 0}, + [2243] = {.lex_state = 47}, + [2244] = {.lex_state = 0}, + [2245] = {.lex_state = 47}, + [2246] = {.lex_state = 32}, + [2247] = {.lex_state = 121}, + [2248] = {.lex_state = 0}, + [2249] = {.lex_state = 0}, + [2250] = {.lex_state = 0}, + [2251] = {.lex_state = 0}, + [2252] = {.lex_state = 0}, + [2253] = {.lex_state = 0}, + [2254] = {.lex_state = 47}, + [2255] = {.lex_state = 47}, + [2256] = {.lex_state = 47}, + [2257] = {.lex_state = 0}, + [2258] = {.lex_state = 55}, + [2259] = {.lex_state = 0}, + [2260] = {.lex_state = 0}, + [2261] = {.lex_state = 0}, + [2262] = {.lex_state = 55}, + [2263] = {.lex_state = 55}, + [2264] = {.lex_state = 0}, + [2265] = {.lex_state = 32}, + [2266] = {.lex_state = 47}, + [2267] = {.lex_state = 0}, + [2268] = {.lex_state = 55}, + [2269] = {.lex_state = 121}, + [2270] = {.lex_state = 121}, + [2271] = {.lex_state = 121}, + [2272] = {.lex_state = 0}, + [2273] = {.lex_state = 0}, + [2274] = {.lex_state = 0}, + [2275] = {.lex_state = 121}, + [2276] = {.lex_state = 0}, + [2277] = {.lex_state = 32}, + [2278] = {.lex_state = 0}, + [2279] = {.lex_state = 121}, + [2280] = {.lex_state = 55}, + [2281] = {.lex_state = 55}, + [2282] = {.lex_state = 121}, + [2283] = {.lex_state = 121}, + [2284] = {.lex_state = 121}, + [2285] = {.lex_state = 121}, + [2286] = {.lex_state = 0}, + [2287] = {.lex_state = 121}, + [2288] = {.lex_state = 0}, + [2289] = {.lex_state = 121}, + [2290] = {.lex_state = 55}, + [2291] = {.lex_state = 121}, + [2292] = {.lex_state = 0}, + [2293] = {.lex_state = 0}, + [2294] = {.lex_state = 121}, + [2295] = {.lex_state = 55}, + [2296] = {.lex_state = 0}, + [2297] = {.lex_state = 0}, + [2298] = {.lex_state = 0}, + [2299] = {.lex_state = 0}, + [2300] = {.lex_state = 55}, + [2301] = {.lex_state = 47}, + [2302] = {.lex_state = 47}, + [2303] = {.lex_state = 32}, + [2304] = {.lex_state = 47}, + [2305] = {.lex_state = 55}, + [2306] = {.lex_state = 121}, + [2307] = {.lex_state = 121}, + [2308] = {.lex_state = 0}, + [2309] = {.lex_state = 121}, + [2310] = {.lex_state = 121}, + [2311] = {.lex_state = 121}, + [2312] = {.lex_state = 47}, + [2313] = {.lex_state = 55}, + [2314] = {.lex_state = 121}, + [2315] = {.lex_state = 0}, + [2316] = {.lex_state = 55}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -11759,10 +12393,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___read_mostly] = ACTIONS(1), [anon_sym___must_hold] = ACTIONS(1), [anon_sym___ro_after_init] = ACTIONS(1), - [anon_sym___init] = ACTIONS(1), + [anon_sym___noreturn] = ACTIONS(1), + [anon_sym___cold] = ACTIONS(1), [anon_sym_LBRACK_LBRACK] = ACTIONS(1), [anon_sym___declspec] = ACTIONS(1), [anon_sym___based] = ACTIONS(1), + [anon_sym___init] = ACTIONS(1), + [anon_sym___exit] = ACTIONS(1), [anon_sym___cdecl] = ACTIONS(1), [anon_sym___clrcall] = ACTIONS(1), [anon_sym___stdcall] = ACTIONS(1), @@ -11867,7 +12504,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [1] = { - [sym_translation_unit] = STATE(1952), + [sym_translation_unit] = STATE(2278), [sym__top_level_item] = STATE(44), [sym_preproc_include] = STATE(44), [sym_preproc_def] = STATE(44), @@ -11876,26 +12513,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_if] = STATE(44), [sym_preproc_ifdef] = STATE(44), [sym_function_definition] = STATE(44), - [sym__old_style_function_definition] = STATE(332), + [sym__old_style_function_definition] = STATE(399), [sym_declaration] = STATE(44), [sym_type_definition] = STATE(44), - [sym__declaration_modifiers] = STATE(697), - [sym__declaration_specifiers] = STATE(1123), + [sym__declaration_modifiers] = STATE(805), + [sym__declaration_specifiers] = STATE(1231), [sym_linkage_specification] = STATE(44), - [sym_attribute_specifier] = STATE(697), - [sym_attribute_declaration] = STATE(405), - [sym_ms_declspec_modifier] = STATE(697), - [sym_ms_call_modifier] = STATE(691), + [sym_attribute_specifier] = STATE(805), + [sym_attribute_declaration] = STATE(468), + [sym_ms_declspec_modifier] = STATE(805), + [sym_macro_modifier] = STATE(794), + [sym_ms_call_modifier] = STATE(620), [sym_compound_statement] = STATE(44), - [sym_storage_class_specifier] = STATE(697), - [sym_type_qualifier] = STATE(697), - [sym_alignas_qualifier] = STATE(703), - [sym_type_specifier] = STATE(800), - [sym_sized_type_specifier] = STATE(746), - [sym_enum_specifier] = STATE(746), - [sym_struct_specifier] = STATE(746), - [sym_union_specifier] = STATE(746), - [sym_attributed_statement] = STATE(335), + [sym_storage_class_specifier] = STATE(805), + [sym_type_qualifier] = STATE(805), + [sym_alignas_qualifier] = STATE(799), + [sym_type_specifier] = STATE(901), + [sym_sized_type_specifier] = STATE(873), + [sym_enum_specifier] = STATE(873), + [sym_struct_specifier] = STATE(873), + [sym_union_specifier] = STATE(873), + [sym_attributed_statement] = STATE(401), [sym__top_level_statement] = STATE(44), [sym_labeled_statement] = STATE(44), [sym__top_level_expression_statement] = STATE(44), @@ -11909,35 +12547,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(44), [sym_continue_statement] = STATE(44), [sym_goto_statement] = STATE(44), - [sym_expression] = STATE(1099), - [sym__string] = STATE(1100), - [sym_conditional_expression] = STATE(1100), - [sym_assignment_expression] = STATE(1100), - [sym_pointer_expression] = STATE(952), - [sym_unary_expression] = STATE(1100), - [sym_binary_expression] = STATE(663), - [sym_update_expression] = STATE(1100), - [sym_cast_expression] = STATE(1100), - [sym_sizeof_expression] = STATE(1100), - [sym_alignof_expression] = STATE(1100), - [sym_offsetof_expression] = STATE(1100), - [sym_generic_expression] = STATE(1100), - [sym_subscript_expression] = STATE(952), - [sym_call_expression] = STATE(952), - [sym_gnu_asm_expression] = STATE(1100), - [sym_field_expression] = STATE(952), - [sym_compound_literal_expression] = STATE(1100), - [sym_parenthesized_expression] = STATE(952), - [sym_char_literal] = STATE(1100), - [sym_concatenated_string] = STATE(1100), - [sym_string_literal] = STATE(659), - [sym_null] = STATE(1100), + [sym_expression] = STATE(1225), + [sym__string] = STATE(1223), + [sym_conditional_expression] = STATE(1223), + [sym_assignment_expression] = STATE(1223), + [sym_pointer_expression] = STATE(1069), + [sym_unary_expression] = STATE(1223), + [sym_binary_expression] = STATE(758), + [sym_update_expression] = STATE(1223), + [sym_cast_expression] = STATE(1223), + [sym_sizeof_expression] = STATE(1223), + [sym_alignof_expression] = STATE(1223), + [sym_offsetof_expression] = STATE(1223), + [sym_generic_expression] = STATE(1223), + [sym_subscript_expression] = STATE(1069), + [sym_call_expression] = STATE(1069), + [sym_gnu_asm_expression] = STATE(1223), + [sym_field_expression] = STATE(1069), + [sym_compound_literal_expression] = STATE(1223), + [sym_parenthesized_expression] = STATE(1069), + [sym_char_literal] = STATE(1223), + [sym_concatenated_string] = STATE(1223), + [sym_string_literal] = STATE(671), + [sym_null] = STATE(1223), [sym__empty_declaration] = STATE(44), - [sym_macro_type_specifier] = STATE(746), + [sym_macro_type_specifier] = STATE(873), [aux_sym_translation_unit_repeat1] = STATE(44), - [aux_sym__declaration_specifiers_repeat1] = STATE(697), - [aux_sym_attributed_declarator_repeat1] = STATE(348), - [aux_sym_sized_type_specifier_repeat1] = STATE(747), + [aux_sym__declaration_specifiers_repeat1] = STATE(805), + [aux_sym_attributed_declarator_repeat1] = STATE(421), + [aux_sym_sized_type_specifier_repeat1] = STATE(890), [ts_builtin_sym_end] = ACTIONS(5), [sym_identifier] = ACTIONS(7), [aux_sym_preproc_include_token1] = ACTIONS(9), @@ -11962,172 +12600,176 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___read_mostly] = ACTIONS(37), [anon_sym___must_hold] = ACTIONS(33), [anon_sym___ro_after_init] = ACTIONS(37), - [anon_sym___init] = ACTIONS(37), + [anon_sym___noreturn] = ACTIONS(37), + [anon_sym___cold] = ACTIONS(37), [anon_sym_LBRACK_LBRACK] = ACTIONS(39), [anon_sym___declspec] = ACTIONS(41), - [anon_sym___cdecl] = ACTIONS(43), - [anon_sym___clrcall] = ACTIONS(43), - [anon_sym___stdcall] = ACTIONS(43), - [anon_sym___fastcall] = ACTIONS(43), - [anon_sym___thiscall] = ACTIONS(43), - [anon_sym___vectorcall] = ACTIONS(43), - [anon_sym_LBRACE] = ACTIONS(45), - [anon_sym_signed] = ACTIONS(47), - [anon_sym_unsigned] = ACTIONS(47), - [anon_sym_long] = ACTIONS(47), - [anon_sym_short] = ACTIONS(47), - [anon_sym_static] = ACTIONS(49), - [anon_sym_auto] = ACTIONS(49), - [anon_sym_register] = ACTIONS(49), - [anon_sym_inline] = ACTIONS(49), - [anon_sym___inline] = ACTIONS(49), - [anon_sym___inline__] = ACTIONS(49), - [anon_sym___forceinline] = ACTIONS(49), - [anon_sym_thread_local] = ACTIONS(49), - [anon_sym___thread] = ACTIONS(49), - [anon_sym_const] = ACTIONS(51), - [anon_sym_constexpr] = ACTIONS(51), - [anon_sym_volatile] = ACTIONS(51), - [anon_sym_restrict] = ACTIONS(51), - [anon_sym___restrict__] = ACTIONS(51), - [anon_sym__Atomic] = ACTIONS(51), - [anon_sym__Noreturn] = ACTIONS(51), - [anon_sym_noreturn] = ACTIONS(51), - [anon_sym_alignas] = ACTIONS(53), - [anon_sym__Alignas] = ACTIONS(53), - [sym_primitive_type] = ACTIONS(55), - [anon_sym_enum] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [anon_sym_if] = ACTIONS(63), - [anon_sym_switch] = ACTIONS(65), - [anon_sym_case] = ACTIONS(67), - [anon_sym_default] = ACTIONS(69), - [anon_sym_while] = ACTIONS(71), - [anon_sym_do] = ACTIONS(73), - [anon_sym_for] = ACTIONS(75), - [anon_sym_return] = ACTIONS(77), - [anon_sym_break] = ACTIONS(79), - [anon_sym_continue] = ACTIONS(81), - [anon_sym_goto] = ACTIONS(83), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [anon_sym___alignof__] = ACTIONS(89), - [anon_sym___alignof] = ACTIONS(89), - [anon_sym__alignof] = ACTIONS(89), - [anon_sym_alignof] = ACTIONS(89), - [anon_sym__Alignof] = ACTIONS(89), - [anon_sym_offsetof] = ACTIONS(91), - [anon_sym__Generic] = ACTIONS(93), - [anon_sym_asm] = ACTIONS(95), - [anon_sym___asm__] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [anon_sym_NULL] = ACTIONS(105), - [anon_sym_nullptr] = ACTIONS(105), + [anon_sym___init] = ACTIONS(43), + [anon_sym___exit] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_const] = ACTIONS(53), + [anon_sym_constexpr] = ACTIONS(53), + [anon_sym_volatile] = ACTIONS(53), + [anon_sym_restrict] = ACTIONS(53), + [anon_sym___restrict__] = ACTIONS(53), + [anon_sym__Atomic] = ACTIONS(53), + [anon_sym__Noreturn] = ACTIONS(53), + [anon_sym_noreturn] = ACTIONS(53), + [anon_sym_alignas] = ACTIONS(55), + [anon_sym__Alignas] = ACTIONS(55), + [sym_primitive_type] = ACTIONS(57), + [anon_sym_enum] = ACTIONS(59), + [anon_sym_struct] = ACTIONS(61), + [anon_sym_union] = ACTIONS(63), + [anon_sym_if] = ACTIONS(65), + [anon_sym_switch] = ACTIONS(67), + [anon_sym_case] = ACTIONS(69), + [anon_sym_default] = ACTIONS(71), + [anon_sym_while] = ACTIONS(73), + [anon_sym_do] = ACTIONS(75), + [anon_sym_for] = ACTIONS(77), + [anon_sym_return] = ACTIONS(79), + [anon_sym_break] = ACTIONS(81), + [anon_sym_continue] = ACTIONS(83), + [anon_sym_goto] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(87), + [anon_sym_sizeof] = ACTIONS(89), + [anon_sym___alignof__] = ACTIONS(91), + [anon_sym___alignof] = ACTIONS(91), + [anon_sym__alignof] = ACTIONS(91), + [anon_sym_alignof] = ACTIONS(91), + [anon_sym__Alignof] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(93), + [anon_sym__Generic] = ACTIONS(95), + [anon_sym_asm] = ACTIONS(97), + [anon_sym___asm__] = ACTIONS(97), + [sym_number_literal] = ACTIONS(99), + [anon_sym_L_SQUOTE] = ACTIONS(101), + [anon_sym_u_SQUOTE] = ACTIONS(101), + [anon_sym_U_SQUOTE] = ACTIONS(101), + [anon_sym_u8_SQUOTE] = ACTIONS(101), + [anon_sym_SQUOTE] = ACTIONS(101), + [anon_sym_L_DQUOTE] = ACTIONS(103), + [anon_sym_u_DQUOTE] = ACTIONS(103), + [anon_sym_U_DQUOTE] = ACTIONS(103), + [anon_sym_u8_DQUOTE] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_true] = ACTIONS(105), + [sym_false] = ACTIONS(105), + [anon_sym_NULL] = ACTIONS(107), + [anon_sym_nullptr] = ACTIONS(107), [sym_comment] = ACTIONS(3), }, [2] = { - [sym__block_item] = STATE(12), - [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(1803), - [sym_preproc_elif] = STATE(1803), - [sym_preproc_elifdef] = STATE(1803), - [sym_function_definition] = STATE(12), - [sym__old_style_function_definition] = STATE(117), - [sym_declaration] = STATE(12), - [sym_type_definition] = STATE(12), - [sym__declaration_modifiers] = STATE(697), - [sym__declaration_specifiers] = STATE(1120), - [sym_linkage_specification] = STATE(12), - [sym_attribute_specifier] = STATE(697), - [sym_attribute_declaration] = STATE(405), - [sym_ms_declspec_modifier] = STATE(697), - [sym_ms_call_modifier] = STATE(677), - [sym_compound_statement] = STATE(93), - [sym_storage_class_specifier] = STATE(697), - [sym_type_qualifier] = STATE(697), - [sym_alignas_qualifier] = STATE(703), - [sym_type_specifier] = STATE(817), - [sym_sized_type_specifier] = STATE(746), - [sym_enum_specifier] = STATE(746), - [sym_struct_specifier] = STATE(746), - [sym_union_specifier] = STATE(746), - [sym_attributed_statement] = STATE(118), - [sym_statement] = STATE(12), - [sym_labeled_statement] = STATE(93), - [sym_expression_statement] = STATE(93), - [sym_if_statement] = STATE(93), - [sym_switch_statement] = STATE(93), - [sym_case_statement] = STATE(93), - [sym_while_statement] = STATE(93), - [sym_do_statement] = STATE(93), - [sym_for_statement] = STATE(93), - [sym_return_statement] = STATE(93), - [sym_break_statement] = STATE(93), - [sym_continue_statement] = STATE(93), - [sym_goto_statement] = STATE(93), - [sym_seh_try_statement] = STATE(93), - [sym_seh_leave_statement] = STATE(93), - [sym_expression] = STATE(1073), - [sym__string] = STATE(663), - [sym_comma_expression] = STATE(1821), - [sym_conditional_expression] = STATE(663), - [sym_assignment_expression] = STATE(663), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(663), - [sym_binary_expression] = STATE(663), - [sym_update_expression] = STATE(663), - [sym_cast_expression] = STATE(663), - [sym_sizeof_expression] = STATE(663), - [sym_alignof_expression] = STATE(663), - [sym_offsetof_expression] = STATE(663), - [sym_generic_expression] = STATE(663), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(663), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(663), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(663), - [sym_concatenated_string] = STATE(663), - [sym_string_literal] = STATE(659), - [sym_null] = STATE(663), - [sym__empty_declaration] = STATE(12), - [sym_macro_type_specifier] = STATE(746), - [aux_sym_preproc_if_repeat1] = STATE(12), - [aux_sym__declaration_specifiers_repeat1] = STATE(697), - [aux_sym_attributed_declarator_repeat1] = STATE(365), - [aux_sym_sized_type_specifier_repeat1] = STATE(747), - [sym_identifier] = ACTIONS(107), - [aux_sym_preproc_include_token1] = ACTIONS(109), - [aux_sym_preproc_def_token1] = ACTIONS(111), - [aux_sym_preproc_if_token1] = ACTIONS(113), - [aux_sym_preproc_if_token2] = ACTIONS(115), - [aux_sym_preproc_ifdef_token1] = ACTIONS(117), - [aux_sym_preproc_ifdef_token2] = ACTIONS(117), - [aux_sym_preproc_else_token1] = ACTIONS(119), - [aux_sym_preproc_elif_token1] = ACTIONS(121), - [aux_sym_preproc_elifdef_token1] = ACTIONS(123), - [aux_sym_preproc_elifdef_token2] = ACTIONS(123), - [sym_preproc_directive] = ACTIONS(125), + [sym__block_item] = STATE(5), + [sym_preproc_include] = STATE(5), + [sym_preproc_def] = STATE(5), + [sym_preproc_function_def] = STATE(5), + [sym_preproc_call] = STATE(5), + [sym_preproc_if] = STATE(5), + [sym_preproc_ifdef] = STATE(5), + [sym_preproc_else] = STATE(2210), + [sym_preproc_elif] = STATE(2210), + [sym_preproc_elifdef] = STATE(2210), + [sym_function_definition] = STATE(5), + [sym__old_style_function_definition] = STATE(149), + [sym_declaration] = STATE(5), + [sym_type_definition] = STATE(5), + [sym__declaration_modifiers] = STATE(805), + [sym__declaration_specifiers] = STATE(1238), + [sym_linkage_specification] = STATE(5), + [sym_attribute_specifier] = STATE(805), + [sym_attribute_declaration] = STATE(468), + [sym_ms_declspec_modifier] = STATE(805), + [sym_macro_modifier] = STATE(777), + [sym_ms_call_modifier] = STATE(615), + [sym_compound_statement] = STATE(77), + [sym_storage_class_specifier] = STATE(805), + [sym_type_qualifier] = STATE(805), + [sym_alignas_qualifier] = STATE(799), + [sym_type_specifier] = STATE(896), + [sym_sized_type_specifier] = STATE(873), + [sym_enum_specifier] = STATE(873), + [sym_struct_specifier] = STATE(873), + [sym_union_specifier] = STATE(873), + [sym_attributed_statement] = STATE(151), + [sym_statement] = STATE(5), + [sym_labeled_statement] = STATE(77), + [sym_expression_statement] = STATE(77), + [sym_if_statement] = STATE(77), + [sym_switch_statement] = STATE(77), + [sym_case_statement] = STATE(77), + [sym_while_statement] = STATE(77), + [sym_do_statement] = STATE(77), + [sym_for_statement] = STATE(77), + [sym_return_statement] = STATE(77), + [sym_break_statement] = STATE(77), + [sym_continue_statement] = STATE(77), + [sym_goto_statement] = STATE(77), + [sym_seh_try_statement] = STATE(77), + [sym_seh_leave_statement] = STATE(77), + [sym_expression] = STATE(1157), + [sym__string] = STATE(758), + [sym_comma_expression] = STATE(2232), + [sym_conditional_expression] = STATE(758), + [sym_assignment_expression] = STATE(758), + [sym_pointer_expression] = STATE(944), + [sym_unary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_cast_expression] = STATE(758), + [sym_sizeof_expression] = STATE(758), + [sym_alignof_expression] = STATE(758), + [sym_offsetof_expression] = STATE(758), + [sym_generic_expression] = STATE(758), + [sym_subscript_expression] = STATE(944), + [sym_call_expression] = STATE(944), + [sym_gnu_asm_expression] = STATE(758), + [sym_field_expression] = STATE(944), + [sym_compound_literal_expression] = STATE(758), + [sym_parenthesized_expression] = STATE(944), + [sym_char_literal] = STATE(758), + [sym_concatenated_string] = STATE(758), + [sym_string_literal] = STATE(671), + [sym_null] = STATE(758), + [sym__empty_declaration] = STATE(5), + [sym_macro_type_specifier] = STATE(873), + [aux_sym_preproc_if_repeat1] = STATE(5), + [aux_sym__declaration_specifiers_repeat1] = STATE(805), + [aux_sym_attributed_declarator_repeat1] = STATE(439), + [aux_sym_sized_type_specifier_repeat1] = STATE(890), + [sym_identifier] = ACTIONS(109), + [aux_sym_preproc_include_token1] = ACTIONS(111), + [aux_sym_preproc_def_token1] = ACTIONS(113), + [aux_sym_preproc_if_token1] = ACTIONS(115), + [aux_sym_preproc_if_token2] = ACTIONS(117), + [aux_sym_preproc_ifdef_token1] = ACTIONS(119), + [aux_sym_preproc_ifdef_token2] = ACTIONS(119), + [aux_sym_preproc_else_token1] = ACTIONS(121), + [aux_sym_preproc_elif_token1] = ACTIONS(123), + [aux_sym_preproc_elifdef_token1] = ACTIONS(125), + [aux_sym_preproc_elifdef_token2] = ACTIONS(125), + [sym_preproc_directive] = ACTIONS(127), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -12135,281 +12777,99 @@ 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(127), - [anon_sym___extension__] = ACTIONS(129), - [anon_sym_typedef] = ACTIONS(131), - [anon_sym_extern] = ACTIONS(133), + [anon_sym_SEMI] = ACTIONS(129), + [anon_sym___extension__] = ACTIONS(131), + [anon_sym_typedef] = ACTIONS(133), + [anon_sym_extern] = ACTIONS(135), [anon_sym___attribute__] = ACTIONS(33), [anon_sym___scanf] = ACTIONS(35), [anon_sym___printf] = ACTIONS(35), [anon_sym___read_mostly] = ACTIONS(37), [anon_sym___must_hold] = ACTIONS(33), [anon_sym___ro_after_init] = ACTIONS(37), - [anon_sym___init] = ACTIONS(37), + [anon_sym___noreturn] = ACTIONS(37), + [anon_sym___cold] = ACTIONS(37), [anon_sym_LBRACK_LBRACK] = ACTIONS(39), [anon_sym___declspec] = ACTIONS(41), - [anon_sym___cdecl] = ACTIONS(43), - [anon_sym___clrcall] = ACTIONS(43), - [anon_sym___stdcall] = ACTIONS(43), - [anon_sym___fastcall] = ACTIONS(43), - [anon_sym___thiscall] = ACTIONS(43), - [anon_sym___vectorcall] = ACTIONS(43), - [anon_sym_LBRACE] = ACTIONS(135), - [anon_sym_signed] = ACTIONS(47), - [anon_sym_unsigned] = ACTIONS(47), - [anon_sym_long] = ACTIONS(47), - [anon_sym_short] = ACTIONS(47), - [anon_sym_static] = ACTIONS(49), - [anon_sym_auto] = ACTIONS(49), - [anon_sym_register] = ACTIONS(49), - [anon_sym_inline] = ACTIONS(49), - [anon_sym___inline] = ACTIONS(49), - [anon_sym___inline__] = ACTIONS(49), - [anon_sym___forceinline] = ACTIONS(49), - [anon_sym_thread_local] = ACTIONS(49), - [anon_sym___thread] = ACTIONS(49), - [anon_sym_const] = ACTIONS(51), - [anon_sym_constexpr] = ACTIONS(51), - [anon_sym_volatile] = ACTIONS(51), - [anon_sym_restrict] = ACTIONS(51), - [anon_sym___restrict__] = ACTIONS(51), - [anon_sym__Atomic] = ACTIONS(51), - [anon_sym__Noreturn] = ACTIONS(51), - [anon_sym_noreturn] = ACTIONS(51), - [anon_sym_alignas] = ACTIONS(53), - [anon_sym__Alignas] = ACTIONS(53), - [sym_primitive_type] = ACTIONS(55), - [anon_sym_enum] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [anon_sym_if] = ACTIONS(137), - [anon_sym_switch] = ACTIONS(139), - [anon_sym_case] = ACTIONS(141), - [anon_sym_default] = ACTIONS(143), - [anon_sym_while] = ACTIONS(145), - [anon_sym_do] = ACTIONS(147), - [anon_sym_for] = ACTIONS(149), - [anon_sym_return] = ACTIONS(151), - [anon_sym_break] = ACTIONS(153), - [anon_sym_continue] = ACTIONS(155), - [anon_sym_goto] = ACTIONS(157), - [anon_sym___try] = ACTIONS(159), - [anon_sym___leave] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [anon_sym___alignof__] = ACTIONS(89), - [anon_sym___alignof] = ACTIONS(89), - [anon_sym__alignof] = ACTIONS(89), - [anon_sym_alignof] = ACTIONS(89), - [anon_sym__Alignof] = ACTIONS(89), - [anon_sym_offsetof] = ACTIONS(91), - [anon_sym__Generic] = ACTIONS(93), - [anon_sym_asm] = ACTIONS(95), - [anon_sym___asm__] = ACTIONS(95), - [sym_number_literal] = ACTIONS(163), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(165), - [sym_false] = ACTIONS(165), - [anon_sym_NULL] = ACTIONS(105), - [anon_sym_nullptr] = ACTIONS(105), + [anon_sym___init] = ACTIONS(43), + [anon_sym___exit] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(137), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_const] = ACTIONS(53), + [anon_sym_constexpr] = ACTIONS(53), + [anon_sym_volatile] = ACTIONS(53), + [anon_sym_restrict] = ACTIONS(53), + [anon_sym___restrict__] = ACTIONS(53), + [anon_sym__Atomic] = ACTIONS(53), + [anon_sym__Noreturn] = ACTIONS(53), + [anon_sym_noreturn] = ACTIONS(53), + [anon_sym_alignas] = ACTIONS(55), + [anon_sym__Alignas] = ACTIONS(55), + [sym_primitive_type] = ACTIONS(57), + [anon_sym_enum] = ACTIONS(59), + [anon_sym_struct] = ACTIONS(61), + [anon_sym_union] = ACTIONS(63), + [anon_sym_if] = ACTIONS(139), + [anon_sym_switch] = ACTIONS(141), + [anon_sym_case] = ACTIONS(143), + [anon_sym_default] = ACTIONS(145), + [anon_sym_while] = ACTIONS(147), + [anon_sym_do] = ACTIONS(149), + [anon_sym_for] = ACTIONS(151), + [anon_sym_return] = ACTIONS(153), + [anon_sym_break] = ACTIONS(155), + [anon_sym_continue] = ACTIONS(157), + [anon_sym_goto] = ACTIONS(159), + [anon_sym___try] = ACTIONS(161), + [anon_sym___leave] = ACTIONS(163), + [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(87), + [anon_sym_sizeof] = ACTIONS(89), + [anon_sym___alignof__] = ACTIONS(91), + [anon_sym___alignof] = ACTIONS(91), + [anon_sym__alignof] = ACTIONS(91), + [anon_sym_alignof] = ACTIONS(91), + [anon_sym__Alignof] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(93), + [anon_sym__Generic] = ACTIONS(95), + [anon_sym_asm] = ACTIONS(97), + [anon_sym___asm__] = ACTIONS(97), + [sym_number_literal] = ACTIONS(165), + [anon_sym_L_SQUOTE] = ACTIONS(101), + [anon_sym_u_SQUOTE] = ACTIONS(101), + [anon_sym_U_SQUOTE] = ACTIONS(101), + [anon_sym_u8_SQUOTE] = ACTIONS(101), + [anon_sym_SQUOTE] = ACTIONS(101), + [anon_sym_L_DQUOTE] = ACTIONS(103), + [anon_sym_u_DQUOTE] = ACTIONS(103), + [anon_sym_U_DQUOTE] = ACTIONS(103), + [anon_sym_u8_DQUOTE] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_true] = ACTIONS(167), + [sym_false] = ACTIONS(167), + [anon_sym_NULL] = ACTIONS(107), + [anon_sym_nullptr] = ACTIONS(107), [sym_comment] = ACTIONS(3), }, [3] = { - [sym__block_item] = STATE(19), - [sym_preproc_include] = STATE(19), - [sym_preproc_def] = STATE(19), - [sym_preproc_function_def] = STATE(19), - [sym_preproc_call] = STATE(19), - [sym_preproc_if] = STATE(19), - [sym_preproc_ifdef] = STATE(19), - [sym_preproc_else] = STATE(1946), - [sym_preproc_elif] = STATE(1946), - [sym_preproc_elifdef] = STATE(1946), - [sym_function_definition] = STATE(19), - [sym__old_style_function_definition] = STATE(117), - [sym_declaration] = STATE(19), - [sym_type_definition] = STATE(19), - [sym__declaration_modifiers] = STATE(697), - [sym__declaration_specifiers] = STATE(1120), - [sym_linkage_specification] = STATE(19), - [sym_attribute_specifier] = STATE(697), - [sym_attribute_declaration] = STATE(405), - [sym_ms_declspec_modifier] = STATE(697), - [sym_ms_call_modifier] = STATE(677), - [sym_compound_statement] = STATE(93), - [sym_storage_class_specifier] = STATE(697), - [sym_type_qualifier] = STATE(697), - [sym_alignas_qualifier] = STATE(703), - [sym_type_specifier] = STATE(817), - [sym_sized_type_specifier] = STATE(746), - [sym_enum_specifier] = STATE(746), - [sym_struct_specifier] = STATE(746), - [sym_union_specifier] = STATE(746), - [sym_attributed_statement] = STATE(118), - [sym_statement] = STATE(19), - [sym_labeled_statement] = STATE(93), - [sym_expression_statement] = STATE(93), - [sym_if_statement] = STATE(93), - [sym_switch_statement] = STATE(93), - [sym_case_statement] = STATE(93), - [sym_while_statement] = STATE(93), - [sym_do_statement] = STATE(93), - [sym_for_statement] = STATE(93), - [sym_return_statement] = STATE(93), - [sym_break_statement] = STATE(93), - [sym_continue_statement] = STATE(93), - [sym_goto_statement] = STATE(93), - [sym_seh_try_statement] = STATE(93), - [sym_seh_leave_statement] = STATE(93), - [sym_expression] = STATE(1073), - [sym__string] = STATE(663), - [sym_comma_expression] = STATE(1821), - [sym_conditional_expression] = STATE(663), - [sym_assignment_expression] = STATE(663), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(663), - [sym_binary_expression] = STATE(663), - [sym_update_expression] = STATE(663), - [sym_cast_expression] = STATE(663), - [sym_sizeof_expression] = STATE(663), - [sym_alignof_expression] = STATE(663), - [sym_offsetof_expression] = STATE(663), - [sym_generic_expression] = STATE(663), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(663), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(663), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(663), - [sym_concatenated_string] = STATE(663), - [sym_string_literal] = STATE(659), - [sym_null] = STATE(663), - [sym__empty_declaration] = STATE(19), - [sym_macro_type_specifier] = STATE(746), - [aux_sym_preproc_if_repeat1] = STATE(19), - [aux_sym__declaration_specifiers_repeat1] = STATE(697), - [aux_sym_attributed_declarator_repeat1] = STATE(365), - [aux_sym_sized_type_specifier_repeat1] = STATE(747), - [sym_identifier] = ACTIONS(107), - [aux_sym_preproc_include_token1] = ACTIONS(109), - [aux_sym_preproc_def_token1] = ACTIONS(111), - [aux_sym_preproc_if_token1] = ACTIONS(113), - [aux_sym_preproc_if_token2] = ACTIONS(167), - [aux_sym_preproc_ifdef_token1] = ACTIONS(117), - [aux_sym_preproc_ifdef_token2] = ACTIONS(117), - [aux_sym_preproc_else_token1] = ACTIONS(119), - [aux_sym_preproc_elif_token1] = ACTIONS(121), - [aux_sym_preproc_elifdef_token1] = ACTIONS(123), - [aux_sym_preproc_elifdef_token2] = ACTIONS(123), - [sym_preproc_directive] = ACTIONS(125), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(127), - [anon_sym___extension__] = ACTIONS(129), - [anon_sym_typedef] = ACTIONS(131), - [anon_sym_extern] = ACTIONS(133), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym___scanf] = ACTIONS(35), - [anon_sym___printf] = ACTIONS(35), - [anon_sym___read_mostly] = ACTIONS(37), - [anon_sym___must_hold] = ACTIONS(33), - [anon_sym___ro_after_init] = ACTIONS(37), - [anon_sym___init] = ACTIONS(37), - [anon_sym_LBRACK_LBRACK] = ACTIONS(39), - [anon_sym___declspec] = ACTIONS(41), - [anon_sym___cdecl] = ACTIONS(43), - [anon_sym___clrcall] = ACTIONS(43), - [anon_sym___stdcall] = ACTIONS(43), - [anon_sym___fastcall] = ACTIONS(43), - [anon_sym___thiscall] = ACTIONS(43), - [anon_sym___vectorcall] = ACTIONS(43), - [anon_sym_LBRACE] = ACTIONS(135), - [anon_sym_signed] = ACTIONS(47), - [anon_sym_unsigned] = ACTIONS(47), - [anon_sym_long] = ACTIONS(47), - [anon_sym_short] = ACTIONS(47), - [anon_sym_static] = ACTIONS(49), - [anon_sym_auto] = ACTIONS(49), - [anon_sym_register] = ACTIONS(49), - [anon_sym_inline] = ACTIONS(49), - [anon_sym___inline] = ACTIONS(49), - [anon_sym___inline__] = ACTIONS(49), - [anon_sym___forceinline] = ACTIONS(49), - [anon_sym_thread_local] = ACTIONS(49), - [anon_sym___thread] = ACTIONS(49), - [anon_sym_const] = ACTIONS(51), - [anon_sym_constexpr] = ACTIONS(51), - [anon_sym_volatile] = ACTIONS(51), - [anon_sym_restrict] = ACTIONS(51), - [anon_sym___restrict__] = ACTIONS(51), - [anon_sym__Atomic] = ACTIONS(51), - [anon_sym__Noreturn] = ACTIONS(51), - [anon_sym_noreturn] = ACTIONS(51), - [anon_sym_alignas] = ACTIONS(53), - [anon_sym__Alignas] = ACTIONS(53), - [sym_primitive_type] = ACTIONS(55), - [anon_sym_enum] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [anon_sym_if] = ACTIONS(137), - [anon_sym_switch] = ACTIONS(139), - [anon_sym_case] = ACTIONS(141), - [anon_sym_default] = ACTIONS(143), - [anon_sym_while] = ACTIONS(145), - [anon_sym_do] = ACTIONS(147), - [anon_sym_for] = ACTIONS(149), - [anon_sym_return] = ACTIONS(151), - [anon_sym_break] = ACTIONS(153), - [anon_sym_continue] = ACTIONS(155), - [anon_sym_goto] = ACTIONS(157), - [anon_sym___try] = ACTIONS(159), - [anon_sym___leave] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [anon_sym___alignof__] = ACTIONS(89), - [anon_sym___alignof] = ACTIONS(89), - [anon_sym__alignof] = ACTIONS(89), - [anon_sym_alignof] = ACTIONS(89), - [anon_sym__Alignof] = ACTIONS(89), - [anon_sym_offsetof] = ACTIONS(91), - [anon_sym__Generic] = ACTIONS(93), - [anon_sym_asm] = ACTIONS(95), - [anon_sym___asm__] = ACTIONS(95), - [sym_number_literal] = ACTIONS(163), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(165), - [sym_false] = ACTIONS(165), - [anon_sym_NULL] = ACTIONS(105), - [anon_sym_nullptr] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - }, - [4] = { [sym__block_item] = STATE(22), [sym_preproc_include] = STATE(22), [sym_preproc_def] = STATE(22), @@ -12417,87 +12877,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_call] = STATE(22), [sym_preproc_if] = STATE(22), [sym_preproc_ifdef] = STATE(22), - [sym_preproc_else] = STATE(1983), - [sym_preproc_elif] = STATE(1983), - [sym_preproc_elifdef] = STATE(1983), + [sym_preproc_else] = STATE(2266), + [sym_preproc_elif] = STATE(2266), + [sym_preproc_elifdef] = STATE(2266), [sym_function_definition] = STATE(22), - [sym__old_style_function_definition] = STATE(117), + [sym__old_style_function_definition] = STATE(149), [sym_declaration] = STATE(22), [sym_type_definition] = STATE(22), - [sym__declaration_modifiers] = STATE(697), - [sym__declaration_specifiers] = STATE(1120), + [sym__declaration_modifiers] = STATE(805), + [sym__declaration_specifiers] = STATE(1238), [sym_linkage_specification] = STATE(22), - [sym_attribute_specifier] = STATE(697), - [sym_attribute_declaration] = STATE(405), - [sym_ms_declspec_modifier] = STATE(697), - [sym_ms_call_modifier] = STATE(677), - [sym_compound_statement] = STATE(93), - [sym_storage_class_specifier] = STATE(697), - [sym_type_qualifier] = STATE(697), - [sym_alignas_qualifier] = STATE(703), - [sym_type_specifier] = STATE(817), - [sym_sized_type_specifier] = STATE(746), - [sym_enum_specifier] = STATE(746), - [sym_struct_specifier] = STATE(746), - [sym_union_specifier] = STATE(746), - [sym_attributed_statement] = STATE(118), + [sym_attribute_specifier] = STATE(805), + [sym_attribute_declaration] = STATE(468), + [sym_ms_declspec_modifier] = STATE(805), + [sym_macro_modifier] = STATE(777), + [sym_ms_call_modifier] = STATE(615), + [sym_compound_statement] = STATE(77), + [sym_storage_class_specifier] = STATE(805), + [sym_type_qualifier] = STATE(805), + [sym_alignas_qualifier] = STATE(799), + [sym_type_specifier] = STATE(896), + [sym_sized_type_specifier] = STATE(873), + [sym_enum_specifier] = STATE(873), + [sym_struct_specifier] = STATE(873), + [sym_union_specifier] = STATE(873), + [sym_attributed_statement] = STATE(151), [sym_statement] = STATE(22), - [sym_labeled_statement] = STATE(93), - [sym_expression_statement] = STATE(93), - [sym_if_statement] = STATE(93), - [sym_switch_statement] = STATE(93), - [sym_case_statement] = STATE(93), - [sym_while_statement] = STATE(93), - [sym_do_statement] = STATE(93), - [sym_for_statement] = STATE(93), - [sym_return_statement] = STATE(93), - [sym_break_statement] = STATE(93), - [sym_continue_statement] = STATE(93), - [sym_goto_statement] = STATE(93), - [sym_seh_try_statement] = STATE(93), - [sym_seh_leave_statement] = STATE(93), - [sym_expression] = STATE(1073), - [sym__string] = STATE(663), - [sym_comma_expression] = STATE(1821), - [sym_conditional_expression] = STATE(663), - [sym_assignment_expression] = STATE(663), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(663), - [sym_binary_expression] = STATE(663), - [sym_update_expression] = STATE(663), - [sym_cast_expression] = STATE(663), - [sym_sizeof_expression] = STATE(663), - [sym_alignof_expression] = STATE(663), - [sym_offsetof_expression] = STATE(663), - [sym_generic_expression] = STATE(663), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(663), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(663), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(663), - [sym_concatenated_string] = STATE(663), - [sym_string_literal] = STATE(659), - [sym_null] = STATE(663), + [sym_labeled_statement] = STATE(77), + [sym_expression_statement] = STATE(77), + [sym_if_statement] = STATE(77), + [sym_switch_statement] = STATE(77), + [sym_case_statement] = STATE(77), + [sym_while_statement] = STATE(77), + [sym_do_statement] = STATE(77), + [sym_for_statement] = STATE(77), + [sym_return_statement] = STATE(77), + [sym_break_statement] = STATE(77), + [sym_continue_statement] = STATE(77), + [sym_goto_statement] = STATE(77), + [sym_seh_try_statement] = STATE(77), + [sym_seh_leave_statement] = STATE(77), + [sym_expression] = STATE(1157), + [sym__string] = STATE(758), + [sym_comma_expression] = STATE(2232), + [sym_conditional_expression] = STATE(758), + [sym_assignment_expression] = STATE(758), + [sym_pointer_expression] = STATE(944), + [sym_unary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_cast_expression] = STATE(758), + [sym_sizeof_expression] = STATE(758), + [sym_alignof_expression] = STATE(758), + [sym_offsetof_expression] = STATE(758), + [sym_generic_expression] = STATE(758), + [sym_subscript_expression] = STATE(944), + [sym_call_expression] = STATE(944), + [sym_gnu_asm_expression] = STATE(758), + [sym_field_expression] = STATE(944), + [sym_compound_literal_expression] = STATE(758), + [sym_parenthesized_expression] = STATE(944), + [sym_char_literal] = STATE(758), + [sym_concatenated_string] = STATE(758), + [sym_string_literal] = STATE(671), + [sym_null] = STATE(758), [sym__empty_declaration] = STATE(22), - [sym_macro_type_specifier] = STATE(746), + [sym_macro_type_specifier] = STATE(873), [aux_sym_preproc_if_repeat1] = STATE(22), - [aux_sym__declaration_specifiers_repeat1] = STATE(697), - [aux_sym_attributed_declarator_repeat1] = STATE(365), - [aux_sym_sized_type_specifier_repeat1] = STATE(747), - [sym_identifier] = ACTIONS(107), - [aux_sym_preproc_include_token1] = ACTIONS(109), - [aux_sym_preproc_def_token1] = ACTIONS(111), - [aux_sym_preproc_if_token1] = ACTIONS(113), + [aux_sym__declaration_specifiers_repeat1] = STATE(805), + [aux_sym_attributed_declarator_repeat1] = STATE(439), + [aux_sym_sized_type_specifier_repeat1] = STATE(890), + [sym_identifier] = ACTIONS(109), + [aux_sym_preproc_include_token1] = ACTIONS(111), + [aux_sym_preproc_def_token1] = ACTIONS(113), + [aux_sym_preproc_if_token1] = ACTIONS(115), [aux_sym_preproc_if_token2] = ACTIONS(169), - [aux_sym_preproc_ifdef_token1] = ACTIONS(117), - [aux_sym_preproc_ifdef_token2] = ACTIONS(117), - [aux_sym_preproc_else_token1] = ACTIONS(119), - [aux_sym_preproc_elif_token1] = ACTIONS(121), - [aux_sym_preproc_elifdef_token1] = ACTIONS(123), - [aux_sym_preproc_elifdef_token2] = ACTIONS(123), - [sym_preproc_directive] = ACTIONS(125), + [aux_sym_preproc_ifdef_token1] = ACTIONS(119), + [aux_sym_preproc_ifdef_token2] = ACTIONS(119), + [aux_sym_preproc_else_token1] = ACTIONS(121), + [aux_sym_preproc_elif_token1] = ACTIONS(123), + [aux_sym_preproc_elifdef_token1] = ACTIONS(125), + [aux_sym_preproc_elifdef_token2] = ACTIONS(125), + [sym_preproc_directive] = ACTIONS(127), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -12505,369 +12966,188 @@ 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(127), - [anon_sym___extension__] = ACTIONS(129), - [anon_sym_typedef] = ACTIONS(131), - [anon_sym_extern] = ACTIONS(133), + [anon_sym_SEMI] = ACTIONS(129), + [anon_sym___extension__] = ACTIONS(131), + [anon_sym_typedef] = ACTIONS(133), + [anon_sym_extern] = ACTIONS(135), [anon_sym___attribute__] = ACTIONS(33), [anon_sym___scanf] = ACTIONS(35), [anon_sym___printf] = ACTIONS(35), [anon_sym___read_mostly] = ACTIONS(37), [anon_sym___must_hold] = ACTIONS(33), [anon_sym___ro_after_init] = ACTIONS(37), - [anon_sym___init] = ACTIONS(37), + [anon_sym___noreturn] = ACTIONS(37), + [anon_sym___cold] = ACTIONS(37), [anon_sym_LBRACK_LBRACK] = ACTIONS(39), [anon_sym___declspec] = ACTIONS(41), - [anon_sym___cdecl] = ACTIONS(43), - [anon_sym___clrcall] = ACTIONS(43), - [anon_sym___stdcall] = ACTIONS(43), - [anon_sym___fastcall] = ACTIONS(43), - [anon_sym___thiscall] = ACTIONS(43), - [anon_sym___vectorcall] = ACTIONS(43), - [anon_sym_LBRACE] = ACTIONS(135), - [anon_sym_signed] = ACTIONS(47), - [anon_sym_unsigned] = ACTIONS(47), - [anon_sym_long] = ACTIONS(47), - [anon_sym_short] = ACTIONS(47), - [anon_sym_static] = ACTIONS(49), - [anon_sym_auto] = ACTIONS(49), - [anon_sym_register] = ACTIONS(49), - [anon_sym_inline] = ACTIONS(49), - [anon_sym___inline] = ACTIONS(49), - [anon_sym___inline__] = ACTIONS(49), - [anon_sym___forceinline] = ACTIONS(49), - [anon_sym_thread_local] = ACTIONS(49), - [anon_sym___thread] = ACTIONS(49), - [anon_sym_const] = ACTIONS(51), - [anon_sym_constexpr] = ACTIONS(51), - [anon_sym_volatile] = ACTIONS(51), - [anon_sym_restrict] = ACTIONS(51), - [anon_sym___restrict__] = ACTIONS(51), - [anon_sym__Atomic] = ACTIONS(51), - [anon_sym__Noreturn] = ACTIONS(51), - [anon_sym_noreturn] = ACTIONS(51), - [anon_sym_alignas] = ACTIONS(53), - [anon_sym__Alignas] = ACTIONS(53), - [sym_primitive_type] = ACTIONS(55), - [anon_sym_enum] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [anon_sym_if] = ACTIONS(137), - [anon_sym_switch] = ACTIONS(139), - [anon_sym_case] = ACTIONS(141), - [anon_sym_default] = ACTIONS(143), - [anon_sym_while] = ACTIONS(145), - [anon_sym_do] = ACTIONS(147), - [anon_sym_for] = ACTIONS(149), - [anon_sym_return] = ACTIONS(151), - [anon_sym_break] = ACTIONS(153), - [anon_sym_continue] = ACTIONS(155), - [anon_sym_goto] = ACTIONS(157), - [anon_sym___try] = ACTIONS(159), - [anon_sym___leave] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [anon_sym___alignof__] = ACTIONS(89), - [anon_sym___alignof] = ACTIONS(89), - [anon_sym__alignof] = ACTIONS(89), - [anon_sym_alignof] = ACTIONS(89), - [anon_sym__Alignof] = ACTIONS(89), - [anon_sym_offsetof] = ACTIONS(91), - [anon_sym__Generic] = ACTIONS(93), - [anon_sym_asm] = ACTIONS(95), - [anon_sym___asm__] = ACTIONS(95), - [sym_number_literal] = ACTIONS(163), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(165), - [sym_false] = ACTIONS(165), - [anon_sym_NULL] = ACTIONS(105), - [anon_sym_nullptr] = ACTIONS(105), + [anon_sym___init] = ACTIONS(43), + [anon_sym___exit] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(137), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_const] = ACTIONS(53), + [anon_sym_constexpr] = ACTIONS(53), + [anon_sym_volatile] = ACTIONS(53), + [anon_sym_restrict] = ACTIONS(53), + [anon_sym___restrict__] = ACTIONS(53), + [anon_sym__Atomic] = ACTIONS(53), + [anon_sym__Noreturn] = ACTIONS(53), + [anon_sym_noreturn] = ACTIONS(53), + [anon_sym_alignas] = ACTIONS(55), + [anon_sym__Alignas] = ACTIONS(55), + [sym_primitive_type] = ACTIONS(57), + [anon_sym_enum] = ACTIONS(59), + [anon_sym_struct] = ACTIONS(61), + [anon_sym_union] = ACTIONS(63), + [anon_sym_if] = ACTIONS(139), + [anon_sym_switch] = ACTIONS(141), + [anon_sym_case] = ACTIONS(143), + [anon_sym_default] = ACTIONS(145), + [anon_sym_while] = ACTIONS(147), + [anon_sym_do] = ACTIONS(149), + [anon_sym_for] = ACTIONS(151), + [anon_sym_return] = ACTIONS(153), + [anon_sym_break] = ACTIONS(155), + [anon_sym_continue] = ACTIONS(157), + [anon_sym_goto] = ACTIONS(159), + [anon_sym___try] = ACTIONS(161), + [anon_sym___leave] = ACTIONS(163), + [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(87), + [anon_sym_sizeof] = ACTIONS(89), + [anon_sym___alignof__] = ACTIONS(91), + [anon_sym___alignof] = ACTIONS(91), + [anon_sym__alignof] = ACTIONS(91), + [anon_sym_alignof] = ACTIONS(91), + [anon_sym__Alignof] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(93), + [anon_sym__Generic] = ACTIONS(95), + [anon_sym_asm] = ACTIONS(97), + [anon_sym___asm__] = ACTIONS(97), + [sym_number_literal] = ACTIONS(165), + [anon_sym_L_SQUOTE] = ACTIONS(101), + [anon_sym_u_SQUOTE] = ACTIONS(101), + [anon_sym_U_SQUOTE] = ACTIONS(101), + [anon_sym_u8_SQUOTE] = ACTIONS(101), + [anon_sym_SQUOTE] = ACTIONS(101), + [anon_sym_L_DQUOTE] = ACTIONS(103), + [anon_sym_u_DQUOTE] = ACTIONS(103), + [anon_sym_U_DQUOTE] = ACTIONS(103), + [anon_sym_u8_DQUOTE] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_true] = ACTIONS(167), + [sym_false] = ACTIONS(167), + [anon_sym_NULL] = ACTIONS(107), + [anon_sym_nullptr] = ACTIONS(107), [sym_comment] = ACTIONS(3), }, - [5] = { - [sym__block_item] = STATE(16), - [sym_preproc_include] = STATE(16), - [sym_preproc_def] = STATE(16), - [sym_preproc_function_def] = STATE(16), - [sym_preproc_call] = STATE(16), - [sym_preproc_if] = STATE(16), - [sym_preproc_ifdef] = STATE(16), - [sym_preproc_else] = STATE(1987), - [sym_preproc_elif] = STATE(1987), - [sym_preproc_elifdef] = STATE(1987), - [sym_function_definition] = STATE(16), - [sym__old_style_function_definition] = STATE(117), - [sym_declaration] = STATE(16), - [sym_type_definition] = STATE(16), - [sym__declaration_modifiers] = STATE(697), - [sym__declaration_specifiers] = STATE(1120), - [sym_linkage_specification] = STATE(16), - [sym_attribute_specifier] = STATE(697), - [sym_attribute_declaration] = STATE(405), - [sym_ms_declspec_modifier] = STATE(697), - [sym_ms_call_modifier] = STATE(677), - [sym_compound_statement] = STATE(93), - [sym_storage_class_specifier] = STATE(697), - [sym_type_qualifier] = STATE(697), - [sym_alignas_qualifier] = STATE(703), - [sym_type_specifier] = STATE(817), - [sym_sized_type_specifier] = STATE(746), - [sym_enum_specifier] = STATE(746), - [sym_struct_specifier] = STATE(746), - [sym_union_specifier] = STATE(746), - [sym_attributed_statement] = STATE(118), - [sym_statement] = STATE(16), - [sym_labeled_statement] = STATE(93), - [sym_expression_statement] = STATE(93), - [sym_if_statement] = STATE(93), - [sym_switch_statement] = STATE(93), - [sym_case_statement] = STATE(93), - [sym_while_statement] = STATE(93), - [sym_do_statement] = STATE(93), - [sym_for_statement] = STATE(93), - [sym_return_statement] = STATE(93), - [sym_break_statement] = STATE(93), - [sym_continue_statement] = STATE(93), - [sym_goto_statement] = STATE(93), - [sym_seh_try_statement] = STATE(93), - [sym_seh_leave_statement] = STATE(93), - [sym_expression] = STATE(1073), - [sym__string] = STATE(663), - [sym_comma_expression] = STATE(1821), - [sym_conditional_expression] = STATE(663), - [sym_assignment_expression] = STATE(663), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(663), - [sym_binary_expression] = STATE(663), - [sym_update_expression] = STATE(663), - [sym_cast_expression] = STATE(663), - [sym_sizeof_expression] = STATE(663), - [sym_alignof_expression] = STATE(663), - [sym_offsetof_expression] = STATE(663), - [sym_generic_expression] = STATE(663), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(663), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(663), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(663), - [sym_concatenated_string] = STATE(663), - [sym_string_literal] = STATE(659), - [sym_null] = STATE(663), - [sym__empty_declaration] = STATE(16), - [sym_macro_type_specifier] = STATE(746), - [aux_sym_preproc_if_repeat1] = STATE(16), - [aux_sym__declaration_specifiers_repeat1] = STATE(697), - [aux_sym_attributed_declarator_repeat1] = STATE(365), - [aux_sym_sized_type_specifier_repeat1] = STATE(747), - [sym_identifier] = ACTIONS(107), - [aux_sym_preproc_include_token1] = ACTIONS(109), - [aux_sym_preproc_def_token1] = ACTIONS(111), - [aux_sym_preproc_if_token1] = ACTIONS(113), + [4] = { + [sym__block_item] = STATE(3), + [sym_preproc_include] = STATE(3), + [sym_preproc_def] = STATE(3), + [sym_preproc_function_def] = STATE(3), + [sym_preproc_call] = STATE(3), + [sym_preproc_if] = STATE(3), + [sym_preproc_ifdef] = STATE(3), + [sym_preproc_else] = STATE(2158), + [sym_preproc_elif] = STATE(2158), + [sym_preproc_elifdef] = STATE(2158), + [sym_function_definition] = STATE(3), + [sym__old_style_function_definition] = STATE(149), + [sym_declaration] = STATE(3), + [sym_type_definition] = STATE(3), + [sym__declaration_modifiers] = STATE(805), + [sym__declaration_specifiers] = STATE(1238), + [sym_linkage_specification] = STATE(3), + [sym_attribute_specifier] = STATE(805), + [sym_attribute_declaration] = STATE(468), + [sym_ms_declspec_modifier] = STATE(805), + [sym_macro_modifier] = STATE(777), + [sym_ms_call_modifier] = STATE(615), + [sym_compound_statement] = STATE(77), + [sym_storage_class_specifier] = STATE(805), + [sym_type_qualifier] = STATE(805), + [sym_alignas_qualifier] = STATE(799), + [sym_type_specifier] = STATE(896), + [sym_sized_type_specifier] = STATE(873), + [sym_enum_specifier] = STATE(873), + [sym_struct_specifier] = STATE(873), + [sym_union_specifier] = STATE(873), + [sym_attributed_statement] = STATE(151), + [sym_statement] = STATE(3), + [sym_labeled_statement] = STATE(77), + [sym_expression_statement] = STATE(77), + [sym_if_statement] = STATE(77), + [sym_switch_statement] = STATE(77), + [sym_case_statement] = STATE(77), + [sym_while_statement] = STATE(77), + [sym_do_statement] = STATE(77), + [sym_for_statement] = STATE(77), + [sym_return_statement] = STATE(77), + [sym_break_statement] = STATE(77), + [sym_continue_statement] = STATE(77), + [sym_goto_statement] = STATE(77), + [sym_seh_try_statement] = STATE(77), + [sym_seh_leave_statement] = STATE(77), + [sym_expression] = STATE(1157), + [sym__string] = STATE(758), + [sym_comma_expression] = STATE(2232), + [sym_conditional_expression] = STATE(758), + [sym_assignment_expression] = STATE(758), + [sym_pointer_expression] = STATE(944), + [sym_unary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_cast_expression] = STATE(758), + [sym_sizeof_expression] = STATE(758), + [sym_alignof_expression] = STATE(758), + [sym_offsetof_expression] = STATE(758), + [sym_generic_expression] = STATE(758), + [sym_subscript_expression] = STATE(944), + [sym_call_expression] = STATE(944), + [sym_gnu_asm_expression] = STATE(758), + [sym_field_expression] = STATE(944), + [sym_compound_literal_expression] = STATE(758), + [sym_parenthesized_expression] = STATE(944), + [sym_char_literal] = STATE(758), + [sym_concatenated_string] = STATE(758), + [sym_string_literal] = STATE(671), + [sym_null] = STATE(758), + [sym__empty_declaration] = STATE(3), + [sym_macro_type_specifier] = STATE(873), + [aux_sym_preproc_if_repeat1] = STATE(3), + [aux_sym__declaration_specifiers_repeat1] = STATE(805), + [aux_sym_attributed_declarator_repeat1] = STATE(439), + [aux_sym_sized_type_specifier_repeat1] = STATE(890), + [sym_identifier] = ACTIONS(109), + [aux_sym_preproc_include_token1] = ACTIONS(111), + [aux_sym_preproc_def_token1] = ACTIONS(113), + [aux_sym_preproc_if_token1] = ACTIONS(115), [aux_sym_preproc_if_token2] = ACTIONS(171), - [aux_sym_preproc_ifdef_token1] = ACTIONS(117), - [aux_sym_preproc_ifdef_token2] = ACTIONS(117), - [aux_sym_preproc_else_token1] = ACTIONS(119), - [aux_sym_preproc_elif_token1] = ACTIONS(121), - [aux_sym_preproc_elifdef_token1] = ACTIONS(123), - [aux_sym_preproc_elifdef_token2] = ACTIONS(123), - [sym_preproc_directive] = ACTIONS(125), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(127), - [anon_sym___extension__] = ACTIONS(129), - [anon_sym_typedef] = ACTIONS(131), - [anon_sym_extern] = ACTIONS(133), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym___scanf] = ACTIONS(35), - [anon_sym___printf] = ACTIONS(35), - [anon_sym___read_mostly] = ACTIONS(37), - [anon_sym___must_hold] = ACTIONS(33), - [anon_sym___ro_after_init] = ACTIONS(37), - [anon_sym___init] = ACTIONS(37), - [anon_sym_LBRACK_LBRACK] = ACTIONS(39), - [anon_sym___declspec] = ACTIONS(41), - [anon_sym___cdecl] = ACTIONS(43), - [anon_sym___clrcall] = ACTIONS(43), - [anon_sym___stdcall] = ACTIONS(43), - [anon_sym___fastcall] = ACTIONS(43), - [anon_sym___thiscall] = ACTIONS(43), - [anon_sym___vectorcall] = ACTIONS(43), - [anon_sym_LBRACE] = ACTIONS(135), - [anon_sym_signed] = ACTIONS(47), - [anon_sym_unsigned] = ACTIONS(47), - [anon_sym_long] = ACTIONS(47), - [anon_sym_short] = ACTIONS(47), - [anon_sym_static] = ACTIONS(49), - [anon_sym_auto] = ACTIONS(49), - [anon_sym_register] = ACTIONS(49), - [anon_sym_inline] = ACTIONS(49), - [anon_sym___inline] = ACTIONS(49), - [anon_sym___inline__] = ACTIONS(49), - [anon_sym___forceinline] = ACTIONS(49), - [anon_sym_thread_local] = ACTIONS(49), - [anon_sym___thread] = ACTIONS(49), - [anon_sym_const] = ACTIONS(51), - [anon_sym_constexpr] = ACTIONS(51), - [anon_sym_volatile] = ACTIONS(51), - [anon_sym_restrict] = ACTIONS(51), - [anon_sym___restrict__] = ACTIONS(51), - [anon_sym__Atomic] = ACTIONS(51), - [anon_sym__Noreturn] = ACTIONS(51), - [anon_sym_noreturn] = ACTIONS(51), - [anon_sym_alignas] = ACTIONS(53), - [anon_sym__Alignas] = ACTIONS(53), - [sym_primitive_type] = ACTIONS(55), - [anon_sym_enum] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [anon_sym_if] = ACTIONS(137), - [anon_sym_switch] = ACTIONS(139), - [anon_sym_case] = ACTIONS(141), - [anon_sym_default] = ACTIONS(143), - [anon_sym_while] = ACTIONS(145), - [anon_sym_do] = ACTIONS(147), - [anon_sym_for] = ACTIONS(149), - [anon_sym_return] = ACTIONS(151), - [anon_sym_break] = ACTIONS(153), - [anon_sym_continue] = ACTIONS(155), - [anon_sym_goto] = ACTIONS(157), - [anon_sym___try] = ACTIONS(159), - [anon_sym___leave] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [anon_sym___alignof__] = ACTIONS(89), - [anon_sym___alignof] = ACTIONS(89), - [anon_sym__alignof] = ACTIONS(89), - [anon_sym_alignof] = ACTIONS(89), - [anon_sym__Alignof] = ACTIONS(89), - [anon_sym_offsetof] = ACTIONS(91), - [anon_sym__Generic] = ACTIONS(93), - [anon_sym_asm] = ACTIONS(95), - [anon_sym___asm__] = ACTIONS(95), - [sym_number_literal] = ACTIONS(163), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(165), - [sym_false] = ACTIONS(165), - [anon_sym_NULL] = ACTIONS(105), - [anon_sym_nullptr] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - }, - [6] = { - [sym__block_item] = STATE(18), - [sym_preproc_include] = STATE(18), - [sym_preproc_def] = STATE(18), - [sym_preproc_function_def] = STATE(18), - [sym_preproc_call] = STATE(18), - [sym_preproc_if] = STATE(18), - [sym_preproc_ifdef] = STATE(18), - [sym_preproc_else] = STATE(1970), - [sym_preproc_elif] = STATE(1970), - [sym_preproc_elifdef] = STATE(1970), - [sym_function_definition] = STATE(18), - [sym__old_style_function_definition] = STATE(117), - [sym_declaration] = STATE(18), - [sym_type_definition] = STATE(18), - [sym__declaration_modifiers] = STATE(697), - [sym__declaration_specifiers] = STATE(1120), - [sym_linkage_specification] = STATE(18), - [sym_attribute_specifier] = STATE(697), - [sym_attribute_declaration] = STATE(405), - [sym_ms_declspec_modifier] = STATE(697), - [sym_ms_call_modifier] = STATE(677), - [sym_compound_statement] = STATE(93), - [sym_storage_class_specifier] = STATE(697), - [sym_type_qualifier] = STATE(697), - [sym_alignas_qualifier] = STATE(703), - [sym_type_specifier] = STATE(817), - [sym_sized_type_specifier] = STATE(746), - [sym_enum_specifier] = STATE(746), - [sym_struct_specifier] = STATE(746), - [sym_union_specifier] = STATE(746), - [sym_attributed_statement] = STATE(118), - [sym_statement] = STATE(18), - [sym_labeled_statement] = STATE(93), - [sym_expression_statement] = STATE(93), - [sym_if_statement] = STATE(93), - [sym_switch_statement] = STATE(93), - [sym_case_statement] = STATE(93), - [sym_while_statement] = STATE(93), - [sym_do_statement] = STATE(93), - [sym_for_statement] = STATE(93), - [sym_return_statement] = STATE(93), - [sym_break_statement] = STATE(93), - [sym_continue_statement] = STATE(93), - [sym_goto_statement] = STATE(93), - [sym_seh_try_statement] = STATE(93), - [sym_seh_leave_statement] = STATE(93), - [sym_expression] = STATE(1073), - [sym__string] = STATE(663), - [sym_comma_expression] = STATE(1821), - [sym_conditional_expression] = STATE(663), - [sym_assignment_expression] = STATE(663), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(663), - [sym_binary_expression] = STATE(663), - [sym_update_expression] = STATE(663), - [sym_cast_expression] = STATE(663), - [sym_sizeof_expression] = STATE(663), - [sym_alignof_expression] = STATE(663), - [sym_offsetof_expression] = STATE(663), - [sym_generic_expression] = STATE(663), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(663), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(663), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(663), - [sym_concatenated_string] = STATE(663), - [sym_string_literal] = STATE(659), - [sym_null] = STATE(663), - [sym__empty_declaration] = STATE(18), - [sym_macro_type_specifier] = STATE(746), - [aux_sym_preproc_if_repeat1] = STATE(18), - [aux_sym__declaration_specifiers_repeat1] = STATE(697), - [aux_sym_attributed_declarator_repeat1] = STATE(365), - [aux_sym_sized_type_specifier_repeat1] = STATE(747), - [sym_identifier] = ACTIONS(107), - [aux_sym_preproc_include_token1] = ACTIONS(109), - [aux_sym_preproc_def_token1] = ACTIONS(111), - [aux_sym_preproc_if_token1] = ACTIONS(113), - [aux_sym_preproc_if_token2] = ACTIONS(173), - [aux_sym_preproc_ifdef_token1] = ACTIONS(117), - [aux_sym_preproc_ifdef_token2] = ACTIONS(117), - [aux_sym_preproc_else_token1] = ACTIONS(119), - [aux_sym_preproc_elif_token1] = ACTIONS(121), - [aux_sym_preproc_elifdef_token1] = ACTIONS(123), - [aux_sym_preproc_elifdef_token2] = ACTIONS(123), - [sym_preproc_directive] = ACTIONS(125), + [aux_sym_preproc_ifdef_token1] = ACTIONS(119), + [aux_sym_preproc_ifdef_token2] = ACTIONS(119), + [aux_sym_preproc_else_token1] = ACTIONS(121), + [aux_sym_preproc_elif_token1] = ACTIONS(123), + [aux_sym_preproc_elifdef_token1] = ACTIONS(125), + [aux_sym_preproc_elifdef_token2] = ACTIONS(125), + [sym_preproc_directive] = ACTIONS(127), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -12875,96 +13155,99 @@ 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(127), - [anon_sym___extension__] = ACTIONS(129), - [anon_sym_typedef] = ACTIONS(131), - [anon_sym_extern] = ACTIONS(133), + [anon_sym_SEMI] = ACTIONS(129), + [anon_sym___extension__] = ACTIONS(131), + [anon_sym_typedef] = ACTIONS(133), + [anon_sym_extern] = ACTIONS(135), [anon_sym___attribute__] = ACTIONS(33), [anon_sym___scanf] = ACTIONS(35), [anon_sym___printf] = ACTIONS(35), [anon_sym___read_mostly] = ACTIONS(37), [anon_sym___must_hold] = ACTIONS(33), [anon_sym___ro_after_init] = ACTIONS(37), - [anon_sym___init] = ACTIONS(37), + [anon_sym___noreturn] = ACTIONS(37), + [anon_sym___cold] = ACTIONS(37), [anon_sym_LBRACK_LBRACK] = ACTIONS(39), [anon_sym___declspec] = ACTIONS(41), - [anon_sym___cdecl] = ACTIONS(43), - [anon_sym___clrcall] = ACTIONS(43), - [anon_sym___stdcall] = ACTIONS(43), - [anon_sym___fastcall] = ACTIONS(43), - [anon_sym___thiscall] = ACTIONS(43), - [anon_sym___vectorcall] = ACTIONS(43), - [anon_sym_LBRACE] = ACTIONS(135), - [anon_sym_signed] = ACTIONS(47), - [anon_sym_unsigned] = ACTIONS(47), - [anon_sym_long] = ACTIONS(47), - [anon_sym_short] = ACTIONS(47), - [anon_sym_static] = ACTIONS(49), - [anon_sym_auto] = ACTIONS(49), - [anon_sym_register] = ACTIONS(49), - [anon_sym_inline] = ACTIONS(49), - [anon_sym___inline] = ACTIONS(49), - [anon_sym___inline__] = ACTIONS(49), - [anon_sym___forceinline] = ACTIONS(49), - [anon_sym_thread_local] = ACTIONS(49), - [anon_sym___thread] = ACTIONS(49), - [anon_sym_const] = ACTIONS(51), - [anon_sym_constexpr] = ACTIONS(51), - [anon_sym_volatile] = ACTIONS(51), - [anon_sym_restrict] = ACTIONS(51), - [anon_sym___restrict__] = ACTIONS(51), - [anon_sym__Atomic] = ACTIONS(51), - [anon_sym__Noreturn] = ACTIONS(51), - [anon_sym_noreturn] = ACTIONS(51), - [anon_sym_alignas] = ACTIONS(53), - [anon_sym__Alignas] = ACTIONS(53), - [sym_primitive_type] = ACTIONS(55), - [anon_sym_enum] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [anon_sym_if] = ACTIONS(137), - [anon_sym_switch] = ACTIONS(139), - [anon_sym_case] = ACTIONS(141), - [anon_sym_default] = ACTIONS(143), - [anon_sym_while] = ACTIONS(145), - [anon_sym_do] = ACTIONS(147), - [anon_sym_for] = ACTIONS(149), - [anon_sym_return] = ACTIONS(151), - [anon_sym_break] = ACTIONS(153), - [anon_sym_continue] = ACTIONS(155), - [anon_sym_goto] = ACTIONS(157), - [anon_sym___try] = ACTIONS(159), - [anon_sym___leave] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [anon_sym___alignof__] = ACTIONS(89), - [anon_sym___alignof] = ACTIONS(89), - [anon_sym__alignof] = ACTIONS(89), - [anon_sym_alignof] = ACTIONS(89), - [anon_sym__Alignof] = ACTIONS(89), - [anon_sym_offsetof] = ACTIONS(91), - [anon_sym__Generic] = ACTIONS(93), - [anon_sym_asm] = ACTIONS(95), - [anon_sym___asm__] = ACTIONS(95), - [sym_number_literal] = ACTIONS(163), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(165), - [sym_false] = ACTIONS(165), - [anon_sym_NULL] = ACTIONS(105), - [anon_sym_nullptr] = ACTIONS(105), + [anon_sym___init] = ACTIONS(43), + [anon_sym___exit] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(137), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_const] = ACTIONS(53), + [anon_sym_constexpr] = ACTIONS(53), + [anon_sym_volatile] = ACTIONS(53), + [anon_sym_restrict] = ACTIONS(53), + [anon_sym___restrict__] = ACTIONS(53), + [anon_sym__Atomic] = ACTIONS(53), + [anon_sym__Noreturn] = ACTIONS(53), + [anon_sym_noreturn] = ACTIONS(53), + [anon_sym_alignas] = ACTIONS(55), + [anon_sym__Alignas] = ACTIONS(55), + [sym_primitive_type] = ACTIONS(57), + [anon_sym_enum] = ACTIONS(59), + [anon_sym_struct] = ACTIONS(61), + [anon_sym_union] = ACTIONS(63), + [anon_sym_if] = ACTIONS(139), + [anon_sym_switch] = ACTIONS(141), + [anon_sym_case] = ACTIONS(143), + [anon_sym_default] = ACTIONS(145), + [anon_sym_while] = ACTIONS(147), + [anon_sym_do] = ACTIONS(149), + [anon_sym_for] = ACTIONS(151), + [anon_sym_return] = ACTIONS(153), + [anon_sym_break] = ACTIONS(155), + [anon_sym_continue] = ACTIONS(157), + [anon_sym_goto] = ACTIONS(159), + [anon_sym___try] = ACTIONS(161), + [anon_sym___leave] = ACTIONS(163), + [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(87), + [anon_sym_sizeof] = ACTIONS(89), + [anon_sym___alignof__] = ACTIONS(91), + [anon_sym___alignof] = ACTIONS(91), + [anon_sym__alignof] = ACTIONS(91), + [anon_sym_alignof] = ACTIONS(91), + [anon_sym__Alignof] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(93), + [anon_sym__Generic] = ACTIONS(95), + [anon_sym_asm] = ACTIONS(97), + [anon_sym___asm__] = ACTIONS(97), + [sym_number_literal] = ACTIONS(165), + [anon_sym_L_SQUOTE] = ACTIONS(101), + [anon_sym_u_SQUOTE] = ACTIONS(101), + [anon_sym_U_SQUOTE] = ACTIONS(101), + [anon_sym_u8_SQUOTE] = ACTIONS(101), + [anon_sym_SQUOTE] = ACTIONS(101), + [anon_sym_L_DQUOTE] = ACTIONS(103), + [anon_sym_u_DQUOTE] = ACTIONS(103), + [anon_sym_U_DQUOTE] = ACTIONS(103), + [anon_sym_u8_DQUOTE] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_true] = ACTIONS(167), + [sym_false] = ACTIONS(167), + [anon_sym_NULL] = ACTIONS(107), + [anon_sym_nullptr] = ACTIONS(107), [sym_comment] = ACTIONS(3), }, - [7] = { + [5] = { [sym__block_item] = STATE(22), [sym_preproc_include] = STATE(22), [sym_preproc_def] = STATE(22), @@ -12972,272 +13255,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_call] = STATE(22), [sym_preproc_if] = STATE(22), [sym_preproc_ifdef] = STATE(22), - [sym_preproc_else] = STATE(2054), - [sym_preproc_elif] = STATE(2054), - [sym_preproc_elifdef] = STATE(2054), + [sym_preproc_else] = STATE(2161), + [sym_preproc_elif] = STATE(2161), + [sym_preproc_elifdef] = STATE(2161), [sym_function_definition] = STATE(22), - [sym__old_style_function_definition] = STATE(117), + [sym__old_style_function_definition] = STATE(149), [sym_declaration] = STATE(22), [sym_type_definition] = STATE(22), - [sym__declaration_modifiers] = STATE(697), - [sym__declaration_specifiers] = STATE(1120), + [sym__declaration_modifiers] = STATE(805), + [sym__declaration_specifiers] = STATE(1238), [sym_linkage_specification] = STATE(22), - [sym_attribute_specifier] = STATE(697), - [sym_attribute_declaration] = STATE(405), - [sym_ms_declspec_modifier] = STATE(697), - [sym_ms_call_modifier] = STATE(677), - [sym_compound_statement] = STATE(93), - [sym_storage_class_specifier] = STATE(697), - [sym_type_qualifier] = STATE(697), - [sym_alignas_qualifier] = STATE(703), - [sym_type_specifier] = STATE(817), - [sym_sized_type_specifier] = STATE(746), - [sym_enum_specifier] = STATE(746), - [sym_struct_specifier] = STATE(746), - [sym_union_specifier] = STATE(746), - [sym_attributed_statement] = STATE(118), + [sym_attribute_specifier] = STATE(805), + [sym_attribute_declaration] = STATE(468), + [sym_ms_declspec_modifier] = STATE(805), + [sym_macro_modifier] = STATE(777), + [sym_ms_call_modifier] = STATE(615), + [sym_compound_statement] = STATE(77), + [sym_storage_class_specifier] = STATE(805), + [sym_type_qualifier] = STATE(805), + [sym_alignas_qualifier] = STATE(799), + [sym_type_specifier] = STATE(896), + [sym_sized_type_specifier] = STATE(873), + [sym_enum_specifier] = STATE(873), + [sym_struct_specifier] = STATE(873), + [sym_union_specifier] = STATE(873), + [sym_attributed_statement] = STATE(151), [sym_statement] = STATE(22), - [sym_labeled_statement] = STATE(93), - [sym_expression_statement] = STATE(93), - [sym_if_statement] = STATE(93), - [sym_switch_statement] = STATE(93), - [sym_case_statement] = STATE(93), - [sym_while_statement] = STATE(93), - [sym_do_statement] = STATE(93), - [sym_for_statement] = STATE(93), - [sym_return_statement] = STATE(93), - [sym_break_statement] = STATE(93), - [sym_continue_statement] = STATE(93), - [sym_goto_statement] = STATE(93), - [sym_seh_try_statement] = STATE(93), - [sym_seh_leave_statement] = STATE(93), - [sym_expression] = STATE(1073), - [sym__string] = STATE(663), - [sym_comma_expression] = STATE(1821), - [sym_conditional_expression] = STATE(663), - [sym_assignment_expression] = STATE(663), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(663), - [sym_binary_expression] = STATE(663), - [sym_update_expression] = STATE(663), - [sym_cast_expression] = STATE(663), - [sym_sizeof_expression] = STATE(663), - [sym_alignof_expression] = STATE(663), - [sym_offsetof_expression] = STATE(663), - [sym_generic_expression] = STATE(663), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(663), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(663), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(663), - [sym_concatenated_string] = STATE(663), - [sym_string_literal] = STATE(659), - [sym_null] = STATE(663), + [sym_labeled_statement] = STATE(77), + [sym_expression_statement] = STATE(77), + [sym_if_statement] = STATE(77), + [sym_switch_statement] = STATE(77), + [sym_case_statement] = STATE(77), + [sym_while_statement] = STATE(77), + [sym_do_statement] = STATE(77), + [sym_for_statement] = STATE(77), + [sym_return_statement] = STATE(77), + [sym_break_statement] = STATE(77), + [sym_continue_statement] = STATE(77), + [sym_goto_statement] = STATE(77), + [sym_seh_try_statement] = STATE(77), + [sym_seh_leave_statement] = STATE(77), + [sym_expression] = STATE(1157), + [sym__string] = STATE(758), + [sym_comma_expression] = STATE(2232), + [sym_conditional_expression] = STATE(758), + [sym_assignment_expression] = STATE(758), + [sym_pointer_expression] = STATE(944), + [sym_unary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_cast_expression] = STATE(758), + [sym_sizeof_expression] = STATE(758), + [sym_alignof_expression] = STATE(758), + [sym_offsetof_expression] = STATE(758), + [sym_generic_expression] = STATE(758), + [sym_subscript_expression] = STATE(944), + [sym_call_expression] = STATE(944), + [sym_gnu_asm_expression] = STATE(758), + [sym_field_expression] = STATE(944), + [sym_compound_literal_expression] = STATE(758), + [sym_parenthesized_expression] = STATE(944), + [sym_char_literal] = STATE(758), + [sym_concatenated_string] = STATE(758), + [sym_string_literal] = STATE(671), + [sym_null] = STATE(758), [sym__empty_declaration] = STATE(22), - [sym_macro_type_specifier] = STATE(746), + [sym_macro_type_specifier] = STATE(873), [aux_sym_preproc_if_repeat1] = STATE(22), - [aux_sym__declaration_specifiers_repeat1] = STATE(697), - [aux_sym_attributed_declarator_repeat1] = STATE(365), - [aux_sym_sized_type_specifier_repeat1] = STATE(747), - [sym_identifier] = ACTIONS(107), - [aux_sym_preproc_include_token1] = ACTIONS(109), - [aux_sym_preproc_def_token1] = ACTIONS(111), - [aux_sym_preproc_if_token1] = ACTIONS(113), - [aux_sym_preproc_if_token2] = ACTIONS(175), - [aux_sym_preproc_ifdef_token1] = ACTIONS(117), - [aux_sym_preproc_ifdef_token2] = ACTIONS(117), - [aux_sym_preproc_else_token1] = ACTIONS(119), - [aux_sym_preproc_elif_token1] = ACTIONS(121), - [aux_sym_preproc_elifdef_token1] = ACTIONS(123), - [aux_sym_preproc_elifdef_token2] = ACTIONS(123), - [sym_preproc_directive] = ACTIONS(125), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(127), - [anon_sym___extension__] = ACTIONS(129), - [anon_sym_typedef] = ACTIONS(131), - [anon_sym_extern] = ACTIONS(133), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym___scanf] = ACTIONS(35), - [anon_sym___printf] = ACTIONS(35), - [anon_sym___read_mostly] = ACTIONS(37), - [anon_sym___must_hold] = ACTIONS(33), - [anon_sym___ro_after_init] = ACTIONS(37), - [anon_sym___init] = ACTIONS(37), - [anon_sym_LBRACK_LBRACK] = ACTIONS(39), - [anon_sym___declspec] = ACTIONS(41), - [anon_sym___cdecl] = ACTIONS(43), - [anon_sym___clrcall] = ACTIONS(43), - [anon_sym___stdcall] = ACTIONS(43), - [anon_sym___fastcall] = ACTIONS(43), - [anon_sym___thiscall] = ACTIONS(43), - [anon_sym___vectorcall] = ACTIONS(43), - [anon_sym_LBRACE] = ACTIONS(135), - [anon_sym_signed] = ACTIONS(47), - [anon_sym_unsigned] = ACTIONS(47), - [anon_sym_long] = ACTIONS(47), - [anon_sym_short] = ACTIONS(47), - [anon_sym_static] = ACTIONS(49), - [anon_sym_auto] = ACTIONS(49), - [anon_sym_register] = ACTIONS(49), - [anon_sym_inline] = ACTIONS(49), - [anon_sym___inline] = ACTIONS(49), - [anon_sym___inline__] = ACTIONS(49), - [anon_sym___forceinline] = ACTIONS(49), - [anon_sym_thread_local] = ACTIONS(49), - [anon_sym___thread] = ACTIONS(49), - [anon_sym_const] = ACTIONS(51), - [anon_sym_constexpr] = ACTIONS(51), - [anon_sym_volatile] = ACTIONS(51), - [anon_sym_restrict] = ACTIONS(51), - [anon_sym___restrict__] = ACTIONS(51), - [anon_sym__Atomic] = ACTIONS(51), - [anon_sym__Noreturn] = ACTIONS(51), - [anon_sym_noreturn] = ACTIONS(51), - [anon_sym_alignas] = ACTIONS(53), - [anon_sym__Alignas] = ACTIONS(53), - [sym_primitive_type] = ACTIONS(55), - [anon_sym_enum] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [anon_sym_if] = ACTIONS(137), - [anon_sym_switch] = ACTIONS(139), - [anon_sym_case] = ACTIONS(141), - [anon_sym_default] = ACTIONS(143), - [anon_sym_while] = ACTIONS(145), - [anon_sym_do] = ACTIONS(147), - [anon_sym_for] = ACTIONS(149), - [anon_sym_return] = ACTIONS(151), - [anon_sym_break] = ACTIONS(153), - [anon_sym_continue] = ACTIONS(155), - [anon_sym_goto] = ACTIONS(157), - [anon_sym___try] = ACTIONS(159), - [anon_sym___leave] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [anon_sym___alignof__] = ACTIONS(89), - [anon_sym___alignof] = ACTIONS(89), - [anon_sym__alignof] = ACTIONS(89), - [anon_sym_alignof] = ACTIONS(89), - [anon_sym__Alignof] = ACTIONS(89), - [anon_sym_offsetof] = ACTIONS(91), - [anon_sym__Generic] = ACTIONS(93), - [anon_sym_asm] = ACTIONS(95), - [anon_sym___asm__] = ACTIONS(95), - [sym_number_literal] = ACTIONS(163), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(165), - [sym_false] = ACTIONS(165), - [anon_sym_NULL] = ACTIONS(105), - [anon_sym_nullptr] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - }, - [8] = { - [sym__block_item] = STATE(13), - [sym_preproc_include] = STATE(13), - [sym_preproc_def] = STATE(13), - [sym_preproc_function_def] = STATE(13), - [sym_preproc_call] = STATE(13), - [sym_preproc_if] = STATE(13), - [sym_preproc_ifdef] = STATE(13), - [sym_preproc_else] = STATE(2058), - [sym_preproc_elif] = STATE(2058), - [sym_preproc_elifdef] = STATE(2058), - [sym_function_definition] = STATE(13), - [sym__old_style_function_definition] = STATE(117), - [sym_declaration] = STATE(13), - [sym_type_definition] = STATE(13), - [sym__declaration_modifiers] = STATE(697), - [sym__declaration_specifiers] = STATE(1120), - [sym_linkage_specification] = STATE(13), - [sym_attribute_specifier] = STATE(697), - [sym_attribute_declaration] = STATE(405), - [sym_ms_declspec_modifier] = STATE(697), - [sym_ms_call_modifier] = STATE(677), - [sym_compound_statement] = STATE(93), - [sym_storage_class_specifier] = STATE(697), - [sym_type_qualifier] = STATE(697), - [sym_alignas_qualifier] = STATE(703), - [sym_type_specifier] = STATE(817), - [sym_sized_type_specifier] = STATE(746), - [sym_enum_specifier] = STATE(746), - [sym_struct_specifier] = STATE(746), - [sym_union_specifier] = STATE(746), - [sym_attributed_statement] = STATE(118), - [sym_statement] = STATE(13), - [sym_labeled_statement] = STATE(93), - [sym_expression_statement] = STATE(93), - [sym_if_statement] = STATE(93), - [sym_switch_statement] = STATE(93), - [sym_case_statement] = STATE(93), - [sym_while_statement] = STATE(93), - [sym_do_statement] = STATE(93), - [sym_for_statement] = STATE(93), - [sym_return_statement] = STATE(93), - [sym_break_statement] = STATE(93), - [sym_continue_statement] = STATE(93), - [sym_goto_statement] = STATE(93), - [sym_seh_try_statement] = STATE(93), - [sym_seh_leave_statement] = STATE(93), - [sym_expression] = STATE(1073), - [sym__string] = STATE(663), - [sym_comma_expression] = STATE(1821), - [sym_conditional_expression] = STATE(663), - [sym_assignment_expression] = STATE(663), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(663), - [sym_binary_expression] = STATE(663), - [sym_update_expression] = STATE(663), - [sym_cast_expression] = STATE(663), - [sym_sizeof_expression] = STATE(663), - [sym_alignof_expression] = STATE(663), - [sym_offsetof_expression] = STATE(663), - [sym_generic_expression] = STATE(663), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(663), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(663), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(663), - [sym_concatenated_string] = STATE(663), - [sym_string_literal] = STATE(659), - [sym_null] = STATE(663), - [sym__empty_declaration] = STATE(13), - [sym_macro_type_specifier] = STATE(746), - [aux_sym_preproc_if_repeat1] = STATE(13), - [aux_sym__declaration_specifiers_repeat1] = STATE(697), - [aux_sym_attributed_declarator_repeat1] = STATE(365), - [aux_sym_sized_type_specifier_repeat1] = STATE(747), - [sym_identifier] = ACTIONS(107), - [aux_sym_preproc_include_token1] = ACTIONS(109), - [aux_sym_preproc_def_token1] = ACTIONS(111), - [aux_sym_preproc_if_token1] = ACTIONS(113), - [aux_sym_preproc_if_token2] = ACTIONS(177), - [aux_sym_preproc_ifdef_token1] = ACTIONS(117), - [aux_sym_preproc_ifdef_token2] = ACTIONS(117), - [aux_sym_preproc_else_token1] = ACTIONS(119), - [aux_sym_preproc_elif_token1] = ACTIONS(121), - [aux_sym_preproc_elifdef_token1] = ACTIONS(123), - [aux_sym_preproc_elifdef_token2] = ACTIONS(123), - [sym_preproc_directive] = ACTIONS(125), + [aux_sym__declaration_specifiers_repeat1] = STATE(805), + [aux_sym_attributed_declarator_repeat1] = STATE(439), + [aux_sym_sized_type_specifier_repeat1] = STATE(890), + [sym_identifier] = ACTIONS(109), + [aux_sym_preproc_include_token1] = ACTIONS(111), + [aux_sym_preproc_def_token1] = ACTIONS(113), + [aux_sym_preproc_if_token1] = ACTIONS(115), + [aux_sym_preproc_if_token2] = ACTIONS(173), + [aux_sym_preproc_ifdef_token1] = ACTIONS(119), + [aux_sym_preproc_ifdef_token2] = ACTIONS(119), + [aux_sym_preproc_else_token1] = ACTIONS(121), + [aux_sym_preproc_elif_token1] = ACTIONS(123), + [aux_sym_preproc_elifdef_token1] = ACTIONS(125), + [aux_sym_preproc_elifdef_token2] = ACTIONS(125), + [sym_preproc_directive] = ACTIONS(127), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -13245,96 +13344,99 @@ 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(127), - [anon_sym___extension__] = ACTIONS(129), - [anon_sym_typedef] = ACTIONS(131), - [anon_sym_extern] = ACTIONS(133), + [anon_sym_SEMI] = ACTIONS(129), + [anon_sym___extension__] = ACTIONS(131), + [anon_sym_typedef] = ACTIONS(133), + [anon_sym_extern] = ACTIONS(135), [anon_sym___attribute__] = ACTIONS(33), [anon_sym___scanf] = ACTIONS(35), [anon_sym___printf] = ACTIONS(35), [anon_sym___read_mostly] = ACTIONS(37), [anon_sym___must_hold] = ACTIONS(33), [anon_sym___ro_after_init] = ACTIONS(37), - [anon_sym___init] = ACTIONS(37), + [anon_sym___noreturn] = ACTIONS(37), + [anon_sym___cold] = ACTIONS(37), [anon_sym_LBRACK_LBRACK] = ACTIONS(39), [anon_sym___declspec] = ACTIONS(41), - [anon_sym___cdecl] = ACTIONS(43), - [anon_sym___clrcall] = ACTIONS(43), - [anon_sym___stdcall] = ACTIONS(43), - [anon_sym___fastcall] = ACTIONS(43), - [anon_sym___thiscall] = ACTIONS(43), - [anon_sym___vectorcall] = ACTIONS(43), - [anon_sym_LBRACE] = ACTIONS(135), - [anon_sym_signed] = ACTIONS(47), - [anon_sym_unsigned] = ACTIONS(47), - [anon_sym_long] = ACTIONS(47), - [anon_sym_short] = ACTIONS(47), - [anon_sym_static] = ACTIONS(49), - [anon_sym_auto] = ACTIONS(49), - [anon_sym_register] = ACTIONS(49), - [anon_sym_inline] = ACTIONS(49), - [anon_sym___inline] = ACTIONS(49), - [anon_sym___inline__] = ACTIONS(49), - [anon_sym___forceinline] = ACTIONS(49), - [anon_sym_thread_local] = ACTIONS(49), - [anon_sym___thread] = ACTIONS(49), - [anon_sym_const] = ACTIONS(51), - [anon_sym_constexpr] = ACTIONS(51), - [anon_sym_volatile] = ACTIONS(51), - [anon_sym_restrict] = ACTIONS(51), - [anon_sym___restrict__] = ACTIONS(51), - [anon_sym__Atomic] = ACTIONS(51), - [anon_sym__Noreturn] = ACTIONS(51), - [anon_sym_noreturn] = ACTIONS(51), - [anon_sym_alignas] = ACTIONS(53), - [anon_sym__Alignas] = ACTIONS(53), - [sym_primitive_type] = ACTIONS(55), - [anon_sym_enum] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [anon_sym_if] = ACTIONS(137), - [anon_sym_switch] = ACTIONS(139), - [anon_sym_case] = ACTIONS(141), - [anon_sym_default] = ACTIONS(143), - [anon_sym_while] = ACTIONS(145), - [anon_sym_do] = ACTIONS(147), - [anon_sym_for] = ACTIONS(149), - [anon_sym_return] = ACTIONS(151), - [anon_sym_break] = ACTIONS(153), - [anon_sym_continue] = ACTIONS(155), - [anon_sym_goto] = ACTIONS(157), - [anon_sym___try] = ACTIONS(159), - [anon_sym___leave] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [anon_sym___alignof__] = ACTIONS(89), - [anon_sym___alignof] = ACTIONS(89), - [anon_sym__alignof] = ACTIONS(89), - [anon_sym_alignof] = ACTIONS(89), - [anon_sym__Alignof] = ACTIONS(89), - [anon_sym_offsetof] = ACTIONS(91), - [anon_sym__Generic] = ACTIONS(93), - [anon_sym_asm] = ACTIONS(95), - [anon_sym___asm__] = ACTIONS(95), - [sym_number_literal] = ACTIONS(163), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(165), - [sym_false] = ACTIONS(165), - [anon_sym_NULL] = ACTIONS(105), - [anon_sym_nullptr] = ACTIONS(105), + [anon_sym___init] = ACTIONS(43), + [anon_sym___exit] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(137), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_const] = ACTIONS(53), + [anon_sym_constexpr] = ACTIONS(53), + [anon_sym_volatile] = ACTIONS(53), + [anon_sym_restrict] = ACTIONS(53), + [anon_sym___restrict__] = ACTIONS(53), + [anon_sym__Atomic] = ACTIONS(53), + [anon_sym__Noreturn] = ACTIONS(53), + [anon_sym_noreturn] = ACTIONS(53), + [anon_sym_alignas] = ACTIONS(55), + [anon_sym__Alignas] = ACTIONS(55), + [sym_primitive_type] = ACTIONS(57), + [anon_sym_enum] = ACTIONS(59), + [anon_sym_struct] = ACTIONS(61), + [anon_sym_union] = ACTIONS(63), + [anon_sym_if] = ACTIONS(139), + [anon_sym_switch] = ACTIONS(141), + [anon_sym_case] = ACTIONS(143), + [anon_sym_default] = ACTIONS(145), + [anon_sym_while] = ACTIONS(147), + [anon_sym_do] = ACTIONS(149), + [anon_sym_for] = ACTIONS(151), + [anon_sym_return] = ACTIONS(153), + [anon_sym_break] = ACTIONS(155), + [anon_sym_continue] = ACTIONS(157), + [anon_sym_goto] = ACTIONS(159), + [anon_sym___try] = ACTIONS(161), + [anon_sym___leave] = ACTIONS(163), + [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(87), + [anon_sym_sizeof] = ACTIONS(89), + [anon_sym___alignof__] = ACTIONS(91), + [anon_sym___alignof] = ACTIONS(91), + [anon_sym__alignof] = ACTIONS(91), + [anon_sym_alignof] = ACTIONS(91), + [anon_sym__Alignof] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(93), + [anon_sym__Generic] = ACTIONS(95), + [anon_sym_asm] = ACTIONS(97), + [anon_sym___asm__] = ACTIONS(97), + [sym_number_literal] = ACTIONS(165), + [anon_sym_L_SQUOTE] = ACTIONS(101), + [anon_sym_u_SQUOTE] = ACTIONS(101), + [anon_sym_U_SQUOTE] = ACTIONS(101), + [anon_sym_u8_SQUOTE] = ACTIONS(101), + [anon_sym_SQUOTE] = ACTIONS(101), + [anon_sym_L_DQUOTE] = ACTIONS(103), + [anon_sym_u_DQUOTE] = ACTIONS(103), + [anon_sym_U_DQUOTE] = ACTIONS(103), + [anon_sym_u8_DQUOTE] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_true] = ACTIONS(167), + [sym_false] = ACTIONS(167), + [anon_sym_NULL] = ACTIONS(107), + [anon_sym_nullptr] = ACTIONS(107), [sym_comment] = ACTIONS(3), }, - [9] = { + [6] = { [sym__block_item] = STATE(22), [sym_preproc_include] = STATE(22), [sym_preproc_def] = STATE(22), @@ -13342,87 +13444,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_call] = STATE(22), [sym_preproc_if] = STATE(22), [sym_preproc_ifdef] = STATE(22), - [sym_preproc_else] = STATE(1831), - [sym_preproc_elif] = STATE(1831), - [sym_preproc_elifdef] = STATE(1831), + [sym_preproc_else] = STATE(2212), + [sym_preproc_elif] = STATE(2212), + [sym_preproc_elifdef] = STATE(2212), [sym_function_definition] = STATE(22), - [sym__old_style_function_definition] = STATE(117), + [sym__old_style_function_definition] = STATE(149), [sym_declaration] = STATE(22), [sym_type_definition] = STATE(22), - [sym__declaration_modifiers] = STATE(697), - [sym__declaration_specifiers] = STATE(1120), + [sym__declaration_modifiers] = STATE(805), + [sym__declaration_specifiers] = STATE(1238), [sym_linkage_specification] = STATE(22), - [sym_attribute_specifier] = STATE(697), - [sym_attribute_declaration] = STATE(405), - [sym_ms_declspec_modifier] = STATE(697), - [sym_ms_call_modifier] = STATE(677), - [sym_compound_statement] = STATE(93), - [sym_storage_class_specifier] = STATE(697), - [sym_type_qualifier] = STATE(697), - [sym_alignas_qualifier] = STATE(703), - [sym_type_specifier] = STATE(817), - [sym_sized_type_specifier] = STATE(746), - [sym_enum_specifier] = STATE(746), - [sym_struct_specifier] = STATE(746), - [sym_union_specifier] = STATE(746), - [sym_attributed_statement] = STATE(118), + [sym_attribute_specifier] = STATE(805), + [sym_attribute_declaration] = STATE(468), + [sym_ms_declspec_modifier] = STATE(805), + [sym_macro_modifier] = STATE(777), + [sym_ms_call_modifier] = STATE(615), + [sym_compound_statement] = STATE(77), + [sym_storage_class_specifier] = STATE(805), + [sym_type_qualifier] = STATE(805), + [sym_alignas_qualifier] = STATE(799), + [sym_type_specifier] = STATE(896), + [sym_sized_type_specifier] = STATE(873), + [sym_enum_specifier] = STATE(873), + [sym_struct_specifier] = STATE(873), + [sym_union_specifier] = STATE(873), + [sym_attributed_statement] = STATE(151), [sym_statement] = STATE(22), - [sym_labeled_statement] = STATE(93), - [sym_expression_statement] = STATE(93), - [sym_if_statement] = STATE(93), - [sym_switch_statement] = STATE(93), - [sym_case_statement] = STATE(93), - [sym_while_statement] = STATE(93), - [sym_do_statement] = STATE(93), - [sym_for_statement] = STATE(93), - [sym_return_statement] = STATE(93), - [sym_break_statement] = STATE(93), - [sym_continue_statement] = STATE(93), - [sym_goto_statement] = STATE(93), - [sym_seh_try_statement] = STATE(93), - [sym_seh_leave_statement] = STATE(93), - [sym_expression] = STATE(1073), - [sym__string] = STATE(663), - [sym_comma_expression] = STATE(1821), - [sym_conditional_expression] = STATE(663), - [sym_assignment_expression] = STATE(663), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(663), - [sym_binary_expression] = STATE(663), - [sym_update_expression] = STATE(663), - [sym_cast_expression] = STATE(663), - [sym_sizeof_expression] = STATE(663), - [sym_alignof_expression] = STATE(663), - [sym_offsetof_expression] = STATE(663), - [sym_generic_expression] = STATE(663), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(663), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(663), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(663), - [sym_concatenated_string] = STATE(663), - [sym_string_literal] = STATE(659), - [sym_null] = STATE(663), + [sym_labeled_statement] = STATE(77), + [sym_expression_statement] = STATE(77), + [sym_if_statement] = STATE(77), + [sym_switch_statement] = STATE(77), + [sym_case_statement] = STATE(77), + [sym_while_statement] = STATE(77), + [sym_do_statement] = STATE(77), + [sym_for_statement] = STATE(77), + [sym_return_statement] = STATE(77), + [sym_break_statement] = STATE(77), + [sym_continue_statement] = STATE(77), + [sym_goto_statement] = STATE(77), + [sym_seh_try_statement] = STATE(77), + [sym_seh_leave_statement] = STATE(77), + [sym_expression] = STATE(1157), + [sym__string] = STATE(758), + [sym_comma_expression] = STATE(2232), + [sym_conditional_expression] = STATE(758), + [sym_assignment_expression] = STATE(758), + [sym_pointer_expression] = STATE(944), + [sym_unary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_cast_expression] = STATE(758), + [sym_sizeof_expression] = STATE(758), + [sym_alignof_expression] = STATE(758), + [sym_offsetof_expression] = STATE(758), + [sym_generic_expression] = STATE(758), + [sym_subscript_expression] = STATE(944), + [sym_call_expression] = STATE(944), + [sym_gnu_asm_expression] = STATE(758), + [sym_field_expression] = STATE(944), + [sym_compound_literal_expression] = STATE(758), + [sym_parenthesized_expression] = STATE(944), + [sym_char_literal] = STATE(758), + [sym_concatenated_string] = STATE(758), + [sym_string_literal] = STATE(671), + [sym_null] = STATE(758), [sym__empty_declaration] = STATE(22), - [sym_macro_type_specifier] = STATE(746), + [sym_macro_type_specifier] = STATE(873), [aux_sym_preproc_if_repeat1] = STATE(22), - [aux_sym__declaration_specifiers_repeat1] = STATE(697), - [aux_sym_attributed_declarator_repeat1] = STATE(365), - [aux_sym_sized_type_specifier_repeat1] = STATE(747), - [sym_identifier] = ACTIONS(107), - [aux_sym_preproc_include_token1] = ACTIONS(109), - [aux_sym_preproc_def_token1] = ACTIONS(111), - [aux_sym_preproc_if_token1] = ACTIONS(113), - [aux_sym_preproc_if_token2] = ACTIONS(179), - [aux_sym_preproc_ifdef_token1] = ACTIONS(117), - [aux_sym_preproc_ifdef_token2] = ACTIONS(117), - [aux_sym_preproc_else_token1] = ACTIONS(119), - [aux_sym_preproc_elif_token1] = ACTIONS(121), - [aux_sym_preproc_elifdef_token1] = ACTIONS(123), - [aux_sym_preproc_elifdef_token2] = ACTIONS(123), - [sym_preproc_directive] = ACTIONS(125), + [aux_sym__declaration_specifiers_repeat1] = STATE(805), + [aux_sym_attributed_declarator_repeat1] = STATE(439), + [aux_sym_sized_type_specifier_repeat1] = STATE(890), + [sym_identifier] = ACTIONS(109), + [aux_sym_preproc_include_token1] = ACTIONS(111), + [aux_sym_preproc_def_token1] = ACTIONS(113), + [aux_sym_preproc_if_token1] = ACTIONS(115), + [aux_sym_preproc_if_token2] = ACTIONS(175), + [aux_sym_preproc_ifdef_token1] = ACTIONS(119), + [aux_sym_preproc_ifdef_token2] = ACTIONS(119), + [aux_sym_preproc_else_token1] = ACTIONS(121), + [aux_sym_preproc_elif_token1] = ACTIONS(123), + [aux_sym_preproc_elifdef_token1] = ACTIONS(125), + [aux_sym_preproc_elifdef_token2] = ACTIONS(125), + [sym_preproc_directive] = ACTIONS(127), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -13430,184 +13533,188 @@ 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(127), - [anon_sym___extension__] = ACTIONS(129), - [anon_sym_typedef] = ACTIONS(131), - [anon_sym_extern] = ACTIONS(133), + [anon_sym_SEMI] = ACTIONS(129), + [anon_sym___extension__] = ACTIONS(131), + [anon_sym_typedef] = ACTIONS(133), + [anon_sym_extern] = ACTIONS(135), [anon_sym___attribute__] = ACTIONS(33), [anon_sym___scanf] = ACTIONS(35), [anon_sym___printf] = ACTIONS(35), [anon_sym___read_mostly] = ACTIONS(37), [anon_sym___must_hold] = ACTIONS(33), [anon_sym___ro_after_init] = ACTIONS(37), - [anon_sym___init] = ACTIONS(37), + [anon_sym___noreturn] = ACTIONS(37), + [anon_sym___cold] = ACTIONS(37), [anon_sym_LBRACK_LBRACK] = ACTIONS(39), [anon_sym___declspec] = ACTIONS(41), - [anon_sym___cdecl] = ACTIONS(43), - [anon_sym___clrcall] = ACTIONS(43), - [anon_sym___stdcall] = ACTIONS(43), - [anon_sym___fastcall] = ACTIONS(43), - [anon_sym___thiscall] = ACTIONS(43), - [anon_sym___vectorcall] = ACTIONS(43), - [anon_sym_LBRACE] = ACTIONS(135), - [anon_sym_signed] = ACTIONS(47), - [anon_sym_unsigned] = ACTIONS(47), - [anon_sym_long] = ACTIONS(47), - [anon_sym_short] = ACTIONS(47), - [anon_sym_static] = ACTIONS(49), - [anon_sym_auto] = ACTIONS(49), - [anon_sym_register] = ACTIONS(49), - [anon_sym_inline] = ACTIONS(49), - [anon_sym___inline] = ACTIONS(49), - [anon_sym___inline__] = ACTIONS(49), - [anon_sym___forceinline] = ACTIONS(49), - [anon_sym_thread_local] = ACTIONS(49), - [anon_sym___thread] = ACTIONS(49), - [anon_sym_const] = ACTIONS(51), - [anon_sym_constexpr] = ACTIONS(51), - [anon_sym_volatile] = ACTIONS(51), - [anon_sym_restrict] = ACTIONS(51), - [anon_sym___restrict__] = ACTIONS(51), - [anon_sym__Atomic] = ACTIONS(51), - [anon_sym__Noreturn] = ACTIONS(51), - [anon_sym_noreturn] = ACTIONS(51), - [anon_sym_alignas] = ACTIONS(53), - [anon_sym__Alignas] = ACTIONS(53), - [sym_primitive_type] = ACTIONS(55), - [anon_sym_enum] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [anon_sym_if] = ACTIONS(137), - [anon_sym_switch] = ACTIONS(139), - [anon_sym_case] = ACTIONS(141), - [anon_sym_default] = ACTIONS(143), - [anon_sym_while] = ACTIONS(145), - [anon_sym_do] = ACTIONS(147), - [anon_sym_for] = ACTIONS(149), - [anon_sym_return] = ACTIONS(151), - [anon_sym_break] = ACTIONS(153), - [anon_sym_continue] = ACTIONS(155), - [anon_sym_goto] = ACTIONS(157), - [anon_sym___try] = ACTIONS(159), - [anon_sym___leave] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [anon_sym___alignof__] = ACTIONS(89), - [anon_sym___alignof] = ACTIONS(89), - [anon_sym__alignof] = ACTIONS(89), - [anon_sym_alignof] = ACTIONS(89), - [anon_sym__Alignof] = ACTIONS(89), - [anon_sym_offsetof] = ACTIONS(91), - [anon_sym__Generic] = ACTIONS(93), - [anon_sym_asm] = ACTIONS(95), - [anon_sym___asm__] = ACTIONS(95), - [sym_number_literal] = ACTIONS(163), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(165), - [sym_false] = ACTIONS(165), - [anon_sym_NULL] = ACTIONS(105), - [anon_sym_nullptr] = ACTIONS(105), + [anon_sym___init] = ACTIONS(43), + [anon_sym___exit] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(137), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_const] = ACTIONS(53), + [anon_sym_constexpr] = ACTIONS(53), + [anon_sym_volatile] = ACTIONS(53), + [anon_sym_restrict] = ACTIONS(53), + [anon_sym___restrict__] = ACTIONS(53), + [anon_sym__Atomic] = ACTIONS(53), + [anon_sym__Noreturn] = ACTIONS(53), + [anon_sym_noreturn] = ACTIONS(53), + [anon_sym_alignas] = ACTIONS(55), + [anon_sym__Alignas] = ACTIONS(55), + [sym_primitive_type] = ACTIONS(57), + [anon_sym_enum] = ACTIONS(59), + [anon_sym_struct] = ACTIONS(61), + [anon_sym_union] = ACTIONS(63), + [anon_sym_if] = ACTIONS(139), + [anon_sym_switch] = ACTIONS(141), + [anon_sym_case] = ACTIONS(143), + [anon_sym_default] = ACTIONS(145), + [anon_sym_while] = ACTIONS(147), + [anon_sym_do] = ACTIONS(149), + [anon_sym_for] = ACTIONS(151), + [anon_sym_return] = ACTIONS(153), + [anon_sym_break] = ACTIONS(155), + [anon_sym_continue] = ACTIONS(157), + [anon_sym_goto] = ACTIONS(159), + [anon_sym___try] = ACTIONS(161), + [anon_sym___leave] = ACTIONS(163), + [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(87), + [anon_sym_sizeof] = ACTIONS(89), + [anon_sym___alignof__] = ACTIONS(91), + [anon_sym___alignof] = ACTIONS(91), + [anon_sym__alignof] = ACTIONS(91), + [anon_sym_alignof] = ACTIONS(91), + [anon_sym__Alignof] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(93), + [anon_sym__Generic] = ACTIONS(95), + [anon_sym_asm] = ACTIONS(97), + [anon_sym___asm__] = ACTIONS(97), + [sym_number_literal] = ACTIONS(165), + [anon_sym_L_SQUOTE] = ACTIONS(101), + [anon_sym_u_SQUOTE] = ACTIONS(101), + [anon_sym_U_SQUOTE] = ACTIONS(101), + [anon_sym_u8_SQUOTE] = ACTIONS(101), + [anon_sym_SQUOTE] = ACTIONS(101), + [anon_sym_L_DQUOTE] = ACTIONS(103), + [anon_sym_u_DQUOTE] = ACTIONS(103), + [anon_sym_U_DQUOTE] = ACTIONS(103), + [anon_sym_u8_DQUOTE] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_true] = ACTIONS(167), + [sym_false] = ACTIONS(167), + [anon_sym_NULL] = ACTIONS(107), + [anon_sym_nullptr] = ACTIONS(107), [sym_comment] = ACTIONS(3), }, - [10] = { - [sym__block_item] = STATE(9), - [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(1817), - [sym_preproc_elif] = STATE(1817), - [sym_preproc_elifdef] = STATE(1817), - [sym_function_definition] = STATE(9), - [sym__old_style_function_definition] = STATE(117), - [sym_declaration] = STATE(9), - [sym_type_definition] = STATE(9), - [sym__declaration_modifiers] = STATE(697), - [sym__declaration_specifiers] = STATE(1120), - [sym_linkage_specification] = STATE(9), - [sym_attribute_specifier] = STATE(697), - [sym_attribute_declaration] = STATE(405), - [sym_ms_declspec_modifier] = STATE(697), - [sym_ms_call_modifier] = STATE(677), - [sym_compound_statement] = STATE(93), - [sym_storage_class_specifier] = STATE(697), - [sym_type_qualifier] = STATE(697), - [sym_alignas_qualifier] = STATE(703), - [sym_type_specifier] = STATE(817), - [sym_sized_type_specifier] = STATE(746), - [sym_enum_specifier] = STATE(746), - [sym_struct_specifier] = STATE(746), - [sym_union_specifier] = STATE(746), - [sym_attributed_statement] = STATE(118), - [sym_statement] = STATE(9), - [sym_labeled_statement] = STATE(93), - [sym_expression_statement] = STATE(93), - [sym_if_statement] = STATE(93), - [sym_switch_statement] = STATE(93), - [sym_case_statement] = STATE(93), - [sym_while_statement] = STATE(93), - [sym_do_statement] = STATE(93), - [sym_for_statement] = STATE(93), - [sym_return_statement] = STATE(93), - [sym_break_statement] = STATE(93), - [sym_continue_statement] = STATE(93), - [sym_goto_statement] = STATE(93), - [sym_seh_try_statement] = STATE(93), - [sym_seh_leave_statement] = STATE(93), - [sym_expression] = STATE(1073), - [sym__string] = STATE(663), - [sym_comma_expression] = STATE(1821), - [sym_conditional_expression] = STATE(663), - [sym_assignment_expression] = STATE(663), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(663), - [sym_binary_expression] = STATE(663), - [sym_update_expression] = STATE(663), - [sym_cast_expression] = STATE(663), - [sym_sizeof_expression] = STATE(663), - [sym_alignof_expression] = STATE(663), - [sym_offsetof_expression] = STATE(663), - [sym_generic_expression] = STATE(663), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(663), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(663), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(663), - [sym_concatenated_string] = STATE(663), - [sym_string_literal] = STATE(659), - [sym_null] = STATE(663), - [sym__empty_declaration] = STATE(9), - [sym_macro_type_specifier] = STATE(746), - [aux_sym_preproc_if_repeat1] = STATE(9), - [aux_sym__declaration_specifiers_repeat1] = STATE(697), - [aux_sym_attributed_declarator_repeat1] = STATE(365), - [aux_sym_sized_type_specifier_repeat1] = STATE(747), - [sym_identifier] = ACTIONS(107), - [aux_sym_preproc_include_token1] = ACTIONS(109), - [aux_sym_preproc_def_token1] = ACTIONS(111), - [aux_sym_preproc_if_token1] = ACTIONS(113), - [aux_sym_preproc_if_token2] = ACTIONS(181), - [aux_sym_preproc_ifdef_token1] = ACTIONS(117), - [aux_sym_preproc_ifdef_token2] = ACTIONS(117), - [aux_sym_preproc_else_token1] = ACTIONS(119), - [aux_sym_preproc_elif_token1] = ACTIONS(121), - [aux_sym_preproc_elifdef_token1] = ACTIONS(123), - [aux_sym_preproc_elifdef_token2] = ACTIONS(123), - [sym_preproc_directive] = ACTIONS(125), + [7] = { + [sym__block_item] = STATE(20), + [sym_preproc_include] = STATE(20), + [sym_preproc_def] = STATE(20), + [sym_preproc_function_def] = STATE(20), + [sym_preproc_call] = STATE(20), + [sym_preproc_if] = STATE(20), + [sym_preproc_ifdef] = STATE(20), + [sym_preproc_else] = STATE(2163), + [sym_preproc_elif] = STATE(2163), + [sym_preproc_elifdef] = STATE(2163), + [sym_function_definition] = STATE(20), + [sym__old_style_function_definition] = STATE(149), + [sym_declaration] = STATE(20), + [sym_type_definition] = STATE(20), + [sym__declaration_modifiers] = STATE(805), + [sym__declaration_specifiers] = STATE(1238), + [sym_linkage_specification] = STATE(20), + [sym_attribute_specifier] = STATE(805), + [sym_attribute_declaration] = STATE(468), + [sym_ms_declspec_modifier] = STATE(805), + [sym_macro_modifier] = STATE(777), + [sym_ms_call_modifier] = STATE(615), + [sym_compound_statement] = STATE(77), + [sym_storage_class_specifier] = STATE(805), + [sym_type_qualifier] = STATE(805), + [sym_alignas_qualifier] = STATE(799), + [sym_type_specifier] = STATE(896), + [sym_sized_type_specifier] = STATE(873), + [sym_enum_specifier] = STATE(873), + [sym_struct_specifier] = STATE(873), + [sym_union_specifier] = STATE(873), + [sym_attributed_statement] = STATE(151), + [sym_statement] = STATE(20), + [sym_labeled_statement] = STATE(77), + [sym_expression_statement] = STATE(77), + [sym_if_statement] = STATE(77), + [sym_switch_statement] = STATE(77), + [sym_case_statement] = STATE(77), + [sym_while_statement] = STATE(77), + [sym_do_statement] = STATE(77), + [sym_for_statement] = STATE(77), + [sym_return_statement] = STATE(77), + [sym_break_statement] = STATE(77), + [sym_continue_statement] = STATE(77), + [sym_goto_statement] = STATE(77), + [sym_seh_try_statement] = STATE(77), + [sym_seh_leave_statement] = STATE(77), + [sym_expression] = STATE(1157), + [sym__string] = STATE(758), + [sym_comma_expression] = STATE(2232), + [sym_conditional_expression] = STATE(758), + [sym_assignment_expression] = STATE(758), + [sym_pointer_expression] = STATE(944), + [sym_unary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_cast_expression] = STATE(758), + [sym_sizeof_expression] = STATE(758), + [sym_alignof_expression] = STATE(758), + [sym_offsetof_expression] = STATE(758), + [sym_generic_expression] = STATE(758), + [sym_subscript_expression] = STATE(944), + [sym_call_expression] = STATE(944), + [sym_gnu_asm_expression] = STATE(758), + [sym_field_expression] = STATE(944), + [sym_compound_literal_expression] = STATE(758), + [sym_parenthesized_expression] = STATE(944), + [sym_char_literal] = STATE(758), + [sym_concatenated_string] = STATE(758), + [sym_string_literal] = STATE(671), + [sym_null] = STATE(758), + [sym__empty_declaration] = STATE(20), + [sym_macro_type_specifier] = STATE(873), + [aux_sym_preproc_if_repeat1] = STATE(20), + [aux_sym__declaration_specifiers_repeat1] = STATE(805), + [aux_sym_attributed_declarator_repeat1] = STATE(439), + [aux_sym_sized_type_specifier_repeat1] = STATE(890), + [sym_identifier] = ACTIONS(109), + [aux_sym_preproc_include_token1] = ACTIONS(111), + [aux_sym_preproc_def_token1] = ACTIONS(113), + [aux_sym_preproc_if_token1] = ACTIONS(115), + [aux_sym_preproc_if_token2] = ACTIONS(177), + [aux_sym_preproc_ifdef_token1] = ACTIONS(119), + [aux_sym_preproc_ifdef_token2] = ACTIONS(119), + [aux_sym_preproc_else_token1] = ACTIONS(121), + [aux_sym_preproc_elif_token1] = ACTIONS(123), + [aux_sym_preproc_elifdef_token1] = ACTIONS(125), + [aux_sym_preproc_elifdef_token2] = ACTIONS(125), + [sym_preproc_directive] = ACTIONS(127), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -13615,96 +13722,99 @@ 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(127), - [anon_sym___extension__] = ACTIONS(129), - [anon_sym_typedef] = ACTIONS(131), - [anon_sym_extern] = ACTIONS(133), + [anon_sym_SEMI] = ACTIONS(129), + [anon_sym___extension__] = ACTIONS(131), + [anon_sym_typedef] = ACTIONS(133), + [anon_sym_extern] = ACTIONS(135), [anon_sym___attribute__] = ACTIONS(33), [anon_sym___scanf] = ACTIONS(35), [anon_sym___printf] = ACTIONS(35), [anon_sym___read_mostly] = ACTIONS(37), [anon_sym___must_hold] = ACTIONS(33), [anon_sym___ro_after_init] = ACTIONS(37), - [anon_sym___init] = ACTIONS(37), + [anon_sym___noreturn] = ACTIONS(37), + [anon_sym___cold] = ACTIONS(37), [anon_sym_LBRACK_LBRACK] = ACTIONS(39), [anon_sym___declspec] = ACTIONS(41), - [anon_sym___cdecl] = ACTIONS(43), - [anon_sym___clrcall] = ACTIONS(43), - [anon_sym___stdcall] = ACTIONS(43), - [anon_sym___fastcall] = ACTIONS(43), - [anon_sym___thiscall] = ACTIONS(43), - [anon_sym___vectorcall] = ACTIONS(43), - [anon_sym_LBRACE] = ACTIONS(135), - [anon_sym_signed] = ACTIONS(47), - [anon_sym_unsigned] = ACTIONS(47), - [anon_sym_long] = ACTIONS(47), - [anon_sym_short] = ACTIONS(47), - [anon_sym_static] = ACTIONS(49), - [anon_sym_auto] = ACTIONS(49), - [anon_sym_register] = ACTIONS(49), - [anon_sym_inline] = ACTIONS(49), - [anon_sym___inline] = ACTIONS(49), - [anon_sym___inline__] = ACTIONS(49), - [anon_sym___forceinline] = ACTIONS(49), - [anon_sym_thread_local] = ACTIONS(49), - [anon_sym___thread] = ACTIONS(49), - [anon_sym_const] = ACTIONS(51), - [anon_sym_constexpr] = ACTIONS(51), - [anon_sym_volatile] = ACTIONS(51), - [anon_sym_restrict] = ACTIONS(51), - [anon_sym___restrict__] = ACTIONS(51), - [anon_sym__Atomic] = ACTIONS(51), - [anon_sym__Noreturn] = ACTIONS(51), - [anon_sym_noreturn] = ACTIONS(51), - [anon_sym_alignas] = ACTIONS(53), - [anon_sym__Alignas] = ACTIONS(53), - [sym_primitive_type] = ACTIONS(55), - [anon_sym_enum] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [anon_sym_if] = ACTIONS(137), - [anon_sym_switch] = ACTIONS(139), - [anon_sym_case] = ACTIONS(141), - [anon_sym_default] = ACTIONS(143), - [anon_sym_while] = ACTIONS(145), - [anon_sym_do] = ACTIONS(147), - [anon_sym_for] = ACTIONS(149), - [anon_sym_return] = ACTIONS(151), - [anon_sym_break] = ACTIONS(153), - [anon_sym_continue] = ACTIONS(155), - [anon_sym_goto] = ACTIONS(157), - [anon_sym___try] = ACTIONS(159), - [anon_sym___leave] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [anon_sym___alignof__] = ACTIONS(89), - [anon_sym___alignof] = ACTIONS(89), - [anon_sym__alignof] = ACTIONS(89), - [anon_sym_alignof] = ACTIONS(89), - [anon_sym__Alignof] = ACTIONS(89), - [anon_sym_offsetof] = ACTIONS(91), - [anon_sym__Generic] = ACTIONS(93), - [anon_sym_asm] = ACTIONS(95), - [anon_sym___asm__] = ACTIONS(95), - [sym_number_literal] = ACTIONS(163), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(165), - [sym_false] = ACTIONS(165), - [anon_sym_NULL] = ACTIONS(105), - [anon_sym_nullptr] = ACTIONS(105), + [anon_sym___init] = ACTIONS(43), + [anon_sym___exit] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(137), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_const] = ACTIONS(53), + [anon_sym_constexpr] = ACTIONS(53), + [anon_sym_volatile] = ACTIONS(53), + [anon_sym_restrict] = ACTIONS(53), + [anon_sym___restrict__] = ACTIONS(53), + [anon_sym__Atomic] = ACTIONS(53), + [anon_sym__Noreturn] = ACTIONS(53), + [anon_sym_noreturn] = ACTIONS(53), + [anon_sym_alignas] = ACTIONS(55), + [anon_sym__Alignas] = ACTIONS(55), + [sym_primitive_type] = ACTIONS(57), + [anon_sym_enum] = ACTIONS(59), + [anon_sym_struct] = ACTIONS(61), + [anon_sym_union] = ACTIONS(63), + [anon_sym_if] = ACTIONS(139), + [anon_sym_switch] = ACTIONS(141), + [anon_sym_case] = ACTIONS(143), + [anon_sym_default] = ACTIONS(145), + [anon_sym_while] = ACTIONS(147), + [anon_sym_do] = ACTIONS(149), + [anon_sym_for] = ACTIONS(151), + [anon_sym_return] = ACTIONS(153), + [anon_sym_break] = ACTIONS(155), + [anon_sym_continue] = ACTIONS(157), + [anon_sym_goto] = ACTIONS(159), + [anon_sym___try] = ACTIONS(161), + [anon_sym___leave] = ACTIONS(163), + [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(87), + [anon_sym_sizeof] = ACTIONS(89), + [anon_sym___alignof__] = ACTIONS(91), + [anon_sym___alignof] = ACTIONS(91), + [anon_sym__alignof] = ACTIONS(91), + [anon_sym_alignof] = ACTIONS(91), + [anon_sym__Alignof] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(93), + [anon_sym__Generic] = ACTIONS(95), + [anon_sym_asm] = ACTIONS(97), + [anon_sym___asm__] = ACTIONS(97), + [sym_number_literal] = ACTIONS(165), + [anon_sym_L_SQUOTE] = ACTIONS(101), + [anon_sym_u_SQUOTE] = ACTIONS(101), + [anon_sym_U_SQUOTE] = ACTIONS(101), + [anon_sym_u8_SQUOTE] = ACTIONS(101), + [anon_sym_SQUOTE] = ACTIONS(101), + [anon_sym_L_DQUOTE] = ACTIONS(103), + [anon_sym_u_DQUOTE] = ACTIONS(103), + [anon_sym_U_DQUOTE] = ACTIONS(103), + [anon_sym_u8_DQUOTE] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_true] = ACTIONS(167), + [sym_false] = ACTIONS(167), + [anon_sym_NULL] = ACTIONS(107), + [anon_sym_nullptr] = ACTIONS(107), [sym_comment] = ACTIONS(3), }, - [11] = { + [8] = { [sym__block_item] = STATE(17), [sym_preproc_include] = STATE(17), [sym_preproc_def] = STATE(17), @@ -13712,87 +13822,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_call] = STATE(17), [sym_preproc_if] = STATE(17), [sym_preproc_ifdef] = STATE(17), - [sym_preproc_else] = STATE(1850), - [sym_preproc_elif] = STATE(1850), - [sym_preproc_elifdef] = STATE(1850), + [sym_preproc_else] = STATE(2205), + [sym_preproc_elif] = STATE(2205), + [sym_preproc_elifdef] = STATE(2205), [sym_function_definition] = STATE(17), - [sym__old_style_function_definition] = STATE(117), + [sym__old_style_function_definition] = STATE(149), [sym_declaration] = STATE(17), [sym_type_definition] = STATE(17), - [sym__declaration_modifiers] = STATE(697), - [sym__declaration_specifiers] = STATE(1120), + [sym__declaration_modifiers] = STATE(805), + [sym__declaration_specifiers] = STATE(1238), [sym_linkage_specification] = STATE(17), - [sym_attribute_specifier] = STATE(697), - [sym_attribute_declaration] = STATE(405), - [sym_ms_declspec_modifier] = STATE(697), - [sym_ms_call_modifier] = STATE(677), - [sym_compound_statement] = STATE(93), - [sym_storage_class_specifier] = STATE(697), - [sym_type_qualifier] = STATE(697), - [sym_alignas_qualifier] = STATE(703), - [sym_type_specifier] = STATE(817), - [sym_sized_type_specifier] = STATE(746), - [sym_enum_specifier] = STATE(746), - [sym_struct_specifier] = STATE(746), - [sym_union_specifier] = STATE(746), - [sym_attributed_statement] = STATE(118), + [sym_attribute_specifier] = STATE(805), + [sym_attribute_declaration] = STATE(468), + [sym_ms_declspec_modifier] = STATE(805), + [sym_macro_modifier] = STATE(777), + [sym_ms_call_modifier] = STATE(615), + [sym_compound_statement] = STATE(77), + [sym_storage_class_specifier] = STATE(805), + [sym_type_qualifier] = STATE(805), + [sym_alignas_qualifier] = STATE(799), + [sym_type_specifier] = STATE(896), + [sym_sized_type_specifier] = STATE(873), + [sym_enum_specifier] = STATE(873), + [sym_struct_specifier] = STATE(873), + [sym_union_specifier] = STATE(873), + [sym_attributed_statement] = STATE(151), [sym_statement] = STATE(17), - [sym_labeled_statement] = STATE(93), - [sym_expression_statement] = STATE(93), - [sym_if_statement] = STATE(93), - [sym_switch_statement] = STATE(93), - [sym_case_statement] = STATE(93), - [sym_while_statement] = STATE(93), - [sym_do_statement] = STATE(93), - [sym_for_statement] = STATE(93), - [sym_return_statement] = STATE(93), - [sym_break_statement] = STATE(93), - [sym_continue_statement] = STATE(93), - [sym_goto_statement] = STATE(93), - [sym_seh_try_statement] = STATE(93), - [sym_seh_leave_statement] = STATE(93), - [sym_expression] = STATE(1073), - [sym__string] = STATE(663), - [sym_comma_expression] = STATE(1821), - [sym_conditional_expression] = STATE(663), - [sym_assignment_expression] = STATE(663), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(663), - [sym_binary_expression] = STATE(663), - [sym_update_expression] = STATE(663), - [sym_cast_expression] = STATE(663), - [sym_sizeof_expression] = STATE(663), - [sym_alignof_expression] = STATE(663), - [sym_offsetof_expression] = STATE(663), - [sym_generic_expression] = STATE(663), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(663), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(663), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(663), - [sym_concatenated_string] = STATE(663), - [sym_string_literal] = STATE(659), - [sym_null] = STATE(663), + [sym_labeled_statement] = STATE(77), + [sym_expression_statement] = STATE(77), + [sym_if_statement] = STATE(77), + [sym_switch_statement] = STATE(77), + [sym_case_statement] = STATE(77), + [sym_while_statement] = STATE(77), + [sym_do_statement] = STATE(77), + [sym_for_statement] = STATE(77), + [sym_return_statement] = STATE(77), + [sym_break_statement] = STATE(77), + [sym_continue_statement] = STATE(77), + [sym_goto_statement] = STATE(77), + [sym_seh_try_statement] = STATE(77), + [sym_seh_leave_statement] = STATE(77), + [sym_expression] = STATE(1157), + [sym__string] = STATE(758), + [sym_comma_expression] = STATE(2232), + [sym_conditional_expression] = STATE(758), + [sym_assignment_expression] = STATE(758), + [sym_pointer_expression] = STATE(944), + [sym_unary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_cast_expression] = STATE(758), + [sym_sizeof_expression] = STATE(758), + [sym_alignof_expression] = STATE(758), + [sym_offsetof_expression] = STATE(758), + [sym_generic_expression] = STATE(758), + [sym_subscript_expression] = STATE(944), + [sym_call_expression] = STATE(944), + [sym_gnu_asm_expression] = STATE(758), + [sym_field_expression] = STATE(944), + [sym_compound_literal_expression] = STATE(758), + [sym_parenthesized_expression] = STATE(944), + [sym_char_literal] = STATE(758), + [sym_concatenated_string] = STATE(758), + [sym_string_literal] = STATE(671), + [sym_null] = STATE(758), [sym__empty_declaration] = STATE(17), - [sym_macro_type_specifier] = STATE(746), + [sym_macro_type_specifier] = STATE(873), [aux_sym_preproc_if_repeat1] = STATE(17), - [aux_sym__declaration_specifiers_repeat1] = STATE(697), - [aux_sym_attributed_declarator_repeat1] = STATE(365), - [aux_sym_sized_type_specifier_repeat1] = STATE(747), - [sym_identifier] = ACTIONS(107), - [aux_sym_preproc_include_token1] = ACTIONS(109), - [aux_sym_preproc_def_token1] = ACTIONS(111), - [aux_sym_preproc_if_token1] = ACTIONS(113), - [aux_sym_preproc_if_token2] = ACTIONS(183), - [aux_sym_preproc_ifdef_token1] = ACTIONS(117), - [aux_sym_preproc_ifdef_token2] = ACTIONS(117), - [aux_sym_preproc_else_token1] = ACTIONS(119), - [aux_sym_preproc_elif_token1] = ACTIONS(121), - [aux_sym_preproc_elifdef_token1] = ACTIONS(123), - [aux_sym_preproc_elifdef_token2] = ACTIONS(123), - [sym_preproc_directive] = ACTIONS(125), + [aux_sym__declaration_specifiers_repeat1] = STATE(805), + [aux_sym_attributed_declarator_repeat1] = STATE(439), + [aux_sym_sized_type_specifier_repeat1] = STATE(890), + [sym_identifier] = ACTIONS(109), + [aux_sym_preproc_include_token1] = ACTIONS(111), + [aux_sym_preproc_def_token1] = ACTIONS(113), + [aux_sym_preproc_if_token1] = ACTIONS(115), + [aux_sym_preproc_if_token2] = ACTIONS(179), + [aux_sym_preproc_ifdef_token1] = ACTIONS(119), + [aux_sym_preproc_ifdef_token2] = ACTIONS(119), + [aux_sym_preproc_else_token1] = ACTIONS(121), + [aux_sym_preproc_elif_token1] = ACTIONS(123), + [aux_sym_preproc_elifdef_token1] = ACTIONS(125), + [aux_sym_preproc_elifdef_token2] = ACTIONS(125), + [sym_preproc_directive] = ACTIONS(127), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -13800,96 +13911,288 @@ 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(127), - [anon_sym___extension__] = ACTIONS(129), - [anon_sym_typedef] = ACTIONS(131), - [anon_sym_extern] = ACTIONS(133), + [anon_sym_SEMI] = ACTIONS(129), + [anon_sym___extension__] = ACTIONS(131), + [anon_sym_typedef] = ACTIONS(133), + [anon_sym_extern] = ACTIONS(135), [anon_sym___attribute__] = ACTIONS(33), [anon_sym___scanf] = ACTIONS(35), [anon_sym___printf] = ACTIONS(35), [anon_sym___read_mostly] = ACTIONS(37), [anon_sym___must_hold] = ACTIONS(33), [anon_sym___ro_after_init] = ACTIONS(37), - [anon_sym___init] = ACTIONS(37), + [anon_sym___noreturn] = ACTIONS(37), + [anon_sym___cold] = ACTIONS(37), [anon_sym_LBRACK_LBRACK] = ACTIONS(39), [anon_sym___declspec] = ACTIONS(41), - [anon_sym___cdecl] = ACTIONS(43), - [anon_sym___clrcall] = ACTIONS(43), - [anon_sym___stdcall] = ACTIONS(43), - [anon_sym___fastcall] = ACTIONS(43), - [anon_sym___thiscall] = ACTIONS(43), - [anon_sym___vectorcall] = ACTIONS(43), - [anon_sym_LBRACE] = ACTIONS(135), - [anon_sym_signed] = ACTIONS(47), - [anon_sym_unsigned] = ACTIONS(47), - [anon_sym_long] = ACTIONS(47), - [anon_sym_short] = ACTIONS(47), - [anon_sym_static] = ACTIONS(49), - [anon_sym_auto] = ACTIONS(49), - [anon_sym_register] = ACTIONS(49), - [anon_sym_inline] = ACTIONS(49), - [anon_sym___inline] = ACTIONS(49), - [anon_sym___inline__] = ACTIONS(49), - [anon_sym___forceinline] = ACTIONS(49), - [anon_sym_thread_local] = ACTIONS(49), - [anon_sym___thread] = ACTIONS(49), - [anon_sym_const] = ACTIONS(51), - [anon_sym_constexpr] = ACTIONS(51), - [anon_sym_volatile] = ACTIONS(51), - [anon_sym_restrict] = ACTIONS(51), - [anon_sym___restrict__] = ACTIONS(51), - [anon_sym__Atomic] = ACTIONS(51), - [anon_sym__Noreturn] = ACTIONS(51), - [anon_sym_noreturn] = ACTIONS(51), - [anon_sym_alignas] = ACTIONS(53), - [anon_sym__Alignas] = ACTIONS(53), - [sym_primitive_type] = ACTIONS(55), - [anon_sym_enum] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [anon_sym_if] = ACTIONS(137), - [anon_sym_switch] = ACTIONS(139), - [anon_sym_case] = ACTIONS(141), - [anon_sym_default] = ACTIONS(143), - [anon_sym_while] = ACTIONS(145), - [anon_sym_do] = ACTIONS(147), - [anon_sym_for] = ACTIONS(149), - [anon_sym_return] = ACTIONS(151), - [anon_sym_break] = ACTIONS(153), - [anon_sym_continue] = ACTIONS(155), - [anon_sym_goto] = ACTIONS(157), - [anon_sym___try] = ACTIONS(159), - [anon_sym___leave] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [anon_sym___alignof__] = ACTIONS(89), - [anon_sym___alignof] = ACTIONS(89), - [anon_sym__alignof] = ACTIONS(89), - [anon_sym_alignof] = ACTIONS(89), - [anon_sym__Alignof] = ACTIONS(89), - [anon_sym_offsetof] = ACTIONS(91), - [anon_sym__Generic] = ACTIONS(93), - [anon_sym_asm] = ACTIONS(95), - [anon_sym___asm__] = ACTIONS(95), - [sym_number_literal] = ACTIONS(163), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(165), - [sym_false] = ACTIONS(165), - [anon_sym_NULL] = ACTIONS(105), - [anon_sym_nullptr] = ACTIONS(105), + [anon_sym___init] = ACTIONS(43), + [anon_sym___exit] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(137), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_const] = ACTIONS(53), + [anon_sym_constexpr] = ACTIONS(53), + [anon_sym_volatile] = ACTIONS(53), + [anon_sym_restrict] = ACTIONS(53), + [anon_sym___restrict__] = ACTIONS(53), + [anon_sym__Atomic] = ACTIONS(53), + [anon_sym__Noreturn] = ACTIONS(53), + [anon_sym_noreturn] = ACTIONS(53), + [anon_sym_alignas] = ACTIONS(55), + [anon_sym__Alignas] = ACTIONS(55), + [sym_primitive_type] = ACTIONS(57), + [anon_sym_enum] = ACTIONS(59), + [anon_sym_struct] = ACTIONS(61), + [anon_sym_union] = ACTIONS(63), + [anon_sym_if] = ACTIONS(139), + [anon_sym_switch] = ACTIONS(141), + [anon_sym_case] = ACTIONS(143), + [anon_sym_default] = ACTIONS(145), + [anon_sym_while] = ACTIONS(147), + [anon_sym_do] = ACTIONS(149), + [anon_sym_for] = ACTIONS(151), + [anon_sym_return] = ACTIONS(153), + [anon_sym_break] = ACTIONS(155), + [anon_sym_continue] = ACTIONS(157), + [anon_sym_goto] = ACTIONS(159), + [anon_sym___try] = ACTIONS(161), + [anon_sym___leave] = ACTIONS(163), + [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(87), + [anon_sym_sizeof] = ACTIONS(89), + [anon_sym___alignof__] = ACTIONS(91), + [anon_sym___alignof] = ACTIONS(91), + [anon_sym__alignof] = ACTIONS(91), + [anon_sym_alignof] = ACTIONS(91), + [anon_sym__Alignof] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(93), + [anon_sym__Generic] = ACTIONS(95), + [anon_sym_asm] = ACTIONS(97), + [anon_sym___asm__] = ACTIONS(97), + [sym_number_literal] = ACTIONS(165), + [anon_sym_L_SQUOTE] = ACTIONS(101), + [anon_sym_u_SQUOTE] = ACTIONS(101), + [anon_sym_U_SQUOTE] = ACTIONS(101), + [anon_sym_u8_SQUOTE] = ACTIONS(101), + [anon_sym_SQUOTE] = ACTIONS(101), + [anon_sym_L_DQUOTE] = ACTIONS(103), + [anon_sym_u_DQUOTE] = ACTIONS(103), + [anon_sym_U_DQUOTE] = ACTIONS(103), + [anon_sym_u8_DQUOTE] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_true] = ACTIONS(167), + [sym_false] = ACTIONS(167), + [anon_sym_NULL] = ACTIONS(107), + [anon_sym_nullptr] = ACTIONS(107), [sym_comment] = ACTIONS(3), }, - [12] = { + [9] = { + [sym__block_item] = STATE(22), + [sym_preproc_include] = STATE(22), + [sym_preproc_def] = STATE(22), + [sym_preproc_function_def] = STATE(22), + [sym_preproc_call] = STATE(22), + [sym_preproc_if] = STATE(22), + [sym_preproc_ifdef] = STATE(22), + [sym_preproc_else] = STATE(2035), + [sym_preproc_elif] = STATE(2035), + [sym_preproc_elifdef] = STATE(2035), + [sym_function_definition] = STATE(22), + [sym__old_style_function_definition] = STATE(149), + [sym_declaration] = STATE(22), + [sym_type_definition] = STATE(22), + [sym__declaration_modifiers] = STATE(805), + [sym__declaration_specifiers] = STATE(1238), + [sym_linkage_specification] = STATE(22), + [sym_attribute_specifier] = STATE(805), + [sym_attribute_declaration] = STATE(468), + [sym_ms_declspec_modifier] = STATE(805), + [sym_macro_modifier] = STATE(777), + [sym_ms_call_modifier] = STATE(615), + [sym_compound_statement] = STATE(77), + [sym_storage_class_specifier] = STATE(805), + [sym_type_qualifier] = STATE(805), + [sym_alignas_qualifier] = STATE(799), + [sym_type_specifier] = STATE(896), + [sym_sized_type_specifier] = STATE(873), + [sym_enum_specifier] = STATE(873), + [sym_struct_specifier] = STATE(873), + [sym_union_specifier] = STATE(873), + [sym_attributed_statement] = STATE(151), + [sym_statement] = STATE(22), + [sym_labeled_statement] = STATE(77), + [sym_expression_statement] = STATE(77), + [sym_if_statement] = STATE(77), + [sym_switch_statement] = STATE(77), + [sym_case_statement] = STATE(77), + [sym_while_statement] = STATE(77), + [sym_do_statement] = STATE(77), + [sym_for_statement] = STATE(77), + [sym_return_statement] = STATE(77), + [sym_break_statement] = STATE(77), + [sym_continue_statement] = STATE(77), + [sym_goto_statement] = STATE(77), + [sym_seh_try_statement] = STATE(77), + [sym_seh_leave_statement] = STATE(77), + [sym_expression] = STATE(1157), + [sym__string] = STATE(758), + [sym_comma_expression] = STATE(2232), + [sym_conditional_expression] = STATE(758), + [sym_assignment_expression] = STATE(758), + [sym_pointer_expression] = STATE(944), + [sym_unary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_cast_expression] = STATE(758), + [sym_sizeof_expression] = STATE(758), + [sym_alignof_expression] = STATE(758), + [sym_offsetof_expression] = STATE(758), + [sym_generic_expression] = STATE(758), + [sym_subscript_expression] = STATE(944), + [sym_call_expression] = STATE(944), + [sym_gnu_asm_expression] = STATE(758), + [sym_field_expression] = STATE(944), + [sym_compound_literal_expression] = STATE(758), + [sym_parenthesized_expression] = STATE(944), + [sym_char_literal] = STATE(758), + [sym_concatenated_string] = STATE(758), + [sym_string_literal] = STATE(671), + [sym_null] = STATE(758), + [sym__empty_declaration] = STATE(22), + [sym_macro_type_specifier] = STATE(873), + [aux_sym_preproc_if_repeat1] = STATE(22), + [aux_sym__declaration_specifiers_repeat1] = STATE(805), + [aux_sym_attributed_declarator_repeat1] = STATE(439), + [aux_sym_sized_type_specifier_repeat1] = STATE(890), + [sym_identifier] = ACTIONS(109), + [aux_sym_preproc_include_token1] = ACTIONS(111), + [aux_sym_preproc_def_token1] = ACTIONS(113), + [aux_sym_preproc_if_token1] = ACTIONS(115), + [aux_sym_preproc_if_token2] = ACTIONS(181), + [aux_sym_preproc_ifdef_token1] = ACTIONS(119), + [aux_sym_preproc_ifdef_token2] = ACTIONS(119), + [aux_sym_preproc_else_token1] = ACTIONS(121), + [aux_sym_preproc_elif_token1] = ACTIONS(123), + [aux_sym_preproc_elifdef_token1] = ACTIONS(125), + [aux_sym_preproc_elifdef_token2] = ACTIONS(125), + [sym_preproc_directive] = ACTIONS(127), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(129), + [anon_sym___extension__] = ACTIONS(131), + [anon_sym_typedef] = ACTIONS(133), + [anon_sym_extern] = ACTIONS(135), + [anon_sym___attribute__] = ACTIONS(33), + [anon_sym___scanf] = ACTIONS(35), + [anon_sym___printf] = ACTIONS(35), + [anon_sym___read_mostly] = ACTIONS(37), + [anon_sym___must_hold] = ACTIONS(33), + [anon_sym___ro_after_init] = ACTIONS(37), + [anon_sym___noreturn] = ACTIONS(37), + [anon_sym___cold] = ACTIONS(37), + [anon_sym_LBRACK_LBRACK] = ACTIONS(39), + [anon_sym___declspec] = ACTIONS(41), + [anon_sym___init] = ACTIONS(43), + [anon_sym___exit] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(137), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_const] = ACTIONS(53), + [anon_sym_constexpr] = ACTIONS(53), + [anon_sym_volatile] = ACTIONS(53), + [anon_sym_restrict] = ACTIONS(53), + [anon_sym___restrict__] = ACTIONS(53), + [anon_sym__Atomic] = ACTIONS(53), + [anon_sym__Noreturn] = ACTIONS(53), + [anon_sym_noreturn] = ACTIONS(53), + [anon_sym_alignas] = ACTIONS(55), + [anon_sym__Alignas] = ACTIONS(55), + [sym_primitive_type] = ACTIONS(57), + [anon_sym_enum] = ACTIONS(59), + [anon_sym_struct] = ACTIONS(61), + [anon_sym_union] = ACTIONS(63), + [anon_sym_if] = ACTIONS(139), + [anon_sym_switch] = ACTIONS(141), + [anon_sym_case] = ACTIONS(143), + [anon_sym_default] = ACTIONS(145), + [anon_sym_while] = ACTIONS(147), + [anon_sym_do] = ACTIONS(149), + [anon_sym_for] = ACTIONS(151), + [anon_sym_return] = ACTIONS(153), + [anon_sym_break] = ACTIONS(155), + [anon_sym_continue] = ACTIONS(157), + [anon_sym_goto] = ACTIONS(159), + [anon_sym___try] = ACTIONS(161), + [anon_sym___leave] = ACTIONS(163), + [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(87), + [anon_sym_sizeof] = ACTIONS(89), + [anon_sym___alignof__] = ACTIONS(91), + [anon_sym___alignof] = ACTIONS(91), + [anon_sym__alignof] = ACTIONS(91), + [anon_sym_alignof] = ACTIONS(91), + [anon_sym__Alignof] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(93), + [anon_sym__Generic] = ACTIONS(95), + [anon_sym_asm] = ACTIONS(97), + [anon_sym___asm__] = ACTIONS(97), + [sym_number_literal] = ACTIONS(165), + [anon_sym_L_SQUOTE] = ACTIONS(101), + [anon_sym_u_SQUOTE] = ACTIONS(101), + [anon_sym_U_SQUOTE] = ACTIONS(101), + [anon_sym_u8_SQUOTE] = ACTIONS(101), + [anon_sym_SQUOTE] = ACTIONS(101), + [anon_sym_L_DQUOTE] = ACTIONS(103), + [anon_sym_u_DQUOTE] = ACTIONS(103), + [anon_sym_U_DQUOTE] = ACTIONS(103), + [anon_sym_u8_DQUOTE] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_true] = ACTIONS(167), + [sym_false] = ACTIONS(167), + [anon_sym_NULL] = ACTIONS(107), + [anon_sym_nullptr] = ACTIONS(107), + [sym_comment] = ACTIONS(3), + }, + [10] = { [sym__block_item] = STATE(22), [sym_preproc_include] = STATE(22), [sym_preproc_def] = STATE(22), @@ -13897,87 +14200,277 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_call] = STATE(22), [sym_preproc_if] = STATE(22), [sym_preproc_ifdef] = STATE(22), - [sym_preproc_else] = STATE(1819), - [sym_preproc_elif] = STATE(1819), - [sym_preproc_elifdef] = STATE(1819), + [sym_preproc_else] = STATE(2172), + [sym_preproc_elif] = STATE(2172), + [sym_preproc_elifdef] = STATE(2172), [sym_function_definition] = STATE(22), - [sym__old_style_function_definition] = STATE(117), + [sym__old_style_function_definition] = STATE(149), [sym_declaration] = STATE(22), [sym_type_definition] = STATE(22), - [sym__declaration_modifiers] = STATE(697), - [sym__declaration_specifiers] = STATE(1120), + [sym__declaration_modifiers] = STATE(805), + [sym__declaration_specifiers] = STATE(1238), [sym_linkage_specification] = STATE(22), - [sym_attribute_specifier] = STATE(697), - [sym_attribute_declaration] = STATE(405), - [sym_ms_declspec_modifier] = STATE(697), - [sym_ms_call_modifier] = STATE(677), - [sym_compound_statement] = STATE(93), - [sym_storage_class_specifier] = STATE(697), - [sym_type_qualifier] = STATE(697), - [sym_alignas_qualifier] = STATE(703), - [sym_type_specifier] = STATE(817), - [sym_sized_type_specifier] = STATE(746), - [sym_enum_specifier] = STATE(746), - [sym_struct_specifier] = STATE(746), - [sym_union_specifier] = STATE(746), - [sym_attributed_statement] = STATE(118), + [sym_attribute_specifier] = STATE(805), + [sym_attribute_declaration] = STATE(468), + [sym_ms_declspec_modifier] = STATE(805), + [sym_macro_modifier] = STATE(777), + [sym_ms_call_modifier] = STATE(615), + [sym_compound_statement] = STATE(77), + [sym_storage_class_specifier] = STATE(805), + [sym_type_qualifier] = STATE(805), + [sym_alignas_qualifier] = STATE(799), + [sym_type_specifier] = STATE(896), + [sym_sized_type_specifier] = STATE(873), + [sym_enum_specifier] = STATE(873), + [sym_struct_specifier] = STATE(873), + [sym_union_specifier] = STATE(873), + [sym_attributed_statement] = STATE(151), [sym_statement] = STATE(22), - [sym_labeled_statement] = STATE(93), - [sym_expression_statement] = STATE(93), - [sym_if_statement] = STATE(93), - [sym_switch_statement] = STATE(93), - [sym_case_statement] = STATE(93), - [sym_while_statement] = STATE(93), - [sym_do_statement] = STATE(93), - [sym_for_statement] = STATE(93), - [sym_return_statement] = STATE(93), - [sym_break_statement] = STATE(93), - [sym_continue_statement] = STATE(93), - [sym_goto_statement] = STATE(93), - [sym_seh_try_statement] = STATE(93), - [sym_seh_leave_statement] = STATE(93), - [sym_expression] = STATE(1073), - [sym__string] = STATE(663), - [sym_comma_expression] = STATE(1821), - [sym_conditional_expression] = STATE(663), - [sym_assignment_expression] = STATE(663), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(663), - [sym_binary_expression] = STATE(663), - [sym_update_expression] = STATE(663), - [sym_cast_expression] = STATE(663), - [sym_sizeof_expression] = STATE(663), - [sym_alignof_expression] = STATE(663), - [sym_offsetof_expression] = STATE(663), - [sym_generic_expression] = STATE(663), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(663), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(663), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(663), - [sym_concatenated_string] = STATE(663), - [sym_string_literal] = STATE(659), - [sym_null] = STATE(663), + [sym_labeled_statement] = STATE(77), + [sym_expression_statement] = STATE(77), + [sym_if_statement] = STATE(77), + [sym_switch_statement] = STATE(77), + [sym_case_statement] = STATE(77), + [sym_while_statement] = STATE(77), + [sym_do_statement] = STATE(77), + [sym_for_statement] = STATE(77), + [sym_return_statement] = STATE(77), + [sym_break_statement] = STATE(77), + [sym_continue_statement] = STATE(77), + [sym_goto_statement] = STATE(77), + [sym_seh_try_statement] = STATE(77), + [sym_seh_leave_statement] = STATE(77), + [sym_expression] = STATE(1157), + [sym__string] = STATE(758), + [sym_comma_expression] = STATE(2232), + [sym_conditional_expression] = STATE(758), + [sym_assignment_expression] = STATE(758), + [sym_pointer_expression] = STATE(944), + [sym_unary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_cast_expression] = STATE(758), + [sym_sizeof_expression] = STATE(758), + [sym_alignof_expression] = STATE(758), + [sym_offsetof_expression] = STATE(758), + [sym_generic_expression] = STATE(758), + [sym_subscript_expression] = STATE(944), + [sym_call_expression] = STATE(944), + [sym_gnu_asm_expression] = STATE(758), + [sym_field_expression] = STATE(944), + [sym_compound_literal_expression] = STATE(758), + [sym_parenthesized_expression] = STATE(944), + [sym_char_literal] = STATE(758), + [sym_concatenated_string] = STATE(758), + [sym_string_literal] = STATE(671), + [sym_null] = STATE(758), [sym__empty_declaration] = STATE(22), - [sym_macro_type_specifier] = STATE(746), + [sym_macro_type_specifier] = STATE(873), [aux_sym_preproc_if_repeat1] = STATE(22), - [aux_sym__declaration_specifiers_repeat1] = STATE(697), - [aux_sym_attributed_declarator_repeat1] = STATE(365), - [aux_sym_sized_type_specifier_repeat1] = STATE(747), - [sym_identifier] = ACTIONS(107), - [aux_sym_preproc_include_token1] = ACTIONS(109), - [aux_sym_preproc_def_token1] = ACTIONS(111), - [aux_sym_preproc_if_token1] = ACTIONS(113), + [aux_sym__declaration_specifiers_repeat1] = STATE(805), + [aux_sym_attributed_declarator_repeat1] = STATE(439), + [aux_sym_sized_type_specifier_repeat1] = STATE(890), + [sym_identifier] = ACTIONS(109), + [aux_sym_preproc_include_token1] = ACTIONS(111), + [aux_sym_preproc_def_token1] = ACTIONS(113), + [aux_sym_preproc_if_token1] = ACTIONS(115), + [aux_sym_preproc_if_token2] = ACTIONS(183), + [aux_sym_preproc_ifdef_token1] = ACTIONS(119), + [aux_sym_preproc_ifdef_token2] = ACTIONS(119), + [aux_sym_preproc_else_token1] = ACTIONS(121), + [aux_sym_preproc_elif_token1] = ACTIONS(123), + [aux_sym_preproc_elifdef_token1] = ACTIONS(125), + [aux_sym_preproc_elifdef_token2] = ACTIONS(125), + [sym_preproc_directive] = ACTIONS(127), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(129), + [anon_sym___extension__] = ACTIONS(131), + [anon_sym_typedef] = ACTIONS(133), + [anon_sym_extern] = ACTIONS(135), + [anon_sym___attribute__] = ACTIONS(33), + [anon_sym___scanf] = ACTIONS(35), + [anon_sym___printf] = ACTIONS(35), + [anon_sym___read_mostly] = ACTIONS(37), + [anon_sym___must_hold] = ACTIONS(33), + [anon_sym___ro_after_init] = ACTIONS(37), + [anon_sym___noreturn] = ACTIONS(37), + [anon_sym___cold] = ACTIONS(37), + [anon_sym_LBRACK_LBRACK] = ACTIONS(39), + [anon_sym___declspec] = ACTIONS(41), + [anon_sym___init] = ACTIONS(43), + [anon_sym___exit] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(137), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_const] = ACTIONS(53), + [anon_sym_constexpr] = ACTIONS(53), + [anon_sym_volatile] = ACTIONS(53), + [anon_sym_restrict] = ACTIONS(53), + [anon_sym___restrict__] = ACTIONS(53), + [anon_sym__Atomic] = ACTIONS(53), + [anon_sym__Noreturn] = ACTIONS(53), + [anon_sym_noreturn] = ACTIONS(53), + [anon_sym_alignas] = ACTIONS(55), + [anon_sym__Alignas] = ACTIONS(55), + [sym_primitive_type] = ACTIONS(57), + [anon_sym_enum] = ACTIONS(59), + [anon_sym_struct] = ACTIONS(61), + [anon_sym_union] = ACTIONS(63), + [anon_sym_if] = ACTIONS(139), + [anon_sym_switch] = ACTIONS(141), + [anon_sym_case] = ACTIONS(143), + [anon_sym_default] = ACTIONS(145), + [anon_sym_while] = ACTIONS(147), + [anon_sym_do] = ACTIONS(149), + [anon_sym_for] = ACTIONS(151), + [anon_sym_return] = ACTIONS(153), + [anon_sym_break] = ACTIONS(155), + [anon_sym_continue] = ACTIONS(157), + [anon_sym_goto] = ACTIONS(159), + [anon_sym___try] = ACTIONS(161), + [anon_sym___leave] = ACTIONS(163), + [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(87), + [anon_sym_sizeof] = ACTIONS(89), + [anon_sym___alignof__] = ACTIONS(91), + [anon_sym___alignof] = ACTIONS(91), + [anon_sym__alignof] = ACTIONS(91), + [anon_sym_alignof] = ACTIONS(91), + [anon_sym__Alignof] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(93), + [anon_sym__Generic] = ACTIONS(95), + [anon_sym_asm] = ACTIONS(97), + [anon_sym___asm__] = ACTIONS(97), + [sym_number_literal] = ACTIONS(165), + [anon_sym_L_SQUOTE] = ACTIONS(101), + [anon_sym_u_SQUOTE] = ACTIONS(101), + [anon_sym_U_SQUOTE] = ACTIONS(101), + [anon_sym_u8_SQUOTE] = ACTIONS(101), + [anon_sym_SQUOTE] = ACTIONS(101), + [anon_sym_L_DQUOTE] = ACTIONS(103), + [anon_sym_u_DQUOTE] = ACTIONS(103), + [anon_sym_U_DQUOTE] = ACTIONS(103), + [anon_sym_u8_DQUOTE] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_true] = ACTIONS(167), + [sym_false] = ACTIONS(167), + [anon_sym_NULL] = ACTIONS(107), + [anon_sym_nullptr] = ACTIONS(107), + [sym_comment] = ACTIONS(3), + }, + [11] = { + [sym__block_item] = STATE(10), + [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(2036), + [sym_preproc_elif] = STATE(2036), + [sym_preproc_elifdef] = STATE(2036), + [sym_function_definition] = STATE(10), + [sym__old_style_function_definition] = STATE(149), + [sym_declaration] = STATE(10), + [sym_type_definition] = STATE(10), + [sym__declaration_modifiers] = STATE(805), + [sym__declaration_specifiers] = STATE(1238), + [sym_linkage_specification] = STATE(10), + [sym_attribute_specifier] = STATE(805), + [sym_attribute_declaration] = STATE(468), + [sym_ms_declspec_modifier] = STATE(805), + [sym_macro_modifier] = STATE(777), + [sym_ms_call_modifier] = STATE(615), + [sym_compound_statement] = STATE(77), + [sym_storage_class_specifier] = STATE(805), + [sym_type_qualifier] = STATE(805), + [sym_alignas_qualifier] = STATE(799), + [sym_type_specifier] = STATE(896), + [sym_sized_type_specifier] = STATE(873), + [sym_enum_specifier] = STATE(873), + [sym_struct_specifier] = STATE(873), + [sym_union_specifier] = STATE(873), + [sym_attributed_statement] = STATE(151), + [sym_statement] = STATE(10), + [sym_labeled_statement] = STATE(77), + [sym_expression_statement] = STATE(77), + [sym_if_statement] = STATE(77), + [sym_switch_statement] = STATE(77), + [sym_case_statement] = STATE(77), + [sym_while_statement] = STATE(77), + [sym_do_statement] = STATE(77), + [sym_for_statement] = STATE(77), + [sym_return_statement] = STATE(77), + [sym_break_statement] = STATE(77), + [sym_continue_statement] = STATE(77), + [sym_goto_statement] = STATE(77), + [sym_seh_try_statement] = STATE(77), + [sym_seh_leave_statement] = STATE(77), + [sym_expression] = STATE(1157), + [sym__string] = STATE(758), + [sym_comma_expression] = STATE(2232), + [sym_conditional_expression] = STATE(758), + [sym_assignment_expression] = STATE(758), + [sym_pointer_expression] = STATE(944), + [sym_unary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_cast_expression] = STATE(758), + [sym_sizeof_expression] = STATE(758), + [sym_alignof_expression] = STATE(758), + [sym_offsetof_expression] = STATE(758), + [sym_generic_expression] = STATE(758), + [sym_subscript_expression] = STATE(944), + [sym_call_expression] = STATE(944), + [sym_gnu_asm_expression] = STATE(758), + [sym_field_expression] = STATE(944), + [sym_compound_literal_expression] = STATE(758), + [sym_parenthesized_expression] = STATE(944), + [sym_char_literal] = STATE(758), + [sym_concatenated_string] = STATE(758), + [sym_string_literal] = STATE(671), + [sym_null] = STATE(758), + [sym__empty_declaration] = STATE(10), + [sym_macro_type_specifier] = STATE(873), + [aux_sym_preproc_if_repeat1] = STATE(10), + [aux_sym__declaration_specifiers_repeat1] = STATE(805), + [aux_sym_attributed_declarator_repeat1] = STATE(439), + [aux_sym_sized_type_specifier_repeat1] = STATE(890), + [sym_identifier] = ACTIONS(109), + [aux_sym_preproc_include_token1] = ACTIONS(111), + [aux_sym_preproc_def_token1] = ACTIONS(113), + [aux_sym_preproc_if_token1] = ACTIONS(115), [aux_sym_preproc_if_token2] = ACTIONS(185), - [aux_sym_preproc_ifdef_token1] = ACTIONS(117), - [aux_sym_preproc_ifdef_token2] = ACTIONS(117), - [aux_sym_preproc_else_token1] = ACTIONS(119), - [aux_sym_preproc_elif_token1] = ACTIONS(121), - [aux_sym_preproc_elifdef_token1] = ACTIONS(123), - [aux_sym_preproc_elifdef_token2] = ACTIONS(123), - [sym_preproc_directive] = ACTIONS(125), + [aux_sym_preproc_ifdef_token1] = ACTIONS(119), + [aux_sym_preproc_ifdef_token2] = ACTIONS(119), + [aux_sym_preproc_else_token1] = ACTIONS(121), + [aux_sym_preproc_elif_token1] = ACTIONS(123), + [aux_sym_preproc_elifdef_token1] = ACTIONS(125), + [aux_sym_preproc_elifdef_token2] = ACTIONS(125), + [sym_preproc_directive] = ACTIONS(127), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -13985,96 +14478,99 @@ 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(127), - [anon_sym___extension__] = ACTIONS(129), - [anon_sym_typedef] = ACTIONS(131), - [anon_sym_extern] = ACTIONS(133), + [anon_sym_SEMI] = ACTIONS(129), + [anon_sym___extension__] = ACTIONS(131), + [anon_sym_typedef] = ACTIONS(133), + [anon_sym_extern] = ACTIONS(135), [anon_sym___attribute__] = ACTIONS(33), [anon_sym___scanf] = ACTIONS(35), [anon_sym___printf] = ACTIONS(35), [anon_sym___read_mostly] = ACTIONS(37), [anon_sym___must_hold] = ACTIONS(33), [anon_sym___ro_after_init] = ACTIONS(37), - [anon_sym___init] = ACTIONS(37), + [anon_sym___noreturn] = ACTIONS(37), + [anon_sym___cold] = ACTIONS(37), [anon_sym_LBRACK_LBRACK] = ACTIONS(39), [anon_sym___declspec] = ACTIONS(41), - [anon_sym___cdecl] = ACTIONS(43), - [anon_sym___clrcall] = ACTIONS(43), - [anon_sym___stdcall] = ACTIONS(43), - [anon_sym___fastcall] = ACTIONS(43), - [anon_sym___thiscall] = ACTIONS(43), - [anon_sym___vectorcall] = ACTIONS(43), - [anon_sym_LBRACE] = ACTIONS(135), - [anon_sym_signed] = ACTIONS(47), - [anon_sym_unsigned] = ACTIONS(47), - [anon_sym_long] = ACTIONS(47), - [anon_sym_short] = ACTIONS(47), - [anon_sym_static] = ACTIONS(49), - [anon_sym_auto] = ACTIONS(49), - [anon_sym_register] = ACTIONS(49), - [anon_sym_inline] = ACTIONS(49), - [anon_sym___inline] = ACTIONS(49), - [anon_sym___inline__] = ACTIONS(49), - [anon_sym___forceinline] = ACTIONS(49), - [anon_sym_thread_local] = ACTIONS(49), - [anon_sym___thread] = ACTIONS(49), - [anon_sym_const] = ACTIONS(51), - [anon_sym_constexpr] = ACTIONS(51), - [anon_sym_volatile] = ACTIONS(51), - [anon_sym_restrict] = ACTIONS(51), - [anon_sym___restrict__] = ACTIONS(51), - [anon_sym__Atomic] = ACTIONS(51), - [anon_sym__Noreturn] = ACTIONS(51), - [anon_sym_noreturn] = ACTIONS(51), - [anon_sym_alignas] = ACTIONS(53), - [anon_sym__Alignas] = ACTIONS(53), - [sym_primitive_type] = ACTIONS(55), - [anon_sym_enum] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [anon_sym_if] = ACTIONS(137), - [anon_sym_switch] = ACTIONS(139), - [anon_sym_case] = ACTIONS(141), - [anon_sym_default] = ACTIONS(143), - [anon_sym_while] = ACTIONS(145), - [anon_sym_do] = ACTIONS(147), - [anon_sym_for] = ACTIONS(149), - [anon_sym_return] = ACTIONS(151), - [anon_sym_break] = ACTIONS(153), - [anon_sym_continue] = ACTIONS(155), - [anon_sym_goto] = ACTIONS(157), - [anon_sym___try] = ACTIONS(159), - [anon_sym___leave] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [anon_sym___alignof__] = ACTIONS(89), - [anon_sym___alignof] = ACTIONS(89), - [anon_sym__alignof] = ACTIONS(89), - [anon_sym_alignof] = ACTIONS(89), - [anon_sym__Alignof] = ACTIONS(89), - [anon_sym_offsetof] = ACTIONS(91), - [anon_sym__Generic] = ACTIONS(93), - [anon_sym_asm] = ACTIONS(95), - [anon_sym___asm__] = ACTIONS(95), - [sym_number_literal] = ACTIONS(163), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(165), - [sym_false] = ACTIONS(165), - [anon_sym_NULL] = ACTIONS(105), - [anon_sym_nullptr] = ACTIONS(105), + [anon_sym___init] = ACTIONS(43), + [anon_sym___exit] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(137), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_const] = ACTIONS(53), + [anon_sym_constexpr] = ACTIONS(53), + [anon_sym_volatile] = ACTIONS(53), + [anon_sym_restrict] = ACTIONS(53), + [anon_sym___restrict__] = ACTIONS(53), + [anon_sym__Atomic] = ACTIONS(53), + [anon_sym__Noreturn] = ACTIONS(53), + [anon_sym_noreturn] = ACTIONS(53), + [anon_sym_alignas] = ACTIONS(55), + [anon_sym__Alignas] = ACTIONS(55), + [sym_primitive_type] = ACTIONS(57), + [anon_sym_enum] = ACTIONS(59), + [anon_sym_struct] = ACTIONS(61), + [anon_sym_union] = ACTIONS(63), + [anon_sym_if] = ACTIONS(139), + [anon_sym_switch] = ACTIONS(141), + [anon_sym_case] = ACTIONS(143), + [anon_sym_default] = ACTIONS(145), + [anon_sym_while] = ACTIONS(147), + [anon_sym_do] = ACTIONS(149), + [anon_sym_for] = ACTIONS(151), + [anon_sym_return] = ACTIONS(153), + [anon_sym_break] = ACTIONS(155), + [anon_sym_continue] = ACTIONS(157), + [anon_sym_goto] = ACTIONS(159), + [anon_sym___try] = ACTIONS(161), + [anon_sym___leave] = ACTIONS(163), + [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(87), + [anon_sym_sizeof] = ACTIONS(89), + [anon_sym___alignof__] = ACTIONS(91), + [anon_sym___alignof] = ACTIONS(91), + [anon_sym__alignof] = ACTIONS(91), + [anon_sym_alignof] = ACTIONS(91), + [anon_sym__Alignof] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(93), + [anon_sym__Generic] = ACTIONS(95), + [anon_sym_asm] = ACTIONS(97), + [anon_sym___asm__] = ACTIONS(97), + [sym_number_literal] = ACTIONS(165), + [anon_sym_L_SQUOTE] = ACTIONS(101), + [anon_sym_u_SQUOTE] = ACTIONS(101), + [anon_sym_U_SQUOTE] = ACTIONS(101), + [anon_sym_u8_SQUOTE] = ACTIONS(101), + [anon_sym_SQUOTE] = ACTIONS(101), + [anon_sym_L_DQUOTE] = ACTIONS(103), + [anon_sym_u_DQUOTE] = ACTIONS(103), + [anon_sym_U_DQUOTE] = ACTIONS(103), + [anon_sym_u8_DQUOTE] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_true] = ACTIONS(167), + [sym_false] = ACTIONS(167), + [anon_sym_NULL] = ACTIONS(107), + [anon_sym_nullptr] = ACTIONS(107), [sym_comment] = ACTIONS(3), }, - [13] = { + [12] = { [sym__block_item] = STATE(22), [sym_preproc_include] = STATE(22), [sym_preproc_def] = STATE(22), @@ -14082,87 +14578,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_call] = STATE(22), [sym_preproc_if] = STATE(22), [sym_preproc_ifdef] = STATE(22), - [sym_preproc_else] = STATE(1944), - [sym_preproc_elif] = STATE(1944), - [sym_preproc_elifdef] = STATE(1944), + [sym_preproc_else] = STATE(2165), + [sym_preproc_elif] = STATE(2165), + [sym_preproc_elifdef] = STATE(2165), [sym_function_definition] = STATE(22), - [sym__old_style_function_definition] = STATE(117), + [sym__old_style_function_definition] = STATE(149), [sym_declaration] = STATE(22), [sym_type_definition] = STATE(22), - [sym__declaration_modifiers] = STATE(697), - [sym__declaration_specifiers] = STATE(1120), + [sym__declaration_modifiers] = STATE(805), + [sym__declaration_specifiers] = STATE(1238), [sym_linkage_specification] = STATE(22), - [sym_attribute_specifier] = STATE(697), - [sym_attribute_declaration] = STATE(405), - [sym_ms_declspec_modifier] = STATE(697), - [sym_ms_call_modifier] = STATE(677), - [sym_compound_statement] = STATE(93), - [sym_storage_class_specifier] = STATE(697), - [sym_type_qualifier] = STATE(697), - [sym_alignas_qualifier] = STATE(703), - [sym_type_specifier] = STATE(817), - [sym_sized_type_specifier] = STATE(746), - [sym_enum_specifier] = STATE(746), - [sym_struct_specifier] = STATE(746), - [sym_union_specifier] = STATE(746), - [sym_attributed_statement] = STATE(118), + [sym_attribute_specifier] = STATE(805), + [sym_attribute_declaration] = STATE(468), + [sym_ms_declspec_modifier] = STATE(805), + [sym_macro_modifier] = STATE(777), + [sym_ms_call_modifier] = STATE(615), + [sym_compound_statement] = STATE(77), + [sym_storage_class_specifier] = STATE(805), + [sym_type_qualifier] = STATE(805), + [sym_alignas_qualifier] = STATE(799), + [sym_type_specifier] = STATE(896), + [sym_sized_type_specifier] = STATE(873), + [sym_enum_specifier] = STATE(873), + [sym_struct_specifier] = STATE(873), + [sym_union_specifier] = STATE(873), + [sym_attributed_statement] = STATE(151), [sym_statement] = STATE(22), - [sym_labeled_statement] = STATE(93), - [sym_expression_statement] = STATE(93), - [sym_if_statement] = STATE(93), - [sym_switch_statement] = STATE(93), - [sym_case_statement] = STATE(93), - [sym_while_statement] = STATE(93), - [sym_do_statement] = STATE(93), - [sym_for_statement] = STATE(93), - [sym_return_statement] = STATE(93), - [sym_break_statement] = STATE(93), - [sym_continue_statement] = STATE(93), - [sym_goto_statement] = STATE(93), - [sym_seh_try_statement] = STATE(93), - [sym_seh_leave_statement] = STATE(93), - [sym_expression] = STATE(1073), - [sym__string] = STATE(663), - [sym_comma_expression] = STATE(1821), - [sym_conditional_expression] = STATE(663), - [sym_assignment_expression] = STATE(663), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(663), - [sym_binary_expression] = STATE(663), - [sym_update_expression] = STATE(663), - [sym_cast_expression] = STATE(663), - [sym_sizeof_expression] = STATE(663), - [sym_alignof_expression] = STATE(663), - [sym_offsetof_expression] = STATE(663), - [sym_generic_expression] = STATE(663), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(663), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(663), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(663), - [sym_concatenated_string] = STATE(663), - [sym_string_literal] = STATE(659), - [sym_null] = STATE(663), + [sym_labeled_statement] = STATE(77), + [sym_expression_statement] = STATE(77), + [sym_if_statement] = STATE(77), + [sym_switch_statement] = STATE(77), + [sym_case_statement] = STATE(77), + [sym_while_statement] = STATE(77), + [sym_do_statement] = STATE(77), + [sym_for_statement] = STATE(77), + [sym_return_statement] = STATE(77), + [sym_break_statement] = STATE(77), + [sym_continue_statement] = STATE(77), + [sym_goto_statement] = STATE(77), + [sym_seh_try_statement] = STATE(77), + [sym_seh_leave_statement] = STATE(77), + [sym_expression] = STATE(1157), + [sym__string] = STATE(758), + [sym_comma_expression] = STATE(2232), + [sym_conditional_expression] = STATE(758), + [sym_assignment_expression] = STATE(758), + [sym_pointer_expression] = STATE(944), + [sym_unary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_cast_expression] = STATE(758), + [sym_sizeof_expression] = STATE(758), + [sym_alignof_expression] = STATE(758), + [sym_offsetof_expression] = STATE(758), + [sym_generic_expression] = STATE(758), + [sym_subscript_expression] = STATE(944), + [sym_call_expression] = STATE(944), + [sym_gnu_asm_expression] = STATE(758), + [sym_field_expression] = STATE(944), + [sym_compound_literal_expression] = STATE(758), + [sym_parenthesized_expression] = STATE(944), + [sym_char_literal] = STATE(758), + [sym_concatenated_string] = STATE(758), + [sym_string_literal] = STATE(671), + [sym_null] = STATE(758), [sym__empty_declaration] = STATE(22), - [sym_macro_type_specifier] = STATE(746), + [sym_macro_type_specifier] = STATE(873), [aux_sym_preproc_if_repeat1] = STATE(22), - [aux_sym__declaration_specifiers_repeat1] = STATE(697), - [aux_sym_attributed_declarator_repeat1] = STATE(365), - [aux_sym_sized_type_specifier_repeat1] = STATE(747), - [sym_identifier] = ACTIONS(107), - [aux_sym_preproc_include_token1] = ACTIONS(109), - [aux_sym_preproc_def_token1] = ACTIONS(111), - [aux_sym_preproc_if_token1] = ACTIONS(113), + [aux_sym__declaration_specifiers_repeat1] = STATE(805), + [aux_sym_attributed_declarator_repeat1] = STATE(439), + [aux_sym_sized_type_specifier_repeat1] = STATE(890), + [sym_identifier] = ACTIONS(109), + [aux_sym_preproc_include_token1] = ACTIONS(111), + [aux_sym_preproc_def_token1] = ACTIONS(113), + [aux_sym_preproc_if_token1] = ACTIONS(115), [aux_sym_preproc_if_token2] = ACTIONS(187), - [aux_sym_preproc_ifdef_token1] = ACTIONS(117), - [aux_sym_preproc_ifdef_token2] = ACTIONS(117), - [aux_sym_preproc_else_token1] = ACTIONS(119), - [aux_sym_preproc_elif_token1] = ACTIONS(121), - [aux_sym_preproc_elifdef_token1] = ACTIONS(123), - [aux_sym_preproc_elifdef_token2] = ACTIONS(123), - [sym_preproc_directive] = ACTIONS(125), + [aux_sym_preproc_ifdef_token1] = ACTIONS(119), + [aux_sym_preproc_ifdef_token2] = ACTIONS(119), + [aux_sym_preproc_else_token1] = ACTIONS(121), + [aux_sym_preproc_elif_token1] = ACTIONS(123), + [aux_sym_preproc_elifdef_token1] = ACTIONS(125), + [aux_sym_preproc_elifdef_token2] = ACTIONS(125), + [sym_preproc_directive] = ACTIONS(127), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -14170,184 +14667,188 @@ 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(127), - [anon_sym___extension__] = ACTIONS(129), - [anon_sym_typedef] = ACTIONS(131), - [anon_sym_extern] = ACTIONS(133), + [anon_sym_SEMI] = ACTIONS(129), + [anon_sym___extension__] = ACTIONS(131), + [anon_sym_typedef] = ACTIONS(133), + [anon_sym_extern] = ACTIONS(135), [anon_sym___attribute__] = ACTIONS(33), [anon_sym___scanf] = ACTIONS(35), [anon_sym___printf] = ACTIONS(35), [anon_sym___read_mostly] = ACTIONS(37), [anon_sym___must_hold] = ACTIONS(33), [anon_sym___ro_after_init] = ACTIONS(37), - [anon_sym___init] = ACTIONS(37), + [anon_sym___noreturn] = ACTIONS(37), + [anon_sym___cold] = ACTIONS(37), [anon_sym_LBRACK_LBRACK] = ACTIONS(39), [anon_sym___declspec] = ACTIONS(41), - [anon_sym___cdecl] = ACTIONS(43), - [anon_sym___clrcall] = ACTIONS(43), - [anon_sym___stdcall] = ACTIONS(43), - [anon_sym___fastcall] = ACTIONS(43), - [anon_sym___thiscall] = ACTIONS(43), - [anon_sym___vectorcall] = ACTIONS(43), - [anon_sym_LBRACE] = ACTIONS(135), - [anon_sym_signed] = ACTIONS(47), - [anon_sym_unsigned] = ACTIONS(47), - [anon_sym_long] = ACTIONS(47), - [anon_sym_short] = ACTIONS(47), - [anon_sym_static] = ACTIONS(49), - [anon_sym_auto] = ACTIONS(49), - [anon_sym_register] = ACTIONS(49), - [anon_sym_inline] = ACTIONS(49), - [anon_sym___inline] = ACTIONS(49), - [anon_sym___inline__] = ACTIONS(49), - [anon_sym___forceinline] = ACTIONS(49), - [anon_sym_thread_local] = ACTIONS(49), - [anon_sym___thread] = ACTIONS(49), - [anon_sym_const] = ACTIONS(51), - [anon_sym_constexpr] = ACTIONS(51), - [anon_sym_volatile] = ACTIONS(51), - [anon_sym_restrict] = ACTIONS(51), - [anon_sym___restrict__] = ACTIONS(51), - [anon_sym__Atomic] = ACTIONS(51), - [anon_sym__Noreturn] = ACTIONS(51), - [anon_sym_noreturn] = ACTIONS(51), - [anon_sym_alignas] = ACTIONS(53), - [anon_sym__Alignas] = ACTIONS(53), - [sym_primitive_type] = ACTIONS(55), - [anon_sym_enum] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [anon_sym_if] = ACTIONS(137), - [anon_sym_switch] = ACTIONS(139), - [anon_sym_case] = ACTIONS(141), - [anon_sym_default] = ACTIONS(143), - [anon_sym_while] = ACTIONS(145), - [anon_sym_do] = ACTIONS(147), - [anon_sym_for] = ACTIONS(149), - [anon_sym_return] = ACTIONS(151), - [anon_sym_break] = ACTIONS(153), - [anon_sym_continue] = ACTIONS(155), - [anon_sym_goto] = ACTIONS(157), - [anon_sym___try] = ACTIONS(159), - [anon_sym___leave] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [anon_sym___alignof__] = ACTIONS(89), - [anon_sym___alignof] = ACTIONS(89), - [anon_sym__alignof] = ACTIONS(89), - [anon_sym_alignof] = ACTIONS(89), - [anon_sym__Alignof] = ACTIONS(89), - [anon_sym_offsetof] = ACTIONS(91), - [anon_sym__Generic] = ACTIONS(93), - [anon_sym_asm] = ACTIONS(95), - [anon_sym___asm__] = ACTIONS(95), - [sym_number_literal] = ACTIONS(163), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(165), - [sym_false] = ACTIONS(165), - [anon_sym_NULL] = ACTIONS(105), - [anon_sym_nullptr] = ACTIONS(105), + [anon_sym___init] = ACTIONS(43), + [anon_sym___exit] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(137), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_const] = ACTIONS(53), + [anon_sym_constexpr] = ACTIONS(53), + [anon_sym_volatile] = ACTIONS(53), + [anon_sym_restrict] = ACTIONS(53), + [anon_sym___restrict__] = ACTIONS(53), + [anon_sym__Atomic] = ACTIONS(53), + [anon_sym__Noreturn] = ACTIONS(53), + [anon_sym_noreturn] = ACTIONS(53), + [anon_sym_alignas] = ACTIONS(55), + [anon_sym__Alignas] = ACTIONS(55), + [sym_primitive_type] = ACTIONS(57), + [anon_sym_enum] = ACTIONS(59), + [anon_sym_struct] = ACTIONS(61), + [anon_sym_union] = ACTIONS(63), + [anon_sym_if] = ACTIONS(139), + [anon_sym_switch] = ACTIONS(141), + [anon_sym_case] = ACTIONS(143), + [anon_sym_default] = ACTIONS(145), + [anon_sym_while] = ACTIONS(147), + [anon_sym_do] = ACTIONS(149), + [anon_sym_for] = ACTIONS(151), + [anon_sym_return] = ACTIONS(153), + [anon_sym_break] = ACTIONS(155), + [anon_sym_continue] = ACTIONS(157), + [anon_sym_goto] = ACTIONS(159), + [anon_sym___try] = ACTIONS(161), + [anon_sym___leave] = ACTIONS(163), + [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(87), + [anon_sym_sizeof] = ACTIONS(89), + [anon_sym___alignof__] = ACTIONS(91), + [anon_sym___alignof] = ACTIONS(91), + [anon_sym__alignof] = ACTIONS(91), + [anon_sym_alignof] = ACTIONS(91), + [anon_sym__Alignof] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(93), + [anon_sym__Generic] = ACTIONS(95), + [anon_sym_asm] = ACTIONS(97), + [anon_sym___asm__] = ACTIONS(97), + [sym_number_literal] = ACTIONS(165), + [anon_sym_L_SQUOTE] = ACTIONS(101), + [anon_sym_u_SQUOTE] = ACTIONS(101), + [anon_sym_U_SQUOTE] = ACTIONS(101), + [anon_sym_u8_SQUOTE] = ACTIONS(101), + [anon_sym_SQUOTE] = ACTIONS(101), + [anon_sym_L_DQUOTE] = ACTIONS(103), + [anon_sym_u_DQUOTE] = ACTIONS(103), + [anon_sym_U_DQUOTE] = ACTIONS(103), + [anon_sym_u8_DQUOTE] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_true] = ACTIONS(167), + [sym_false] = ACTIONS(167), + [anon_sym_NULL] = ACTIONS(107), + [anon_sym_nullptr] = ACTIONS(107), [sym_comment] = ACTIONS(3), }, - [14] = { - [sym__block_item] = STATE(21), - [sym_preproc_include] = STATE(21), - [sym_preproc_def] = STATE(21), - [sym_preproc_function_def] = STATE(21), - [sym_preproc_call] = STATE(21), - [sym_preproc_if] = STATE(21), - [sym_preproc_ifdef] = STATE(21), - [sym_preproc_else] = STATE(2050), - [sym_preproc_elif] = STATE(2050), - [sym_preproc_elifdef] = STATE(2050), - [sym_function_definition] = STATE(21), - [sym__old_style_function_definition] = STATE(117), - [sym_declaration] = STATE(21), - [sym_type_definition] = STATE(21), - [sym__declaration_modifiers] = STATE(697), - [sym__declaration_specifiers] = STATE(1120), - [sym_linkage_specification] = STATE(21), - [sym_attribute_specifier] = STATE(697), - [sym_attribute_declaration] = STATE(405), - [sym_ms_declspec_modifier] = STATE(697), - [sym_ms_call_modifier] = STATE(677), - [sym_compound_statement] = STATE(93), - [sym_storage_class_specifier] = STATE(697), - [sym_type_qualifier] = STATE(697), - [sym_alignas_qualifier] = STATE(703), - [sym_type_specifier] = STATE(817), - [sym_sized_type_specifier] = STATE(746), - [sym_enum_specifier] = STATE(746), - [sym_struct_specifier] = STATE(746), - [sym_union_specifier] = STATE(746), - [sym_attributed_statement] = STATE(118), - [sym_statement] = STATE(21), - [sym_labeled_statement] = STATE(93), - [sym_expression_statement] = STATE(93), - [sym_if_statement] = STATE(93), - [sym_switch_statement] = STATE(93), - [sym_case_statement] = STATE(93), - [sym_while_statement] = STATE(93), - [sym_do_statement] = STATE(93), - [sym_for_statement] = STATE(93), - [sym_return_statement] = STATE(93), - [sym_break_statement] = STATE(93), - [sym_continue_statement] = STATE(93), - [sym_goto_statement] = STATE(93), - [sym_seh_try_statement] = STATE(93), - [sym_seh_leave_statement] = STATE(93), - [sym_expression] = STATE(1073), - [sym__string] = STATE(663), - [sym_comma_expression] = STATE(1821), - [sym_conditional_expression] = STATE(663), - [sym_assignment_expression] = STATE(663), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(663), - [sym_binary_expression] = STATE(663), - [sym_update_expression] = STATE(663), - [sym_cast_expression] = STATE(663), - [sym_sizeof_expression] = STATE(663), - [sym_alignof_expression] = STATE(663), - [sym_offsetof_expression] = STATE(663), - [sym_generic_expression] = STATE(663), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(663), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(663), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(663), - [sym_concatenated_string] = STATE(663), - [sym_string_literal] = STATE(659), - [sym_null] = STATE(663), - [sym__empty_declaration] = STATE(21), - [sym_macro_type_specifier] = STATE(746), - [aux_sym_preproc_if_repeat1] = STATE(21), - [aux_sym__declaration_specifiers_repeat1] = STATE(697), - [aux_sym_attributed_declarator_repeat1] = STATE(365), - [aux_sym_sized_type_specifier_repeat1] = STATE(747), - [sym_identifier] = ACTIONS(107), - [aux_sym_preproc_include_token1] = ACTIONS(109), - [aux_sym_preproc_def_token1] = ACTIONS(111), - [aux_sym_preproc_if_token1] = ACTIONS(113), + [13] = { + [sym__block_item] = STATE(9), + [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(2059), + [sym_preproc_elif] = STATE(2059), + [sym_preproc_elifdef] = STATE(2059), + [sym_function_definition] = STATE(9), + [sym__old_style_function_definition] = STATE(149), + [sym_declaration] = STATE(9), + [sym_type_definition] = STATE(9), + [sym__declaration_modifiers] = STATE(805), + [sym__declaration_specifiers] = STATE(1238), + [sym_linkage_specification] = STATE(9), + [sym_attribute_specifier] = STATE(805), + [sym_attribute_declaration] = STATE(468), + [sym_ms_declspec_modifier] = STATE(805), + [sym_macro_modifier] = STATE(777), + [sym_ms_call_modifier] = STATE(615), + [sym_compound_statement] = STATE(77), + [sym_storage_class_specifier] = STATE(805), + [sym_type_qualifier] = STATE(805), + [sym_alignas_qualifier] = STATE(799), + [sym_type_specifier] = STATE(896), + [sym_sized_type_specifier] = STATE(873), + [sym_enum_specifier] = STATE(873), + [sym_struct_specifier] = STATE(873), + [sym_union_specifier] = STATE(873), + [sym_attributed_statement] = STATE(151), + [sym_statement] = STATE(9), + [sym_labeled_statement] = STATE(77), + [sym_expression_statement] = STATE(77), + [sym_if_statement] = STATE(77), + [sym_switch_statement] = STATE(77), + [sym_case_statement] = STATE(77), + [sym_while_statement] = STATE(77), + [sym_do_statement] = STATE(77), + [sym_for_statement] = STATE(77), + [sym_return_statement] = STATE(77), + [sym_break_statement] = STATE(77), + [sym_continue_statement] = STATE(77), + [sym_goto_statement] = STATE(77), + [sym_seh_try_statement] = STATE(77), + [sym_seh_leave_statement] = STATE(77), + [sym_expression] = STATE(1157), + [sym__string] = STATE(758), + [sym_comma_expression] = STATE(2232), + [sym_conditional_expression] = STATE(758), + [sym_assignment_expression] = STATE(758), + [sym_pointer_expression] = STATE(944), + [sym_unary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_cast_expression] = STATE(758), + [sym_sizeof_expression] = STATE(758), + [sym_alignof_expression] = STATE(758), + [sym_offsetof_expression] = STATE(758), + [sym_generic_expression] = STATE(758), + [sym_subscript_expression] = STATE(944), + [sym_call_expression] = STATE(944), + [sym_gnu_asm_expression] = STATE(758), + [sym_field_expression] = STATE(944), + [sym_compound_literal_expression] = STATE(758), + [sym_parenthesized_expression] = STATE(944), + [sym_char_literal] = STATE(758), + [sym_concatenated_string] = STATE(758), + [sym_string_literal] = STATE(671), + [sym_null] = STATE(758), + [sym__empty_declaration] = STATE(9), + [sym_macro_type_specifier] = STATE(873), + [aux_sym_preproc_if_repeat1] = STATE(9), + [aux_sym__declaration_specifiers_repeat1] = STATE(805), + [aux_sym_attributed_declarator_repeat1] = STATE(439), + [aux_sym_sized_type_specifier_repeat1] = STATE(890), + [sym_identifier] = ACTIONS(109), + [aux_sym_preproc_include_token1] = ACTIONS(111), + [aux_sym_preproc_def_token1] = ACTIONS(113), + [aux_sym_preproc_if_token1] = ACTIONS(115), [aux_sym_preproc_if_token2] = ACTIONS(189), - [aux_sym_preproc_ifdef_token1] = ACTIONS(117), - [aux_sym_preproc_ifdef_token2] = ACTIONS(117), - [aux_sym_preproc_else_token1] = ACTIONS(119), - [aux_sym_preproc_elif_token1] = ACTIONS(121), - [aux_sym_preproc_elifdef_token1] = ACTIONS(123), - [aux_sym_preproc_elifdef_token2] = ACTIONS(123), - [sym_preproc_directive] = ACTIONS(125), + [aux_sym_preproc_ifdef_token1] = ACTIONS(119), + [aux_sym_preproc_ifdef_token2] = ACTIONS(119), + [aux_sym_preproc_else_token1] = ACTIONS(121), + [aux_sym_preproc_elif_token1] = ACTIONS(123), + [aux_sym_preproc_elifdef_token1] = ACTIONS(125), + [aux_sym_preproc_elifdef_token2] = ACTIONS(125), + [sym_preproc_directive] = ACTIONS(127), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -14355,184 +14856,188 @@ 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(127), - [anon_sym___extension__] = ACTIONS(129), - [anon_sym_typedef] = ACTIONS(131), - [anon_sym_extern] = ACTIONS(133), + [anon_sym_SEMI] = ACTIONS(129), + [anon_sym___extension__] = ACTIONS(131), + [anon_sym_typedef] = ACTIONS(133), + [anon_sym_extern] = ACTIONS(135), [anon_sym___attribute__] = ACTIONS(33), [anon_sym___scanf] = ACTIONS(35), [anon_sym___printf] = ACTIONS(35), [anon_sym___read_mostly] = ACTIONS(37), [anon_sym___must_hold] = ACTIONS(33), [anon_sym___ro_after_init] = ACTIONS(37), - [anon_sym___init] = ACTIONS(37), + [anon_sym___noreturn] = ACTIONS(37), + [anon_sym___cold] = ACTIONS(37), [anon_sym_LBRACK_LBRACK] = ACTIONS(39), [anon_sym___declspec] = ACTIONS(41), - [anon_sym___cdecl] = ACTIONS(43), - [anon_sym___clrcall] = ACTIONS(43), - [anon_sym___stdcall] = ACTIONS(43), - [anon_sym___fastcall] = ACTIONS(43), - [anon_sym___thiscall] = ACTIONS(43), - [anon_sym___vectorcall] = ACTIONS(43), - [anon_sym_LBRACE] = ACTIONS(135), - [anon_sym_signed] = ACTIONS(47), - [anon_sym_unsigned] = ACTIONS(47), - [anon_sym_long] = ACTIONS(47), - [anon_sym_short] = ACTIONS(47), - [anon_sym_static] = ACTIONS(49), - [anon_sym_auto] = ACTIONS(49), - [anon_sym_register] = ACTIONS(49), - [anon_sym_inline] = ACTIONS(49), - [anon_sym___inline] = ACTIONS(49), - [anon_sym___inline__] = ACTIONS(49), - [anon_sym___forceinline] = ACTIONS(49), - [anon_sym_thread_local] = ACTIONS(49), - [anon_sym___thread] = ACTIONS(49), - [anon_sym_const] = ACTIONS(51), - [anon_sym_constexpr] = ACTIONS(51), - [anon_sym_volatile] = ACTIONS(51), - [anon_sym_restrict] = ACTIONS(51), - [anon_sym___restrict__] = ACTIONS(51), - [anon_sym__Atomic] = ACTIONS(51), - [anon_sym__Noreturn] = ACTIONS(51), - [anon_sym_noreturn] = ACTIONS(51), - [anon_sym_alignas] = ACTIONS(53), - [anon_sym__Alignas] = ACTIONS(53), - [sym_primitive_type] = ACTIONS(55), - [anon_sym_enum] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [anon_sym_if] = ACTIONS(137), - [anon_sym_switch] = ACTIONS(139), - [anon_sym_case] = ACTIONS(141), - [anon_sym_default] = ACTIONS(143), - [anon_sym_while] = ACTIONS(145), - [anon_sym_do] = ACTIONS(147), - [anon_sym_for] = ACTIONS(149), - [anon_sym_return] = ACTIONS(151), - [anon_sym_break] = ACTIONS(153), - [anon_sym_continue] = ACTIONS(155), - [anon_sym_goto] = ACTIONS(157), - [anon_sym___try] = ACTIONS(159), - [anon_sym___leave] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [anon_sym___alignof__] = ACTIONS(89), - [anon_sym___alignof] = ACTIONS(89), - [anon_sym__alignof] = ACTIONS(89), - [anon_sym_alignof] = ACTIONS(89), - [anon_sym__Alignof] = ACTIONS(89), - [anon_sym_offsetof] = ACTIONS(91), - [anon_sym__Generic] = ACTIONS(93), - [anon_sym_asm] = ACTIONS(95), - [anon_sym___asm__] = ACTIONS(95), - [sym_number_literal] = ACTIONS(163), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(165), - [sym_false] = ACTIONS(165), - [anon_sym_NULL] = ACTIONS(105), - [anon_sym_nullptr] = ACTIONS(105), + [anon_sym___init] = ACTIONS(43), + [anon_sym___exit] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(137), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_const] = ACTIONS(53), + [anon_sym_constexpr] = ACTIONS(53), + [anon_sym_volatile] = ACTIONS(53), + [anon_sym_restrict] = ACTIONS(53), + [anon_sym___restrict__] = ACTIONS(53), + [anon_sym__Atomic] = ACTIONS(53), + [anon_sym__Noreturn] = ACTIONS(53), + [anon_sym_noreturn] = ACTIONS(53), + [anon_sym_alignas] = ACTIONS(55), + [anon_sym__Alignas] = ACTIONS(55), + [sym_primitive_type] = ACTIONS(57), + [anon_sym_enum] = ACTIONS(59), + [anon_sym_struct] = ACTIONS(61), + [anon_sym_union] = ACTIONS(63), + [anon_sym_if] = ACTIONS(139), + [anon_sym_switch] = ACTIONS(141), + [anon_sym_case] = ACTIONS(143), + [anon_sym_default] = ACTIONS(145), + [anon_sym_while] = ACTIONS(147), + [anon_sym_do] = ACTIONS(149), + [anon_sym_for] = ACTIONS(151), + [anon_sym_return] = ACTIONS(153), + [anon_sym_break] = ACTIONS(155), + [anon_sym_continue] = ACTIONS(157), + [anon_sym_goto] = ACTIONS(159), + [anon_sym___try] = ACTIONS(161), + [anon_sym___leave] = ACTIONS(163), + [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(87), + [anon_sym_sizeof] = ACTIONS(89), + [anon_sym___alignof__] = ACTIONS(91), + [anon_sym___alignof] = ACTIONS(91), + [anon_sym__alignof] = ACTIONS(91), + [anon_sym_alignof] = ACTIONS(91), + [anon_sym__Alignof] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(93), + [anon_sym__Generic] = ACTIONS(95), + [anon_sym_asm] = ACTIONS(97), + [anon_sym___asm__] = ACTIONS(97), + [sym_number_literal] = ACTIONS(165), + [anon_sym_L_SQUOTE] = ACTIONS(101), + [anon_sym_u_SQUOTE] = ACTIONS(101), + [anon_sym_U_SQUOTE] = ACTIONS(101), + [anon_sym_u8_SQUOTE] = ACTIONS(101), + [anon_sym_SQUOTE] = ACTIONS(101), + [anon_sym_L_DQUOTE] = ACTIONS(103), + [anon_sym_u_DQUOTE] = ACTIONS(103), + [anon_sym_U_DQUOTE] = ACTIONS(103), + [anon_sym_u8_DQUOTE] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_true] = ACTIONS(167), + [sym_false] = ACTIONS(167), + [anon_sym_NULL] = ACTIONS(107), + [anon_sym_nullptr] = ACTIONS(107), [sym_comment] = ACTIONS(3), }, - [15] = { - [sym__block_item] = STATE(7), - [sym_preproc_include] = STATE(7), - [sym_preproc_def] = STATE(7), - [sym_preproc_function_def] = STATE(7), - [sym_preproc_call] = STATE(7), - [sym_preproc_if] = STATE(7), - [sym_preproc_ifdef] = STATE(7), - [sym_preproc_else] = STATE(1811), - [sym_preproc_elif] = STATE(1811), - [sym_preproc_elifdef] = STATE(1811), - [sym_function_definition] = STATE(7), - [sym__old_style_function_definition] = STATE(117), - [sym_declaration] = STATE(7), - [sym_type_definition] = STATE(7), - [sym__declaration_modifiers] = STATE(697), - [sym__declaration_specifiers] = STATE(1120), - [sym_linkage_specification] = STATE(7), - [sym_attribute_specifier] = STATE(697), - [sym_attribute_declaration] = STATE(405), - [sym_ms_declspec_modifier] = STATE(697), - [sym_ms_call_modifier] = STATE(677), - [sym_compound_statement] = STATE(93), - [sym_storage_class_specifier] = STATE(697), - [sym_type_qualifier] = STATE(697), - [sym_alignas_qualifier] = STATE(703), - [sym_type_specifier] = STATE(817), - [sym_sized_type_specifier] = STATE(746), - [sym_enum_specifier] = STATE(746), - [sym_struct_specifier] = STATE(746), - [sym_union_specifier] = STATE(746), - [sym_attributed_statement] = STATE(118), - [sym_statement] = STATE(7), - [sym_labeled_statement] = STATE(93), - [sym_expression_statement] = STATE(93), - [sym_if_statement] = STATE(93), - [sym_switch_statement] = STATE(93), - [sym_case_statement] = STATE(93), - [sym_while_statement] = STATE(93), - [sym_do_statement] = STATE(93), - [sym_for_statement] = STATE(93), - [sym_return_statement] = STATE(93), - [sym_break_statement] = STATE(93), - [sym_continue_statement] = STATE(93), - [sym_goto_statement] = STATE(93), - [sym_seh_try_statement] = STATE(93), - [sym_seh_leave_statement] = STATE(93), - [sym_expression] = STATE(1073), - [sym__string] = STATE(663), - [sym_comma_expression] = STATE(1821), - [sym_conditional_expression] = STATE(663), - [sym_assignment_expression] = STATE(663), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(663), - [sym_binary_expression] = STATE(663), - [sym_update_expression] = STATE(663), - [sym_cast_expression] = STATE(663), - [sym_sizeof_expression] = STATE(663), - [sym_alignof_expression] = STATE(663), - [sym_offsetof_expression] = STATE(663), - [sym_generic_expression] = STATE(663), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(663), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(663), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(663), - [sym_concatenated_string] = STATE(663), - [sym_string_literal] = STATE(659), - [sym_null] = STATE(663), - [sym__empty_declaration] = STATE(7), - [sym_macro_type_specifier] = STATE(746), - [aux_sym_preproc_if_repeat1] = STATE(7), - [aux_sym__declaration_specifiers_repeat1] = STATE(697), - [aux_sym_attributed_declarator_repeat1] = STATE(365), - [aux_sym_sized_type_specifier_repeat1] = STATE(747), - [sym_identifier] = ACTIONS(107), - [aux_sym_preproc_include_token1] = ACTIONS(109), - [aux_sym_preproc_def_token1] = ACTIONS(111), - [aux_sym_preproc_if_token1] = ACTIONS(113), + [14] = { + [sym__block_item] = STATE(16), + [sym_preproc_include] = STATE(16), + [sym_preproc_def] = STATE(16), + [sym_preproc_function_def] = STATE(16), + [sym_preproc_call] = STATE(16), + [sym_preproc_if] = STATE(16), + [sym_preproc_ifdef] = STATE(16), + [sym_preproc_else] = STATE(2196), + [sym_preproc_elif] = STATE(2196), + [sym_preproc_elifdef] = STATE(2196), + [sym_function_definition] = STATE(16), + [sym__old_style_function_definition] = STATE(149), + [sym_declaration] = STATE(16), + [sym_type_definition] = STATE(16), + [sym__declaration_modifiers] = STATE(805), + [sym__declaration_specifiers] = STATE(1238), + [sym_linkage_specification] = STATE(16), + [sym_attribute_specifier] = STATE(805), + [sym_attribute_declaration] = STATE(468), + [sym_ms_declspec_modifier] = STATE(805), + [sym_macro_modifier] = STATE(777), + [sym_ms_call_modifier] = STATE(615), + [sym_compound_statement] = STATE(77), + [sym_storage_class_specifier] = STATE(805), + [sym_type_qualifier] = STATE(805), + [sym_alignas_qualifier] = STATE(799), + [sym_type_specifier] = STATE(896), + [sym_sized_type_specifier] = STATE(873), + [sym_enum_specifier] = STATE(873), + [sym_struct_specifier] = STATE(873), + [sym_union_specifier] = STATE(873), + [sym_attributed_statement] = STATE(151), + [sym_statement] = STATE(16), + [sym_labeled_statement] = STATE(77), + [sym_expression_statement] = STATE(77), + [sym_if_statement] = STATE(77), + [sym_switch_statement] = STATE(77), + [sym_case_statement] = STATE(77), + [sym_while_statement] = STATE(77), + [sym_do_statement] = STATE(77), + [sym_for_statement] = STATE(77), + [sym_return_statement] = STATE(77), + [sym_break_statement] = STATE(77), + [sym_continue_statement] = STATE(77), + [sym_goto_statement] = STATE(77), + [sym_seh_try_statement] = STATE(77), + [sym_seh_leave_statement] = STATE(77), + [sym_expression] = STATE(1157), + [sym__string] = STATE(758), + [sym_comma_expression] = STATE(2232), + [sym_conditional_expression] = STATE(758), + [sym_assignment_expression] = STATE(758), + [sym_pointer_expression] = STATE(944), + [sym_unary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_cast_expression] = STATE(758), + [sym_sizeof_expression] = STATE(758), + [sym_alignof_expression] = STATE(758), + [sym_offsetof_expression] = STATE(758), + [sym_generic_expression] = STATE(758), + [sym_subscript_expression] = STATE(944), + [sym_call_expression] = STATE(944), + [sym_gnu_asm_expression] = STATE(758), + [sym_field_expression] = STATE(944), + [sym_compound_literal_expression] = STATE(758), + [sym_parenthesized_expression] = STATE(944), + [sym_char_literal] = STATE(758), + [sym_concatenated_string] = STATE(758), + [sym_string_literal] = STATE(671), + [sym_null] = STATE(758), + [sym__empty_declaration] = STATE(16), + [sym_macro_type_specifier] = STATE(873), + [aux_sym_preproc_if_repeat1] = STATE(16), + [aux_sym__declaration_specifiers_repeat1] = STATE(805), + [aux_sym_attributed_declarator_repeat1] = STATE(439), + [aux_sym_sized_type_specifier_repeat1] = STATE(890), + [sym_identifier] = ACTIONS(109), + [aux_sym_preproc_include_token1] = ACTIONS(111), + [aux_sym_preproc_def_token1] = ACTIONS(113), + [aux_sym_preproc_if_token1] = ACTIONS(115), [aux_sym_preproc_if_token2] = ACTIONS(191), - [aux_sym_preproc_ifdef_token1] = ACTIONS(117), - [aux_sym_preproc_ifdef_token2] = ACTIONS(117), - [aux_sym_preproc_else_token1] = ACTIONS(119), - [aux_sym_preproc_elif_token1] = ACTIONS(121), - [aux_sym_preproc_elifdef_token1] = ACTIONS(123), - [aux_sym_preproc_elifdef_token2] = ACTIONS(123), - [sym_preproc_directive] = ACTIONS(125), + [aux_sym_preproc_ifdef_token1] = ACTIONS(119), + [aux_sym_preproc_ifdef_token2] = ACTIONS(119), + [aux_sym_preproc_else_token1] = ACTIONS(121), + [aux_sym_preproc_elif_token1] = ACTIONS(123), + [aux_sym_preproc_elifdef_token1] = ACTIONS(125), + [aux_sym_preproc_elifdef_token2] = ACTIONS(125), + [sym_preproc_directive] = ACTIONS(127), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -14540,184 +15045,188 @@ 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(127), - [anon_sym___extension__] = ACTIONS(129), - [anon_sym_typedef] = ACTIONS(131), - [anon_sym_extern] = ACTIONS(133), + [anon_sym_SEMI] = ACTIONS(129), + [anon_sym___extension__] = ACTIONS(131), + [anon_sym_typedef] = ACTIONS(133), + [anon_sym_extern] = ACTIONS(135), [anon_sym___attribute__] = ACTIONS(33), [anon_sym___scanf] = ACTIONS(35), [anon_sym___printf] = ACTIONS(35), [anon_sym___read_mostly] = ACTIONS(37), [anon_sym___must_hold] = ACTIONS(33), [anon_sym___ro_after_init] = ACTIONS(37), - [anon_sym___init] = ACTIONS(37), + [anon_sym___noreturn] = ACTIONS(37), + [anon_sym___cold] = ACTIONS(37), [anon_sym_LBRACK_LBRACK] = ACTIONS(39), [anon_sym___declspec] = ACTIONS(41), - [anon_sym___cdecl] = ACTIONS(43), - [anon_sym___clrcall] = ACTIONS(43), - [anon_sym___stdcall] = ACTIONS(43), - [anon_sym___fastcall] = ACTIONS(43), - [anon_sym___thiscall] = ACTIONS(43), - [anon_sym___vectorcall] = ACTIONS(43), - [anon_sym_LBRACE] = ACTIONS(135), - [anon_sym_signed] = ACTIONS(47), - [anon_sym_unsigned] = ACTIONS(47), - [anon_sym_long] = ACTIONS(47), - [anon_sym_short] = ACTIONS(47), - [anon_sym_static] = ACTIONS(49), - [anon_sym_auto] = ACTIONS(49), - [anon_sym_register] = ACTIONS(49), - [anon_sym_inline] = ACTIONS(49), - [anon_sym___inline] = ACTIONS(49), - [anon_sym___inline__] = ACTIONS(49), - [anon_sym___forceinline] = ACTIONS(49), - [anon_sym_thread_local] = ACTIONS(49), - [anon_sym___thread] = ACTIONS(49), - [anon_sym_const] = ACTIONS(51), - [anon_sym_constexpr] = ACTIONS(51), - [anon_sym_volatile] = ACTIONS(51), - [anon_sym_restrict] = ACTIONS(51), - [anon_sym___restrict__] = ACTIONS(51), - [anon_sym__Atomic] = ACTIONS(51), - [anon_sym__Noreturn] = ACTIONS(51), - [anon_sym_noreturn] = ACTIONS(51), - [anon_sym_alignas] = ACTIONS(53), - [anon_sym__Alignas] = ACTIONS(53), - [sym_primitive_type] = ACTIONS(55), - [anon_sym_enum] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [anon_sym_if] = ACTIONS(137), - [anon_sym_switch] = ACTIONS(139), - [anon_sym_case] = ACTIONS(141), - [anon_sym_default] = ACTIONS(143), - [anon_sym_while] = ACTIONS(145), - [anon_sym_do] = ACTIONS(147), - [anon_sym_for] = ACTIONS(149), - [anon_sym_return] = ACTIONS(151), - [anon_sym_break] = ACTIONS(153), - [anon_sym_continue] = ACTIONS(155), - [anon_sym_goto] = ACTIONS(157), - [anon_sym___try] = ACTIONS(159), - [anon_sym___leave] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [anon_sym___alignof__] = ACTIONS(89), - [anon_sym___alignof] = ACTIONS(89), - [anon_sym__alignof] = ACTIONS(89), - [anon_sym_alignof] = ACTIONS(89), - [anon_sym__Alignof] = ACTIONS(89), - [anon_sym_offsetof] = ACTIONS(91), - [anon_sym__Generic] = ACTIONS(93), - [anon_sym_asm] = ACTIONS(95), - [anon_sym___asm__] = ACTIONS(95), - [sym_number_literal] = ACTIONS(163), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(165), - [sym_false] = ACTIONS(165), - [anon_sym_NULL] = ACTIONS(105), - [anon_sym_nullptr] = ACTIONS(105), + [anon_sym___init] = ACTIONS(43), + [anon_sym___exit] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(137), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_const] = ACTIONS(53), + [anon_sym_constexpr] = ACTIONS(53), + [anon_sym_volatile] = ACTIONS(53), + [anon_sym_restrict] = ACTIONS(53), + [anon_sym___restrict__] = ACTIONS(53), + [anon_sym__Atomic] = ACTIONS(53), + [anon_sym__Noreturn] = ACTIONS(53), + [anon_sym_noreturn] = ACTIONS(53), + [anon_sym_alignas] = ACTIONS(55), + [anon_sym__Alignas] = ACTIONS(55), + [sym_primitive_type] = ACTIONS(57), + [anon_sym_enum] = ACTIONS(59), + [anon_sym_struct] = ACTIONS(61), + [anon_sym_union] = ACTIONS(63), + [anon_sym_if] = ACTIONS(139), + [anon_sym_switch] = ACTIONS(141), + [anon_sym_case] = ACTIONS(143), + [anon_sym_default] = ACTIONS(145), + [anon_sym_while] = ACTIONS(147), + [anon_sym_do] = ACTIONS(149), + [anon_sym_for] = ACTIONS(151), + [anon_sym_return] = ACTIONS(153), + [anon_sym_break] = ACTIONS(155), + [anon_sym_continue] = ACTIONS(157), + [anon_sym_goto] = ACTIONS(159), + [anon_sym___try] = ACTIONS(161), + [anon_sym___leave] = ACTIONS(163), + [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(87), + [anon_sym_sizeof] = ACTIONS(89), + [anon_sym___alignof__] = ACTIONS(91), + [anon_sym___alignof] = ACTIONS(91), + [anon_sym__alignof] = ACTIONS(91), + [anon_sym_alignof] = ACTIONS(91), + [anon_sym__Alignof] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(93), + [anon_sym__Generic] = ACTIONS(95), + [anon_sym_asm] = ACTIONS(97), + [anon_sym___asm__] = ACTIONS(97), + [sym_number_literal] = ACTIONS(165), + [anon_sym_L_SQUOTE] = ACTIONS(101), + [anon_sym_u_SQUOTE] = ACTIONS(101), + [anon_sym_U_SQUOTE] = ACTIONS(101), + [anon_sym_u8_SQUOTE] = ACTIONS(101), + [anon_sym_SQUOTE] = ACTIONS(101), + [anon_sym_L_DQUOTE] = ACTIONS(103), + [anon_sym_u_DQUOTE] = ACTIONS(103), + [anon_sym_U_DQUOTE] = ACTIONS(103), + [anon_sym_u8_DQUOTE] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_true] = ACTIONS(167), + [sym_false] = ACTIONS(167), + [anon_sym_NULL] = ACTIONS(107), + [anon_sym_nullptr] = ACTIONS(107), [sym_comment] = ACTIONS(3), }, - [16] = { - [sym__block_item] = STATE(22), - [sym_preproc_include] = STATE(22), - [sym_preproc_def] = STATE(22), - [sym_preproc_function_def] = STATE(22), - [sym_preproc_call] = STATE(22), - [sym_preproc_if] = STATE(22), - [sym_preproc_ifdef] = STATE(22), - [sym_preproc_else] = STATE(1935), - [sym_preproc_elif] = STATE(1935), - [sym_preproc_elifdef] = STATE(1935), - [sym_function_definition] = STATE(22), - [sym__old_style_function_definition] = STATE(117), - [sym_declaration] = STATE(22), - [sym_type_definition] = STATE(22), - [sym__declaration_modifiers] = STATE(697), - [sym__declaration_specifiers] = STATE(1120), - [sym_linkage_specification] = STATE(22), - [sym_attribute_specifier] = STATE(697), - [sym_attribute_declaration] = STATE(405), - [sym_ms_declspec_modifier] = STATE(697), - [sym_ms_call_modifier] = STATE(677), - [sym_compound_statement] = STATE(93), - [sym_storage_class_specifier] = STATE(697), - [sym_type_qualifier] = STATE(697), - [sym_alignas_qualifier] = STATE(703), - [sym_type_specifier] = STATE(817), - [sym_sized_type_specifier] = STATE(746), - [sym_enum_specifier] = STATE(746), - [sym_struct_specifier] = STATE(746), - [sym_union_specifier] = STATE(746), - [sym_attributed_statement] = STATE(118), - [sym_statement] = STATE(22), - [sym_labeled_statement] = STATE(93), - [sym_expression_statement] = STATE(93), - [sym_if_statement] = STATE(93), - [sym_switch_statement] = STATE(93), - [sym_case_statement] = STATE(93), - [sym_while_statement] = STATE(93), - [sym_do_statement] = STATE(93), - [sym_for_statement] = STATE(93), - [sym_return_statement] = STATE(93), - [sym_break_statement] = STATE(93), - [sym_continue_statement] = STATE(93), - [sym_goto_statement] = STATE(93), - [sym_seh_try_statement] = STATE(93), - [sym_seh_leave_statement] = STATE(93), - [sym_expression] = STATE(1073), - [sym__string] = STATE(663), - [sym_comma_expression] = STATE(1821), - [sym_conditional_expression] = STATE(663), - [sym_assignment_expression] = STATE(663), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(663), - [sym_binary_expression] = STATE(663), - [sym_update_expression] = STATE(663), - [sym_cast_expression] = STATE(663), - [sym_sizeof_expression] = STATE(663), - [sym_alignof_expression] = STATE(663), - [sym_offsetof_expression] = STATE(663), - [sym_generic_expression] = STATE(663), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(663), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(663), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(663), - [sym_concatenated_string] = STATE(663), - [sym_string_literal] = STATE(659), - [sym_null] = STATE(663), - [sym__empty_declaration] = STATE(22), - [sym_macro_type_specifier] = STATE(746), - [aux_sym_preproc_if_repeat1] = STATE(22), - [aux_sym__declaration_specifiers_repeat1] = STATE(697), - [aux_sym_attributed_declarator_repeat1] = STATE(365), - [aux_sym_sized_type_specifier_repeat1] = STATE(747), - [sym_identifier] = ACTIONS(107), - [aux_sym_preproc_include_token1] = ACTIONS(109), - [aux_sym_preproc_def_token1] = ACTIONS(111), - [aux_sym_preproc_if_token1] = ACTIONS(113), + [15] = { + [sym__block_item] = STATE(21), + [sym_preproc_include] = STATE(21), + [sym_preproc_def] = STATE(21), + [sym_preproc_function_def] = STATE(21), + [sym_preproc_call] = STATE(21), + [sym_preproc_if] = STATE(21), + [sym_preproc_ifdef] = STATE(21), + [sym_preproc_else] = STATE(2243), + [sym_preproc_elif] = STATE(2243), + [sym_preproc_elifdef] = STATE(2243), + [sym_function_definition] = STATE(21), + [sym__old_style_function_definition] = STATE(149), + [sym_declaration] = STATE(21), + [sym_type_definition] = STATE(21), + [sym__declaration_modifiers] = STATE(805), + [sym__declaration_specifiers] = STATE(1238), + [sym_linkage_specification] = STATE(21), + [sym_attribute_specifier] = STATE(805), + [sym_attribute_declaration] = STATE(468), + [sym_ms_declspec_modifier] = STATE(805), + [sym_macro_modifier] = STATE(777), + [sym_ms_call_modifier] = STATE(615), + [sym_compound_statement] = STATE(77), + [sym_storage_class_specifier] = STATE(805), + [sym_type_qualifier] = STATE(805), + [sym_alignas_qualifier] = STATE(799), + [sym_type_specifier] = STATE(896), + [sym_sized_type_specifier] = STATE(873), + [sym_enum_specifier] = STATE(873), + [sym_struct_specifier] = STATE(873), + [sym_union_specifier] = STATE(873), + [sym_attributed_statement] = STATE(151), + [sym_statement] = STATE(21), + [sym_labeled_statement] = STATE(77), + [sym_expression_statement] = STATE(77), + [sym_if_statement] = STATE(77), + [sym_switch_statement] = STATE(77), + [sym_case_statement] = STATE(77), + [sym_while_statement] = STATE(77), + [sym_do_statement] = STATE(77), + [sym_for_statement] = STATE(77), + [sym_return_statement] = STATE(77), + [sym_break_statement] = STATE(77), + [sym_continue_statement] = STATE(77), + [sym_goto_statement] = STATE(77), + [sym_seh_try_statement] = STATE(77), + [sym_seh_leave_statement] = STATE(77), + [sym_expression] = STATE(1157), + [sym__string] = STATE(758), + [sym_comma_expression] = STATE(2232), + [sym_conditional_expression] = STATE(758), + [sym_assignment_expression] = STATE(758), + [sym_pointer_expression] = STATE(944), + [sym_unary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_cast_expression] = STATE(758), + [sym_sizeof_expression] = STATE(758), + [sym_alignof_expression] = STATE(758), + [sym_offsetof_expression] = STATE(758), + [sym_generic_expression] = STATE(758), + [sym_subscript_expression] = STATE(944), + [sym_call_expression] = STATE(944), + [sym_gnu_asm_expression] = STATE(758), + [sym_field_expression] = STATE(944), + [sym_compound_literal_expression] = STATE(758), + [sym_parenthesized_expression] = STATE(944), + [sym_char_literal] = STATE(758), + [sym_concatenated_string] = STATE(758), + [sym_string_literal] = STATE(671), + [sym_null] = STATE(758), + [sym__empty_declaration] = STATE(21), + [sym_macro_type_specifier] = STATE(873), + [aux_sym_preproc_if_repeat1] = STATE(21), + [aux_sym__declaration_specifiers_repeat1] = STATE(805), + [aux_sym_attributed_declarator_repeat1] = STATE(439), + [aux_sym_sized_type_specifier_repeat1] = STATE(890), + [sym_identifier] = ACTIONS(109), + [aux_sym_preproc_include_token1] = ACTIONS(111), + [aux_sym_preproc_def_token1] = ACTIONS(113), + [aux_sym_preproc_if_token1] = ACTIONS(115), [aux_sym_preproc_if_token2] = ACTIONS(193), - [aux_sym_preproc_ifdef_token1] = ACTIONS(117), - [aux_sym_preproc_ifdef_token2] = ACTIONS(117), - [aux_sym_preproc_else_token1] = ACTIONS(119), - [aux_sym_preproc_elif_token1] = ACTIONS(121), - [aux_sym_preproc_elifdef_token1] = ACTIONS(123), - [aux_sym_preproc_elifdef_token2] = ACTIONS(123), - [sym_preproc_directive] = ACTIONS(125), + [aux_sym_preproc_ifdef_token1] = ACTIONS(119), + [aux_sym_preproc_ifdef_token2] = ACTIONS(119), + [aux_sym_preproc_else_token1] = ACTIONS(121), + [aux_sym_preproc_elif_token1] = ACTIONS(123), + [aux_sym_preproc_elifdef_token1] = ACTIONS(125), + [aux_sym_preproc_elifdef_token2] = ACTIONS(125), + [sym_preproc_directive] = ACTIONS(127), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -14725,96 +15234,99 @@ 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(127), - [anon_sym___extension__] = ACTIONS(129), - [anon_sym_typedef] = ACTIONS(131), - [anon_sym_extern] = ACTIONS(133), + [anon_sym_SEMI] = ACTIONS(129), + [anon_sym___extension__] = ACTIONS(131), + [anon_sym_typedef] = ACTIONS(133), + [anon_sym_extern] = ACTIONS(135), [anon_sym___attribute__] = ACTIONS(33), [anon_sym___scanf] = ACTIONS(35), [anon_sym___printf] = ACTIONS(35), [anon_sym___read_mostly] = ACTIONS(37), [anon_sym___must_hold] = ACTIONS(33), [anon_sym___ro_after_init] = ACTIONS(37), - [anon_sym___init] = ACTIONS(37), + [anon_sym___noreturn] = ACTIONS(37), + [anon_sym___cold] = ACTIONS(37), [anon_sym_LBRACK_LBRACK] = ACTIONS(39), [anon_sym___declspec] = ACTIONS(41), - [anon_sym___cdecl] = ACTIONS(43), - [anon_sym___clrcall] = ACTIONS(43), - [anon_sym___stdcall] = ACTIONS(43), - [anon_sym___fastcall] = ACTIONS(43), - [anon_sym___thiscall] = ACTIONS(43), - [anon_sym___vectorcall] = ACTIONS(43), - [anon_sym_LBRACE] = ACTIONS(135), - [anon_sym_signed] = ACTIONS(47), - [anon_sym_unsigned] = ACTIONS(47), - [anon_sym_long] = ACTIONS(47), - [anon_sym_short] = ACTIONS(47), - [anon_sym_static] = ACTIONS(49), - [anon_sym_auto] = ACTIONS(49), - [anon_sym_register] = ACTIONS(49), - [anon_sym_inline] = ACTIONS(49), - [anon_sym___inline] = ACTIONS(49), - [anon_sym___inline__] = ACTIONS(49), - [anon_sym___forceinline] = ACTIONS(49), - [anon_sym_thread_local] = ACTIONS(49), - [anon_sym___thread] = ACTIONS(49), - [anon_sym_const] = ACTIONS(51), - [anon_sym_constexpr] = ACTIONS(51), - [anon_sym_volatile] = ACTIONS(51), - [anon_sym_restrict] = ACTIONS(51), - [anon_sym___restrict__] = ACTIONS(51), - [anon_sym__Atomic] = ACTIONS(51), - [anon_sym__Noreturn] = ACTIONS(51), - [anon_sym_noreturn] = ACTIONS(51), - [anon_sym_alignas] = ACTIONS(53), - [anon_sym__Alignas] = ACTIONS(53), - [sym_primitive_type] = ACTIONS(55), - [anon_sym_enum] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [anon_sym_if] = ACTIONS(137), - [anon_sym_switch] = ACTIONS(139), - [anon_sym_case] = ACTIONS(141), - [anon_sym_default] = ACTIONS(143), - [anon_sym_while] = ACTIONS(145), - [anon_sym_do] = ACTIONS(147), - [anon_sym_for] = ACTIONS(149), - [anon_sym_return] = ACTIONS(151), - [anon_sym_break] = ACTIONS(153), - [anon_sym_continue] = ACTIONS(155), - [anon_sym_goto] = ACTIONS(157), - [anon_sym___try] = ACTIONS(159), - [anon_sym___leave] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [anon_sym___alignof__] = ACTIONS(89), - [anon_sym___alignof] = ACTIONS(89), - [anon_sym__alignof] = ACTIONS(89), - [anon_sym_alignof] = ACTIONS(89), - [anon_sym__Alignof] = ACTIONS(89), - [anon_sym_offsetof] = ACTIONS(91), - [anon_sym__Generic] = ACTIONS(93), - [anon_sym_asm] = ACTIONS(95), - [anon_sym___asm__] = ACTIONS(95), - [sym_number_literal] = ACTIONS(163), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(165), - [sym_false] = ACTIONS(165), - [anon_sym_NULL] = ACTIONS(105), - [anon_sym_nullptr] = ACTIONS(105), + [anon_sym___init] = ACTIONS(43), + [anon_sym___exit] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(137), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_const] = ACTIONS(53), + [anon_sym_constexpr] = ACTIONS(53), + [anon_sym_volatile] = ACTIONS(53), + [anon_sym_restrict] = ACTIONS(53), + [anon_sym___restrict__] = ACTIONS(53), + [anon_sym__Atomic] = ACTIONS(53), + [anon_sym__Noreturn] = ACTIONS(53), + [anon_sym_noreturn] = ACTIONS(53), + [anon_sym_alignas] = ACTIONS(55), + [anon_sym__Alignas] = ACTIONS(55), + [sym_primitive_type] = ACTIONS(57), + [anon_sym_enum] = ACTIONS(59), + [anon_sym_struct] = ACTIONS(61), + [anon_sym_union] = ACTIONS(63), + [anon_sym_if] = ACTIONS(139), + [anon_sym_switch] = ACTIONS(141), + [anon_sym_case] = ACTIONS(143), + [anon_sym_default] = ACTIONS(145), + [anon_sym_while] = ACTIONS(147), + [anon_sym_do] = ACTIONS(149), + [anon_sym_for] = ACTIONS(151), + [anon_sym_return] = ACTIONS(153), + [anon_sym_break] = ACTIONS(155), + [anon_sym_continue] = ACTIONS(157), + [anon_sym_goto] = ACTIONS(159), + [anon_sym___try] = ACTIONS(161), + [anon_sym___leave] = ACTIONS(163), + [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(87), + [anon_sym_sizeof] = ACTIONS(89), + [anon_sym___alignof__] = ACTIONS(91), + [anon_sym___alignof] = ACTIONS(91), + [anon_sym__alignof] = ACTIONS(91), + [anon_sym_alignof] = ACTIONS(91), + [anon_sym__Alignof] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(93), + [anon_sym__Generic] = ACTIONS(95), + [anon_sym_asm] = ACTIONS(97), + [anon_sym___asm__] = ACTIONS(97), + [sym_number_literal] = ACTIONS(165), + [anon_sym_L_SQUOTE] = ACTIONS(101), + [anon_sym_u_SQUOTE] = ACTIONS(101), + [anon_sym_U_SQUOTE] = ACTIONS(101), + [anon_sym_u8_SQUOTE] = ACTIONS(101), + [anon_sym_SQUOTE] = ACTIONS(101), + [anon_sym_L_DQUOTE] = ACTIONS(103), + [anon_sym_u_DQUOTE] = ACTIONS(103), + [anon_sym_U_DQUOTE] = ACTIONS(103), + [anon_sym_u8_DQUOTE] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_true] = ACTIONS(167), + [sym_false] = ACTIONS(167), + [anon_sym_NULL] = ACTIONS(107), + [anon_sym_nullptr] = ACTIONS(107), [sym_comment] = ACTIONS(3), }, - [17] = { + [16] = { [sym__block_item] = STATE(22), [sym_preproc_include] = STATE(22), [sym_preproc_def] = STATE(22), @@ -14822,87 +15334,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_call] = STATE(22), [sym_preproc_if] = STATE(22), [sym_preproc_ifdef] = STATE(22), - [sym_preproc_else] = STATE(1968), - [sym_preproc_elif] = STATE(1968), - [sym_preproc_elifdef] = STATE(1968), + [sym_preproc_else] = STATE(2245), + [sym_preproc_elif] = STATE(2245), + [sym_preproc_elifdef] = STATE(2245), [sym_function_definition] = STATE(22), - [sym__old_style_function_definition] = STATE(117), + [sym__old_style_function_definition] = STATE(149), [sym_declaration] = STATE(22), [sym_type_definition] = STATE(22), - [sym__declaration_modifiers] = STATE(697), - [sym__declaration_specifiers] = STATE(1120), + [sym__declaration_modifiers] = STATE(805), + [sym__declaration_specifiers] = STATE(1238), [sym_linkage_specification] = STATE(22), - [sym_attribute_specifier] = STATE(697), - [sym_attribute_declaration] = STATE(405), - [sym_ms_declspec_modifier] = STATE(697), - [sym_ms_call_modifier] = STATE(677), - [sym_compound_statement] = STATE(93), - [sym_storage_class_specifier] = STATE(697), - [sym_type_qualifier] = STATE(697), - [sym_alignas_qualifier] = STATE(703), - [sym_type_specifier] = STATE(817), - [sym_sized_type_specifier] = STATE(746), - [sym_enum_specifier] = STATE(746), - [sym_struct_specifier] = STATE(746), - [sym_union_specifier] = STATE(746), - [sym_attributed_statement] = STATE(118), + [sym_attribute_specifier] = STATE(805), + [sym_attribute_declaration] = STATE(468), + [sym_ms_declspec_modifier] = STATE(805), + [sym_macro_modifier] = STATE(777), + [sym_ms_call_modifier] = STATE(615), + [sym_compound_statement] = STATE(77), + [sym_storage_class_specifier] = STATE(805), + [sym_type_qualifier] = STATE(805), + [sym_alignas_qualifier] = STATE(799), + [sym_type_specifier] = STATE(896), + [sym_sized_type_specifier] = STATE(873), + [sym_enum_specifier] = STATE(873), + [sym_struct_specifier] = STATE(873), + [sym_union_specifier] = STATE(873), + [sym_attributed_statement] = STATE(151), [sym_statement] = STATE(22), - [sym_labeled_statement] = STATE(93), - [sym_expression_statement] = STATE(93), - [sym_if_statement] = STATE(93), - [sym_switch_statement] = STATE(93), - [sym_case_statement] = STATE(93), - [sym_while_statement] = STATE(93), - [sym_do_statement] = STATE(93), - [sym_for_statement] = STATE(93), - [sym_return_statement] = STATE(93), - [sym_break_statement] = STATE(93), - [sym_continue_statement] = STATE(93), - [sym_goto_statement] = STATE(93), - [sym_seh_try_statement] = STATE(93), - [sym_seh_leave_statement] = STATE(93), - [sym_expression] = STATE(1073), - [sym__string] = STATE(663), - [sym_comma_expression] = STATE(1821), - [sym_conditional_expression] = STATE(663), - [sym_assignment_expression] = STATE(663), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(663), - [sym_binary_expression] = STATE(663), - [sym_update_expression] = STATE(663), - [sym_cast_expression] = STATE(663), - [sym_sizeof_expression] = STATE(663), - [sym_alignof_expression] = STATE(663), - [sym_offsetof_expression] = STATE(663), - [sym_generic_expression] = STATE(663), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(663), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(663), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(663), - [sym_concatenated_string] = STATE(663), - [sym_string_literal] = STATE(659), - [sym_null] = STATE(663), + [sym_labeled_statement] = STATE(77), + [sym_expression_statement] = STATE(77), + [sym_if_statement] = STATE(77), + [sym_switch_statement] = STATE(77), + [sym_case_statement] = STATE(77), + [sym_while_statement] = STATE(77), + [sym_do_statement] = STATE(77), + [sym_for_statement] = STATE(77), + [sym_return_statement] = STATE(77), + [sym_break_statement] = STATE(77), + [sym_continue_statement] = STATE(77), + [sym_goto_statement] = STATE(77), + [sym_seh_try_statement] = STATE(77), + [sym_seh_leave_statement] = STATE(77), + [sym_expression] = STATE(1157), + [sym__string] = STATE(758), + [sym_comma_expression] = STATE(2232), + [sym_conditional_expression] = STATE(758), + [sym_assignment_expression] = STATE(758), + [sym_pointer_expression] = STATE(944), + [sym_unary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_cast_expression] = STATE(758), + [sym_sizeof_expression] = STATE(758), + [sym_alignof_expression] = STATE(758), + [sym_offsetof_expression] = STATE(758), + [sym_generic_expression] = STATE(758), + [sym_subscript_expression] = STATE(944), + [sym_call_expression] = STATE(944), + [sym_gnu_asm_expression] = STATE(758), + [sym_field_expression] = STATE(944), + [sym_compound_literal_expression] = STATE(758), + [sym_parenthesized_expression] = STATE(944), + [sym_char_literal] = STATE(758), + [sym_concatenated_string] = STATE(758), + [sym_string_literal] = STATE(671), + [sym_null] = STATE(758), [sym__empty_declaration] = STATE(22), - [sym_macro_type_specifier] = STATE(746), + [sym_macro_type_specifier] = STATE(873), [aux_sym_preproc_if_repeat1] = STATE(22), - [aux_sym__declaration_specifiers_repeat1] = STATE(697), - [aux_sym_attributed_declarator_repeat1] = STATE(365), - [aux_sym_sized_type_specifier_repeat1] = STATE(747), - [sym_identifier] = ACTIONS(107), - [aux_sym_preproc_include_token1] = ACTIONS(109), - [aux_sym_preproc_def_token1] = ACTIONS(111), - [aux_sym_preproc_if_token1] = ACTIONS(113), + [aux_sym__declaration_specifiers_repeat1] = STATE(805), + [aux_sym_attributed_declarator_repeat1] = STATE(439), + [aux_sym_sized_type_specifier_repeat1] = STATE(890), + [sym_identifier] = ACTIONS(109), + [aux_sym_preproc_include_token1] = ACTIONS(111), + [aux_sym_preproc_def_token1] = ACTIONS(113), + [aux_sym_preproc_if_token1] = ACTIONS(115), [aux_sym_preproc_if_token2] = ACTIONS(195), - [aux_sym_preproc_ifdef_token1] = ACTIONS(117), - [aux_sym_preproc_ifdef_token2] = ACTIONS(117), - [aux_sym_preproc_else_token1] = ACTIONS(119), - [aux_sym_preproc_elif_token1] = ACTIONS(121), - [aux_sym_preproc_elifdef_token1] = ACTIONS(123), - [aux_sym_preproc_elifdef_token2] = ACTIONS(123), - [sym_preproc_directive] = ACTIONS(125), + [aux_sym_preproc_ifdef_token1] = ACTIONS(119), + [aux_sym_preproc_ifdef_token2] = ACTIONS(119), + [aux_sym_preproc_else_token1] = ACTIONS(121), + [aux_sym_preproc_elif_token1] = ACTIONS(123), + [aux_sym_preproc_elifdef_token1] = ACTIONS(125), + [aux_sym_preproc_elifdef_token2] = ACTIONS(125), + [sym_preproc_directive] = ACTIONS(127), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -14910,96 +15423,99 @@ 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(127), - [anon_sym___extension__] = ACTIONS(129), - [anon_sym_typedef] = ACTIONS(131), - [anon_sym_extern] = ACTIONS(133), + [anon_sym_SEMI] = ACTIONS(129), + [anon_sym___extension__] = ACTIONS(131), + [anon_sym_typedef] = ACTIONS(133), + [anon_sym_extern] = ACTIONS(135), [anon_sym___attribute__] = ACTIONS(33), [anon_sym___scanf] = ACTIONS(35), [anon_sym___printf] = ACTIONS(35), [anon_sym___read_mostly] = ACTIONS(37), [anon_sym___must_hold] = ACTIONS(33), [anon_sym___ro_after_init] = ACTIONS(37), - [anon_sym___init] = ACTIONS(37), + [anon_sym___noreturn] = ACTIONS(37), + [anon_sym___cold] = ACTIONS(37), [anon_sym_LBRACK_LBRACK] = ACTIONS(39), [anon_sym___declspec] = ACTIONS(41), - [anon_sym___cdecl] = ACTIONS(43), - [anon_sym___clrcall] = ACTIONS(43), - [anon_sym___stdcall] = ACTIONS(43), - [anon_sym___fastcall] = ACTIONS(43), - [anon_sym___thiscall] = ACTIONS(43), - [anon_sym___vectorcall] = ACTIONS(43), - [anon_sym_LBRACE] = ACTIONS(135), - [anon_sym_signed] = ACTIONS(47), - [anon_sym_unsigned] = ACTIONS(47), - [anon_sym_long] = ACTIONS(47), - [anon_sym_short] = ACTIONS(47), - [anon_sym_static] = ACTIONS(49), - [anon_sym_auto] = ACTIONS(49), - [anon_sym_register] = ACTIONS(49), - [anon_sym_inline] = ACTIONS(49), - [anon_sym___inline] = ACTIONS(49), - [anon_sym___inline__] = ACTIONS(49), - [anon_sym___forceinline] = ACTIONS(49), - [anon_sym_thread_local] = ACTIONS(49), - [anon_sym___thread] = ACTIONS(49), - [anon_sym_const] = ACTIONS(51), - [anon_sym_constexpr] = ACTIONS(51), - [anon_sym_volatile] = ACTIONS(51), - [anon_sym_restrict] = ACTIONS(51), - [anon_sym___restrict__] = ACTIONS(51), - [anon_sym__Atomic] = ACTIONS(51), - [anon_sym__Noreturn] = ACTIONS(51), - [anon_sym_noreturn] = ACTIONS(51), - [anon_sym_alignas] = ACTIONS(53), - [anon_sym__Alignas] = ACTIONS(53), - [sym_primitive_type] = ACTIONS(55), - [anon_sym_enum] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [anon_sym_if] = ACTIONS(137), - [anon_sym_switch] = ACTIONS(139), - [anon_sym_case] = ACTIONS(141), - [anon_sym_default] = ACTIONS(143), - [anon_sym_while] = ACTIONS(145), - [anon_sym_do] = ACTIONS(147), - [anon_sym_for] = ACTIONS(149), - [anon_sym_return] = ACTIONS(151), - [anon_sym_break] = ACTIONS(153), - [anon_sym_continue] = ACTIONS(155), - [anon_sym_goto] = ACTIONS(157), - [anon_sym___try] = ACTIONS(159), - [anon_sym___leave] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [anon_sym___alignof__] = ACTIONS(89), - [anon_sym___alignof] = ACTIONS(89), - [anon_sym__alignof] = ACTIONS(89), - [anon_sym_alignof] = ACTIONS(89), - [anon_sym__Alignof] = ACTIONS(89), - [anon_sym_offsetof] = ACTIONS(91), - [anon_sym__Generic] = ACTIONS(93), - [anon_sym_asm] = ACTIONS(95), - [anon_sym___asm__] = ACTIONS(95), - [sym_number_literal] = ACTIONS(163), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(165), - [sym_false] = ACTIONS(165), - [anon_sym_NULL] = ACTIONS(105), - [anon_sym_nullptr] = ACTIONS(105), + [anon_sym___init] = ACTIONS(43), + [anon_sym___exit] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(137), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_const] = ACTIONS(53), + [anon_sym_constexpr] = ACTIONS(53), + [anon_sym_volatile] = ACTIONS(53), + [anon_sym_restrict] = ACTIONS(53), + [anon_sym___restrict__] = ACTIONS(53), + [anon_sym__Atomic] = ACTIONS(53), + [anon_sym__Noreturn] = ACTIONS(53), + [anon_sym_noreturn] = ACTIONS(53), + [anon_sym_alignas] = ACTIONS(55), + [anon_sym__Alignas] = ACTIONS(55), + [sym_primitive_type] = ACTIONS(57), + [anon_sym_enum] = ACTIONS(59), + [anon_sym_struct] = ACTIONS(61), + [anon_sym_union] = ACTIONS(63), + [anon_sym_if] = ACTIONS(139), + [anon_sym_switch] = ACTIONS(141), + [anon_sym_case] = ACTIONS(143), + [anon_sym_default] = ACTIONS(145), + [anon_sym_while] = ACTIONS(147), + [anon_sym_do] = ACTIONS(149), + [anon_sym_for] = ACTIONS(151), + [anon_sym_return] = ACTIONS(153), + [anon_sym_break] = ACTIONS(155), + [anon_sym_continue] = ACTIONS(157), + [anon_sym_goto] = ACTIONS(159), + [anon_sym___try] = ACTIONS(161), + [anon_sym___leave] = ACTIONS(163), + [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(87), + [anon_sym_sizeof] = ACTIONS(89), + [anon_sym___alignof__] = ACTIONS(91), + [anon_sym___alignof] = ACTIONS(91), + [anon_sym__alignof] = ACTIONS(91), + [anon_sym_alignof] = ACTIONS(91), + [anon_sym__Alignof] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(93), + [anon_sym__Generic] = ACTIONS(95), + [anon_sym_asm] = ACTIONS(97), + [anon_sym___asm__] = ACTIONS(97), + [sym_number_literal] = ACTIONS(165), + [anon_sym_L_SQUOTE] = ACTIONS(101), + [anon_sym_u_SQUOTE] = ACTIONS(101), + [anon_sym_U_SQUOTE] = ACTIONS(101), + [anon_sym_u8_SQUOTE] = ACTIONS(101), + [anon_sym_SQUOTE] = ACTIONS(101), + [anon_sym_L_DQUOTE] = ACTIONS(103), + [anon_sym_u_DQUOTE] = ACTIONS(103), + [anon_sym_U_DQUOTE] = ACTIONS(103), + [anon_sym_u8_DQUOTE] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_true] = ACTIONS(167), + [sym_false] = ACTIONS(167), + [anon_sym_NULL] = ACTIONS(107), + [anon_sym_nullptr] = ACTIONS(107), [sym_comment] = ACTIONS(3), }, - [18] = { + [17] = { [sym__block_item] = STATE(22), [sym_preproc_include] = STATE(22), [sym_preproc_def] = STATE(22), @@ -15007,87 +15523,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_call] = STATE(22), [sym_preproc_if] = STATE(22), [sym_preproc_ifdef] = STATE(22), - [sym_preproc_else] = STATE(2049), - [sym_preproc_elif] = STATE(2049), - [sym_preproc_elifdef] = STATE(2049), + [sym_preproc_else] = STATE(2053), + [sym_preproc_elif] = STATE(2053), + [sym_preproc_elifdef] = STATE(2053), [sym_function_definition] = STATE(22), - [sym__old_style_function_definition] = STATE(117), + [sym__old_style_function_definition] = STATE(149), [sym_declaration] = STATE(22), [sym_type_definition] = STATE(22), - [sym__declaration_modifiers] = STATE(697), - [sym__declaration_specifiers] = STATE(1120), + [sym__declaration_modifiers] = STATE(805), + [sym__declaration_specifiers] = STATE(1238), [sym_linkage_specification] = STATE(22), - [sym_attribute_specifier] = STATE(697), - [sym_attribute_declaration] = STATE(405), - [sym_ms_declspec_modifier] = STATE(697), - [sym_ms_call_modifier] = STATE(677), - [sym_compound_statement] = STATE(93), - [sym_storage_class_specifier] = STATE(697), - [sym_type_qualifier] = STATE(697), - [sym_alignas_qualifier] = STATE(703), - [sym_type_specifier] = STATE(817), - [sym_sized_type_specifier] = STATE(746), - [sym_enum_specifier] = STATE(746), - [sym_struct_specifier] = STATE(746), - [sym_union_specifier] = STATE(746), - [sym_attributed_statement] = STATE(118), + [sym_attribute_specifier] = STATE(805), + [sym_attribute_declaration] = STATE(468), + [sym_ms_declspec_modifier] = STATE(805), + [sym_macro_modifier] = STATE(777), + [sym_ms_call_modifier] = STATE(615), + [sym_compound_statement] = STATE(77), + [sym_storage_class_specifier] = STATE(805), + [sym_type_qualifier] = STATE(805), + [sym_alignas_qualifier] = STATE(799), + [sym_type_specifier] = STATE(896), + [sym_sized_type_specifier] = STATE(873), + [sym_enum_specifier] = STATE(873), + [sym_struct_specifier] = STATE(873), + [sym_union_specifier] = STATE(873), + [sym_attributed_statement] = STATE(151), [sym_statement] = STATE(22), - [sym_labeled_statement] = STATE(93), - [sym_expression_statement] = STATE(93), - [sym_if_statement] = STATE(93), - [sym_switch_statement] = STATE(93), - [sym_case_statement] = STATE(93), - [sym_while_statement] = STATE(93), - [sym_do_statement] = STATE(93), - [sym_for_statement] = STATE(93), - [sym_return_statement] = STATE(93), - [sym_break_statement] = STATE(93), - [sym_continue_statement] = STATE(93), - [sym_goto_statement] = STATE(93), - [sym_seh_try_statement] = STATE(93), - [sym_seh_leave_statement] = STATE(93), - [sym_expression] = STATE(1073), - [sym__string] = STATE(663), - [sym_comma_expression] = STATE(1821), - [sym_conditional_expression] = STATE(663), - [sym_assignment_expression] = STATE(663), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(663), - [sym_binary_expression] = STATE(663), - [sym_update_expression] = STATE(663), - [sym_cast_expression] = STATE(663), - [sym_sizeof_expression] = STATE(663), - [sym_alignof_expression] = STATE(663), - [sym_offsetof_expression] = STATE(663), - [sym_generic_expression] = STATE(663), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(663), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(663), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(663), - [sym_concatenated_string] = STATE(663), - [sym_string_literal] = STATE(659), - [sym_null] = STATE(663), + [sym_labeled_statement] = STATE(77), + [sym_expression_statement] = STATE(77), + [sym_if_statement] = STATE(77), + [sym_switch_statement] = STATE(77), + [sym_case_statement] = STATE(77), + [sym_while_statement] = STATE(77), + [sym_do_statement] = STATE(77), + [sym_for_statement] = STATE(77), + [sym_return_statement] = STATE(77), + [sym_break_statement] = STATE(77), + [sym_continue_statement] = STATE(77), + [sym_goto_statement] = STATE(77), + [sym_seh_try_statement] = STATE(77), + [sym_seh_leave_statement] = STATE(77), + [sym_expression] = STATE(1157), + [sym__string] = STATE(758), + [sym_comma_expression] = STATE(2232), + [sym_conditional_expression] = STATE(758), + [sym_assignment_expression] = STATE(758), + [sym_pointer_expression] = STATE(944), + [sym_unary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_cast_expression] = STATE(758), + [sym_sizeof_expression] = STATE(758), + [sym_alignof_expression] = STATE(758), + [sym_offsetof_expression] = STATE(758), + [sym_generic_expression] = STATE(758), + [sym_subscript_expression] = STATE(944), + [sym_call_expression] = STATE(944), + [sym_gnu_asm_expression] = STATE(758), + [sym_field_expression] = STATE(944), + [sym_compound_literal_expression] = STATE(758), + [sym_parenthesized_expression] = STATE(944), + [sym_char_literal] = STATE(758), + [sym_concatenated_string] = STATE(758), + [sym_string_literal] = STATE(671), + [sym_null] = STATE(758), [sym__empty_declaration] = STATE(22), - [sym_macro_type_specifier] = STATE(746), + [sym_macro_type_specifier] = STATE(873), [aux_sym_preproc_if_repeat1] = STATE(22), - [aux_sym__declaration_specifiers_repeat1] = STATE(697), - [aux_sym_attributed_declarator_repeat1] = STATE(365), - [aux_sym_sized_type_specifier_repeat1] = STATE(747), - [sym_identifier] = ACTIONS(107), - [aux_sym_preproc_include_token1] = ACTIONS(109), - [aux_sym_preproc_def_token1] = ACTIONS(111), - [aux_sym_preproc_if_token1] = ACTIONS(113), + [aux_sym__declaration_specifiers_repeat1] = STATE(805), + [aux_sym_attributed_declarator_repeat1] = STATE(439), + [aux_sym_sized_type_specifier_repeat1] = STATE(890), + [sym_identifier] = ACTIONS(109), + [aux_sym_preproc_include_token1] = ACTIONS(111), + [aux_sym_preproc_def_token1] = ACTIONS(113), + [aux_sym_preproc_if_token1] = ACTIONS(115), [aux_sym_preproc_if_token2] = ACTIONS(197), - [aux_sym_preproc_ifdef_token1] = ACTIONS(117), - [aux_sym_preproc_ifdef_token2] = ACTIONS(117), - [aux_sym_preproc_else_token1] = ACTIONS(119), - [aux_sym_preproc_elif_token1] = ACTIONS(121), - [aux_sym_preproc_elifdef_token1] = ACTIONS(123), - [aux_sym_preproc_elifdef_token2] = ACTIONS(123), - [sym_preproc_directive] = ACTIONS(125), + [aux_sym_preproc_ifdef_token1] = ACTIONS(119), + [aux_sym_preproc_ifdef_token2] = ACTIONS(119), + [aux_sym_preproc_else_token1] = ACTIONS(121), + [aux_sym_preproc_elif_token1] = ACTIONS(123), + [aux_sym_preproc_elifdef_token1] = ACTIONS(125), + [aux_sym_preproc_elifdef_token2] = ACTIONS(125), + [sym_preproc_directive] = ACTIONS(127), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -15095,184 +15612,188 @@ 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(127), - [anon_sym___extension__] = ACTIONS(129), - [anon_sym_typedef] = ACTIONS(131), - [anon_sym_extern] = ACTIONS(133), + [anon_sym_SEMI] = ACTIONS(129), + [anon_sym___extension__] = ACTIONS(131), + [anon_sym_typedef] = ACTIONS(133), + [anon_sym_extern] = ACTIONS(135), [anon_sym___attribute__] = ACTIONS(33), [anon_sym___scanf] = ACTIONS(35), [anon_sym___printf] = ACTIONS(35), [anon_sym___read_mostly] = ACTIONS(37), [anon_sym___must_hold] = ACTIONS(33), [anon_sym___ro_after_init] = ACTIONS(37), - [anon_sym___init] = ACTIONS(37), + [anon_sym___noreturn] = ACTIONS(37), + [anon_sym___cold] = ACTIONS(37), [anon_sym_LBRACK_LBRACK] = ACTIONS(39), [anon_sym___declspec] = ACTIONS(41), - [anon_sym___cdecl] = ACTIONS(43), - [anon_sym___clrcall] = ACTIONS(43), - [anon_sym___stdcall] = ACTIONS(43), - [anon_sym___fastcall] = ACTIONS(43), - [anon_sym___thiscall] = ACTIONS(43), - [anon_sym___vectorcall] = ACTIONS(43), - [anon_sym_LBRACE] = ACTIONS(135), - [anon_sym_signed] = ACTIONS(47), - [anon_sym_unsigned] = ACTIONS(47), - [anon_sym_long] = ACTIONS(47), - [anon_sym_short] = ACTIONS(47), - [anon_sym_static] = ACTIONS(49), - [anon_sym_auto] = ACTIONS(49), - [anon_sym_register] = ACTIONS(49), - [anon_sym_inline] = ACTIONS(49), - [anon_sym___inline] = ACTIONS(49), - [anon_sym___inline__] = ACTIONS(49), - [anon_sym___forceinline] = ACTIONS(49), - [anon_sym_thread_local] = ACTIONS(49), - [anon_sym___thread] = ACTIONS(49), - [anon_sym_const] = ACTIONS(51), - [anon_sym_constexpr] = ACTIONS(51), - [anon_sym_volatile] = ACTIONS(51), - [anon_sym_restrict] = ACTIONS(51), - [anon_sym___restrict__] = ACTIONS(51), - [anon_sym__Atomic] = ACTIONS(51), - [anon_sym__Noreturn] = ACTIONS(51), - [anon_sym_noreturn] = ACTIONS(51), - [anon_sym_alignas] = ACTIONS(53), - [anon_sym__Alignas] = ACTIONS(53), - [sym_primitive_type] = ACTIONS(55), - [anon_sym_enum] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [anon_sym_if] = ACTIONS(137), - [anon_sym_switch] = ACTIONS(139), - [anon_sym_case] = ACTIONS(141), - [anon_sym_default] = ACTIONS(143), - [anon_sym_while] = ACTIONS(145), - [anon_sym_do] = ACTIONS(147), - [anon_sym_for] = ACTIONS(149), - [anon_sym_return] = ACTIONS(151), - [anon_sym_break] = ACTIONS(153), - [anon_sym_continue] = ACTIONS(155), - [anon_sym_goto] = ACTIONS(157), - [anon_sym___try] = ACTIONS(159), - [anon_sym___leave] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [anon_sym___alignof__] = ACTIONS(89), - [anon_sym___alignof] = ACTIONS(89), - [anon_sym__alignof] = ACTIONS(89), - [anon_sym_alignof] = ACTIONS(89), - [anon_sym__Alignof] = ACTIONS(89), - [anon_sym_offsetof] = ACTIONS(91), - [anon_sym__Generic] = ACTIONS(93), - [anon_sym_asm] = ACTIONS(95), - [anon_sym___asm__] = ACTIONS(95), - [sym_number_literal] = ACTIONS(163), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(165), - [sym_false] = ACTIONS(165), - [anon_sym_NULL] = ACTIONS(105), - [anon_sym_nullptr] = ACTIONS(105), + [anon_sym___init] = ACTIONS(43), + [anon_sym___exit] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(137), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_const] = ACTIONS(53), + [anon_sym_constexpr] = ACTIONS(53), + [anon_sym_volatile] = ACTIONS(53), + [anon_sym_restrict] = ACTIONS(53), + [anon_sym___restrict__] = ACTIONS(53), + [anon_sym__Atomic] = ACTIONS(53), + [anon_sym__Noreturn] = ACTIONS(53), + [anon_sym_noreturn] = ACTIONS(53), + [anon_sym_alignas] = ACTIONS(55), + [anon_sym__Alignas] = ACTIONS(55), + [sym_primitive_type] = ACTIONS(57), + [anon_sym_enum] = ACTIONS(59), + [anon_sym_struct] = ACTIONS(61), + [anon_sym_union] = ACTIONS(63), + [anon_sym_if] = ACTIONS(139), + [anon_sym_switch] = ACTIONS(141), + [anon_sym_case] = ACTIONS(143), + [anon_sym_default] = ACTIONS(145), + [anon_sym_while] = ACTIONS(147), + [anon_sym_do] = ACTIONS(149), + [anon_sym_for] = ACTIONS(151), + [anon_sym_return] = ACTIONS(153), + [anon_sym_break] = ACTIONS(155), + [anon_sym_continue] = ACTIONS(157), + [anon_sym_goto] = ACTIONS(159), + [anon_sym___try] = ACTIONS(161), + [anon_sym___leave] = ACTIONS(163), + [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(87), + [anon_sym_sizeof] = ACTIONS(89), + [anon_sym___alignof__] = ACTIONS(91), + [anon_sym___alignof] = ACTIONS(91), + [anon_sym__alignof] = ACTIONS(91), + [anon_sym_alignof] = ACTIONS(91), + [anon_sym__Alignof] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(93), + [anon_sym__Generic] = ACTIONS(95), + [anon_sym_asm] = ACTIONS(97), + [anon_sym___asm__] = ACTIONS(97), + [sym_number_literal] = ACTIONS(165), + [anon_sym_L_SQUOTE] = ACTIONS(101), + [anon_sym_u_SQUOTE] = ACTIONS(101), + [anon_sym_U_SQUOTE] = ACTIONS(101), + [anon_sym_u8_SQUOTE] = ACTIONS(101), + [anon_sym_SQUOTE] = ACTIONS(101), + [anon_sym_L_DQUOTE] = ACTIONS(103), + [anon_sym_u_DQUOTE] = ACTIONS(103), + [anon_sym_U_DQUOTE] = ACTIONS(103), + [anon_sym_u8_DQUOTE] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_true] = ACTIONS(167), + [sym_false] = ACTIONS(167), + [anon_sym_NULL] = ACTIONS(107), + [anon_sym_nullptr] = ACTIONS(107), [sym_comment] = ACTIONS(3), }, - [19] = { - [sym__block_item] = STATE(22), - [sym_preproc_include] = STATE(22), - [sym_preproc_def] = STATE(22), - [sym_preproc_function_def] = STATE(22), - [sym_preproc_call] = STATE(22), - [sym_preproc_if] = STATE(22), - [sym_preproc_ifdef] = STATE(22), - [sym_preproc_else] = STATE(1973), - [sym_preproc_elif] = STATE(1973), - [sym_preproc_elifdef] = STATE(1973), - [sym_function_definition] = STATE(22), - [sym__old_style_function_definition] = STATE(117), - [sym_declaration] = STATE(22), - [sym_type_definition] = STATE(22), - [sym__declaration_modifiers] = STATE(697), - [sym__declaration_specifiers] = STATE(1120), - [sym_linkage_specification] = STATE(22), - [sym_attribute_specifier] = STATE(697), - [sym_attribute_declaration] = STATE(405), - [sym_ms_declspec_modifier] = STATE(697), - [sym_ms_call_modifier] = STATE(677), - [sym_compound_statement] = STATE(93), - [sym_storage_class_specifier] = STATE(697), - [sym_type_qualifier] = STATE(697), - [sym_alignas_qualifier] = STATE(703), - [sym_type_specifier] = STATE(817), - [sym_sized_type_specifier] = STATE(746), - [sym_enum_specifier] = STATE(746), - [sym_struct_specifier] = STATE(746), - [sym_union_specifier] = STATE(746), - [sym_attributed_statement] = STATE(118), - [sym_statement] = STATE(22), - [sym_labeled_statement] = STATE(93), - [sym_expression_statement] = STATE(93), - [sym_if_statement] = STATE(93), - [sym_switch_statement] = STATE(93), - [sym_case_statement] = STATE(93), - [sym_while_statement] = STATE(93), - [sym_do_statement] = STATE(93), - [sym_for_statement] = STATE(93), - [sym_return_statement] = STATE(93), - [sym_break_statement] = STATE(93), - [sym_continue_statement] = STATE(93), - [sym_goto_statement] = STATE(93), - [sym_seh_try_statement] = STATE(93), - [sym_seh_leave_statement] = STATE(93), - [sym_expression] = STATE(1073), - [sym__string] = STATE(663), - [sym_comma_expression] = STATE(1821), - [sym_conditional_expression] = STATE(663), - [sym_assignment_expression] = STATE(663), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(663), - [sym_binary_expression] = STATE(663), - [sym_update_expression] = STATE(663), - [sym_cast_expression] = STATE(663), - [sym_sizeof_expression] = STATE(663), - [sym_alignof_expression] = STATE(663), - [sym_offsetof_expression] = STATE(663), - [sym_generic_expression] = STATE(663), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(663), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(663), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(663), - [sym_concatenated_string] = STATE(663), - [sym_string_literal] = STATE(659), - [sym_null] = STATE(663), - [sym__empty_declaration] = STATE(22), - [sym_macro_type_specifier] = STATE(746), - [aux_sym_preproc_if_repeat1] = STATE(22), - [aux_sym__declaration_specifiers_repeat1] = STATE(697), - [aux_sym_attributed_declarator_repeat1] = STATE(365), - [aux_sym_sized_type_specifier_repeat1] = STATE(747), - [sym_identifier] = ACTIONS(107), - [aux_sym_preproc_include_token1] = ACTIONS(109), - [aux_sym_preproc_def_token1] = ACTIONS(111), - [aux_sym_preproc_if_token1] = ACTIONS(113), + [18] = { + [sym__block_item] = STATE(6), + [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(2121), + [sym_preproc_elif] = STATE(2121), + [sym_preproc_elifdef] = STATE(2121), + [sym_function_definition] = STATE(6), + [sym__old_style_function_definition] = STATE(149), + [sym_declaration] = STATE(6), + [sym_type_definition] = STATE(6), + [sym__declaration_modifiers] = STATE(805), + [sym__declaration_specifiers] = STATE(1238), + [sym_linkage_specification] = STATE(6), + [sym_attribute_specifier] = STATE(805), + [sym_attribute_declaration] = STATE(468), + [sym_ms_declspec_modifier] = STATE(805), + [sym_macro_modifier] = STATE(777), + [sym_ms_call_modifier] = STATE(615), + [sym_compound_statement] = STATE(77), + [sym_storage_class_specifier] = STATE(805), + [sym_type_qualifier] = STATE(805), + [sym_alignas_qualifier] = STATE(799), + [sym_type_specifier] = STATE(896), + [sym_sized_type_specifier] = STATE(873), + [sym_enum_specifier] = STATE(873), + [sym_struct_specifier] = STATE(873), + [sym_union_specifier] = STATE(873), + [sym_attributed_statement] = STATE(151), + [sym_statement] = STATE(6), + [sym_labeled_statement] = STATE(77), + [sym_expression_statement] = STATE(77), + [sym_if_statement] = STATE(77), + [sym_switch_statement] = STATE(77), + [sym_case_statement] = STATE(77), + [sym_while_statement] = STATE(77), + [sym_do_statement] = STATE(77), + [sym_for_statement] = STATE(77), + [sym_return_statement] = STATE(77), + [sym_break_statement] = STATE(77), + [sym_continue_statement] = STATE(77), + [sym_goto_statement] = STATE(77), + [sym_seh_try_statement] = STATE(77), + [sym_seh_leave_statement] = STATE(77), + [sym_expression] = STATE(1157), + [sym__string] = STATE(758), + [sym_comma_expression] = STATE(2232), + [sym_conditional_expression] = STATE(758), + [sym_assignment_expression] = STATE(758), + [sym_pointer_expression] = STATE(944), + [sym_unary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_cast_expression] = STATE(758), + [sym_sizeof_expression] = STATE(758), + [sym_alignof_expression] = STATE(758), + [sym_offsetof_expression] = STATE(758), + [sym_generic_expression] = STATE(758), + [sym_subscript_expression] = STATE(944), + [sym_call_expression] = STATE(944), + [sym_gnu_asm_expression] = STATE(758), + [sym_field_expression] = STATE(944), + [sym_compound_literal_expression] = STATE(758), + [sym_parenthesized_expression] = STATE(944), + [sym_char_literal] = STATE(758), + [sym_concatenated_string] = STATE(758), + [sym_string_literal] = STATE(671), + [sym_null] = STATE(758), + [sym__empty_declaration] = STATE(6), + [sym_macro_type_specifier] = STATE(873), + [aux_sym_preproc_if_repeat1] = STATE(6), + [aux_sym__declaration_specifiers_repeat1] = STATE(805), + [aux_sym_attributed_declarator_repeat1] = STATE(439), + [aux_sym_sized_type_specifier_repeat1] = STATE(890), + [sym_identifier] = ACTIONS(109), + [aux_sym_preproc_include_token1] = ACTIONS(111), + [aux_sym_preproc_def_token1] = ACTIONS(113), + [aux_sym_preproc_if_token1] = ACTIONS(115), [aux_sym_preproc_if_token2] = ACTIONS(199), - [aux_sym_preproc_ifdef_token1] = ACTIONS(117), - [aux_sym_preproc_ifdef_token2] = ACTIONS(117), - [aux_sym_preproc_else_token1] = ACTIONS(119), - [aux_sym_preproc_elif_token1] = ACTIONS(121), - [aux_sym_preproc_elifdef_token1] = ACTIONS(123), - [aux_sym_preproc_elifdef_token2] = ACTIONS(123), - [sym_preproc_directive] = ACTIONS(125), + [aux_sym_preproc_ifdef_token1] = ACTIONS(119), + [aux_sym_preproc_ifdef_token2] = ACTIONS(119), + [aux_sym_preproc_else_token1] = ACTIONS(121), + [aux_sym_preproc_elif_token1] = ACTIONS(123), + [aux_sym_preproc_elifdef_token1] = ACTIONS(125), + [aux_sym_preproc_elifdef_token2] = ACTIONS(125), + [sym_preproc_directive] = ACTIONS(127), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -15280,184 +15801,188 @@ 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(127), - [anon_sym___extension__] = ACTIONS(129), - [anon_sym_typedef] = ACTIONS(131), - [anon_sym_extern] = ACTIONS(133), + [anon_sym_SEMI] = ACTIONS(129), + [anon_sym___extension__] = ACTIONS(131), + [anon_sym_typedef] = ACTIONS(133), + [anon_sym_extern] = ACTIONS(135), [anon_sym___attribute__] = ACTIONS(33), [anon_sym___scanf] = ACTIONS(35), [anon_sym___printf] = ACTIONS(35), [anon_sym___read_mostly] = ACTIONS(37), [anon_sym___must_hold] = ACTIONS(33), [anon_sym___ro_after_init] = ACTIONS(37), - [anon_sym___init] = ACTIONS(37), + [anon_sym___noreturn] = ACTIONS(37), + [anon_sym___cold] = ACTIONS(37), [anon_sym_LBRACK_LBRACK] = ACTIONS(39), [anon_sym___declspec] = ACTIONS(41), - [anon_sym___cdecl] = ACTIONS(43), - [anon_sym___clrcall] = ACTIONS(43), - [anon_sym___stdcall] = ACTIONS(43), - [anon_sym___fastcall] = ACTIONS(43), - [anon_sym___thiscall] = ACTIONS(43), - [anon_sym___vectorcall] = ACTIONS(43), - [anon_sym_LBRACE] = ACTIONS(135), - [anon_sym_signed] = ACTIONS(47), - [anon_sym_unsigned] = ACTIONS(47), - [anon_sym_long] = ACTIONS(47), - [anon_sym_short] = ACTIONS(47), - [anon_sym_static] = ACTIONS(49), - [anon_sym_auto] = ACTIONS(49), - [anon_sym_register] = ACTIONS(49), - [anon_sym_inline] = ACTIONS(49), - [anon_sym___inline] = ACTIONS(49), - [anon_sym___inline__] = ACTIONS(49), - [anon_sym___forceinline] = ACTIONS(49), - [anon_sym_thread_local] = ACTIONS(49), - [anon_sym___thread] = ACTIONS(49), - [anon_sym_const] = ACTIONS(51), - [anon_sym_constexpr] = ACTIONS(51), - [anon_sym_volatile] = ACTIONS(51), - [anon_sym_restrict] = ACTIONS(51), - [anon_sym___restrict__] = ACTIONS(51), - [anon_sym__Atomic] = ACTIONS(51), - [anon_sym__Noreturn] = ACTIONS(51), - [anon_sym_noreturn] = ACTIONS(51), - [anon_sym_alignas] = ACTIONS(53), - [anon_sym__Alignas] = ACTIONS(53), - [sym_primitive_type] = ACTIONS(55), - [anon_sym_enum] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [anon_sym_if] = ACTIONS(137), - [anon_sym_switch] = ACTIONS(139), - [anon_sym_case] = ACTIONS(141), - [anon_sym_default] = ACTIONS(143), - [anon_sym_while] = ACTIONS(145), - [anon_sym_do] = ACTIONS(147), - [anon_sym_for] = ACTIONS(149), - [anon_sym_return] = ACTIONS(151), - [anon_sym_break] = ACTIONS(153), - [anon_sym_continue] = ACTIONS(155), - [anon_sym_goto] = ACTIONS(157), - [anon_sym___try] = ACTIONS(159), - [anon_sym___leave] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [anon_sym___alignof__] = ACTIONS(89), - [anon_sym___alignof] = ACTIONS(89), - [anon_sym__alignof] = ACTIONS(89), - [anon_sym_alignof] = ACTIONS(89), - [anon_sym__Alignof] = ACTIONS(89), - [anon_sym_offsetof] = ACTIONS(91), - [anon_sym__Generic] = ACTIONS(93), - [anon_sym_asm] = ACTIONS(95), - [anon_sym___asm__] = ACTIONS(95), - [sym_number_literal] = ACTIONS(163), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(165), - [sym_false] = ACTIONS(165), - [anon_sym_NULL] = ACTIONS(105), - [anon_sym_nullptr] = ACTIONS(105), + [anon_sym___init] = ACTIONS(43), + [anon_sym___exit] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(137), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_const] = ACTIONS(53), + [anon_sym_constexpr] = ACTIONS(53), + [anon_sym_volatile] = ACTIONS(53), + [anon_sym_restrict] = ACTIONS(53), + [anon_sym___restrict__] = ACTIONS(53), + [anon_sym__Atomic] = ACTIONS(53), + [anon_sym__Noreturn] = ACTIONS(53), + [anon_sym_noreturn] = ACTIONS(53), + [anon_sym_alignas] = ACTIONS(55), + [anon_sym__Alignas] = ACTIONS(55), + [sym_primitive_type] = ACTIONS(57), + [anon_sym_enum] = ACTIONS(59), + [anon_sym_struct] = ACTIONS(61), + [anon_sym_union] = ACTIONS(63), + [anon_sym_if] = ACTIONS(139), + [anon_sym_switch] = ACTIONS(141), + [anon_sym_case] = ACTIONS(143), + [anon_sym_default] = ACTIONS(145), + [anon_sym_while] = ACTIONS(147), + [anon_sym_do] = ACTIONS(149), + [anon_sym_for] = ACTIONS(151), + [anon_sym_return] = ACTIONS(153), + [anon_sym_break] = ACTIONS(155), + [anon_sym_continue] = ACTIONS(157), + [anon_sym_goto] = ACTIONS(159), + [anon_sym___try] = ACTIONS(161), + [anon_sym___leave] = ACTIONS(163), + [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(87), + [anon_sym_sizeof] = ACTIONS(89), + [anon_sym___alignof__] = ACTIONS(91), + [anon_sym___alignof] = ACTIONS(91), + [anon_sym__alignof] = ACTIONS(91), + [anon_sym_alignof] = ACTIONS(91), + [anon_sym__Alignof] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(93), + [anon_sym__Generic] = ACTIONS(95), + [anon_sym_asm] = ACTIONS(97), + [anon_sym___asm__] = ACTIONS(97), + [sym_number_literal] = ACTIONS(165), + [anon_sym_L_SQUOTE] = ACTIONS(101), + [anon_sym_u_SQUOTE] = ACTIONS(101), + [anon_sym_U_SQUOTE] = ACTIONS(101), + [anon_sym_u8_SQUOTE] = ACTIONS(101), + [anon_sym_SQUOTE] = ACTIONS(101), + [anon_sym_L_DQUOTE] = ACTIONS(103), + [anon_sym_u_DQUOTE] = ACTIONS(103), + [anon_sym_U_DQUOTE] = ACTIONS(103), + [anon_sym_u8_DQUOTE] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_true] = ACTIONS(167), + [sym_false] = ACTIONS(167), + [anon_sym_NULL] = ACTIONS(107), + [anon_sym_nullptr] = ACTIONS(107), [sym_comment] = ACTIONS(3), }, - [20] = { - [sym__block_item] = STATE(4), - [sym_preproc_include] = STATE(4), - [sym_preproc_def] = STATE(4), - [sym_preproc_function_def] = STATE(4), - [sym_preproc_call] = STATE(4), - [sym_preproc_if] = STATE(4), - [sym_preproc_ifdef] = STATE(4), - [sym_preproc_else] = STATE(2038), - [sym_preproc_elif] = STATE(2038), - [sym_preproc_elifdef] = STATE(2038), - [sym_function_definition] = STATE(4), - [sym__old_style_function_definition] = STATE(117), - [sym_declaration] = STATE(4), - [sym_type_definition] = STATE(4), - [sym__declaration_modifiers] = STATE(697), - [sym__declaration_specifiers] = STATE(1120), - [sym_linkage_specification] = STATE(4), - [sym_attribute_specifier] = STATE(697), - [sym_attribute_declaration] = STATE(405), - [sym_ms_declspec_modifier] = STATE(697), - [sym_ms_call_modifier] = STATE(677), - [sym_compound_statement] = STATE(93), - [sym_storage_class_specifier] = STATE(697), - [sym_type_qualifier] = STATE(697), - [sym_alignas_qualifier] = STATE(703), - [sym_type_specifier] = STATE(817), - [sym_sized_type_specifier] = STATE(746), - [sym_enum_specifier] = STATE(746), - [sym_struct_specifier] = STATE(746), - [sym_union_specifier] = STATE(746), - [sym_attributed_statement] = STATE(118), - [sym_statement] = STATE(4), - [sym_labeled_statement] = STATE(93), - [sym_expression_statement] = STATE(93), - [sym_if_statement] = STATE(93), - [sym_switch_statement] = STATE(93), - [sym_case_statement] = STATE(93), - [sym_while_statement] = STATE(93), - [sym_do_statement] = STATE(93), - [sym_for_statement] = STATE(93), - [sym_return_statement] = STATE(93), - [sym_break_statement] = STATE(93), - [sym_continue_statement] = STATE(93), - [sym_goto_statement] = STATE(93), - [sym_seh_try_statement] = STATE(93), - [sym_seh_leave_statement] = STATE(93), - [sym_expression] = STATE(1073), - [sym__string] = STATE(663), - [sym_comma_expression] = STATE(1821), - [sym_conditional_expression] = STATE(663), - [sym_assignment_expression] = STATE(663), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(663), - [sym_binary_expression] = STATE(663), - [sym_update_expression] = STATE(663), - [sym_cast_expression] = STATE(663), - [sym_sizeof_expression] = STATE(663), - [sym_alignof_expression] = STATE(663), - [sym_offsetof_expression] = STATE(663), - [sym_generic_expression] = STATE(663), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(663), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(663), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(663), - [sym_concatenated_string] = STATE(663), - [sym_string_literal] = STATE(659), - [sym_null] = STATE(663), - [sym__empty_declaration] = STATE(4), - [sym_macro_type_specifier] = STATE(746), - [aux_sym_preproc_if_repeat1] = STATE(4), - [aux_sym__declaration_specifiers_repeat1] = STATE(697), - [aux_sym_attributed_declarator_repeat1] = STATE(365), - [aux_sym_sized_type_specifier_repeat1] = STATE(747), - [sym_identifier] = ACTIONS(107), - [aux_sym_preproc_include_token1] = ACTIONS(109), - [aux_sym_preproc_def_token1] = ACTIONS(111), - [aux_sym_preproc_if_token1] = ACTIONS(113), + [19] = { + [sym__block_item] = STATE(12), + [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(2052), + [sym_preproc_elif] = STATE(2052), + [sym_preproc_elifdef] = STATE(2052), + [sym_function_definition] = STATE(12), + [sym__old_style_function_definition] = STATE(149), + [sym_declaration] = STATE(12), + [sym_type_definition] = STATE(12), + [sym__declaration_modifiers] = STATE(805), + [sym__declaration_specifiers] = STATE(1238), + [sym_linkage_specification] = STATE(12), + [sym_attribute_specifier] = STATE(805), + [sym_attribute_declaration] = STATE(468), + [sym_ms_declspec_modifier] = STATE(805), + [sym_macro_modifier] = STATE(777), + [sym_ms_call_modifier] = STATE(615), + [sym_compound_statement] = STATE(77), + [sym_storage_class_specifier] = STATE(805), + [sym_type_qualifier] = STATE(805), + [sym_alignas_qualifier] = STATE(799), + [sym_type_specifier] = STATE(896), + [sym_sized_type_specifier] = STATE(873), + [sym_enum_specifier] = STATE(873), + [sym_struct_specifier] = STATE(873), + [sym_union_specifier] = STATE(873), + [sym_attributed_statement] = STATE(151), + [sym_statement] = STATE(12), + [sym_labeled_statement] = STATE(77), + [sym_expression_statement] = STATE(77), + [sym_if_statement] = STATE(77), + [sym_switch_statement] = STATE(77), + [sym_case_statement] = STATE(77), + [sym_while_statement] = STATE(77), + [sym_do_statement] = STATE(77), + [sym_for_statement] = STATE(77), + [sym_return_statement] = STATE(77), + [sym_break_statement] = STATE(77), + [sym_continue_statement] = STATE(77), + [sym_goto_statement] = STATE(77), + [sym_seh_try_statement] = STATE(77), + [sym_seh_leave_statement] = STATE(77), + [sym_expression] = STATE(1157), + [sym__string] = STATE(758), + [sym_comma_expression] = STATE(2232), + [sym_conditional_expression] = STATE(758), + [sym_assignment_expression] = STATE(758), + [sym_pointer_expression] = STATE(944), + [sym_unary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_cast_expression] = STATE(758), + [sym_sizeof_expression] = STATE(758), + [sym_alignof_expression] = STATE(758), + [sym_offsetof_expression] = STATE(758), + [sym_generic_expression] = STATE(758), + [sym_subscript_expression] = STATE(944), + [sym_call_expression] = STATE(944), + [sym_gnu_asm_expression] = STATE(758), + [sym_field_expression] = STATE(944), + [sym_compound_literal_expression] = STATE(758), + [sym_parenthesized_expression] = STATE(944), + [sym_char_literal] = STATE(758), + [sym_concatenated_string] = STATE(758), + [sym_string_literal] = STATE(671), + [sym_null] = STATE(758), + [sym__empty_declaration] = STATE(12), + [sym_macro_type_specifier] = STATE(873), + [aux_sym_preproc_if_repeat1] = STATE(12), + [aux_sym__declaration_specifiers_repeat1] = STATE(805), + [aux_sym_attributed_declarator_repeat1] = STATE(439), + [aux_sym_sized_type_specifier_repeat1] = STATE(890), + [sym_identifier] = ACTIONS(109), + [aux_sym_preproc_include_token1] = ACTIONS(111), + [aux_sym_preproc_def_token1] = ACTIONS(113), + [aux_sym_preproc_if_token1] = ACTIONS(115), [aux_sym_preproc_if_token2] = ACTIONS(201), - [aux_sym_preproc_ifdef_token1] = ACTIONS(117), - [aux_sym_preproc_ifdef_token2] = ACTIONS(117), - [aux_sym_preproc_else_token1] = ACTIONS(119), - [aux_sym_preproc_elif_token1] = ACTIONS(121), - [aux_sym_preproc_elifdef_token1] = ACTIONS(123), - [aux_sym_preproc_elifdef_token2] = ACTIONS(123), - [sym_preproc_directive] = ACTIONS(125), + [aux_sym_preproc_ifdef_token1] = ACTIONS(119), + [aux_sym_preproc_ifdef_token2] = ACTIONS(119), + [aux_sym_preproc_else_token1] = ACTIONS(121), + [aux_sym_preproc_elif_token1] = ACTIONS(123), + [aux_sym_preproc_elifdef_token1] = ACTIONS(125), + [aux_sym_preproc_elifdef_token2] = ACTIONS(125), + [sym_preproc_directive] = ACTIONS(127), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -15465,96 +15990,99 @@ 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(127), - [anon_sym___extension__] = ACTIONS(129), - [anon_sym_typedef] = ACTIONS(131), - [anon_sym_extern] = ACTIONS(133), + [anon_sym_SEMI] = ACTIONS(129), + [anon_sym___extension__] = ACTIONS(131), + [anon_sym_typedef] = ACTIONS(133), + [anon_sym_extern] = ACTIONS(135), [anon_sym___attribute__] = ACTIONS(33), [anon_sym___scanf] = ACTIONS(35), [anon_sym___printf] = ACTIONS(35), [anon_sym___read_mostly] = ACTIONS(37), [anon_sym___must_hold] = ACTIONS(33), [anon_sym___ro_after_init] = ACTIONS(37), - [anon_sym___init] = ACTIONS(37), + [anon_sym___noreturn] = ACTIONS(37), + [anon_sym___cold] = ACTIONS(37), [anon_sym_LBRACK_LBRACK] = ACTIONS(39), [anon_sym___declspec] = ACTIONS(41), - [anon_sym___cdecl] = ACTIONS(43), - [anon_sym___clrcall] = ACTIONS(43), - [anon_sym___stdcall] = ACTIONS(43), - [anon_sym___fastcall] = ACTIONS(43), - [anon_sym___thiscall] = ACTIONS(43), - [anon_sym___vectorcall] = ACTIONS(43), - [anon_sym_LBRACE] = ACTIONS(135), - [anon_sym_signed] = ACTIONS(47), - [anon_sym_unsigned] = ACTIONS(47), - [anon_sym_long] = ACTIONS(47), - [anon_sym_short] = ACTIONS(47), - [anon_sym_static] = ACTIONS(49), - [anon_sym_auto] = ACTIONS(49), - [anon_sym_register] = ACTIONS(49), - [anon_sym_inline] = ACTIONS(49), - [anon_sym___inline] = ACTIONS(49), - [anon_sym___inline__] = ACTIONS(49), - [anon_sym___forceinline] = ACTIONS(49), - [anon_sym_thread_local] = ACTIONS(49), - [anon_sym___thread] = ACTIONS(49), - [anon_sym_const] = ACTIONS(51), - [anon_sym_constexpr] = ACTIONS(51), - [anon_sym_volatile] = ACTIONS(51), - [anon_sym_restrict] = ACTIONS(51), - [anon_sym___restrict__] = ACTIONS(51), - [anon_sym__Atomic] = ACTIONS(51), - [anon_sym__Noreturn] = ACTIONS(51), - [anon_sym_noreturn] = ACTIONS(51), - [anon_sym_alignas] = ACTIONS(53), - [anon_sym__Alignas] = ACTIONS(53), - [sym_primitive_type] = ACTIONS(55), - [anon_sym_enum] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [anon_sym_if] = ACTIONS(137), - [anon_sym_switch] = ACTIONS(139), - [anon_sym_case] = ACTIONS(141), - [anon_sym_default] = ACTIONS(143), - [anon_sym_while] = ACTIONS(145), - [anon_sym_do] = ACTIONS(147), - [anon_sym_for] = ACTIONS(149), - [anon_sym_return] = ACTIONS(151), - [anon_sym_break] = ACTIONS(153), - [anon_sym_continue] = ACTIONS(155), - [anon_sym_goto] = ACTIONS(157), - [anon_sym___try] = ACTIONS(159), - [anon_sym___leave] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [anon_sym___alignof__] = ACTIONS(89), - [anon_sym___alignof] = ACTIONS(89), - [anon_sym__alignof] = ACTIONS(89), - [anon_sym_alignof] = ACTIONS(89), - [anon_sym__Alignof] = ACTIONS(89), - [anon_sym_offsetof] = ACTIONS(91), - [anon_sym__Generic] = ACTIONS(93), - [anon_sym_asm] = ACTIONS(95), - [anon_sym___asm__] = ACTIONS(95), - [sym_number_literal] = ACTIONS(163), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(165), - [sym_false] = ACTIONS(165), - [anon_sym_NULL] = ACTIONS(105), - [anon_sym_nullptr] = ACTIONS(105), + [anon_sym___init] = ACTIONS(43), + [anon_sym___exit] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(137), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_const] = ACTIONS(53), + [anon_sym_constexpr] = ACTIONS(53), + [anon_sym_volatile] = ACTIONS(53), + [anon_sym_restrict] = ACTIONS(53), + [anon_sym___restrict__] = ACTIONS(53), + [anon_sym__Atomic] = ACTIONS(53), + [anon_sym__Noreturn] = ACTIONS(53), + [anon_sym_noreturn] = ACTIONS(53), + [anon_sym_alignas] = ACTIONS(55), + [anon_sym__Alignas] = ACTIONS(55), + [sym_primitive_type] = ACTIONS(57), + [anon_sym_enum] = ACTIONS(59), + [anon_sym_struct] = ACTIONS(61), + [anon_sym_union] = ACTIONS(63), + [anon_sym_if] = ACTIONS(139), + [anon_sym_switch] = ACTIONS(141), + [anon_sym_case] = ACTIONS(143), + [anon_sym_default] = ACTIONS(145), + [anon_sym_while] = ACTIONS(147), + [anon_sym_do] = ACTIONS(149), + [anon_sym_for] = ACTIONS(151), + [anon_sym_return] = ACTIONS(153), + [anon_sym_break] = ACTIONS(155), + [anon_sym_continue] = ACTIONS(157), + [anon_sym_goto] = ACTIONS(159), + [anon_sym___try] = ACTIONS(161), + [anon_sym___leave] = ACTIONS(163), + [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(87), + [anon_sym_sizeof] = ACTIONS(89), + [anon_sym___alignof__] = ACTIONS(91), + [anon_sym___alignof] = ACTIONS(91), + [anon_sym__alignof] = ACTIONS(91), + [anon_sym_alignof] = ACTIONS(91), + [anon_sym__Alignof] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(93), + [anon_sym__Generic] = ACTIONS(95), + [anon_sym_asm] = ACTIONS(97), + [anon_sym___asm__] = ACTIONS(97), + [sym_number_literal] = ACTIONS(165), + [anon_sym_L_SQUOTE] = ACTIONS(101), + [anon_sym_u_SQUOTE] = ACTIONS(101), + [anon_sym_U_SQUOTE] = ACTIONS(101), + [anon_sym_u8_SQUOTE] = ACTIONS(101), + [anon_sym_SQUOTE] = ACTIONS(101), + [anon_sym_L_DQUOTE] = ACTIONS(103), + [anon_sym_u_DQUOTE] = ACTIONS(103), + [anon_sym_U_DQUOTE] = ACTIONS(103), + [anon_sym_u8_DQUOTE] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_true] = ACTIONS(167), + [sym_false] = ACTIONS(167), + [anon_sym_NULL] = ACTIONS(107), + [anon_sym_nullptr] = ACTIONS(107), [sym_comment] = ACTIONS(3), }, - [21] = { + [20] = { [sym__block_item] = STATE(22), [sym_preproc_include] = STATE(22), [sym_preproc_def] = STATE(22), @@ -15562,87 +16090,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_call] = STATE(22), [sym_preproc_if] = STATE(22), [sym_preproc_ifdef] = STATE(22), - [sym_preproc_else] = STATE(1939), - [sym_preproc_elif] = STATE(1939), - [sym_preproc_elifdef] = STATE(1939), + [sym_preproc_else] = STATE(2128), + [sym_preproc_elif] = STATE(2128), + [sym_preproc_elifdef] = STATE(2128), [sym_function_definition] = STATE(22), - [sym__old_style_function_definition] = STATE(117), + [sym__old_style_function_definition] = STATE(149), [sym_declaration] = STATE(22), [sym_type_definition] = STATE(22), - [sym__declaration_modifiers] = STATE(697), - [sym__declaration_specifiers] = STATE(1120), + [sym__declaration_modifiers] = STATE(805), + [sym__declaration_specifiers] = STATE(1238), [sym_linkage_specification] = STATE(22), - [sym_attribute_specifier] = STATE(697), - [sym_attribute_declaration] = STATE(405), - [sym_ms_declspec_modifier] = STATE(697), - [sym_ms_call_modifier] = STATE(677), - [sym_compound_statement] = STATE(93), - [sym_storage_class_specifier] = STATE(697), - [sym_type_qualifier] = STATE(697), - [sym_alignas_qualifier] = STATE(703), - [sym_type_specifier] = STATE(817), - [sym_sized_type_specifier] = STATE(746), - [sym_enum_specifier] = STATE(746), - [sym_struct_specifier] = STATE(746), - [sym_union_specifier] = STATE(746), - [sym_attributed_statement] = STATE(118), + [sym_attribute_specifier] = STATE(805), + [sym_attribute_declaration] = STATE(468), + [sym_ms_declspec_modifier] = STATE(805), + [sym_macro_modifier] = STATE(777), + [sym_ms_call_modifier] = STATE(615), + [sym_compound_statement] = STATE(77), + [sym_storage_class_specifier] = STATE(805), + [sym_type_qualifier] = STATE(805), + [sym_alignas_qualifier] = STATE(799), + [sym_type_specifier] = STATE(896), + [sym_sized_type_specifier] = STATE(873), + [sym_enum_specifier] = STATE(873), + [sym_struct_specifier] = STATE(873), + [sym_union_specifier] = STATE(873), + [sym_attributed_statement] = STATE(151), [sym_statement] = STATE(22), - [sym_labeled_statement] = STATE(93), - [sym_expression_statement] = STATE(93), - [sym_if_statement] = STATE(93), - [sym_switch_statement] = STATE(93), - [sym_case_statement] = STATE(93), - [sym_while_statement] = STATE(93), - [sym_do_statement] = STATE(93), - [sym_for_statement] = STATE(93), - [sym_return_statement] = STATE(93), - [sym_break_statement] = STATE(93), - [sym_continue_statement] = STATE(93), - [sym_goto_statement] = STATE(93), - [sym_seh_try_statement] = STATE(93), - [sym_seh_leave_statement] = STATE(93), - [sym_expression] = STATE(1073), - [sym__string] = STATE(663), - [sym_comma_expression] = STATE(1821), - [sym_conditional_expression] = STATE(663), - [sym_assignment_expression] = STATE(663), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(663), - [sym_binary_expression] = STATE(663), - [sym_update_expression] = STATE(663), - [sym_cast_expression] = STATE(663), - [sym_sizeof_expression] = STATE(663), - [sym_alignof_expression] = STATE(663), - [sym_offsetof_expression] = STATE(663), - [sym_generic_expression] = STATE(663), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(663), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(663), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(663), - [sym_concatenated_string] = STATE(663), - [sym_string_literal] = STATE(659), - [sym_null] = STATE(663), + [sym_labeled_statement] = STATE(77), + [sym_expression_statement] = STATE(77), + [sym_if_statement] = STATE(77), + [sym_switch_statement] = STATE(77), + [sym_case_statement] = STATE(77), + [sym_while_statement] = STATE(77), + [sym_do_statement] = STATE(77), + [sym_for_statement] = STATE(77), + [sym_return_statement] = STATE(77), + [sym_break_statement] = STATE(77), + [sym_continue_statement] = STATE(77), + [sym_goto_statement] = STATE(77), + [sym_seh_try_statement] = STATE(77), + [sym_seh_leave_statement] = STATE(77), + [sym_expression] = STATE(1157), + [sym__string] = STATE(758), + [sym_comma_expression] = STATE(2232), + [sym_conditional_expression] = STATE(758), + [sym_assignment_expression] = STATE(758), + [sym_pointer_expression] = STATE(944), + [sym_unary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_cast_expression] = STATE(758), + [sym_sizeof_expression] = STATE(758), + [sym_alignof_expression] = STATE(758), + [sym_offsetof_expression] = STATE(758), + [sym_generic_expression] = STATE(758), + [sym_subscript_expression] = STATE(944), + [sym_call_expression] = STATE(944), + [sym_gnu_asm_expression] = STATE(758), + [sym_field_expression] = STATE(944), + [sym_compound_literal_expression] = STATE(758), + [sym_parenthesized_expression] = STATE(944), + [sym_char_literal] = STATE(758), + [sym_concatenated_string] = STATE(758), + [sym_string_literal] = STATE(671), + [sym_null] = STATE(758), [sym__empty_declaration] = STATE(22), - [sym_macro_type_specifier] = STATE(746), + [sym_macro_type_specifier] = STATE(873), [aux_sym_preproc_if_repeat1] = STATE(22), - [aux_sym__declaration_specifiers_repeat1] = STATE(697), - [aux_sym_attributed_declarator_repeat1] = STATE(365), - [aux_sym_sized_type_specifier_repeat1] = STATE(747), - [sym_identifier] = ACTIONS(107), - [aux_sym_preproc_include_token1] = ACTIONS(109), - [aux_sym_preproc_def_token1] = ACTIONS(111), - [aux_sym_preproc_if_token1] = ACTIONS(113), + [aux_sym__declaration_specifiers_repeat1] = STATE(805), + [aux_sym_attributed_declarator_repeat1] = STATE(439), + [aux_sym_sized_type_specifier_repeat1] = STATE(890), + [sym_identifier] = ACTIONS(109), + [aux_sym_preproc_include_token1] = ACTIONS(111), + [aux_sym_preproc_def_token1] = ACTIONS(113), + [aux_sym_preproc_if_token1] = ACTIONS(115), [aux_sym_preproc_if_token2] = ACTIONS(203), - [aux_sym_preproc_ifdef_token1] = ACTIONS(117), - [aux_sym_preproc_ifdef_token2] = ACTIONS(117), - [aux_sym_preproc_else_token1] = ACTIONS(119), - [aux_sym_preproc_elif_token1] = ACTIONS(121), - [aux_sym_preproc_elifdef_token1] = ACTIONS(123), - [aux_sym_preproc_elifdef_token2] = ACTIONS(123), - [sym_preproc_directive] = ACTIONS(125), + [aux_sym_preproc_ifdef_token1] = ACTIONS(119), + [aux_sym_preproc_ifdef_token2] = ACTIONS(119), + [aux_sym_preproc_else_token1] = ACTIONS(121), + [aux_sym_preproc_elif_token1] = ACTIONS(123), + [aux_sym_preproc_elifdef_token1] = ACTIONS(125), + [aux_sym_preproc_elifdef_token2] = ACTIONS(125), + [sym_preproc_directive] = ACTIONS(127), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -15650,93 +16179,285 @@ 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(127), - [anon_sym___extension__] = ACTIONS(129), - [anon_sym_typedef] = ACTIONS(131), - [anon_sym_extern] = ACTIONS(133), + [anon_sym_SEMI] = ACTIONS(129), + [anon_sym___extension__] = ACTIONS(131), + [anon_sym_typedef] = ACTIONS(133), + [anon_sym_extern] = ACTIONS(135), [anon_sym___attribute__] = ACTIONS(33), [anon_sym___scanf] = ACTIONS(35), [anon_sym___printf] = ACTIONS(35), [anon_sym___read_mostly] = ACTIONS(37), [anon_sym___must_hold] = ACTIONS(33), [anon_sym___ro_after_init] = ACTIONS(37), - [anon_sym___init] = ACTIONS(37), + [anon_sym___noreturn] = ACTIONS(37), + [anon_sym___cold] = ACTIONS(37), [anon_sym_LBRACK_LBRACK] = ACTIONS(39), [anon_sym___declspec] = ACTIONS(41), - [anon_sym___cdecl] = ACTIONS(43), - [anon_sym___clrcall] = ACTIONS(43), - [anon_sym___stdcall] = ACTIONS(43), - [anon_sym___fastcall] = ACTIONS(43), - [anon_sym___thiscall] = ACTIONS(43), - [anon_sym___vectorcall] = ACTIONS(43), - [anon_sym_LBRACE] = ACTIONS(135), - [anon_sym_signed] = ACTIONS(47), - [anon_sym_unsigned] = ACTIONS(47), - [anon_sym_long] = ACTIONS(47), - [anon_sym_short] = ACTIONS(47), - [anon_sym_static] = ACTIONS(49), - [anon_sym_auto] = ACTIONS(49), - [anon_sym_register] = ACTIONS(49), - [anon_sym_inline] = ACTIONS(49), - [anon_sym___inline] = ACTIONS(49), - [anon_sym___inline__] = ACTIONS(49), - [anon_sym___forceinline] = ACTIONS(49), - [anon_sym_thread_local] = ACTIONS(49), - [anon_sym___thread] = ACTIONS(49), - [anon_sym_const] = ACTIONS(51), - [anon_sym_constexpr] = ACTIONS(51), - [anon_sym_volatile] = ACTIONS(51), - [anon_sym_restrict] = ACTIONS(51), - [anon_sym___restrict__] = ACTIONS(51), - [anon_sym__Atomic] = ACTIONS(51), - [anon_sym__Noreturn] = ACTIONS(51), - [anon_sym_noreturn] = ACTIONS(51), - [anon_sym_alignas] = ACTIONS(53), - [anon_sym__Alignas] = ACTIONS(53), - [sym_primitive_type] = ACTIONS(55), - [anon_sym_enum] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [anon_sym_if] = ACTIONS(137), - [anon_sym_switch] = ACTIONS(139), - [anon_sym_case] = ACTIONS(141), - [anon_sym_default] = ACTIONS(143), - [anon_sym_while] = ACTIONS(145), - [anon_sym_do] = ACTIONS(147), - [anon_sym_for] = ACTIONS(149), - [anon_sym_return] = ACTIONS(151), - [anon_sym_break] = ACTIONS(153), - [anon_sym_continue] = ACTIONS(155), - [anon_sym_goto] = ACTIONS(157), - [anon_sym___try] = ACTIONS(159), - [anon_sym___leave] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [anon_sym___alignof__] = ACTIONS(89), - [anon_sym___alignof] = ACTIONS(89), - [anon_sym__alignof] = ACTIONS(89), - [anon_sym_alignof] = ACTIONS(89), - [anon_sym__Alignof] = ACTIONS(89), - [anon_sym_offsetof] = ACTIONS(91), - [anon_sym__Generic] = ACTIONS(93), - [anon_sym_asm] = ACTIONS(95), - [anon_sym___asm__] = ACTIONS(95), - [sym_number_literal] = ACTIONS(163), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(165), - [sym_false] = ACTIONS(165), - [anon_sym_NULL] = ACTIONS(105), - [anon_sym_nullptr] = ACTIONS(105), + [anon_sym___init] = ACTIONS(43), + [anon_sym___exit] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(137), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_const] = ACTIONS(53), + [anon_sym_constexpr] = ACTIONS(53), + [anon_sym_volatile] = ACTIONS(53), + [anon_sym_restrict] = ACTIONS(53), + [anon_sym___restrict__] = ACTIONS(53), + [anon_sym__Atomic] = ACTIONS(53), + [anon_sym__Noreturn] = ACTIONS(53), + [anon_sym_noreturn] = ACTIONS(53), + [anon_sym_alignas] = ACTIONS(55), + [anon_sym__Alignas] = ACTIONS(55), + [sym_primitive_type] = ACTIONS(57), + [anon_sym_enum] = ACTIONS(59), + [anon_sym_struct] = ACTIONS(61), + [anon_sym_union] = ACTIONS(63), + [anon_sym_if] = ACTIONS(139), + [anon_sym_switch] = ACTIONS(141), + [anon_sym_case] = ACTIONS(143), + [anon_sym_default] = ACTIONS(145), + [anon_sym_while] = ACTIONS(147), + [anon_sym_do] = ACTIONS(149), + [anon_sym_for] = ACTIONS(151), + [anon_sym_return] = ACTIONS(153), + [anon_sym_break] = ACTIONS(155), + [anon_sym_continue] = ACTIONS(157), + [anon_sym_goto] = ACTIONS(159), + [anon_sym___try] = ACTIONS(161), + [anon_sym___leave] = ACTIONS(163), + [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(87), + [anon_sym_sizeof] = ACTIONS(89), + [anon_sym___alignof__] = ACTIONS(91), + [anon_sym___alignof] = ACTIONS(91), + [anon_sym__alignof] = ACTIONS(91), + [anon_sym_alignof] = ACTIONS(91), + [anon_sym__Alignof] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(93), + [anon_sym__Generic] = ACTIONS(95), + [anon_sym_asm] = ACTIONS(97), + [anon_sym___asm__] = ACTIONS(97), + [sym_number_literal] = ACTIONS(165), + [anon_sym_L_SQUOTE] = ACTIONS(101), + [anon_sym_u_SQUOTE] = ACTIONS(101), + [anon_sym_U_SQUOTE] = ACTIONS(101), + [anon_sym_u8_SQUOTE] = ACTIONS(101), + [anon_sym_SQUOTE] = ACTIONS(101), + [anon_sym_L_DQUOTE] = ACTIONS(103), + [anon_sym_u_DQUOTE] = ACTIONS(103), + [anon_sym_U_DQUOTE] = ACTIONS(103), + [anon_sym_u8_DQUOTE] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_true] = ACTIONS(167), + [sym_false] = ACTIONS(167), + [anon_sym_NULL] = ACTIONS(107), + [anon_sym_nullptr] = ACTIONS(107), + [sym_comment] = ACTIONS(3), + }, + [21] = { + [sym__block_item] = STATE(22), + [sym_preproc_include] = STATE(22), + [sym_preproc_def] = STATE(22), + [sym_preproc_function_def] = STATE(22), + [sym_preproc_call] = STATE(22), + [sym_preproc_if] = STATE(22), + [sym_preproc_ifdef] = STATE(22), + [sym_preproc_else] = STATE(2185), + [sym_preproc_elif] = STATE(2185), + [sym_preproc_elifdef] = STATE(2185), + [sym_function_definition] = STATE(22), + [sym__old_style_function_definition] = STATE(149), + [sym_declaration] = STATE(22), + [sym_type_definition] = STATE(22), + [sym__declaration_modifiers] = STATE(805), + [sym__declaration_specifiers] = STATE(1238), + [sym_linkage_specification] = STATE(22), + [sym_attribute_specifier] = STATE(805), + [sym_attribute_declaration] = STATE(468), + [sym_ms_declspec_modifier] = STATE(805), + [sym_macro_modifier] = STATE(777), + [sym_ms_call_modifier] = STATE(615), + [sym_compound_statement] = STATE(77), + [sym_storage_class_specifier] = STATE(805), + [sym_type_qualifier] = STATE(805), + [sym_alignas_qualifier] = STATE(799), + [sym_type_specifier] = STATE(896), + [sym_sized_type_specifier] = STATE(873), + [sym_enum_specifier] = STATE(873), + [sym_struct_specifier] = STATE(873), + [sym_union_specifier] = STATE(873), + [sym_attributed_statement] = STATE(151), + [sym_statement] = STATE(22), + [sym_labeled_statement] = STATE(77), + [sym_expression_statement] = STATE(77), + [sym_if_statement] = STATE(77), + [sym_switch_statement] = STATE(77), + [sym_case_statement] = STATE(77), + [sym_while_statement] = STATE(77), + [sym_do_statement] = STATE(77), + [sym_for_statement] = STATE(77), + [sym_return_statement] = STATE(77), + [sym_break_statement] = STATE(77), + [sym_continue_statement] = STATE(77), + [sym_goto_statement] = STATE(77), + [sym_seh_try_statement] = STATE(77), + [sym_seh_leave_statement] = STATE(77), + [sym_expression] = STATE(1157), + [sym__string] = STATE(758), + [sym_comma_expression] = STATE(2232), + [sym_conditional_expression] = STATE(758), + [sym_assignment_expression] = STATE(758), + [sym_pointer_expression] = STATE(944), + [sym_unary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_cast_expression] = STATE(758), + [sym_sizeof_expression] = STATE(758), + [sym_alignof_expression] = STATE(758), + [sym_offsetof_expression] = STATE(758), + [sym_generic_expression] = STATE(758), + [sym_subscript_expression] = STATE(944), + [sym_call_expression] = STATE(944), + [sym_gnu_asm_expression] = STATE(758), + [sym_field_expression] = STATE(944), + [sym_compound_literal_expression] = STATE(758), + [sym_parenthesized_expression] = STATE(944), + [sym_char_literal] = STATE(758), + [sym_concatenated_string] = STATE(758), + [sym_string_literal] = STATE(671), + [sym_null] = STATE(758), + [sym__empty_declaration] = STATE(22), + [sym_macro_type_specifier] = STATE(873), + [aux_sym_preproc_if_repeat1] = STATE(22), + [aux_sym__declaration_specifiers_repeat1] = STATE(805), + [aux_sym_attributed_declarator_repeat1] = STATE(439), + [aux_sym_sized_type_specifier_repeat1] = STATE(890), + [sym_identifier] = ACTIONS(109), + [aux_sym_preproc_include_token1] = ACTIONS(111), + [aux_sym_preproc_def_token1] = ACTIONS(113), + [aux_sym_preproc_if_token1] = ACTIONS(115), + [aux_sym_preproc_if_token2] = ACTIONS(205), + [aux_sym_preproc_ifdef_token1] = ACTIONS(119), + [aux_sym_preproc_ifdef_token2] = ACTIONS(119), + [aux_sym_preproc_else_token1] = ACTIONS(121), + [aux_sym_preproc_elif_token1] = ACTIONS(123), + [aux_sym_preproc_elifdef_token1] = ACTIONS(125), + [aux_sym_preproc_elifdef_token2] = ACTIONS(125), + [sym_preproc_directive] = ACTIONS(127), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(129), + [anon_sym___extension__] = ACTIONS(131), + [anon_sym_typedef] = ACTIONS(133), + [anon_sym_extern] = ACTIONS(135), + [anon_sym___attribute__] = ACTIONS(33), + [anon_sym___scanf] = ACTIONS(35), + [anon_sym___printf] = ACTIONS(35), + [anon_sym___read_mostly] = ACTIONS(37), + [anon_sym___must_hold] = ACTIONS(33), + [anon_sym___ro_after_init] = ACTIONS(37), + [anon_sym___noreturn] = ACTIONS(37), + [anon_sym___cold] = ACTIONS(37), + [anon_sym_LBRACK_LBRACK] = ACTIONS(39), + [anon_sym___declspec] = ACTIONS(41), + [anon_sym___init] = ACTIONS(43), + [anon_sym___exit] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(137), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_const] = ACTIONS(53), + [anon_sym_constexpr] = ACTIONS(53), + [anon_sym_volatile] = ACTIONS(53), + [anon_sym_restrict] = ACTIONS(53), + [anon_sym___restrict__] = ACTIONS(53), + [anon_sym__Atomic] = ACTIONS(53), + [anon_sym__Noreturn] = ACTIONS(53), + [anon_sym_noreturn] = ACTIONS(53), + [anon_sym_alignas] = ACTIONS(55), + [anon_sym__Alignas] = ACTIONS(55), + [sym_primitive_type] = ACTIONS(57), + [anon_sym_enum] = ACTIONS(59), + [anon_sym_struct] = ACTIONS(61), + [anon_sym_union] = ACTIONS(63), + [anon_sym_if] = ACTIONS(139), + [anon_sym_switch] = ACTIONS(141), + [anon_sym_case] = ACTIONS(143), + [anon_sym_default] = ACTIONS(145), + [anon_sym_while] = ACTIONS(147), + [anon_sym_do] = ACTIONS(149), + [anon_sym_for] = ACTIONS(151), + [anon_sym_return] = ACTIONS(153), + [anon_sym_break] = ACTIONS(155), + [anon_sym_continue] = ACTIONS(157), + [anon_sym_goto] = ACTIONS(159), + [anon_sym___try] = ACTIONS(161), + [anon_sym___leave] = ACTIONS(163), + [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(87), + [anon_sym_sizeof] = ACTIONS(89), + [anon_sym___alignof__] = ACTIONS(91), + [anon_sym___alignof] = ACTIONS(91), + [anon_sym__alignof] = ACTIONS(91), + [anon_sym_alignof] = ACTIONS(91), + [anon_sym__Alignof] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(93), + [anon_sym__Generic] = ACTIONS(95), + [anon_sym_asm] = ACTIONS(97), + [anon_sym___asm__] = ACTIONS(97), + [sym_number_literal] = ACTIONS(165), + [anon_sym_L_SQUOTE] = ACTIONS(101), + [anon_sym_u_SQUOTE] = ACTIONS(101), + [anon_sym_U_SQUOTE] = ACTIONS(101), + [anon_sym_u8_SQUOTE] = ACTIONS(101), + [anon_sym_SQUOTE] = ACTIONS(101), + [anon_sym_L_DQUOTE] = ACTIONS(103), + [anon_sym_u_DQUOTE] = ACTIONS(103), + [anon_sym_U_DQUOTE] = ACTIONS(103), + [anon_sym_u8_DQUOTE] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_true] = ACTIONS(167), + [sym_false] = ACTIONS(167), + [anon_sym_NULL] = ACTIONS(107), + [anon_sym_nullptr] = ACTIONS(107), [sym_comment] = ACTIONS(3), }, [22] = { @@ -15748,260 +16469,265 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_if] = STATE(22), [sym_preproc_ifdef] = STATE(22), [sym_function_definition] = STATE(22), - [sym__old_style_function_definition] = STATE(117), + [sym__old_style_function_definition] = STATE(149), [sym_declaration] = STATE(22), [sym_type_definition] = STATE(22), - [sym__declaration_modifiers] = STATE(697), - [sym__declaration_specifiers] = STATE(1120), + [sym__declaration_modifiers] = STATE(805), + [sym__declaration_specifiers] = STATE(1238), [sym_linkage_specification] = STATE(22), - [sym_attribute_specifier] = STATE(697), - [sym_attribute_declaration] = STATE(405), - [sym_ms_declspec_modifier] = STATE(697), - [sym_ms_call_modifier] = STATE(677), - [sym_compound_statement] = STATE(93), - [sym_storage_class_specifier] = STATE(697), - [sym_type_qualifier] = STATE(697), - [sym_alignas_qualifier] = STATE(703), - [sym_type_specifier] = STATE(817), - [sym_sized_type_specifier] = STATE(746), - [sym_enum_specifier] = STATE(746), - [sym_struct_specifier] = STATE(746), - [sym_union_specifier] = STATE(746), - [sym_attributed_statement] = STATE(118), + [sym_attribute_specifier] = STATE(805), + [sym_attribute_declaration] = STATE(468), + [sym_ms_declspec_modifier] = STATE(805), + [sym_macro_modifier] = STATE(777), + [sym_ms_call_modifier] = STATE(615), + [sym_compound_statement] = STATE(77), + [sym_storage_class_specifier] = STATE(805), + [sym_type_qualifier] = STATE(805), + [sym_alignas_qualifier] = STATE(799), + [sym_type_specifier] = STATE(896), + [sym_sized_type_specifier] = STATE(873), + [sym_enum_specifier] = STATE(873), + [sym_struct_specifier] = STATE(873), + [sym_union_specifier] = STATE(873), + [sym_attributed_statement] = STATE(151), [sym_statement] = STATE(22), - [sym_labeled_statement] = STATE(93), - [sym_expression_statement] = STATE(93), - [sym_if_statement] = STATE(93), - [sym_switch_statement] = STATE(93), - [sym_case_statement] = STATE(93), - [sym_while_statement] = STATE(93), - [sym_do_statement] = STATE(93), - [sym_for_statement] = STATE(93), - [sym_return_statement] = STATE(93), - [sym_break_statement] = STATE(93), - [sym_continue_statement] = STATE(93), - [sym_goto_statement] = STATE(93), - [sym_seh_try_statement] = STATE(93), - [sym_seh_leave_statement] = STATE(93), - [sym_expression] = STATE(1073), - [sym__string] = STATE(663), - [sym_comma_expression] = STATE(1821), - [sym_conditional_expression] = STATE(663), - [sym_assignment_expression] = STATE(663), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(663), - [sym_binary_expression] = STATE(663), - [sym_update_expression] = STATE(663), - [sym_cast_expression] = STATE(663), - [sym_sizeof_expression] = STATE(663), - [sym_alignof_expression] = STATE(663), - [sym_offsetof_expression] = STATE(663), - [sym_generic_expression] = STATE(663), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(663), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(663), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(663), - [sym_concatenated_string] = STATE(663), - [sym_string_literal] = STATE(659), - [sym_null] = STATE(663), + [sym_labeled_statement] = STATE(77), + [sym_expression_statement] = STATE(77), + [sym_if_statement] = STATE(77), + [sym_switch_statement] = STATE(77), + [sym_case_statement] = STATE(77), + [sym_while_statement] = STATE(77), + [sym_do_statement] = STATE(77), + [sym_for_statement] = STATE(77), + [sym_return_statement] = STATE(77), + [sym_break_statement] = STATE(77), + [sym_continue_statement] = STATE(77), + [sym_goto_statement] = STATE(77), + [sym_seh_try_statement] = STATE(77), + [sym_seh_leave_statement] = STATE(77), + [sym_expression] = STATE(1157), + [sym__string] = STATE(758), + [sym_comma_expression] = STATE(2232), + [sym_conditional_expression] = STATE(758), + [sym_assignment_expression] = STATE(758), + [sym_pointer_expression] = STATE(944), + [sym_unary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_cast_expression] = STATE(758), + [sym_sizeof_expression] = STATE(758), + [sym_alignof_expression] = STATE(758), + [sym_offsetof_expression] = STATE(758), + [sym_generic_expression] = STATE(758), + [sym_subscript_expression] = STATE(944), + [sym_call_expression] = STATE(944), + [sym_gnu_asm_expression] = STATE(758), + [sym_field_expression] = STATE(944), + [sym_compound_literal_expression] = STATE(758), + [sym_parenthesized_expression] = STATE(944), + [sym_char_literal] = STATE(758), + [sym_concatenated_string] = STATE(758), + [sym_string_literal] = STATE(671), + [sym_null] = STATE(758), [sym__empty_declaration] = STATE(22), - [sym_macro_type_specifier] = STATE(746), + [sym_macro_type_specifier] = STATE(873), [aux_sym_preproc_if_repeat1] = STATE(22), - [aux_sym__declaration_specifiers_repeat1] = STATE(697), - [aux_sym_attributed_declarator_repeat1] = STATE(365), - [aux_sym_sized_type_specifier_repeat1] = STATE(747), - [sym_identifier] = ACTIONS(205), - [aux_sym_preproc_include_token1] = ACTIONS(208), - [aux_sym_preproc_def_token1] = ACTIONS(211), - [aux_sym_preproc_if_token1] = ACTIONS(214), - [aux_sym_preproc_if_token2] = ACTIONS(217), - [aux_sym_preproc_ifdef_token1] = ACTIONS(219), - [aux_sym_preproc_ifdef_token2] = ACTIONS(219), - [aux_sym_preproc_else_token1] = ACTIONS(217), - [aux_sym_preproc_elif_token1] = ACTIONS(217), - [aux_sym_preproc_elifdef_token1] = ACTIONS(217), - [aux_sym_preproc_elifdef_token2] = ACTIONS(217), - [sym_preproc_directive] = ACTIONS(222), - [anon_sym_LPAREN2] = ACTIONS(225), - [anon_sym_BANG] = ACTIONS(228), - [anon_sym_TILDE] = ACTIONS(228), - [anon_sym_DASH] = ACTIONS(231), - [anon_sym_PLUS] = ACTIONS(231), - [anon_sym_STAR] = ACTIONS(234), - [anon_sym_AMP] = ACTIONS(234), - [anon_sym_SEMI] = ACTIONS(237), - [anon_sym___extension__] = ACTIONS(240), - [anon_sym_typedef] = ACTIONS(243), - [anon_sym_extern] = ACTIONS(246), - [anon_sym___attribute__] = ACTIONS(249), - [anon_sym___scanf] = ACTIONS(252), - [anon_sym___printf] = ACTIONS(252), - [anon_sym___read_mostly] = ACTIONS(255), - [anon_sym___must_hold] = ACTIONS(249), - [anon_sym___ro_after_init] = ACTIONS(255), - [anon_sym___init] = ACTIONS(255), - [anon_sym_LBRACK_LBRACK] = ACTIONS(258), - [anon_sym___declspec] = ACTIONS(261), - [anon_sym___cdecl] = ACTIONS(264), - [anon_sym___clrcall] = ACTIONS(264), - [anon_sym___stdcall] = ACTIONS(264), - [anon_sym___fastcall] = ACTIONS(264), - [anon_sym___thiscall] = ACTIONS(264), - [anon_sym___vectorcall] = ACTIONS(264), - [anon_sym_LBRACE] = ACTIONS(267), - [anon_sym_signed] = ACTIONS(270), - [anon_sym_unsigned] = ACTIONS(270), - [anon_sym_long] = ACTIONS(270), - [anon_sym_short] = ACTIONS(270), - [anon_sym_static] = ACTIONS(273), - [anon_sym_auto] = ACTIONS(273), - [anon_sym_register] = ACTIONS(273), - [anon_sym_inline] = ACTIONS(273), - [anon_sym___inline] = ACTIONS(273), - [anon_sym___inline__] = ACTIONS(273), - [anon_sym___forceinline] = ACTIONS(273), - [anon_sym_thread_local] = ACTIONS(273), - [anon_sym___thread] = ACTIONS(273), - [anon_sym_const] = ACTIONS(276), - [anon_sym_constexpr] = ACTIONS(276), - [anon_sym_volatile] = ACTIONS(276), - [anon_sym_restrict] = ACTIONS(276), - [anon_sym___restrict__] = ACTIONS(276), - [anon_sym__Atomic] = ACTIONS(276), - [anon_sym__Noreturn] = ACTIONS(276), - [anon_sym_noreturn] = ACTIONS(276), - [anon_sym_alignas] = ACTIONS(279), - [anon_sym__Alignas] = ACTIONS(279), - [sym_primitive_type] = ACTIONS(282), - [anon_sym_enum] = ACTIONS(285), - [anon_sym_struct] = ACTIONS(288), - [anon_sym_union] = ACTIONS(291), - [anon_sym_if] = ACTIONS(294), - [anon_sym_switch] = ACTIONS(297), - [anon_sym_case] = ACTIONS(300), - [anon_sym_default] = ACTIONS(303), - [anon_sym_while] = ACTIONS(306), - [anon_sym_do] = ACTIONS(309), - [anon_sym_for] = ACTIONS(312), - [anon_sym_return] = ACTIONS(315), - [anon_sym_break] = ACTIONS(318), - [anon_sym_continue] = ACTIONS(321), - [anon_sym_goto] = ACTIONS(324), - [anon_sym___try] = ACTIONS(327), - [anon_sym___leave] = ACTIONS(330), - [anon_sym_DASH_DASH] = ACTIONS(333), - [anon_sym_PLUS_PLUS] = ACTIONS(333), - [anon_sym_sizeof] = ACTIONS(336), - [anon_sym___alignof__] = ACTIONS(339), - [anon_sym___alignof] = ACTIONS(339), - [anon_sym__alignof] = ACTIONS(339), - [anon_sym_alignof] = ACTIONS(339), - [anon_sym__Alignof] = ACTIONS(339), - [anon_sym_offsetof] = ACTIONS(342), - [anon_sym__Generic] = ACTIONS(345), - [anon_sym_asm] = ACTIONS(348), - [anon_sym___asm__] = ACTIONS(348), - [sym_number_literal] = ACTIONS(351), - [anon_sym_L_SQUOTE] = ACTIONS(354), - [anon_sym_u_SQUOTE] = ACTIONS(354), - [anon_sym_U_SQUOTE] = ACTIONS(354), - [anon_sym_u8_SQUOTE] = ACTIONS(354), - [anon_sym_SQUOTE] = ACTIONS(354), - [anon_sym_L_DQUOTE] = ACTIONS(357), - [anon_sym_u_DQUOTE] = ACTIONS(357), - [anon_sym_U_DQUOTE] = ACTIONS(357), - [anon_sym_u8_DQUOTE] = ACTIONS(357), - [anon_sym_DQUOTE] = ACTIONS(357), - [sym_true] = ACTIONS(360), - [sym_false] = ACTIONS(360), - [anon_sym_NULL] = ACTIONS(363), - [anon_sym_nullptr] = ACTIONS(363), + [aux_sym__declaration_specifiers_repeat1] = STATE(805), + [aux_sym_attributed_declarator_repeat1] = STATE(439), + [aux_sym_sized_type_specifier_repeat1] = STATE(890), + [sym_identifier] = ACTIONS(207), + [aux_sym_preproc_include_token1] = ACTIONS(210), + [aux_sym_preproc_def_token1] = ACTIONS(213), + [aux_sym_preproc_if_token1] = ACTIONS(216), + [aux_sym_preproc_if_token2] = ACTIONS(219), + [aux_sym_preproc_ifdef_token1] = ACTIONS(221), + [aux_sym_preproc_ifdef_token2] = ACTIONS(221), + [aux_sym_preproc_else_token1] = ACTIONS(219), + [aux_sym_preproc_elif_token1] = ACTIONS(219), + [aux_sym_preproc_elifdef_token1] = ACTIONS(219), + [aux_sym_preproc_elifdef_token2] = ACTIONS(219), + [sym_preproc_directive] = ACTIONS(224), + [anon_sym_LPAREN2] = ACTIONS(227), + [anon_sym_BANG] = ACTIONS(230), + [anon_sym_TILDE] = ACTIONS(230), + [anon_sym_DASH] = ACTIONS(233), + [anon_sym_PLUS] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(236), + [anon_sym_AMP] = ACTIONS(236), + [anon_sym_SEMI] = ACTIONS(239), + [anon_sym___extension__] = ACTIONS(242), + [anon_sym_typedef] = ACTIONS(245), + [anon_sym_extern] = ACTIONS(248), + [anon_sym___attribute__] = ACTIONS(251), + [anon_sym___scanf] = ACTIONS(254), + [anon_sym___printf] = ACTIONS(254), + [anon_sym___read_mostly] = ACTIONS(257), + [anon_sym___must_hold] = ACTIONS(251), + [anon_sym___ro_after_init] = ACTIONS(257), + [anon_sym___noreturn] = ACTIONS(257), + [anon_sym___cold] = ACTIONS(257), + [anon_sym_LBRACK_LBRACK] = ACTIONS(260), + [anon_sym___declspec] = ACTIONS(263), + [anon_sym___init] = ACTIONS(266), + [anon_sym___exit] = ACTIONS(266), + [anon_sym___cdecl] = ACTIONS(269), + [anon_sym___clrcall] = ACTIONS(269), + [anon_sym___stdcall] = ACTIONS(269), + [anon_sym___fastcall] = ACTIONS(269), + [anon_sym___thiscall] = ACTIONS(269), + [anon_sym___vectorcall] = ACTIONS(269), + [anon_sym_LBRACE] = ACTIONS(272), + [anon_sym_signed] = ACTIONS(275), + [anon_sym_unsigned] = ACTIONS(275), + [anon_sym_long] = ACTIONS(275), + [anon_sym_short] = ACTIONS(275), + [anon_sym_static] = ACTIONS(278), + [anon_sym_auto] = ACTIONS(278), + [anon_sym_register] = ACTIONS(278), + [anon_sym_inline] = ACTIONS(278), + [anon_sym___inline] = ACTIONS(278), + [anon_sym___inline__] = ACTIONS(278), + [anon_sym___forceinline] = ACTIONS(278), + [anon_sym_thread_local] = ACTIONS(278), + [anon_sym___thread] = ACTIONS(278), + [anon_sym_const] = ACTIONS(281), + [anon_sym_constexpr] = ACTIONS(281), + [anon_sym_volatile] = ACTIONS(281), + [anon_sym_restrict] = ACTIONS(281), + [anon_sym___restrict__] = ACTIONS(281), + [anon_sym__Atomic] = ACTIONS(281), + [anon_sym__Noreturn] = ACTIONS(281), + [anon_sym_noreturn] = ACTIONS(281), + [anon_sym_alignas] = ACTIONS(284), + [anon_sym__Alignas] = ACTIONS(284), + [sym_primitive_type] = ACTIONS(287), + [anon_sym_enum] = ACTIONS(290), + [anon_sym_struct] = ACTIONS(293), + [anon_sym_union] = ACTIONS(296), + [anon_sym_if] = ACTIONS(299), + [anon_sym_switch] = ACTIONS(302), + [anon_sym_case] = ACTIONS(305), + [anon_sym_default] = ACTIONS(308), + [anon_sym_while] = ACTIONS(311), + [anon_sym_do] = ACTIONS(314), + [anon_sym_for] = ACTIONS(317), + [anon_sym_return] = ACTIONS(320), + [anon_sym_break] = ACTIONS(323), + [anon_sym_continue] = ACTIONS(326), + [anon_sym_goto] = ACTIONS(329), + [anon_sym___try] = ACTIONS(332), + [anon_sym___leave] = ACTIONS(335), + [anon_sym_DASH_DASH] = ACTIONS(338), + [anon_sym_PLUS_PLUS] = ACTIONS(338), + [anon_sym_sizeof] = ACTIONS(341), + [anon_sym___alignof__] = ACTIONS(344), + [anon_sym___alignof] = ACTIONS(344), + [anon_sym__alignof] = ACTIONS(344), + [anon_sym_alignof] = ACTIONS(344), + [anon_sym__Alignof] = ACTIONS(344), + [anon_sym_offsetof] = ACTIONS(347), + [anon_sym__Generic] = ACTIONS(350), + [anon_sym_asm] = ACTIONS(353), + [anon_sym___asm__] = ACTIONS(353), + [sym_number_literal] = ACTIONS(356), + [anon_sym_L_SQUOTE] = ACTIONS(359), + [anon_sym_u_SQUOTE] = ACTIONS(359), + [anon_sym_U_SQUOTE] = ACTIONS(359), + [anon_sym_u8_SQUOTE] = ACTIONS(359), + [anon_sym_SQUOTE] = ACTIONS(359), + [anon_sym_L_DQUOTE] = ACTIONS(362), + [anon_sym_u_DQUOTE] = ACTIONS(362), + [anon_sym_U_DQUOTE] = ACTIONS(362), + [anon_sym_u8_DQUOTE] = ACTIONS(362), + [anon_sym_DQUOTE] = ACTIONS(362), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [anon_sym_NULL] = ACTIONS(368), + [anon_sym_nullptr] = ACTIONS(368), [sym_comment] = ACTIONS(3), }, [23] = { - [sym__block_item] = STATE(39), - [sym_preproc_include] = STATE(39), - [sym_preproc_def] = STATE(39), - [sym_preproc_function_def] = STATE(39), - [sym_preproc_call] = STATE(39), - [sym_preproc_if] = STATE(39), - [sym_preproc_ifdef] = STATE(39), - [sym_function_definition] = STATE(39), - [sym__old_style_function_definition] = STATE(279), - [sym_declaration] = STATE(39), - [sym_type_definition] = STATE(39), - [sym__declaration_modifiers] = STATE(697), - [sym__declaration_specifiers] = STATE(1121), - [sym_linkage_specification] = STATE(39), - [sym_attribute_specifier] = STATE(697), - [sym_attribute_declaration] = STATE(405), - [sym_ms_declspec_modifier] = STATE(697), - [sym_ms_call_modifier] = STATE(693), - [sym_compound_statement] = STATE(148), - [sym_storage_class_specifier] = STATE(697), - [sym_type_qualifier] = STATE(697), - [sym_alignas_qualifier] = STATE(703), - [sym_type_specifier] = STATE(784), - [sym_sized_type_specifier] = STATE(746), - [sym_enum_specifier] = STATE(746), - [sym_struct_specifier] = STATE(746), - [sym_union_specifier] = STATE(746), - [sym_attributed_statement] = STATE(280), - [sym_statement] = STATE(39), - [sym_labeled_statement] = STATE(148), - [sym_expression_statement] = STATE(148), - [sym_if_statement] = STATE(148), - [sym_switch_statement] = STATE(148), - [sym_case_statement] = STATE(148), - [sym_while_statement] = STATE(148), - [sym_do_statement] = STATE(148), - [sym_for_statement] = STATE(148), - [sym_return_statement] = STATE(148), - [sym_break_statement] = STATE(148), - [sym_continue_statement] = STATE(148), - [sym_goto_statement] = STATE(148), - [sym_seh_try_statement] = STATE(148), - [sym_seh_leave_statement] = STATE(148), - [sym_expression] = STATE(1033), - [sym__string] = STATE(663), - [sym_comma_expression] = STATE(1818), - [sym_conditional_expression] = STATE(663), - [sym_assignment_expression] = STATE(663), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(663), - [sym_binary_expression] = STATE(663), - [sym_update_expression] = STATE(663), - [sym_cast_expression] = STATE(663), - [sym_sizeof_expression] = STATE(663), - [sym_alignof_expression] = STATE(663), - [sym_offsetof_expression] = STATE(663), - [sym_generic_expression] = STATE(663), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(663), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(663), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(663), - [sym_concatenated_string] = STATE(663), - [sym_string_literal] = STATE(659), - [sym_null] = STATE(663), - [sym__empty_declaration] = STATE(39), - [sym_macro_type_specifier] = STATE(746), - [aux_sym_preproc_if_repeat1] = STATE(39), - [aux_sym__declaration_specifiers_repeat1] = STATE(697), - [aux_sym_attributed_declarator_repeat1] = STATE(375), - [aux_sym_sized_type_specifier_repeat1] = STATE(747), - [sym_identifier] = ACTIONS(366), - [aux_sym_preproc_include_token1] = ACTIONS(368), - [aux_sym_preproc_def_token1] = ACTIONS(370), - [aux_sym_preproc_if_token1] = ACTIONS(372), - [aux_sym_preproc_ifdef_token1] = ACTIONS(374), - [aux_sym_preproc_ifdef_token2] = ACTIONS(374), - [sym_preproc_directive] = ACTIONS(376), + [sym__block_item] = STATE(40), + [sym_preproc_include] = STATE(40), + [sym_preproc_def] = STATE(40), + [sym_preproc_function_def] = STATE(40), + [sym_preproc_call] = STATE(40), + [sym_preproc_if] = STATE(40), + [sym_preproc_ifdef] = STATE(40), + [sym_function_definition] = STATE(40), + [sym__old_style_function_definition] = STATE(312), + [sym_declaration] = STATE(40), + [sym_type_definition] = STATE(40), + [sym__declaration_modifiers] = STATE(805), + [sym__declaration_specifiers] = STATE(1234), + [sym_linkage_specification] = STATE(40), + [sym_attribute_specifier] = STATE(805), + [sym_attribute_declaration] = STATE(468), + [sym_ms_declspec_modifier] = STATE(805), + [sym_macro_modifier] = STATE(788), + [sym_ms_call_modifier] = STATE(627), + [sym_compound_statement] = STATE(290), + [sym_storage_class_specifier] = STATE(805), + [sym_type_qualifier] = STATE(805), + [sym_alignas_qualifier] = STATE(799), + [sym_type_specifier] = STATE(899), + [sym_sized_type_specifier] = STATE(873), + [sym_enum_specifier] = STATE(873), + [sym_struct_specifier] = STATE(873), + [sym_union_specifier] = STATE(873), + [sym_attributed_statement] = STATE(306), + [sym_statement] = STATE(40), + [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_seh_try_statement] = STATE(290), + [sym_seh_leave_statement] = STATE(290), + [sym_expression] = STATE(1167), + [sym__string] = STATE(758), + [sym_comma_expression] = STATE(2207), + [sym_conditional_expression] = STATE(758), + [sym_assignment_expression] = STATE(758), + [sym_pointer_expression] = STATE(944), + [sym_unary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_cast_expression] = STATE(758), + [sym_sizeof_expression] = STATE(758), + [sym_alignof_expression] = STATE(758), + [sym_offsetof_expression] = STATE(758), + [sym_generic_expression] = STATE(758), + [sym_subscript_expression] = STATE(944), + [sym_call_expression] = STATE(944), + [sym_gnu_asm_expression] = STATE(758), + [sym_field_expression] = STATE(944), + [sym_compound_literal_expression] = STATE(758), + [sym_parenthesized_expression] = STATE(944), + [sym_char_literal] = STATE(758), + [sym_concatenated_string] = STATE(758), + [sym_string_literal] = STATE(671), + [sym_null] = STATE(758), + [sym__empty_declaration] = STATE(40), + [sym_macro_type_specifier] = STATE(873), + [aux_sym_preproc_if_repeat1] = STATE(40), + [aux_sym__declaration_specifiers_repeat1] = STATE(805), + [aux_sym_attributed_declarator_repeat1] = STATE(428), + [aux_sym_sized_type_specifier_repeat1] = STATE(890), + [sym_identifier] = ACTIONS(371), + [aux_sym_preproc_include_token1] = ACTIONS(373), + [aux_sym_preproc_def_token1] = ACTIONS(375), + [aux_sym_preproc_if_token1] = ACTIONS(377), + [aux_sym_preproc_ifdef_token1] = ACTIONS(379), + [aux_sym_preproc_ifdef_token2] = ACTIONS(379), + [sym_preproc_directive] = ACTIONS(381), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -16009,177 +16735,181 @@ 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(378), - [anon_sym___extension__] = ACTIONS(380), - [anon_sym_typedef] = ACTIONS(382), - [anon_sym_extern] = ACTIONS(384), + [anon_sym_SEMI] = ACTIONS(383), + [anon_sym___extension__] = ACTIONS(385), + [anon_sym_typedef] = ACTIONS(387), + [anon_sym_extern] = ACTIONS(389), [anon_sym___attribute__] = ACTIONS(33), [anon_sym___scanf] = ACTIONS(35), [anon_sym___printf] = ACTIONS(35), [anon_sym___read_mostly] = ACTIONS(37), [anon_sym___must_hold] = ACTIONS(33), [anon_sym___ro_after_init] = ACTIONS(37), - [anon_sym___init] = ACTIONS(37), + [anon_sym___noreturn] = ACTIONS(37), + [anon_sym___cold] = ACTIONS(37), [anon_sym_LBRACK_LBRACK] = ACTIONS(39), [anon_sym___declspec] = ACTIONS(41), - [anon_sym___cdecl] = ACTIONS(43), - [anon_sym___clrcall] = ACTIONS(43), - [anon_sym___stdcall] = ACTIONS(43), - [anon_sym___fastcall] = ACTIONS(43), - [anon_sym___thiscall] = ACTIONS(43), - [anon_sym___vectorcall] = ACTIONS(43), - [anon_sym_LBRACE] = ACTIONS(386), - [anon_sym_RBRACE] = ACTIONS(388), - [anon_sym_signed] = ACTIONS(47), - [anon_sym_unsigned] = ACTIONS(47), - [anon_sym_long] = ACTIONS(47), - [anon_sym_short] = ACTIONS(47), - [anon_sym_static] = ACTIONS(49), - [anon_sym_auto] = ACTIONS(49), - [anon_sym_register] = ACTIONS(49), - [anon_sym_inline] = ACTIONS(49), - [anon_sym___inline] = ACTIONS(49), - [anon_sym___inline__] = ACTIONS(49), - [anon_sym___forceinline] = ACTIONS(49), - [anon_sym_thread_local] = ACTIONS(49), - [anon_sym___thread] = ACTIONS(49), - [anon_sym_const] = ACTIONS(51), - [anon_sym_constexpr] = ACTIONS(51), - [anon_sym_volatile] = ACTIONS(51), - [anon_sym_restrict] = ACTIONS(51), - [anon_sym___restrict__] = ACTIONS(51), - [anon_sym__Atomic] = ACTIONS(51), - [anon_sym__Noreturn] = ACTIONS(51), - [anon_sym_noreturn] = ACTIONS(51), - [anon_sym_alignas] = ACTIONS(53), - [anon_sym__Alignas] = ACTIONS(53), - [sym_primitive_type] = ACTIONS(55), - [anon_sym_enum] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [anon_sym_if] = ACTIONS(390), - [anon_sym_switch] = ACTIONS(392), - [anon_sym_case] = ACTIONS(394), - [anon_sym_default] = ACTIONS(396), - [anon_sym_while] = ACTIONS(398), - [anon_sym_do] = ACTIONS(400), - [anon_sym_for] = ACTIONS(402), - [anon_sym_return] = ACTIONS(404), - [anon_sym_break] = ACTIONS(406), - [anon_sym_continue] = ACTIONS(408), - [anon_sym_goto] = ACTIONS(410), - [anon_sym___try] = ACTIONS(412), - [anon_sym___leave] = ACTIONS(414), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [anon_sym___alignof__] = ACTIONS(89), - [anon_sym___alignof] = ACTIONS(89), - [anon_sym__alignof] = ACTIONS(89), - [anon_sym_alignof] = ACTIONS(89), - [anon_sym__Alignof] = ACTIONS(89), - [anon_sym_offsetof] = ACTIONS(91), - [anon_sym__Generic] = ACTIONS(93), - [anon_sym_asm] = ACTIONS(95), - [anon_sym___asm__] = ACTIONS(95), - [sym_number_literal] = ACTIONS(163), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(165), - [sym_false] = ACTIONS(165), - [anon_sym_NULL] = ACTIONS(105), - [anon_sym_nullptr] = ACTIONS(105), + [anon_sym___init] = ACTIONS(43), + [anon_sym___exit] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_RBRACE] = ACTIONS(393), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_const] = ACTIONS(53), + [anon_sym_constexpr] = ACTIONS(53), + [anon_sym_volatile] = ACTIONS(53), + [anon_sym_restrict] = ACTIONS(53), + [anon_sym___restrict__] = ACTIONS(53), + [anon_sym__Atomic] = ACTIONS(53), + [anon_sym__Noreturn] = ACTIONS(53), + [anon_sym_noreturn] = ACTIONS(53), + [anon_sym_alignas] = ACTIONS(55), + [anon_sym__Alignas] = ACTIONS(55), + [sym_primitive_type] = ACTIONS(57), + [anon_sym_enum] = ACTIONS(59), + [anon_sym_struct] = ACTIONS(61), + [anon_sym_union] = ACTIONS(63), + [anon_sym_if] = ACTIONS(395), + [anon_sym_switch] = ACTIONS(397), + [anon_sym_case] = ACTIONS(399), + [anon_sym_default] = ACTIONS(401), + [anon_sym_while] = ACTIONS(403), + [anon_sym_do] = ACTIONS(405), + [anon_sym_for] = ACTIONS(407), + [anon_sym_return] = ACTIONS(409), + [anon_sym_break] = ACTIONS(411), + [anon_sym_continue] = ACTIONS(413), + [anon_sym_goto] = ACTIONS(415), + [anon_sym___try] = ACTIONS(417), + [anon_sym___leave] = ACTIONS(419), + [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(87), + [anon_sym_sizeof] = ACTIONS(89), + [anon_sym___alignof__] = ACTIONS(91), + [anon_sym___alignof] = ACTIONS(91), + [anon_sym__alignof] = ACTIONS(91), + [anon_sym_alignof] = ACTIONS(91), + [anon_sym__Alignof] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(93), + [anon_sym__Generic] = ACTIONS(95), + [anon_sym_asm] = ACTIONS(97), + [anon_sym___asm__] = ACTIONS(97), + [sym_number_literal] = ACTIONS(165), + [anon_sym_L_SQUOTE] = ACTIONS(101), + [anon_sym_u_SQUOTE] = ACTIONS(101), + [anon_sym_U_SQUOTE] = ACTIONS(101), + [anon_sym_u8_SQUOTE] = ACTIONS(101), + [anon_sym_SQUOTE] = ACTIONS(101), + [anon_sym_L_DQUOTE] = ACTIONS(103), + [anon_sym_u_DQUOTE] = ACTIONS(103), + [anon_sym_U_DQUOTE] = ACTIONS(103), + [anon_sym_u8_DQUOTE] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_true] = ACTIONS(167), + [sym_false] = ACTIONS(167), + [anon_sym_NULL] = ACTIONS(107), + [anon_sym_nullptr] = ACTIONS(107), [sym_comment] = ACTIONS(3), }, [24] = { - [sym__block_item] = STATE(27), - [sym_preproc_include] = STATE(27), - [sym_preproc_def] = STATE(27), - [sym_preproc_function_def] = STATE(27), - [sym_preproc_call] = STATE(27), - [sym_preproc_if] = STATE(27), - [sym_preproc_ifdef] = STATE(27), - [sym_function_definition] = STATE(27), - [sym__old_style_function_definition] = STATE(279), - [sym_declaration] = STATE(27), - [sym_type_definition] = STATE(27), - [sym__declaration_modifiers] = STATE(697), - [sym__declaration_specifiers] = STATE(1121), - [sym_linkage_specification] = STATE(27), - [sym_attribute_specifier] = STATE(697), - [sym_attribute_declaration] = STATE(405), - [sym_ms_declspec_modifier] = STATE(697), - [sym_ms_call_modifier] = STATE(693), - [sym_compound_statement] = STATE(148), - [sym_storage_class_specifier] = STATE(697), - [sym_type_qualifier] = STATE(697), - [sym_alignas_qualifier] = STATE(703), - [sym_type_specifier] = STATE(784), - [sym_sized_type_specifier] = STATE(746), - [sym_enum_specifier] = STATE(746), - [sym_struct_specifier] = STATE(746), - [sym_union_specifier] = STATE(746), - [sym_attributed_statement] = STATE(280), - [sym_statement] = STATE(27), - [sym_labeled_statement] = STATE(148), - [sym_expression_statement] = STATE(148), - [sym_if_statement] = STATE(148), - [sym_switch_statement] = STATE(148), - [sym_case_statement] = STATE(148), - [sym_while_statement] = STATE(148), - [sym_do_statement] = STATE(148), - [sym_for_statement] = STATE(148), - [sym_return_statement] = STATE(148), - [sym_break_statement] = STATE(148), - [sym_continue_statement] = STATE(148), - [sym_goto_statement] = STATE(148), - [sym_seh_try_statement] = STATE(148), - [sym_seh_leave_statement] = STATE(148), - [sym_expression] = STATE(1033), - [sym__string] = STATE(663), - [sym_comma_expression] = STATE(1818), - [sym_conditional_expression] = STATE(663), - [sym_assignment_expression] = STATE(663), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(663), - [sym_binary_expression] = STATE(663), - [sym_update_expression] = STATE(663), - [sym_cast_expression] = STATE(663), - [sym_sizeof_expression] = STATE(663), - [sym_alignof_expression] = STATE(663), - [sym_offsetof_expression] = STATE(663), - [sym_generic_expression] = STATE(663), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(663), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(663), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(663), - [sym_concatenated_string] = STATE(663), - [sym_string_literal] = STATE(659), - [sym_null] = STATE(663), - [sym__empty_declaration] = STATE(27), - [sym_macro_type_specifier] = STATE(746), - [aux_sym_preproc_if_repeat1] = STATE(27), - [aux_sym__declaration_specifiers_repeat1] = STATE(697), - [aux_sym_attributed_declarator_repeat1] = STATE(375), - [aux_sym_sized_type_specifier_repeat1] = STATE(747), - [sym_identifier] = ACTIONS(366), - [aux_sym_preproc_include_token1] = ACTIONS(368), - [aux_sym_preproc_def_token1] = ACTIONS(370), - [aux_sym_preproc_if_token1] = ACTIONS(372), - [aux_sym_preproc_ifdef_token1] = ACTIONS(374), - [aux_sym_preproc_ifdef_token2] = ACTIONS(374), - [sym_preproc_directive] = ACTIONS(376), + [sym__block_item] = STATE(38), + [sym_preproc_include] = STATE(38), + [sym_preproc_def] = STATE(38), + [sym_preproc_function_def] = STATE(38), + [sym_preproc_call] = STATE(38), + [sym_preproc_if] = STATE(38), + [sym_preproc_ifdef] = STATE(38), + [sym_function_definition] = STATE(38), + [sym__old_style_function_definition] = STATE(312), + [sym_declaration] = STATE(38), + [sym_type_definition] = STATE(38), + [sym__declaration_modifiers] = STATE(805), + [sym__declaration_specifiers] = STATE(1234), + [sym_linkage_specification] = STATE(38), + [sym_attribute_specifier] = STATE(805), + [sym_attribute_declaration] = STATE(468), + [sym_ms_declspec_modifier] = STATE(805), + [sym_macro_modifier] = STATE(788), + [sym_ms_call_modifier] = STATE(627), + [sym_compound_statement] = STATE(290), + [sym_storage_class_specifier] = STATE(805), + [sym_type_qualifier] = STATE(805), + [sym_alignas_qualifier] = STATE(799), + [sym_type_specifier] = STATE(899), + [sym_sized_type_specifier] = STATE(873), + [sym_enum_specifier] = STATE(873), + [sym_struct_specifier] = STATE(873), + [sym_union_specifier] = STATE(873), + [sym_attributed_statement] = STATE(306), + [sym_statement] = STATE(38), + [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_seh_try_statement] = STATE(290), + [sym_seh_leave_statement] = STATE(290), + [sym_expression] = STATE(1167), + [sym__string] = STATE(758), + [sym_comma_expression] = STATE(2207), + [sym_conditional_expression] = STATE(758), + [sym_assignment_expression] = STATE(758), + [sym_pointer_expression] = STATE(944), + [sym_unary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_cast_expression] = STATE(758), + [sym_sizeof_expression] = STATE(758), + [sym_alignof_expression] = STATE(758), + [sym_offsetof_expression] = STATE(758), + [sym_generic_expression] = STATE(758), + [sym_subscript_expression] = STATE(944), + [sym_call_expression] = STATE(944), + [sym_gnu_asm_expression] = STATE(758), + [sym_field_expression] = STATE(944), + [sym_compound_literal_expression] = STATE(758), + [sym_parenthesized_expression] = STATE(944), + [sym_char_literal] = STATE(758), + [sym_concatenated_string] = STATE(758), + [sym_string_literal] = STATE(671), + [sym_null] = STATE(758), + [sym__empty_declaration] = STATE(38), + [sym_macro_type_specifier] = STATE(873), + [aux_sym_preproc_if_repeat1] = STATE(38), + [aux_sym__declaration_specifiers_repeat1] = STATE(805), + [aux_sym_attributed_declarator_repeat1] = STATE(428), + [aux_sym_sized_type_specifier_repeat1] = STATE(890), + [sym_identifier] = ACTIONS(371), + [aux_sym_preproc_include_token1] = ACTIONS(373), + [aux_sym_preproc_def_token1] = ACTIONS(375), + [aux_sym_preproc_if_token1] = ACTIONS(377), + [aux_sym_preproc_ifdef_token1] = ACTIONS(379), + [aux_sym_preproc_ifdef_token2] = ACTIONS(379), + [sym_preproc_directive] = ACTIONS(381), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -16187,355 +16917,363 @@ 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(378), - [anon_sym___extension__] = ACTIONS(380), - [anon_sym_typedef] = ACTIONS(382), - [anon_sym_extern] = ACTIONS(384), + [anon_sym_SEMI] = ACTIONS(383), + [anon_sym___extension__] = ACTIONS(385), + [anon_sym_typedef] = ACTIONS(387), + [anon_sym_extern] = ACTIONS(389), [anon_sym___attribute__] = ACTIONS(33), [anon_sym___scanf] = ACTIONS(35), [anon_sym___printf] = ACTIONS(35), [anon_sym___read_mostly] = ACTIONS(37), [anon_sym___must_hold] = ACTIONS(33), [anon_sym___ro_after_init] = ACTIONS(37), - [anon_sym___init] = ACTIONS(37), + [anon_sym___noreturn] = ACTIONS(37), + [anon_sym___cold] = ACTIONS(37), [anon_sym_LBRACK_LBRACK] = ACTIONS(39), [anon_sym___declspec] = ACTIONS(41), - [anon_sym___cdecl] = ACTIONS(43), - [anon_sym___clrcall] = ACTIONS(43), - [anon_sym___stdcall] = ACTIONS(43), - [anon_sym___fastcall] = ACTIONS(43), - [anon_sym___thiscall] = ACTIONS(43), - [anon_sym___vectorcall] = ACTIONS(43), - [anon_sym_LBRACE] = ACTIONS(386), - [anon_sym_RBRACE] = ACTIONS(416), - [anon_sym_signed] = ACTIONS(47), - [anon_sym_unsigned] = ACTIONS(47), - [anon_sym_long] = ACTIONS(47), - [anon_sym_short] = ACTIONS(47), - [anon_sym_static] = ACTIONS(49), - [anon_sym_auto] = ACTIONS(49), - [anon_sym_register] = ACTIONS(49), - [anon_sym_inline] = ACTIONS(49), - [anon_sym___inline] = ACTIONS(49), - [anon_sym___inline__] = ACTIONS(49), - [anon_sym___forceinline] = ACTIONS(49), - [anon_sym_thread_local] = ACTIONS(49), - [anon_sym___thread] = ACTIONS(49), - [anon_sym_const] = ACTIONS(51), - [anon_sym_constexpr] = ACTIONS(51), - [anon_sym_volatile] = ACTIONS(51), - [anon_sym_restrict] = ACTIONS(51), - [anon_sym___restrict__] = ACTIONS(51), - [anon_sym__Atomic] = ACTIONS(51), - [anon_sym__Noreturn] = ACTIONS(51), - [anon_sym_noreturn] = ACTIONS(51), - [anon_sym_alignas] = ACTIONS(53), - [anon_sym__Alignas] = ACTIONS(53), - [sym_primitive_type] = ACTIONS(55), - [anon_sym_enum] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [anon_sym_if] = ACTIONS(390), - [anon_sym_switch] = ACTIONS(392), - [anon_sym_case] = ACTIONS(394), - [anon_sym_default] = ACTIONS(396), - [anon_sym_while] = ACTIONS(398), - [anon_sym_do] = ACTIONS(400), - [anon_sym_for] = ACTIONS(402), - [anon_sym_return] = ACTIONS(404), - [anon_sym_break] = ACTIONS(406), - [anon_sym_continue] = ACTIONS(408), - [anon_sym_goto] = ACTIONS(410), - [anon_sym___try] = ACTIONS(412), - [anon_sym___leave] = ACTIONS(414), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [anon_sym___alignof__] = ACTIONS(89), - [anon_sym___alignof] = ACTIONS(89), - [anon_sym__alignof] = ACTIONS(89), - [anon_sym_alignof] = ACTIONS(89), - [anon_sym__Alignof] = ACTIONS(89), - [anon_sym_offsetof] = ACTIONS(91), - [anon_sym__Generic] = ACTIONS(93), - [anon_sym_asm] = ACTIONS(95), - [anon_sym___asm__] = ACTIONS(95), - [sym_number_literal] = ACTIONS(163), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(165), - [sym_false] = ACTIONS(165), - [anon_sym_NULL] = ACTIONS(105), - [anon_sym_nullptr] = ACTIONS(105), + [anon_sym___init] = ACTIONS(43), + [anon_sym___exit] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_RBRACE] = ACTIONS(421), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_const] = ACTIONS(53), + [anon_sym_constexpr] = ACTIONS(53), + [anon_sym_volatile] = ACTIONS(53), + [anon_sym_restrict] = ACTIONS(53), + [anon_sym___restrict__] = ACTIONS(53), + [anon_sym__Atomic] = ACTIONS(53), + [anon_sym__Noreturn] = ACTIONS(53), + [anon_sym_noreturn] = ACTIONS(53), + [anon_sym_alignas] = ACTIONS(55), + [anon_sym__Alignas] = ACTIONS(55), + [sym_primitive_type] = ACTIONS(57), + [anon_sym_enum] = ACTIONS(59), + [anon_sym_struct] = ACTIONS(61), + [anon_sym_union] = ACTIONS(63), + [anon_sym_if] = ACTIONS(395), + [anon_sym_switch] = ACTIONS(397), + [anon_sym_case] = ACTIONS(399), + [anon_sym_default] = ACTIONS(401), + [anon_sym_while] = ACTIONS(403), + [anon_sym_do] = ACTIONS(405), + [anon_sym_for] = ACTIONS(407), + [anon_sym_return] = ACTIONS(409), + [anon_sym_break] = ACTIONS(411), + [anon_sym_continue] = ACTIONS(413), + [anon_sym_goto] = ACTIONS(415), + [anon_sym___try] = ACTIONS(417), + [anon_sym___leave] = ACTIONS(419), + [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(87), + [anon_sym_sizeof] = ACTIONS(89), + [anon_sym___alignof__] = ACTIONS(91), + [anon_sym___alignof] = ACTIONS(91), + [anon_sym__alignof] = ACTIONS(91), + [anon_sym_alignof] = ACTIONS(91), + [anon_sym__Alignof] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(93), + [anon_sym__Generic] = ACTIONS(95), + [anon_sym_asm] = ACTIONS(97), + [anon_sym___asm__] = ACTIONS(97), + [sym_number_literal] = ACTIONS(165), + [anon_sym_L_SQUOTE] = ACTIONS(101), + [anon_sym_u_SQUOTE] = ACTIONS(101), + [anon_sym_U_SQUOTE] = ACTIONS(101), + [anon_sym_u8_SQUOTE] = ACTIONS(101), + [anon_sym_SQUOTE] = ACTIONS(101), + [anon_sym_L_DQUOTE] = ACTIONS(103), + [anon_sym_u_DQUOTE] = ACTIONS(103), + [anon_sym_U_DQUOTE] = ACTIONS(103), + [anon_sym_u8_DQUOTE] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_true] = ACTIONS(167), + [sym_false] = ACTIONS(167), + [anon_sym_NULL] = ACTIONS(107), + [anon_sym_nullptr] = ACTIONS(107), [sym_comment] = ACTIONS(3), }, [25] = { - [sym__block_item] = STATE(25), - [sym_preproc_include] = STATE(25), - [sym_preproc_def] = STATE(25), - [sym_preproc_function_def] = STATE(25), - [sym_preproc_call] = STATE(25), - [sym_preproc_if] = STATE(25), - [sym_preproc_ifdef] = STATE(25), - [sym_function_definition] = STATE(25), - [sym__old_style_function_definition] = STATE(266), - [sym_declaration] = STATE(25), - [sym_type_definition] = STATE(25), - [sym__declaration_modifiers] = STATE(697), - [sym__declaration_specifiers] = STATE(1124), - [sym_linkage_specification] = STATE(25), - [sym_attribute_specifier] = STATE(697), - [sym_attribute_declaration] = STATE(405), - [sym_ms_declspec_modifier] = STATE(697), - [sym_ms_call_modifier] = STATE(680), - [sym_compound_statement] = STATE(174), - [sym_storage_class_specifier] = STATE(697), - [sym_type_qualifier] = STATE(697), - [sym_alignas_qualifier] = STATE(703), - [sym_type_specifier] = STATE(802), - [sym_sized_type_specifier] = STATE(746), - [sym_enum_specifier] = STATE(746), - [sym_struct_specifier] = STATE(746), - [sym_union_specifier] = STATE(746), - [sym_attributed_statement] = STATE(267), - [sym_statement] = STATE(25), - [sym_labeled_statement] = STATE(174), - [sym_expression_statement] = STATE(174), - [sym_if_statement] = STATE(174), - [sym_switch_statement] = STATE(174), - [sym_case_statement] = STATE(174), - [sym_while_statement] = STATE(174), - [sym_do_statement] = STATE(174), - [sym_for_statement] = STATE(174), - [sym_return_statement] = STATE(174), - [sym_break_statement] = STATE(174), - [sym_continue_statement] = STATE(174), - [sym_goto_statement] = STATE(174), - [sym_seh_try_statement] = STATE(174), - [sym_seh_leave_statement] = STATE(174), - [sym_expression] = STATE(1031), - [sym__string] = STATE(663), - [sym_comma_expression] = STATE(1792), - [sym_conditional_expression] = STATE(663), - [sym_assignment_expression] = STATE(663), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(663), - [sym_binary_expression] = STATE(663), - [sym_update_expression] = STATE(663), - [sym_cast_expression] = STATE(663), - [sym_sizeof_expression] = STATE(663), - [sym_alignof_expression] = STATE(663), - [sym_offsetof_expression] = STATE(663), - [sym_generic_expression] = STATE(663), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(663), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(663), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(663), - [sym_concatenated_string] = STATE(663), - [sym_string_literal] = STATE(659), - [sym_null] = STATE(663), - [sym__empty_declaration] = STATE(25), - [sym_macro_type_specifier] = STATE(746), - [aux_sym_preproc_if_repeat1] = STATE(25), - [aux_sym__declaration_specifiers_repeat1] = STATE(697), - [aux_sym_attributed_declarator_repeat1] = STATE(373), - [aux_sym_sized_type_specifier_repeat1] = STATE(747), - [sym_identifier] = ACTIONS(418), - [aux_sym_preproc_include_token1] = ACTIONS(421), - [aux_sym_preproc_def_token1] = ACTIONS(424), - [aux_sym_preproc_if_token1] = ACTIONS(427), - [aux_sym_preproc_if_token2] = ACTIONS(217), - [aux_sym_preproc_ifdef_token1] = ACTIONS(430), - [aux_sym_preproc_ifdef_token2] = ACTIONS(430), - [sym_preproc_directive] = ACTIONS(433), - [anon_sym_LPAREN2] = ACTIONS(225), - [anon_sym_BANG] = ACTIONS(228), - [anon_sym_TILDE] = ACTIONS(228), - [anon_sym_DASH] = ACTIONS(231), - [anon_sym_PLUS] = ACTIONS(231), - [anon_sym_STAR] = ACTIONS(234), - [anon_sym_AMP] = ACTIONS(234), - [anon_sym_SEMI] = ACTIONS(436), - [anon_sym___extension__] = ACTIONS(439), - [anon_sym_typedef] = ACTIONS(442), - [anon_sym_extern] = ACTIONS(445), - [anon_sym___attribute__] = ACTIONS(249), - [anon_sym___scanf] = ACTIONS(252), - [anon_sym___printf] = ACTIONS(252), - [anon_sym___read_mostly] = ACTIONS(255), - [anon_sym___must_hold] = ACTIONS(249), - [anon_sym___ro_after_init] = ACTIONS(255), - [anon_sym___init] = ACTIONS(255), - [anon_sym_LBRACK_LBRACK] = ACTIONS(258), - [anon_sym___declspec] = ACTIONS(261), - [anon_sym___cdecl] = ACTIONS(264), - [anon_sym___clrcall] = ACTIONS(264), - [anon_sym___stdcall] = ACTIONS(264), - [anon_sym___fastcall] = ACTIONS(264), - [anon_sym___thiscall] = ACTIONS(264), - [anon_sym___vectorcall] = ACTIONS(264), - [anon_sym_LBRACE] = ACTIONS(448), - [anon_sym_signed] = ACTIONS(270), - [anon_sym_unsigned] = ACTIONS(270), - [anon_sym_long] = ACTIONS(270), - [anon_sym_short] = ACTIONS(270), - [anon_sym_static] = ACTIONS(273), - [anon_sym_auto] = ACTIONS(273), - [anon_sym_register] = ACTIONS(273), - [anon_sym_inline] = ACTIONS(273), - [anon_sym___inline] = ACTIONS(273), - [anon_sym___inline__] = ACTIONS(273), - [anon_sym___forceinline] = ACTIONS(273), - [anon_sym_thread_local] = ACTIONS(273), - [anon_sym___thread] = ACTIONS(273), - [anon_sym_const] = ACTIONS(276), - [anon_sym_constexpr] = ACTIONS(276), - [anon_sym_volatile] = ACTIONS(276), - [anon_sym_restrict] = ACTIONS(276), - [anon_sym___restrict__] = ACTIONS(276), - [anon_sym__Atomic] = ACTIONS(276), - [anon_sym__Noreturn] = ACTIONS(276), - [anon_sym_noreturn] = ACTIONS(276), - [anon_sym_alignas] = ACTIONS(279), - [anon_sym__Alignas] = ACTIONS(279), - [sym_primitive_type] = ACTIONS(282), - [anon_sym_enum] = ACTIONS(285), - [anon_sym_struct] = ACTIONS(288), - [anon_sym_union] = ACTIONS(291), - [anon_sym_if] = ACTIONS(451), - [anon_sym_switch] = ACTIONS(454), - [anon_sym_case] = ACTIONS(457), - [anon_sym_default] = ACTIONS(460), - [anon_sym_while] = ACTIONS(463), - [anon_sym_do] = ACTIONS(466), - [anon_sym_for] = ACTIONS(469), - [anon_sym_return] = ACTIONS(472), - [anon_sym_break] = ACTIONS(475), - [anon_sym_continue] = ACTIONS(478), - [anon_sym_goto] = ACTIONS(481), - [anon_sym___try] = ACTIONS(484), - [anon_sym___leave] = ACTIONS(487), - [anon_sym_DASH_DASH] = ACTIONS(333), - [anon_sym_PLUS_PLUS] = ACTIONS(333), - [anon_sym_sizeof] = ACTIONS(336), - [anon_sym___alignof__] = ACTIONS(339), - [anon_sym___alignof] = ACTIONS(339), - [anon_sym__alignof] = ACTIONS(339), - [anon_sym_alignof] = ACTIONS(339), - [anon_sym__Alignof] = ACTIONS(339), - [anon_sym_offsetof] = ACTIONS(342), - [anon_sym__Generic] = ACTIONS(345), - [anon_sym_asm] = ACTIONS(348), - [anon_sym___asm__] = ACTIONS(348), - [sym_number_literal] = ACTIONS(351), - [anon_sym_L_SQUOTE] = ACTIONS(354), - [anon_sym_u_SQUOTE] = ACTIONS(354), - [anon_sym_U_SQUOTE] = ACTIONS(354), - [anon_sym_u8_SQUOTE] = ACTIONS(354), - [anon_sym_SQUOTE] = ACTIONS(354), - [anon_sym_L_DQUOTE] = ACTIONS(357), - [anon_sym_u_DQUOTE] = ACTIONS(357), - [anon_sym_U_DQUOTE] = ACTIONS(357), - [anon_sym_u8_DQUOTE] = ACTIONS(357), - [anon_sym_DQUOTE] = ACTIONS(357), - [sym_true] = ACTIONS(360), - [sym_false] = ACTIONS(360), - [anon_sym_NULL] = ACTIONS(363), - [anon_sym_nullptr] = ACTIONS(363), + [sym__block_item] = STATE(40), + [sym_preproc_include] = STATE(40), + [sym_preproc_def] = STATE(40), + [sym_preproc_function_def] = STATE(40), + [sym_preproc_call] = STATE(40), + [sym_preproc_if] = STATE(40), + [sym_preproc_ifdef] = STATE(40), + [sym_function_definition] = STATE(40), + [sym__old_style_function_definition] = STATE(312), + [sym_declaration] = STATE(40), + [sym_type_definition] = STATE(40), + [sym__declaration_modifiers] = STATE(805), + [sym__declaration_specifiers] = STATE(1234), + [sym_linkage_specification] = STATE(40), + [sym_attribute_specifier] = STATE(805), + [sym_attribute_declaration] = STATE(468), + [sym_ms_declspec_modifier] = STATE(805), + [sym_macro_modifier] = STATE(788), + [sym_ms_call_modifier] = STATE(627), + [sym_compound_statement] = STATE(290), + [sym_storage_class_specifier] = STATE(805), + [sym_type_qualifier] = STATE(805), + [sym_alignas_qualifier] = STATE(799), + [sym_type_specifier] = STATE(899), + [sym_sized_type_specifier] = STATE(873), + [sym_enum_specifier] = STATE(873), + [sym_struct_specifier] = STATE(873), + [sym_union_specifier] = STATE(873), + [sym_attributed_statement] = STATE(306), + [sym_statement] = STATE(40), + [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_seh_try_statement] = STATE(290), + [sym_seh_leave_statement] = STATE(290), + [sym_expression] = STATE(1167), + [sym__string] = STATE(758), + [sym_comma_expression] = STATE(2207), + [sym_conditional_expression] = STATE(758), + [sym_assignment_expression] = STATE(758), + [sym_pointer_expression] = STATE(944), + [sym_unary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_cast_expression] = STATE(758), + [sym_sizeof_expression] = STATE(758), + [sym_alignof_expression] = STATE(758), + [sym_offsetof_expression] = STATE(758), + [sym_generic_expression] = STATE(758), + [sym_subscript_expression] = STATE(944), + [sym_call_expression] = STATE(944), + [sym_gnu_asm_expression] = STATE(758), + [sym_field_expression] = STATE(944), + [sym_compound_literal_expression] = STATE(758), + [sym_parenthesized_expression] = STATE(944), + [sym_char_literal] = STATE(758), + [sym_concatenated_string] = STATE(758), + [sym_string_literal] = STATE(671), + [sym_null] = STATE(758), + [sym__empty_declaration] = STATE(40), + [sym_macro_type_specifier] = STATE(873), + [aux_sym_preproc_if_repeat1] = STATE(40), + [aux_sym__declaration_specifiers_repeat1] = STATE(805), + [aux_sym_attributed_declarator_repeat1] = STATE(428), + [aux_sym_sized_type_specifier_repeat1] = STATE(890), + [sym_identifier] = ACTIONS(371), + [aux_sym_preproc_include_token1] = ACTIONS(373), + [aux_sym_preproc_def_token1] = ACTIONS(375), + [aux_sym_preproc_if_token1] = ACTIONS(377), + [aux_sym_preproc_ifdef_token1] = ACTIONS(379), + [aux_sym_preproc_ifdef_token2] = ACTIONS(379), + [sym_preproc_directive] = ACTIONS(381), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(383), + [anon_sym___extension__] = ACTIONS(385), + [anon_sym_typedef] = ACTIONS(387), + [anon_sym_extern] = ACTIONS(389), + [anon_sym___attribute__] = ACTIONS(33), + [anon_sym___scanf] = ACTIONS(35), + [anon_sym___printf] = ACTIONS(35), + [anon_sym___read_mostly] = ACTIONS(37), + [anon_sym___must_hold] = ACTIONS(33), + [anon_sym___ro_after_init] = ACTIONS(37), + [anon_sym___noreturn] = ACTIONS(37), + [anon_sym___cold] = ACTIONS(37), + [anon_sym_LBRACK_LBRACK] = ACTIONS(39), + [anon_sym___declspec] = ACTIONS(41), + [anon_sym___init] = ACTIONS(43), + [anon_sym___exit] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_RBRACE] = ACTIONS(423), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_const] = ACTIONS(53), + [anon_sym_constexpr] = ACTIONS(53), + [anon_sym_volatile] = ACTIONS(53), + [anon_sym_restrict] = ACTIONS(53), + [anon_sym___restrict__] = ACTIONS(53), + [anon_sym__Atomic] = ACTIONS(53), + [anon_sym__Noreturn] = ACTIONS(53), + [anon_sym_noreturn] = ACTIONS(53), + [anon_sym_alignas] = ACTIONS(55), + [anon_sym__Alignas] = ACTIONS(55), + [sym_primitive_type] = ACTIONS(57), + [anon_sym_enum] = ACTIONS(59), + [anon_sym_struct] = ACTIONS(61), + [anon_sym_union] = ACTIONS(63), + [anon_sym_if] = ACTIONS(395), + [anon_sym_switch] = ACTIONS(397), + [anon_sym_case] = ACTIONS(399), + [anon_sym_default] = ACTIONS(401), + [anon_sym_while] = ACTIONS(403), + [anon_sym_do] = ACTIONS(405), + [anon_sym_for] = ACTIONS(407), + [anon_sym_return] = ACTIONS(409), + [anon_sym_break] = ACTIONS(411), + [anon_sym_continue] = ACTIONS(413), + [anon_sym_goto] = ACTIONS(415), + [anon_sym___try] = ACTIONS(417), + [anon_sym___leave] = ACTIONS(419), + [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(87), + [anon_sym_sizeof] = ACTIONS(89), + [anon_sym___alignof__] = ACTIONS(91), + [anon_sym___alignof] = ACTIONS(91), + [anon_sym__alignof] = ACTIONS(91), + [anon_sym_alignof] = ACTIONS(91), + [anon_sym__Alignof] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(93), + [anon_sym__Generic] = ACTIONS(95), + [anon_sym_asm] = ACTIONS(97), + [anon_sym___asm__] = ACTIONS(97), + [sym_number_literal] = ACTIONS(165), + [anon_sym_L_SQUOTE] = ACTIONS(101), + [anon_sym_u_SQUOTE] = ACTIONS(101), + [anon_sym_U_SQUOTE] = ACTIONS(101), + [anon_sym_u8_SQUOTE] = ACTIONS(101), + [anon_sym_SQUOTE] = ACTIONS(101), + [anon_sym_L_DQUOTE] = ACTIONS(103), + [anon_sym_u_DQUOTE] = ACTIONS(103), + [anon_sym_U_DQUOTE] = ACTIONS(103), + [anon_sym_u8_DQUOTE] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_true] = ACTIONS(167), + [sym_false] = ACTIONS(167), + [anon_sym_NULL] = ACTIONS(107), + [anon_sym_nullptr] = ACTIONS(107), [sym_comment] = ACTIONS(3), }, [26] = { - [sym__block_item] = STATE(35), - [sym_preproc_include] = STATE(35), - [sym_preproc_def] = STATE(35), - [sym_preproc_function_def] = STATE(35), - [sym_preproc_call] = STATE(35), - [sym_preproc_if] = STATE(35), - [sym_preproc_ifdef] = STATE(35), - [sym_function_definition] = STATE(35), - [sym__old_style_function_definition] = STATE(279), - [sym_declaration] = STATE(35), - [sym_type_definition] = STATE(35), - [sym__declaration_modifiers] = STATE(697), - [sym__declaration_specifiers] = STATE(1121), - [sym_linkage_specification] = STATE(35), - [sym_attribute_specifier] = STATE(697), - [sym_attribute_declaration] = STATE(405), - [sym_ms_declspec_modifier] = STATE(697), - [sym_ms_call_modifier] = STATE(693), - [sym_compound_statement] = STATE(148), - [sym_storage_class_specifier] = STATE(697), - [sym_type_qualifier] = STATE(697), - [sym_alignas_qualifier] = STATE(703), - [sym_type_specifier] = STATE(784), - [sym_sized_type_specifier] = STATE(746), - [sym_enum_specifier] = STATE(746), - [sym_struct_specifier] = STATE(746), - [sym_union_specifier] = STATE(746), - [sym_attributed_statement] = STATE(280), - [sym_statement] = STATE(35), - [sym_labeled_statement] = STATE(148), - [sym_expression_statement] = STATE(148), - [sym_if_statement] = STATE(148), - [sym_switch_statement] = STATE(148), - [sym_case_statement] = STATE(148), - [sym_while_statement] = STATE(148), - [sym_do_statement] = STATE(148), - [sym_for_statement] = STATE(148), - [sym_return_statement] = STATE(148), - [sym_break_statement] = STATE(148), - [sym_continue_statement] = STATE(148), - [sym_goto_statement] = STATE(148), - [sym_seh_try_statement] = STATE(148), - [sym_seh_leave_statement] = STATE(148), - [sym_expression] = STATE(1033), - [sym__string] = STATE(663), - [sym_comma_expression] = STATE(1818), - [sym_conditional_expression] = STATE(663), - [sym_assignment_expression] = STATE(663), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(663), - [sym_binary_expression] = STATE(663), - [sym_update_expression] = STATE(663), - [sym_cast_expression] = STATE(663), - [sym_sizeof_expression] = STATE(663), - [sym_alignof_expression] = STATE(663), - [sym_offsetof_expression] = STATE(663), - [sym_generic_expression] = STATE(663), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(663), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(663), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(663), - [sym_concatenated_string] = STATE(663), - [sym_string_literal] = STATE(659), - [sym_null] = STATE(663), - [sym__empty_declaration] = STATE(35), - [sym_macro_type_specifier] = STATE(746), - [aux_sym_preproc_if_repeat1] = STATE(35), - [aux_sym__declaration_specifiers_repeat1] = STATE(697), - [aux_sym_attributed_declarator_repeat1] = STATE(375), - [aux_sym_sized_type_specifier_repeat1] = STATE(747), - [sym_identifier] = ACTIONS(366), - [aux_sym_preproc_include_token1] = ACTIONS(368), - [aux_sym_preproc_def_token1] = ACTIONS(370), - [aux_sym_preproc_if_token1] = ACTIONS(372), - [aux_sym_preproc_ifdef_token1] = ACTIONS(374), - [aux_sym_preproc_ifdef_token2] = ACTIONS(374), - [sym_preproc_directive] = ACTIONS(376), + [sym__block_item] = STATE(40), + [sym_preproc_include] = STATE(40), + [sym_preproc_def] = STATE(40), + [sym_preproc_function_def] = STATE(40), + [sym_preproc_call] = STATE(40), + [sym_preproc_if] = STATE(40), + [sym_preproc_ifdef] = STATE(40), + [sym_function_definition] = STATE(40), + [sym__old_style_function_definition] = STATE(312), + [sym_declaration] = STATE(40), + [sym_type_definition] = STATE(40), + [sym__declaration_modifiers] = STATE(805), + [sym__declaration_specifiers] = STATE(1234), + [sym_linkage_specification] = STATE(40), + [sym_attribute_specifier] = STATE(805), + [sym_attribute_declaration] = STATE(468), + [sym_ms_declspec_modifier] = STATE(805), + [sym_macro_modifier] = STATE(788), + [sym_ms_call_modifier] = STATE(627), + [sym_compound_statement] = STATE(290), + [sym_storage_class_specifier] = STATE(805), + [sym_type_qualifier] = STATE(805), + [sym_alignas_qualifier] = STATE(799), + [sym_type_specifier] = STATE(899), + [sym_sized_type_specifier] = STATE(873), + [sym_enum_specifier] = STATE(873), + [sym_struct_specifier] = STATE(873), + [sym_union_specifier] = STATE(873), + [sym_attributed_statement] = STATE(306), + [sym_statement] = STATE(40), + [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_seh_try_statement] = STATE(290), + [sym_seh_leave_statement] = STATE(290), + [sym_expression] = STATE(1167), + [sym__string] = STATE(758), + [sym_comma_expression] = STATE(2207), + [sym_conditional_expression] = STATE(758), + [sym_assignment_expression] = STATE(758), + [sym_pointer_expression] = STATE(944), + [sym_unary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_cast_expression] = STATE(758), + [sym_sizeof_expression] = STATE(758), + [sym_alignof_expression] = STATE(758), + [sym_offsetof_expression] = STATE(758), + [sym_generic_expression] = STATE(758), + [sym_subscript_expression] = STATE(944), + [sym_call_expression] = STATE(944), + [sym_gnu_asm_expression] = STATE(758), + [sym_field_expression] = STATE(944), + [sym_compound_literal_expression] = STATE(758), + [sym_parenthesized_expression] = STATE(944), + [sym_char_literal] = STATE(758), + [sym_concatenated_string] = STATE(758), + [sym_string_literal] = STATE(671), + [sym_null] = STATE(758), + [sym__empty_declaration] = STATE(40), + [sym_macro_type_specifier] = STATE(873), + [aux_sym_preproc_if_repeat1] = STATE(40), + [aux_sym__declaration_specifiers_repeat1] = STATE(805), + [aux_sym_attributed_declarator_repeat1] = STATE(428), + [aux_sym_sized_type_specifier_repeat1] = STATE(890), + [sym_identifier] = ACTIONS(371), + [aux_sym_preproc_include_token1] = ACTIONS(373), + [aux_sym_preproc_def_token1] = ACTIONS(375), + [aux_sym_preproc_if_token1] = ACTIONS(377), + [aux_sym_preproc_ifdef_token1] = ACTIONS(379), + [aux_sym_preproc_ifdef_token2] = ACTIONS(379), + [sym_preproc_directive] = ACTIONS(381), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -16543,177 +17281,181 @@ 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(378), - [anon_sym___extension__] = ACTIONS(380), - [anon_sym_typedef] = ACTIONS(382), - [anon_sym_extern] = ACTIONS(384), + [anon_sym_SEMI] = ACTIONS(383), + [anon_sym___extension__] = ACTIONS(385), + [anon_sym_typedef] = ACTIONS(387), + [anon_sym_extern] = ACTIONS(389), [anon_sym___attribute__] = ACTIONS(33), [anon_sym___scanf] = ACTIONS(35), [anon_sym___printf] = ACTIONS(35), [anon_sym___read_mostly] = ACTIONS(37), [anon_sym___must_hold] = ACTIONS(33), [anon_sym___ro_after_init] = ACTIONS(37), - [anon_sym___init] = ACTIONS(37), + [anon_sym___noreturn] = ACTIONS(37), + [anon_sym___cold] = ACTIONS(37), [anon_sym_LBRACK_LBRACK] = ACTIONS(39), [anon_sym___declspec] = ACTIONS(41), - [anon_sym___cdecl] = ACTIONS(43), - [anon_sym___clrcall] = ACTIONS(43), - [anon_sym___stdcall] = ACTIONS(43), - [anon_sym___fastcall] = ACTIONS(43), - [anon_sym___thiscall] = ACTIONS(43), - [anon_sym___vectorcall] = ACTIONS(43), - [anon_sym_LBRACE] = ACTIONS(386), - [anon_sym_RBRACE] = ACTIONS(490), - [anon_sym_signed] = ACTIONS(47), - [anon_sym_unsigned] = ACTIONS(47), - [anon_sym_long] = ACTIONS(47), - [anon_sym_short] = ACTIONS(47), - [anon_sym_static] = ACTIONS(49), - [anon_sym_auto] = ACTIONS(49), - [anon_sym_register] = ACTIONS(49), - [anon_sym_inline] = ACTIONS(49), - [anon_sym___inline] = ACTIONS(49), - [anon_sym___inline__] = ACTIONS(49), - [anon_sym___forceinline] = ACTIONS(49), - [anon_sym_thread_local] = ACTIONS(49), - [anon_sym___thread] = ACTIONS(49), - [anon_sym_const] = ACTIONS(51), - [anon_sym_constexpr] = ACTIONS(51), - [anon_sym_volatile] = ACTIONS(51), - [anon_sym_restrict] = ACTIONS(51), - [anon_sym___restrict__] = ACTIONS(51), - [anon_sym__Atomic] = ACTIONS(51), - [anon_sym__Noreturn] = ACTIONS(51), - [anon_sym_noreturn] = ACTIONS(51), - [anon_sym_alignas] = ACTIONS(53), - [anon_sym__Alignas] = ACTIONS(53), - [sym_primitive_type] = ACTIONS(55), - [anon_sym_enum] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [anon_sym_if] = ACTIONS(390), - [anon_sym_switch] = ACTIONS(392), - [anon_sym_case] = ACTIONS(394), - [anon_sym_default] = ACTIONS(396), - [anon_sym_while] = ACTIONS(398), - [anon_sym_do] = ACTIONS(400), - [anon_sym_for] = ACTIONS(402), - [anon_sym_return] = ACTIONS(404), - [anon_sym_break] = ACTIONS(406), - [anon_sym_continue] = ACTIONS(408), - [anon_sym_goto] = ACTIONS(410), - [anon_sym___try] = ACTIONS(412), - [anon_sym___leave] = ACTIONS(414), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [anon_sym___alignof__] = ACTIONS(89), - [anon_sym___alignof] = ACTIONS(89), - [anon_sym__alignof] = ACTIONS(89), - [anon_sym_alignof] = ACTIONS(89), - [anon_sym__Alignof] = ACTIONS(89), - [anon_sym_offsetof] = ACTIONS(91), - [anon_sym__Generic] = ACTIONS(93), - [anon_sym_asm] = ACTIONS(95), - [anon_sym___asm__] = ACTIONS(95), - [sym_number_literal] = ACTIONS(163), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(165), - [sym_false] = ACTIONS(165), - [anon_sym_NULL] = ACTIONS(105), - [anon_sym_nullptr] = ACTIONS(105), + [anon_sym___init] = ACTIONS(43), + [anon_sym___exit] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_RBRACE] = ACTIONS(425), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_const] = ACTIONS(53), + [anon_sym_constexpr] = ACTIONS(53), + [anon_sym_volatile] = ACTIONS(53), + [anon_sym_restrict] = ACTIONS(53), + [anon_sym___restrict__] = ACTIONS(53), + [anon_sym__Atomic] = ACTIONS(53), + [anon_sym__Noreturn] = ACTIONS(53), + [anon_sym_noreturn] = ACTIONS(53), + [anon_sym_alignas] = ACTIONS(55), + [anon_sym__Alignas] = ACTIONS(55), + [sym_primitive_type] = ACTIONS(57), + [anon_sym_enum] = ACTIONS(59), + [anon_sym_struct] = ACTIONS(61), + [anon_sym_union] = ACTIONS(63), + [anon_sym_if] = ACTIONS(395), + [anon_sym_switch] = ACTIONS(397), + [anon_sym_case] = ACTIONS(399), + [anon_sym_default] = ACTIONS(401), + [anon_sym_while] = ACTIONS(403), + [anon_sym_do] = ACTIONS(405), + [anon_sym_for] = ACTIONS(407), + [anon_sym_return] = ACTIONS(409), + [anon_sym_break] = ACTIONS(411), + [anon_sym_continue] = ACTIONS(413), + [anon_sym_goto] = ACTIONS(415), + [anon_sym___try] = ACTIONS(417), + [anon_sym___leave] = ACTIONS(419), + [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(87), + [anon_sym_sizeof] = ACTIONS(89), + [anon_sym___alignof__] = ACTIONS(91), + [anon_sym___alignof] = ACTIONS(91), + [anon_sym__alignof] = ACTIONS(91), + [anon_sym_alignof] = ACTIONS(91), + [anon_sym__Alignof] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(93), + [anon_sym__Generic] = ACTIONS(95), + [anon_sym_asm] = ACTIONS(97), + [anon_sym___asm__] = ACTIONS(97), + [sym_number_literal] = ACTIONS(165), + [anon_sym_L_SQUOTE] = ACTIONS(101), + [anon_sym_u_SQUOTE] = ACTIONS(101), + [anon_sym_U_SQUOTE] = ACTIONS(101), + [anon_sym_u8_SQUOTE] = ACTIONS(101), + [anon_sym_SQUOTE] = ACTIONS(101), + [anon_sym_L_DQUOTE] = ACTIONS(103), + [anon_sym_u_DQUOTE] = ACTIONS(103), + [anon_sym_U_DQUOTE] = ACTIONS(103), + [anon_sym_u8_DQUOTE] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_true] = ACTIONS(167), + [sym_false] = ACTIONS(167), + [anon_sym_NULL] = ACTIONS(107), + [anon_sym_nullptr] = ACTIONS(107), [sym_comment] = ACTIONS(3), }, [27] = { - [sym__block_item] = STATE(39), - [sym_preproc_include] = STATE(39), - [sym_preproc_def] = STATE(39), - [sym_preproc_function_def] = STATE(39), - [sym_preproc_call] = STATE(39), - [sym_preproc_if] = STATE(39), - [sym_preproc_ifdef] = STATE(39), - [sym_function_definition] = STATE(39), - [sym__old_style_function_definition] = STATE(279), - [sym_declaration] = STATE(39), - [sym_type_definition] = STATE(39), - [sym__declaration_modifiers] = STATE(697), - [sym__declaration_specifiers] = STATE(1121), - [sym_linkage_specification] = STATE(39), - [sym_attribute_specifier] = STATE(697), - [sym_attribute_declaration] = STATE(405), - [sym_ms_declspec_modifier] = STATE(697), - [sym_ms_call_modifier] = STATE(693), - [sym_compound_statement] = STATE(148), - [sym_storage_class_specifier] = STATE(697), - [sym_type_qualifier] = STATE(697), - [sym_alignas_qualifier] = STATE(703), - [sym_type_specifier] = STATE(784), - [sym_sized_type_specifier] = STATE(746), - [sym_enum_specifier] = STATE(746), - [sym_struct_specifier] = STATE(746), - [sym_union_specifier] = STATE(746), - [sym_attributed_statement] = STATE(280), - [sym_statement] = STATE(39), - [sym_labeled_statement] = STATE(148), - [sym_expression_statement] = STATE(148), - [sym_if_statement] = STATE(148), - [sym_switch_statement] = STATE(148), - [sym_case_statement] = STATE(148), - [sym_while_statement] = STATE(148), - [sym_do_statement] = STATE(148), - [sym_for_statement] = STATE(148), - [sym_return_statement] = STATE(148), - [sym_break_statement] = STATE(148), - [sym_continue_statement] = STATE(148), - [sym_goto_statement] = STATE(148), - [sym_seh_try_statement] = STATE(148), - [sym_seh_leave_statement] = STATE(148), - [sym_expression] = STATE(1033), - [sym__string] = STATE(663), - [sym_comma_expression] = STATE(1818), - [sym_conditional_expression] = STATE(663), - [sym_assignment_expression] = STATE(663), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(663), - [sym_binary_expression] = STATE(663), - [sym_update_expression] = STATE(663), - [sym_cast_expression] = STATE(663), - [sym_sizeof_expression] = STATE(663), - [sym_alignof_expression] = STATE(663), - [sym_offsetof_expression] = STATE(663), - [sym_generic_expression] = STATE(663), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(663), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(663), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(663), - [sym_concatenated_string] = STATE(663), - [sym_string_literal] = STATE(659), - [sym_null] = STATE(663), - [sym__empty_declaration] = STATE(39), - [sym_macro_type_specifier] = STATE(746), - [aux_sym_preproc_if_repeat1] = STATE(39), - [aux_sym__declaration_specifiers_repeat1] = STATE(697), - [aux_sym_attributed_declarator_repeat1] = STATE(375), - [aux_sym_sized_type_specifier_repeat1] = STATE(747), - [sym_identifier] = ACTIONS(366), - [aux_sym_preproc_include_token1] = ACTIONS(368), - [aux_sym_preproc_def_token1] = ACTIONS(370), - [aux_sym_preproc_if_token1] = ACTIONS(372), - [aux_sym_preproc_ifdef_token1] = ACTIONS(374), - [aux_sym_preproc_ifdef_token2] = ACTIONS(374), - [sym_preproc_directive] = ACTIONS(376), + [sym__block_item] = STATE(33), + [sym_preproc_include] = STATE(33), + [sym_preproc_def] = STATE(33), + [sym_preproc_function_def] = STATE(33), + [sym_preproc_call] = STATE(33), + [sym_preproc_if] = STATE(33), + [sym_preproc_ifdef] = STATE(33), + [sym_function_definition] = STATE(33), + [sym__old_style_function_definition] = STATE(312), + [sym_declaration] = STATE(33), + [sym_type_definition] = STATE(33), + [sym__declaration_modifiers] = STATE(805), + [sym__declaration_specifiers] = STATE(1234), + [sym_linkage_specification] = STATE(33), + [sym_attribute_specifier] = STATE(805), + [sym_attribute_declaration] = STATE(468), + [sym_ms_declspec_modifier] = STATE(805), + [sym_macro_modifier] = STATE(788), + [sym_ms_call_modifier] = STATE(627), + [sym_compound_statement] = STATE(290), + [sym_storage_class_specifier] = STATE(805), + [sym_type_qualifier] = STATE(805), + [sym_alignas_qualifier] = STATE(799), + [sym_type_specifier] = STATE(899), + [sym_sized_type_specifier] = STATE(873), + [sym_enum_specifier] = STATE(873), + [sym_struct_specifier] = STATE(873), + [sym_union_specifier] = STATE(873), + [sym_attributed_statement] = STATE(306), + [sym_statement] = STATE(33), + [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_seh_try_statement] = STATE(290), + [sym_seh_leave_statement] = STATE(290), + [sym_expression] = STATE(1167), + [sym__string] = STATE(758), + [sym_comma_expression] = STATE(2207), + [sym_conditional_expression] = STATE(758), + [sym_assignment_expression] = STATE(758), + [sym_pointer_expression] = STATE(944), + [sym_unary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_cast_expression] = STATE(758), + [sym_sizeof_expression] = STATE(758), + [sym_alignof_expression] = STATE(758), + [sym_offsetof_expression] = STATE(758), + [sym_generic_expression] = STATE(758), + [sym_subscript_expression] = STATE(944), + [sym_call_expression] = STATE(944), + [sym_gnu_asm_expression] = STATE(758), + [sym_field_expression] = STATE(944), + [sym_compound_literal_expression] = STATE(758), + [sym_parenthesized_expression] = STATE(944), + [sym_char_literal] = STATE(758), + [sym_concatenated_string] = STATE(758), + [sym_string_literal] = STATE(671), + [sym_null] = STATE(758), + [sym__empty_declaration] = STATE(33), + [sym_macro_type_specifier] = STATE(873), + [aux_sym_preproc_if_repeat1] = STATE(33), + [aux_sym__declaration_specifiers_repeat1] = STATE(805), + [aux_sym_attributed_declarator_repeat1] = STATE(428), + [aux_sym_sized_type_specifier_repeat1] = STATE(890), + [sym_identifier] = ACTIONS(371), + [aux_sym_preproc_include_token1] = ACTIONS(373), + [aux_sym_preproc_def_token1] = ACTIONS(375), + [aux_sym_preproc_if_token1] = ACTIONS(377), + [aux_sym_preproc_ifdef_token1] = ACTIONS(379), + [aux_sym_preproc_ifdef_token2] = ACTIONS(379), + [sym_preproc_directive] = ACTIONS(381), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -16721,177 +17463,181 @@ 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(378), - [anon_sym___extension__] = ACTIONS(380), - [anon_sym_typedef] = ACTIONS(382), - [anon_sym_extern] = ACTIONS(384), + [anon_sym_SEMI] = ACTIONS(383), + [anon_sym___extension__] = ACTIONS(385), + [anon_sym_typedef] = ACTIONS(387), + [anon_sym_extern] = ACTIONS(389), [anon_sym___attribute__] = ACTIONS(33), [anon_sym___scanf] = ACTIONS(35), [anon_sym___printf] = ACTIONS(35), [anon_sym___read_mostly] = ACTIONS(37), [anon_sym___must_hold] = ACTIONS(33), [anon_sym___ro_after_init] = ACTIONS(37), - [anon_sym___init] = ACTIONS(37), + [anon_sym___noreturn] = ACTIONS(37), + [anon_sym___cold] = ACTIONS(37), [anon_sym_LBRACK_LBRACK] = ACTIONS(39), [anon_sym___declspec] = ACTIONS(41), - [anon_sym___cdecl] = ACTIONS(43), - [anon_sym___clrcall] = ACTIONS(43), - [anon_sym___stdcall] = ACTIONS(43), - [anon_sym___fastcall] = ACTIONS(43), - [anon_sym___thiscall] = ACTIONS(43), - [anon_sym___vectorcall] = ACTIONS(43), - [anon_sym_LBRACE] = ACTIONS(386), - [anon_sym_RBRACE] = ACTIONS(492), - [anon_sym_signed] = ACTIONS(47), - [anon_sym_unsigned] = ACTIONS(47), - [anon_sym_long] = ACTIONS(47), - [anon_sym_short] = ACTIONS(47), - [anon_sym_static] = ACTIONS(49), - [anon_sym_auto] = ACTIONS(49), - [anon_sym_register] = ACTIONS(49), - [anon_sym_inline] = ACTIONS(49), - [anon_sym___inline] = ACTIONS(49), - [anon_sym___inline__] = ACTIONS(49), - [anon_sym___forceinline] = ACTIONS(49), - [anon_sym_thread_local] = ACTIONS(49), - [anon_sym___thread] = ACTIONS(49), - [anon_sym_const] = ACTIONS(51), - [anon_sym_constexpr] = ACTIONS(51), - [anon_sym_volatile] = ACTIONS(51), - [anon_sym_restrict] = ACTIONS(51), - [anon_sym___restrict__] = ACTIONS(51), - [anon_sym__Atomic] = ACTIONS(51), - [anon_sym__Noreturn] = ACTIONS(51), - [anon_sym_noreturn] = ACTIONS(51), - [anon_sym_alignas] = ACTIONS(53), - [anon_sym__Alignas] = ACTIONS(53), - [sym_primitive_type] = ACTIONS(55), - [anon_sym_enum] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [anon_sym_if] = ACTIONS(390), - [anon_sym_switch] = ACTIONS(392), - [anon_sym_case] = ACTIONS(394), - [anon_sym_default] = ACTIONS(396), - [anon_sym_while] = ACTIONS(398), - [anon_sym_do] = ACTIONS(400), - [anon_sym_for] = ACTIONS(402), - [anon_sym_return] = ACTIONS(404), - [anon_sym_break] = ACTIONS(406), - [anon_sym_continue] = ACTIONS(408), - [anon_sym_goto] = ACTIONS(410), - [anon_sym___try] = ACTIONS(412), - [anon_sym___leave] = ACTIONS(414), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [anon_sym___alignof__] = ACTIONS(89), - [anon_sym___alignof] = ACTIONS(89), - [anon_sym__alignof] = ACTIONS(89), - [anon_sym_alignof] = ACTIONS(89), - [anon_sym__Alignof] = ACTIONS(89), - [anon_sym_offsetof] = ACTIONS(91), - [anon_sym__Generic] = ACTIONS(93), - [anon_sym_asm] = ACTIONS(95), - [anon_sym___asm__] = ACTIONS(95), - [sym_number_literal] = ACTIONS(163), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(165), - [sym_false] = ACTIONS(165), - [anon_sym_NULL] = ACTIONS(105), - [anon_sym_nullptr] = ACTIONS(105), + [anon_sym___init] = ACTIONS(43), + [anon_sym___exit] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_RBRACE] = ACTIONS(427), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_const] = ACTIONS(53), + [anon_sym_constexpr] = ACTIONS(53), + [anon_sym_volatile] = ACTIONS(53), + [anon_sym_restrict] = ACTIONS(53), + [anon_sym___restrict__] = ACTIONS(53), + [anon_sym__Atomic] = ACTIONS(53), + [anon_sym__Noreturn] = ACTIONS(53), + [anon_sym_noreturn] = ACTIONS(53), + [anon_sym_alignas] = ACTIONS(55), + [anon_sym__Alignas] = ACTIONS(55), + [sym_primitive_type] = ACTIONS(57), + [anon_sym_enum] = ACTIONS(59), + [anon_sym_struct] = ACTIONS(61), + [anon_sym_union] = ACTIONS(63), + [anon_sym_if] = ACTIONS(395), + [anon_sym_switch] = ACTIONS(397), + [anon_sym_case] = ACTIONS(399), + [anon_sym_default] = ACTIONS(401), + [anon_sym_while] = ACTIONS(403), + [anon_sym_do] = ACTIONS(405), + [anon_sym_for] = ACTIONS(407), + [anon_sym_return] = ACTIONS(409), + [anon_sym_break] = ACTIONS(411), + [anon_sym_continue] = ACTIONS(413), + [anon_sym_goto] = ACTIONS(415), + [anon_sym___try] = ACTIONS(417), + [anon_sym___leave] = ACTIONS(419), + [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(87), + [anon_sym_sizeof] = ACTIONS(89), + [anon_sym___alignof__] = ACTIONS(91), + [anon_sym___alignof] = ACTIONS(91), + [anon_sym__alignof] = ACTIONS(91), + [anon_sym_alignof] = ACTIONS(91), + [anon_sym__Alignof] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(93), + [anon_sym__Generic] = ACTIONS(95), + [anon_sym_asm] = ACTIONS(97), + [anon_sym___asm__] = ACTIONS(97), + [sym_number_literal] = ACTIONS(165), + [anon_sym_L_SQUOTE] = ACTIONS(101), + [anon_sym_u_SQUOTE] = ACTIONS(101), + [anon_sym_U_SQUOTE] = ACTIONS(101), + [anon_sym_u8_SQUOTE] = ACTIONS(101), + [anon_sym_SQUOTE] = ACTIONS(101), + [anon_sym_L_DQUOTE] = ACTIONS(103), + [anon_sym_u_DQUOTE] = ACTIONS(103), + [anon_sym_U_DQUOTE] = ACTIONS(103), + [anon_sym_u8_DQUOTE] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_true] = ACTIONS(167), + [sym_false] = ACTIONS(167), + [anon_sym_NULL] = ACTIONS(107), + [anon_sym_nullptr] = ACTIONS(107), [sym_comment] = ACTIONS(3), }, [28] = { - [sym__block_item] = STATE(23), - [sym_preproc_include] = STATE(23), - [sym_preproc_def] = STATE(23), - [sym_preproc_function_def] = STATE(23), - [sym_preproc_call] = STATE(23), - [sym_preproc_if] = STATE(23), - [sym_preproc_ifdef] = STATE(23), - [sym_function_definition] = STATE(23), - [sym__old_style_function_definition] = STATE(279), - [sym_declaration] = STATE(23), - [sym_type_definition] = STATE(23), - [sym__declaration_modifiers] = STATE(697), - [sym__declaration_specifiers] = STATE(1121), - [sym_linkage_specification] = STATE(23), - [sym_attribute_specifier] = STATE(697), - [sym_attribute_declaration] = STATE(405), - [sym_ms_declspec_modifier] = STATE(697), - [sym_ms_call_modifier] = STATE(693), - [sym_compound_statement] = STATE(148), - [sym_storage_class_specifier] = STATE(697), - [sym_type_qualifier] = STATE(697), - [sym_alignas_qualifier] = STATE(703), - [sym_type_specifier] = STATE(784), - [sym_sized_type_specifier] = STATE(746), - [sym_enum_specifier] = STATE(746), - [sym_struct_specifier] = STATE(746), - [sym_union_specifier] = STATE(746), - [sym_attributed_statement] = STATE(280), - [sym_statement] = STATE(23), - [sym_labeled_statement] = STATE(148), - [sym_expression_statement] = STATE(148), - [sym_if_statement] = STATE(148), - [sym_switch_statement] = STATE(148), - [sym_case_statement] = STATE(148), - [sym_while_statement] = STATE(148), - [sym_do_statement] = STATE(148), - [sym_for_statement] = STATE(148), - [sym_return_statement] = STATE(148), - [sym_break_statement] = STATE(148), - [sym_continue_statement] = STATE(148), - [sym_goto_statement] = STATE(148), - [sym_seh_try_statement] = STATE(148), - [sym_seh_leave_statement] = STATE(148), - [sym_expression] = STATE(1033), - [sym__string] = STATE(663), - [sym_comma_expression] = STATE(1818), - [sym_conditional_expression] = STATE(663), - [sym_assignment_expression] = STATE(663), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(663), - [sym_binary_expression] = STATE(663), - [sym_update_expression] = STATE(663), - [sym_cast_expression] = STATE(663), - [sym_sizeof_expression] = STATE(663), - [sym_alignof_expression] = STATE(663), - [sym_offsetof_expression] = STATE(663), - [sym_generic_expression] = STATE(663), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(663), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(663), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(663), - [sym_concatenated_string] = STATE(663), - [sym_string_literal] = STATE(659), - [sym_null] = STATE(663), - [sym__empty_declaration] = STATE(23), - [sym_macro_type_specifier] = STATE(746), - [aux_sym_preproc_if_repeat1] = STATE(23), - [aux_sym__declaration_specifiers_repeat1] = STATE(697), - [aux_sym_attributed_declarator_repeat1] = STATE(375), - [aux_sym_sized_type_specifier_repeat1] = STATE(747), - [sym_identifier] = ACTIONS(366), - [aux_sym_preproc_include_token1] = ACTIONS(368), - [aux_sym_preproc_def_token1] = ACTIONS(370), - [aux_sym_preproc_if_token1] = ACTIONS(372), - [aux_sym_preproc_ifdef_token1] = ACTIONS(374), - [aux_sym_preproc_ifdef_token2] = ACTIONS(374), - [sym_preproc_directive] = ACTIONS(376), + [sym__block_item] = STATE(25), + [sym_preproc_include] = STATE(25), + [sym_preproc_def] = STATE(25), + [sym_preproc_function_def] = STATE(25), + [sym_preproc_call] = STATE(25), + [sym_preproc_if] = STATE(25), + [sym_preproc_ifdef] = STATE(25), + [sym_function_definition] = STATE(25), + [sym__old_style_function_definition] = STATE(312), + [sym_declaration] = STATE(25), + [sym_type_definition] = STATE(25), + [sym__declaration_modifiers] = STATE(805), + [sym__declaration_specifiers] = STATE(1234), + [sym_linkage_specification] = STATE(25), + [sym_attribute_specifier] = STATE(805), + [sym_attribute_declaration] = STATE(468), + [sym_ms_declspec_modifier] = STATE(805), + [sym_macro_modifier] = STATE(788), + [sym_ms_call_modifier] = STATE(627), + [sym_compound_statement] = STATE(290), + [sym_storage_class_specifier] = STATE(805), + [sym_type_qualifier] = STATE(805), + [sym_alignas_qualifier] = STATE(799), + [sym_type_specifier] = STATE(899), + [sym_sized_type_specifier] = STATE(873), + [sym_enum_specifier] = STATE(873), + [sym_struct_specifier] = STATE(873), + [sym_union_specifier] = STATE(873), + [sym_attributed_statement] = STATE(306), + [sym_statement] = STATE(25), + [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_seh_try_statement] = STATE(290), + [sym_seh_leave_statement] = STATE(290), + [sym_expression] = STATE(1167), + [sym__string] = STATE(758), + [sym_comma_expression] = STATE(2207), + [sym_conditional_expression] = STATE(758), + [sym_assignment_expression] = STATE(758), + [sym_pointer_expression] = STATE(944), + [sym_unary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_cast_expression] = STATE(758), + [sym_sizeof_expression] = STATE(758), + [sym_alignof_expression] = STATE(758), + [sym_offsetof_expression] = STATE(758), + [sym_generic_expression] = STATE(758), + [sym_subscript_expression] = STATE(944), + [sym_call_expression] = STATE(944), + [sym_gnu_asm_expression] = STATE(758), + [sym_field_expression] = STATE(944), + [sym_compound_literal_expression] = STATE(758), + [sym_parenthesized_expression] = STATE(944), + [sym_char_literal] = STATE(758), + [sym_concatenated_string] = STATE(758), + [sym_string_literal] = STATE(671), + [sym_null] = STATE(758), + [sym__empty_declaration] = STATE(25), + [sym_macro_type_specifier] = STATE(873), + [aux_sym_preproc_if_repeat1] = STATE(25), + [aux_sym__declaration_specifiers_repeat1] = STATE(805), + [aux_sym_attributed_declarator_repeat1] = STATE(428), + [aux_sym_sized_type_specifier_repeat1] = STATE(890), + [sym_identifier] = ACTIONS(371), + [aux_sym_preproc_include_token1] = ACTIONS(373), + [aux_sym_preproc_def_token1] = ACTIONS(375), + [aux_sym_preproc_if_token1] = ACTIONS(377), + [aux_sym_preproc_ifdef_token1] = ACTIONS(379), + [aux_sym_preproc_ifdef_token2] = ACTIONS(379), + [sym_preproc_directive] = ACTIONS(381), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -16899,177 +17645,181 @@ 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(378), - [anon_sym___extension__] = ACTIONS(380), - [anon_sym_typedef] = ACTIONS(382), - [anon_sym_extern] = ACTIONS(384), + [anon_sym_SEMI] = ACTIONS(383), + [anon_sym___extension__] = ACTIONS(385), + [anon_sym_typedef] = ACTIONS(387), + [anon_sym_extern] = ACTIONS(389), [anon_sym___attribute__] = ACTIONS(33), [anon_sym___scanf] = ACTIONS(35), [anon_sym___printf] = ACTIONS(35), [anon_sym___read_mostly] = ACTIONS(37), [anon_sym___must_hold] = ACTIONS(33), [anon_sym___ro_after_init] = ACTIONS(37), - [anon_sym___init] = ACTIONS(37), + [anon_sym___noreturn] = ACTIONS(37), + [anon_sym___cold] = ACTIONS(37), [anon_sym_LBRACK_LBRACK] = ACTIONS(39), [anon_sym___declspec] = ACTIONS(41), - [anon_sym___cdecl] = ACTIONS(43), - [anon_sym___clrcall] = ACTIONS(43), - [anon_sym___stdcall] = ACTIONS(43), - [anon_sym___fastcall] = ACTIONS(43), - [anon_sym___thiscall] = ACTIONS(43), - [anon_sym___vectorcall] = ACTIONS(43), - [anon_sym_LBRACE] = ACTIONS(386), - [anon_sym_RBRACE] = ACTIONS(494), - [anon_sym_signed] = ACTIONS(47), - [anon_sym_unsigned] = ACTIONS(47), - [anon_sym_long] = ACTIONS(47), - [anon_sym_short] = ACTIONS(47), - [anon_sym_static] = ACTIONS(49), - [anon_sym_auto] = ACTIONS(49), - [anon_sym_register] = ACTIONS(49), - [anon_sym_inline] = ACTIONS(49), - [anon_sym___inline] = ACTIONS(49), - [anon_sym___inline__] = ACTIONS(49), - [anon_sym___forceinline] = ACTIONS(49), - [anon_sym_thread_local] = ACTIONS(49), - [anon_sym___thread] = ACTIONS(49), - [anon_sym_const] = ACTIONS(51), - [anon_sym_constexpr] = ACTIONS(51), - [anon_sym_volatile] = ACTIONS(51), - [anon_sym_restrict] = ACTIONS(51), - [anon_sym___restrict__] = ACTIONS(51), - [anon_sym__Atomic] = ACTIONS(51), - [anon_sym__Noreturn] = ACTIONS(51), - [anon_sym_noreturn] = ACTIONS(51), - [anon_sym_alignas] = ACTIONS(53), - [anon_sym__Alignas] = ACTIONS(53), - [sym_primitive_type] = ACTIONS(55), - [anon_sym_enum] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [anon_sym_if] = ACTIONS(390), - [anon_sym_switch] = ACTIONS(392), - [anon_sym_case] = ACTIONS(394), - [anon_sym_default] = ACTIONS(396), - [anon_sym_while] = ACTIONS(398), - [anon_sym_do] = ACTIONS(400), - [anon_sym_for] = ACTIONS(402), - [anon_sym_return] = ACTIONS(404), - [anon_sym_break] = ACTIONS(406), - [anon_sym_continue] = ACTIONS(408), - [anon_sym_goto] = ACTIONS(410), - [anon_sym___try] = ACTIONS(412), - [anon_sym___leave] = ACTIONS(414), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [anon_sym___alignof__] = ACTIONS(89), - [anon_sym___alignof] = ACTIONS(89), - [anon_sym__alignof] = ACTIONS(89), - [anon_sym_alignof] = ACTIONS(89), - [anon_sym__Alignof] = ACTIONS(89), - [anon_sym_offsetof] = ACTIONS(91), - [anon_sym__Generic] = ACTIONS(93), - [anon_sym_asm] = ACTIONS(95), - [anon_sym___asm__] = ACTIONS(95), - [sym_number_literal] = ACTIONS(163), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(165), - [sym_false] = ACTIONS(165), - [anon_sym_NULL] = ACTIONS(105), - [anon_sym_nullptr] = ACTIONS(105), + [anon_sym___init] = ACTIONS(43), + [anon_sym___exit] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_RBRACE] = ACTIONS(429), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_const] = ACTIONS(53), + [anon_sym_constexpr] = ACTIONS(53), + [anon_sym_volatile] = ACTIONS(53), + [anon_sym_restrict] = ACTIONS(53), + [anon_sym___restrict__] = ACTIONS(53), + [anon_sym__Atomic] = ACTIONS(53), + [anon_sym__Noreturn] = ACTIONS(53), + [anon_sym_noreturn] = ACTIONS(53), + [anon_sym_alignas] = ACTIONS(55), + [anon_sym__Alignas] = ACTIONS(55), + [sym_primitive_type] = ACTIONS(57), + [anon_sym_enum] = ACTIONS(59), + [anon_sym_struct] = ACTIONS(61), + [anon_sym_union] = ACTIONS(63), + [anon_sym_if] = ACTIONS(395), + [anon_sym_switch] = ACTIONS(397), + [anon_sym_case] = ACTIONS(399), + [anon_sym_default] = ACTIONS(401), + [anon_sym_while] = ACTIONS(403), + [anon_sym_do] = ACTIONS(405), + [anon_sym_for] = ACTIONS(407), + [anon_sym_return] = ACTIONS(409), + [anon_sym_break] = ACTIONS(411), + [anon_sym_continue] = ACTIONS(413), + [anon_sym_goto] = ACTIONS(415), + [anon_sym___try] = ACTIONS(417), + [anon_sym___leave] = ACTIONS(419), + [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(87), + [anon_sym_sizeof] = ACTIONS(89), + [anon_sym___alignof__] = ACTIONS(91), + [anon_sym___alignof] = ACTIONS(91), + [anon_sym__alignof] = ACTIONS(91), + [anon_sym_alignof] = ACTIONS(91), + [anon_sym__Alignof] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(93), + [anon_sym__Generic] = ACTIONS(95), + [anon_sym_asm] = ACTIONS(97), + [anon_sym___asm__] = ACTIONS(97), + [sym_number_literal] = ACTIONS(165), + [anon_sym_L_SQUOTE] = ACTIONS(101), + [anon_sym_u_SQUOTE] = ACTIONS(101), + [anon_sym_U_SQUOTE] = ACTIONS(101), + [anon_sym_u8_SQUOTE] = ACTIONS(101), + [anon_sym_SQUOTE] = ACTIONS(101), + [anon_sym_L_DQUOTE] = ACTIONS(103), + [anon_sym_u_DQUOTE] = ACTIONS(103), + [anon_sym_U_DQUOTE] = ACTIONS(103), + [anon_sym_u8_DQUOTE] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_true] = ACTIONS(167), + [sym_false] = ACTIONS(167), + [anon_sym_NULL] = ACTIONS(107), + [anon_sym_nullptr] = ACTIONS(107), [sym_comment] = ACTIONS(3), }, [29] = { - [sym__block_item] = STATE(39), - [sym_preproc_include] = STATE(39), - [sym_preproc_def] = STATE(39), - [sym_preproc_function_def] = STATE(39), - [sym_preproc_call] = STATE(39), - [sym_preproc_if] = STATE(39), - [sym_preproc_ifdef] = STATE(39), - [sym_function_definition] = STATE(39), - [sym__old_style_function_definition] = STATE(279), - [sym_declaration] = STATE(39), - [sym_type_definition] = STATE(39), - [sym__declaration_modifiers] = STATE(697), - [sym__declaration_specifiers] = STATE(1121), - [sym_linkage_specification] = STATE(39), - [sym_attribute_specifier] = STATE(697), - [sym_attribute_declaration] = STATE(405), - [sym_ms_declspec_modifier] = STATE(697), - [sym_ms_call_modifier] = STATE(693), - [sym_compound_statement] = STATE(148), - [sym_storage_class_specifier] = STATE(697), - [sym_type_qualifier] = STATE(697), - [sym_alignas_qualifier] = STATE(703), - [sym_type_specifier] = STATE(784), - [sym_sized_type_specifier] = STATE(746), - [sym_enum_specifier] = STATE(746), - [sym_struct_specifier] = STATE(746), - [sym_union_specifier] = STATE(746), - [sym_attributed_statement] = STATE(280), - [sym_statement] = STATE(39), - [sym_labeled_statement] = STATE(148), - [sym_expression_statement] = STATE(148), - [sym_if_statement] = STATE(148), - [sym_switch_statement] = STATE(148), - [sym_case_statement] = STATE(148), - [sym_while_statement] = STATE(148), - [sym_do_statement] = STATE(148), - [sym_for_statement] = STATE(148), - [sym_return_statement] = STATE(148), - [sym_break_statement] = STATE(148), - [sym_continue_statement] = STATE(148), - [sym_goto_statement] = STATE(148), - [sym_seh_try_statement] = STATE(148), - [sym_seh_leave_statement] = STATE(148), - [sym_expression] = STATE(1033), - [sym__string] = STATE(663), - [sym_comma_expression] = STATE(1818), - [sym_conditional_expression] = STATE(663), - [sym_assignment_expression] = STATE(663), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(663), - [sym_binary_expression] = STATE(663), - [sym_update_expression] = STATE(663), - [sym_cast_expression] = STATE(663), - [sym_sizeof_expression] = STATE(663), - [sym_alignof_expression] = STATE(663), - [sym_offsetof_expression] = STATE(663), - [sym_generic_expression] = STATE(663), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(663), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(663), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(663), - [sym_concatenated_string] = STATE(663), - [sym_string_literal] = STATE(659), - [sym_null] = STATE(663), - [sym__empty_declaration] = STATE(39), - [sym_macro_type_specifier] = STATE(746), - [aux_sym_preproc_if_repeat1] = STATE(39), - [aux_sym__declaration_specifiers_repeat1] = STATE(697), - [aux_sym_attributed_declarator_repeat1] = STATE(375), - [aux_sym_sized_type_specifier_repeat1] = STATE(747), - [sym_identifier] = ACTIONS(366), - [aux_sym_preproc_include_token1] = ACTIONS(368), - [aux_sym_preproc_def_token1] = ACTIONS(370), - [aux_sym_preproc_if_token1] = ACTIONS(372), - [aux_sym_preproc_ifdef_token1] = ACTIONS(374), - [aux_sym_preproc_ifdef_token2] = ACTIONS(374), - [sym_preproc_directive] = ACTIONS(376), + [sym__block_item] = STATE(26), + [sym_preproc_include] = STATE(26), + [sym_preproc_def] = STATE(26), + [sym_preproc_function_def] = STATE(26), + [sym_preproc_call] = STATE(26), + [sym_preproc_if] = STATE(26), + [sym_preproc_ifdef] = STATE(26), + [sym_function_definition] = STATE(26), + [sym__old_style_function_definition] = STATE(312), + [sym_declaration] = STATE(26), + [sym_type_definition] = STATE(26), + [sym__declaration_modifiers] = STATE(805), + [sym__declaration_specifiers] = STATE(1234), + [sym_linkage_specification] = STATE(26), + [sym_attribute_specifier] = STATE(805), + [sym_attribute_declaration] = STATE(468), + [sym_ms_declspec_modifier] = STATE(805), + [sym_macro_modifier] = STATE(788), + [sym_ms_call_modifier] = STATE(627), + [sym_compound_statement] = STATE(290), + [sym_storage_class_specifier] = STATE(805), + [sym_type_qualifier] = STATE(805), + [sym_alignas_qualifier] = STATE(799), + [sym_type_specifier] = STATE(899), + [sym_sized_type_specifier] = STATE(873), + [sym_enum_specifier] = STATE(873), + [sym_struct_specifier] = STATE(873), + [sym_union_specifier] = STATE(873), + [sym_attributed_statement] = STATE(306), + [sym_statement] = STATE(26), + [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_seh_try_statement] = STATE(290), + [sym_seh_leave_statement] = STATE(290), + [sym_expression] = STATE(1167), + [sym__string] = STATE(758), + [sym_comma_expression] = STATE(2207), + [sym_conditional_expression] = STATE(758), + [sym_assignment_expression] = STATE(758), + [sym_pointer_expression] = STATE(944), + [sym_unary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_cast_expression] = STATE(758), + [sym_sizeof_expression] = STATE(758), + [sym_alignof_expression] = STATE(758), + [sym_offsetof_expression] = STATE(758), + [sym_generic_expression] = STATE(758), + [sym_subscript_expression] = STATE(944), + [sym_call_expression] = STATE(944), + [sym_gnu_asm_expression] = STATE(758), + [sym_field_expression] = STATE(944), + [sym_compound_literal_expression] = STATE(758), + [sym_parenthesized_expression] = STATE(944), + [sym_char_literal] = STATE(758), + [sym_concatenated_string] = STATE(758), + [sym_string_literal] = STATE(671), + [sym_null] = STATE(758), + [sym__empty_declaration] = STATE(26), + [sym_macro_type_specifier] = STATE(873), + [aux_sym_preproc_if_repeat1] = STATE(26), + [aux_sym__declaration_specifiers_repeat1] = STATE(805), + [aux_sym_attributed_declarator_repeat1] = STATE(428), + [aux_sym_sized_type_specifier_repeat1] = STATE(890), + [sym_identifier] = ACTIONS(371), + [aux_sym_preproc_include_token1] = ACTIONS(373), + [aux_sym_preproc_def_token1] = ACTIONS(375), + [aux_sym_preproc_if_token1] = ACTIONS(377), + [aux_sym_preproc_ifdef_token1] = ACTIONS(379), + [aux_sym_preproc_ifdef_token2] = ACTIONS(379), + [sym_preproc_directive] = ACTIONS(381), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -17077,177 +17827,182 @@ 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(378), - [anon_sym___extension__] = ACTIONS(380), - [anon_sym_typedef] = ACTIONS(382), - [anon_sym_extern] = ACTIONS(384), + [anon_sym_SEMI] = ACTIONS(383), + [anon_sym___extension__] = ACTIONS(385), + [anon_sym_typedef] = ACTIONS(387), + [anon_sym_extern] = ACTIONS(389), [anon_sym___attribute__] = ACTIONS(33), [anon_sym___scanf] = ACTIONS(35), [anon_sym___printf] = ACTIONS(35), [anon_sym___read_mostly] = ACTIONS(37), [anon_sym___must_hold] = ACTIONS(33), [anon_sym___ro_after_init] = ACTIONS(37), - [anon_sym___init] = ACTIONS(37), + [anon_sym___noreturn] = ACTIONS(37), + [anon_sym___cold] = ACTIONS(37), [anon_sym_LBRACK_LBRACK] = ACTIONS(39), [anon_sym___declspec] = ACTIONS(41), - [anon_sym___cdecl] = ACTIONS(43), - [anon_sym___clrcall] = ACTIONS(43), - [anon_sym___stdcall] = ACTIONS(43), - [anon_sym___fastcall] = ACTIONS(43), - [anon_sym___thiscall] = ACTIONS(43), - [anon_sym___vectorcall] = ACTIONS(43), - [anon_sym_LBRACE] = ACTIONS(386), - [anon_sym_RBRACE] = ACTIONS(496), - [anon_sym_signed] = ACTIONS(47), - [anon_sym_unsigned] = ACTIONS(47), - [anon_sym_long] = ACTIONS(47), - [anon_sym_short] = ACTIONS(47), - [anon_sym_static] = ACTIONS(49), - [anon_sym_auto] = ACTIONS(49), - [anon_sym_register] = ACTIONS(49), - [anon_sym_inline] = ACTIONS(49), - [anon_sym___inline] = ACTIONS(49), - [anon_sym___inline__] = ACTIONS(49), - [anon_sym___forceinline] = ACTIONS(49), - [anon_sym_thread_local] = ACTIONS(49), - [anon_sym___thread] = ACTIONS(49), - [anon_sym_const] = ACTIONS(51), - [anon_sym_constexpr] = ACTIONS(51), - [anon_sym_volatile] = ACTIONS(51), - [anon_sym_restrict] = ACTIONS(51), - [anon_sym___restrict__] = ACTIONS(51), - [anon_sym__Atomic] = ACTIONS(51), - [anon_sym__Noreturn] = ACTIONS(51), - [anon_sym_noreturn] = ACTIONS(51), - [anon_sym_alignas] = ACTIONS(53), - [anon_sym__Alignas] = ACTIONS(53), - [sym_primitive_type] = ACTIONS(55), - [anon_sym_enum] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [anon_sym_if] = ACTIONS(390), - [anon_sym_switch] = ACTIONS(392), - [anon_sym_case] = ACTIONS(394), - [anon_sym_default] = ACTIONS(396), - [anon_sym_while] = ACTIONS(398), - [anon_sym_do] = ACTIONS(400), - [anon_sym_for] = ACTIONS(402), - [anon_sym_return] = ACTIONS(404), - [anon_sym_break] = ACTIONS(406), - [anon_sym_continue] = ACTIONS(408), - [anon_sym_goto] = ACTIONS(410), - [anon_sym___try] = ACTIONS(412), - [anon_sym___leave] = ACTIONS(414), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [anon_sym___alignof__] = ACTIONS(89), - [anon_sym___alignof] = ACTIONS(89), - [anon_sym__alignof] = ACTIONS(89), - [anon_sym_alignof] = ACTIONS(89), - [anon_sym__Alignof] = ACTIONS(89), - [anon_sym_offsetof] = ACTIONS(91), - [anon_sym__Generic] = ACTIONS(93), - [anon_sym_asm] = ACTIONS(95), - [anon_sym___asm__] = ACTIONS(95), - [sym_number_literal] = ACTIONS(163), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(165), - [sym_false] = ACTIONS(165), - [anon_sym_NULL] = ACTIONS(105), - [anon_sym_nullptr] = ACTIONS(105), + [anon_sym___init] = ACTIONS(43), + [anon_sym___exit] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_RBRACE] = ACTIONS(431), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_const] = ACTIONS(53), + [anon_sym_constexpr] = ACTIONS(53), + [anon_sym_volatile] = ACTIONS(53), + [anon_sym_restrict] = ACTIONS(53), + [anon_sym___restrict__] = ACTIONS(53), + [anon_sym__Atomic] = ACTIONS(53), + [anon_sym__Noreturn] = ACTIONS(53), + [anon_sym_noreturn] = ACTIONS(53), + [anon_sym_alignas] = ACTIONS(55), + [anon_sym__Alignas] = ACTIONS(55), + [sym_primitive_type] = ACTIONS(57), + [anon_sym_enum] = ACTIONS(59), + [anon_sym_struct] = ACTIONS(61), + [anon_sym_union] = ACTIONS(63), + [anon_sym_if] = ACTIONS(395), + [anon_sym_switch] = ACTIONS(397), + [anon_sym_case] = ACTIONS(399), + [anon_sym_default] = ACTIONS(401), + [anon_sym_while] = ACTIONS(403), + [anon_sym_do] = ACTIONS(405), + [anon_sym_for] = ACTIONS(407), + [anon_sym_return] = ACTIONS(409), + [anon_sym_break] = ACTIONS(411), + [anon_sym_continue] = ACTIONS(413), + [anon_sym_goto] = ACTIONS(415), + [anon_sym___try] = ACTIONS(417), + [anon_sym___leave] = ACTIONS(419), + [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(87), + [anon_sym_sizeof] = ACTIONS(89), + [anon_sym___alignof__] = ACTIONS(91), + [anon_sym___alignof] = ACTIONS(91), + [anon_sym__alignof] = ACTIONS(91), + [anon_sym_alignof] = ACTIONS(91), + [anon_sym__Alignof] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(93), + [anon_sym__Generic] = ACTIONS(95), + [anon_sym_asm] = ACTIONS(97), + [anon_sym___asm__] = ACTIONS(97), + [sym_number_literal] = ACTIONS(165), + [anon_sym_L_SQUOTE] = ACTIONS(101), + [anon_sym_u_SQUOTE] = ACTIONS(101), + [anon_sym_U_SQUOTE] = ACTIONS(101), + [anon_sym_u8_SQUOTE] = ACTIONS(101), + [anon_sym_SQUOTE] = ACTIONS(101), + [anon_sym_L_DQUOTE] = ACTIONS(103), + [anon_sym_u_DQUOTE] = ACTIONS(103), + [anon_sym_U_DQUOTE] = ACTIONS(103), + [anon_sym_u8_DQUOTE] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_true] = ACTIONS(167), + [sym_false] = ACTIONS(167), + [anon_sym_NULL] = ACTIONS(107), + [anon_sym_nullptr] = ACTIONS(107), [sym_comment] = ACTIONS(3), }, [30] = { - [sym__block_item] = STATE(36), - [sym_preproc_include] = STATE(36), - [sym_preproc_def] = STATE(36), - [sym_preproc_function_def] = STATE(36), - [sym_preproc_call] = STATE(36), - [sym_preproc_if] = STATE(36), - [sym_preproc_ifdef] = STATE(36), - [sym_function_definition] = STATE(36), - [sym__old_style_function_definition] = STATE(279), - [sym_declaration] = STATE(36), - [sym_type_definition] = STATE(36), - [sym__declaration_modifiers] = STATE(697), - [sym__declaration_specifiers] = STATE(1121), - [sym_linkage_specification] = STATE(36), - [sym_attribute_specifier] = STATE(697), - [sym_attribute_declaration] = STATE(405), - [sym_ms_declspec_modifier] = STATE(697), - [sym_ms_call_modifier] = STATE(693), - [sym_compound_statement] = STATE(148), - [sym_storage_class_specifier] = STATE(697), - [sym_type_qualifier] = STATE(697), - [sym_alignas_qualifier] = STATE(703), - [sym_type_specifier] = STATE(784), - [sym_sized_type_specifier] = STATE(746), - [sym_enum_specifier] = STATE(746), - [sym_struct_specifier] = STATE(746), - [sym_union_specifier] = STATE(746), - [sym_attributed_statement] = STATE(280), - [sym_statement] = STATE(36), - [sym_labeled_statement] = STATE(148), - [sym_expression_statement] = STATE(148), - [sym_if_statement] = STATE(148), - [sym_switch_statement] = STATE(148), - [sym_case_statement] = STATE(148), - [sym_while_statement] = STATE(148), - [sym_do_statement] = STATE(148), - [sym_for_statement] = STATE(148), - [sym_return_statement] = STATE(148), - [sym_break_statement] = STATE(148), - [sym_continue_statement] = STATE(148), - [sym_goto_statement] = STATE(148), - [sym_seh_try_statement] = STATE(148), - [sym_seh_leave_statement] = STATE(148), - [sym_expression] = STATE(1033), - [sym__string] = STATE(663), - [sym_comma_expression] = STATE(1818), - [sym_conditional_expression] = STATE(663), - [sym_assignment_expression] = STATE(663), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(663), - [sym_binary_expression] = STATE(663), - [sym_update_expression] = STATE(663), - [sym_cast_expression] = STATE(663), - [sym_sizeof_expression] = STATE(663), - [sym_alignof_expression] = STATE(663), - [sym_offsetof_expression] = STATE(663), - [sym_generic_expression] = STATE(663), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(663), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(663), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(663), - [sym_concatenated_string] = STATE(663), - [sym_string_literal] = STATE(659), - [sym_null] = STATE(663), - [sym__empty_declaration] = STATE(36), - [sym_macro_type_specifier] = STATE(746), - [aux_sym_preproc_if_repeat1] = STATE(36), - [aux_sym__declaration_specifiers_repeat1] = STATE(697), - [aux_sym_attributed_declarator_repeat1] = STATE(375), - [aux_sym_sized_type_specifier_repeat1] = STATE(747), - [sym_identifier] = ACTIONS(366), - [aux_sym_preproc_include_token1] = ACTIONS(368), - [aux_sym_preproc_def_token1] = ACTIONS(370), - [aux_sym_preproc_if_token1] = ACTIONS(372), - [aux_sym_preproc_ifdef_token1] = ACTIONS(374), - [aux_sym_preproc_ifdef_token2] = ACTIONS(374), - [sym_preproc_directive] = ACTIONS(376), + [sym__block_item] = STATE(31), + [sym_preproc_include] = STATE(31), + [sym_preproc_def] = STATE(31), + [sym_preproc_function_def] = STATE(31), + [sym_preproc_call] = STATE(31), + [sym_preproc_if] = STATE(31), + [sym_preproc_ifdef] = STATE(31), + [sym_function_definition] = STATE(31), + [sym__old_style_function_definition] = STATE(364), + [sym_declaration] = STATE(31), + [sym_type_definition] = STATE(31), + [sym__declaration_modifiers] = STATE(805), + [sym__declaration_specifiers] = STATE(1235), + [sym_linkage_specification] = STATE(31), + [sym_attribute_specifier] = STATE(805), + [sym_attribute_declaration] = STATE(468), + [sym_ms_declspec_modifier] = STATE(805), + [sym_macro_modifier] = STATE(778), + [sym_ms_call_modifier] = STATE(622), + [sym_compound_statement] = STATE(205), + [sym_storage_class_specifier] = STATE(805), + [sym_type_qualifier] = STATE(805), + [sym_alignas_qualifier] = STATE(799), + [sym_type_specifier] = STATE(902), + [sym_sized_type_specifier] = STATE(873), + [sym_enum_specifier] = STATE(873), + [sym_struct_specifier] = STATE(873), + [sym_union_specifier] = STATE(873), + [sym_attributed_statement] = STATE(310), + [sym_statement] = STATE(31), + [sym_labeled_statement] = STATE(205), + [sym_expression_statement] = STATE(205), + [sym_if_statement] = STATE(205), + [sym_switch_statement] = STATE(205), + [sym_case_statement] = STATE(205), + [sym_while_statement] = STATE(205), + [sym_do_statement] = STATE(205), + [sym_for_statement] = STATE(205), + [sym_return_statement] = STATE(205), + [sym_break_statement] = STATE(205), + [sym_continue_statement] = STATE(205), + [sym_goto_statement] = STATE(205), + [sym_seh_try_statement] = STATE(205), + [sym_seh_leave_statement] = STATE(205), + [sym_expression] = STATE(1193), + [sym__string] = STATE(758), + [sym_comma_expression] = STATE(2067), + [sym_conditional_expression] = STATE(758), + [sym_assignment_expression] = STATE(758), + [sym_pointer_expression] = STATE(944), + [sym_unary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_cast_expression] = STATE(758), + [sym_sizeof_expression] = STATE(758), + [sym_alignof_expression] = STATE(758), + [sym_offsetof_expression] = STATE(758), + [sym_generic_expression] = STATE(758), + [sym_subscript_expression] = STATE(944), + [sym_call_expression] = STATE(944), + [sym_gnu_asm_expression] = STATE(758), + [sym_field_expression] = STATE(944), + [sym_compound_literal_expression] = STATE(758), + [sym_parenthesized_expression] = STATE(944), + [sym_char_literal] = STATE(758), + [sym_concatenated_string] = STATE(758), + [sym_string_literal] = STATE(671), + [sym_null] = STATE(758), + [sym__empty_declaration] = STATE(31), + [sym_macro_type_specifier] = STATE(873), + [aux_sym_preproc_if_repeat1] = STATE(31), + [aux_sym__declaration_specifiers_repeat1] = STATE(805), + [aux_sym_attributed_declarator_repeat1] = STATE(415), + [aux_sym_sized_type_specifier_repeat1] = STATE(890), + [sym_identifier] = ACTIONS(433), + [aux_sym_preproc_include_token1] = ACTIONS(435), + [aux_sym_preproc_def_token1] = ACTIONS(437), + [aux_sym_preproc_if_token1] = ACTIONS(439), + [aux_sym_preproc_if_token2] = ACTIONS(441), + [aux_sym_preproc_ifdef_token1] = ACTIONS(443), + [aux_sym_preproc_ifdef_token2] = ACTIONS(443), + [sym_preproc_directive] = ACTIONS(445), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -17255,177 +18010,181 @@ 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(378), - [anon_sym___extension__] = ACTIONS(380), - [anon_sym_typedef] = ACTIONS(382), - [anon_sym_extern] = ACTIONS(384), + [anon_sym_SEMI] = ACTIONS(447), + [anon_sym___extension__] = ACTIONS(449), + [anon_sym_typedef] = ACTIONS(451), + [anon_sym_extern] = ACTIONS(453), [anon_sym___attribute__] = ACTIONS(33), [anon_sym___scanf] = ACTIONS(35), [anon_sym___printf] = ACTIONS(35), [anon_sym___read_mostly] = ACTIONS(37), [anon_sym___must_hold] = ACTIONS(33), [anon_sym___ro_after_init] = ACTIONS(37), - [anon_sym___init] = ACTIONS(37), + [anon_sym___noreturn] = ACTIONS(37), + [anon_sym___cold] = ACTIONS(37), [anon_sym_LBRACK_LBRACK] = ACTIONS(39), [anon_sym___declspec] = ACTIONS(41), - [anon_sym___cdecl] = ACTIONS(43), - [anon_sym___clrcall] = ACTIONS(43), - [anon_sym___stdcall] = ACTIONS(43), - [anon_sym___fastcall] = ACTIONS(43), - [anon_sym___thiscall] = ACTIONS(43), - [anon_sym___vectorcall] = ACTIONS(43), - [anon_sym_LBRACE] = ACTIONS(386), - [anon_sym_RBRACE] = ACTIONS(498), - [anon_sym_signed] = ACTIONS(47), - [anon_sym_unsigned] = ACTIONS(47), - [anon_sym_long] = ACTIONS(47), - [anon_sym_short] = ACTIONS(47), - [anon_sym_static] = ACTIONS(49), - [anon_sym_auto] = ACTIONS(49), - [anon_sym_register] = ACTIONS(49), - [anon_sym_inline] = ACTIONS(49), - [anon_sym___inline] = ACTIONS(49), - [anon_sym___inline__] = ACTIONS(49), - [anon_sym___forceinline] = ACTIONS(49), - [anon_sym_thread_local] = ACTIONS(49), - [anon_sym___thread] = ACTIONS(49), - [anon_sym_const] = ACTIONS(51), - [anon_sym_constexpr] = ACTIONS(51), - [anon_sym_volatile] = ACTIONS(51), - [anon_sym_restrict] = ACTIONS(51), - [anon_sym___restrict__] = ACTIONS(51), - [anon_sym__Atomic] = ACTIONS(51), - [anon_sym__Noreturn] = ACTIONS(51), - [anon_sym_noreturn] = ACTIONS(51), - [anon_sym_alignas] = ACTIONS(53), - [anon_sym__Alignas] = ACTIONS(53), - [sym_primitive_type] = ACTIONS(55), - [anon_sym_enum] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [anon_sym_if] = ACTIONS(390), - [anon_sym_switch] = ACTIONS(392), - [anon_sym_case] = ACTIONS(394), - [anon_sym_default] = ACTIONS(396), - [anon_sym_while] = ACTIONS(398), - [anon_sym_do] = ACTIONS(400), - [anon_sym_for] = ACTIONS(402), - [anon_sym_return] = ACTIONS(404), - [anon_sym_break] = ACTIONS(406), - [anon_sym_continue] = ACTIONS(408), - [anon_sym_goto] = ACTIONS(410), - [anon_sym___try] = ACTIONS(412), - [anon_sym___leave] = ACTIONS(414), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [anon_sym___alignof__] = ACTIONS(89), - [anon_sym___alignof] = ACTIONS(89), - [anon_sym__alignof] = ACTIONS(89), - [anon_sym_alignof] = ACTIONS(89), - [anon_sym__Alignof] = ACTIONS(89), - [anon_sym_offsetof] = ACTIONS(91), - [anon_sym__Generic] = ACTIONS(93), - [anon_sym_asm] = ACTIONS(95), - [anon_sym___asm__] = ACTIONS(95), - [sym_number_literal] = ACTIONS(163), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(165), - [sym_false] = ACTIONS(165), - [anon_sym_NULL] = ACTIONS(105), - [anon_sym_nullptr] = ACTIONS(105), + [anon_sym___init] = ACTIONS(43), + [anon_sym___exit] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(455), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_const] = ACTIONS(53), + [anon_sym_constexpr] = ACTIONS(53), + [anon_sym_volatile] = ACTIONS(53), + [anon_sym_restrict] = ACTIONS(53), + [anon_sym___restrict__] = ACTIONS(53), + [anon_sym__Atomic] = ACTIONS(53), + [anon_sym__Noreturn] = ACTIONS(53), + [anon_sym_noreturn] = ACTIONS(53), + [anon_sym_alignas] = ACTIONS(55), + [anon_sym__Alignas] = ACTIONS(55), + [sym_primitive_type] = ACTIONS(57), + [anon_sym_enum] = ACTIONS(59), + [anon_sym_struct] = ACTIONS(61), + [anon_sym_union] = ACTIONS(63), + [anon_sym_if] = ACTIONS(457), + [anon_sym_switch] = ACTIONS(459), + [anon_sym_case] = ACTIONS(461), + [anon_sym_default] = ACTIONS(463), + [anon_sym_while] = ACTIONS(465), + [anon_sym_do] = ACTIONS(467), + [anon_sym_for] = ACTIONS(469), + [anon_sym_return] = ACTIONS(471), + [anon_sym_break] = ACTIONS(473), + [anon_sym_continue] = ACTIONS(475), + [anon_sym_goto] = ACTIONS(477), + [anon_sym___try] = ACTIONS(479), + [anon_sym___leave] = ACTIONS(481), + [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(87), + [anon_sym_sizeof] = ACTIONS(89), + [anon_sym___alignof__] = ACTIONS(91), + [anon_sym___alignof] = ACTIONS(91), + [anon_sym__alignof] = ACTIONS(91), + [anon_sym_alignof] = ACTIONS(91), + [anon_sym__Alignof] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(93), + [anon_sym__Generic] = ACTIONS(95), + [anon_sym_asm] = ACTIONS(97), + [anon_sym___asm__] = ACTIONS(97), + [sym_number_literal] = ACTIONS(165), + [anon_sym_L_SQUOTE] = ACTIONS(101), + [anon_sym_u_SQUOTE] = ACTIONS(101), + [anon_sym_U_SQUOTE] = ACTIONS(101), + [anon_sym_u8_SQUOTE] = ACTIONS(101), + [anon_sym_SQUOTE] = ACTIONS(101), + [anon_sym_L_DQUOTE] = ACTIONS(103), + [anon_sym_u_DQUOTE] = ACTIONS(103), + [anon_sym_U_DQUOTE] = ACTIONS(103), + [anon_sym_u8_DQUOTE] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_true] = ACTIONS(167), + [sym_false] = ACTIONS(167), + [anon_sym_NULL] = ACTIONS(107), + [anon_sym_nullptr] = ACTIONS(107), [sym_comment] = ACTIONS(3), }, [31] = { - [sym__block_item] = STATE(39), - [sym_preproc_include] = STATE(39), - [sym_preproc_def] = STATE(39), - [sym_preproc_function_def] = STATE(39), - [sym_preproc_call] = STATE(39), - [sym_preproc_if] = STATE(39), - [sym_preproc_ifdef] = STATE(39), - [sym_function_definition] = STATE(39), - [sym__old_style_function_definition] = STATE(279), - [sym_declaration] = STATE(39), - [sym_type_definition] = STATE(39), - [sym__declaration_modifiers] = STATE(697), - [sym__declaration_specifiers] = STATE(1121), - [sym_linkage_specification] = STATE(39), - [sym_attribute_specifier] = STATE(697), - [sym_attribute_declaration] = STATE(405), - [sym_ms_declspec_modifier] = STATE(697), - [sym_ms_call_modifier] = STATE(693), - [sym_compound_statement] = STATE(148), - [sym_storage_class_specifier] = STATE(697), - [sym_type_qualifier] = STATE(697), - [sym_alignas_qualifier] = STATE(703), - [sym_type_specifier] = STATE(784), - [sym_sized_type_specifier] = STATE(746), - [sym_enum_specifier] = STATE(746), - [sym_struct_specifier] = STATE(746), - [sym_union_specifier] = STATE(746), - [sym_attributed_statement] = STATE(280), - [sym_statement] = STATE(39), - [sym_labeled_statement] = STATE(148), - [sym_expression_statement] = STATE(148), - [sym_if_statement] = STATE(148), - [sym_switch_statement] = STATE(148), - [sym_case_statement] = STATE(148), - [sym_while_statement] = STATE(148), - [sym_do_statement] = STATE(148), - [sym_for_statement] = STATE(148), - [sym_return_statement] = STATE(148), - [sym_break_statement] = STATE(148), - [sym_continue_statement] = STATE(148), - [sym_goto_statement] = STATE(148), - [sym_seh_try_statement] = STATE(148), - [sym_seh_leave_statement] = STATE(148), - [sym_expression] = STATE(1033), - [sym__string] = STATE(663), - [sym_comma_expression] = STATE(1818), - [sym_conditional_expression] = STATE(663), - [sym_assignment_expression] = STATE(663), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(663), - [sym_binary_expression] = STATE(663), - [sym_update_expression] = STATE(663), - [sym_cast_expression] = STATE(663), - [sym_sizeof_expression] = STATE(663), - [sym_alignof_expression] = STATE(663), - [sym_offsetof_expression] = STATE(663), - [sym_generic_expression] = STATE(663), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(663), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(663), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(663), - [sym_concatenated_string] = STATE(663), - [sym_string_literal] = STATE(659), - [sym_null] = STATE(663), - [sym__empty_declaration] = STATE(39), - [sym_macro_type_specifier] = STATE(746), - [aux_sym_preproc_if_repeat1] = STATE(39), - [aux_sym__declaration_specifiers_repeat1] = STATE(697), - [aux_sym_attributed_declarator_repeat1] = STATE(375), - [aux_sym_sized_type_specifier_repeat1] = STATE(747), - [sym_identifier] = ACTIONS(366), - [aux_sym_preproc_include_token1] = ACTIONS(368), - [aux_sym_preproc_def_token1] = ACTIONS(370), - [aux_sym_preproc_if_token1] = ACTIONS(372), - [aux_sym_preproc_ifdef_token1] = ACTIONS(374), - [aux_sym_preproc_ifdef_token2] = ACTIONS(374), - [sym_preproc_directive] = ACTIONS(376), + [sym__block_item] = STATE(37), + [sym_preproc_include] = STATE(37), + [sym_preproc_def] = STATE(37), + [sym_preproc_function_def] = STATE(37), + [sym_preproc_call] = STATE(37), + [sym_preproc_if] = STATE(37), + [sym_preproc_ifdef] = STATE(37), + [sym_function_definition] = STATE(37), + [sym__old_style_function_definition] = STATE(364), + [sym_declaration] = STATE(37), + [sym_type_definition] = STATE(37), + [sym__declaration_modifiers] = STATE(805), + [sym__declaration_specifiers] = STATE(1235), + [sym_linkage_specification] = STATE(37), + [sym_attribute_specifier] = STATE(805), + [sym_attribute_declaration] = STATE(468), + [sym_ms_declspec_modifier] = STATE(805), + [sym_macro_modifier] = STATE(778), + [sym_ms_call_modifier] = STATE(622), + [sym_compound_statement] = STATE(205), + [sym_storage_class_specifier] = STATE(805), + [sym_type_qualifier] = STATE(805), + [sym_alignas_qualifier] = STATE(799), + [sym_type_specifier] = STATE(902), + [sym_sized_type_specifier] = STATE(873), + [sym_enum_specifier] = STATE(873), + [sym_struct_specifier] = STATE(873), + [sym_union_specifier] = STATE(873), + [sym_attributed_statement] = STATE(310), + [sym_statement] = STATE(37), + [sym_labeled_statement] = STATE(205), + [sym_expression_statement] = STATE(205), + [sym_if_statement] = STATE(205), + [sym_switch_statement] = STATE(205), + [sym_case_statement] = STATE(205), + [sym_while_statement] = STATE(205), + [sym_do_statement] = STATE(205), + [sym_for_statement] = STATE(205), + [sym_return_statement] = STATE(205), + [sym_break_statement] = STATE(205), + [sym_continue_statement] = STATE(205), + [sym_goto_statement] = STATE(205), + [sym_seh_try_statement] = STATE(205), + [sym_seh_leave_statement] = STATE(205), + [sym_expression] = STATE(1193), + [sym__string] = STATE(758), + [sym_comma_expression] = STATE(2067), + [sym_conditional_expression] = STATE(758), + [sym_assignment_expression] = STATE(758), + [sym_pointer_expression] = STATE(944), + [sym_unary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_cast_expression] = STATE(758), + [sym_sizeof_expression] = STATE(758), + [sym_alignof_expression] = STATE(758), + [sym_offsetof_expression] = STATE(758), + [sym_generic_expression] = STATE(758), + [sym_subscript_expression] = STATE(944), + [sym_call_expression] = STATE(944), + [sym_gnu_asm_expression] = STATE(758), + [sym_field_expression] = STATE(944), + [sym_compound_literal_expression] = STATE(758), + [sym_parenthesized_expression] = STATE(944), + [sym_char_literal] = STATE(758), + [sym_concatenated_string] = STATE(758), + [sym_string_literal] = STATE(671), + [sym_null] = STATE(758), + [sym__empty_declaration] = STATE(37), + [sym_macro_type_specifier] = STATE(873), + [aux_sym_preproc_if_repeat1] = STATE(37), + [aux_sym__declaration_specifiers_repeat1] = STATE(805), + [aux_sym_attributed_declarator_repeat1] = STATE(415), + [aux_sym_sized_type_specifier_repeat1] = STATE(890), + [sym_identifier] = ACTIONS(433), + [aux_sym_preproc_include_token1] = ACTIONS(435), + [aux_sym_preproc_def_token1] = ACTIONS(437), + [aux_sym_preproc_if_token1] = ACTIONS(439), + [aux_sym_preproc_if_token2] = ACTIONS(483), + [aux_sym_preproc_ifdef_token1] = ACTIONS(443), + [aux_sym_preproc_ifdef_token2] = ACTIONS(443), + [sym_preproc_directive] = ACTIONS(445), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -17433,94 +18192,96 @@ 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(378), - [anon_sym___extension__] = ACTIONS(380), - [anon_sym_typedef] = ACTIONS(382), - [anon_sym_extern] = ACTIONS(384), + [anon_sym_SEMI] = ACTIONS(447), + [anon_sym___extension__] = ACTIONS(449), + [anon_sym_typedef] = ACTIONS(451), + [anon_sym_extern] = ACTIONS(453), [anon_sym___attribute__] = ACTIONS(33), [anon_sym___scanf] = ACTIONS(35), [anon_sym___printf] = ACTIONS(35), [anon_sym___read_mostly] = ACTIONS(37), [anon_sym___must_hold] = ACTIONS(33), [anon_sym___ro_after_init] = ACTIONS(37), - [anon_sym___init] = ACTIONS(37), + [anon_sym___noreturn] = ACTIONS(37), + [anon_sym___cold] = ACTIONS(37), [anon_sym_LBRACK_LBRACK] = ACTIONS(39), [anon_sym___declspec] = ACTIONS(41), - [anon_sym___cdecl] = ACTIONS(43), - [anon_sym___clrcall] = ACTIONS(43), - [anon_sym___stdcall] = ACTIONS(43), - [anon_sym___fastcall] = ACTIONS(43), - [anon_sym___thiscall] = ACTIONS(43), - [anon_sym___vectorcall] = ACTIONS(43), - [anon_sym_LBRACE] = ACTIONS(386), - [anon_sym_RBRACE] = ACTIONS(500), - [anon_sym_signed] = ACTIONS(47), - [anon_sym_unsigned] = ACTIONS(47), - [anon_sym_long] = ACTIONS(47), - [anon_sym_short] = ACTIONS(47), - [anon_sym_static] = ACTIONS(49), - [anon_sym_auto] = ACTIONS(49), - [anon_sym_register] = ACTIONS(49), - [anon_sym_inline] = ACTIONS(49), - [anon_sym___inline] = ACTIONS(49), - [anon_sym___inline__] = ACTIONS(49), - [anon_sym___forceinline] = ACTIONS(49), - [anon_sym_thread_local] = ACTIONS(49), - [anon_sym___thread] = ACTIONS(49), - [anon_sym_const] = ACTIONS(51), - [anon_sym_constexpr] = ACTIONS(51), - [anon_sym_volatile] = ACTIONS(51), - [anon_sym_restrict] = ACTIONS(51), - [anon_sym___restrict__] = ACTIONS(51), - [anon_sym__Atomic] = ACTIONS(51), - [anon_sym__Noreturn] = ACTIONS(51), - [anon_sym_noreturn] = ACTIONS(51), - [anon_sym_alignas] = ACTIONS(53), - [anon_sym__Alignas] = ACTIONS(53), - [sym_primitive_type] = ACTIONS(55), - [anon_sym_enum] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [anon_sym_if] = ACTIONS(390), - [anon_sym_switch] = ACTIONS(392), - [anon_sym_case] = ACTIONS(394), - [anon_sym_default] = ACTIONS(396), - [anon_sym_while] = ACTIONS(398), - [anon_sym_do] = ACTIONS(400), - [anon_sym_for] = ACTIONS(402), - [anon_sym_return] = ACTIONS(404), - [anon_sym_break] = ACTIONS(406), - [anon_sym_continue] = ACTIONS(408), - [anon_sym_goto] = ACTIONS(410), - [anon_sym___try] = ACTIONS(412), - [anon_sym___leave] = ACTIONS(414), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [anon_sym___alignof__] = ACTIONS(89), - [anon_sym___alignof] = ACTIONS(89), - [anon_sym__alignof] = ACTIONS(89), - [anon_sym_alignof] = ACTIONS(89), - [anon_sym__Alignof] = ACTIONS(89), - [anon_sym_offsetof] = ACTIONS(91), - [anon_sym__Generic] = ACTIONS(93), - [anon_sym_asm] = ACTIONS(95), - [anon_sym___asm__] = ACTIONS(95), - [sym_number_literal] = ACTIONS(163), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(165), - [sym_false] = ACTIONS(165), - [anon_sym_NULL] = ACTIONS(105), - [anon_sym_nullptr] = ACTIONS(105), + [anon_sym___init] = ACTIONS(43), + [anon_sym___exit] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(455), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_const] = ACTIONS(53), + [anon_sym_constexpr] = ACTIONS(53), + [anon_sym_volatile] = ACTIONS(53), + [anon_sym_restrict] = ACTIONS(53), + [anon_sym___restrict__] = ACTIONS(53), + [anon_sym__Atomic] = ACTIONS(53), + [anon_sym__Noreturn] = ACTIONS(53), + [anon_sym_noreturn] = ACTIONS(53), + [anon_sym_alignas] = ACTIONS(55), + [anon_sym__Alignas] = ACTIONS(55), + [sym_primitive_type] = ACTIONS(57), + [anon_sym_enum] = ACTIONS(59), + [anon_sym_struct] = ACTIONS(61), + [anon_sym_union] = ACTIONS(63), + [anon_sym_if] = ACTIONS(457), + [anon_sym_switch] = ACTIONS(459), + [anon_sym_case] = ACTIONS(461), + [anon_sym_default] = ACTIONS(463), + [anon_sym_while] = ACTIONS(465), + [anon_sym_do] = ACTIONS(467), + [anon_sym_for] = ACTIONS(469), + [anon_sym_return] = ACTIONS(471), + [anon_sym_break] = ACTIONS(473), + [anon_sym_continue] = ACTIONS(475), + [anon_sym_goto] = ACTIONS(477), + [anon_sym___try] = ACTIONS(479), + [anon_sym___leave] = ACTIONS(481), + [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(87), + [anon_sym_sizeof] = ACTIONS(89), + [anon_sym___alignof__] = ACTIONS(91), + [anon_sym___alignof] = ACTIONS(91), + [anon_sym__alignof] = ACTIONS(91), + [anon_sym_alignof] = ACTIONS(91), + [anon_sym__Alignof] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(93), + [anon_sym__Generic] = ACTIONS(95), + [anon_sym_asm] = ACTIONS(97), + [anon_sym___asm__] = ACTIONS(97), + [sym_number_literal] = ACTIONS(165), + [anon_sym_L_SQUOTE] = ACTIONS(101), + [anon_sym_u_SQUOTE] = ACTIONS(101), + [anon_sym_U_SQUOTE] = ACTIONS(101), + [anon_sym_u8_SQUOTE] = ACTIONS(101), + [anon_sym_SQUOTE] = ACTIONS(101), + [anon_sym_L_DQUOTE] = ACTIONS(103), + [anon_sym_u_DQUOTE] = ACTIONS(103), + [anon_sym_U_DQUOTE] = ACTIONS(103), + [anon_sym_u8_DQUOTE] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_true] = ACTIONS(167), + [sym_false] = ACTIONS(167), + [anon_sym_NULL] = ACTIONS(107), + [anon_sym_nullptr] = ACTIONS(107), [sym_comment] = ACTIONS(3), }, [32] = { @@ -17532,79 +18293,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_if] = STATE(40), [sym_preproc_ifdef] = STATE(40), [sym_function_definition] = STATE(40), - [sym__old_style_function_definition] = STATE(266), + [sym__old_style_function_definition] = STATE(312), [sym_declaration] = STATE(40), [sym_type_definition] = STATE(40), - [sym__declaration_modifiers] = STATE(697), - [sym__declaration_specifiers] = STATE(1124), + [sym__declaration_modifiers] = STATE(805), + [sym__declaration_specifiers] = STATE(1234), [sym_linkage_specification] = STATE(40), - [sym_attribute_specifier] = STATE(697), - [sym_attribute_declaration] = STATE(405), - [sym_ms_declspec_modifier] = STATE(697), - [sym_ms_call_modifier] = STATE(680), - [sym_compound_statement] = STATE(174), - [sym_storage_class_specifier] = STATE(697), - [sym_type_qualifier] = STATE(697), - [sym_alignas_qualifier] = STATE(703), - [sym_type_specifier] = STATE(802), - [sym_sized_type_specifier] = STATE(746), - [sym_enum_specifier] = STATE(746), - [sym_struct_specifier] = STATE(746), - [sym_union_specifier] = STATE(746), - [sym_attributed_statement] = STATE(267), + [sym_attribute_specifier] = STATE(805), + [sym_attribute_declaration] = STATE(468), + [sym_ms_declspec_modifier] = STATE(805), + [sym_macro_modifier] = STATE(788), + [sym_ms_call_modifier] = STATE(627), + [sym_compound_statement] = STATE(290), + [sym_storage_class_specifier] = STATE(805), + [sym_type_qualifier] = STATE(805), + [sym_alignas_qualifier] = STATE(799), + [sym_type_specifier] = STATE(899), + [sym_sized_type_specifier] = STATE(873), + [sym_enum_specifier] = STATE(873), + [sym_struct_specifier] = STATE(873), + [sym_union_specifier] = STATE(873), + [sym_attributed_statement] = STATE(306), [sym_statement] = STATE(40), - [sym_labeled_statement] = STATE(174), - [sym_expression_statement] = STATE(174), - [sym_if_statement] = STATE(174), - [sym_switch_statement] = STATE(174), - [sym_case_statement] = STATE(174), - [sym_while_statement] = STATE(174), - [sym_do_statement] = STATE(174), - [sym_for_statement] = STATE(174), - [sym_return_statement] = STATE(174), - [sym_break_statement] = STATE(174), - [sym_continue_statement] = STATE(174), - [sym_goto_statement] = STATE(174), - [sym_seh_try_statement] = STATE(174), - [sym_seh_leave_statement] = STATE(174), - [sym_expression] = STATE(1031), - [sym__string] = STATE(663), - [sym_comma_expression] = STATE(1792), - [sym_conditional_expression] = STATE(663), - [sym_assignment_expression] = STATE(663), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(663), - [sym_binary_expression] = STATE(663), - [sym_update_expression] = STATE(663), - [sym_cast_expression] = STATE(663), - [sym_sizeof_expression] = STATE(663), - [sym_alignof_expression] = STATE(663), - [sym_offsetof_expression] = STATE(663), - [sym_generic_expression] = STATE(663), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(663), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(663), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(663), - [sym_concatenated_string] = STATE(663), - [sym_string_literal] = STATE(659), - [sym_null] = STATE(663), + [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_seh_try_statement] = STATE(290), + [sym_seh_leave_statement] = STATE(290), + [sym_expression] = STATE(1167), + [sym__string] = STATE(758), + [sym_comma_expression] = STATE(2207), + [sym_conditional_expression] = STATE(758), + [sym_assignment_expression] = STATE(758), + [sym_pointer_expression] = STATE(944), + [sym_unary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_cast_expression] = STATE(758), + [sym_sizeof_expression] = STATE(758), + [sym_alignof_expression] = STATE(758), + [sym_offsetof_expression] = STATE(758), + [sym_generic_expression] = STATE(758), + [sym_subscript_expression] = STATE(944), + [sym_call_expression] = STATE(944), + [sym_gnu_asm_expression] = STATE(758), + [sym_field_expression] = STATE(944), + [sym_compound_literal_expression] = STATE(758), + [sym_parenthesized_expression] = STATE(944), + [sym_char_literal] = STATE(758), + [sym_concatenated_string] = STATE(758), + [sym_string_literal] = STATE(671), + [sym_null] = STATE(758), [sym__empty_declaration] = STATE(40), - [sym_macro_type_specifier] = STATE(746), + [sym_macro_type_specifier] = STATE(873), [aux_sym_preproc_if_repeat1] = STATE(40), - [aux_sym__declaration_specifiers_repeat1] = STATE(697), - [aux_sym_attributed_declarator_repeat1] = STATE(373), - [aux_sym_sized_type_specifier_repeat1] = STATE(747), - [sym_identifier] = ACTIONS(502), - [aux_sym_preproc_include_token1] = ACTIONS(504), - [aux_sym_preproc_def_token1] = ACTIONS(506), - [aux_sym_preproc_if_token1] = ACTIONS(508), - [aux_sym_preproc_if_token2] = ACTIONS(510), - [aux_sym_preproc_ifdef_token1] = ACTIONS(512), - [aux_sym_preproc_ifdef_token2] = ACTIONS(512), - [sym_preproc_directive] = ACTIONS(514), + [aux_sym__declaration_specifiers_repeat1] = STATE(805), + [aux_sym_attributed_declarator_repeat1] = STATE(428), + [aux_sym_sized_type_specifier_repeat1] = STATE(890), + [sym_identifier] = ACTIONS(371), + [aux_sym_preproc_include_token1] = ACTIONS(373), + [aux_sym_preproc_def_token1] = ACTIONS(375), + [aux_sym_preproc_if_token1] = ACTIONS(377), + [aux_sym_preproc_ifdef_token1] = ACTIONS(379), + [aux_sym_preproc_ifdef_token2] = ACTIONS(379), + [sym_preproc_directive] = ACTIONS(381), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -17612,176 +18373,181 @@ 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(516), - [anon_sym___extension__] = ACTIONS(518), - [anon_sym_typedef] = ACTIONS(520), - [anon_sym_extern] = ACTIONS(522), + [anon_sym_SEMI] = ACTIONS(383), + [anon_sym___extension__] = ACTIONS(385), + [anon_sym_typedef] = ACTIONS(387), + [anon_sym_extern] = ACTIONS(389), [anon_sym___attribute__] = ACTIONS(33), [anon_sym___scanf] = ACTIONS(35), [anon_sym___printf] = ACTIONS(35), [anon_sym___read_mostly] = ACTIONS(37), [anon_sym___must_hold] = ACTIONS(33), [anon_sym___ro_after_init] = ACTIONS(37), - [anon_sym___init] = ACTIONS(37), + [anon_sym___noreturn] = ACTIONS(37), + [anon_sym___cold] = ACTIONS(37), [anon_sym_LBRACK_LBRACK] = ACTIONS(39), [anon_sym___declspec] = ACTIONS(41), - [anon_sym___cdecl] = ACTIONS(43), - [anon_sym___clrcall] = ACTIONS(43), - [anon_sym___stdcall] = ACTIONS(43), - [anon_sym___fastcall] = ACTIONS(43), - [anon_sym___thiscall] = ACTIONS(43), - [anon_sym___vectorcall] = ACTIONS(43), - [anon_sym_LBRACE] = ACTIONS(524), - [anon_sym_signed] = ACTIONS(47), - [anon_sym_unsigned] = ACTIONS(47), - [anon_sym_long] = ACTIONS(47), - [anon_sym_short] = ACTIONS(47), - [anon_sym_static] = ACTIONS(49), - [anon_sym_auto] = ACTIONS(49), - [anon_sym_register] = ACTIONS(49), - [anon_sym_inline] = ACTIONS(49), - [anon_sym___inline] = ACTIONS(49), - [anon_sym___inline__] = ACTIONS(49), - [anon_sym___forceinline] = ACTIONS(49), - [anon_sym_thread_local] = ACTIONS(49), - [anon_sym___thread] = ACTIONS(49), - [anon_sym_const] = ACTIONS(51), - [anon_sym_constexpr] = ACTIONS(51), - [anon_sym_volatile] = ACTIONS(51), - [anon_sym_restrict] = ACTIONS(51), - [anon_sym___restrict__] = ACTIONS(51), - [anon_sym__Atomic] = ACTIONS(51), - [anon_sym__Noreturn] = ACTIONS(51), - [anon_sym_noreturn] = ACTIONS(51), - [anon_sym_alignas] = ACTIONS(53), - [anon_sym__Alignas] = ACTIONS(53), - [sym_primitive_type] = ACTIONS(55), - [anon_sym_enum] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [anon_sym_if] = ACTIONS(526), - [anon_sym_switch] = ACTIONS(528), - [anon_sym_case] = ACTIONS(530), - [anon_sym_default] = ACTIONS(532), - [anon_sym_while] = ACTIONS(534), - [anon_sym_do] = ACTIONS(536), - [anon_sym_for] = ACTIONS(538), - [anon_sym_return] = ACTIONS(540), - [anon_sym_break] = ACTIONS(542), - [anon_sym_continue] = ACTIONS(544), - [anon_sym_goto] = ACTIONS(546), - [anon_sym___try] = ACTIONS(548), - [anon_sym___leave] = ACTIONS(550), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [anon_sym___alignof__] = ACTIONS(89), - [anon_sym___alignof] = ACTIONS(89), - [anon_sym__alignof] = ACTIONS(89), - [anon_sym_alignof] = ACTIONS(89), - [anon_sym__Alignof] = ACTIONS(89), - [anon_sym_offsetof] = ACTIONS(91), - [anon_sym__Generic] = ACTIONS(93), - [anon_sym_asm] = ACTIONS(95), - [anon_sym___asm__] = ACTIONS(95), - [sym_number_literal] = ACTIONS(163), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(165), - [sym_false] = ACTIONS(165), - [anon_sym_NULL] = ACTIONS(105), - [anon_sym_nullptr] = ACTIONS(105), + [anon_sym___init] = ACTIONS(43), + [anon_sym___exit] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_RBRACE] = ACTIONS(485), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_const] = ACTIONS(53), + [anon_sym_constexpr] = ACTIONS(53), + [anon_sym_volatile] = ACTIONS(53), + [anon_sym_restrict] = ACTIONS(53), + [anon_sym___restrict__] = ACTIONS(53), + [anon_sym__Atomic] = ACTIONS(53), + [anon_sym__Noreturn] = ACTIONS(53), + [anon_sym_noreturn] = ACTIONS(53), + [anon_sym_alignas] = ACTIONS(55), + [anon_sym__Alignas] = ACTIONS(55), + [sym_primitive_type] = ACTIONS(57), + [anon_sym_enum] = ACTIONS(59), + [anon_sym_struct] = ACTIONS(61), + [anon_sym_union] = ACTIONS(63), + [anon_sym_if] = ACTIONS(395), + [anon_sym_switch] = ACTIONS(397), + [anon_sym_case] = ACTIONS(399), + [anon_sym_default] = ACTIONS(401), + [anon_sym_while] = ACTIONS(403), + [anon_sym_do] = ACTIONS(405), + [anon_sym_for] = ACTIONS(407), + [anon_sym_return] = ACTIONS(409), + [anon_sym_break] = ACTIONS(411), + [anon_sym_continue] = ACTIONS(413), + [anon_sym_goto] = ACTIONS(415), + [anon_sym___try] = ACTIONS(417), + [anon_sym___leave] = ACTIONS(419), + [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(87), + [anon_sym_sizeof] = ACTIONS(89), + [anon_sym___alignof__] = ACTIONS(91), + [anon_sym___alignof] = ACTIONS(91), + [anon_sym__alignof] = ACTIONS(91), + [anon_sym_alignof] = ACTIONS(91), + [anon_sym__Alignof] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(93), + [anon_sym__Generic] = ACTIONS(95), + [anon_sym_asm] = ACTIONS(97), + [anon_sym___asm__] = ACTIONS(97), + [sym_number_literal] = ACTIONS(165), + [anon_sym_L_SQUOTE] = ACTIONS(101), + [anon_sym_u_SQUOTE] = ACTIONS(101), + [anon_sym_U_SQUOTE] = ACTIONS(101), + [anon_sym_u8_SQUOTE] = ACTIONS(101), + [anon_sym_SQUOTE] = ACTIONS(101), + [anon_sym_L_DQUOTE] = ACTIONS(103), + [anon_sym_u_DQUOTE] = ACTIONS(103), + [anon_sym_U_DQUOTE] = ACTIONS(103), + [anon_sym_u8_DQUOTE] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_true] = ACTIONS(167), + [sym_false] = ACTIONS(167), + [anon_sym_NULL] = ACTIONS(107), + [anon_sym_nullptr] = ACTIONS(107), [sym_comment] = ACTIONS(3), }, [33] = { - [sym__block_item] = STATE(39), - [sym_preproc_include] = STATE(39), - [sym_preproc_def] = STATE(39), - [sym_preproc_function_def] = STATE(39), - [sym_preproc_call] = STATE(39), - [sym_preproc_if] = STATE(39), - [sym_preproc_ifdef] = STATE(39), - [sym_function_definition] = STATE(39), - [sym__old_style_function_definition] = STATE(279), - [sym_declaration] = STATE(39), - [sym_type_definition] = STATE(39), - [sym__declaration_modifiers] = STATE(697), - [sym__declaration_specifiers] = STATE(1121), - [sym_linkage_specification] = STATE(39), - [sym_attribute_specifier] = STATE(697), - [sym_attribute_declaration] = STATE(405), - [sym_ms_declspec_modifier] = STATE(697), - [sym_ms_call_modifier] = STATE(693), - [sym_compound_statement] = STATE(148), - [sym_storage_class_specifier] = STATE(697), - [sym_type_qualifier] = STATE(697), - [sym_alignas_qualifier] = STATE(703), - [sym_type_specifier] = STATE(784), - [sym_sized_type_specifier] = STATE(746), - [sym_enum_specifier] = STATE(746), - [sym_struct_specifier] = STATE(746), - [sym_union_specifier] = STATE(746), - [sym_attributed_statement] = STATE(280), - [sym_statement] = STATE(39), - [sym_labeled_statement] = STATE(148), - [sym_expression_statement] = STATE(148), - [sym_if_statement] = STATE(148), - [sym_switch_statement] = STATE(148), - [sym_case_statement] = STATE(148), - [sym_while_statement] = STATE(148), - [sym_do_statement] = STATE(148), - [sym_for_statement] = STATE(148), - [sym_return_statement] = STATE(148), - [sym_break_statement] = STATE(148), - [sym_continue_statement] = STATE(148), - [sym_goto_statement] = STATE(148), - [sym_seh_try_statement] = STATE(148), - [sym_seh_leave_statement] = STATE(148), - [sym_expression] = STATE(1033), - [sym__string] = STATE(663), - [sym_comma_expression] = STATE(1818), - [sym_conditional_expression] = STATE(663), - [sym_assignment_expression] = STATE(663), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(663), - [sym_binary_expression] = STATE(663), - [sym_update_expression] = STATE(663), - [sym_cast_expression] = STATE(663), - [sym_sizeof_expression] = STATE(663), - [sym_alignof_expression] = STATE(663), - [sym_offsetof_expression] = STATE(663), - [sym_generic_expression] = STATE(663), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(663), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(663), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(663), - [sym_concatenated_string] = STATE(663), - [sym_string_literal] = STATE(659), - [sym_null] = STATE(663), - [sym__empty_declaration] = STATE(39), - [sym_macro_type_specifier] = STATE(746), - [aux_sym_preproc_if_repeat1] = STATE(39), - [aux_sym__declaration_specifiers_repeat1] = STATE(697), - [aux_sym_attributed_declarator_repeat1] = STATE(375), - [aux_sym_sized_type_specifier_repeat1] = STATE(747), - [sym_identifier] = ACTIONS(366), - [aux_sym_preproc_include_token1] = ACTIONS(368), - [aux_sym_preproc_def_token1] = ACTIONS(370), - [aux_sym_preproc_if_token1] = ACTIONS(372), - [aux_sym_preproc_ifdef_token1] = ACTIONS(374), - [aux_sym_preproc_ifdef_token2] = ACTIONS(374), - [sym_preproc_directive] = ACTIONS(376), + [sym__block_item] = STATE(40), + [sym_preproc_include] = STATE(40), + [sym_preproc_def] = STATE(40), + [sym_preproc_function_def] = STATE(40), + [sym_preproc_call] = STATE(40), + [sym_preproc_if] = STATE(40), + [sym_preproc_ifdef] = STATE(40), + [sym_function_definition] = STATE(40), + [sym__old_style_function_definition] = STATE(312), + [sym_declaration] = STATE(40), + [sym_type_definition] = STATE(40), + [sym__declaration_modifiers] = STATE(805), + [sym__declaration_specifiers] = STATE(1234), + [sym_linkage_specification] = STATE(40), + [sym_attribute_specifier] = STATE(805), + [sym_attribute_declaration] = STATE(468), + [sym_ms_declspec_modifier] = STATE(805), + [sym_macro_modifier] = STATE(788), + [sym_ms_call_modifier] = STATE(627), + [sym_compound_statement] = STATE(290), + [sym_storage_class_specifier] = STATE(805), + [sym_type_qualifier] = STATE(805), + [sym_alignas_qualifier] = STATE(799), + [sym_type_specifier] = STATE(899), + [sym_sized_type_specifier] = STATE(873), + [sym_enum_specifier] = STATE(873), + [sym_struct_specifier] = STATE(873), + [sym_union_specifier] = STATE(873), + [sym_attributed_statement] = STATE(306), + [sym_statement] = STATE(40), + [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_seh_try_statement] = STATE(290), + [sym_seh_leave_statement] = STATE(290), + [sym_expression] = STATE(1167), + [sym__string] = STATE(758), + [sym_comma_expression] = STATE(2207), + [sym_conditional_expression] = STATE(758), + [sym_assignment_expression] = STATE(758), + [sym_pointer_expression] = STATE(944), + [sym_unary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_cast_expression] = STATE(758), + [sym_sizeof_expression] = STATE(758), + [sym_alignof_expression] = STATE(758), + [sym_offsetof_expression] = STATE(758), + [sym_generic_expression] = STATE(758), + [sym_subscript_expression] = STATE(944), + [sym_call_expression] = STATE(944), + [sym_gnu_asm_expression] = STATE(758), + [sym_field_expression] = STATE(944), + [sym_compound_literal_expression] = STATE(758), + [sym_parenthesized_expression] = STATE(944), + [sym_char_literal] = STATE(758), + [sym_concatenated_string] = STATE(758), + [sym_string_literal] = STATE(671), + [sym_null] = STATE(758), + [sym__empty_declaration] = STATE(40), + [sym_macro_type_specifier] = STATE(873), + [aux_sym_preproc_if_repeat1] = STATE(40), + [aux_sym__declaration_specifiers_repeat1] = STATE(805), + [aux_sym_attributed_declarator_repeat1] = STATE(428), + [aux_sym_sized_type_specifier_repeat1] = STATE(890), + [sym_identifier] = ACTIONS(371), + [aux_sym_preproc_include_token1] = ACTIONS(373), + [aux_sym_preproc_def_token1] = ACTIONS(375), + [aux_sym_preproc_if_token1] = ACTIONS(377), + [aux_sym_preproc_ifdef_token1] = ACTIONS(379), + [aux_sym_preproc_ifdef_token2] = ACTIONS(379), + [sym_preproc_directive] = ACTIONS(381), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -17789,177 +18555,181 @@ 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(378), - [anon_sym___extension__] = ACTIONS(380), - [anon_sym_typedef] = ACTIONS(382), - [anon_sym_extern] = ACTIONS(384), + [anon_sym_SEMI] = ACTIONS(383), + [anon_sym___extension__] = ACTIONS(385), + [anon_sym_typedef] = ACTIONS(387), + [anon_sym_extern] = ACTIONS(389), [anon_sym___attribute__] = ACTIONS(33), [anon_sym___scanf] = ACTIONS(35), [anon_sym___printf] = ACTIONS(35), [anon_sym___read_mostly] = ACTIONS(37), [anon_sym___must_hold] = ACTIONS(33), [anon_sym___ro_after_init] = ACTIONS(37), - [anon_sym___init] = ACTIONS(37), + [anon_sym___noreturn] = ACTIONS(37), + [anon_sym___cold] = ACTIONS(37), [anon_sym_LBRACK_LBRACK] = ACTIONS(39), [anon_sym___declspec] = ACTIONS(41), - [anon_sym___cdecl] = ACTIONS(43), - [anon_sym___clrcall] = ACTIONS(43), - [anon_sym___stdcall] = ACTIONS(43), - [anon_sym___fastcall] = ACTIONS(43), - [anon_sym___thiscall] = ACTIONS(43), - [anon_sym___vectorcall] = ACTIONS(43), - [anon_sym_LBRACE] = ACTIONS(386), - [anon_sym_RBRACE] = ACTIONS(552), - [anon_sym_signed] = ACTIONS(47), - [anon_sym_unsigned] = ACTIONS(47), - [anon_sym_long] = ACTIONS(47), - [anon_sym_short] = ACTIONS(47), - [anon_sym_static] = ACTIONS(49), - [anon_sym_auto] = ACTIONS(49), - [anon_sym_register] = ACTIONS(49), - [anon_sym_inline] = ACTIONS(49), - [anon_sym___inline] = ACTIONS(49), - [anon_sym___inline__] = ACTIONS(49), - [anon_sym___forceinline] = ACTIONS(49), - [anon_sym_thread_local] = ACTIONS(49), - [anon_sym___thread] = ACTIONS(49), - [anon_sym_const] = ACTIONS(51), - [anon_sym_constexpr] = ACTIONS(51), - [anon_sym_volatile] = ACTIONS(51), - [anon_sym_restrict] = ACTIONS(51), - [anon_sym___restrict__] = ACTIONS(51), - [anon_sym__Atomic] = ACTIONS(51), - [anon_sym__Noreturn] = ACTIONS(51), - [anon_sym_noreturn] = ACTIONS(51), - [anon_sym_alignas] = ACTIONS(53), - [anon_sym__Alignas] = ACTIONS(53), - [sym_primitive_type] = ACTIONS(55), - [anon_sym_enum] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [anon_sym_if] = ACTIONS(390), - [anon_sym_switch] = ACTIONS(392), - [anon_sym_case] = ACTIONS(394), - [anon_sym_default] = ACTIONS(396), - [anon_sym_while] = ACTIONS(398), - [anon_sym_do] = ACTIONS(400), - [anon_sym_for] = ACTIONS(402), - [anon_sym_return] = ACTIONS(404), - [anon_sym_break] = ACTIONS(406), - [anon_sym_continue] = ACTIONS(408), - [anon_sym_goto] = ACTIONS(410), - [anon_sym___try] = ACTIONS(412), - [anon_sym___leave] = ACTIONS(414), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [anon_sym___alignof__] = ACTIONS(89), - [anon_sym___alignof] = ACTIONS(89), - [anon_sym__alignof] = ACTIONS(89), - [anon_sym_alignof] = ACTIONS(89), - [anon_sym__Alignof] = ACTIONS(89), - [anon_sym_offsetof] = ACTIONS(91), - [anon_sym__Generic] = ACTIONS(93), - [anon_sym_asm] = ACTIONS(95), - [anon_sym___asm__] = ACTIONS(95), - [sym_number_literal] = ACTIONS(163), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(165), - [sym_false] = ACTIONS(165), - [anon_sym_NULL] = ACTIONS(105), - [anon_sym_nullptr] = ACTIONS(105), + [anon_sym___init] = ACTIONS(43), + [anon_sym___exit] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_RBRACE] = ACTIONS(487), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_const] = ACTIONS(53), + [anon_sym_constexpr] = ACTIONS(53), + [anon_sym_volatile] = ACTIONS(53), + [anon_sym_restrict] = ACTIONS(53), + [anon_sym___restrict__] = ACTIONS(53), + [anon_sym__Atomic] = ACTIONS(53), + [anon_sym__Noreturn] = ACTIONS(53), + [anon_sym_noreturn] = ACTIONS(53), + [anon_sym_alignas] = ACTIONS(55), + [anon_sym__Alignas] = ACTIONS(55), + [sym_primitive_type] = ACTIONS(57), + [anon_sym_enum] = ACTIONS(59), + [anon_sym_struct] = ACTIONS(61), + [anon_sym_union] = ACTIONS(63), + [anon_sym_if] = ACTIONS(395), + [anon_sym_switch] = ACTIONS(397), + [anon_sym_case] = ACTIONS(399), + [anon_sym_default] = ACTIONS(401), + [anon_sym_while] = ACTIONS(403), + [anon_sym_do] = ACTIONS(405), + [anon_sym_for] = ACTIONS(407), + [anon_sym_return] = ACTIONS(409), + [anon_sym_break] = ACTIONS(411), + [anon_sym_continue] = ACTIONS(413), + [anon_sym_goto] = ACTIONS(415), + [anon_sym___try] = ACTIONS(417), + [anon_sym___leave] = ACTIONS(419), + [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(87), + [anon_sym_sizeof] = ACTIONS(89), + [anon_sym___alignof__] = ACTIONS(91), + [anon_sym___alignof] = ACTIONS(91), + [anon_sym__alignof] = ACTIONS(91), + [anon_sym_alignof] = ACTIONS(91), + [anon_sym__Alignof] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(93), + [anon_sym__Generic] = ACTIONS(95), + [anon_sym_asm] = ACTIONS(97), + [anon_sym___asm__] = ACTIONS(97), + [sym_number_literal] = ACTIONS(165), + [anon_sym_L_SQUOTE] = ACTIONS(101), + [anon_sym_u_SQUOTE] = ACTIONS(101), + [anon_sym_U_SQUOTE] = ACTIONS(101), + [anon_sym_u8_SQUOTE] = ACTIONS(101), + [anon_sym_SQUOTE] = ACTIONS(101), + [anon_sym_L_DQUOTE] = ACTIONS(103), + [anon_sym_u_DQUOTE] = ACTIONS(103), + [anon_sym_U_DQUOTE] = ACTIONS(103), + [anon_sym_u8_DQUOTE] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_true] = ACTIONS(167), + [sym_false] = ACTIONS(167), + [anon_sym_NULL] = ACTIONS(107), + [anon_sym_nullptr] = ACTIONS(107), [sym_comment] = ACTIONS(3), }, [34] = { - [sym__block_item] = STATE(33), - [sym_preproc_include] = STATE(33), - [sym_preproc_def] = STATE(33), - [sym_preproc_function_def] = STATE(33), - [sym_preproc_call] = STATE(33), - [sym_preproc_if] = STATE(33), - [sym_preproc_ifdef] = STATE(33), - [sym_function_definition] = STATE(33), - [sym__old_style_function_definition] = STATE(279), - [sym_declaration] = STATE(33), - [sym_type_definition] = STATE(33), - [sym__declaration_modifiers] = STATE(697), - [sym__declaration_specifiers] = STATE(1121), - [sym_linkage_specification] = STATE(33), - [sym_attribute_specifier] = STATE(697), - [sym_attribute_declaration] = STATE(405), - [sym_ms_declspec_modifier] = STATE(697), - [sym_ms_call_modifier] = STATE(693), - [sym_compound_statement] = STATE(148), - [sym_storage_class_specifier] = STATE(697), - [sym_type_qualifier] = STATE(697), - [sym_alignas_qualifier] = STATE(703), - [sym_type_specifier] = STATE(784), - [sym_sized_type_specifier] = STATE(746), - [sym_enum_specifier] = STATE(746), - [sym_struct_specifier] = STATE(746), - [sym_union_specifier] = STATE(746), - [sym_attributed_statement] = STATE(280), - [sym_statement] = STATE(33), - [sym_labeled_statement] = STATE(148), - [sym_expression_statement] = STATE(148), - [sym_if_statement] = STATE(148), - [sym_switch_statement] = STATE(148), - [sym_case_statement] = STATE(148), - [sym_while_statement] = STATE(148), - [sym_do_statement] = STATE(148), - [sym_for_statement] = STATE(148), - [sym_return_statement] = STATE(148), - [sym_break_statement] = STATE(148), - [sym_continue_statement] = STATE(148), - [sym_goto_statement] = STATE(148), - [sym_seh_try_statement] = STATE(148), - [sym_seh_leave_statement] = STATE(148), - [sym_expression] = STATE(1033), - [sym__string] = STATE(663), - [sym_comma_expression] = STATE(1818), - [sym_conditional_expression] = STATE(663), - [sym_assignment_expression] = STATE(663), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(663), - [sym_binary_expression] = STATE(663), - [sym_update_expression] = STATE(663), - [sym_cast_expression] = STATE(663), - [sym_sizeof_expression] = STATE(663), - [sym_alignof_expression] = STATE(663), - [sym_offsetof_expression] = STATE(663), - [sym_generic_expression] = STATE(663), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(663), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(663), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(663), - [sym_concatenated_string] = STATE(663), - [sym_string_literal] = STATE(659), - [sym_null] = STATE(663), - [sym__empty_declaration] = STATE(33), - [sym_macro_type_specifier] = STATE(746), - [aux_sym_preproc_if_repeat1] = STATE(33), - [aux_sym__declaration_specifiers_repeat1] = STATE(697), - [aux_sym_attributed_declarator_repeat1] = STATE(375), - [aux_sym_sized_type_specifier_repeat1] = STATE(747), - [sym_identifier] = ACTIONS(366), - [aux_sym_preproc_include_token1] = ACTIONS(368), - [aux_sym_preproc_def_token1] = ACTIONS(370), - [aux_sym_preproc_if_token1] = ACTIONS(372), - [aux_sym_preproc_ifdef_token1] = ACTIONS(374), - [aux_sym_preproc_ifdef_token2] = ACTIONS(374), - [sym_preproc_directive] = ACTIONS(376), + [sym__block_item] = STATE(32), + [sym_preproc_include] = STATE(32), + [sym_preproc_def] = STATE(32), + [sym_preproc_function_def] = STATE(32), + [sym_preproc_call] = STATE(32), + [sym_preproc_if] = STATE(32), + [sym_preproc_ifdef] = STATE(32), + [sym_function_definition] = STATE(32), + [sym__old_style_function_definition] = STATE(312), + [sym_declaration] = STATE(32), + [sym_type_definition] = STATE(32), + [sym__declaration_modifiers] = STATE(805), + [sym__declaration_specifiers] = STATE(1234), + [sym_linkage_specification] = STATE(32), + [sym_attribute_specifier] = STATE(805), + [sym_attribute_declaration] = STATE(468), + [sym_ms_declspec_modifier] = STATE(805), + [sym_macro_modifier] = STATE(788), + [sym_ms_call_modifier] = STATE(627), + [sym_compound_statement] = STATE(290), + [sym_storage_class_specifier] = STATE(805), + [sym_type_qualifier] = STATE(805), + [sym_alignas_qualifier] = STATE(799), + [sym_type_specifier] = STATE(899), + [sym_sized_type_specifier] = STATE(873), + [sym_enum_specifier] = STATE(873), + [sym_struct_specifier] = STATE(873), + [sym_union_specifier] = STATE(873), + [sym_attributed_statement] = STATE(306), + [sym_statement] = STATE(32), + [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_seh_try_statement] = STATE(290), + [sym_seh_leave_statement] = STATE(290), + [sym_expression] = STATE(1167), + [sym__string] = STATE(758), + [sym_comma_expression] = STATE(2207), + [sym_conditional_expression] = STATE(758), + [sym_assignment_expression] = STATE(758), + [sym_pointer_expression] = STATE(944), + [sym_unary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_cast_expression] = STATE(758), + [sym_sizeof_expression] = STATE(758), + [sym_alignof_expression] = STATE(758), + [sym_offsetof_expression] = STATE(758), + [sym_generic_expression] = STATE(758), + [sym_subscript_expression] = STATE(944), + [sym_call_expression] = STATE(944), + [sym_gnu_asm_expression] = STATE(758), + [sym_field_expression] = STATE(944), + [sym_compound_literal_expression] = STATE(758), + [sym_parenthesized_expression] = STATE(944), + [sym_char_literal] = STATE(758), + [sym_concatenated_string] = STATE(758), + [sym_string_literal] = STATE(671), + [sym_null] = STATE(758), + [sym__empty_declaration] = STATE(32), + [sym_macro_type_specifier] = STATE(873), + [aux_sym_preproc_if_repeat1] = STATE(32), + [aux_sym__declaration_specifiers_repeat1] = STATE(805), + [aux_sym_attributed_declarator_repeat1] = STATE(428), + [aux_sym_sized_type_specifier_repeat1] = STATE(890), + [sym_identifier] = ACTIONS(371), + [aux_sym_preproc_include_token1] = ACTIONS(373), + [aux_sym_preproc_def_token1] = ACTIONS(375), + [aux_sym_preproc_if_token1] = ACTIONS(377), + [aux_sym_preproc_ifdef_token1] = ACTIONS(379), + [aux_sym_preproc_ifdef_token2] = ACTIONS(379), + [sym_preproc_directive] = ACTIONS(381), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -17967,94 +18737,97 @@ 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(378), - [anon_sym___extension__] = ACTIONS(380), - [anon_sym_typedef] = ACTIONS(382), - [anon_sym_extern] = ACTIONS(384), + [anon_sym_SEMI] = ACTIONS(383), + [anon_sym___extension__] = ACTIONS(385), + [anon_sym_typedef] = ACTIONS(387), + [anon_sym_extern] = ACTIONS(389), [anon_sym___attribute__] = ACTIONS(33), [anon_sym___scanf] = ACTIONS(35), [anon_sym___printf] = ACTIONS(35), [anon_sym___read_mostly] = ACTIONS(37), [anon_sym___must_hold] = ACTIONS(33), [anon_sym___ro_after_init] = ACTIONS(37), - [anon_sym___init] = ACTIONS(37), + [anon_sym___noreturn] = ACTIONS(37), + [anon_sym___cold] = ACTIONS(37), [anon_sym_LBRACK_LBRACK] = ACTIONS(39), [anon_sym___declspec] = ACTIONS(41), - [anon_sym___cdecl] = ACTIONS(43), - [anon_sym___clrcall] = ACTIONS(43), - [anon_sym___stdcall] = ACTIONS(43), - [anon_sym___fastcall] = ACTIONS(43), - [anon_sym___thiscall] = ACTIONS(43), - [anon_sym___vectorcall] = ACTIONS(43), - [anon_sym_LBRACE] = ACTIONS(386), - [anon_sym_RBRACE] = ACTIONS(554), - [anon_sym_signed] = ACTIONS(47), - [anon_sym_unsigned] = ACTIONS(47), - [anon_sym_long] = ACTIONS(47), - [anon_sym_short] = ACTIONS(47), - [anon_sym_static] = ACTIONS(49), - [anon_sym_auto] = ACTIONS(49), - [anon_sym_register] = ACTIONS(49), - [anon_sym_inline] = ACTIONS(49), - [anon_sym___inline] = ACTIONS(49), - [anon_sym___inline__] = ACTIONS(49), - [anon_sym___forceinline] = ACTIONS(49), - [anon_sym_thread_local] = ACTIONS(49), - [anon_sym___thread] = ACTIONS(49), - [anon_sym_const] = ACTIONS(51), - [anon_sym_constexpr] = ACTIONS(51), - [anon_sym_volatile] = ACTIONS(51), - [anon_sym_restrict] = ACTIONS(51), - [anon_sym___restrict__] = ACTIONS(51), - [anon_sym__Atomic] = ACTIONS(51), - [anon_sym__Noreturn] = ACTIONS(51), - [anon_sym_noreturn] = ACTIONS(51), - [anon_sym_alignas] = ACTIONS(53), - [anon_sym__Alignas] = ACTIONS(53), - [sym_primitive_type] = ACTIONS(55), - [anon_sym_enum] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [anon_sym_if] = ACTIONS(390), - [anon_sym_switch] = ACTIONS(392), - [anon_sym_case] = ACTIONS(394), - [anon_sym_default] = ACTIONS(396), - [anon_sym_while] = ACTIONS(398), - [anon_sym_do] = ACTIONS(400), - [anon_sym_for] = ACTIONS(402), - [anon_sym_return] = ACTIONS(404), - [anon_sym_break] = ACTIONS(406), - [anon_sym_continue] = ACTIONS(408), - [anon_sym_goto] = ACTIONS(410), - [anon_sym___try] = ACTIONS(412), - [anon_sym___leave] = ACTIONS(414), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [anon_sym___alignof__] = ACTIONS(89), - [anon_sym___alignof] = ACTIONS(89), - [anon_sym__alignof] = ACTIONS(89), - [anon_sym_alignof] = ACTIONS(89), - [anon_sym__Alignof] = ACTIONS(89), - [anon_sym_offsetof] = ACTIONS(91), - [anon_sym__Generic] = ACTIONS(93), - [anon_sym_asm] = ACTIONS(95), - [anon_sym___asm__] = ACTIONS(95), - [sym_number_literal] = ACTIONS(163), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(165), - [sym_false] = ACTIONS(165), - [anon_sym_NULL] = ACTIONS(105), - [anon_sym_nullptr] = ACTIONS(105), + [anon_sym___init] = ACTIONS(43), + [anon_sym___exit] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_RBRACE] = ACTIONS(489), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_const] = ACTIONS(53), + [anon_sym_constexpr] = ACTIONS(53), + [anon_sym_volatile] = ACTIONS(53), + [anon_sym_restrict] = ACTIONS(53), + [anon_sym___restrict__] = ACTIONS(53), + [anon_sym__Atomic] = ACTIONS(53), + [anon_sym__Noreturn] = ACTIONS(53), + [anon_sym_noreturn] = ACTIONS(53), + [anon_sym_alignas] = ACTIONS(55), + [anon_sym__Alignas] = ACTIONS(55), + [sym_primitive_type] = ACTIONS(57), + [anon_sym_enum] = ACTIONS(59), + [anon_sym_struct] = ACTIONS(61), + [anon_sym_union] = ACTIONS(63), + [anon_sym_if] = ACTIONS(395), + [anon_sym_switch] = ACTIONS(397), + [anon_sym_case] = ACTIONS(399), + [anon_sym_default] = ACTIONS(401), + [anon_sym_while] = ACTIONS(403), + [anon_sym_do] = ACTIONS(405), + [anon_sym_for] = ACTIONS(407), + [anon_sym_return] = ACTIONS(409), + [anon_sym_break] = ACTIONS(411), + [anon_sym_continue] = ACTIONS(413), + [anon_sym_goto] = ACTIONS(415), + [anon_sym___try] = ACTIONS(417), + [anon_sym___leave] = ACTIONS(419), + [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(87), + [anon_sym_sizeof] = ACTIONS(89), + [anon_sym___alignof__] = ACTIONS(91), + [anon_sym___alignof] = ACTIONS(91), + [anon_sym__alignof] = ACTIONS(91), + [anon_sym_alignof] = ACTIONS(91), + [anon_sym__Alignof] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(93), + [anon_sym__Generic] = ACTIONS(95), + [anon_sym_asm] = ACTIONS(97), + [anon_sym___asm__] = ACTIONS(97), + [sym_number_literal] = ACTIONS(165), + [anon_sym_L_SQUOTE] = ACTIONS(101), + [anon_sym_u_SQUOTE] = ACTIONS(101), + [anon_sym_U_SQUOTE] = ACTIONS(101), + [anon_sym_u8_SQUOTE] = ACTIONS(101), + [anon_sym_SQUOTE] = ACTIONS(101), + [anon_sym_L_DQUOTE] = ACTIONS(103), + [anon_sym_u_DQUOTE] = ACTIONS(103), + [anon_sym_U_DQUOTE] = ACTIONS(103), + [anon_sym_u8_DQUOTE] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_true] = ACTIONS(167), + [sym_false] = ACTIONS(167), + [anon_sym_NULL] = ACTIONS(107), + [anon_sym_nullptr] = ACTIONS(107), [sym_comment] = ACTIONS(3), }, [35] = { @@ -18066,78 +18839,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_if] = STATE(39), [sym_preproc_ifdef] = STATE(39), [sym_function_definition] = STATE(39), - [sym__old_style_function_definition] = STATE(279), + [sym__old_style_function_definition] = STATE(312), [sym_declaration] = STATE(39), [sym_type_definition] = STATE(39), - [sym__declaration_modifiers] = STATE(697), - [sym__declaration_specifiers] = STATE(1121), + [sym__declaration_modifiers] = STATE(805), + [sym__declaration_specifiers] = STATE(1234), [sym_linkage_specification] = STATE(39), - [sym_attribute_specifier] = STATE(697), - [sym_attribute_declaration] = STATE(405), - [sym_ms_declspec_modifier] = STATE(697), - [sym_ms_call_modifier] = STATE(693), - [sym_compound_statement] = STATE(148), - [sym_storage_class_specifier] = STATE(697), - [sym_type_qualifier] = STATE(697), - [sym_alignas_qualifier] = STATE(703), - [sym_type_specifier] = STATE(784), - [sym_sized_type_specifier] = STATE(746), - [sym_enum_specifier] = STATE(746), - [sym_struct_specifier] = STATE(746), - [sym_union_specifier] = STATE(746), - [sym_attributed_statement] = STATE(280), + [sym_attribute_specifier] = STATE(805), + [sym_attribute_declaration] = STATE(468), + [sym_ms_declspec_modifier] = STATE(805), + [sym_macro_modifier] = STATE(788), + [sym_ms_call_modifier] = STATE(627), + [sym_compound_statement] = STATE(290), + [sym_storage_class_specifier] = STATE(805), + [sym_type_qualifier] = STATE(805), + [sym_alignas_qualifier] = STATE(799), + [sym_type_specifier] = STATE(899), + [sym_sized_type_specifier] = STATE(873), + [sym_enum_specifier] = STATE(873), + [sym_struct_specifier] = STATE(873), + [sym_union_specifier] = STATE(873), + [sym_attributed_statement] = STATE(306), [sym_statement] = STATE(39), - [sym_labeled_statement] = STATE(148), - [sym_expression_statement] = STATE(148), - [sym_if_statement] = STATE(148), - [sym_switch_statement] = STATE(148), - [sym_case_statement] = STATE(148), - [sym_while_statement] = STATE(148), - [sym_do_statement] = STATE(148), - [sym_for_statement] = STATE(148), - [sym_return_statement] = STATE(148), - [sym_break_statement] = STATE(148), - [sym_continue_statement] = STATE(148), - [sym_goto_statement] = STATE(148), - [sym_seh_try_statement] = STATE(148), - [sym_seh_leave_statement] = STATE(148), - [sym_expression] = STATE(1033), - [sym__string] = STATE(663), - [sym_comma_expression] = STATE(1818), - [sym_conditional_expression] = STATE(663), - [sym_assignment_expression] = STATE(663), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(663), - [sym_binary_expression] = STATE(663), - [sym_update_expression] = STATE(663), - [sym_cast_expression] = STATE(663), - [sym_sizeof_expression] = STATE(663), - [sym_alignof_expression] = STATE(663), - [sym_offsetof_expression] = STATE(663), - [sym_generic_expression] = STATE(663), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(663), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(663), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(663), - [sym_concatenated_string] = STATE(663), - [sym_string_literal] = STATE(659), - [sym_null] = STATE(663), + [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_seh_try_statement] = STATE(290), + [sym_seh_leave_statement] = STATE(290), + [sym_expression] = STATE(1167), + [sym__string] = STATE(758), + [sym_comma_expression] = STATE(2207), + [sym_conditional_expression] = STATE(758), + [sym_assignment_expression] = STATE(758), + [sym_pointer_expression] = STATE(944), + [sym_unary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_cast_expression] = STATE(758), + [sym_sizeof_expression] = STATE(758), + [sym_alignof_expression] = STATE(758), + [sym_offsetof_expression] = STATE(758), + [sym_generic_expression] = STATE(758), + [sym_subscript_expression] = STATE(944), + [sym_call_expression] = STATE(944), + [sym_gnu_asm_expression] = STATE(758), + [sym_field_expression] = STATE(944), + [sym_compound_literal_expression] = STATE(758), + [sym_parenthesized_expression] = STATE(944), + [sym_char_literal] = STATE(758), + [sym_concatenated_string] = STATE(758), + [sym_string_literal] = STATE(671), + [sym_null] = STATE(758), [sym__empty_declaration] = STATE(39), - [sym_macro_type_specifier] = STATE(746), + [sym_macro_type_specifier] = STATE(873), [aux_sym_preproc_if_repeat1] = STATE(39), - [aux_sym__declaration_specifiers_repeat1] = STATE(697), - [aux_sym_attributed_declarator_repeat1] = STATE(375), - [aux_sym_sized_type_specifier_repeat1] = STATE(747), - [sym_identifier] = ACTIONS(366), - [aux_sym_preproc_include_token1] = ACTIONS(368), - [aux_sym_preproc_def_token1] = ACTIONS(370), - [aux_sym_preproc_if_token1] = ACTIONS(372), - [aux_sym_preproc_ifdef_token1] = ACTIONS(374), - [aux_sym_preproc_ifdef_token2] = ACTIONS(374), - [sym_preproc_directive] = ACTIONS(376), + [aux_sym__declaration_specifiers_repeat1] = STATE(805), + [aux_sym_attributed_declarator_repeat1] = STATE(428), + [aux_sym_sized_type_specifier_repeat1] = STATE(890), + [sym_identifier] = ACTIONS(371), + [aux_sym_preproc_include_token1] = ACTIONS(373), + [aux_sym_preproc_def_token1] = ACTIONS(375), + [aux_sym_preproc_if_token1] = ACTIONS(377), + [aux_sym_preproc_ifdef_token1] = ACTIONS(379), + [aux_sym_preproc_ifdef_token2] = ACTIONS(379), + [sym_preproc_directive] = ACTIONS(381), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -18145,177 +18919,181 @@ 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(378), - [anon_sym___extension__] = ACTIONS(380), - [anon_sym_typedef] = ACTIONS(382), - [anon_sym_extern] = ACTIONS(384), + [anon_sym_SEMI] = ACTIONS(383), + [anon_sym___extension__] = ACTIONS(385), + [anon_sym_typedef] = ACTIONS(387), + [anon_sym_extern] = ACTIONS(389), [anon_sym___attribute__] = ACTIONS(33), [anon_sym___scanf] = ACTIONS(35), [anon_sym___printf] = ACTIONS(35), [anon_sym___read_mostly] = ACTIONS(37), [anon_sym___must_hold] = ACTIONS(33), [anon_sym___ro_after_init] = ACTIONS(37), - [anon_sym___init] = ACTIONS(37), + [anon_sym___noreturn] = ACTIONS(37), + [anon_sym___cold] = ACTIONS(37), [anon_sym_LBRACK_LBRACK] = ACTIONS(39), [anon_sym___declspec] = ACTIONS(41), - [anon_sym___cdecl] = ACTIONS(43), - [anon_sym___clrcall] = ACTIONS(43), - [anon_sym___stdcall] = ACTIONS(43), - [anon_sym___fastcall] = ACTIONS(43), - [anon_sym___thiscall] = ACTIONS(43), - [anon_sym___vectorcall] = ACTIONS(43), - [anon_sym_LBRACE] = ACTIONS(386), - [anon_sym_RBRACE] = ACTIONS(556), - [anon_sym_signed] = ACTIONS(47), - [anon_sym_unsigned] = ACTIONS(47), - [anon_sym_long] = ACTIONS(47), - [anon_sym_short] = ACTIONS(47), - [anon_sym_static] = ACTIONS(49), - [anon_sym_auto] = ACTIONS(49), - [anon_sym_register] = ACTIONS(49), - [anon_sym_inline] = ACTIONS(49), - [anon_sym___inline] = ACTIONS(49), - [anon_sym___inline__] = ACTIONS(49), - [anon_sym___forceinline] = ACTIONS(49), - [anon_sym_thread_local] = ACTIONS(49), - [anon_sym___thread] = ACTIONS(49), - [anon_sym_const] = ACTIONS(51), - [anon_sym_constexpr] = ACTIONS(51), - [anon_sym_volatile] = ACTIONS(51), - [anon_sym_restrict] = ACTIONS(51), - [anon_sym___restrict__] = ACTIONS(51), - [anon_sym__Atomic] = ACTIONS(51), - [anon_sym__Noreturn] = ACTIONS(51), - [anon_sym_noreturn] = ACTIONS(51), - [anon_sym_alignas] = ACTIONS(53), - [anon_sym__Alignas] = ACTIONS(53), - [sym_primitive_type] = ACTIONS(55), - [anon_sym_enum] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [anon_sym_if] = ACTIONS(390), - [anon_sym_switch] = ACTIONS(392), - [anon_sym_case] = ACTIONS(394), - [anon_sym_default] = ACTIONS(396), - [anon_sym_while] = ACTIONS(398), - [anon_sym_do] = ACTIONS(400), - [anon_sym_for] = ACTIONS(402), - [anon_sym_return] = ACTIONS(404), - [anon_sym_break] = ACTIONS(406), - [anon_sym_continue] = ACTIONS(408), - [anon_sym_goto] = ACTIONS(410), - [anon_sym___try] = ACTIONS(412), - [anon_sym___leave] = ACTIONS(414), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [anon_sym___alignof__] = ACTIONS(89), - [anon_sym___alignof] = ACTIONS(89), - [anon_sym__alignof] = ACTIONS(89), - [anon_sym_alignof] = ACTIONS(89), - [anon_sym__Alignof] = ACTIONS(89), - [anon_sym_offsetof] = ACTIONS(91), - [anon_sym__Generic] = ACTIONS(93), - [anon_sym_asm] = ACTIONS(95), - [anon_sym___asm__] = ACTIONS(95), - [sym_number_literal] = ACTIONS(163), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(165), - [sym_false] = ACTIONS(165), - [anon_sym_NULL] = ACTIONS(105), - [anon_sym_nullptr] = ACTIONS(105), + [anon_sym___init] = ACTIONS(43), + [anon_sym___exit] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_RBRACE] = ACTIONS(491), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_const] = ACTIONS(53), + [anon_sym_constexpr] = ACTIONS(53), + [anon_sym_volatile] = ACTIONS(53), + [anon_sym_restrict] = ACTIONS(53), + [anon_sym___restrict__] = ACTIONS(53), + [anon_sym__Atomic] = ACTIONS(53), + [anon_sym__Noreturn] = ACTIONS(53), + [anon_sym_noreturn] = ACTIONS(53), + [anon_sym_alignas] = ACTIONS(55), + [anon_sym__Alignas] = ACTIONS(55), + [sym_primitive_type] = ACTIONS(57), + [anon_sym_enum] = ACTIONS(59), + [anon_sym_struct] = ACTIONS(61), + [anon_sym_union] = ACTIONS(63), + [anon_sym_if] = ACTIONS(395), + [anon_sym_switch] = ACTIONS(397), + [anon_sym_case] = ACTIONS(399), + [anon_sym_default] = ACTIONS(401), + [anon_sym_while] = ACTIONS(403), + [anon_sym_do] = ACTIONS(405), + [anon_sym_for] = ACTIONS(407), + [anon_sym_return] = ACTIONS(409), + [anon_sym_break] = ACTIONS(411), + [anon_sym_continue] = ACTIONS(413), + [anon_sym_goto] = ACTIONS(415), + [anon_sym___try] = ACTIONS(417), + [anon_sym___leave] = ACTIONS(419), + [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(87), + [anon_sym_sizeof] = ACTIONS(89), + [anon_sym___alignof__] = ACTIONS(91), + [anon_sym___alignof] = ACTIONS(91), + [anon_sym__alignof] = ACTIONS(91), + [anon_sym_alignof] = ACTIONS(91), + [anon_sym__Alignof] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(93), + [anon_sym__Generic] = ACTIONS(95), + [anon_sym_asm] = ACTIONS(97), + [anon_sym___asm__] = ACTIONS(97), + [sym_number_literal] = ACTIONS(165), + [anon_sym_L_SQUOTE] = ACTIONS(101), + [anon_sym_u_SQUOTE] = ACTIONS(101), + [anon_sym_U_SQUOTE] = ACTIONS(101), + [anon_sym_u8_SQUOTE] = ACTIONS(101), + [anon_sym_SQUOTE] = ACTIONS(101), + [anon_sym_L_DQUOTE] = ACTIONS(103), + [anon_sym_u_DQUOTE] = ACTIONS(103), + [anon_sym_U_DQUOTE] = ACTIONS(103), + [anon_sym_u8_DQUOTE] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_true] = ACTIONS(167), + [sym_false] = ACTIONS(167), + [anon_sym_NULL] = ACTIONS(107), + [anon_sym_nullptr] = ACTIONS(107), [sym_comment] = ACTIONS(3), }, [36] = { - [sym__block_item] = STATE(39), - [sym_preproc_include] = STATE(39), - [sym_preproc_def] = STATE(39), - [sym_preproc_function_def] = STATE(39), - [sym_preproc_call] = STATE(39), - [sym_preproc_if] = STATE(39), - [sym_preproc_ifdef] = STATE(39), - [sym_function_definition] = STATE(39), - [sym__old_style_function_definition] = STATE(279), - [sym_declaration] = STATE(39), - [sym_type_definition] = STATE(39), - [sym__declaration_modifiers] = STATE(697), - [sym__declaration_specifiers] = STATE(1121), - [sym_linkage_specification] = STATE(39), - [sym_attribute_specifier] = STATE(697), - [sym_attribute_declaration] = STATE(405), - [sym_ms_declspec_modifier] = STATE(697), - [sym_ms_call_modifier] = STATE(693), - [sym_compound_statement] = STATE(148), - [sym_storage_class_specifier] = STATE(697), - [sym_type_qualifier] = STATE(697), - [sym_alignas_qualifier] = STATE(703), - [sym_type_specifier] = STATE(784), - [sym_sized_type_specifier] = STATE(746), - [sym_enum_specifier] = STATE(746), - [sym_struct_specifier] = STATE(746), - [sym_union_specifier] = STATE(746), - [sym_attributed_statement] = STATE(280), - [sym_statement] = STATE(39), - [sym_labeled_statement] = STATE(148), - [sym_expression_statement] = STATE(148), - [sym_if_statement] = STATE(148), - [sym_switch_statement] = STATE(148), - [sym_case_statement] = STATE(148), - [sym_while_statement] = STATE(148), - [sym_do_statement] = STATE(148), - [sym_for_statement] = STATE(148), - [sym_return_statement] = STATE(148), - [sym_break_statement] = STATE(148), - [sym_continue_statement] = STATE(148), - [sym_goto_statement] = STATE(148), - [sym_seh_try_statement] = STATE(148), - [sym_seh_leave_statement] = STATE(148), - [sym_expression] = STATE(1033), - [sym__string] = STATE(663), - [sym_comma_expression] = STATE(1818), - [sym_conditional_expression] = STATE(663), - [sym_assignment_expression] = STATE(663), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(663), - [sym_binary_expression] = STATE(663), - [sym_update_expression] = STATE(663), - [sym_cast_expression] = STATE(663), - [sym_sizeof_expression] = STATE(663), - [sym_alignof_expression] = STATE(663), - [sym_offsetof_expression] = STATE(663), - [sym_generic_expression] = STATE(663), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(663), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(663), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(663), - [sym_concatenated_string] = STATE(663), - [sym_string_literal] = STATE(659), - [sym_null] = STATE(663), - [sym__empty_declaration] = STATE(39), - [sym_macro_type_specifier] = STATE(746), - [aux_sym_preproc_if_repeat1] = STATE(39), - [aux_sym__declaration_specifiers_repeat1] = STATE(697), - [aux_sym_attributed_declarator_repeat1] = STATE(375), - [aux_sym_sized_type_specifier_repeat1] = STATE(747), - [sym_identifier] = ACTIONS(366), - [aux_sym_preproc_include_token1] = ACTIONS(368), - [aux_sym_preproc_def_token1] = ACTIONS(370), - [aux_sym_preproc_if_token1] = ACTIONS(372), - [aux_sym_preproc_ifdef_token1] = ACTIONS(374), - [aux_sym_preproc_ifdef_token2] = ACTIONS(374), - [sym_preproc_directive] = ACTIONS(376), + [sym__block_item] = STATE(23), + [sym_preproc_include] = STATE(23), + [sym_preproc_def] = STATE(23), + [sym_preproc_function_def] = STATE(23), + [sym_preproc_call] = STATE(23), + [sym_preproc_if] = STATE(23), + [sym_preproc_ifdef] = STATE(23), + [sym_function_definition] = STATE(23), + [sym__old_style_function_definition] = STATE(312), + [sym_declaration] = STATE(23), + [sym_type_definition] = STATE(23), + [sym__declaration_modifiers] = STATE(805), + [sym__declaration_specifiers] = STATE(1234), + [sym_linkage_specification] = STATE(23), + [sym_attribute_specifier] = STATE(805), + [sym_attribute_declaration] = STATE(468), + [sym_ms_declspec_modifier] = STATE(805), + [sym_macro_modifier] = STATE(788), + [sym_ms_call_modifier] = STATE(627), + [sym_compound_statement] = STATE(290), + [sym_storage_class_specifier] = STATE(805), + [sym_type_qualifier] = STATE(805), + [sym_alignas_qualifier] = STATE(799), + [sym_type_specifier] = STATE(899), + [sym_sized_type_specifier] = STATE(873), + [sym_enum_specifier] = STATE(873), + [sym_struct_specifier] = STATE(873), + [sym_union_specifier] = STATE(873), + [sym_attributed_statement] = STATE(306), + [sym_statement] = STATE(23), + [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_seh_try_statement] = STATE(290), + [sym_seh_leave_statement] = STATE(290), + [sym_expression] = STATE(1167), + [sym__string] = STATE(758), + [sym_comma_expression] = STATE(2207), + [sym_conditional_expression] = STATE(758), + [sym_assignment_expression] = STATE(758), + [sym_pointer_expression] = STATE(944), + [sym_unary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_cast_expression] = STATE(758), + [sym_sizeof_expression] = STATE(758), + [sym_alignof_expression] = STATE(758), + [sym_offsetof_expression] = STATE(758), + [sym_generic_expression] = STATE(758), + [sym_subscript_expression] = STATE(944), + [sym_call_expression] = STATE(944), + [sym_gnu_asm_expression] = STATE(758), + [sym_field_expression] = STATE(944), + [sym_compound_literal_expression] = STATE(758), + [sym_parenthesized_expression] = STATE(944), + [sym_char_literal] = STATE(758), + [sym_concatenated_string] = STATE(758), + [sym_string_literal] = STATE(671), + [sym_null] = STATE(758), + [sym__empty_declaration] = STATE(23), + [sym_macro_type_specifier] = STATE(873), + [aux_sym_preproc_if_repeat1] = STATE(23), + [aux_sym__declaration_specifiers_repeat1] = STATE(805), + [aux_sym_attributed_declarator_repeat1] = STATE(428), + [aux_sym_sized_type_specifier_repeat1] = STATE(890), + [sym_identifier] = ACTIONS(371), + [aux_sym_preproc_include_token1] = ACTIONS(373), + [aux_sym_preproc_def_token1] = ACTIONS(375), + [aux_sym_preproc_if_token1] = ACTIONS(377), + [aux_sym_preproc_ifdef_token1] = ACTIONS(379), + [aux_sym_preproc_ifdef_token2] = ACTIONS(379), + [sym_preproc_directive] = ACTIONS(381), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -18323,355 +19101,363 @@ 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(378), - [anon_sym___extension__] = ACTIONS(380), - [anon_sym_typedef] = ACTIONS(382), - [anon_sym_extern] = ACTIONS(384), + [anon_sym_SEMI] = ACTIONS(383), + [anon_sym___extension__] = ACTIONS(385), + [anon_sym_typedef] = ACTIONS(387), + [anon_sym_extern] = ACTIONS(389), [anon_sym___attribute__] = ACTIONS(33), [anon_sym___scanf] = ACTIONS(35), [anon_sym___printf] = ACTIONS(35), [anon_sym___read_mostly] = ACTIONS(37), [anon_sym___must_hold] = ACTIONS(33), [anon_sym___ro_after_init] = ACTIONS(37), - [anon_sym___init] = ACTIONS(37), + [anon_sym___noreturn] = ACTIONS(37), + [anon_sym___cold] = ACTIONS(37), [anon_sym_LBRACK_LBRACK] = ACTIONS(39), [anon_sym___declspec] = ACTIONS(41), - [anon_sym___cdecl] = ACTIONS(43), - [anon_sym___clrcall] = ACTIONS(43), - [anon_sym___stdcall] = ACTIONS(43), - [anon_sym___fastcall] = ACTIONS(43), - [anon_sym___thiscall] = ACTIONS(43), - [anon_sym___vectorcall] = ACTIONS(43), - [anon_sym_LBRACE] = ACTIONS(386), - [anon_sym_RBRACE] = ACTIONS(558), - [anon_sym_signed] = ACTIONS(47), - [anon_sym_unsigned] = ACTIONS(47), - [anon_sym_long] = ACTIONS(47), - [anon_sym_short] = ACTIONS(47), - [anon_sym_static] = ACTIONS(49), - [anon_sym_auto] = ACTIONS(49), - [anon_sym_register] = ACTIONS(49), - [anon_sym_inline] = ACTIONS(49), - [anon_sym___inline] = ACTIONS(49), - [anon_sym___inline__] = ACTIONS(49), - [anon_sym___forceinline] = ACTIONS(49), - [anon_sym_thread_local] = ACTIONS(49), - [anon_sym___thread] = ACTIONS(49), - [anon_sym_const] = ACTIONS(51), - [anon_sym_constexpr] = ACTIONS(51), - [anon_sym_volatile] = ACTIONS(51), - [anon_sym_restrict] = ACTIONS(51), - [anon_sym___restrict__] = ACTIONS(51), - [anon_sym__Atomic] = ACTIONS(51), - [anon_sym__Noreturn] = ACTIONS(51), - [anon_sym_noreturn] = ACTIONS(51), - [anon_sym_alignas] = ACTIONS(53), - [anon_sym__Alignas] = ACTIONS(53), - [sym_primitive_type] = ACTIONS(55), - [anon_sym_enum] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [anon_sym_if] = ACTIONS(390), - [anon_sym_switch] = ACTIONS(392), - [anon_sym_case] = ACTIONS(394), - [anon_sym_default] = ACTIONS(396), - [anon_sym_while] = ACTIONS(398), - [anon_sym_do] = ACTIONS(400), - [anon_sym_for] = ACTIONS(402), - [anon_sym_return] = ACTIONS(404), - [anon_sym_break] = ACTIONS(406), - [anon_sym_continue] = ACTIONS(408), - [anon_sym_goto] = ACTIONS(410), - [anon_sym___try] = ACTIONS(412), - [anon_sym___leave] = ACTIONS(414), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [anon_sym___alignof__] = ACTIONS(89), - [anon_sym___alignof] = ACTIONS(89), - [anon_sym__alignof] = ACTIONS(89), - [anon_sym_alignof] = ACTIONS(89), - [anon_sym__Alignof] = ACTIONS(89), - [anon_sym_offsetof] = ACTIONS(91), - [anon_sym__Generic] = ACTIONS(93), - [anon_sym_asm] = ACTIONS(95), - [anon_sym___asm__] = ACTIONS(95), - [sym_number_literal] = ACTIONS(163), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(165), - [sym_false] = ACTIONS(165), - [anon_sym_NULL] = ACTIONS(105), - [anon_sym_nullptr] = ACTIONS(105), + [anon_sym___init] = ACTIONS(43), + [anon_sym___exit] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_RBRACE] = ACTIONS(493), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_const] = ACTIONS(53), + [anon_sym_constexpr] = ACTIONS(53), + [anon_sym_volatile] = ACTIONS(53), + [anon_sym_restrict] = ACTIONS(53), + [anon_sym___restrict__] = ACTIONS(53), + [anon_sym__Atomic] = ACTIONS(53), + [anon_sym__Noreturn] = ACTIONS(53), + [anon_sym_noreturn] = ACTIONS(53), + [anon_sym_alignas] = ACTIONS(55), + [anon_sym__Alignas] = ACTIONS(55), + [sym_primitive_type] = ACTIONS(57), + [anon_sym_enum] = ACTIONS(59), + [anon_sym_struct] = ACTIONS(61), + [anon_sym_union] = ACTIONS(63), + [anon_sym_if] = ACTIONS(395), + [anon_sym_switch] = ACTIONS(397), + [anon_sym_case] = ACTIONS(399), + [anon_sym_default] = ACTIONS(401), + [anon_sym_while] = ACTIONS(403), + [anon_sym_do] = ACTIONS(405), + [anon_sym_for] = ACTIONS(407), + [anon_sym_return] = ACTIONS(409), + [anon_sym_break] = ACTIONS(411), + [anon_sym_continue] = ACTIONS(413), + [anon_sym_goto] = ACTIONS(415), + [anon_sym___try] = ACTIONS(417), + [anon_sym___leave] = ACTIONS(419), + [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(87), + [anon_sym_sizeof] = ACTIONS(89), + [anon_sym___alignof__] = ACTIONS(91), + [anon_sym___alignof] = ACTIONS(91), + [anon_sym__alignof] = ACTIONS(91), + [anon_sym_alignof] = ACTIONS(91), + [anon_sym__Alignof] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(93), + [anon_sym__Generic] = ACTIONS(95), + [anon_sym_asm] = ACTIONS(97), + [anon_sym___asm__] = ACTIONS(97), + [sym_number_literal] = ACTIONS(165), + [anon_sym_L_SQUOTE] = ACTIONS(101), + [anon_sym_u_SQUOTE] = ACTIONS(101), + [anon_sym_U_SQUOTE] = ACTIONS(101), + [anon_sym_u8_SQUOTE] = ACTIONS(101), + [anon_sym_SQUOTE] = ACTIONS(101), + [anon_sym_L_DQUOTE] = ACTIONS(103), + [anon_sym_u_DQUOTE] = ACTIONS(103), + [anon_sym_U_DQUOTE] = ACTIONS(103), + [anon_sym_u8_DQUOTE] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_true] = ACTIONS(167), + [sym_false] = ACTIONS(167), + [anon_sym_NULL] = ACTIONS(107), + [anon_sym_nullptr] = ACTIONS(107), [sym_comment] = ACTIONS(3), }, [37] = { - [sym__block_item] = STATE(31), - [sym_preproc_include] = STATE(31), - [sym_preproc_def] = STATE(31), - [sym_preproc_function_def] = STATE(31), - [sym_preproc_call] = STATE(31), - [sym_preproc_if] = STATE(31), - [sym_preproc_ifdef] = STATE(31), - [sym_function_definition] = STATE(31), - [sym__old_style_function_definition] = STATE(279), - [sym_declaration] = STATE(31), - [sym_type_definition] = STATE(31), - [sym__declaration_modifiers] = STATE(697), - [sym__declaration_specifiers] = STATE(1121), - [sym_linkage_specification] = STATE(31), - [sym_attribute_specifier] = STATE(697), - [sym_attribute_declaration] = STATE(405), - [sym_ms_declspec_modifier] = STATE(697), - [sym_ms_call_modifier] = STATE(693), - [sym_compound_statement] = STATE(148), - [sym_storage_class_specifier] = STATE(697), - [sym_type_qualifier] = STATE(697), - [sym_alignas_qualifier] = STATE(703), - [sym_type_specifier] = STATE(784), - [sym_sized_type_specifier] = STATE(746), - [sym_enum_specifier] = STATE(746), - [sym_struct_specifier] = STATE(746), - [sym_union_specifier] = STATE(746), - [sym_attributed_statement] = STATE(280), - [sym_statement] = STATE(31), - [sym_labeled_statement] = STATE(148), - [sym_expression_statement] = STATE(148), - [sym_if_statement] = STATE(148), - [sym_switch_statement] = STATE(148), - [sym_case_statement] = STATE(148), - [sym_while_statement] = STATE(148), - [sym_do_statement] = STATE(148), - [sym_for_statement] = STATE(148), - [sym_return_statement] = STATE(148), - [sym_break_statement] = STATE(148), - [sym_continue_statement] = STATE(148), - [sym_goto_statement] = STATE(148), - [sym_seh_try_statement] = STATE(148), - [sym_seh_leave_statement] = STATE(148), - [sym_expression] = STATE(1033), - [sym__string] = STATE(663), - [sym_comma_expression] = STATE(1818), - [sym_conditional_expression] = STATE(663), - [sym_assignment_expression] = STATE(663), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(663), - [sym_binary_expression] = STATE(663), - [sym_update_expression] = STATE(663), - [sym_cast_expression] = STATE(663), - [sym_sizeof_expression] = STATE(663), - [sym_alignof_expression] = STATE(663), - [sym_offsetof_expression] = STATE(663), - [sym_generic_expression] = STATE(663), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(663), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(663), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(663), - [sym_concatenated_string] = STATE(663), - [sym_string_literal] = STATE(659), - [sym_null] = STATE(663), - [sym__empty_declaration] = STATE(31), - [sym_macro_type_specifier] = STATE(746), - [aux_sym_preproc_if_repeat1] = STATE(31), - [aux_sym__declaration_specifiers_repeat1] = STATE(697), - [aux_sym_attributed_declarator_repeat1] = STATE(375), - [aux_sym_sized_type_specifier_repeat1] = STATE(747), - [sym_identifier] = ACTIONS(366), - [aux_sym_preproc_include_token1] = ACTIONS(368), - [aux_sym_preproc_def_token1] = ACTIONS(370), - [aux_sym_preproc_if_token1] = ACTIONS(372), - [aux_sym_preproc_ifdef_token1] = ACTIONS(374), - [aux_sym_preproc_ifdef_token2] = ACTIONS(374), - [sym_preproc_directive] = ACTIONS(376), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(378), - [anon_sym___extension__] = ACTIONS(380), - [anon_sym_typedef] = ACTIONS(382), - [anon_sym_extern] = ACTIONS(384), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym___scanf] = ACTIONS(35), - [anon_sym___printf] = ACTIONS(35), - [anon_sym___read_mostly] = ACTIONS(37), - [anon_sym___must_hold] = ACTIONS(33), - [anon_sym___ro_after_init] = ACTIONS(37), - [anon_sym___init] = ACTIONS(37), - [anon_sym_LBRACK_LBRACK] = ACTIONS(39), - [anon_sym___declspec] = ACTIONS(41), - [anon_sym___cdecl] = ACTIONS(43), - [anon_sym___clrcall] = ACTIONS(43), - [anon_sym___stdcall] = ACTIONS(43), - [anon_sym___fastcall] = ACTIONS(43), - [anon_sym___thiscall] = ACTIONS(43), - [anon_sym___vectorcall] = ACTIONS(43), - [anon_sym_LBRACE] = ACTIONS(386), - [anon_sym_RBRACE] = ACTIONS(560), - [anon_sym_signed] = ACTIONS(47), - [anon_sym_unsigned] = ACTIONS(47), - [anon_sym_long] = ACTIONS(47), - [anon_sym_short] = ACTIONS(47), - [anon_sym_static] = ACTIONS(49), - [anon_sym_auto] = ACTIONS(49), - [anon_sym_register] = ACTIONS(49), - [anon_sym_inline] = ACTIONS(49), - [anon_sym___inline] = ACTIONS(49), - [anon_sym___inline__] = ACTIONS(49), - [anon_sym___forceinline] = ACTIONS(49), - [anon_sym_thread_local] = ACTIONS(49), - [anon_sym___thread] = ACTIONS(49), - [anon_sym_const] = ACTIONS(51), - [anon_sym_constexpr] = ACTIONS(51), - [anon_sym_volatile] = ACTIONS(51), - [anon_sym_restrict] = ACTIONS(51), - [anon_sym___restrict__] = ACTIONS(51), - [anon_sym__Atomic] = ACTIONS(51), - [anon_sym__Noreturn] = ACTIONS(51), - [anon_sym_noreturn] = ACTIONS(51), - [anon_sym_alignas] = ACTIONS(53), - [anon_sym__Alignas] = ACTIONS(53), - [sym_primitive_type] = ACTIONS(55), - [anon_sym_enum] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [anon_sym_if] = ACTIONS(390), - [anon_sym_switch] = ACTIONS(392), - [anon_sym_case] = ACTIONS(394), - [anon_sym_default] = ACTIONS(396), - [anon_sym_while] = ACTIONS(398), - [anon_sym_do] = ACTIONS(400), - [anon_sym_for] = ACTIONS(402), - [anon_sym_return] = ACTIONS(404), - [anon_sym_break] = ACTIONS(406), - [anon_sym_continue] = ACTIONS(408), - [anon_sym_goto] = ACTIONS(410), - [anon_sym___try] = ACTIONS(412), - [anon_sym___leave] = ACTIONS(414), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [anon_sym___alignof__] = ACTIONS(89), - [anon_sym___alignof] = ACTIONS(89), - [anon_sym__alignof] = ACTIONS(89), - [anon_sym_alignof] = ACTIONS(89), - [anon_sym__Alignof] = ACTIONS(89), - [anon_sym_offsetof] = ACTIONS(91), - [anon_sym__Generic] = ACTIONS(93), - [anon_sym_asm] = ACTIONS(95), - [anon_sym___asm__] = ACTIONS(95), - [sym_number_literal] = ACTIONS(163), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(165), - [sym_false] = ACTIONS(165), - [anon_sym_NULL] = ACTIONS(105), - [anon_sym_nullptr] = ACTIONS(105), + [sym__block_item] = STATE(37), + [sym_preproc_include] = STATE(37), + [sym_preproc_def] = STATE(37), + [sym_preproc_function_def] = STATE(37), + [sym_preproc_call] = STATE(37), + [sym_preproc_if] = STATE(37), + [sym_preproc_ifdef] = STATE(37), + [sym_function_definition] = STATE(37), + [sym__old_style_function_definition] = STATE(364), + [sym_declaration] = STATE(37), + [sym_type_definition] = STATE(37), + [sym__declaration_modifiers] = STATE(805), + [sym__declaration_specifiers] = STATE(1235), + [sym_linkage_specification] = STATE(37), + [sym_attribute_specifier] = STATE(805), + [sym_attribute_declaration] = STATE(468), + [sym_ms_declspec_modifier] = STATE(805), + [sym_macro_modifier] = STATE(778), + [sym_ms_call_modifier] = STATE(622), + [sym_compound_statement] = STATE(205), + [sym_storage_class_specifier] = STATE(805), + [sym_type_qualifier] = STATE(805), + [sym_alignas_qualifier] = STATE(799), + [sym_type_specifier] = STATE(902), + [sym_sized_type_specifier] = STATE(873), + [sym_enum_specifier] = STATE(873), + [sym_struct_specifier] = STATE(873), + [sym_union_specifier] = STATE(873), + [sym_attributed_statement] = STATE(310), + [sym_statement] = STATE(37), + [sym_labeled_statement] = STATE(205), + [sym_expression_statement] = STATE(205), + [sym_if_statement] = STATE(205), + [sym_switch_statement] = STATE(205), + [sym_case_statement] = STATE(205), + [sym_while_statement] = STATE(205), + [sym_do_statement] = STATE(205), + [sym_for_statement] = STATE(205), + [sym_return_statement] = STATE(205), + [sym_break_statement] = STATE(205), + [sym_continue_statement] = STATE(205), + [sym_goto_statement] = STATE(205), + [sym_seh_try_statement] = STATE(205), + [sym_seh_leave_statement] = STATE(205), + [sym_expression] = STATE(1193), + [sym__string] = STATE(758), + [sym_comma_expression] = STATE(2067), + [sym_conditional_expression] = STATE(758), + [sym_assignment_expression] = STATE(758), + [sym_pointer_expression] = STATE(944), + [sym_unary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_cast_expression] = STATE(758), + [sym_sizeof_expression] = STATE(758), + [sym_alignof_expression] = STATE(758), + [sym_offsetof_expression] = STATE(758), + [sym_generic_expression] = STATE(758), + [sym_subscript_expression] = STATE(944), + [sym_call_expression] = STATE(944), + [sym_gnu_asm_expression] = STATE(758), + [sym_field_expression] = STATE(944), + [sym_compound_literal_expression] = STATE(758), + [sym_parenthesized_expression] = STATE(944), + [sym_char_literal] = STATE(758), + [sym_concatenated_string] = STATE(758), + [sym_string_literal] = STATE(671), + [sym_null] = STATE(758), + [sym__empty_declaration] = STATE(37), + [sym_macro_type_specifier] = STATE(873), + [aux_sym_preproc_if_repeat1] = STATE(37), + [aux_sym__declaration_specifiers_repeat1] = STATE(805), + [aux_sym_attributed_declarator_repeat1] = STATE(415), + [aux_sym_sized_type_specifier_repeat1] = STATE(890), + [sym_identifier] = ACTIONS(495), + [aux_sym_preproc_include_token1] = ACTIONS(498), + [aux_sym_preproc_def_token1] = ACTIONS(501), + [aux_sym_preproc_if_token1] = ACTIONS(504), + [aux_sym_preproc_if_token2] = ACTIONS(219), + [aux_sym_preproc_ifdef_token1] = ACTIONS(507), + [aux_sym_preproc_ifdef_token2] = ACTIONS(507), + [sym_preproc_directive] = ACTIONS(510), + [anon_sym_LPAREN2] = ACTIONS(227), + [anon_sym_BANG] = ACTIONS(230), + [anon_sym_TILDE] = ACTIONS(230), + [anon_sym_DASH] = ACTIONS(233), + [anon_sym_PLUS] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(236), + [anon_sym_AMP] = ACTIONS(236), + [anon_sym_SEMI] = ACTIONS(513), + [anon_sym___extension__] = ACTIONS(516), + [anon_sym_typedef] = ACTIONS(519), + [anon_sym_extern] = ACTIONS(522), + [anon_sym___attribute__] = ACTIONS(251), + [anon_sym___scanf] = ACTIONS(254), + [anon_sym___printf] = ACTIONS(254), + [anon_sym___read_mostly] = ACTIONS(257), + [anon_sym___must_hold] = ACTIONS(251), + [anon_sym___ro_after_init] = ACTIONS(257), + [anon_sym___noreturn] = ACTIONS(257), + [anon_sym___cold] = ACTIONS(257), + [anon_sym_LBRACK_LBRACK] = ACTIONS(260), + [anon_sym___declspec] = ACTIONS(263), + [anon_sym___init] = ACTIONS(266), + [anon_sym___exit] = ACTIONS(266), + [anon_sym___cdecl] = ACTIONS(269), + [anon_sym___clrcall] = ACTIONS(269), + [anon_sym___stdcall] = ACTIONS(269), + [anon_sym___fastcall] = ACTIONS(269), + [anon_sym___thiscall] = ACTIONS(269), + [anon_sym___vectorcall] = ACTIONS(269), + [anon_sym_LBRACE] = ACTIONS(525), + [anon_sym_signed] = ACTIONS(275), + [anon_sym_unsigned] = ACTIONS(275), + [anon_sym_long] = ACTIONS(275), + [anon_sym_short] = ACTIONS(275), + [anon_sym_static] = ACTIONS(278), + [anon_sym_auto] = ACTIONS(278), + [anon_sym_register] = ACTIONS(278), + [anon_sym_inline] = ACTIONS(278), + [anon_sym___inline] = ACTIONS(278), + [anon_sym___inline__] = ACTIONS(278), + [anon_sym___forceinline] = ACTIONS(278), + [anon_sym_thread_local] = ACTIONS(278), + [anon_sym___thread] = ACTIONS(278), + [anon_sym_const] = ACTIONS(281), + [anon_sym_constexpr] = ACTIONS(281), + [anon_sym_volatile] = ACTIONS(281), + [anon_sym_restrict] = ACTIONS(281), + [anon_sym___restrict__] = ACTIONS(281), + [anon_sym__Atomic] = ACTIONS(281), + [anon_sym__Noreturn] = ACTIONS(281), + [anon_sym_noreturn] = ACTIONS(281), + [anon_sym_alignas] = ACTIONS(284), + [anon_sym__Alignas] = ACTIONS(284), + [sym_primitive_type] = ACTIONS(287), + [anon_sym_enum] = ACTIONS(290), + [anon_sym_struct] = ACTIONS(293), + [anon_sym_union] = ACTIONS(296), + [anon_sym_if] = ACTIONS(528), + [anon_sym_switch] = ACTIONS(531), + [anon_sym_case] = ACTIONS(534), + [anon_sym_default] = ACTIONS(537), + [anon_sym_while] = ACTIONS(540), + [anon_sym_do] = ACTIONS(543), + [anon_sym_for] = ACTIONS(546), + [anon_sym_return] = ACTIONS(549), + [anon_sym_break] = ACTIONS(552), + [anon_sym_continue] = ACTIONS(555), + [anon_sym_goto] = ACTIONS(558), + [anon_sym___try] = ACTIONS(561), + [anon_sym___leave] = ACTIONS(564), + [anon_sym_DASH_DASH] = ACTIONS(338), + [anon_sym_PLUS_PLUS] = ACTIONS(338), + [anon_sym_sizeof] = ACTIONS(341), + [anon_sym___alignof__] = ACTIONS(344), + [anon_sym___alignof] = ACTIONS(344), + [anon_sym__alignof] = ACTIONS(344), + [anon_sym_alignof] = ACTIONS(344), + [anon_sym__Alignof] = ACTIONS(344), + [anon_sym_offsetof] = ACTIONS(347), + [anon_sym__Generic] = ACTIONS(350), + [anon_sym_asm] = ACTIONS(353), + [anon_sym___asm__] = ACTIONS(353), + [sym_number_literal] = ACTIONS(356), + [anon_sym_L_SQUOTE] = ACTIONS(359), + [anon_sym_u_SQUOTE] = ACTIONS(359), + [anon_sym_U_SQUOTE] = ACTIONS(359), + [anon_sym_u8_SQUOTE] = ACTIONS(359), + [anon_sym_SQUOTE] = ACTIONS(359), + [anon_sym_L_DQUOTE] = ACTIONS(362), + [anon_sym_u_DQUOTE] = ACTIONS(362), + [anon_sym_U_DQUOTE] = ACTIONS(362), + [anon_sym_u8_DQUOTE] = ACTIONS(362), + [anon_sym_DQUOTE] = ACTIONS(362), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [anon_sym_NULL] = ACTIONS(368), + [anon_sym_nullptr] = ACTIONS(368), [sym_comment] = ACTIONS(3), }, [38] = { - [sym__block_item] = STATE(41), - [sym_preproc_include] = STATE(41), - [sym_preproc_def] = STATE(41), - [sym_preproc_function_def] = STATE(41), - [sym_preproc_call] = STATE(41), - [sym_preproc_if] = STATE(41), - [sym_preproc_ifdef] = STATE(41), - [sym_function_definition] = STATE(41), - [sym__old_style_function_definition] = STATE(279), - [sym_declaration] = STATE(41), - [sym_type_definition] = STATE(41), - [sym__declaration_modifiers] = STATE(697), - [sym__declaration_specifiers] = STATE(1121), - [sym_linkage_specification] = STATE(41), - [sym_attribute_specifier] = STATE(697), - [sym_attribute_declaration] = STATE(405), - [sym_ms_declspec_modifier] = STATE(697), - [sym_ms_call_modifier] = STATE(693), - [sym_compound_statement] = STATE(148), - [sym_storage_class_specifier] = STATE(697), - [sym_type_qualifier] = STATE(697), - [sym_alignas_qualifier] = STATE(703), - [sym_type_specifier] = STATE(784), - [sym_sized_type_specifier] = STATE(746), - [sym_enum_specifier] = STATE(746), - [sym_struct_specifier] = STATE(746), - [sym_union_specifier] = STATE(746), - [sym_attributed_statement] = STATE(280), - [sym_statement] = STATE(41), - [sym_labeled_statement] = STATE(148), - [sym_expression_statement] = STATE(148), - [sym_if_statement] = STATE(148), - [sym_switch_statement] = STATE(148), - [sym_case_statement] = STATE(148), - [sym_while_statement] = STATE(148), - [sym_do_statement] = STATE(148), - [sym_for_statement] = STATE(148), - [sym_return_statement] = STATE(148), - [sym_break_statement] = STATE(148), - [sym_continue_statement] = STATE(148), - [sym_goto_statement] = STATE(148), - [sym_seh_try_statement] = STATE(148), - [sym_seh_leave_statement] = STATE(148), - [sym_expression] = STATE(1033), - [sym__string] = STATE(663), - [sym_comma_expression] = STATE(1818), - [sym_conditional_expression] = STATE(663), - [sym_assignment_expression] = STATE(663), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(663), - [sym_binary_expression] = STATE(663), - [sym_update_expression] = STATE(663), - [sym_cast_expression] = STATE(663), - [sym_sizeof_expression] = STATE(663), - [sym_alignof_expression] = STATE(663), - [sym_offsetof_expression] = STATE(663), - [sym_generic_expression] = STATE(663), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(663), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(663), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(663), - [sym_concatenated_string] = STATE(663), - [sym_string_literal] = STATE(659), - [sym_null] = STATE(663), - [sym__empty_declaration] = STATE(41), - [sym_macro_type_specifier] = STATE(746), - [aux_sym_preproc_if_repeat1] = STATE(41), - [aux_sym__declaration_specifiers_repeat1] = STATE(697), - [aux_sym_attributed_declarator_repeat1] = STATE(375), - [aux_sym_sized_type_specifier_repeat1] = STATE(747), - [sym_identifier] = ACTIONS(366), - [aux_sym_preproc_include_token1] = ACTIONS(368), - [aux_sym_preproc_def_token1] = ACTIONS(370), - [aux_sym_preproc_if_token1] = ACTIONS(372), - [aux_sym_preproc_ifdef_token1] = ACTIONS(374), - [aux_sym_preproc_ifdef_token2] = ACTIONS(374), - [sym_preproc_directive] = ACTIONS(376), + [sym__block_item] = STATE(40), + [sym_preproc_include] = STATE(40), + [sym_preproc_def] = STATE(40), + [sym_preproc_function_def] = STATE(40), + [sym_preproc_call] = STATE(40), + [sym_preproc_if] = STATE(40), + [sym_preproc_ifdef] = STATE(40), + [sym_function_definition] = STATE(40), + [sym__old_style_function_definition] = STATE(312), + [sym_declaration] = STATE(40), + [sym_type_definition] = STATE(40), + [sym__declaration_modifiers] = STATE(805), + [sym__declaration_specifiers] = STATE(1234), + [sym_linkage_specification] = STATE(40), + [sym_attribute_specifier] = STATE(805), + [sym_attribute_declaration] = STATE(468), + [sym_ms_declspec_modifier] = STATE(805), + [sym_macro_modifier] = STATE(788), + [sym_ms_call_modifier] = STATE(627), + [sym_compound_statement] = STATE(290), + [sym_storage_class_specifier] = STATE(805), + [sym_type_qualifier] = STATE(805), + [sym_alignas_qualifier] = STATE(799), + [sym_type_specifier] = STATE(899), + [sym_sized_type_specifier] = STATE(873), + [sym_enum_specifier] = STATE(873), + [sym_struct_specifier] = STATE(873), + [sym_union_specifier] = STATE(873), + [sym_attributed_statement] = STATE(306), + [sym_statement] = STATE(40), + [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_seh_try_statement] = STATE(290), + [sym_seh_leave_statement] = STATE(290), + [sym_expression] = STATE(1167), + [sym__string] = STATE(758), + [sym_comma_expression] = STATE(2207), + [sym_conditional_expression] = STATE(758), + [sym_assignment_expression] = STATE(758), + [sym_pointer_expression] = STATE(944), + [sym_unary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_cast_expression] = STATE(758), + [sym_sizeof_expression] = STATE(758), + [sym_alignof_expression] = STATE(758), + [sym_offsetof_expression] = STATE(758), + [sym_generic_expression] = STATE(758), + [sym_subscript_expression] = STATE(944), + [sym_call_expression] = STATE(944), + [sym_gnu_asm_expression] = STATE(758), + [sym_field_expression] = STATE(944), + [sym_compound_literal_expression] = STATE(758), + [sym_parenthesized_expression] = STATE(944), + [sym_char_literal] = STATE(758), + [sym_concatenated_string] = STATE(758), + [sym_string_literal] = STATE(671), + [sym_null] = STATE(758), + [sym__empty_declaration] = STATE(40), + [sym_macro_type_specifier] = STATE(873), + [aux_sym_preproc_if_repeat1] = STATE(40), + [aux_sym__declaration_specifiers_repeat1] = STATE(805), + [aux_sym_attributed_declarator_repeat1] = STATE(428), + [aux_sym_sized_type_specifier_repeat1] = STATE(890), + [sym_identifier] = ACTIONS(371), + [aux_sym_preproc_include_token1] = ACTIONS(373), + [aux_sym_preproc_def_token1] = ACTIONS(375), + [aux_sym_preproc_if_token1] = ACTIONS(377), + [aux_sym_preproc_ifdef_token1] = ACTIONS(379), + [aux_sym_preproc_ifdef_token2] = ACTIONS(379), + [sym_preproc_directive] = ACTIONS(381), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -18679,356 +19465,181 @@ 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(378), - [anon_sym___extension__] = ACTIONS(380), - [anon_sym_typedef] = ACTIONS(382), - [anon_sym_extern] = ACTIONS(384), + [anon_sym_SEMI] = ACTIONS(383), + [anon_sym___extension__] = ACTIONS(385), + [anon_sym_typedef] = ACTIONS(387), + [anon_sym_extern] = ACTIONS(389), [anon_sym___attribute__] = ACTIONS(33), [anon_sym___scanf] = ACTIONS(35), [anon_sym___printf] = ACTIONS(35), [anon_sym___read_mostly] = ACTIONS(37), [anon_sym___must_hold] = ACTIONS(33), [anon_sym___ro_after_init] = ACTIONS(37), - [anon_sym___init] = ACTIONS(37), + [anon_sym___noreturn] = ACTIONS(37), + [anon_sym___cold] = ACTIONS(37), [anon_sym_LBRACK_LBRACK] = ACTIONS(39), [anon_sym___declspec] = ACTIONS(41), - [anon_sym___cdecl] = ACTIONS(43), - [anon_sym___clrcall] = ACTIONS(43), - [anon_sym___stdcall] = ACTIONS(43), - [anon_sym___fastcall] = ACTIONS(43), - [anon_sym___thiscall] = ACTIONS(43), - [anon_sym___vectorcall] = ACTIONS(43), - [anon_sym_LBRACE] = ACTIONS(386), - [anon_sym_RBRACE] = ACTIONS(562), - [anon_sym_signed] = ACTIONS(47), - [anon_sym_unsigned] = ACTIONS(47), - [anon_sym_long] = ACTIONS(47), - [anon_sym_short] = ACTIONS(47), - [anon_sym_static] = ACTIONS(49), - [anon_sym_auto] = ACTIONS(49), - [anon_sym_register] = ACTIONS(49), - [anon_sym_inline] = ACTIONS(49), - [anon_sym___inline] = ACTIONS(49), - [anon_sym___inline__] = ACTIONS(49), - [anon_sym___forceinline] = ACTIONS(49), - [anon_sym_thread_local] = ACTIONS(49), - [anon_sym___thread] = ACTIONS(49), - [anon_sym_const] = ACTIONS(51), - [anon_sym_constexpr] = ACTIONS(51), - [anon_sym_volatile] = ACTIONS(51), - [anon_sym_restrict] = ACTIONS(51), - [anon_sym___restrict__] = ACTIONS(51), - [anon_sym__Atomic] = ACTIONS(51), - [anon_sym__Noreturn] = ACTIONS(51), - [anon_sym_noreturn] = ACTIONS(51), - [anon_sym_alignas] = ACTIONS(53), - [anon_sym__Alignas] = ACTIONS(53), - [sym_primitive_type] = ACTIONS(55), - [anon_sym_enum] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [anon_sym_if] = ACTIONS(390), - [anon_sym_switch] = ACTIONS(392), - [anon_sym_case] = ACTIONS(394), - [anon_sym_default] = ACTIONS(396), - [anon_sym_while] = ACTIONS(398), - [anon_sym_do] = ACTIONS(400), - [anon_sym_for] = ACTIONS(402), - [anon_sym_return] = ACTIONS(404), - [anon_sym_break] = ACTIONS(406), - [anon_sym_continue] = ACTIONS(408), - [anon_sym_goto] = ACTIONS(410), - [anon_sym___try] = ACTIONS(412), - [anon_sym___leave] = ACTIONS(414), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [anon_sym___alignof__] = ACTIONS(89), - [anon_sym___alignof] = ACTIONS(89), - [anon_sym__alignof] = ACTIONS(89), - [anon_sym_alignof] = ACTIONS(89), - [anon_sym__Alignof] = ACTIONS(89), - [anon_sym_offsetof] = ACTIONS(91), - [anon_sym__Generic] = ACTIONS(93), - [anon_sym_asm] = ACTIONS(95), - [anon_sym___asm__] = ACTIONS(95), - [sym_number_literal] = ACTIONS(163), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(165), - [sym_false] = ACTIONS(165), - [anon_sym_NULL] = ACTIONS(105), - [anon_sym_nullptr] = ACTIONS(105), + [anon_sym___init] = ACTIONS(43), + [anon_sym___exit] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_RBRACE] = ACTIONS(567), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_const] = ACTIONS(53), + [anon_sym_constexpr] = ACTIONS(53), + [anon_sym_volatile] = ACTIONS(53), + [anon_sym_restrict] = ACTIONS(53), + [anon_sym___restrict__] = ACTIONS(53), + [anon_sym__Atomic] = ACTIONS(53), + [anon_sym__Noreturn] = ACTIONS(53), + [anon_sym_noreturn] = ACTIONS(53), + [anon_sym_alignas] = ACTIONS(55), + [anon_sym__Alignas] = ACTIONS(55), + [sym_primitive_type] = ACTIONS(57), + [anon_sym_enum] = ACTIONS(59), + [anon_sym_struct] = ACTIONS(61), + [anon_sym_union] = ACTIONS(63), + [anon_sym_if] = ACTIONS(395), + [anon_sym_switch] = ACTIONS(397), + [anon_sym_case] = ACTIONS(399), + [anon_sym_default] = ACTIONS(401), + [anon_sym_while] = ACTIONS(403), + [anon_sym_do] = ACTIONS(405), + [anon_sym_for] = ACTIONS(407), + [anon_sym_return] = ACTIONS(409), + [anon_sym_break] = ACTIONS(411), + [anon_sym_continue] = ACTIONS(413), + [anon_sym_goto] = ACTIONS(415), + [anon_sym___try] = ACTIONS(417), + [anon_sym___leave] = ACTIONS(419), + [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(87), + [anon_sym_sizeof] = ACTIONS(89), + [anon_sym___alignof__] = ACTIONS(91), + [anon_sym___alignof] = ACTIONS(91), + [anon_sym__alignof] = ACTIONS(91), + [anon_sym_alignof] = ACTIONS(91), + [anon_sym__Alignof] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(93), + [anon_sym__Generic] = ACTIONS(95), + [anon_sym_asm] = ACTIONS(97), + [anon_sym___asm__] = ACTIONS(97), + [sym_number_literal] = ACTIONS(165), + [anon_sym_L_SQUOTE] = ACTIONS(101), + [anon_sym_u_SQUOTE] = ACTIONS(101), + [anon_sym_U_SQUOTE] = ACTIONS(101), + [anon_sym_u8_SQUOTE] = ACTIONS(101), + [anon_sym_SQUOTE] = ACTIONS(101), + [anon_sym_L_DQUOTE] = ACTIONS(103), + [anon_sym_u_DQUOTE] = ACTIONS(103), + [anon_sym_U_DQUOTE] = ACTIONS(103), + [anon_sym_u8_DQUOTE] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_true] = ACTIONS(167), + [sym_false] = ACTIONS(167), + [anon_sym_NULL] = ACTIONS(107), + [anon_sym_nullptr] = ACTIONS(107), [sym_comment] = ACTIONS(3), }, [39] = { - [sym__block_item] = STATE(39), - [sym_preproc_include] = STATE(39), - [sym_preproc_def] = STATE(39), - [sym_preproc_function_def] = STATE(39), - [sym_preproc_call] = STATE(39), - [sym_preproc_if] = STATE(39), - [sym_preproc_ifdef] = STATE(39), - [sym_function_definition] = STATE(39), - [sym__old_style_function_definition] = STATE(279), - [sym_declaration] = STATE(39), - [sym_type_definition] = STATE(39), - [sym__declaration_modifiers] = STATE(697), - [sym__declaration_specifiers] = STATE(1121), - [sym_linkage_specification] = STATE(39), - [sym_attribute_specifier] = STATE(697), - [sym_attribute_declaration] = STATE(405), - [sym_ms_declspec_modifier] = STATE(697), - [sym_ms_call_modifier] = STATE(693), - [sym_compound_statement] = STATE(148), - [sym_storage_class_specifier] = STATE(697), - [sym_type_qualifier] = STATE(697), - [sym_alignas_qualifier] = STATE(703), - [sym_type_specifier] = STATE(784), - [sym_sized_type_specifier] = STATE(746), - [sym_enum_specifier] = STATE(746), - [sym_struct_specifier] = STATE(746), - [sym_union_specifier] = STATE(746), - [sym_attributed_statement] = STATE(280), - [sym_statement] = STATE(39), - [sym_labeled_statement] = STATE(148), - [sym_expression_statement] = STATE(148), - [sym_if_statement] = STATE(148), - [sym_switch_statement] = STATE(148), - [sym_case_statement] = STATE(148), - [sym_while_statement] = STATE(148), - [sym_do_statement] = STATE(148), - [sym_for_statement] = STATE(148), - [sym_return_statement] = STATE(148), - [sym_break_statement] = STATE(148), - [sym_continue_statement] = STATE(148), - [sym_goto_statement] = STATE(148), - [sym_seh_try_statement] = STATE(148), - [sym_seh_leave_statement] = STATE(148), - [sym_expression] = STATE(1033), - [sym__string] = STATE(663), - [sym_comma_expression] = STATE(1818), - [sym_conditional_expression] = STATE(663), - [sym_assignment_expression] = STATE(663), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(663), - [sym_binary_expression] = STATE(663), - [sym_update_expression] = STATE(663), - [sym_cast_expression] = STATE(663), - [sym_sizeof_expression] = STATE(663), - [sym_alignof_expression] = STATE(663), - [sym_offsetof_expression] = STATE(663), - [sym_generic_expression] = STATE(663), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(663), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(663), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(663), - [sym_concatenated_string] = STATE(663), - [sym_string_literal] = STATE(659), - [sym_null] = STATE(663), - [sym__empty_declaration] = STATE(39), - [sym_macro_type_specifier] = STATE(746), - [aux_sym_preproc_if_repeat1] = STATE(39), - [aux_sym__declaration_specifiers_repeat1] = STATE(697), - [aux_sym_attributed_declarator_repeat1] = STATE(375), - [aux_sym_sized_type_specifier_repeat1] = STATE(747), - [sym_identifier] = ACTIONS(564), - [aux_sym_preproc_include_token1] = ACTIONS(567), - [aux_sym_preproc_def_token1] = ACTIONS(570), - [aux_sym_preproc_if_token1] = ACTIONS(573), - [aux_sym_preproc_ifdef_token1] = ACTIONS(576), - [aux_sym_preproc_ifdef_token2] = ACTIONS(576), - [sym_preproc_directive] = ACTIONS(579), - [anon_sym_LPAREN2] = ACTIONS(225), - [anon_sym_BANG] = ACTIONS(228), - [anon_sym_TILDE] = ACTIONS(228), - [anon_sym_DASH] = ACTIONS(231), - [anon_sym_PLUS] = ACTIONS(231), - [anon_sym_STAR] = ACTIONS(234), - [anon_sym_AMP] = ACTIONS(234), - [anon_sym_SEMI] = ACTIONS(582), - [anon_sym___extension__] = ACTIONS(585), - [anon_sym_typedef] = ACTIONS(588), - [anon_sym_extern] = ACTIONS(591), - [anon_sym___attribute__] = ACTIONS(249), - [anon_sym___scanf] = ACTIONS(252), - [anon_sym___printf] = ACTIONS(252), - [anon_sym___read_mostly] = ACTIONS(255), - [anon_sym___must_hold] = ACTIONS(249), - [anon_sym___ro_after_init] = ACTIONS(255), - [anon_sym___init] = ACTIONS(255), - [anon_sym_LBRACK_LBRACK] = ACTIONS(258), - [anon_sym___declspec] = ACTIONS(261), - [anon_sym___cdecl] = ACTIONS(264), - [anon_sym___clrcall] = ACTIONS(264), - [anon_sym___stdcall] = ACTIONS(264), - [anon_sym___fastcall] = ACTIONS(264), - [anon_sym___thiscall] = ACTIONS(264), - [anon_sym___vectorcall] = ACTIONS(264), - [anon_sym_LBRACE] = ACTIONS(594), - [anon_sym_RBRACE] = ACTIONS(597), - [anon_sym_signed] = ACTIONS(270), - [anon_sym_unsigned] = ACTIONS(270), - [anon_sym_long] = ACTIONS(270), - [anon_sym_short] = ACTIONS(270), - [anon_sym_static] = ACTIONS(273), - [anon_sym_auto] = ACTIONS(273), - [anon_sym_register] = ACTIONS(273), - [anon_sym_inline] = ACTIONS(273), - [anon_sym___inline] = ACTIONS(273), - [anon_sym___inline__] = ACTIONS(273), - [anon_sym___forceinline] = ACTIONS(273), - [anon_sym_thread_local] = ACTIONS(273), - [anon_sym___thread] = ACTIONS(273), - [anon_sym_const] = ACTIONS(276), - [anon_sym_constexpr] = ACTIONS(276), - [anon_sym_volatile] = ACTIONS(276), - [anon_sym_restrict] = ACTIONS(276), - [anon_sym___restrict__] = ACTIONS(276), - [anon_sym__Atomic] = ACTIONS(276), - [anon_sym__Noreturn] = ACTIONS(276), - [anon_sym_noreturn] = ACTIONS(276), - [anon_sym_alignas] = ACTIONS(279), - [anon_sym__Alignas] = ACTIONS(279), - [sym_primitive_type] = ACTIONS(282), - [anon_sym_enum] = ACTIONS(285), - [anon_sym_struct] = ACTIONS(288), - [anon_sym_union] = ACTIONS(291), - [anon_sym_if] = ACTIONS(599), - [anon_sym_switch] = ACTIONS(602), - [anon_sym_case] = ACTIONS(605), - [anon_sym_default] = ACTIONS(608), - [anon_sym_while] = ACTIONS(611), - [anon_sym_do] = ACTIONS(614), - [anon_sym_for] = ACTIONS(617), - [anon_sym_return] = ACTIONS(620), - [anon_sym_break] = ACTIONS(623), - [anon_sym_continue] = ACTIONS(626), - [anon_sym_goto] = ACTIONS(629), - [anon_sym___try] = ACTIONS(632), - [anon_sym___leave] = ACTIONS(635), - [anon_sym_DASH_DASH] = ACTIONS(333), - [anon_sym_PLUS_PLUS] = ACTIONS(333), - [anon_sym_sizeof] = ACTIONS(336), - [anon_sym___alignof__] = ACTIONS(339), - [anon_sym___alignof] = ACTIONS(339), - [anon_sym__alignof] = ACTIONS(339), - [anon_sym_alignof] = ACTIONS(339), - [anon_sym__Alignof] = ACTIONS(339), - [anon_sym_offsetof] = ACTIONS(342), - [anon_sym__Generic] = ACTIONS(345), - [anon_sym_asm] = ACTIONS(348), - [anon_sym___asm__] = ACTIONS(348), - [sym_number_literal] = ACTIONS(351), - [anon_sym_L_SQUOTE] = ACTIONS(354), - [anon_sym_u_SQUOTE] = ACTIONS(354), - [anon_sym_U_SQUOTE] = ACTIONS(354), - [anon_sym_u8_SQUOTE] = ACTIONS(354), - [anon_sym_SQUOTE] = ACTIONS(354), - [anon_sym_L_DQUOTE] = ACTIONS(357), - [anon_sym_u_DQUOTE] = ACTIONS(357), - [anon_sym_U_DQUOTE] = ACTIONS(357), - [anon_sym_u8_DQUOTE] = ACTIONS(357), - [anon_sym_DQUOTE] = ACTIONS(357), - [sym_true] = ACTIONS(360), - [sym_false] = ACTIONS(360), - [anon_sym_NULL] = ACTIONS(363), - [anon_sym_nullptr] = ACTIONS(363), - [sym_comment] = ACTIONS(3), - }, - [40] = { - [sym__block_item] = STATE(25), - [sym_preproc_include] = STATE(25), - [sym_preproc_def] = STATE(25), - [sym_preproc_function_def] = STATE(25), - [sym_preproc_call] = STATE(25), - [sym_preproc_if] = STATE(25), - [sym_preproc_ifdef] = STATE(25), - [sym_function_definition] = STATE(25), - [sym__old_style_function_definition] = STATE(266), - [sym_declaration] = STATE(25), - [sym_type_definition] = STATE(25), - [sym__declaration_modifiers] = STATE(697), - [sym__declaration_specifiers] = STATE(1124), - [sym_linkage_specification] = STATE(25), - [sym_attribute_specifier] = STATE(697), - [sym_attribute_declaration] = STATE(405), - [sym_ms_declspec_modifier] = STATE(697), - [sym_ms_call_modifier] = STATE(680), - [sym_compound_statement] = STATE(174), - [sym_storage_class_specifier] = STATE(697), - [sym_type_qualifier] = STATE(697), - [sym_alignas_qualifier] = STATE(703), - [sym_type_specifier] = STATE(802), - [sym_sized_type_specifier] = STATE(746), - [sym_enum_specifier] = STATE(746), - [sym_struct_specifier] = STATE(746), - [sym_union_specifier] = STATE(746), - [sym_attributed_statement] = STATE(267), - [sym_statement] = STATE(25), - [sym_labeled_statement] = STATE(174), - [sym_expression_statement] = STATE(174), - [sym_if_statement] = STATE(174), - [sym_switch_statement] = STATE(174), - [sym_case_statement] = STATE(174), - [sym_while_statement] = STATE(174), - [sym_do_statement] = STATE(174), - [sym_for_statement] = STATE(174), - [sym_return_statement] = STATE(174), - [sym_break_statement] = STATE(174), - [sym_continue_statement] = STATE(174), - [sym_goto_statement] = STATE(174), - [sym_seh_try_statement] = STATE(174), - [sym_seh_leave_statement] = STATE(174), - [sym_expression] = STATE(1031), - [sym__string] = STATE(663), - [sym_comma_expression] = STATE(1792), - [sym_conditional_expression] = STATE(663), - [sym_assignment_expression] = STATE(663), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(663), - [sym_binary_expression] = STATE(663), - [sym_update_expression] = STATE(663), - [sym_cast_expression] = STATE(663), - [sym_sizeof_expression] = STATE(663), - [sym_alignof_expression] = STATE(663), - [sym_offsetof_expression] = STATE(663), - [sym_generic_expression] = STATE(663), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(663), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(663), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(663), - [sym_concatenated_string] = STATE(663), - [sym_string_literal] = STATE(659), - [sym_null] = STATE(663), - [sym__empty_declaration] = STATE(25), - [sym_macro_type_specifier] = STATE(746), - [aux_sym_preproc_if_repeat1] = STATE(25), - [aux_sym__declaration_specifiers_repeat1] = STATE(697), - [aux_sym_attributed_declarator_repeat1] = STATE(373), - [aux_sym_sized_type_specifier_repeat1] = STATE(747), - [sym_identifier] = ACTIONS(502), - [aux_sym_preproc_include_token1] = ACTIONS(504), - [aux_sym_preproc_def_token1] = ACTIONS(506), - [aux_sym_preproc_if_token1] = ACTIONS(508), - [aux_sym_preproc_if_token2] = ACTIONS(638), - [aux_sym_preproc_ifdef_token1] = ACTIONS(512), - [aux_sym_preproc_ifdef_token2] = ACTIONS(512), - [sym_preproc_directive] = ACTIONS(514), + [sym__block_item] = STATE(40), + [sym_preproc_include] = STATE(40), + [sym_preproc_def] = STATE(40), + [sym_preproc_function_def] = STATE(40), + [sym_preproc_call] = STATE(40), + [sym_preproc_if] = STATE(40), + [sym_preproc_ifdef] = STATE(40), + [sym_function_definition] = STATE(40), + [sym__old_style_function_definition] = STATE(312), + [sym_declaration] = STATE(40), + [sym_type_definition] = STATE(40), + [sym__declaration_modifiers] = STATE(805), + [sym__declaration_specifiers] = STATE(1234), + [sym_linkage_specification] = STATE(40), + [sym_attribute_specifier] = STATE(805), + [sym_attribute_declaration] = STATE(468), + [sym_ms_declspec_modifier] = STATE(805), + [sym_macro_modifier] = STATE(788), + [sym_ms_call_modifier] = STATE(627), + [sym_compound_statement] = STATE(290), + [sym_storage_class_specifier] = STATE(805), + [sym_type_qualifier] = STATE(805), + [sym_alignas_qualifier] = STATE(799), + [sym_type_specifier] = STATE(899), + [sym_sized_type_specifier] = STATE(873), + [sym_enum_specifier] = STATE(873), + [sym_struct_specifier] = STATE(873), + [sym_union_specifier] = STATE(873), + [sym_attributed_statement] = STATE(306), + [sym_statement] = STATE(40), + [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_seh_try_statement] = STATE(290), + [sym_seh_leave_statement] = STATE(290), + [sym_expression] = STATE(1167), + [sym__string] = STATE(758), + [sym_comma_expression] = STATE(2207), + [sym_conditional_expression] = STATE(758), + [sym_assignment_expression] = STATE(758), + [sym_pointer_expression] = STATE(944), + [sym_unary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_cast_expression] = STATE(758), + [sym_sizeof_expression] = STATE(758), + [sym_alignof_expression] = STATE(758), + [sym_offsetof_expression] = STATE(758), + [sym_generic_expression] = STATE(758), + [sym_subscript_expression] = STATE(944), + [sym_call_expression] = STATE(944), + [sym_gnu_asm_expression] = STATE(758), + [sym_field_expression] = STATE(944), + [sym_compound_literal_expression] = STATE(758), + [sym_parenthesized_expression] = STATE(944), + [sym_char_literal] = STATE(758), + [sym_concatenated_string] = STATE(758), + [sym_string_literal] = STATE(671), + [sym_null] = STATE(758), + [sym__empty_declaration] = STATE(40), + [sym_macro_type_specifier] = STATE(873), + [aux_sym_preproc_if_repeat1] = STATE(40), + [aux_sym__declaration_specifiers_repeat1] = STATE(805), + [aux_sym_attributed_declarator_repeat1] = STATE(428), + [aux_sym_sized_type_specifier_repeat1] = STATE(890), + [sym_identifier] = ACTIONS(371), + [aux_sym_preproc_include_token1] = ACTIONS(373), + [aux_sym_preproc_def_token1] = ACTIONS(375), + [aux_sym_preproc_if_token1] = ACTIONS(377), + [aux_sym_preproc_ifdef_token1] = ACTIONS(379), + [aux_sym_preproc_ifdef_token2] = ACTIONS(379), + [sym_preproc_directive] = ACTIONS(381), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -19036,176 +19647,363 @@ 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(516), - [anon_sym___extension__] = ACTIONS(518), - [anon_sym_typedef] = ACTIONS(520), - [anon_sym_extern] = ACTIONS(522), + [anon_sym_SEMI] = ACTIONS(383), + [anon_sym___extension__] = ACTIONS(385), + [anon_sym_typedef] = ACTIONS(387), + [anon_sym_extern] = ACTIONS(389), [anon_sym___attribute__] = ACTIONS(33), [anon_sym___scanf] = ACTIONS(35), [anon_sym___printf] = ACTIONS(35), [anon_sym___read_mostly] = ACTIONS(37), [anon_sym___must_hold] = ACTIONS(33), [anon_sym___ro_after_init] = ACTIONS(37), - [anon_sym___init] = ACTIONS(37), + [anon_sym___noreturn] = ACTIONS(37), + [anon_sym___cold] = ACTIONS(37), [anon_sym_LBRACK_LBRACK] = ACTIONS(39), [anon_sym___declspec] = ACTIONS(41), - [anon_sym___cdecl] = ACTIONS(43), - [anon_sym___clrcall] = ACTIONS(43), - [anon_sym___stdcall] = ACTIONS(43), - [anon_sym___fastcall] = ACTIONS(43), - [anon_sym___thiscall] = ACTIONS(43), - [anon_sym___vectorcall] = ACTIONS(43), - [anon_sym_LBRACE] = ACTIONS(524), - [anon_sym_signed] = ACTIONS(47), - [anon_sym_unsigned] = ACTIONS(47), - [anon_sym_long] = ACTIONS(47), - [anon_sym_short] = ACTIONS(47), - [anon_sym_static] = ACTIONS(49), - [anon_sym_auto] = ACTIONS(49), - [anon_sym_register] = ACTIONS(49), - [anon_sym_inline] = ACTIONS(49), - [anon_sym___inline] = ACTIONS(49), - [anon_sym___inline__] = ACTIONS(49), - [anon_sym___forceinline] = ACTIONS(49), - [anon_sym_thread_local] = ACTIONS(49), - [anon_sym___thread] = ACTIONS(49), - [anon_sym_const] = ACTIONS(51), - [anon_sym_constexpr] = ACTIONS(51), - [anon_sym_volatile] = ACTIONS(51), - [anon_sym_restrict] = ACTIONS(51), - [anon_sym___restrict__] = ACTIONS(51), - [anon_sym__Atomic] = ACTIONS(51), - [anon_sym__Noreturn] = ACTIONS(51), - [anon_sym_noreturn] = ACTIONS(51), - [anon_sym_alignas] = ACTIONS(53), - [anon_sym__Alignas] = ACTIONS(53), - [sym_primitive_type] = ACTIONS(55), - [anon_sym_enum] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [anon_sym_if] = ACTIONS(526), - [anon_sym_switch] = ACTIONS(528), - [anon_sym_case] = ACTIONS(530), - [anon_sym_default] = ACTIONS(532), - [anon_sym_while] = ACTIONS(534), - [anon_sym_do] = ACTIONS(536), - [anon_sym_for] = ACTIONS(538), - [anon_sym_return] = ACTIONS(540), - [anon_sym_break] = ACTIONS(542), - [anon_sym_continue] = ACTIONS(544), - [anon_sym_goto] = ACTIONS(546), - [anon_sym___try] = ACTIONS(548), - [anon_sym___leave] = ACTIONS(550), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [anon_sym___alignof__] = ACTIONS(89), - [anon_sym___alignof] = ACTIONS(89), - [anon_sym__alignof] = ACTIONS(89), - [anon_sym_alignof] = ACTIONS(89), - [anon_sym__Alignof] = ACTIONS(89), - [anon_sym_offsetof] = ACTIONS(91), - [anon_sym__Generic] = ACTIONS(93), - [anon_sym_asm] = ACTIONS(95), - [anon_sym___asm__] = ACTIONS(95), - [sym_number_literal] = ACTIONS(163), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(165), - [sym_false] = ACTIONS(165), - [anon_sym_NULL] = ACTIONS(105), - [anon_sym_nullptr] = ACTIONS(105), + [anon_sym___init] = ACTIONS(43), + [anon_sym___exit] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_RBRACE] = ACTIONS(569), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_const] = ACTIONS(53), + [anon_sym_constexpr] = ACTIONS(53), + [anon_sym_volatile] = ACTIONS(53), + [anon_sym_restrict] = ACTIONS(53), + [anon_sym___restrict__] = ACTIONS(53), + [anon_sym__Atomic] = ACTIONS(53), + [anon_sym__Noreturn] = ACTIONS(53), + [anon_sym_noreturn] = ACTIONS(53), + [anon_sym_alignas] = ACTIONS(55), + [anon_sym__Alignas] = ACTIONS(55), + [sym_primitive_type] = ACTIONS(57), + [anon_sym_enum] = ACTIONS(59), + [anon_sym_struct] = ACTIONS(61), + [anon_sym_union] = ACTIONS(63), + [anon_sym_if] = ACTIONS(395), + [anon_sym_switch] = ACTIONS(397), + [anon_sym_case] = ACTIONS(399), + [anon_sym_default] = ACTIONS(401), + [anon_sym_while] = ACTIONS(403), + [anon_sym_do] = ACTIONS(405), + [anon_sym_for] = ACTIONS(407), + [anon_sym_return] = ACTIONS(409), + [anon_sym_break] = ACTIONS(411), + [anon_sym_continue] = ACTIONS(413), + [anon_sym_goto] = ACTIONS(415), + [anon_sym___try] = ACTIONS(417), + [anon_sym___leave] = ACTIONS(419), + [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(87), + [anon_sym_sizeof] = ACTIONS(89), + [anon_sym___alignof__] = ACTIONS(91), + [anon_sym___alignof] = ACTIONS(91), + [anon_sym__alignof] = ACTIONS(91), + [anon_sym_alignof] = ACTIONS(91), + [anon_sym__Alignof] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(93), + [anon_sym__Generic] = ACTIONS(95), + [anon_sym_asm] = ACTIONS(97), + [anon_sym___asm__] = ACTIONS(97), + [sym_number_literal] = ACTIONS(165), + [anon_sym_L_SQUOTE] = ACTIONS(101), + [anon_sym_u_SQUOTE] = ACTIONS(101), + [anon_sym_U_SQUOTE] = ACTIONS(101), + [anon_sym_u8_SQUOTE] = ACTIONS(101), + [anon_sym_SQUOTE] = ACTIONS(101), + [anon_sym_L_DQUOTE] = ACTIONS(103), + [anon_sym_u_DQUOTE] = ACTIONS(103), + [anon_sym_U_DQUOTE] = ACTIONS(103), + [anon_sym_u8_DQUOTE] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_true] = ACTIONS(167), + [sym_false] = ACTIONS(167), + [anon_sym_NULL] = ACTIONS(107), + [anon_sym_nullptr] = ACTIONS(107), + [sym_comment] = ACTIONS(3), + }, + [40] = { + [sym__block_item] = STATE(40), + [sym_preproc_include] = STATE(40), + [sym_preproc_def] = STATE(40), + [sym_preproc_function_def] = STATE(40), + [sym_preproc_call] = STATE(40), + [sym_preproc_if] = STATE(40), + [sym_preproc_ifdef] = STATE(40), + [sym_function_definition] = STATE(40), + [sym__old_style_function_definition] = STATE(312), + [sym_declaration] = STATE(40), + [sym_type_definition] = STATE(40), + [sym__declaration_modifiers] = STATE(805), + [sym__declaration_specifiers] = STATE(1234), + [sym_linkage_specification] = STATE(40), + [sym_attribute_specifier] = STATE(805), + [sym_attribute_declaration] = STATE(468), + [sym_ms_declspec_modifier] = STATE(805), + [sym_macro_modifier] = STATE(788), + [sym_ms_call_modifier] = STATE(627), + [sym_compound_statement] = STATE(290), + [sym_storage_class_specifier] = STATE(805), + [sym_type_qualifier] = STATE(805), + [sym_alignas_qualifier] = STATE(799), + [sym_type_specifier] = STATE(899), + [sym_sized_type_specifier] = STATE(873), + [sym_enum_specifier] = STATE(873), + [sym_struct_specifier] = STATE(873), + [sym_union_specifier] = STATE(873), + [sym_attributed_statement] = STATE(306), + [sym_statement] = STATE(40), + [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_seh_try_statement] = STATE(290), + [sym_seh_leave_statement] = STATE(290), + [sym_expression] = STATE(1167), + [sym__string] = STATE(758), + [sym_comma_expression] = STATE(2207), + [sym_conditional_expression] = STATE(758), + [sym_assignment_expression] = STATE(758), + [sym_pointer_expression] = STATE(944), + [sym_unary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_cast_expression] = STATE(758), + [sym_sizeof_expression] = STATE(758), + [sym_alignof_expression] = STATE(758), + [sym_offsetof_expression] = STATE(758), + [sym_generic_expression] = STATE(758), + [sym_subscript_expression] = STATE(944), + [sym_call_expression] = STATE(944), + [sym_gnu_asm_expression] = STATE(758), + [sym_field_expression] = STATE(944), + [sym_compound_literal_expression] = STATE(758), + [sym_parenthesized_expression] = STATE(944), + [sym_char_literal] = STATE(758), + [sym_concatenated_string] = STATE(758), + [sym_string_literal] = STATE(671), + [sym_null] = STATE(758), + [sym__empty_declaration] = STATE(40), + [sym_macro_type_specifier] = STATE(873), + [aux_sym_preproc_if_repeat1] = STATE(40), + [aux_sym__declaration_specifiers_repeat1] = STATE(805), + [aux_sym_attributed_declarator_repeat1] = STATE(428), + [aux_sym_sized_type_specifier_repeat1] = STATE(890), + [sym_identifier] = ACTIONS(571), + [aux_sym_preproc_include_token1] = ACTIONS(574), + [aux_sym_preproc_def_token1] = ACTIONS(577), + [aux_sym_preproc_if_token1] = ACTIONS(580), + [aux_sym_preproc_ifdef_token1] = ACTIONS(583), + [aux_sym_preproc_ifdef_token2] = ACTIONS(583), + [sym_preproc_directive] = ACTIONS(586), + [anon_sym_LPAREN2] = ACTIONS(227), + [anon_sym_BANG] = ACTIONS(230), + [anon_sym_TILDE] = ACTIONS(230), + [anon_sym_DASH] = ACTIONS(233), + [anon_sym_PLUS] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(236), + [anon_sym_AMP] = ACTIONS(236), + [anon_sym_SEMI] = ACTIONS(589), + [anon_sym___extension__] = ACTIONS(592), + [anon_sym_typedef] = ACTIONS(595), + [anon_sym_extern] = ACTIONS(598), + [anon_sym___attribute__] = ACTIONS(251), + [anon_sym___scanf] = ACTIONS(254), + [anon_sym___printf] = ACTIONS(254), + [anon_sym___read_mostly] = ACTIONS(257), + [anon_sym___must_hold] = ACTIONS(251), + [anon_sym___ro_after_init] = ACTIONS(257), + [anon_sym___noreturn] = ACTIONS(257), + [anon_sym___cold] = ACTIONS(257), + [anon_sym_LBRACK_LBRACK] = ACTIONS(260), + [anon_sym___declspec] = ACTIONS(263), + [anon_sym___init] = ACTIONS(266), + [anon_sym___exit] = ACTIONS(266), + [anon_sym___cdecl] = ACTIONS(269), + [anon_sym___clrcall] = ACTIONS(269), + [anon_sym___stdcall] = ACTIONS(269), + [anon_sym___fastcall] = ACTIONS(269), + [anon_sym___thiscall] = ACTIONS(269), + [anon_sym___vectorcall] = ACTIONS(269), + [anon_sym_LBRACE] = ACTIONS(601), + [anon_sym_RBRACE] = ACTIONS(604), + [anon_sym_signed] = ACTIONS(275), + [anon_sym_unsigned] = ACTIONS(275), + [anon_sym_long] = ACTIONS(275), + [anon_sym_short] = ACTIONS(275), + [anon_sym_static] = ACTIONS(278), + [anon_sym_auto] = ACTIONS(278), + [anon_sym_register] = ACTIONS(278), + [anon_sym_inline] = ACTIONS(278), + [anon_sym___inline] = ACTIONS(278), + [anon_sym___inline__] = ACTIONS(278), + [anon_sym___forceinline] = ACTIONS(278), + [anon_sym_thread_local] = ACTIONS(278), + [anon_sym___thread] = ACTIONS(278), + [anon_sym_const] = ACTIONS(281), + [anon_sym_constexpr] = ACTIONS(281), + [anon_sym_volatile] = ACTIONS(281), + [anon_sym_restrict] = ACTIONS(281), + [anon_sym___restrict__] = ACTIONS(281), + [anon_sym__Atomic] = ACTIONS(281), + [anon_sym__Noreturn] = ACTIONS(281), + [anon_sym_noreturn] = ACTIONS(281), + [anon_sym_alignas] = ACTIONS(284), + [anon_sym__Alignas] = ACTIONS(284), + [sym_primitive_type] = ACTIONS(287), + [anon_sym_enum] = ACTIONS(290), + [anon_sym_struct] = ACTIONS(293), + [anon_sym_union] = ACTIONS(296), + [anon_sym_if] = ACTIONS(606), + [anon_sym_switch] = ACTIONS(609), + [anon_sym_case] = ACTIONS(612), + [anon_sym_default] = ACTIONS(615), + [anon_sym_while] = ACTIONS(618), + [anon_sym_do] = ACTIONS(621), + [anon_sym_for] = ACTIONS(624), + [anon_sym_return] = ACTIONS(627), + [anon_sym_break] = ACTIONS(630), + [anon_sym_continue] = ACTIONS(633), + [anon_sym_goto] = ACTIONS(636), + [anon_sym___try] = ACTIONS(639), + [anon_sym___leave] = ACTIONS(642), + [anon_sym_DASH_DASH] = ACTIONS(338), + [anon_sym_PLUS_PLUS] = ACTIONS(338), + [anon_sym_sizeof] = ACTIONS(341), + [anon_sym___alignof__] = ACTIONS(344), + [anon_sym___alignof] = ACTIONS(344), + [anon_sym__alignof] = ACTIONS(344), + [anon_sym_alignof] = ACTIONS(344), + [anon_sym__Alignof] = ACTIONS(344), + [anon_sym_offsetof] = ACTIONS(347), + [anon_sym__Generic] = ACTIONS(350), + [anon_sym_asm] = ACTIONS(353), + [anon_sym___asm__] = ACTIONS(353), + [sym_number_literal] = ACTIONS(356), + [anon_sym_L_SQUOTE] = ACTIONS(359), + [anon_sym_u_SQUOTE] = ACTIONS(359), + [anon_sym_U_SQUOTE] = ACTIONS(359), + [anon_sym_u8_SQUOTE] = ACTIONS(359), + [anon_sym_SQUOTE] = ACTIONS(359), + [anon_sym_L_DQUOTE] = ACTIONS(362), + [anon_sym_u_DQUOTE] = ACTIONS(362), + [anon_sym_U_DQUOTE] = ACTIONS(362), + [anon_sym_u8_DQUOTE] = ACTIONS(362), + [anon_sym_DQUOTE] = ACTIONS(362), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [anon_sym_NULL] = ACTIONS(368), + [anon_sym_nullptr] = ACTIONS(368), [sym_comment] = ACTIONS(3), }, [41] = { - [sym__block_item] = STATE(39), - [sym_preproc_include] = STATE(39), - [sym_preproc_def] = STATE(39), - [sym_preproc_function_def] = STATE(39), - [sym_preproc_call] = STATE(39), - [sym_preproc_if] = STATE(39), - [sym_preproc_ifdef] = STATE(39), - [sym_function_definition] = STATE(39), - [sym__old_style_function_definition] = STATE(279), - [sym_declaration] = STATE(39), - [sym_type_definition] = STATE(39), - [sym__declaration_modifiers] = STATE(697), - [sym__declaration_specifiers] = STATE(1121), - [sym_linkage_specification] = STATE(39), - [sym_attribute_specifier] = STATE(697), - [sym_attribute_declaration] = STATE(405), - [sym_ms_declspec_modifier] = STATE(697), - [sym_ms_call_modifier] = STATE(693), - [sym_compound_statement] = STATE(148), - [sym_storage_class_specifier] = STATE(697), - [sym_type_qualifier] = STATE(697), - [sym_alignas_qualifier] = STATE(703), - [sym_type_specifier] = STATE(784), - [sym_sized_type_specifier] = STATE(746), - [sym_enum_specifier] = STATE(746), - [sym_struct_specifier] = STATE(746), - [sym_union_specifier] = STATE(746), - [sym_attributed_statement] = STATE(280), - [sym_statement] = STATE(39), - [sym_labeled_statement] = STATE(148), - [sym_expression_statement] = STATE(148), - [sym_if_statement] = STATE(148), - [sym_switch_statement] = STATE(148), - [sym_case_statement] = STATE(148), - [sym_while_statement] = STATE(148), - [sym_do_statement] = STATE(148), - [sym_for_statement] = STATE(148), - [sym_return_statement] = STATE(148), - [sym_break_statement] = STATE(148), - [sym_continue_statement] = STATE(148), - [sym_goto_statement] = STATE(148), - [sym_seh_try_statement] = STATE(148), - [sym_seh_leave_statement] = STATE(148), - [sym_expression] = STATE(1033), - [sym__string] = STATE(663), - [sym_comma_expression] = STATE(1818), - [sym_conditional_expression] = STATE(663), - [sym_assignment_expression] = STATE(663), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(663), - [sym_binary_expression] = STATE(663), - [sym_update_expression] = STATE(663), - [sym_cast_expression] = STATE(663), - [sym_sizeof_expression] = STATE(663), - [sym_alignof_expression] = STATE(663), - [sym_offsetof_expression] = STATE(663), - [sym_generic_expression] = STATE(663), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(663), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(663), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(663), - [sym_concatenated_string] = STATE(663), - [sym_string_literal] = STATE(659), - [sym_null] = STATE(663), - [sym__empty_declaration] = STATE(39), - [sym_macro_type_specifier] = STATE(746), - [aux_sym_preproc_if_repeat1] = STATE(39), - [aux_sym__declaration_specifiers_repeat1] = STATE(697), - [aux_sym_attributed_declarator_repeat1] = STATE(375), - [aux_sym_sized_type_specifier_repeat1] = STATE(747), - [sym_identifier] = ACTIONS(366), - [aux_sym_preproc_include_token1] = ACTIONS(368), - [aux_sym_preproc_def_token1] = ACTIONS(370), - [aux_sym_preproc_if_token1] = ACTIONS(372), - [aux_sym_preproc_ifdef_token1] = ACTIONS(374), - [aux_sym_preproc_ifdef_token2] = ACTIONS(374), - [sym_preproc_directive] = ACTIONS(376), + [sym__block_item] = STATE(40), + [sym_preproc_include] = STATE(40), + [sym_preproc_def] = STATE(40), + [sym_preproc_function_def] = STATE(40), + [sym_preproc_call] = STATE(40), + [sym_preproc_if] = STATE(40), + [sym_preproc_ifdef] = STATE(40), + [sym_function_definition] = STATE(40), + [sym__old_style_function_definition] = STATE(312), + [sym_declaration] = STATE(40), + [sym_type_definition] = STATE(40), + [sym__declaration_modifiers] = STATE(805), + [sym__declaration_specifiers] = STATE(1234), + [sym_linkage_specification] = STATE(40), + [sym_attribute_specifier] = STATE(805), + [sym_attribute_declaration] = STATE(468), + [sym_ms_declspec_modifier] = STATE(805), + [sym_macro_modifier] = STATE(788), + [sym_ms_call_modifier] = STATE(627), + [sym_compound_statement] = STATE(290), + [sym_storage_class_specifier] = STATE(805), + [sym_type_qualifier] = STATE(805), + [sym_alignas_qualifier] = STATE(799), + [sym_type_specifier] = STATE(899), + [sym_sized_type_specifier] = STATE(873), + [sym_enum_specifier] = STATE(873), + [sym_struct_specifier] = STATE(873), + [sym_union_specifier] = STATE(873), + [sym_attributed_statement] = STATE(306), + [sym_statement] = STATE(40), + [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_seh_try_statement] = STATE(290), + [sym_seh_leave_statement] = STATE(290), + [sym_expression] = STATE(1167), + [sym__string] = STATE(758), + [sym_comma_expression] = STATE(2207), + [sym_conditional_expression] = STATE(758), + [sym_assignment_expression] = STATE(758), + [sym_pointer_expression] = STATE(944), + [sym_unary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_cast_expression] = STATE(758), + [sym_sizeof_expression] = STATE(758), + [sym_alignof_expression] = STATE(758), + [sym_offsetof_expression] = STATE(758), + [sym_generic_expression] = STATE(758), + [sym_subscript_expression] = STATE(944), + [sym_call_expression] = STATE(944), + [sym_gnu_asm_expression] = STATE(758), + [sym_field_expression] = STATE(944), + [sym_compound_literal_expression] = STATE(758), + [sym_parenthesized_expression] = STATE(944), + [sym_char_literal] = STATE(758), + [sym_concatenated_string] = STATE(758), + [sym_string_literal] = STATE(671), + [sym_null] = STATE(758), + [sym__empty_declaration] = STATE(40), + [sym_macro_type_specifier] = STATE(873), + [aux_sym_preproc_if_repeat1] = STATE(40), + [aux_sym__declaration_specifiers_repeat1] = STATE(805), + [aux_sym_attributed_declarator_repeat1] = STATE(428), + [aux_sym_sized_type_specifier_repeat1] = STATE(890), + [sym_identifier] = ACTIONS(371), + [aux_sym_preproc_include_token1] = ACTIONS(373), + [aux_sym_preproc_def_token1] = ACTIONS(375), + [aux_sym_preproc_if_token1] = ACTIONS(377), + [aux_sym_preproc_ifdef_token1] = ACTIONS(379), + [aux_sym_preproc_ifdef_token2] = ACTIONS(379), + [sym_preproc_directive] = ACTIONS(381), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -19213,177 +20011,181 @@ 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(378), - [anon_sym___extension__] = ACTIONS(380), - [anon_sym_typedef] = ACTIONS(382), - [anon_sym_extern] = ACTIONS(384), + [anon_sym_SEMI] = ACTIONS(383), + [anon_sym___extension__] = ACTIONS(385), + [anon_sym_typedef] = ACTIONS(387), + [anon_sym_extern] = ACTIONS(389), [anon_sym___attribute__] = ACTIONS(33), [anon_sym___scanf] = ACTIONS(35), [anon_sym___printf] = ACTIONS(35), [anon_sym___read_mostly] = ACTIONS(37), [anon_sym___must_hold] = ACTIONS(33), [anon_sym___ro_after_init] = ACTIONS(37), - [anon_sym___init] = ACTIONS(37), + [anon_sym___noreturn] = ACTIONS(37), + [anon_sym___cold] = ACTIONS(37), [anon_sym_LBRACK_LBRACK] = ACTIONS(39), [anon_sym___declspec] = ACTIONS(41), - [anon_sym___cdecl] = ACTIONS(43), - [anon_sym___clrcall] = ACTIONS(43), - [anon_sym___stdcall] = ACTIONS(43), - [anon_sym___fastcall] = ACTIONS(43), - [anon_sym___thiscall] = ACTIONS(43), - [anon_sym___vectorcall] = ACTIONS(43), - [anon_sym_LBRACE] = ACTIONS(386), - [anon_sym_RBRACE] = ACTIONS(640), - [anon_sym_signed] = ACTIONS(47), - [anon_sym_unsigned] = ACTIONS(47), - [anon_sym_long] = ACTIONS(47), - [anon_sym_short] = ACTIONS(47), - [anon_sym_static] = ACTIONS(49), - [anon_sym_auto] = ACTIONS(49), - [anon_sym_register] = ACTIONS(49), - [anon_sym_inline] = ACTIONS(49), - [anon_sym___inline] = ACTIONS(49), - [anon_sym___inline__] = ACTIONS(49), - [anon_sym___forceinline] = ACTIONS(49), - [anon_sym_thread_local] = ACTIONS(49), - [anon_sym___thread] = ACTIONS(49), - [anon_sym_const] = ACTIONS(51), - [anon_sym_constexpr] = ACTIONS(51), - [anon_sym_volatile] = ACTIONS(51), - [anon_sym_restrict] = ACTIONS(51), - [anon_sym___restrict__] = ACTIONS(51), - [anon_sym__Atomic] = ACTIONS(51), - [anon_sym__Noreturn] = ACTIONS(51), - [anon_sym_noreturn] = ACTIONS(51), - [anon_sym_alignas] = ACTIONS(53), - [anon_sym__Alignas] = ACTIONS(53), - [sym_primitive_type] = ACTIONS(55), - [anon_sym_enum] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [anon_sym_if] = ACTIONS(390), - [anon_sym_switch] = ACTIONS(392), - [anon_sym_case] = ACTIONS(394), - [anon_sym_default] = ACTIONS(396), - [anon_sym_while] = ACTIONS(398), - [anon_sym_do] = ACTIONS(400), - [anon_sym_for] = ACTIONS(402), - [anon_sym_return] = ACTIONS(404), - [anon_sym_break] = ACTIONS(406), - [anon_sym_continue] = ACTIONS(408), - [anon_sym_goto] = ACTIONS(410), - [anon_sym___try] = ACTIONS(412), - [anon_sym___leave] = ACTIONS(414), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [anon_sym___alignof__] = ACTIONS(89), - [anon_sym___alignof] = ACTIONS(89), - [anon_sym__alignof] = ACTIONS(89), - [anon_sym_alignof] = ACTIONS(89), - [anon_sym__Alignof] = ACTIONS(89), - [anon_sym_offsetof] = ACTIONS(91), - [anon_sym__Generic] = ACTIONS(93), - [anon_sym_asm] = ACTIONS(95), - [anon_sym___asm__] = ACTIONS(95), - [sym_number_literal] = ACTIONS(163), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(165), - [sym_false] = ACTIONS(165), - [anon_sym_NULL] = ACTIONS(105), - [anon_sym_nullptr] = ACTIONS(105), + [anon_sym___init] = ACTIONS(43), + [anon_sym___exit] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_RBRACE] = ACTIONS(645), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_const] = ACTIONS(53), + [anon_sym_constexpr] = ACTIONS(53), + [anon_sym_volatile] = ACTIONS(53), + [anon_sym_restrict] = ACTIONS(53), + [anon_sym___restrict__] = ACTIONS(53), + [anon_sym__Atomic] = ACTIONS(53), + [anon_sym__Noreturn] = ACTIONS(53), + [anon_sym_noreturn] = ACTIONS(53), + [anon_sym_alignas] = ACTIONS(55), + [anon_sym__Alignas] = ACTIONS(55), + [sym_primitive_type] = ACTIONS(57), + [anon_sym_enum] = ACTIONS(59), + [anon_sym_struct] = ACTIONS(61), + [anon_sym_union] = ACTIONS(63), + [anon_sym_if] = ACTIONS(395), + [anon_sym_switch] = ACTIONS(397), + [anon_sym_case] = ACTIONS(399), + [anon_sym_default] = ACTIONS(401), + [anon_sym_while] = ACTIONS(403), + [anon_sym_do] = ACTIONS(405), + [anon_sym_for] = ACTIONS(407), + [anon_sym_return] = ACTIONS(409), + [anon_sym_break] = ACTIONS(411), + [anon_sym_continue] = ACTIONS(413), + [anon_sym_goto] = ACTIONS(415), + [anon_sym___try] = ACTIONS(417), + [anon_sym___leave] = ACTIONS(419), + [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(87), + [anon_sym_sizeof] = ACTIONS(89), + [anon_sym___alignof__] = ACTIONS(91), + [anon_sym___alignof] = ACTIONS(91), + [anon_sym__alignof] = ACTIONS(91), + [anon_sym_alignof] = ACTIONS(91), + [anon_sym__Alignof] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(93), + [anon_sym__Generic] = ACTIONS(95), + [anon_sym_asm] = ACTIONS(97), + [anon_sym___asm__] = ACTIONS(97), + [sym_number_literal] = ACTIONS(165), + [anon_sym_L_SQUOTE] = ACTIONS(101), + [anon_sym_u_SQUOTE] = ACTIONS(101), + [anon_sym_U_SQUOTE] = ACTIONS(101), + [anon_sym_u8_SQUOTE] = ACTIONS(101), + [anon_sym_SQUOTE] = ACTIONS(101), + [anon_sym_L_DQUOTE] = ACTIONS(103), + [anon_sym_u_DQUOTE] = ACTIONS(103), + [anon_sym_U_DQUOTE] = ACTIONS(103), + [anon_sym_u8_DQUOTE] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_true] = ACTIONS(167), + [sym_false] = ACTIONS(167), + [anon_sym_NULL] = ACTIONS(107), + [anon_sym_nullptr] = ACTIONS(107), [sym_comment] = ACTIONS(3), }, [42] = { - [sym__block_item] = STATE(29), - [sym_preproc_include] = STATE(29), - [sym_preproc_def] = STATE(29), - [sym_preproc_function_def] = STATE(29), - [sym_preproc_call] = STATE(29), - [sym_preproc_if] = STATE(29), - [sym_preproc_ifdef] = STATE(29), - [sym_function_definition] = STATE(29), - [sym__old_style_function_definition] = STATE(279), - [sym_declaration] = STATE(29), - [sym_type_definition] = STATE(29), - [sym__declaration_modifiers] = STATE(697), - [sym__declaration_specifiers] = STATE(1121), - [sym_linkage_specification] = STATE(29), - [sym_attribute_specifier] = STATE(697), - [sym_attribute_declaration] = STATE(405), - [sym_ms_declspec_modifier] = STATE(697), - [sym_ms_call_modifier] = STATE(693), - [sym_compound_statement] = STATE(148), - [sym_storage_class_specifier] = STATE(697), - [sym_type_qualifier] = STATE(697), - [sym_alignas_qualifier] = STATE(703), - [sym_type_specifier] = STATE(784), - [sym_sized_type_specifier] = STATE(746), - [sym_enum_specifier] = STATE(746), - [sym_struct_specifier] = STATE(746), - [sym_union_specifier] = STATE(746), - [sym_attributed_statement] = STATE(280), - [sym_statement] = STATE(29), - [sym_labeled_statement] = STATE(148), - [sym_expression_statement] = STATE(148), - [sym_if_statement] = STATE(148), - [sym_switch_statement] = STATE(148), - [sym_case_statement] = STATE(148), - [sym_while_statement] = STATE(148), - [sym_do_statement] = STATE(148), - [sym_for_statement] = STATE(148), - [sym_return_statement] = STATE(148), - [sym_break_statement] = STATE(148), - [sym_continue_statement] = STATE(148), - [sym_goto_statement] = STATE(148), - [sym_seh_try_statement] = STATE(148), - [sym_seh_leave_statement] = STATE(148), - [sym_expression] = STATE(1033), - [sym__string] = STATE(663), - [sym_comma_expression] = STATE(1818), - [sym_conditional_expression] = STATE(663), - [sym_assignment_expression] = STATE(663), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(663), - [sym_binary_expression] = STATE(663), - [sym_update_expression] = STATE(663), - [sym_cast_expression] = STATE(663), - [sym_sizeof_expression] = STATE(663), - [sym_alignof_expression] = STATE(663), - [sym_offsetof_expression] = STATE(663), - [sym_generic_expression] = STATE(663), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(663), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(663), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(663), - [sym_concatenated_string] = STATE(663), - [sym_string_literal] = STATE(659), - [sym_null] = STATE(663), - [sym__empty_declaration] = STATE(29), - [sym_macro_type_specifier] = STATE(746), - [aux_sym_preproc_if_repeat1] = STATE(29), - [aux_sym__declaration_specifiers_repeat1] = STATE(697), - [aux_sym_attributed_declarator_repeat1] = STATE(375), - [aux_sym_sized_type_specifier_repeat1] = STATE(747), - [sym_identifier] = ACTIONS(366), - [aux_sym_preproc_include_token1] = ACTIONS(368), - [aux_sym_preproc_def_token1] = ACTIONS(370), - [aux_sym_preproc_if_token1] = ACTIONS(372), - [aux_sym_preproc_ifdef_token1] = ACTIONS(374), - [aux_sym_preproc_ifdef_token2] = ACTIONS(374), - [sym_preproc_directive] = ACTIONS(376), + [sym__block_item] = STATE(41), + [sym_preproc_include] = STATE(41), + [sym_preproc_def] = STATE(41), + [sym_preproc_function_def] = STATE(41), + [sym_preproc_call] = STATE(41), + [sym_preproc_if] = STATE(41), + [sym_preproc_ifdef] = STATE(41), + [sym_function_definition] = STATE(41), + [sym__old_style_function_definition] = STATE(312), + [sym_declaration] = STATE(41), + [sym_type_definition] = STATE(41), + [sym__declaration_modifiers] = STATE(805), + [sym__declaration_specifiers] = STATE(1234), + [sym_linkage_specification] = STATE(41), + [sym_attribute_specifier] = STATE(805), + [sym_attribute_declaration] = STATE(468), + [sym_ms_declspec_modifier] = STATE(805), + [sym_macro_modifier] = STATE(788), + [sym_ms_call_modifier] = STATE(627), + [sym_compound_statement] = STATE(290), + [sym_storage_class_specifier] = STATE(805), + [sym_type_qualifier] = STATE(805), + [sym_alignas_qualifier] = STATE(799), + [sym_type_specifier] = STATE(899), + [sym_sized_type_specifier] = STATE(873), + [sym_enum_specifier] = STATE(873), + [sym_struct_specifier] = STATE(873), + [sym_union_specifier] = STATE(873), + [sym_attributed_statement] = STATE(306), + [sym_statement] = STATE(41), + [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_seh_try_statement] = STATE(290), + [sym_seh_leave_statement] = STATE(290), + [sym_expression] = STATE(1167), + [sym__string] = STATE(758), + [sym_comma_expression] = STATE(2207), + [sym_conditional_expression] = STATE(758), + [sym_assignment_expression] = STATE(758), + [sym_pointer_expression] = STATE(944), + [sym_unary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_cast_expression] = STATE(758), + [sym_sizeof_expression] = STATE(758), + [sym_alignof_expression] = STATE(758), + [sym_offsetof_expression] = STATE(758), + [sym_generic_expression] = STATE(758), + [sym_subscript_expression] = STATE(944), + [sym_call_expression] = STATE(944), + [sym_gnu_asm_expression] = STATE(758), + [sym_field_expression] = STATE(944), + [sym_compound_literal_expression] = STATE(758), + [sym_parenthesized_expression] = STATE(944), + [sym_char_literal] = STATE(758), + [sym_concatenated_string] = STATE(758), + [sym_string_literal] = STATE(671), + [sym_null] = STATE(758), + [sym__empty_declaration] = STATE(41), + [sym_macro_type_specifier] = STATE(873), + [aux_sym_preproc_if_repeat1] = STATE(41), + [aux_sym__declaration_specifiers_repeat1] = STATE(805), + [aux_sym_attributed_declarator_repeat1] = STATE(428), + [aux_sym_sized_type_specifier_repeat1] = STATE(890), + [sym_identifier] = ACTIONS(371), + [aux_sym_preproc_include_token1] = ACTIONS(373), + [aux_sym_preproc_def_token1] = ACTIONS(375), + [aux_sym_preproc_if_token1] = ACTIONS(377), + [aux_sym_preproc_ifdef_token1] = ACTIONS(379), + [aux_sym_preproc_ifdef_token2] = ACTIONS(379), + [sym_preproc_directive] = ACTIONS(381), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -19391,94 +20193,97 @@ 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(378), - [anon_sym___extension__] = ACTIONS(380), - [anon_sym_typedef] = ACTIONS(382), - [anon_sym_extern] = ACTIONS(384), + [anon_sym_SEMI] = ACTIONS(383), + [anon_sym___extension__] = ACTIONS(385), + [anon_sym_typedef] = ACTIONS(387), + [anon_sym_extern] = ACTIONS(389), [anon_sym___attribute__] = ACTIONS(33), [anon_sym___scanf] = ACTIONS(35), [anon_sym___printf] = ACTIONS(35), [anon_sym___read_mostly] = ACTIONS(37), [anon_sym___must_hold] = ACTIONS(33), [anon_sym___ro_after_init] = ACTIONS(37), - [anon_sym___init] = ACTIONS(37), + [anon_sym___noreturn] = ACTIONS(37), + [anon_sym___cold] = ACTIONS(37), [anon_sym_LBRACK_LBRACK] = ACTIONS(39), [anon_sym___declspec] = ACTIONS(41), - [anon_sym___cdecl] = ACTIONS(43), - [anon_sym___clrcall] = ACTIONS(43), - [anon_sym___stdcall] = ACTIONS(43), - [anon_sym___fastcall] = ACTIONS(43), - [anon_sym___thiscall] = ACTIONS(43), - [anon_sym___vectorcall] = ACTIONS(43), - [anon_sym_LBRACE] = ACTIONS(386), - [anon_sym_RBRACE] = ACTIONS(642), - [anon_sym_signed] = ACTIONS(47), - [anon_sym_unsigned] = ACTIONS(47), - [anon_sym_long] = ACTIONS(47), - [anon_sym_short] = ACTIONS(47), - [anon_sym_static] = ACTIONS(49), - [anon_sym_auto] = ACTIONS(49), - [anon_sym_register] = ACTIONS(49), - [anon_sym_inline] = ACTIONS(49), - [anon_sym___inline] = ACTIONS(49), - [anon_sym___inline__] = ACTIONS(49), - [anon_sym___forceinline] = ACTIONS(49), - [anon_sym_thread_local] = ACTIONS(49), - [anon_sym___thread] = ACTIONS(49), - [anon_sym_const] = ACTIONS(51), - [anon_sym_constexpr] = ACTIONS(51), - [anon_sym_volatile] = ACTIONS(51), - [anon_sym_restrict] = ACTIONS(51), - [anon_sym___restrict__] = ACTIONS(51), - [anon_sym__Atomic] = ACTIONS(51), - [anon_sym__Noreturn] = ACTIONS(51), - [anon_sym_noreturn] = ACTIONS(51), - [anon_sym_alignas] = ACTIONS(53), - [anon_sym__Alignas] = ACTIONS(53), - [sym_primitive_type] = ACTIONS(55), - [anon_sym_enum] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [anon_sym_if] = ACTIONS(390), - [anon_sym_switch] = ACTIONS(392), - [anon_sym_case] = ACTIONS(394), - [anon_sym_default] = ACTIONS(396), - [anon_sym_while] = ACTIONS(398), - [anon_sym_do] = ACTIONS(400), - [anon_sym_for] = ACTIONS(402), - [anon_sym_return] = ACTIONS(404), - [anon_sym_break] = ACTIONS(406), - [anon_sym_continue] = ACTIONS(408), - [anon_sym_goto] = ACTIONS(410), - [anon_sym___try] = ACTIONS(412), - [anon_sym___leave] = ACTIONS(414), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [anon_sym___alignof__] = ACTIONS(89), - [anon_sym___alignof] = ACTIONS(89), - [anon_sym__alignof] = ACTIONS(89), - [anon_sym_alignof] = ACTIONS(89), - [anon_sym__Alignof] = ACTIONS(89), - [anon_sym_offsetof] = ACTIONS(91), - [anon_sym__Generic] = ACTIONS(93), - [anon_sym_asm] = ACTIONS(95), - [anon_sym___asm__] = ACTIONS(95), - [sym_number_literal] = ACTIONS(163), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(165), - [sym_false] = ACTIONS(165), - [anon_sym_NULL] = ACTIONS(105), - [anon_sym_nullptr] = ACTIONS(105), + [anon_sym___init] = ACTIONS(43), + [anon_sym___exit] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_RBRACE] = ACTIONS(647), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_const] = ACTIONS(53), + [anon_sym_constexpr] = ACTIONS(53), + [anon_sym_volatile] = ACTIONS(53), + [anon_sym_restrict] = ACTIONS(53), + [anon_sym___restrict__] = ACTIONS(53), + [anon_sym__Atomic] = ACTIONS(53), + [anon_sym__Noreturn] = ACTIONS(53), + [anon_sym_noreturn] = ACTIONS(53), + [anon_sym_alignas] = ACTIONS(55), + [anon_sym__Alignas] = ACTIONS(55), + [sym_primitive_type] = ACTIONS(57), + [anon_sym_enum] = ACTIONS(59), + [anon_sym_struct] = ACTIONS(61), + [anon_sym_union] = ACTIONS(63), + [anon_sym_if] = ACTIONS(395), + [anon_sym_switch] = ACTIONS(397), + [anon_sym_case] = ACTIONS(399), + [anon_sym_default] = ACTIONS(401), + [anon_sym_while] = ACTIONS(403), + [anon_sym_do] = ACTIONS(405), + [anon_sym_for] = ACTIONS(407), + [anon_sym_return] = ACTIONS(409), + [anon_sym_break] = ACTIONS(411), + [anon_sym_continue] = ACTIONS(413), + [anon_sym_goto] = ACTIONS(415), + [anon_sym___try] = ACTIONS(417), + [anon_sym___leave] = ACTIONS(419), + [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(87), + [anon_sym_sizeof] = ACTIONS(89), + [anon_sym___alignof__] = ACTIONS(91), + [anon_sym___alignof] = ACTIONS(91), + [anon_sym__alignof] = ACTIONS(91), + [anon_sym_alignof] = ACTIONS(91), + [anon_sym__Alignof] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(93), + [anon_sym__Generic] = ACTIONS(95), + [anon_sym_asm] = ACTIONS(97), + [anon_sym___asm__] = ACTIONS(97), + [sym_number_literal] = ACTIONS(165), + [anon_sym_L_SQUOTE] = ACTIONS(101), + [anon_sym_u_SQUOTE] = ACTIONS(101), + [anon_sym_U_SQUOTE] = ACTIONS(101), + [anon_sym_u8_SQUOTE] = ACTIONS(101), + [anon_sym_SQUOTE] = ACTIONS(101), + [anon_sym_L_DQUOTE] = ACTIONS(103), + [anon_sym_u_DQUOTE] = ACTIONS(103), + [anon_sym_U_DQUOTE] = ACTIONS(103), + [anon_sym_u8_DQUOTE] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_true] = ACTIONS(167), + [sym_false] = ACTIONS(167), + [anon_sym_NULL] = ACTIONS(107), + [anon_sym_nullptr] = ACTIONS(107), [sym_comment] = ACTIONS(3), }, [43] = { @@ -19490,26 +20295,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_if] = STATE(43), [sym_preproc_ifdef] = STATE(43), [sym_function_definition] = STATE(43), - [sym__old_style_function_definition] = STATE(332), + [sym__old_style_function_definition] = STATE(399), [sym_declaration] = STATE(43), [sym_type_definition] = STATE(43), - [sym__declaration_modifiers] = STATE(697), - [sym__declaration_specifiers] = STATE(1123), + [sym__declaration_modifiers] = STATE(805), + [sym__declaration_specifiers] = STATE(1231), [sym_linkage_specification] = STATE(43), - [sym_attribute_specifier] = STATE(697), - [sym_attribute_declaration] = STATE(405), - [sym_ms_declspec_modifier] = STATE(697), - [sym_ms_call_modifier] = STATE(691), + [sym_attribute_specifier] = STATE(805), + [sym_attribute_declaration] = STATE(468), + [sym_ms_declspec_modifier] = STATE(805), + [sym_macro_modifier] = STATE(794), + [sym_ms_call_modifier] = STATE(620), [sym_compound_statement] = STATE(43), - [sym_storage_class_specifier] = STATE(697), - [sym_type_qualifier] = STATE(697), - [sym_alignas_qualifier] = STATE(703), - [sym_type_specifier] = STATE(800), - [sym_sized_type_specifier] = STATE(746), - [sym_enum_specifier] = STATE(746), - [sym_struct_specifier] = STATE(746), - [sym_union_specifier] = STATE(746), - [sym_attributed_statement] = STATE(335), + [sym_storage_class_specifier] = STATE(805), + [sym_type_qualifier] = STATE(805), + [sym_alignas_qualifier] = STATE(799), + [sym_type_specifier] = STATE(901), + [sym_sized_type_specifier] = STATE(873), + [sym_enum_specifier] = STATE(873), + [sym_struct_specifier] = STATE(873), + [sym_union_specifier] = STATE(873), + [sym_attributed_statement] = STATE(401), [sym__top_level_statement] = STATE(43), [sym_labeled_statement] = STATE(43), [sym__top_level_expression_statement] = STATE(43), @@ -19523,134 +20329,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(43), [sym_continue_statement] = STATE(43), [sym_goto_statement] = STATE(43), - [sym_expression] = STATE(1099), - [sym__string] = STATE(1100), - [sym_conditional_expression] = STATE(1100), - [sym_assignment_expression] = STATE(1100), - [sym_pointer_expression] = STATE(952), - [sym_unary_expression] = STATE(1100), - [sym_binary_expression] = STATE(663), - [sym_update_expression] = STATE(1100), - [sym_cast_expression] = STATE(1100), - [sym_sizeof_expression] = STATE(1100), - [sym_alignof_expression] = STATE(1100), - [sym_offsetof_expression] = STATE(1100), - [sym_generic_expression] = STATE(1100), - [sym_subscript_expression] = STATE(952), - [sym_call_expression] = STATE(952), - [sym_gnu_asm_expression] = STATE(1100), - [sym_field_expression] = STATE(952), - [sym_compound_literal_expression] = STATE(1100), - [sym_parenthesized_expression] = STATE(952), - [sym_char_literal] = STATE(1100), - [sym_concatenated_string] = STATE(1100), - [sym_string_literal] = STATE(659), - [sym_null] = STATE(1100), + [sym_expression] = STATE(1225), + [sym__string] = STATE(1223), + [sym_conditional_expression] = STATE(1223), + [sym_assignment_expression] = STATE(1223), + [sym_pointer_expression] = STATE(1069), + [sym_unary_expression] = STATE(1223), + [sym_binary_expression] = STATE(758), + [sym_update_expression] = STATE(1223), + [sym_cast_expression] = STATE(1223), + [sym_sizeof_expression] = STATE(1223), + [sym_alignof_expression] = STATE(1223), + [sym_offsetof_expression] = STATE(1223), + [sym_generic_expression] = STATE(1223), + [sym_subscript_expression] = STATE(1069), + [sym_call_expression] = STATE(1069), + [sym_gnu_asm_expression] = STATE(1223), + [sym_field_expression] = STATE(1069), + [sym_compound_literal_expression] = STATE(1223), + [sym_parenthesized_expression] = STATE(1069), + [sym_char_literal] = STATE(1223), + [sym_concatenated_string] = STATE(1223), + [sym_string_literal] = STATE(671), + [sym_null] = STATE(1223), [sym__empty_declaration] = STATE(43), - [sym_macro_type_specifier] = STATE(746), + [sym_macro_type_specifier] = STATE(873), [aux_sym_translation_unit_repeat1] = STATE(43), - [aux_sym__declaration_specifiers_repeat1] = STATE(697), - [aux_sym_attributed_declarator_repeat1] = STATE(348), - [aux_sym_sized_type_specifier_repeat1] = STATE(747), - [ts_builtin_sym_end] = ACTIONS(644), - [sym_identifier] = ACTIONS(646), - [aux_sym_preproc_include_token1] = ACTIONS(649), - [aux_sym_preproc_def_token1] = ACTIONS(652), - [aux_sym_preproc_if_token1] = ACTIONS(655), - [aux_sym_preproc_ifdef_token1] = ACTIONS(658), - [aux_sym_preproc_ifdef_token2] = ACTIONS(658), - [sym_preproc_directive] = ACTIONS(661), - [anon_sym_LPAREN2] = ACTIONS(664), - [anon_sym_BANG] = ACTIONS(667), - [anon_sym_TILDE] = ACTIONS(667), - [anon_sym_DASH] = ACTIONS(670), - [anon_sym_PLUS] = ACTIONS(670), - [anon_sym_STAR] = ACTIONS(673), - [anon_sym_AMP] = ACTIONS(673), - [anon_sym___extension__] = ACTIONS(676), - [anon_sym_typedef] = ACTIONS(679), - [anon_sym_extern] = ACTIONS(682), - [anon_sym___attribute__] = ACTIONS(685), - [anon_sym___scanf] = ACTIONS(688), - [anon_sym___printf] = ACTIONS(688), - [anon_sym___read_mostly] = ACTIONS(691), - [anon_sym___must_hold] = ACTIONS(685), - [anon_sym___ro_after_init] = ACTIONS(691), - [anon_sym___init] = ACTIONS(691), - [anon_sym_LBRACK_LBRACK] = ACTIONS(694), - [anon_sym___declspec] = ACTIONS(697), - [anon_sym___cdecl] = ACTIONS(700), - [anon_sym___clrcall] = ACTIONS(700), - [anon_sym___stdcall] = ACTIONS(700), - [anon_sym___fastcall] = ACTIONS(700), - [anon_sym___thiscall] = ACTIONS(700), - [anon_sym___vectorcall] = ACTIONS(700), - [anon_sym_LBRACE] = ACTIONS(703), - [anon_sym_signed] = ACTIONS(706), - [anon_sym_unsigned] = ACTIONS(706), - [anon_sym_long] = ACTIONS(706), - [anon_sym_short] = ACTIONS(706), - [anon_sym_static] = ACTIONS(709), - [anon_sym_auto] = ACTIONS(709), - [anon_sym_register] = ACTIONS(709), - [anon_sym_inline] = ACTIONS(709), - [anon_sym___inline] = ACTIONS(709), - [anon_sym___inline__] = ACTIONS(709), - [anon_sym___forceinline] = ACTIONS(709), - [anon_sym_thread_local] = ACTIONS(709), - [anon_sym___thread] = ACTIONS(709), - [anon_sym_const] = ACTIONS(712), - [anon_sym_constexpr] = ACTIONS(712), - [anon_sym_volatile] = ACTIONS(712), - [anon_sym_restrict] = ACTIONS(712), - [anon_sym___restrict__] = ACTIONS(712), - [anon_sym__Atomic] = ACTIONS(712), - [anon_sym__Noreturn] = ACTIONS(712), - [anon_sym_noreturn] = ACTIONS(712), - [anon_sym_alignas] = ACTIONS(715), - [anon_sym__Alignas] = ACTIONS(715), - [sym_primitive_type] = ACTIONS(718), - [anon_sym_enum] = ACTIONS(721), - [anon_sym_struct] = ACTIONS(724), - [anon_sym_union] = ACTIONS(727), - [anon_sym_if] = ACTIONS(730), - [anon_sym_switch] = ACTIONS(733), - [anon_sym_case] = ACTIONS(736), - [anon_sym_default] = ACTIONS(739), - [anon_sym_while] = ACTIONS(742), - [anon_sym_do] = ACTIONS(745), - [anon_sym_for] = ACTIONS(748), - [anon_sym_return] = ACTIONS(751), - [anon_sym_break] = ACTIONS(754), - [anon_sym_continue] = ACTIONS(757), - [anon_sym_goto] = ACTIONS(760), - [anon_sym_DASH_DASH] = ACTIONS(763), - [anon_sym_PLUS_PLUS] = ACTIONS(763), - [anon_sym_sizeof] = ACTIONS(766), - [anon_sym___alignof__] = ACTIONS(769), - [anon_sym___alignof] = ACTIONS(769), - [anon_sym__alignof] = ACTIONS(769), - [anon_sym_alignof] = ACTIONS(769), - [anon_sym__Alignof] = ACTIONS(769), - [anon_sym_offsetof] = ACTIONS(772), - [anon_sym__Generic] = ACTIONS(775), - [anon_sym_asm] = ACTIONS(778), - [anon_sym___asm__] = ACTIONS(778), - [sym_number_literal] = ACTIONS(781), - [anon_sym_L_SQUOTE] = ACTIONS(784), - [anon_sym_u_SQUOTE] = ACTIONS(784), - [anon_sym_U_SQUOTE] = ACTIONS(784), - [anon_sym_u8_SQUOTE] = ACTIONS(784), - [anon_sym_SQUOTE] = ACTIONS(784), - [anon_sym_L_DQUOTE] = ACTIONS(787), - [anon_sym_u_DQUOTE] = ACTIONS(787), - [anon_sym_U_DQUOTE] = ACTIONS(787), - [anon_sym_u8_DQUOTE] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(787), - [sym_true] = ACTIONS(790), - [sym_false] = ACTIONS(790), - [anon_sym_NULL] = ACTIONS(793), - [anon_sym_nullptr] = ACTIONS(793), + [aux_sym__declaration_specifiers_repeat1] = STATE(805), + [aux_sym_attributed_declarator_repeat1] = STATE(421), + [aux_sym_sized_type_specifier_repeat1] = STATE(890), + [ts_builtin_sym_end] = ACTIONS(649), + [sym_identifier] = ACTIONS(651), + [aux_sym_preproc_include_token1] = ACTIONS(654), + [aux_sym_preproc_def_token1] = ACTIONS(657), + [aux_sym_preproc_if_token1] = ACTIONS(660), + [aux_sym_preproc_ifdef_token1] = ACTIONS(663), + [aux_sym_preproc_ifdef_token2] = ACTIONS(663), + [sym_preproc_directive] = ACTIONS(666), + [anon_sym_LPAREN2] = ACTIONS(669), + [anon_sym_BANG] = ACTIONS(672), + [anon_sym_TILDE] = ACTIONS(672), + [anon_sym_DASH] = ACTIONS(675), + [anon_sym_PLUS] = ACTIONS(675), + [anon_sym_STAR] = ACTIONS(678), + [anon_sym_AMP] = ACTIONS(678), + [anon_sym___extension__] = ACTIONS(681), + [anon_sym_typedef] = ACTIONS(684), + [anon_sym_extern] = ACTIONS(687), + [anon_sym___attribute__] = ACTIONS(690), + [anon_sym___scanf] = ACTIONS(693), + [anon_sym___printf] = ACTIONS(693), + [anon_sym___read_mostly] = ACTIONS(696), + [anon_sym___must_hold] = ACTIONS(690), + [anon_sym___ro_after_init] = ACTIONS(696), + [anon_sym___noreturn] = ACTIONS(696), + [anon_sym___cold] = ACTIONS(696), + [anon_sym_LBRACK_LBRACK] = ACTIONS(699), + [anon_sym___declspec] = ACTIONS(702), + [anon_sym___init] = ACTIONS(705), + [anon_sym___exit] = ACTIONS(705), + [anon_sym___cdecl] = ACTIONS(708), + [anon_sym___clrcall] = ACTIONS(708), + [anon_sym___stdcall] = ACTIONS(708), + [anon_sym___fastcall] = ACTIONS(708), + [anon_sym___thiscall] = ACTIONS(708), + [anon_sym___vectorcall] = ACTIONS(708), + [anon_sym_LBRACE] = ACTIONS(711), + [anon_sym_signed] = ACTIONS(714), + [anon_sym_unsigned] = ACTIONS(714), + [anon_sym_long] = ACTIONS(714), + [anon_sym_short] = ACTIONS(714), + [anon_sym_static] = ACTIONS(717), + [anon_sym_auto] = ACTIONS(717), + [anon_sym_register] = ACTIONS(717), + [anon_sym_inline] = ACTIONS(717), + [anon_sym___inline] = ACTIONS(717), + [anon_sym___inline__] = ACTIONS(717), + [anon_sym___forceinline] = ACTIONS(717), + [anon_sym_thread_local] = ACTIONS(717), + [anon_sym___thread] = ACTIONS(717), + [anon_sym_const] = ACTIONS(720), + [anon_sym_constexpr] = ACTIONS(720), + [anon_sym_volatile] = ACTIONS(720), + [anon_sym_restrict] = ACTIONS(720), + [anon_sym___restrict__] = ACTIONS(720), + [anon_sym__Atomic] = ACTIONS(720), + [anon_sym__Noreturn] = ACTIONS(720), + [anon_sym_noreturn] = ACTIONS(720), + [anon_sym_alignas] = ACTIONS(723), + [anon_sym__Alignas] = ACTIONS(723), + [sym_primitive_type] = ACTIONS(726), + [anon_sym_enum] = ACTIONS(729), + [anon_sym_struct] = ACTIONS(732), + [anon_sym_union] = ACTIONS(735), + [anon_sym_if] = ACTIONS(738), + [anon_sym_switch] = ACTIONS(741), + [anon_sym_case] = ACTIONS(744), + [anon_sym_default] = ACTIONS(747), + [anon_sym_while] = ACTIONS(750), + [anon_sym_do] = ACTIONS(753), + [anon_sym_for] = ACTIONS(756), + [anon_sym_return] = ACTIONS(759), + [anon_sym_break] = ACTIONS(762), + [anon_sym_continue] = ACTIONS(765), + [anon_sym_goto] = ACTIONS(768), + [anon_sym_DASH_DASH] = ACTIONS(771), + [anon_sym_PLUS_PLUS] = ACTIONS(771), + [anon_sym_sizeof] = ACTIONS(774), + [anon_sym___alignof__] = ACTIONS(777), + [anon_sym___alignof] = ACTIONS(777), + [anon_sym__alignof] = ACTIONS(777), + [anon_sym_alignof] = ACTIONS(777), + [anon_sym__Alignof] = ACTIONS(777), + [anon_sym_offsetof] = ACTIONS(780), + [anon_sym__Generic] = ACTIONS(783), + [anon_sym_asm] = ACTIONS(786), + [anon_sym___asm__] = ACTIONS(786), + [sym_number_literal] = ACTIONS(789), + [anon_sym_L_SQUOTE] = ACTIONS(792), + [anon_sym_u_SQUOTE] = ACTIONS(792), + [anon_sym_U_SQUOTE] = ACTIONS(792), + [anon_sym_u8_SQUOTE] = ACTIONS(792), + [anon_sym_SQUOTE] = ACTIONS(792), + [anon_sym_L_DQUOTE] = ACTIONS(795), + [anon_sym_u_DQUOTE] = ACTIONS(795), + [anon_sym_U_DQUOTE] = ACTIONS(795), + [anon_sym_u8_DQUOTE] = ACTIONS(795), + [anon_sym_DQUOTE] = ACTIONS(795), + [sym_true] = ACTIONS(798), + [sym_false] = ACTIONS(798), + [anon_sym_NULL] = ACTIONS(801), + [anon_sym_nullptr] = ACTIONS(801), [sym_comment] = ACTIONS(3), }, [44] = { @@ -19662,26 +20471,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_if] = STATE(43), [sym_preproc_ifdef] = STATE(43), [sym_function_definition] = STATE(43), - [sym__old_style_function_definition] = STATE(332), + [sym__old_style_function_definition] = STATE(399), [sym_declaration] = STATE(43), [sym_type_definition] = STATE(43), - [sym__declaration_modifiers] = STATE(697), - [sym__declaration_specifiers] = STATE(1123), + [sym__declaration_modifiers] = STATE(805), + [sym__declaration_specifiers] = STATE(1231), [sym_linkage_specification] = STATE(43), - [sym_attribute_specifier] = STATE(697), - [sym_attribute_declaration] = STATE(405), - [sym_ms_declspec_modifier] = STATE(697), - [sym_ms_call_modifier] = STATE(691), + [sym_attribute_specifier] = STATE(805), + [sym_attribute_declaration] = STATE(468), + [sym_ms_declspec_modifier] = STATE(805), + [sym_macro_modifier] = STATE(794), + [sym_ms_call_modifier] = STATE(620), [sym_compound_statement] = STATE(43), - [sym_storage_class_specifier] = STATE(697), - [sym_type_qualifier] = STATE(697), - [sym_alignas_qualifier] = STATE(703), - [sym_type_specifier] = STATE(800), - [sym_sized_type_specifier] = STATE(746), - [sym_enum_specifier] = STATE(746), - [sym_struct_specifier] = STATE(746), - [sym_union_specifier] = STATE(746), - [sym_attributed_statement] = STATE(335), + [sym_storage_class_specifier] = STATE(805), + [sym_type_qualifier] = STATE(805), + [sym_alignas_qualifier] = STATE(799), + [sym_type_specifier] = STATE(901), + [sym_sized_type_specifier] = STATE(873), + [sym_enum_specifier] = STATE(873), + [sym_struct_specifier] = STATE(873), + [sym_union_specifier] = STATE(873), + [sym_attributed_statement] = STATE(401), [sym__top_level_statement] = STATE(43), [sym_labeled_statement] = STATE(43), [sym__top_level_expression_statement] = STATE(43), @@ -19695,36 +20505,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(43), [sym_continue_statement] = STATE(43), [sym_goto_statement] = STATE(43), - [sym_expression] = STATE(1099), - [sym__string] = STATE(1100), - [sym_conditional_expression] = STATE(1100), - [sym_assignment_expression] = STATE(1100), - [sym_pointer_expression] = STATE(952), - [sym_unary_expression] = STATE(1100), - [sym_binary_expression] = STATE(663), - [sym_update_expression] = STATE(1100), - [sym_cast_expression] = STATE(1100), - [sym_sizeof_expression] = STATE(1100), - [sym_alignof_expression] = STATE(1100), - [sym_offsetof_expression] = STATE(1100), - [sym_generic_expression] = STATE(1100), - [sym_subscript_expression] = STATE(952), - [sym_call_expression] = STATE(952), - [sym_gnu_asm_expression] = STATE(1100), - [sym_field_expression] = STATE(952), - [sym_compound_literal_expression] = STATE(1100), - [sym_parenthesized_expression] = STATE(952), - [sym_char_literal] = STATE(1100), - [sym_concatenated_string] = STATE(1100), - [sym_string_literal] = STATE(659), - [sym_null] = STATE(1100), + [sym_expression] = STATE(1225), + [sym__string] = STATE(1223), + [sym_conditional_expression] = STATE(1223), + [sym_assignment_expression] = STATE(1223), + [sym_pointer_expression] = STATE(1069), + [sym_unary_expression] = STATE(1223), + [sym_binary_expression] = STATE(758), + [sym_update_expression] = STATE(1223), + [sym_cast_expression] = STATE(1223), + [sym_sizeof_expression] = STATE(1223), + [sym_alignof_expression] = STATE(1223), + [sym_offsetof_expression] = STATE(1223), + [sym_generic_expression] = STATE(1223), + [sym_subscript_expression] = STATE(1069), + [sym_call_expression] = STATE(1069), + [sym_gnu_asm_expression] = STATE(1223), + [sym_field_expression] = STATE(1069), + [sym_compound_literal_expression] = STATE(1223), + [sym_parenthesized_expression] = STATE(1069), + [sym_char_literal] = STATE(1223), + [sym_concatenated_string] = STATE(1223), + [sym_string_literal] = STATE(671), + [sym_null] = STATE(1223), [sym__empty_declaration] = STATE(43), - [sym_macro_type_specifier] = STATE(746), + [sym_macro_type_specifier] = STATE(873), [aux_sym_translation_unit_repeat1] = STATE(43), - [aux_sym__declaration_specifiers_repeat1] = STATE(697), - [aux_sym_attributed_declarator_repeat1] = STATE(348), - [aux_sym_sized_type_specifier_repeat1] = STATE(747), - [ts_builtin_sym_end] = ACTIONS(796), + [aux_sym__declaration_specifiers_repeat1] = STATE(805), + [aux_sym_attributed_declarator_repeat1] = STATE(421), + [aux_sym_sized_type_specifier_repeat1] = STATE(890), + [ts_builtin_sym_end] = ACTIONS(804), [sym_identifier] = ACTIONS(7), [aux_sym_preproc_include_token1] = ACTIONS(9), [aux_sym_preproc_def_token1] = ACTIONS(11), @@ -19748,155 +20558,158 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___read_mostly] = ACTIONS(37), [anon_sym___must_hold] = ACTIONS(33), [anon_sym___ro_after_init] = ACTIONS(37), - [anon_sym___init] = ACTIONS(37), + [anon_sym___noreturn] = ACTIONS(37), + [anon_sym___cold] = ACTIONS(37), [anon_sym_LBRACK_LBRACK] = ACTIONS(39), [anon_sym___declspec] = ACTIONS(41), - [anon_sym___cdecl] = ACTIONS(43), - [anon_sym___clrcall] = ACTIONS(43), - [anon_sym___stdcall] = ACTIONS(43), - [anon_sym___fastcall] = ACTIONS(43), - [anon_sym___thiscall] = ACTIONS(43), - [anon_sym___vectorcall] = ACTIONS(43), - [anon_sym_LBRACE] = ACTIONS(45), - [anon_sym_signed] = ACTIONS(47), - [anon_sym_unsigned] = ACTIONS(47), - [anon_sym_long] = ACTIONS(47), - [anon_sym_short] = ACTIONS(47), - [anon_sym_static] = ACTIONS(49), - [anon_sym_auto] = ACTIONS(49), - [anon_sym_register] = ACTIONS(49), - [anon_sym_inline] = ACTIONS(49), - [anon_sym___inline] = ACTIONS(49), - [anon_sym___inline__] = ACTIONS(49), - [anon_sym___forceinline] = ACTIONS(49), - [anon_sym_thread_local] = ACTIONS(49), - [anon_sym___thread] = ACTIONS(49), - [anon_sym_const] = ACTIONS(51), - [anon_sym_constexpr] = ACTIONS(51), - [anon_sym_volatile] = ACTIONS(51), - [anon_sym_restrict] = ACTIONS(51), - [anon_sym___restrict__] = ACTIONS(51), - [anon_sym__Atomic] = ACTIONS(51), - [anon_sym__Noreturn] = ACTIONS(51), - [anon_sym_noreturn] = ACTIONS(51), - [anon_sym_alignas] = ACTIONS(53), - [anon_sym__Alignas] = ACTIONS(53), - [sym_primitive_type] = ACTIONS(55), - [anon_sym_enum] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [anon_sym_if] = ACTIONS(63), - [anon_sym_switch] = ACTIONS(65), - [anon_sym_case] = ACTIONS(67), - [anon_sym_default] = ACTIONS(69), - [anon_sym_while] = ACTIONS(71), - [anon_sym_do] = ACTIONS(73), - [anon_sym_for] = ACTIONS(75), - [anon_sym_return] = ACTIONS(77), - [anon_sym_break] = ACTIONS(79), - [anon_sym_continue] = ACTIONS(81), - [anon_sym_goto] = ACTIONS(83), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [anon_sym___alignof__] = ACTIONS(89), - [anon_sym___alignof] = ACTIONS(89), - [anon_sym__alignof] = ACTIONS(89), - [anon_sym_alignof] = ACTIONS(89), - [anon_sym__Alignof] = ACTIONS(89), - [anon_sym_offsetof] = ACTIONS(91), - [anon_sym__Generic] = ACTIONS(93), - [anon_sym_asm] = ACTIONS(95), - [anon_sym___asm__] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [anon_sym_NULL] = ACTIONS(105), - [anon_sym_nullptr] = ACTIONS(105), + [anon_sym___init] = ACTIONS(43), + [anon_sym___exit] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_const] = ACTIONS(53), + [anon_sym_constexpr] = ACTIONS(53), + [anon_sym_volatile] = ACTIONS(53), + [anon_sym_restrict] = ACTIONS(53), + [anon_sym___restrict__] = ACTIONS(53), + [anon_sym__Atomic] = ACTIONS(53), + [anon_sym__Noreturn] = ACTIONS(53), + [anon_sym_noreturn] = ACTIONS(53), + [anon_sym_alignas] = ACTIONS(55), + [anon_sym__Alignas] = ACTIONS(55), + [sym_primitive_type] = ACTIONS(57), + [anon_sym_enum] = ACTIONS(59), + [anon_sym_struct] = ACTIONS(61), + [anon_sym_union] = ACTIONS(63), + [anon_sym_if] = ACTIONS(65), + [anon_sym_switch] = ACTIONS(67), + [anon_sym_case] = ACTIONS(69), + [anon_sym_default] = ACTIONS(71), + [anon_sym_while] = ACTIONS(73), + [anon_sym_do] = ACTIONS(75), + [anon_sym_for] = ACTIONS(77), + [anon_sym_return] = ACTIONS(79), + [anon_sym_break] = ACTIONS(81), + [anon_sym_continue] = ACTIONS(83), + [anon_sym_goto] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(87), + [anon_sym_sizeof] = ACTIONS(89), + [anon_sym___alignof__] = ACTIONS(91), + [anon_sym___alignof] = ACTIONS(91), + [anon_sym__alignof] = ACTIONS(91), + [anon_sym_alignof] = ACTIONS(91), + [anon_sym__Alignof] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(93), + [anon_sym__Generic] = ACTIONS(95), + [anon_sym_asm] = ACTIONS(97), + [anon_sym___asm__] = ACTIONS(97), + [sym_number_literal] = ACTIONS(99), + [anon_sym_L_SQUOTE] = ACTIONS(101), + [anon_sym_u_SQUOTE] = ACTIONS(101), + [anon_sym_U_SQUOTE] = ACTIONS(101), + [anon_sym_u8_SQUOTE] = ACTIONS(101), + [anon_sym_SQUOTE] = ACTIONS(101), + [anon_sym_L_DQUOTE] = ACTIONS(103), + [anon_sym_u_DQUOTE] = ACTIONS(103), + [anon_sym_U_DQUOTE] = ACTIONS(103), + [anon_sym_u8_DQUOTE] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_true] = ACTIONS(105), + [sym_false] = ACTIONS(105), + [anon_sym_NULL] = ACTIONS(107), + [anon_sym_nullptr] = ACTIONS(107), [sym_comment] = ACTIONS(3), }, [45] = { - [sym_declaration] = STATE(46), - [sym_type_definition] = STATE(46), - [sym__declaration_modifiers] = STATE(697), - [sym__declaration_specifiers] = STATE(1160), - [sym_attribute_specifier] = STATE(697), - [sym_attribute_declaration] = STATE(405), - [sym_ms_declspec_modifier] = STATE(697), - [sym_compound_statement] = STATE(46), - [sym_storage_class_specifier] = STATE(697), - [sym_type_qualifier] = STATE(697), - [sym_alignas_qualifier] = STATE(703), - [sym_type_specifier] = STATE(710), - [sym_sized_type_specifier] = STATE(746), - [sym_enum_specifier] = STATE(746), - [sym_struct_specifier] = STATE(746), - [sym_union_specifier] = STATE(746), - [sym_attributed_statement] = STATE(46), - [sym_labeled_statement] = STATE(46), - [sym_expression_statement] = STATE(46), - [sym_if_statement] = STATE(46), - [sym_switch_statement] = STATE(46), - [sym_while_statement] = STATE(46), - [sym_do_statement] = STATE(46), - [sym_for_statement] = STATE(46), - [sym_return_statement] = STATE(46), - [sym_break_statement] = STATE(46), - [sym_continue_statement] = STATE(46), - [sym_goto_statement] = STATE(46), - [sym_seh_try_statement] = STATE(46), - [sym_seh_leave_statement] = STATE(46), - [sym_expression] = STATE(1073), - [sym__string] = STATE(663), - [sym_comma_expression] = STATE(1821), - [sym_conditional_expression] = STATE(663), - [sym_assignment_expression] = STATE(663), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(663), - [sym_binary_expression] = STATE(663), - [sym_update_expression] = STATE(663), - [sym_cast_expression] = STATE(663), - [sym_sizeof_expression] = STATE(663), - [sym_alignof_expression] = STATE(663), - [sym_offsetof_expression] = STATE(663), - [sym_generic_expression] = STATE(663), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(663), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(663), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(663), - [sym_concatenated_string] = STATE(663), - [sym_string_literal] = STATE(659), - [sym_null] = STATE(663), - [sym_macro_type_specifier] = STATE(746), - [aux_sym__declaration_specifiers_repeat1] = STATE(697), - [aux_sym_attributed_declarator_repeat1] = STATE(365), - [aux_sym_sized_type_specifier_repeat1] = STATE(747), - [aux_sym_case_statement_repeat1] = STATE(46), - [sym_identifier] = ACTIONS(798), - [aux_sym_preproc_include_token1] = ACTIONS(800), - [aux_sym_preproc_def_token1] = ACTIONS(800), - [aux_sym_preproc_if_token1] = ACTIONS(800), - [aux_sym_preproc_if_token2] = ACTIONS(800), - [aux_sym_preproc_ifdef_token1] = ACTIONS(800), - [aux_sym_preproc_ifdef_token2] = ACTIONS(800), - [aux_sym_preproc_else_token1] = ACTIONS(800), - [aux_sym_preproc_elif_token1] = ACTIONS(800), - [aux_sym_preproc_elifdef_token1] = ACTIONS(800), - [aux_sym_preproc_elifdef_token2] = ACTIONS(800), - [sym_preproc_directive] = ACTIONS(800), + [sym_declaration] = STATE(49), + [sym_type_definition] = STATE(49), + [sym__declaration_modifiers] = STATE(805), + [sym__declaration_specifiers] = STATE(1249), + [sym_attribute_specifier] = STATE(805), + [sym_attribute_declaration] = STATE(468), + [sym_ms_declspec_modifier] = STATE(805), + [sym_compound_statement] = STATE(49), + [sym_storage_class_specifier] = STATE(805), + [sym_type_qualifier] = STATE(805), + [sym_alignas_qualifier] = STATE(799), + [sym_type_specifier] = STATE(807), + [sym_sized_type_specifier] = STATE(873), + [sym_enum_specifier] = STATE(873), + [sym_struct_specifier] = STATE(873), + [sym_union_specifier] = STATE(873), + [sym_attributed_statement] = STATE(49), + [sym_labeled_statement] = STATE(49), + [sym_expression_statement] = STATE(49), + [sym_if_statement] = STATE(49), + [sym_switch_statement] = STATE(49), + [sym_while_statement] = STATE(49), + [sym_do_statement] = STATE(49), + [sym_for_statement] = STATE(49), + [sym_return_statement] = STATE(49), + [sym_break_statement] = STATE(49), + [sym_continue_statement] = STATE(49), + [sym_goto_statement] = STATE(49), + [sym_seh_try_statement] = STATE(49), + [sym_seh_leave_statement] = STATE(49), + [sym_expression] = STATE(1157), + [sym__string] = STATE(758), + [sym_comma_expression] = STATE(2232), + [sym_conditional_expression] = STATE(758), + [sym_assignment_expression] = STATE(758), + [sym_pointer_expression] = STATE(944), + [sym_unary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_cast_expression] = STATE(758), + [sym_sizeof_expression] = STATE(758), + [sym_alignof_expression] = STATE(758), + [sym_offsetof_expression] = STATE(758), + [sym_generic_expression] = STATE(758), + [sym_subscript_expression] = STATE(944), + [sym_call_expression] = STATE(944), + [sym_gnu_asm_expression] = STATE(758), + [sym_field_expression] = STATE(944), + [sym_compound_literal_expression] = STATE(758), + [sym_parenthesized_expression] = STATE(944), + [sym_char_literal] = STATE(758), + [sym_concatenated_string] = STATE(758), + [sym_string_literal] = STATE(671), + [sym_null] = STATE(758), + [sym_macro_type_specifier] = STATE(873), + [aux_sym__declaration_specifiers_repeat1] = STATE(805), + [aux_sym_attributed_declarator_repeat1] = STATE(439), + [aux_sym_sized_type_specifier_repeat1] = STATE(890), + [aux_sym_case_statement_repeat1] = STATE(49), + [sym_identifier] = ACTIONS(806), + [aux_sym_preproc_include_token1] = ACTIONS(808), + [aux_sym_preproc_def_token1] = ACTIONS(808), + [aux_sym_preproc_if_token1] = ACTIONS(808), + [aux_sym_preproc_if_token2] = ACTIONS(808), + [aux_sym_preproc_ifdef_token1] = ACTIONS(808), + [aux_sym_preproc_ifdef_token2] = ACTIONS(808), + [aux_sym_preproc_else_token1] = ACTIONS(808), + [aux_sym_preproc_elif_token1] = ACTIONS(808), + [aux_sym_preproc_elifdef_token1] = ACTIONS(808), + [aux_sym_preproc_elifdef_token2] = ACTIONS(808), + [sym_preproc_directive] = ACTIONS(808), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -19904,337 +20717,171 @@ 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(127), - [anon_sym___extension__] = ACTIONS(129), - [anon_sym_typedef] = ACTIONS(131), - [anon_sym_extern] = ACTIONS(49), + [anon_sym_SEMI] = ACTIONS(129), + [anon_sym___extension__] = ACTIONS(131), + [anon_sym_typedef] = ACTIONS(133), + [anon_sym_extern] = ACTIONS(51), [anon_sym___attribute__] = ACTIONS(33), [anon_sym___scanf] = ACTIONS(35), [anon_sym___printf] = ACTIONS(35), [anon_sym___read_mostly] = ACTIONS(37), [anon_sym___must_hold] = ACTIONS(33), [anon_sym___ro_after_init] = ACTIONS(37), - [anon_sym___init] = ACTIONS(37), + [anon_sym___noreturn] = ACTIONS(37), + [anon_sym___cold] = ACTIONS(37), [anon_sym_LBRACK_LBRACK] = ACTIONS(39), [anon_sym___declspec] = ACTIONS(41), - [anon_sym___cdecl] = ACTIONS(800), - [anon_sym___clrcall] = ACTIONS(800), - [anon_sym___stdcall] = ACTIONS(800), - [anon_sym___fastcall] = ACTIONS(800), - [anon_sym___thiscall] = ACTIONS(800), - [anon_sym___vectorcall] = ACTIONS(800), - [anon_sym_LBRACE] = ACTIONS(135), - [anon_sym_signed] = ACTIONS(47), - [anon_sym_unsigned] = ACTIONS(47), - [anon_sym_long] = ACTIONS(47), - [anon_sym_short] = ACTIONS(47), - [anon_sym_static] = ACTIONS(49), - [anon_sym_auto] = ACTIONS(49), - [anon_sym_register] = ACTIONS(49), - [anon_sym_inline] = ACTIONS(49), - [anon_sym___inline] = ACTIONS(49), - [anon_sym___inline__] = ACTIONS(49), - [anon_sym___forceinline] = ACTIONS(49), - [anon_sym_thread_local] = ACTIONS(49), - [anon_sym___thread] = ACTIONS(49), - [anon_sym_const] = ACTIONS(51), - [anon_sym_constexpr] = ACTIONS(51), - [anon_sym_volatile] = ACTIONS(51), - [anon_sym_restrict] = ACTIONS(51), - [anon_sym___restrict__] = ACTIONS(51), - [anon_sym__Atomic] = ACTIONS(51), - [anon_sym__Noreturn] = ACTIONS(51), - [anon_sym_noreturn] = ACTIONS(51), - [anon_sym_alignas] = ACTIONS(53), - [anon_sym__Alignas] = ACTIONS(53), - [sym_primitive_type] = ACTIONS(55), - [anon_sym_enum] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [anon_sym_if] = ACTIONS(137), - [anon_sym_else] = ACTIONS(800), - [anon_sym_switch] = ACTIONS(139), - [anon_sym_case] = ACTIONS(800), - [anon_sym_default] = ACTIONS(800), - [anon_sym_while] = ACTIONS(145), - [anon_sym_do] = ACTIONS(147), - [anon_sym_for] = ACTIONS(149), - [anon_sym_return] = ACTIONS(151), - [anon_sym_break] = ACTIONS(153), - [anon_sym_continue] = ACTIONS(155), - [anon_sym_goto] = ACTIONS(157), - [anon_sym___try] = ACTIONS(159), - [anon_sym___leave] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [anon_sym___alignof__] = ACTIONS(89), - [anon_sym___alignof] = ACTIONS(89), - [anon_sym__alignof] = ACTIONS(89), - [anon_sym_alignof] = ACTIONS(89), - [anon_sym__Alignof] = ACTIONS(89), - [anon_sym_offsetof] = ACTIONS(91), - [anon_sym__Generic] = ACTIONS(93), - [anon_sym_asm] = ACTIONS(95), - [anon_sym___asm__] = ACTIONS(95), - [sym_number_literal] = ACTIONS(163), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(165), - [sym_false] = ACTIONS(165), - [anon_sym_NULL] = ACTIONS(105), - [anon_sym_nullptr] = ACTIONS(105), + [anon_sym___init] = ACTIONS(808), + [anon_sym___exit] = ACTIONS(808), + [anon_sym___cdecl] = ACTIONS(808), + [anon_sym___clrcall] = ACTIONS(808), + [anon_sym___stdcall] = ACTIONS(808), + [anon_sym___fastcall] = ACTIONS(808), + [anon_sym___thiscall] = ACTIONS(808), + [anon_sym___vectorcall] = ACTIONS(808), + [anon_sym_LBRACE] = ACTIONS(137), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_const] = ACTIONS(53), + [anon_sym_constexpr] = ACTIONS(53), + [anon_sym_volatile] = ACTIONS(53), + [anon_sym_restrict] = ACTIONS(53), + [anon_sym___restrict__] = ACTIONS(53), + [anon_sym__Atomic] = ACTIONS(53), + [anon_sym__Noreturn] = ACTIONS(53), + [anon_sym_noreturn] = ACTIONS(53), + [anon_sym_alignas] = ACTIONS(55), + [anon_sym__Alignas] = ACTIONS(55), + [sym_primitive_type] = ACTIONS(57), + [anon_sym_enum] = ACTIONS(59), + [anon_sym_struct] = ACTIONS(61), + [anon_sym_union] = ACTIONS(63), + [anon_sym_if] = ACTIONS(139), + [anon_sym_else] = ACTIONS(808), + [anon_sym_switch] = ACTIONS(141), + [anon_sym_case] = ACTIONS(808), + [anon_sym_default] = ACTIONS(808), + [anon_sym_while] = ACTIONS(147), + [anon_sym_do] = ACTIONS(149), + [anon_sym_for] = ACTIONS(151), + [anon_sym_return] = ACTIONS(153), + [anon_sym_break] = ACTIONS(155), + [anon_sym_continue] = ACTIONS(157), + [anon_sym_goto] = ACTIONS(159), + [anon_sym___try] = ACTIONS(161), + [anon_sym___leave] = ACTIONS(163), + [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(87), + [anon_sym_sizeof] = ACTIONS(89), + [anon_sym___alignof__] = ACTIONS(91), + [anon_sym___alignof] = ACTIONS(91), + [anon_sym__alignof] = ACTIONS(91), + [anon_sym_alignof] = ACTIONS(91), + [anon_sym__Alignof] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(93), + [anon_sym__Generic] = ACTIONS(95), + [anon_sym_asm] = ACTIONS(97), + [anon_sym___asm__] = ACTIONS(97), + [sym_number_literal] = ACTIONS(165), + [anon_sym_L_SQUOTE] = ACTIONS(101), + [anon_sym_u_SQUOTE] = ACTIONS(101), + [anon_sym_U_SQUOTE] = ACTIONS(101), + [anon_sym_u8_SQUOTE] = ACTIONS(101), + [anon_sym_SQUOTE] = ACTIONS(101), + [anon_sym_L_DQUOTE] = ACTIONS(103), + [anon_sym_u_DQUOTE] = ACTIONS(103), + [anon_sym_U_DQUOTE] = ACTIONS(103), + [anon_sym_u8_DQUOTE] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_true] = ACTIONS(167), + [sym_false] = ACTIONS(167), + [anon_sym_NULL] = ACTIONS(107), + [anon_sym_nullptr] = ACTIONS(107), [sym_comment] = ACTIONS(3), }, [46] = { - [sym_declaration] = STATE(46), - [sym_type_definition] = STATE(46), - [sym__declaration_modifiers] = STATE(697), - [sym__declaration_specifiers] = STATE(1160), - [sym_attribute_specifier] = STATE(697), - [sym_attribute_declaration] = STATE(405), - [sym_ms_declspec_modifier] = STATE(697), - [sym_compound_statement] = STATE(46), - [sym_storage_class_specifier] = STATE(697), - [sym_type_qualifier] = STATE(697), - [sym_alignas_qualifier] = STATE(703), - [sym_type_specifier] = STATE(710), - [sym_sized_type_specifier] = STATE(746), - [sym_enum_specifier] = STATE(746), - [sym_struct_specifier] = STATE(746), - [sym_union_specifier] = STATE(746), - [sym_attributed_statement] = STATE(46), - [sym_labeled_statement] = STATE(46), - [sym_expression_statement] = STATE(46), - [sym_if_statement] = STATE(46), - [sym_switch_statement] = STATE(46), - [sym_while_statement] = STATE(46), - [sym_do_statement] = STATE(46), - [sym_for_statement] = STATE(46), - [sym_return_statement] = STATE(46), - [sym_break_statement] = STATE(46), - [sym_continue_statement] = STATE(46), - [sym_goto_statement] = STATE(46), - [sym_seh_try_statement] = STATE(46), - [sym_seh_leave_statement] = STATE(46), - [sym_expression] = STATE(1073), - [sym__string] = STATE(663), - [sym_comma_expression] = STATE(1821), - [sym_conditional_expression] = STATE(663), - [sym_assignment_expression] = STATE(663), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(663), - [sym_binary_expression] = STATE(663), - [sym_update_expression] = STATE(663), - [sym_cast_expression] = STATE(663), - [sym_sizeof_expression] = STATE(663), - [sym_alignof_expression] = STATE(663), - [sym_offsetof_expression] = STATE(663), - [sym_generic_expression] = STATE(663), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(663), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(663), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(663), - [sym_concatenated_string] = STATE(663), - [sym_string_literal] = STATE(659), - [sym_null] = STATE(663), - [sym_macro_type_specifier] = STATE(746), - [aux_sym__declaration_specifiers_repeat1] = STATE(697), - [aux_sym_attributed_declarator_repeat1] = STATE(365), - [aux_sym_sized_type_specifier_repeat1] = STATE(747), - [aux_sym_case_statement_repeat1] = STATE(46), - [sym_identifier] = ACTIONS(802), - [aux_sym_preproc_include_token1] = ACTIONS(805), - [aux_sym_preproc_def_token1] = ACTIONS(805), - [aux_sym_preproc_if_token1] = ACTIONS(805), - [aux_sym_preproc_if_token2] = ACTIONS(805), - [aux_sym_preproc_ifdef_token1] = ACTIONS(805), - [aux_sym_preproc_ifdef_token2] = ACTIONS(805), - [aux_sym_preproc_else_token1] = ACTIONS(805), - [aux_sym_preproc_elif_token1] = ACTIONS(805), - [aux_sym_preproc_elifdef_token1] = ACTIONS(805), - [aux_sym_preproc_elifdef_token2] = ACTIONS(805), - [sym_preproc_directive] = ACTIONS(805), - [anon_sym_LPAREN2] = ACTIONS(807), - [anon_sym_BANG] = ACTIONS(810), - [anon_sym_TILDE] = ACTIONS(810), - [anon_sym_DASH] = ACTIONS(813), - [anon_sym_PLUS] = ACTIONS(813), - [anon_sym_STAR] = ACTIONS(816), - [anon_sym_AMP] = ACTIONS(816), - [anon_sym_SEMI] = ACTIONS(819), - [anon_sym___extension__] = ACTIONS(822), - [anon_sym_typedef] = ACTIONS(825), - [anon_sym_extern] = ACTIONS(828), - [anon_sym___attribute__] = ACTIONS(831), - [anon_sym___scanf] = ACTIONS(834), - [anon_sym___printf] = ACTIONS(834), - [anon_sym___read_mostly] = ACTIONS(837), - [anon_sym___must_hold] = ACTIONS(831), - [anon_sym___ro_after_init] = ACTIONS(837), - [anon_sym___init] = ACTIONS(837), - [anon_sym_LBRACK_LBRACK] = ACTIONS(840), - [anon_sym___declspec] = ACTIONS(843), - [anon_sym___cdecl] = ACTIONS(805), - [anon_sym___clrcall] = ACTIONS(805), - [anon_sym___stdcall] = ACTIONS(805), - [anon_sym___fastcall] = ACTIONS(805), - [anon_sym___thiscall] = ACTIONS(805), - [anon_sym___vectorcall] = ACTIONS(805), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_signed] = ACTIONS(849), - [anon_sym_unsigned] = ACTIONS(849), - [anon_sym_long] = ACTIONS(849), - [anon_sym_short] = ACTIONS(849), - [anon_sym_static] = ACTIONS(828), - [anon_sym_auto] = ACTIONS(828), - [anon_sym_register] = ACTIONS(828), - [anon_sym_inline] = ACTIONS(828), - [anon_sym___inline] = ACTIONS(828), - [anon_sym___inline__] = ACTIONS(828), - [anon_sym___forceinline] = ACTIONS(828), - [anon_sym_thread_local] = ACTIONS(828), - [anon_sym___thread] = ACTIONS(828), - [anon_sym_const] = ACTIONS(852), - [anon_sym_constexpr] = ACTIONS(852), - [anon_sym_volatile] = ACTIONS(852), - [anon_sym_restrict] = ACTIONS(852), - [anon_sym___restrict__] = ACTIONS(852), - [anon_sym__Atomic] = ACTIONS(852), - [anon_sym__Noreturn] = ACTIONS(852), - [anon_sym_noreturn] = ACTIONS(852), - [anon_sym_alignas] = ACTIONS(855), - [anon_sym__Alignas] = ACTIONS(855), - [sym_primitive_type] = ACTIONS(858), - [anon_sym_enum] = ACTIONS(861), - [anon_sym_struct] = ACTIONS(864), - [anon_sym_union] = ACTIONS(867), - [anon_sym_if] = ACTIONS(870), - [anon_sym_else] = ACTIONS(805), - [anon_sym_switch] = ACTIONS(873), - [anon_sym_case] = ACTIONS(805), - [anon_sym_default] = ACTIONS(805), - [anon_sym_while] = ACTIONS(876), - [anon_sym_do] = ACTIONS(879), - [anon_sym_for] = ACTIONS(882), - [anon_sym_return] = ACTIONS(885), - [anon_sym_break] = ACTIONS(888), - [anon_sym_continue] = ACTIONS(891), - [anon_sym_goto] = ACTIONS(894), - [anon_sym___try] = ACTIONS(897), - [anon_sym___leave] = ACTIONS(900), - [anon_sym_DASH_DASH] = ACTIONS(903), - [anon_sym_PLUS_PLUS] = ACTIONS(903), - [anon_sym_sizeof] = ACTIONS(906), - [anon_sym___alignof__] = ACTIONS(909), - [anon_sym___alignof] = ACTIONS(909), - [anon_sym__alignof] = ACTIONS(909), - [anon_sym_alignof] = ACTIONS(909), - [anon_sym__Alignof] = ACTIONS(909), - [anon_sym_offsetof] = ACTIONS(912), - [anon_sym__Generic] = ACTIONS(915), - [anon_sym_asm] = ACTIONS(918), - [anon_sym___asm__] = ACTIONS(918), - [sym_number_literal] = ACTIONS(921), - [anon_sym_L_SQUOTE] = ACTIONS(924), - [anon_sym_u_SQUOTE] = ACTIONS(924), - [anon_sym_U_SQUOTE] = ACTIONS(924), - [anon_sym_u8_SQUOTE] = ACTIONS(924), - [anon_sym_SQUOTE] = ACTIONS(924), - [anon_sym_L_DQUOTE] = ACTIONS(927), - [anon_sym_u_DQUOTE] = ACTIONS(927), - [anon_sym_U_DQUOTE] = ACTIONS(927), - [anon_sym_u8_DQUOTE] = ACTIONS(927), - [anon_sym_DQUOTE] = ACTIONS(927), - [sym_true] = ACTIONS(930), - [sym_false] = ACTIONS(930), - [anon_sym_NULL] = ACTIONS(933), - [anon_sym_nullptr] = ACTIONS(933), - [sym_comment] = ACTIONS(3), - }, - [47] = { - [sym_declaration] = STATE(46), - [sym_type_definition] = STATE(46), - [sym__declaration_modifiers] = STATE(697), - [sym__declaration_specifiers] = STATE(1160), - [sym_attribute_specifier] = STATE(697), - [sym_attribute_declaration] = STATE(405), - [sym_ms_declspec_modifier] = STATE(697), - [sym_compound_statement] = STATE(46), - [sym_storage_class_specifier] = STATE(697), - [sym_type_qualifier] = STATE(697), - [sym_alignas_qualifier] = STATE(703), - [sym_type_specifier] = STATE(710), - [sym_sized_type_specifier] = STATE(746), - [sym_enum_specifier] = STATE(746), - [sym_struct_specifier] = STATE(746), - [sym_union_specifier] = STATE(746), - [sym_attributed_statement] = STATE(46), - [sym_labeled_statement] = STATE(46), - [sym_expression_statement] = STATE(46), - [sym_if_statement] = STATE(46), - [sym_switch_statement] = STATE(46), - [sym_while_statement] = STATE(46), - [sym_do_statement] = STATE(46), - [sym_for_statement] = STATE(46), - [sym_return_statement] = STATE(46), - [sym_break_statement] = STATE(46), - [sym_continue_statement] = STATE(46), - [sym_goto_statement] = STATE(46), - [sym_seh_try_statement] = STATE(46), - [sym_seh_leave_statement] = STATE(46), - [sym_expression] = STATE(1073), - [sym__string] = STATE(663), - [sym_comma_expression] = STATE(1821), - [sym_conditional_expression] = STATE(663), - [sym_assignment_expression] = STATE(663), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(663), - [sym_binary_expression] = STATE(663), - [sym_update_expression] = STATE(663), - [sym_cast_expression] = STATE(663), - [sym_sizeof_expression] = STATE(663), - [sym_alignof_expression] = STATE(663), - [sym_offsetof_expression] = STATE(663), - [sym_generic_expression] = STATE(663), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(663), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(663), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(663), - [sym_concatenated_string] = STATE(663), - [sym_string_literal] = STATE(659), - [sym_null] = STATE(663), - [sym_macro_type_specifier] = STATE(746), - [aux_sym__declaration_specifiers_repeat1] = STATE(697), - [aux_sym_attributed_declarator_repeat1] = STATE(365), - [aux_sym_sized_type_specifier_repeat1] = STATE(747), - [aux_sym_case_statement_repeat1] = STATE(46), - [sym_identifier] = ACTIONS(798), - [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), - [aux_sym_preproc_elifdef_token1] = ACTIONS(936), - [aux_sym_preproc_elifdef_token2] = ACTIONS(936), - [sym_preproc_directive] = ACTIONS(936), + [sym_declaration] = STATE(48), + [sym_type_definition] = STATE(48), + [sym__declaration_modifiers] = STATE(805), + [sym__declaration_specifiers] = STATE(1249), + [sym_attribute_specifier] = STATE(805), + [sym_attribute_declaration] = STATE(468), + [sym_ms_declspec_modifier] = STATE(805), + [sym_compound_statement] = STATE(48), + [sym_storage_class_specifier] = STATE(805), + [sym_type_qualifier] = STATE(805), + [sym_alignas_qualifier] = STATE(799), + [sym_type_specifier] = STATE(807), + [sym_sized_type_specifier] = STATE(873), + [sym_enum_specifier] = STATE(873), + [sym_struct_specifier] = STATE(873), + [sym_union_specifier] = STATE(873), + [sym_attributed_statement] = STATE(48), + [sym_labeled_statement] = STATE(48), + [sym_expression_statement] = STATE(48), + [sym_if_statement] = STATE(48), + [sym_switch_statement] = STATE(48), + [sym_while_statement] = STATE(48), + [sym_do_statement] = STATE(48), + [sym_for_statement] = STATE(48), + [sym_return_statement] = STATE(48), + [sym_break_statement] = STATE(48), + [sym_continue_statement] = STATE(48), + [sym_goto_statement] = STATE(48), + [sym_seh_try_statement] = STATE(48), + [sym_seh_leave_statement] = STATE(48), + [sym_expression] = STATE(1157), + [sym__string] = STATE(758), + [sym_comma_expression] = STATE(2232), + [sym_conditional_expression] = STATE(758), + [sym_assignment_expression] = STATE(758), + [sym_pointer_expression] = STATE(944), + [sym_unary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_cast_expression] = STATE(758), + [sym_sizeof_expression] = STATE(758), + [sym_alignof_expression] = STATE(758), + [sym_offsetof_expression] = STATE(758), + [sym_generic_expression] = STATE(758), + [sym_subscript_expression] = STATE(944), + [sym_call_expression] = STATE(944), + [sym_gnu_asm_expression] = STATE(758), + [sym_field_expression] = STATE(944), + [sym_compound_literal_expression] = STATE(758), + [sym_parenthesized_expression] = STATE(944), + [sym_char_literal] = STATE(758), + [sym_concatenated_string] = STATE(758), + [sym_string_literal] = STATE(671), + [sym_null] = STATE(758), + [sym_macro_type_specifier] = STATE(873), + [aux_sym__declaration_specifiers_repeat1] = STATE(805), + [aux_sym_attributed_declarator_repeat1] = STATE(439), + [aux_sym_sized_type_specifier_repeat1] = STATE(890), + [aux_sym_case_statement_repeat1] = STATE(48), + [sym_identifier] = ACTIONS(806), + [aux_sym_preproc_include_token1] = ACTIONS(810), + [aux_sym_preproc_def_token1] = ACTIONS(810), + [aux_sym_preproc_if_token1] = ACTIONS(810), + [aux_sym_preproc_if_token2] = ACTIONS(810), + [aux_sym_preproc_ifdef_token1] = ACTIONS(810), + [aux_sym_preproc_ifdef_token2] = ACTIONS(810), + [aux_sym_preproc_else_token1] = ACTIONS(810), + [aux_sym_preproc_elif_token1] = ACTIONS(810), + [aux_sym_preproc_elifdef_token1] = ACTIONS(810), + [aux_sym_preproc_elifdef_token2] = ACTIONS(810), + [sym_preproc_directive] = ACTIONS(810), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -20242,113 +20889,116 @@ 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(127), - [anon_sym___extension__] = ACTIONS(129), - [anon_sym_typedef] = ACTIONS(131), - [anon_sym_extern] = ACTIONS(49), + [anon_sym_SEMI] = ACTIONS(129), + [anon_sym___extension__] = ACTIONS(131), + [anon_sym_typedef] = ACTIONS(133), + [anon_sym_extern] = ACTIONS(51), [anon_sym___attribute__] = ACTIONS(33), [anon_sym___scanf] = ACTIONS(35), [anon_sym___printf] = ACTIONS(35), [anon_sym___read_mostly] = ACTIONS(37), [anon_sym___must_hold] = ACTIONS(33), [anon_sym___ro_after_init] = ACTIONS(37), - [anon_sym___init] = ACTIONS(37), + [anon_sym___noreturn] = ACTIONS(37), + [anon_sym___cold] = ACTIONS(37), [anon_sym_LBRACK_LBRACK] = ACTIONS(39), [anon_sym___declspec] = ACTIONS(41), - [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(135), - [anon_sym_signed] = ACTIONS(47), - [anon_sym_unsigned] = ACTIONS(47), - [anon_sym_long] = ACTIONS(47), - [anon_sym_short] = ACTIONS(47), - [anon_sym_static] = ACTIONS(49), - [anon_sym_auto] = ACTIONS(49), - [anon_sym_register] = ACTIONS(49), - [anon_sym_inline] = ACTIONS(49), - [anon_sym___inline] = ACTIONS(49), - [anon_sym___inline__] = ACTIONS(49), - [anon_sym___forceinline] = ACTIONS(49), - [anon_sym_thread_local] = ACTIONS(49), - [anon_sym___thread] = ACTIONS(49), - [anon_sym_const] = ACTIONS(51), - [anon_sym_constexpr] = ACTIONS(51), - [anon_sym_volatile] = ACTIONS(51), - [anon_sym_restrict] = ACTIONS(51), - [anon_sym___restrict__] = ACTIONS(51), - [anon_sym__Atomic] = ACTIONS(51), - [anon_sym__Noreturn] = ACTIONS(51), - [anon_sym_noreturn] = ACTIONS(51), - [anon_sym_alignas] = ACTIONS(53), - [anon_sym__Alignas] = ACTIONS(53), - [sym_primitive_type] = ACTIONS(55), - [anon_sym_enum] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [anon_sym_if] = ACTIONS(137), - [anon_sym_else] = ACTIONS(936), - [anon_sym_switch] = ACTIONS(139), - [anon_sym_case] = ACTIONS(936), - [anon_sym_default] = ACTIONS(936), - [anon_sym_while] = ACTIONS(145), - [anon_sym_do] = ACTIONS(147), - [anon_sym_for] = ACTIONS(149), - [anon_sym_return] = ACTIONS(151), - [anon_sym_break] = ACTIONS(153), - [anon_sym_continue] = ACTIONS(155), - [anon_sym_goto] = ACTIONS(157), - [anon_sym___try] = ACTIONS(159), - [anon_sym___leave] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [anon_sym___alignof__] = ACTIONS(89), - [anon_sym___alignof] = ACTIONS(89), - [anon_sym__alignof] = ACTIONS(89), - [anon_sym_alignof] = ACTIONS(89), - [anon_sym__Alignof] = ACTIONS(89), - [anon_sym_offsetof] = ACTIONS(91), - [anon_sym__Generic] = ACTIONS(93), - [anon_sym_asm] = ACTIONS(95), - [anon_sym___asm__] = ACTIONS(95), - [sym_number_literal] = ACTIONS(163), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(165), - [sym_false] = ACTIONS(165), - [anon_sym_NULL] = ACTIONS(105), - [anon_sym_nullptr] = ACTIONS(105), + [anon_sym___init] = ACTIONS(810), + [anon_sym___exit] = ACTIONS(810), + [anon_sym___cdecl] = ACTIONS(810), + [anon_sym___clrcall] = ACTIONS(810), + [anon_sym___stdcall] = ACTIONS(810), + [anon_sym___fastcall] = ACTIONS(810), + [anon_sym___thiscall] = ACTIONS(810), + [anon_sym___vectorcall] = ACTIONS(810), + [anon_sym_LBRACE] = ACTIONS(137), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_const] = ACTIONS(53), + [anon_sym_constexpr] = ACTIONS(53), + [anon_sym_volatile] = ACTIONS(53), + [anon_sym_restrict] = ACTIONS(53), + [anon_sym___restrict__] = ACTIONS(53), + [anon_sym__Atomic] = ACTIONS(53), + [anon_sym__Noreturn] = ACTIONS(53), + [anon_sym_noreturn] = ACTIONS(53), + [anon_sym_alignas] = ACTIONS(55), + [anon_sym__Alignas] = ACTIONS(55), + [sym_primitive_type] = ACTIONS(57), + [anon_sym_enum] = ACTIONS(59), + [anon_sym_struct] = ACTIONS(61), + [anon_sym_union] = ACTIONS(63), + [anon_sym_if] = ACTIONS(139), + [anon_sym_else] = ACTIONS(810), + [anon_sym_switch] = ACTIONS(141), + [anon_sym_case] = ACTIONS(810), + [anon_sym_default] = ACTIONS(810), + [anon_sym_while] = ACTIONS(147), + [anon_sym_do] = ACTIONS(149), + [anon_sym_for] = ACTIONS(151), + [anon_sym_return] = ACTIONS(153), + [anon_sym_break] = ACTIONS(155), + [anon_sym_continue] = ACTIONS(157), + [anon_sym_goto] = ACTIONS(159), + [anon_sym___try] = ACTIONS(161), + [anon_sym___leave] = ACTIONS(163), + [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(87), + [anon_sym_sizeof] = ACTIONS(89), + [anon_sym___alignof__] = ACTIONS(91), + [anon_sym___alignof] = ACTIONS(91), + [anon_sym__alignof] = ACTIONS(91), + [anon_sym_alignof] = ACTIONS(91), + [anon_sym__Alignof] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(93), + [anon_sym__Generic] = ACTIONS(95), + [anon_sym_asm] = ACTIONS(97), + [anon_sym___asm__] = ACTIONS(97), + [sym_number_literal] = ACTIONS(165), + [anon_sym_L_SQUOTE] = ACTIONS(101), + [anon_sym_u_SQUOTE] = ACTIONS(101), + [anon_sym_U_SQUOTE] = ACTIONS(101), + [anon_sym_u8_SQUOTE] = ACTIONS(101), + [anon_sym_SQUOTE] = ACTIONS(101), + [anon_sym_L_DQUOTE] = ACTIONS(103), + [anon_sym_u_DQUOTE] = ACTIONS(103), + [anon_sym_U_DQUOTE] = ACTIONS(103), + [anon_sym_u8_DQUOTE] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_true] = ACTIONS(167), + [sym_false] = ACTIONS(167), + [anon_sym_NULL] = ACTIONS(107), + [anon_sym_nullptr] = ACTIONS(107), [sym_comment] = ACTIONS(3), }, - [48] = { + [47] = { [sym_declaration] = STATE(45), [sym_type_definition] = STATE(45), - [sym__declaration_modifiers] = STATE(697), - [sym__declaration_specifiers] = STATE(1160), - [sym_attribute_specifier] = STATE(697), - [sym_attribute_declaration] = STATE(405), - [sym_ms_declspec_modifier] = STATE(697), + [sym__declaration_modifiers] = STATE(805), + [sym__declaration_specifiers] = STATE(1249), + [sym_attribute_specifier] = STATE(805), + [sym_attribute_declaration] = STATE(468), + [sym_ms_declspec_modifier] = STATE(805), [sym_compound_statement] = STATE(45), - [sym_storage_class_specifier] = STATE(697), - [sym_type_qualifier] = STATE(697), - [sym_alignas_qualifier] = STATE(703), - [sym_type_specifier] = STATE(710), - [sym_sized_type_specifier] = STATE(746), - [sym_enum_specifier] = STATE(746), - [sym_struct_specifier] = STATE(746), - [sym_union_specifier] = STATE(746), + [sym_storage_class_specifier] = STATE(805), + [sym_type_qualifier] = STATE(805), + [sym_alignas_qualifier] = STATE(799), + [sym_type_specifier] = STATE(807), + [sym_sized_type_specifier] = STATE(873), + [sym_enum_specifier] = STATE(873), + [sym_struct_specifier] = STATE(873), + [sym_union_specifier] = STATE(873), [sym_attributed_statement] = STATE(45), [sym_labeled_statement] = STATE(45), [sym_expression_statement] = STATE(45), @@ -20363,47 +21013,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(45), [sym_seh_try_statement] = STATE(45), [sym_seh_leave_statement] = STATE(45), - [sym_expression] = STATE(1073), - [sym__string] = STATE(663), - [sym_comma_expression] = STATE(1821), - [sym_conditional_expression] = STATE(663), - [sym_assignment_expression] = STATE(663), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(663), - [sym_binary_expression] = STATE(663), - [sym_update_expression] = STATE(663), - [sym_cast_expression] = STATE(663), - [sym_sizeof_expression] = STATE(663), - [sym_alignof_expression] = STATE(663), - [sym_offsetof_expression] = STATE(663), - [sym_generic_expression] = STATE(663), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(663), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(663), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(663), - [sym_concatenated_string] = STATE(663), - [sym_string_literal] = STATE(659), - [sym_null] = STATE(663), - [sym_macro_type_specifier] = STATE(746), - [aux_sym__declaration_specifiers_repeat1] = STATE(697), - [aux_sym_attributed_declarator_repeat1] = STATE(365), - [aux_sym_sized_type_specifier_repeat1] = STATE(747), + [sym_expression] = STATE(1157), + [sym__string] = STATE(758), + [sym_comma_expression] = STATE(2232), + [sym_conditional_expression] = STATE(758), + [sym_assignment_expression] = STATE(758), + [sym_pointer_expression] = STATE(944), + [sym_unary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_cast_expression] = STATE(758), + [sym_sizeof_expression] = STATE(758), + [sym_alignof_expression] = STATE(758), + [sym_offsetof_expression] = STATE(758), + [sym_generic_expression] = STATE(758), + [sym_subscript_expression] = STATE(944), + [sym_call_expression] = STATE(944), + [sym_gnu_asm_expression] = STATE(758), + [sym_field_expression] = STATE(944), + [sym_compound_literal_expression] = STATE(758), + [sym_parenthesized_expression] = STATE(944), + [sym_char_literal] = STATE(758), + [sym_concatenated_string] = STATE(758), + [sym_string_literal] = STATE(671), + [sym_null] = STATE(758), + [sym_macro_type_specifier] = STATE(873), + [aux_sym__declaration_specifiers_repeat1] = STATE(805), + [aux_sym_attributed_declarator_repeat1] = STATE(439), + [aux_sym_sized_type_specifier_repeat1] = STATE(890), [aux_sym_case_statement_repeat1] = STATE(45), - [sym_identifier] = ACTIONS(798), - [aux_sym_preproc_include_token1] = ACTIONS(938), - [aux_sym_preproc_def_token1] = ACTIONS(938), - [aux_sym_preproc_if_token1] = ACTIONS(938), - [aux_sym_preproc_if_token2] = ACTIONS(938), - [aux_sym_preproc_ifdef_token1] = ACTIONS(938), - [aux_sym_preproc_ifdef_token2] = ACTIONS(938), - [aux_sym_preproc_else_token1] = ACTIONS(938), - [aux_sym_preproc_elif_token1] = ACTIONS(938), - [aux_sym_preproc_elifdef_token1] = ACTIONS(938), - [aux_sym_preproc_elifdef_token2] = ACTIONS(938), - [sym_preproc_directive] = ACTIONS(938), + [sym_identifier] = ACTIONS(806), + [aux_sym_preproc_include_token1] = ACTIONS(812), + [aux_sym_preproc_def_token1] = ACTIONS(812), + [aux_sym_preproc_if_token1] = ACTIONS(812), + [aux_sym_preproc_if_token2] = ACTIONS(812), + [aux_sym_preproc_ifdef_token1] = ACTIONS(812), + [aux_sym_preproc_ifdef_token2] = ACTIONS(812), + [aux_sym_preproc_else_token1] = ACTIONS(812), + [aux_sym_preproc_elif_token1] = ACTIONS(812), + [aux_sym_preproc_elifdef_token1] = ACTIONS(812), + [aux_sym_preproc_elifdef_token2] = ACTIONS(812), + [sym_preproc_directive] = ACTIONS(812), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -20411,168 +21061,171 @@ 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(127), - [anon_sym___extension__] = ACTIONS(129), - [anon_sym_typedef] = ACTIONS(131), - [anon_sym_extern] = ACTIONS(49), + [anon_sym_SEMI] = ACTIONS(129), + [anon_sym___extension__] = ACTIONS(131), + [anon_sym_typedef] = ACTIONS(133), + [anon_sym_extern] = ACTIONS(51), [anon_sym___attribute__] = ACTIONS(33), [anon_sym___scanf] = ACTIONS(35), [anon_sym___printf] = ACTIONS(35), [anon_sym___read_mostly] = ACTIONS(37), [anon_sym___must_hold] = ACTIONS(33), [anon_sym___ro_after_init] = ACTIONS(37), - [anon_sym___init] = ACTIONS(37), + [anon_sym___noreturn] = ACTIONS(37), + [anon_sym___cold] = ACTIONS(37), [anon_sym_LBRACK_LBRACK] = ACTIONS(39), [anon_sym___declspec] = ACTIONS(41), - [anon_sym___cdecl] = ACTIONS(938), - [anon_sym___clrcall] = ACTIONS(938), - [anon_sym___stdcall] = ACTIONS(938), - [anon_sym___fastcall] = ACTIONS(938), - [anon_sym___thiscall] = ACTIONS(938), - [anon_sym___vectorcall] = ACTIONS(938), - [anon_sym_LBRACE] = ACTIONS(135), - [anon_sym_signed] = ACTIONS(47), - [anon_sym_unsigned] = ACTIONS(47), - [anon_sym_long] = ACTIONS(47), - [anon_sym_short] = ACTIONS(47), - [anon_sym_static] = ACTIONS(49), - [anon_sym_auto] = ACTIONS(49), - [anon_sym_register] = ACTIONS(49), - [anon_sym_inline] = ACTIONS(49), - [anon_sym___inline] = ACTIONS(49), - [anon_sym___inline__] = ACTIONS(49), - [anon_sym___forceinline] = ACTIONS(49), - [anon_sym_thread_local] = ACTIONS(49), - [anon_sym___thread] = ACTIONS(49), - [anon_sym_const] = ACTIONS(51), - [anon_sym_constexpr] = ACTIONS(51), - [anon_sym_volatile] = ACTIONS(51), - [anon_sym_restrict] = ACTIONS(51), - [anon_sym___restrict__] = ACTIONS(51), - [anon_sym__Atomic] = ACTIONS(51), - [anon_sym__Noreturn] = ACTIONS(51), - [anon_sym_noreturn] = ACTIONS(51), - [anon_sym_alignas] = ACTIONS(53), - [anon_sym__Alignas] = ACTIONS(53), - [sym_primitive_type] = ACTIONS(55), - [anon_sym_enum] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [anon_sym_if] = ACTIONS(137), - [anon_sym_else] = ACTIONS(938), - [anon_sym_switch] = ACTIONS(139), - [anon_sym_case] = ACTIONS(938), - [anon_sym_default] = ACTIONS(938), - [anon_sym_while] = ACTIONS(145), - [anon_sym_do] = ACTIONS(147), - [anon_sym_for] = ACTIONS(149), - [anon_sym_return] = ACTIONS(151), - [anon_sym_break] = ACTIONS(153), - [anon_sym_continue] = ACTIONS(155), - [anon_sym_goto] = ACTIONS(157), - [anon_sym___try] = ACTIONS(159), - [anon_sym___leave] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [anon_sym___alignof__] = ACTIONS(89), - [anon_sym___alignof] = ACTIONS(89), - [anon_sym__alignof] = ACTIONS(89), - [anon_sym_alignof] = ACTIONS(89), - [anon_sym__Alignof] = ACTIONS(89), - [anon_sym_offsetof] = ACTIONS(91), - [anon_sym__Generic] = ACTIONS(93), - [anon_sym_asm] = ACTIONS(95), - [anon_sym___asm__] = ACTIONS(95), - [sym_number_literal] = ACTIONS(163), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(165), - [sym_false] = ACTIONS(165), - [anon_sym_NULL] = ACTIONS(105), - [anon_sym_nullptr] = ACTIONS(105), + [anon_sym___init] = ACTIONS(812), + [anon_sym___exit] = ACTIONS(812), + [anon_sym___cdecl] = ACTIONS(812), + [anon_sym___clrcall] = ACTIONS(812), + [anon_sym___stdcall] = ACTIONS(812), + [anon_sym___fastcall] = ACTIONS(812), + [anon_sym___thiscall] = ACTIONS(812), + [anon_sym___vectorcall] = ACTIONS(812), + [anon_sym_LBRACE] = ACTIONS(137), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_const] = ACTIONS(53), + [anon_sym_constexpr] = ACTIONS(53), + [anon_sym_volatile] = ACTIONS(53), + [anon_sym_restrict] = ACTIONS(53), + [anon_sym___restrict__] = ACTIONS(53), + [anon_sym__Atomic] = ACTIONS(53), + [anon_sym__Noreturn] = ACTIONS(53), + [anon_sym_noreturn] = ACTIONS(53), + [anon_sym_alignas] = ACTIONS(55), + [anon_sym__Alignas] = ACTIONS(55), + [sym_primitive_type] = ACTIONS(57), + [anon_sym_enum] = ACTIONS(59), + [anon_sym_struct] = ACTIONS(61), + [anon_sym_union] = ACTIONS(63), + [anon_sym_if] = ACTIONS(139), + [anon_sym_else] = ACTIONS(812), + [anon_sym_switch] = ACTIONS(141), + [anon_sym_case] = ACTIONS(812), + [anon_sym_default] = ACTIONS(812), + [anon_sym_while] = ACTIONS(147), + [anon_sym_do] = ACTIONS(149), + [anon_sym_for] = ACTIONS(151), + [anon_sym_return] = ACTIONS(153), + [anon_sym_break] = ACTIONS(155), + [anon_sym_continue] = ACTIONS(157), + [anon_sym_goto] = ACTIONS(159), + [anon_sym___try] = ACTIONS(161), + [anon_sym___leave] = ACTIONS(163), + [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(87), + [anon_sym_sizeof] = ACTIONS(89), + [anon_sym___alignof__] = ACTIONS(91), + [anon_sym___alignof] = ACTIONS(91), + [anon_sym__alignof] = ACTIONS(91), + [anon_sym_alignof] = ACTIONS(91), + [anon_sym__Alignof] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(93), + [anon_sym__Generic] = ACTIONS(95), + [anon_sym_asm] = ACTIONS(97), + [anon_sym___asm__] = ACTIONS(97), + [sym_number_literal] = ACTIONS(165), + [anon_sym_L_SQUOTE] = ACTIONS(101), + [anon_sym_u_SQUOTE] = ACTIONS(101), + [anon_sym_U_SQUOTE] = ACTIONS(101), + [anon_sym_u8_SQUOTE] = ACTIONS(101), + [anon_sym_SQUOTE] = ACTIONS(101), + [anon_sym_L_DQUOTE] = ACTIONS(103), + [anon_sym_u_DQUOTE] = ACTIONS(103), + [anon_sym_U_DQUOTE] = ACTIONS(103), + [anon_sym_u8_DQUOTE] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_true] = ACTIONS(167), + [sym_false] = ACTIONS(167), + [anon_sym_NULL] = ACTIONS(107), + [anon_sym_nullptr] = ACTIONS(107), [sym_comment] = ACTIONS(3), }, - [49] = { - [sym_declaration] = STATE(47), - [sym_type_definition] = STATE(47), - [sym__declaration_modifiers] = STATE(697), - [sym__declaration_specifiers] = STATE(1160), - [sym_attribute_specifier] = STATE(697), - [sym_attribute_declaration] = STATE(405), - [sym_ms_declspec_modifier] = STATE(697), - [sym_compound_statement] = STATE(47), - [sym_storage_class_specifier] = STATE(697), - [sym_type_qualifier] = STATE(697), - [sym_alignas_qualifier] = STATE(703), - [sym_type_specifier] = STATE(710), - [sym_sized_type_specifier] = STATE(746), - [sym_enum_specifier] = STATE(746), - [sym_struct_specifier] = STATE(746), - [sym_union_specifier] = STATE(746), - [sym_attributed_statement] = STATE(47), - [sym_labeled_statement] = STATE(47), - [sym_expression_statement] = STATE(47), - [sym_if_statement] = STATE(47), - [sym_switch_statement] = STATE(47), - [sym_while_statement] = STATE(47), - [sym_do_statement] = STATE(47), - [sym_for_statement] = STATE(47), - [sym_return_statement] = STATE(47), - [sym_break_statement] = STATE(47), - [sym_continue_statement] = STATE(47), - [sym_goto_statement] = STATE(47), - [sym_seh_try_statement] = STATE(47), - [sym_seh_leave_statement] = STATE(47), - [sym_expression] = STATE(1073), - [sym__string] = STATE(663), - [sym_comma_expression] = STATE(1821), - [sym_conditional_expression] = STATE(663), - [sym_assignment_expression] = STATE(663), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(663), - [sym_binary_expression] = STATE(663), - [sym_update_expression] = STATE(663), - [sym_cast_expression] = STATE(663), - [sym_sizeof_expression] = STATE(663), - [sym_alignof_expression] = STATE(663), - [sym_offsetof_expression] = STATE(663), - [sym_generic_expression] = STATE(663), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(663), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(663), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(663), - [sym_concatenated_string] = STATE(663), - [sym_string_literal] = STATE(659), - [sym_null] = STATE(663), - [sym_macro_type_specifier] = STATE(746), - [aux_sym__declaration_specifiers_repeat1] = STATE(697), - [aux_sym_attributed_declarator_repeat1] = STATE(365), - [aux_sym_sized_type_specifier_repeat1] = STATE(747), - [aux_sym_case_statement_repeat1] = STATE(47), - [sym_identifier] = ACTIONS(798), - [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), - [aux_sym_preproc_elifdef_token1] = ACTIONS(940), - [aux_sym_preproc_elifdef_token2] = ACTIONS(940), - [sym_preproc_directive] = ACTIONS(940), + [48] = { + [sym_declaration] = STATE(49), + [sym_type_definition] = STATE(49), + [sym__declaration_modifiers] = STATE(805), + [sym__declaration_specifiers] = STATE(1249), + [sym_attribute_specifier] = STATE(805), + [sym_attribute_declaration] = STATE(468), + [sym_ms_declspec_modifier] = STATE(805), + [sym_compound_statement] = STATE(49), + [sym_storage_class_specifier] = STATE(805), + [sym_type_qualifier] = STATE(805), + [sym_alignas_qualifier] = STATE(799), + [sym_type_specifier] = STATE(807), + [sym_sized_type_specifier] = STATE(873), + [sym_enum_specifier] = STATE(873), + [sym_struct_specifier] = STATE(873), + [sym_union_specifier] = STATE(873), + [sym_attributed_statement] = STATE(49), + [sym_labeled_statement] = STATE(49), + [sym_expression_statement] = STATE(49), + [sym_if_statement] = STATE(49), + [sym_switch_statement] = STATE(49), + [sym_while_statement] = STATE(49), + [sym_do_statement] = STATE(49), + [sym_for_statement] = STATE(49), + [sym_return_statement] = STATE(49), + [sym_break_statement] = STATE(49), + [sym_continue_statement] = STATE(49), + [sym_goto_statement] = STATE(49), + [sym_seh_try_statement] = STATE(49), + [sym_seh_leave_statement] = STATE(49), + [sym_expression] = STATE(1157), + [sym__string] = STATE(758), + [sym_comma_expression] = STATE(2232), + [sym_conditional_expression] = STATE(758), + [sym_assignment_expression] = STATE(758), + [sym_pointer_expression] = STATE(944), + [sym_unary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_cast_expression] = STATE(758), + [sym_sizeof_expression] = STATE(758), + [sym_alignof_expression] = STATE(758), + [sym_offsetof_expression] = STATE(758), + [sym_generic_expression] = STATE(758), + [sym_subscript_expression] = STATE(944), + [sym_call_expression] = STATE(944), + [sym_gnu_asm_expression] = STATE(758), + [sym_field_expression] = STATE(944), + [sym_compound_literal_expression] = STATE(758), + [sym_parenthesized_expression] = STATE(944), + [sym_char_literal] = STATE(758), + [sym_concatenated_string] = STATE(758), + [sym_string_literal] = STATE(671), + [sym_null] = STATE(758), + [sym_macro_type_specifier] = STATE(873), + [aux_sym__declaration_specifiers_repeat1] = STATE(805), + [aux_sym_attributed_declarator_repeat1] = STATE(439), + [aux_sym_sized_type_specifier_repeat1] = STATE(890), + [aux_sym_case_statement_repeat1] = STATE(49), + [sym_identifier] = ACTIONS(806), + [aux_sym_preproc_include_token1] = ACTIONS(814), + [aux_sym_preproc_def_token1] = ACTIONS(814), + [aux_sym_preproc_if_token1] = ACTIONS(814), + [aux_sym_preproc_if_token2] = ACTIONS(814), + [aux_sym_preproc_ifdef_token1] = ACTIONS(814), + [aux_sym_preproc_ifdef_token2] = ACTIONS(814), + [aux_sym_preproc_else_token1] = ACTIONS(814), + [aux_sym_preproc_elif_token1] = ACTIONS(814), + [aux_sym_preproc_elifdef_token1] = ACTIONS(814), + [aux_sym_preproc_elifdef_token2] = ACTIONS(814), + [sym_preproc_directive] = ACTIONS(814), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -20580,329 +21233,339 @@ 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(127), - [anon_sym___extension__] = ACTIONS(129), - [anon_sym_typedef] = ACTIONS(131), - [anon_sym_extern] = ACTIONS(49), + [anon_sym_SEMI] = ACTIONS(129), + [anon_sym___extension__] = ACTIONS(131), + [anon_sym_typedef] = ACTIONS(133), + [anon_sym_extern] = ACTIONS(51), [anon_sym___attribute__] = ACTIONS(33), [anon_sym___scanf] = ACTIONS(35), [anon_sym___printf] = ACTIONS(35), [anon_sym___read_mostly] = ACTIONS(37), [anon_sym___must_hold] = ACTIONS(33), [anon_sym___ro_after_init] = ACTIONS(37), - [anon_sym___init] = ACTIONS(37), + [anon_sym___noreturn] = ACTIONS(37), + [anon_sym___cold] = ACTIONS(37), [anon_sym_LBRACK_LBRACK] = ACTIONS(39), [anon_sym___declspec] = ACTIONS(41), - [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(135), - [anon_sym_signed] = ACTIONS(47), - [anon_sym_unsigned] = ACTIONS(47), - [anon_sym_long] = ACTIONS(47), - [anon_sym_short] = ACTIONS(47), - [anon_sym_static] = ACTIONS(49), - [anon_sym_auto] = ACTIONS(49), - [anon_sym_register] = ACTIONS(49), - [anon_sym_inline] = ACTIONS(49), - [anon_sym___inline] = ACTIONS(49), - [anon_sym___inline__] = ACTIONS(49), - [anon_sym___forceinline] = ACTIONS(49), - [anon_sym_thread_local] = ACTIONS(49), - [anon_sym___thread] = ACTIONS(49), - [anon_sym_const] = ACTIONS(51), - [anon_sym_constexpr] = ACTIONS(51), - [anon_sym_volatile] = ACTIONS(51), - [anon_sym_restrict] = ACTIONS(51), - [anon_sym___restrict__] = ACTIONS(51), - [anon_sym__Atomic] = ACTIONS(51), - [anon_sym__Noreturn] = ACTIONS(51), - [anon_sym_noreturn] = ACTIONS(51), - [anon_sym_alignas] = ACTIONS(53), - [anon_sym__Alignas] = ACTIONS(53), - [sym_primitive_type] = ACTIONS(55), - [anon_sym_enum] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [anon_sym_if] = ACTIONS(137), - [anon_sym_else] = ACTIONS(940), - [anon_sym_switch] = ACTIONS(139), - [anon_sym_case] = ACTIONS(940), - [anon_sym_default] = ACTIONS(940), - [anon_sym_while] = ACTIONS(145), - [anon_sym_do] = ACTIONS(147), - [anon_sym_for] = ACTIONS(149), - [anon_sym_return] = ACTIONS(151), - [anon_sym_break] = ACTIONS(153), - [anon_sym_continue] = ACTIONS(155), - [anon_sym_goto] = ACTIONS(157), - [anon_sym___try] = ACTIONS(159), - [anon_sym___leave] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [anon_sym___alignof__] = ACTIONS(89), - [anon_sym___alignof] = ACTIONS(89), - [anon_sym__alignof] = ACTIONS(89), - [anon_sym_alignof] = ACTIONS(89), - [anon_sym__Alignof] = ACTIONS(89), - [anon_sym_offsetof] = ACTIONS(91), - [anon_sym__Generic] = ACTIONS(93), - [anon_sym_asm] = ACTIONS(95), - [anon_sym___asm__] = ACTIONS(95), - [sym_number_literal] = ACTIONS(163), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(165), - [sym_false] = ACTIONS(165), - [anon_sym_NULL] = ACTIONS(105), - [anon_sym_nullptr] = ACTIONS(105), + [anon_sym___init] = ACTIONS(814), + [anon_sym___exit] = ACTIONS(814), + [anon_sym___cdecl] = ACTIONS(814), + [anon_sym___clrcall] = ACTIONS(814), + [anon_sym___stdcall] = ACTIONS(814), + [anon_sym___fastcall] = ACTIONS(814), + [anon_sym___thiscall] = ACTIONS(814), + [anon_sym___vectorcall] = ACTIONS(814), + [anon_sym_LBRACE] = ACTIONS(137), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_const] = ACTIONS(53), + [anon_sym_constexpr] = ACTIONS(53), + [anon_sym_volatile] = ACTIONS(53), + [anon_sym_restrict] = ACTIONS(53), + [anon_sym___restrict__] = ACTIONS(53), + [anon_sym__Atomic] = ACTIONS(53), + [anon_sym__Noreturn] = ACTIONS(53), + [anon_sym_noreturn] = ACTIONS(53), + [anon_sym_alignas] = ACTIONS(55), + [anon_sym__Alignas] = ACTIONS(55), + [sym_primitive_type] = ACTIONS(57), + [anon_sym_enum] = ACTIONS(59), + [anon_sym_struct] = ACTIONS(61), + [anon_sym_union] = ACTIONS(63), + [anon_sym_if] = ACTIONS(139), + [anon_sym_else] = ACTIONS(814), + [anon_sym_switch] = ACTIONS(141), + [anon_sym_case] = ACTIONS(814), + [anon_sym_default] = ACTIONS(814), + [anon_sym_while] = ACTIONS(147), + [anon_sym_do] = ACTIONS(149), + [anon_sym_for] = ACTIONS(151), + [anon_sym_return] = ACTIONS(153), + [anon_sym_break] = ACTIONS(155), + [anon_sym_continue] = ACTIONS(157), + [anon_sym_goto] = ACTIONS(159), + [anon_sym___try] = ACTIONS(161), + [anon_sym___leave] = ACTIONS(163), + [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(87), + [anon_sym_sizeof] = ACTIONS(89), + [anon_sym___alignof__] = ACTIONS(91), + [anon_sym___alignof] = ACTIONS(91), + [anon_sym__alignof] = ACTIONS(91), + [anon_sym_alignof] = ACTIONS(91), + [anon_sym__Alignof] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(93), + [anon_sym__Generic] = ACTIONS(95), + [anon_sym_asm] = ACTIONS(97), + [anon_sym___asm__] = ACTIONS(97), + [sym_number_literal] = ACTIONS(165), + [anon_sym_L_SQUOTE] = ACTIONS(101), + [anon_sym_u_SQUOTE] = ACTIONS(101), + [anon_sym_U_SQUOTE] = ACTIONS(101), + [anon_sym_u8_SQUOTE] = ACTIONS(101), + [anon_sym_SQUOTE] = ACTIONS(101), + [anon_sym_L_DQUOTE] = ACTIONS(103), + [anon_sym_u_DQUOTE] = ACTIONS(103), + [anon_sym_U_DQUOTE] = ACTIONS(103), + [anon_sym_u8_DQUOTE] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_true] = ACTIONS(167), + [sym_false] = ACTIONS(167), + [anon_sym_NULL] = ACTIONS(107), + [anon_sym_nullptr] = ACTIONS(107), [sym_comment] = ACTIONS(3), }, - [50] = { - [sym_declaration] = STATE(50), - [sym_type_definition] = STATE(50), - [sym__declaration_modifiers] = STATE(697), - [sym__declaration_specifiers] = STATE(1148), - [sym_attribute_specifier] = STATE(697), - [sym_attribute_declaration] = STATE(405), - [sym_ms_declspec_modifier] = STATE(697), - [sym_compound_statement] = STATE(50), - [sym_storage_class_specifier] = STATE(697), - [sym_type_qualifier] = STATE(697), - [sym_alignas_qualifier] = STATE(703), - [sym_type_specifier] = STATE(710), - [sym_sized_type_specifier] = STATE(746), - [sym_enum_specifier] = STATE(746), - [sym_struct_specifier] = STATE(746), - [sym_union_specifier] = STATE(746), - [sym_attributed_statement] = STATE(50), - [sym_labeled_statement] = STATE(50), - [sym_expression_statement] = STATE(50), - [sym_if_statement] = STATE(50), - [sym_switch_statement] = STATE(50), - [sym_while_statement] = STATE(50), - [sym_do_statement] = STATE(50), - [sym_for_statement] = STATE(50), - [sym_return_statement] = STATE(50), - [sym_break_statement] = STATE(50), - [sym_continue_statement] = STATE(50), - [sym_goto_statement] = STATE(50), - [sym_seh_try_statement] = STATE(50), - [sym_seh_leave_statement] = STATE(50), - [sym_expression] = STATE(1031), - [sym__string] = STATE(663), - [sym_comma_expression] = STATE(1792), - [sym_conditional_expression] = STATE(663), - [sym_assignment_expression] = STATE(663), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(663), - [sym_binary_expression] = STATE(663), - [sym_update_expression] = STATE(663), - [sym_cast_expression] = STATE(663), - [sym_sizeof_expression] = STATE(663), - [sym_alignof_expression] = STATE(663), - [sym_offsetof_expression] = STATE(663), - [sym_generic_expression] = STATE(663), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(663), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(663), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(663), - [sym_concatenated_string] = STATE(663), - [sym_string_literal] = STATE(659), - [sym_null] = STATE(663), - [sym_macro_type_specifier] = STATE(746), - [aux_sym__declaration_specifiers_repeat1] = STATE(697), - [aux_sym_attributed_declarator_repeat1] = STATE(373), - [aux_sym_sized_type_specifier_repeat1] = STATE(747), - [aux_sym_case_statement_repeat1] = STATE(50), - [sym_identifier] = ACTIONS(942), - [aux_sym_preproc_include_token1] = ACTIONS(805), - [aux_sym_preproc_def_token1] = ACTIONS(805), - [aux_sym_preproc_if_token1] = ACTIONS(805), - [aux_sym_preproc_if_token2] = ACTIONS(805), - [aux_sym_preproc_ifdef_token1] = ACTIONS(805), - [aux_sym_preproc_ifdef_token2] = ACTIONS(805), - [sym_preproc_directive] = ACTIONS(805), - [anon_sym_LPAREN2] = ACTIONS(807), - [anon_sym_BANG] = ACTIONS(810), - [anon_sym_TILDE] = ACTIONS(810), - [anon_sym_DASH] = ACTIONS(813), - [anon_sym_PLUS] = ACTIONS(813), - [anon_sym_STAR] = ACTIONS(816), - [anon_sym_AMP] = ACTIONS(816), - [anon_sym_SEMI] = ACTIONS(945), - [anon_sym___extension__] = ACTIONS(948), - [anon_sym_typedef] = ACTIONS(951), - [anon_sym_extern] = ACTIONS(828), - [anon_sym___attribute__] = ACTIONS(831), - [anon_sym___scanf] = ACTIONS(834), - [anon_sym___printf] = ACTIONS(834), - [anon_sym___read_mostly] = ACTIONS(837), - [anon_sym___must_hold] = ACTIONS(831), - [anon_sym___ro_after_init] = ACTIONS(837), - [anon_sym___init] = ACTIONS(837), - [anon_sym_LBRACK_LBRACK] = ACTIONS(840), - [anon_sym___declspec] = ACTIONS(843), - [anon_sym___cdecl] = ACTIONS(805), - [anon_sym___clrcall] = ACTIONS(805), - [anon_sym___stdcall] = ACTIONS(805), - [anon_sym___fastcall] = ACTIONS(805), - [anon_sym___thiscall] = ACTIONS(805), - [anon_sym___vectorcall] = ACTIONS(805), - [anon_sym_LBRACE] = ACTIONS(954), - [anon_sym_signed] = ACTIONS(849), - [anon_sym_unsigned] = ACTIONS(849), - [anon_sym_long] = ACTIONS(849), - [anon_sym_short] = ACTIONS(849), - [anon_sym_static] = ACTIONS(828), - [anon_sym_auto] = ACTIONS(828), - [anon_sym_register] = ACTIONS(828), - [anon_sym_inline] = ACTIONS(828), - [anon_sym___inline] = ACTIONS(828), - [anon_sym___inline__] = ACTIONS(828), - [anon_sym___forceinline] = ACTIONS(828), - [anon_sym_thread_local] = ACTIONS(828), - [anon_sym___thread] = ACTIONS(828), - [anon_sym_const] = ACTIONS(852), - [anon_sym_constexpr] = ACTIONS(852), - [anon_sym_volatile] = ACTIONS(852), - [anon_sym_restrict] = ACTIONS(852), - [anon_sym___restrict__] = ACTIONS(852), - [anon_sym__Atomic] = ACTIONS(852), - [anon_sym__Noreturn] = ACTIONS(852), - [anon_sym_noreturn] = ACTIONS(852), - [anon_sym_alignas] = ACTIONS(855), - [anon_sym__Alignas] = ACTIONS(855), - [sym_primitive_type] = ACTIONS(858), - [anon_sym_enum] = ACTIONS(861), - [anon_sym_struct] = ACTIONS(864), - [anon_sym_union] = ACTIONS(867), - [anon_sym_if] = ACTIONS(957), - [anon_sym_else] = ACTIONS(805), - [anon_sym_switch] = ACTIONS(960), - [anon_sym_case] = ACTIONS(805), - [anon_sym_default] = ACTIONS(805), - [anon_sym_while] = ACTIONS(963), - [anon_sym_do] = ACTIONS(966), - [anon_sym_for] = ACTIONS(969), - [anon_sym_return] = ACTIONS(972), - [anon_sym_break] = ACTIONS(975), - [anon_sym_continue] = ACTIONS(978), - [anon_sym_goto] = ACTIONS(981), - [anon_sym___try] = ACTIONS(984), - [anon_sym___leave] = ACTIONS(987), - [anon_sym_DASH_DASH] = ACTIONS(903), - [anon_sym_PLUS_PLUS] = ACTIONS(903), - [anon_sym_sizeof] = ACTIONS(906), - [anon_sym___alignof__] = ACTIONS(909), - [anon_sym___alignof] = ACTIONS(909), - [anon_sym__alignof] = ACTIONS(909), - [anon_sym_alignof] = ACTIONS(909), - [anon_sym__Alignof] = ACTIONS(909), - [anon_sym_offsetof] = ACTIONS(912), - [anon_sym__Generic] = ACTIONS(915), - [anon_sym_asm] = ACTIONS(918), - [anon_sym___asm__] = ACTIONS(918), - [sym_number_literal] = ACTIONS(921), - [anon_sym_L_SQUOTE] = ACTIONS(924), - [anon_sym_u_SQUOTE] = ACTIONS(924), - [anon_sym_U_SQUOTE] = ACTIONS(924), - [anon_sym_u8_SQUOTE] = ACTIONS(924), - [anon_sym_SQUOTE] = ACTIONS(924), - [anon_sym_L_DQUOTE] = ACTIONS(927), - [anon_sym_u_DQUOTE] = ACTIONS(927), - [anon_sym_U_DQUOTE] = ACTIONS(927), - [anon_sym_u8_DQUOTE] = ACTIONS(927), - [anon_sym_DQUOTE] = ACTIONS(927), - [sym_true] = ACTIONS(930), - [sym_false] = ACTIONS(930), - [anon_sym_NULL] = ACTIONS(933), - [anon_sym_nullptr] = ACTIONS(933), + [49] = { + [sym_declaration] = STATE(49), + [sym_type_definition] = STATE(49), + [sym__declaration_modifiers] = STATE(805), + [sym__declaration_specifiers] = STATE(1249), + [sym_attribute_specifier] = STATE(805), + [sym_attribute_declaration] = STATE(468), + [sym_ms_declspec_modifier] = STATE(805), + [sym_compound_statement] = STATE(49), + [sym_storage_class_specifier] = STATE(805), + [sym_type_qualifier] = STATE(805), + [sym_alignas_qualifier] = STATE(799), + [sym_type_specifier] = STATE(807), + [sym_sized_type_specifier] = STATE(873), + [sym_enum_specifier] = STATE(873), + [sym_struct_specifier] = STATE(873), + [sym_union_specifier] = STATE(873), + [sym_attributed_statement] = STATE(49), + [sym_labeled_statement] = STATE(49), + [sym_expression_statement] = STATE(49), + [sym_if_statement] = STATE(49), + [sym_switch_statement] = STATE(49), + [sym_while_statement] = STATE(49), + [sym_do_statement] = STATE(49), + [sym_for_statement] = STATE(49), + [sym_return_statement] = STATE(49), + [sym_break_statement] = STATE(49), + [sym_continue_statement] = STATE(49), + [sym_goto_statement] = STATE(49), + [sym_seh_try_statement] = STATE(49), + [sym_seh_leave_statement] = STATE(49), + [sym_expression] = STATE(1157), + [sym__string] = STATE(758), + [sym_comma_expression] = STATE(2232), + [sym_conditional_expression] = STATE(758), + [sym_assignment_expression] = STATE(758), + [sym_pointer_expression] = STATE(944), + [sym_unary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_cast_expression] = STATE(758), + [sym_sizeof_expression] = STATE(758), + [sym_alignof_expression] = STATE(758), + [sym_offsetof_expression] = STATE(758), + [sym_generic_expression] = STATE(758), + [sym_subscript_expression] = STATE(944), + [sym_call_expression] = STATE(944), + [sym_gnu_asm_expression] = STATE(758), + [sym_field_expression] = STATE(944), + [sym_compound_literal_expression] = STATE(758), + [sym_parenthesized_expression] = STATE(944), + [sym_char_literal] = STATE(758), + [sym_concatenated_string] = STATE(758), + [sym_string_literal] = STATE(671), + [sym_null] = STATE(758), + [sym_macro_type_specifier] = STATE(873), + [aux_sym__declaration_specifiers_repeat1] = STATE(805), + [aux_sym_attributed_declarator_repeat1] = STATE(439), + [aux_sym_sized_type_specifier_repeat1] = STATE(890), + [aux_sym_case_statement_repeat1] = STATE(49), + [sym_identifier] = ACTIONS(816), + [aux_sym_preproc_include_token1] = ACTIONS(819), + [aux_sym_preproc_def_token1] = ACTIONS(819), + [aux_sym_preproc_if_token1] = ACTIONS(819), + [aux_sym_preproc_if_token2] = ACTIONS(819), + [aux_sym_preproc_ifdef_token1] = ACTIONS(819), + [aux_sym_preproc_ifdef_token2] = ACTIONS(819), + [aux_sym_preproc_else_token1] = ACTIONS(819), + [aux_sym_preproc_elif_token1] = ACTIONS(819), + [aux_sym_preproc_elifdef_token1] = ACTIONS(819), + [aux_sym_preproc_elifdef_token2] = ACTIONS(819), + [sym_preproc_directive] = ACTIONS(819), + [anon_sym_LPAREN2] = ACTIONS(821), + [anon_sym_BANG] = ACTIONS(824), + [anon_sym_TILDE] = ACTIONS(824), + [anon_sym_DASH] = ACTIONS(827), + [anon_sym_PLUS] = ACTIONS(827), + [anon_sym_STAR] = ACTIONS(830), + [anon_sym_AMP] = ACTIONS(830), + [anon_sym_SEMI] = ACTIONS(833), + [anon_sym___extension__] = ACTIONS(836), + [anon_sym_typedef] = ACTIONS(839), + [anon_sym_extern] = ACTIONS(842), + [anon_sym___attribute__] = ACTIONS(845), + [anon_sym___scanf] = ACTIONS(848), + [anon_sym___printf] = ACTIONS(848), + [anon_sym___read_mostly] = ACTIONS(851), + [anon_sym___must_hold] = ACTIONS(845), + [anon_sym___ro_after_init] = ACTIONS(851), + [anon_sym___noreturn] = ACTIONS(851), + [anon_sym___cold] = ACTIONS(851), + [anon_sym_LBRACK_LBRACK] = ACTIONS(854), + [anon_sym___declspec] = ACTIONS(857), + [anon_sym___init] = ACTIONS(819), + [anon_sym___exit] = ACTIONS(819), + [anon_sym___cdecl] = ACTIONS(819), + [anon_sym___clrcall] = ACTIONS(819), + [anon_sym___stdcall] = ACTIONS(819), + [anon_sym___fastcall] = ACTIONS(819), + [anon_sym___thiscall] = ACTIONS(819), + [anon_sym___vectorcall] = ACTIONS(819), + [anon_sym_LBRACE] = ACTIONS(860), + [anon_sym_signed] = ACTIONS(863), + [anon_sym_unsigned] = ACTIONS(863), + [anon_sym_long] = ACTIONS(863), + [anon_sym_short] = ACTIONS(863), + [anon_sym_static] = ACTIONS(842), + [anon_sym_auto] = ACTIONS(842), + [anon_sym_register] = ACTIONS(842), + [anon_sym_inline] = ACTIONS(842), + [anon_sym___inline] = ACTIONS(842), + [anon_sym___inline__] = ACTIONS(842), + [anon_sym___forceinline] = ACTIONS(842), + [anon_sym_thread_local] = ACTIONS(842), + [anon_sym___thread] = ACTIONS(842), + [anon_sym_const] = ACTIONS(866), + [anon_sym_constexpr] = ACTIONS(866), + [anon_sym_volatile] = ACTIONS(866), + [anon_sym_restrict] = ACTIONS(866), + [anon_sym___restrict__] = ACTIONS(866), + [anon_sym__Atomic] = ACTIONS(866), + [anon_sym__Noreturn] = ACTIONS(866), + [anon_sym_noreturn] = ACTIONS(866), + [anon_sym_alignas] = ACTIONS(869), + [anon_sym__Alignas] = ACTIONS(869), + [sym_primitive_type] = ACTIONS(872), + [anon_sym_enum] = ACTIONS(875), + [anon_sym_struct] = ACTIONS(878), + [anon_sym_union] = ACTIONS(881), + [anon_sym_if] = ACTIONS(884), + [anon_sym_else] = ACTIONS(819), + [anon_sym_switch] = ACTIONS(887), + [anon_sym_case] = ACTIONS(819), + [anon_sym_default] = ACTIONS(819), + [anon_sym_while] = ACTIONS(890), + [anon_sym_do] = ACTIONS(893), + [anon_sym_for] = ACTIONS(896), + [anon_sym_return] = ACTIONS(899), + [anon_sym_break] = ACTIONS(902), + [anon_sym_continue] = ACTIONS(905), + [anon_sym_goto] = ACTIONS(908), + [anon_sym___try] = ACTIONS(911), + [anon_sym___leave] = ACTIONS(914), + [anon_sym_DASH_DASH] = ACTIONS(917), + [anon_sym_PLUS_PLUS] = ACTIONS(917), + [anon_sym_sizeof] = ACTIONS(920), + [anon_sym___alignof__] = ACTIONS(923), + [anon_sym___alignof] = ACTIONS(923), + [anon_sym__alignof] = ACTIONS(923), + [anon_sym_alignof] = ACTIONS(923), + [anon_sym__Alignof] = ACTIONS(923), + [anon_sym_offsetof] = ACTIONS(926), + [anon_sym__Generic] = ACTIONS(929), + [anon_sym_asm] = ACTIONS(932), + [anon_sym___asm__] = ACTIONS(932), + [sym_number_literal] = ACTIONS(935), + [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(941), + [anon_sym_u_DQUOTE] = ACTIONS(941), + [anon_sym_U_DQUOTE] = ACTIONS(941), + [anon_sym_u8_DQUOTE] = ACTIONS(941), + [anon_sym_DQUOTE] = ACTIONS(941), + [sym_true] = ACTIONS(944), + [sym_false] = ACTIONS(944), + [anon_sym_NULL] = ACTIONS(947), + [anon_sym_nullptr] = ACTIONS(947), [sym_comment] = ACTIONS(3), }, - [51] = { - [sym_declaration] = STATE(59), - [sym_type_definition] = STATE(59), - [sym__declaration_modifiers] = STATE(697), - [sym__declaration_specifiers] = STATE(1148), - [sym_attribute_specifier] = STATE(697), - [sym_attribute_declaration] = STATE(405), - [sym_ms_declspec_modifier] = STATE(697), - [sym_compound_statement] = STATE(59), - [sym_storage_class_specifier] = STATE(697), - [sym_type_qualifier] = STATE(697), - [sym_alignas_qualifier] = STATE(703), - [sym_type_specifier] = STATE(710), - [sym_sized_type_specifier] = STATE(746), - [sym_enum_specifier] = STATE(746), - [sym_struct_specifier] = STATE(746), - [sym_union_specifier] = STATE(746), - [sym_attributed_statement] = STATE(59), - [sym_labeled_statement] = STATE(59), - [sym_expression_statement] = STATE(59), - [sym_if_statement] = STATE(59), - [sym_switch_statement] = STATE(59), - [sym_while_statement] = STATE(59), - [sym_do_statement] = STATE(59), - [sym_for_statement] = STATE(59), - [sym_return_statement] = STATE(59), - [sym_break_statement] = STATE(59), - [sym_continue_statement] = STATE(59), - [sym_goto_statement] = STATE(59), - [sym_seh_try_statement] = STATE(59), - [sym_seh_leave_statement] = STATE(59), - [sym_expression] = STATE(1031), - [sym__string] = STATE(663), - [sym_comma_expression] = STATE(1792), - [sym_conditional_expression] = STATE(663), - [sym_assignment_expression] = STATE(663), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(663), - [sym_binary_expression] = STATE(663), - [sym_update_expression] = STATE(663), - [sym_cast_expression] = STATE(663), - [sym_sizeof_expression] = STATE(663), - [sym_alignof_expression] = STATE(663), - [sym_offsetof_expression] = STATE(663), - [sym_generic_expression] = STATE(663), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(663), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(663), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(663), - [sym_concatenated_string] = STATE(663), - [sym_string_literal] = STATE(659), - [sym_null] = STATE(663), - [sym_macro_type_specifier] = STATE(746), - [aux_sym__declaration_specifiers_repeat1] = STATE(697), - [aux_sym_attributed_declarator_repeat1] = STATE(373), - [aux_sym_sized_type_specifier_repeat1] = STATE(747), - [aux_sym_case_statement_repeat1] = STATE(59), - [sym_identifier] = ACTIONS(990), - [aux_sym_preproc_include_token1] = ACTIONS(938), - [aux_sym_preproc_def_token1] = ACTIONS(938), - [aux_sym_preproc_if_token1] = ACTIONS(938), - [aux_sym_preproc_if_token2] = ACTIONS(938), - [aux_sym_preproc_ifdef_token1] = ACTIONS(938), - [aux_sym_preproc_ifdef_token2] = ACTIONS(938), - [sym_preproc_directive] = ACTIONS(938), + [50] = { + [sym_declaration] = STATE(60), + [sym_type_definition] = STATE(60), + [sym__declaration_modifiers] = STATE(805), + [sym__declaration_specifiers] = STATE(1241), + [sym_attribute_specifier] = STATE(805), + [sym_attribute_declaration] = STATE(468), + [sym_ms_declspec_modifier] = STATE(805), + [sym_compound_statement] = STATE(60), + [sym_storage_class_specifier] = STATE(805), + [sym_type_qualifier] = STATE(805), + [sym_alignas_qualifier] = STATE(799), + [sym_type_specifier] = STATE(807), + [sym_sized_type_specifier] = STATE(873), + [sym_enum_specifier] = STATE(873), + [sym_struct_specifier] = STATE(873), + [sym_union_specifier] = STATE(873), + [sym_attributed_statement] = STATE(60), + [sym_labeled_statement] = STATE(60), + [sym_expression_statement] = STATE(60), + [sym_if_statement] = STATE(60), + [sym_switch_statement] = STATE(60), + [sym_while_statement] = STATE(60), + [sym_do_statement] = STATE(60), + [sym_for_statement] = STATE(60), + [sym_return_statement] = STATE(60), + [sym_break_statement] = STATE(60), + [sym_continue_statement] = STATE(60), + [sym_goto_statement] = STATE(60), + [sym_seh_try_statement] = STATE(60), + [sym_seh_leave_statement] = STATE(60), + [sym_expression] = STATE(1193), + [sym__string] = STATE(758), + [sym_comma_expression] = STATE(2067), + [sym_conditional_expression] = STATE(758), + [sym_assignment_expression] = STATE(758), + [sym_pointer_expression] = STATE(944), + [sym_unary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_cast_expression] = STATE(758), + [sym_sizeof_expression] = STATE(758), + [sym_alignof_expression] = STATE(758), + [sym_offsetof_expression] = STATE(758), + [sym_generic_expression] = STATE(758), + [sym_subscript_expression] = STATE(944), + [sym_call_expression] = STATE(944), + [sym_gnu_asm_expression] = STATE(758), + [sym_field_expression] = STATE(944), + [sym_compound_literal_expression] = STATE(758), + [sym_parenthesized_expression] = STATE(944), + [sym_char_literal] = STATE(758), + [sym_concatenated_string] = STATE(758), + [sym_string_literal] = STATE(671), + [sym_null] = STATE(758), + [sym_macro_type_specifier] = STATE(873), + [aux_sym__declaration_specifiers_repeat1] = STATE(805), + [aux_sym_attributed_declarator_repeat1] = STATE(415), + [aux_sym_sized_type_specifier_repeat1] = STATE(890), + [aux_sym_case_statement_repeat1] = STATE(60), + [sym_identifier] = ACTIONS(950), + [aux_sym_preproc_include_token1] = ACTIONS(812), + [aux_sym_preproc_def_token1] = ACTIONS(812), + [aux_sym_preproc_if_token1] = ACTIONS(812), + [aux_sym_preproc_if_token2] = ACTIONS(812), + [aux_sym_preproc_ifdef_token1] = ACTIONS(812), + [aux_sym_preproc_ifdef_token2] = ACTIONS(812), + [sym_preproc_directive] = ACTIONS(812), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -20910,493 +21573,335 @@ 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(516), - [anon_sym___extension__] = ACTIONS(518), - [anon_sym_typedef] = ACTIONS(520), - [anon_sym_extern] = ACTIONS(49), + [anon_sym_SEMI] = ACTIONS(447), + [anon_sym___extension__] = ACTIONS(449), + [anon_sym_typedef] = ACTIONS(451), + [anon_sym_extern] = ACTIONS(51), [anon_sym___attribute__] = ACTIONS(33), [anon_sym___scanf] = ACTIONS(35), [anon_sym___printf] = ACTIONS(35), [anon_sym___read_mostly] = ACTIONS(37), [anon_sym___must_hold] = ACTIONS(33), [anon_sym___ro_after_init] = ACTIONS(37), - [anon_sym___init] = ACTIONS(37), + [anon_sym___noreturn] = ACTIONS(37), + [anon_sym___cold] = ACTIONS(37), [anon_sym_LBRACK_LBRACK] = ACTIONS(39), [anon_sym___declspec] = ACTIONS(41), - [anon_sym___cdecl] = ACTIONS(938), - [anon_sym___clrcall] = ACTIONS(938), - [anon_sym___stdcall] = ACTIONS(938), - [anon_sym___fastcall] = ACTIONS(938), - [anon_sym___thiscall] = ACTIONS(938), - [anon_sym___vectorcall] = ACTIONS(938), - [anon_sym_LBRACE] = ACTIONS(524), - [anon_sym_signed] = ACTIONS(47), - [anon_sym_unsigned] = ACTIONS(47), - [anon_sym_long] = ACTIONS(47), - [anon_sym_short] = ACTIONS(47), - [anon_sym_static] = ACTIONS(49), - [anon_sym_auto] = ACTIONS(49), - [anon_sym_register] = ACTIONS(49), - [anon_sym_inline] = ACTIONS(49), - [anon_sym___inline] = ACTIONS(49), - [anon_sym___inline__] = ACTIONS(49), - [anon_sym___forceinline] = ACTIONS(49), - [anon_sym_thread_local] = ACTIONS(49), - [anon_sym___thread] = ACTIONS(49), - [anon_sym_const] = ACTIONS(51), - [anon_sym_constexpr] = ACTIONS(51), - [anon_sym_volatile] = ACTIONS(51), - [anon_sym_restrict] = ACTIONS(51), - [anon_sym___restrict__] = ACTIONS(51), - [anon_sym__Atomic] = ACTIONS(51), - [anon_sym__Noreturn] = ACTIONS(51), - [anon_sym_noreturn] = ACTIONS(51), - [anon_sym_alignas] = ACTIONS(53), - [anon_sym__Alignas] = ACTIONS(53), - [sym_primitive_type] = ACTIONS(55), - [anon_sym_enum] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [anon_sym_if] = ACTIONS(526), - [anon_sym_else] = ACTIONS(938), - [anon_sym_switch] = ACTIONS(528), - [anon_sym_case] = ACTIONS(938), - [anon_sym_default] = ACTIONS(938), - [anon_sym_while] = ACTIONS(534), - [anon_sym_do] = ACTIONS(536), - [anon_sym_for] = ACTIONS(538), - [anon_sym_return] = ACTIONS(540), - [anon_sym_break] = ACTIONS(542), - [anon_sym_continue] = ACTIONS(544), - [anon_sym_goto] = ACTIONS(546), - [anon_sym___try] = ACTIONS(548), - [anon_sym___leave] = ACTIONS(550), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [anon_sym___alignof__] = ACTIONS(89), - [anon_sym___alignof] = ACTIONS(89), - [anon_sym__alignof] = ACTIONS(89), - [anon_sym_alignof] = ACTIONS(89), - [anon_sym__Alignof] = ACTIONS(89), - [anon_sym_offsetof] = ACTIONS(91), - [anon_sym__Generic] = ACTIONS(93), - [anon_sym_asm] = ACTIONS(95), - [anon_sym___asm__] = ACTIONS(95), - [sym_number_literal] = ACTIONS(163), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(165), - [sym_false] = ACTIONS(165), - [anon_sym_NULL] = ACTIONS(105), - [anon_sym_nullptr] = ACTIONS(105), + [anon_sym___init] = ACTIONS(812), + [anon_sym___exit] = ACTIONS(812), + [anon_sym___cdecl] = ACTIONS(812), + [anon_sym___clrcall] = ACTIONS(812), + [anon_sym___stdcall] = ACTIONS(812), + [anon_sym___fastcall] = ACTIONS(812), + [anon_sym___thiscall] = ACTIONS(812), + [anon_sym___vectorcall] = ACTIONS(812), + [anon_sym_LBRACE] = ACTIONS(455), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_const] = ACTIONS(53), + [anon_sym_constexpr] = ACTIONS(53), + [anon_sym_volatile] = ACTIONS(53), + [anon_sym_restrict] = ACTIONS(53), + [anon_sym___restrict__] = ACTIONS(53), + [anon_sym__Atomic] = ACTIONS(53), + [anon_sym__Noreturn] = ACTIONS(53), + [anon_sym_noreturn] = ACTIONS(53), + [anon_sym_alignas] = ACTIONS(55), + [anon_sym__Alignas] = ACTIONS(55), + [sym_primitive_type] = ACTIONS(57), + [anon_sym_enum] = ACTIONS(59), + [anon_sym_struct] = ACTIONS(61), + [anon_sym_union] = ACTIONS(63), + [anon_sym_if] = ACTIONS(457), + [anon_sym_else] = ACTIONS(812), + [anon_sym_switch] = ACTIONS(459), + [anon_sym_case] = ACTIONS(812), + [anon_sym_default] = ACTIONS(812), + [anon_sym_while] = ACTIONS(465), + [anon_sym_do] = ACTIONS(467), + [anon_sym_for] = ACTIONS(469), + [anon_sym_return] = ACTIONS(471), + [anon_sym_break] = ACTIONS(473), + [anon_sym_continue] = ACTIONS(475), + [anon_sym_goto] = ACTIONS(477), + [anon_sym___try] = ACTIONS(479), + [anon_sym___leave] = ACTIONS(481), + [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(87), + [anon_sym_sizeof] = ACTIONS(89), + [anon_sym___alignof__] = ACTIONS(91), + [anon_sym___alignof] = ACTIONS(91), + [anon_sym__alignof] = ACTIONS(91), + [anon_sym_alignof] = ACTIONS(91), + [anon_sym__Alignof] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(93), + [anon_sym__Generic] = ACTIONS(95), + [anon_sym_asm] = ACTIONS(97), + [anon_sym___asm__] = ACTIONS(97), + [sym_number_literal] = ACTIONS(165), + [anon_sym_L_SQUOTE] = ACTIONS(101), + [anon_sym_u_SQUOTE] = ACTIONS(101), + [anon_sym_U_SQUOTE] = ACTIONS(101), + [anon_sym_u8_SQUOTE] = ACTIONS(101), + [anon_sym_SQUOTE] = ACTIONS(101), + [anon_sym_L_DQUOTE] = ACTIONS(103), + [anon_sym_u_DQUOTE] = ACTIONS(103), + [anon_sym_U_DQUOTE] = ACTIONS(103), + [anon_sym_u8_DQUOTE] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_true] = ACTIONS(167), + [sym_false] = ACTIONS(167), + [anon_sym_NULL] = ACTIONS(107), + [anon_sym_nullptr] = ACTIONS(107), + [sym_comment] = ACTIONS(3), + }, + [51] = { + [sym_declaration] = STATE(51), + [sym_type_definition] = STATE(51), + [sym__declaration_modifiers] = STATE(805), + [sym__declaration_specifiers] = STATE(1242), + [sym_attribute_specifier] = STATE(805), + [sym_attribute_declaration] = STATE(468), + [sym_ms_declspec_modifier] = STATE(805), + [sym_compound_statement] = STATE(51), + [sym_storage_class_specifier] = STATE(805), + [sym_type_qualifier] = STATE(805), + [sym_alignas_qualifier] = STATE(799), + [sym_type_specifier] = STATE(807), + [sym_sized_type_specifier] = STATE(873), + [sym_enum_specifier] = STATE(873), + [sym_struct_specifier] = STATE(873), + [sym_union_specifier] = STATE(873), + [sym_attributed_statement] = STATE(51), + [sym_labeled_statement] = STATE(51), + [sym_expression_statement] = STATE(51), + [sym_if_statement] = STATE(51), + [sym_switch_statement] = STATE(51), + [sym_while_statement] = STATE(51), + [sym_do_statement] = STATE(51), + [sym_for_statement] = STATE(51), + [sym_return_statement] = STATE(51), + [sym_break_statement] = STATE(51), + [sym_continue_statement] = STATE(51), + [sym_goto_statement] = STATE(51), + [sym_seh_try_statement] = STATE(51), + [sym_seh_leave_statement] = STATE(51), + [sym_expression] = STATE(1167), + [sym__string] = STATE(758), + [sym_comma_expression] = STATE(2207), + [sym_conditional_expression] = STATE(758), + [sym_assignment_expression] = STATE(758), + [sym_pointer_expression] = STATE(944), + [sym_unary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_cast_expression] = STATE(758), + [sym_sizeof_expression] = STATE(758), + [sym_alignof_expression] = STATE(758), + [sym_offsetof_expression] = STATE(758), + [sym_generic_expression] = STATE(758), + [sym_subscript_expression] = STATE(944), + [sym_call_expression] = STATE(944), + [sym_gnu_asm_expression] = STATE(758), + [sym_field_expression] = STATE(944), + [sym_compound_literal_expression] = STATE(758), + [sym_parenthesized_expression] = STATE(944), + [sym_char_literal] = STATE(758), + [sym_concatenated_string] = STATE(758), + [sym_string_literal] = STATE(671), + [sym_null] = STATE(758), + [sym_macro_type_specifier] = STATE(873), + [aux_sym__declaration_specifiers_repeat1] = STATE(805), + [aux_sym_attributed_declarator_repeat1] = STATE(428), + [aux_sym_sized_type_specifier_repeat1] = STATE(890), + [aux_sym_case_statement_repeat1] = STATE(51), + [sym_identifier] = ACTIONS(952), + [aux_sym_preproc_include_token1] = ACTIONS(819), + [aux_sym_preproc_def_token1] = ACTIONS(819), + [aux_sym_preproc_if_token1] = ACTIONS(819), + [aux_sym_preproc_ifdef_token1] = ACTIONS(819), + [aux_sym_preproc_ifdef_token2] = ACTIONS(819), + [sym_preproc_directive] = ACTIONS(819), + [anon_sym_LPAREN2] = ACTIONS(821), + [anon_sym_BANG] = ACTIONS(824), + [anon_sym_TILDE] = ACTIONS(824), + [anon_sym_DASH] = ACTIONS(827), + [anon_sym_PLUS] = ACTIONS(827), + [anon_sym_STAR] = ACTIONS(830), + [anon_sym_AMP] = ACTIONS(830), + [anon_sym_SEMI] = ACTIONS(955), + [anon_sym___extension__] = ACTIONS(958), + [anon_sym_typedef] = ACTIONS(961), + [anon_sym_extern] = ACTIONS(842), + [anon_sym___attribute__] = ACTIONS(845), + [anon_sym___scanf] = ACTIONS(848), + [anon_sym___printf] = ACTIONS(848), + [anon_sym___read_mostly] = ACTIONS(851), + [anon_sym___must_hold] = ACTIONS(845), + [anon_sym___ro_after_init] = ACTIONS(851), + [anon_sym___noreturn] = ACTIONS(851), + [anon_sym___cold] = ACTIONS(851), + [anon_sym_LBRACK_LBRACK] = ACTIONS(854), + [anon_sym___declspec] = ACTIONS(857), + [anon_sym___init] = ACTIONS(819), + [anon_sym___exit] = ACTIONS(819), + [anon_sym___cdecl] = ACTIONS(819), + [anon_sym___clrcall] = ACTIONS(819), + [anon_sym___stdcall] = ACTIONS(819), + [anon_sym___fastcall] = ACTIONS(819), + [anon_sym___thiscall] = ACTIONS(819), + [anon_sym___vectorcall] = ACTIONS(819), + [anon_sym_LBRACE] = ACTIONS(964), + [anon_sym_RBRACE] = ACTIONS(967), + [anon_sym_signed] = ACTIONS(863), + [anon_sym_unsigned] = ACTIONS(863), + [anon_sym_long] = ACTIONS(863), + [anon_sym_short] = ACTIONS(863), + [anon_sym_static] = ACTIONS(842), + [anon_sym_auto] = ACTIONS(842), + [anon_sym_register] = ACTIONS(842), + [anon_sym_inline] = ACTIONS(842), + [anon_sym___inline] = ACTIONS(842), + [anon_sym___inline__] = ACTIONS(842), + [anon_sym___forceinline] = ACTIONS(842), + [anon_sym_thread_local] = ACTIONS(842), + [anon_sym___thread] = ACTIONS(842), + [anon_sym_const] = ACTIONS(866), + [anon_sym_constexpr] = ACTIONS(866), + [anon_sym_volatile] = ACTIONS(866), + [anon_sym_restrict] = ACTIONS(866), + [anon_sym___restrict__] = ACTIONS(866), + [anon_sym__Atomic] = ACTIONS(866), + [anon_sym__Noreturn] = ACTIONS(866), + [anon_sym_noreturn] = ACTIONS(866), + [anon_sym_alignas] = ACTIONS(869), + [anon_sym__Alignas] = ACTIONS(869), + [sym_primitive_type] = ACTIONS(872), + [anon_sym_enum] = ACTIONS(875), + [anon_sym_struct] = ACTIONS(878), + [anon_sym_union] = ACTIONS(881), + [anon_sym_if] = ACTIONS(969), + [anon_sym_else] = ACTIONS(819), + [anon_sym_switch] = ACTIONS(972), + [anon_sym_case] = ACTIONS(819), + [anon_sym_default] = ACTIONS(819), + [anon_sym_while] = ACTIONS(975), + [anon_sym_do] = ACTIONS(978), + [anon_sym_for] = ACTIONS(981), + [anon_sym_return] = ACTIONS(984), + [anon_sym_break] = ACTIONS(987), + [anon_sym_continue] = ACTIONS(990), + [anon_sym_goto] = ACTIONS(993), + [anon_sym___try] = ACTIONS(996), + [anon_sym___leave] = ACTIONS(999), + [anon_sym_DASH_DASH] = ACTIONS(917), + [anon_sym_PLUS_PLUS] = ACTIONS(917), + [anon_sym_sizeof] = ACTIONS(920), + [anon_sym___alignof__] = ACTIONS(923), + [anon_sym___alignof] = ACTIONS(923), + [anon_sym__alignof] = ACTIONS(923), + [anon_sym_alignof] = ACTIONS(923), + [anon_sym__Alignof] = ACTIONS(923), + [anon_sym_offsetof] = ACTIONS(926), + [anon_sym__Generic] = ACTIONS(929), + [anon_sym_asm] = ACTIONS(932), + [anon_sym___asm__] = ACTIONS(932), + [sym_number_literal] = ACTIONS(935), + [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(941), + [anon_sym_u_DQUOTE] = ACTIONS(941), + [anon_sym_U_DQUOTE] = ACTIONS(941), + [anon_sym_u8_DQUOTE] = ACTIONS(941), + [anon_sym_DQUOTE] = ACTIONS(941), + [sym_true] = ACTIONS(944), + [sym_false] = ACTIONS(944), + [anon_sym_NULL] = ACTIONS(947), + [anon_sym_nullptr] = ACTIONS(947), [sym_comment] = ACTIONS(3), }, [52] = { - [sym_declaration] = STATE(62), - [sym_type_definition] = STATE(62), - [sym__declaration_modifiers] = STATE(697), - [sym__declaration_specifiers] = STATE(1127), - [sym_attribute_specifier] = STATE(697), - [sym_attribute_declaration] = STATE(405), - [sym_ms_declspec_modifier] = STATE(697), - [sym_compound_statement] = STATE(62), - [sym_storage_class_specifier] = STATE(697), - [sym_type_qualifier] = STATE(697), - [sym_alignas_qualifier] = STATE(703), - [sym_type_specifier] = STATE(710), - [sym_sized_type_specifier] = STATE(746), - [sym_enum_specifier] = STATE(746), - [sym_struct_specifier] = STATE(746), - [sym_union_specifier] = STATE(746), - [sym_attributed_statement] = STATE(62), - [sym_labeled_statement] = STATE(62), - [sym_expression_statement] = STATE(62), - [sym_if_statement] = STATE(62), - [sym_switch_statement] = STATE(62), - [sym_while_statement] = STATE(62), - [sym_do_statement] = STATE(62), - [sym_for_statement] = STATE(62), - [sym_return_statement] = STATE(62), - [sym_break_statement] = STATE(62), - [sym_continue_statement] = STATE(62), - [sym_goto_statement] = STATE(62), - [sym_seh_try_statement] = STATE(62), - [sym_seh_leave_statement] = STATE(62), - [sym_expression] = STATE(1060), - [sym__string] = STATE(663), - [sym_comma_expression] = STATE(1853), - [sym_conditional_expression] = STATE(663), - [sym_assignment_expression] = STATE(663), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(663), - [sym_binary_expression] = STATE(663), - [sym_update_expression] = STATE(663), - [sym_cast_expression] = STATE(663), - [sym_sizeof_expression] = STATE(663), - [sym_alignof_expression] = STATE(663), - [sym_offsetof_expression] = STATE(663), - [sym_generic_expression] = STATE(663), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(663), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(663), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(663), - [sym_concatenated_string] = STATE(663), - [sym_string_literal] = STATE(659), - [sym_null] = STATE(663), - [sym_macro_type_specifier] = STATE(746), - [aux_sym__declaration_specifiers_repeat1] = STATE(697), - [aux_sym_attributed_declarator_repeat1] = STATE(348), - [aux_sym_sized_type_specifier_repeat1] = STATE(747), - [aux_sym_case_statement_repeat1] = STATE(62), - [ts_builtin_sym_end] = ACTIONS(992), - [sym_identifier] = ACTIONS(994), - [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(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(996), - [anon_sym___extension__] = ACTIONS(27), - [anon_sym_typedef] = ACTIONS(29), - [anon_sym_extern] = ACTIONS(49), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym___scanf] = ACTIONS(35), - [anon_sym___printf] = ACTIONS(35), - [anon_sym___read_mostly] = ACTIONS(37), - [anon_sym___must_hold] = ACTIONS(33), - [anon_sym___ro_after_init] = ACTIONS(37), - [anon_sym___init] = ACTIONS(37), - [anon_sym_LBRACK_LBRACK] = ACTIONS(39), - [anon_sym___declspec] = ACTIONS(41), - [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(45), - [anon_sym_signed] = ACTIONS(47), - [anon_sym_unsigned] = ACTIONS(47), - [anon_sym_long] = ACTIONS(47), - [anon_sym_short] = ACTIONS(47), - [anon_sym_static] = ACTIONS(49), - [anon_sym_auto] = ACTIONS(49), - [anon_sym_register] = ACTIONS(49), - [anon_sym_inline] = ACTIONS(49), - [anon_sym___inline] = ACTIONS(49), - [anon_sym___inline__] = ACTIONS(49), - [anon_sym___forceinline] = ACTIONS(49), - [anon_sym_thread_local] = ACTIONS(49), - [anon_sym___thread] = ACTIONS(49), - [anon_sym_const] = ACTIONS(51), - [anon_sym_constexpr] = ACTIONS(51), - [anon_sym_volatile] = ACTIONS(51), - [anon_sym_restrict] = ACTIONS(51), - [anon_sym___restrict__] = ACTIONS(51), - [anon_sym__Atomic] = ACTIONS(51), - [anon_sym__Noreturn] = ACTIONS(51), - [anon_sym_noreturn] = ACTIONS(51), - [anon_sym_alignas] = ACTIONS(53), - [anon_sym__Alignas] = ACTIONS(53), - [sym_primitive_type] = ACTIONS(55), - [anon_sym_enum] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [anon_sym_if] = ACTIONS(63), - [anon_sym_else] = ACTIONS(936), - [anon_sym_switch] = ACTIONS(65), - [anon_sym_case] = ACTIONS(936), - [anon_sym_default] = ACTIONS(936), - [anon_sym_while] = ACTIONS(71), - [anon_sym_do] = ACTIONS(73), - [anon_sym_for] = ACTIONS(75), - [anon_sym_return] = ACTIONS(77), - [anon_sym_break] = ACTIONS(79), - [anon_sym_continue] = ACTIONS(81), - [anon_sym_goto] = ACTIONS(83), - [anon_sym___try] = ACTIONS(998), - [anon_sym___leave] = ACTIONS(1000), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [anon_sym___alignof__] = ACTIONS(89), - [anon_sym___alignof] = ACTIONS(89), - [anon_sym__alignof] = ACTIONS(89), - [anon_sym_alignof] = ACTIONS(89), - [anon_sym__Alignof] = ACTIONS(89), - [anon_sym_offsetof] = ACTIONS(91), - [anon_sym__Generic] = ACTIONS(93), - [anon_sym_asm] = ACTIONS(95), - [anon_sym___asm__] = ACTIONS(95), - [sym_number_literal] = ACTIONS(163), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(165), - [sym_false] = ACTIONS(165), - [anon_sym_NULL] = ACTIONS(105), - [anon_sym_nullptr] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - }, - [53] = { - [sym_declaration] = STATE(61), - [sym_type_definition] = STATE(61), - [sym__declaration_modifiers] = STATE(697), - [sym__declaration_specifiers] = STATE(1156), - [sym_attribute_specifier] = STATE(697), - [sym_attribute_declaration] = STATE(405), - [sym_ms_declspec_modifier] = STATE(697), - [sym_compound_statement] = STATE(61), - [sym_storage_class_specifier] = STATE(697), - [sym_type_qualifier] = STATE(697), - [sym_alignas_qualifier] = STATE(703), - [sym_type_specifier] = STATE(710), - [sym_sized_type_specifier] = STATE(746), - [sym_enum_specifier] = STATE(746), - [sym_struct_specifier] = STATE(746), - [sym_union_specifier] = STATE(746), - [sym_attributed_statement] = STATE(61), - [sym_labeled_statement] = STATE(61), - [sym_expression_statement] = STATE(61), - [sym_if_statement] = STATE(61), - [sym_switch_statement] = STATE(61), - [sym_while_statement] = STATE(61), - [sym_do_statement] = STATE(61), - [sym_for_statement] = STATE(61), - [sym_return_statement] = STATE(61), - [sym_break_statement] = STATE(61), - [sym_continue_statement] = STATE(61), - [sym_goto_statement] = STATE(61), - [sym_seh_try_statement] = STATE(61), - [sym_seh_leave_statement] = STATE(61), - [sym_expression] = STATE(1033), - [sym__string] = STATE(663), - [sym_comma_expression] = STATE(1818), - [sym_conditional_expression] = STATE(663), - [sym_assignment_expression] = STATE(663), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(663), - [sym_binary_expression] = STATE(663), - [sym_update_expression] = STATE(663), - [sym_cast_expression] = STATE(663), - [sym_sizeof_expression] = STATE(663), - [sym_alignof_expression] = STATE(663), - [sym_offsetof_expression] = STATE(663), - [sym_generic_expression] = STATE(663), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(663), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(663), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(663), - [sym_concatenated_string] = STATE(663), - [sym_string_literal] = STATE(659), - [sym_null] = STATE(663), - [sym_macro_type_specifier] = STATE(746), - [aux_sym__declaration_specifiers_repeat1] = STATE(697), - [aux_sym_attributed_declarator_repeat1] = STATE(375), - [aux_sym_sized_type_specifier_repeat1] = STATE(747), - [aux_sym_case_statement_repeat1] = STATE(61), - [sym_identifier] = ACTIONS(1002), - [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(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(378), - [anon_sym___extension__] = ACTIONS(380), - [anon_sym_typedef] = ACTIONS(382), - [anon_sym_extern] = ACTIONS(49), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym___scanf] = ACTIONS(35), - [anon_sym___printf] = ACTIONS(35), - [anon_sym___read_mostly] = ACTIONS(37), - [anon_sym___must_hold] = ACTIONS(33), - [anon_sym___ro_after_init] = ACTIONS(37), - [anon_sym___init] = ACTIONS(37), - [anon_sym_LBRACK_LBRACK] = ACTIONS(39), - [anon_sym___declspec] = ACTIONS(41), - [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(386), - [anon_sym_RBRACE] = ACTIONS(992), - [anon_sym_signed] = ACTIONS(47), - [anon_sym_unsigned] = ACTIONS(47), - [anon_sym_long] = ACTIONS(47), - [anon_sym_short] = ACTIONS(47), - [anon_sym_static] = ACTIONS(49), - [anon_sym_auto] = ACTIONS(49), - [anon_sym_register] = ACTIONS(49), - [anon_sym_inline] = ACTIONS(49), - [anon_sym___inline] = ACTIONS(49), - [anon_sym___inline__] = ACTIONS(49), - [anon_sym___forceinline] = ACTIONS(49), - [anon_sym_thread_local] = ACTIONS(49), - [anon_sym___thread] = ACTIONS(49), - [anon_sym_const] = ACTIONS(51), - [anon_sym_constexpr] = ACTIONS(51), - [anon_sym_volatile] = ACTIONS(51), - [anon_sym_restrict] = ACTIONS(51), - [anon_sym___restrict__] = ACTIONS(51), - [anon_sym__Atomic] = ACTIONS(51), - [anon_sym__Noreturn] = ACTIONS(51), - [anon_sym_noreturn] = ACTIONS(51), - [anon_sym_alignas] = ACTIONS(53), - [anon_sym__Alignas] = ACTIONS(53), - [sym_primitive_type] = ACTIONS(55), - [anon_sym_enum] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [anon_sym_if] = ACTIONS(390), - [anon_sym_else] = ACTIONS(936), - [anon_sym_switch] = ACTIONS(392), - [anon_sym_case] = ACTIONS(936), - [anon_sym_default] = ACTIONS(936), - [anon_sym_while] = ACTIONS(398), - [anon_sym_do] = ACTIONS(400), - [anon_sym_for] = ACTIONS(402), - [anon_sym_return] = ACTIONS(404), - [anon_sym_break] = ACTIONS(406), - [anon_sym_continue] = ACTIONS(408), - [anon_sym_goto] = ACTIONS(410), - [anon_sym___try] = ACTIONS(412), - [anon_sym___leave] = ACTIONS(414), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [anon_sym___alignof__] = ACTIONS(89), - [anon_sym___alignof] = ACTIONS(89), - [anon_sym__alignof] = ACTIONS(89), - [anon_sym_alignof] = ACTIONS(89), - [anon_sym__Alignof] = ACTIONS(89), - [anon_sym_offsetof] = ACTIONS(91), - [anon_sym__Generic] = ACTIONS(93), - [anon_sym_asm] = ACTIONS(95), - [anon_sym___asm__] = ACTIONS(95), - [sym_number_literal] = ACTIONS(163), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(165), - [sym_false] = ACTIONS(165), - [anon_sym_NULL] = ACTIONS(105), - [anon_sym_nullptr] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - }, - [54] = { - [sym_declaration] = STATE(63), - [sym_type_definition] = STATE(63), - [sym__declaration_modifiers] = STATE(697), - [sym__declaration_specifiers] = STATE(1156), - [sym_attribute_specifier] = STATE(697), - [sym_attribute_declaration] = STATE(405), - [sym_ms_declspec_modifier] = STATE(697), - [sym_compound_statement] = STATE(63), - [sym_storage_class_specifier] = STATE(697), - [sym_type_qualifier] = STATE(697), - [sym_alignas_qualifier] = STATE(703), - [sym_type_specifier] = STATE(710), - [sym_sized_type_specifier] = STATE(746), - [sym_enum_specifier] = STATE(746), - [sym_struct_specifier] = STATE(746), - [sym_union_specifier] = STATE(746), - [sym_attributed_statement] = STATE(63), - [sym_labeled_statement] = STATE(63), - [sym_expression_statement] = STATE(63), - [sym_if_statement] = STATE(63), - [sym_switch_statement] = STATE(63), - [sym_while_statement] = STATE(63), - [sym_do_statement] = STATE(63), - [sym_for_statement] = STATE(63), - [sym_return_statement] = STATE(63), - [sym_break_statement] = STATE(63), - [sym_continue_statement] = STATE(63), - [sym_goto_statement] = STATE(63), - [sym_seh_try_statement] = STATE(63), - [sym_seh_leave_statement] = STATE(63), - [sym_expression] = STATE(1033), - [sym__string] = STATE(663), - [sym_comma_expression] = STATE(1818), - [sym_conditional_expression] = STATE(663), - [sym_assignment_expression] = STATE(663), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(663), - [sym_binary_expression] = STATE(663), - [sym_update_expression] = STATE(663), - [sym_cast_expression] = STATE(663), - [sym_sizeof_expression] = STATE(663), - [sym_alignof_expression] = STATE(663), - [sym_offsetof_expression] = STATE(663), - [sym_generic_expression] = STATE(663), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(663), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(663), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(663), - [sym_concatenated_string] = STATE(663), - [sym_string_literal] = STATE(659), - [sym_null] = STATE(663), - [sym_macro_type_specifier] = STATE(746), - [aux_sym__declaration_specifiers_repeat1] = STATE(697), - [aux_sym_attributed_declarator_repeat1] = STATE(375), - [aux_sym_sized_type_specifier_repeat1] = STATE(747), - [aux_sym_case_statement_repeat1] = STATE(63), - [sym_identifier] = ACTIONS(1002), - [aux_sym_preproc_include_token1] = ACTIONS(938), - [aux_sym_preproc_def_token1] = ACTIONS(938), - [aux_sym_preproc_if_token1] = ACTIONS(938), - [aux_sym_preproc_ifdef_token1] = ACTIONS(938), - [aux_sym_preproc_ifdef_token2] = ACTIONS(938), - [sym_preproc_directive] = ACTIONS(938), + [sym_declaration] = STATE(55), + [sym_type_definition] = STATE(55), + [sym__declaration_modifiers] = STATE(805), + [sym__declaration_specifiers] = STATE(1244), + [sym_attribute_specifier] = STATE(805), + [sym_attribute_declaration] = STATE(468), + [sym_ms_declspec_modifier] = STATE(805), + [sym_compound_statement] = STATE(55), + [sym_storage_class_specifier] = STATE(805), + [sym_type_qualifier] = STATE(805), + [sym_alignas_qualifier] = STATE(799), + [sym_type_specifier] = STATE(807), + [sym_sized_type_specifier] = STATE(873), + [sym_enum_specifier] = STATE(873), + [sym_struct_specifier] = STATE(873), + [sym_union_specifier] = STATE(873), + [sym_attributed_statement] = STATE(55), + [sym_labeled_statement] = STATE(55), + [sym_expression_statement] = STATE(55), + [sym_if_statement] = STATE(55), + [sym_switch_statement] = STATE(55), + [sym_while_statement] = STATE(55), + [sym_do_statement] = STATE(55), + [sym_for_statement] = STATE(55), + [sym_return_statement] = STATE(55), + [sym_break_statement] = STATE(55), + [sym_continue_statement] = STATE(55), + [sym_goto_statement] = STATE(55), + [sym_seh_try_statement] = STATE(55), + [sym_seh_leave_statement] = STATE(55), + [sym_expression] = STATE(1179), + [sym__string] = STATE(758), + [sym_comma_expression] = STATE(2159), + [sym_conditional_expression] = STATE(758), + [sym_assignment_expression] = STATE(758), + [sym_pointer_expression] = STATE(944), + [sym_unary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_cast_expression] = STATE(758), + [sym_sizeof_expression] = STATE(758), + [sym_alignof_expression] = STATE(758), + [sym_offsetof_expression] = STATE(758), + [sym_generic_expression] = STATE(758), + [sym_subscript_expression] = STATE(944), + [sym_call_expression] = STATE(944), + [sym_gnu_asm_expression] = STATE(758), + [sym_field_expression] = STATE(944), + [sym_compound_literal_expression] = STATE(758), + [sym_parenthesized_expression] = STATE(944), + [sym_char_literal] = STATE(758), + [sym_concatenated_string] = STATE(758), + [sym_string_literal] = STATE(671), + [sym_null] = STATE(758), + [sym_macro_type_specifier] = STATE(873), + [aux_sym__declaration_specifiers_repeat1] = STATE(805), + [aux_sym_attributed_declarator_repeat1] = STATE(421), + [aux_sym_sized_type_specifier_repeat1] = STATE(890), + [aux_sym_case_statement_repeat1] = STATE(55), + [ts_builtin_sym_end] = ACTIONS(1002), + [sym_identifier] = ACTIONS(1004), + [aux_sym_preproc_include_token1] = ACTIONS(808), + [aux_sym_preproc_def_token1] = ACTIONS(808), + [aux_sym_preproc_if_token1] = ACTIONS(808), + [aux_sym_preproc_ifdef_token1] = ACTIONS(808), + [aux_sym_preproc_ifdef_token2] = ACTIONS(808), + [sym_preproc_directive] = ACTIONS(808), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -21404,114 +21909,116 @@ 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(378), - [anon_sym___extension__] = ACTIONS(380), - [anon_sym_typedef] = ACTIONS(382), - [anon_sym_extern] = ACTIONS(49), + [anon_sym_SEMI] = ACTIONS(1006), + [anon_sym___extension__] = ACTIONS(27), + [anon_sym_typedef] = ACTIONS(29), + [anon_sym_extern] = ACTIONS(51), [anon_sym___attribute__] = ACTIONS(33), [anon_sym___scanf] = ACTIONS(35), [anon_sym___printf] = ACTIONS(35), [anon_sym___read_mostly] = ACTIONS(37), [anon_sym___must_hold] = ACTIONS(33), [anon_sym___ro_after_init] = ACTIONS(37), - [anon_sym___init] = ACTIONS(37), + [anon_sym___noreturn] = ACTIONS(37), + [anon_sym___cold] = ACTIONS(37), [anon_sym_LBRACK_LBRACK] = ACTIONS(39), [anon_sym___declspec] = ACTIONS(41), - [anon_sym___cdecl] = ACTIONS(938), - [anon_sym___clrcall] = ACTIONS(938), - [anon_sym___stdcall] = ACTIONS(938), - [anon_sym___fastcall] = ACTIONS(938), - [anon_sym___thiscall] = ACTIONS(938), - [anon_sym___vectorcall] = ACTIONS(938), - [anon_sym_LBRACE] = ACTIONS(386), - [anon_sym_RBRACE] = ACTIONS(1004), - [anon_sym_signed] = ACTIONS(47), - [anon_sym_unsigned] = ACTIONS(47), - [anon_sym_long] = ACTIONS(47), - [anon_sym_short] = ACTIONS(47), - [anon_sym_static] = ACTIONS(49), - [anon_sym_auto] = ACTIONS(49), - [anon_sym_register] = ACTIONS(49), - [anon_sym_inline] = ACTIONS(49), - [anon_sym___inline] = ACTIONS(49), - [anon_sym___inline__] = ACTIONS(49), - [anon_sym___forceinline] = ACTIONS(49), - [anon_sym_thread_local] = ACTIONS(49), - [anon_sym___thread] = ACTIONS(49), - [anon_sym_const] = ACTIONS(51), - [anon_sym_constexpr] = ACTIONS(51), - [anon_sym_volatile] = ACTIONS(51), - [anon_sym_restrict] = ACTIONS(51), - [anon_sym___restrict__] = ACTIONS(51), - [anon_sym__Atomic] = ACTIONS(51), - [anon_sym__Noreturn] = ACTIONS(51), - [anon_sym_noreturn] = ACTIONS(51), - [anon_sym_alignas] = ACTIONS(53), - [anon_sym__Alignas] = ACTIONS(53), - [sym_primitive_type] = ACTIONS(55), - [anon_sym_enum] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [anon_sym_if] = ACTIONS(390), - [anon_sym_else] = ACTIONS(938), - [anon_sym_switch] = ACTIONS(392), - [anon_sym_case] = ACTIONS(938), - [anon_sym_default] = ACTIONS(938), - [anon_sym_while] = ACTIONS(398), - [anon_sym_do] = ACTIONS(400), - [anon_sym_for] = ACTIONS(402), - [anon_sym_return] = ACTIONS(404), - [anon_sym_break] = ACTIONS(406), - [anon_sym_continue] = ACTIONS(408), - [anon_sym_goto] = ACTIONS(410), - [anon_sym___try] = ACTIONS(412), - [anon_sym___leave] = ACTIONS(414), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [anon_sym___alignof__] = ACTIONS(89), - [anon_sym___alignof] = ACTIONS(89), - [anon_sym__alignof] = ACTIONS(89), - [anon_sym_alignof] = ACTIONS(89), - [anon_sym__Alignof] = ACTIONS(89), - [anon_sym_offsetof] = ACTIONS(91), - [anon_sym__Generic] = ACTIONS(93), - [anon_sym_asm] = ACTIONS(95), - [anon_sym___asm__] = ACTIONS(95), - [sym_number_literal] = ACTIONS(163), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(165), - [sym_false] = ACTIONS(165), - [anon_sym_NULL] = ACTIONS(105), - [anon_sym_nullptr] = ACTIONS(105), + [anon_sym___init] = ACTIONS(808), + [anon_sym___exit] = ACTIONS(808), + [anon_sym___cdecl] = ACTIONS(808), + [anon_sym___clrcall] = ACTIONS(808), + [anon_sym___stdcall] = ACTIONS(808), + [anon_sym___fastcall] = ACTIONS(808), + [anon_sym___thiscall] = ACTIONS(808), + [anon_sym___vectorcall] = ACTIONS(808), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_const] = ACTIONS(53), + [anon_sym_constexpr] = ACTIONS(53), + [anon_sym_volatile] = ACTIONS(53), + [anon_sym_restrict] = ACTIONS(53), + [anon_sym___restrict__] = ACTIONS(53), + [anon_sym__Atomic] = ACTIONS(53), + [anon_sym__Noreturn] = ACTIONS(53), + [anon_sym_noreturn] = ACTIONS(53), + [anon_sym_alignas] = ACTIONS(55), + [anon_sym__Alignas] = ACTIONS(55), + [sym_primitive_type] = ACTIONS(57), + [anon_sym_enum] = ACTIONS(59), + [anon_sym_struct] = ACTIONS(61), + [anon_sym_union] = ACTIONS(63), + [anon_sym_if] = ACTIONS(65), + [anon_sym_else] = ACTIONS(808), + [anon_sym_switch] = ACTIONS(67), + [anon_sym_case] = ACTIONS(808), + [anon_sym_default] = ACTIONS(808), + [anon_sym_while] = ACTIONS(73), + [anon_sym_do] = ACTIONS(75), + [anon_sym_for] = ACTIONS(77), + [anon_sym_return] = ACTIONS(79), + [anon_sym_break] = ACTIONS(81), + [anon_sym_continue] = ACTIONS(83), + [anon_sym_goto] = ACTIONS(85), + [anon_sym___try] = ACTIONS(1008), + [anon_sym___leave] = ACTIONS(1010), + [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(87), + [anon_sym_sizeof] = ACTIONS(89), + [anon_sym___alignof__] = ACTIONS(91), + [anon_sym___alignof] = ACTIONS(91), + [anon_sym__alignof] = ACTIONS(91), + [anon_sym_alignof] = ACTIONS(91), + [anon_sym__Alignof] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(93), + [anon_sym__Generic] = ACTIONS(95), + [anon_sym_asm] = ACTIONS(97), + [anon_sym___asm__] = ACTIONS(97), + [sym_number_literal] = ACTIONS(165), + [anon_sym_L_SQUOTE] = ACTIONS(101), + [anon_sym_u_SQUOTE] = ACTIONS(101), + [anon_sym_U_SQUOTE] = ACTIONS(101), + [anon_sym_u8_SQUOTE] = ACTIONS(101), + [anon_sym_SQUOTE] = ACTIONS(101), + [anon_sym_L_DQUOTE] = ACTIONS(103), + [anon_sym_u_DQUOTE] = ACTIONS(103), + [anon_sym_U_DQUOTE] = ACTIONS(103), + [anon_sym_u8_DQUOTE] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_true] = ACTIONS(167), + [sym_false] = ACTIONS(167), + [anon_sym_NULL] = ACTIONS(107), + [anon_sym_nullptr] = ACTIONS(107), [sym_comment] = ACTIONS(3), }, - [55] = { + [53] = { [sym_declaration] = STATE(62), [sym_type_definition] = STATE(62), - [sym__declaration_modifiers] = STATE(697), - [sym__declaration_specifiers] = STATE(1127), - [sym_attribute_specifier] = STATE(697), - [sym_attribute_declaration] = STATE(405), - [sym_ms_declspec_modifier] = STATE(697), + [sym__declaration_modifiers] = STATE(805), + [sym__declaration_specifiers] = STATE(1244), + [sym_attribute_specifier] = STATE(805), + [sym_attribute_declaration] = STATE(468), + [sym_ms_declspec_modifier] = STATE(805), [sym_compound_statement] = STATE(62), - [sym_storage_class_specifier] = STATE(697), - [sym_type_qualifier] = STATE(697), - [sym_alignas_qualifier] = STATE(703), - [sym_type_specifier] = STATE(710), - [sym_sized_type_specifier] = STATE(746), - [sym_enum_specifier] = STATE(746), - [sym_struct_specifier] = STATE(746), - [sym_union_specifier] = STATE(746), + [sym_storage_class_specifier] = STATE(805), + [sym_type_qualifier] = STATE(805), + [sym_alignas_qualifier] = STATE(799), + [sym_type_specifier] = STATE(807), + [sym_sized_type_specifier] = STATE(873), + [sym_enum_specifier] = STATE(873), + [sym_struct_specifier] = STATE(873), + [sym_union_specifier] = STATE(873), [sym_attributed_statement] = STATE(62), [sym_labeled_statement] = STATE(62), [sym_expression_statement] = STATE(62), @@ -21526,43 +22033,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(62), [sym_seh_try_statement] = STATE(62), [sym_seh_leave_statement] = STATE(62), - [sym_expression] = STATE(1060), - [sym__string] = STATE(663), - [sym_comma_expression] = STATE(1853), - [sym_conditional_expression] = STATE(663), - [sym_assignment_expression] = STATE(663), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(663), - [sym_binary_expression] = STATE(663), - [sym_update_expression] = STATE(663), - [sym_cast_expression] = STATE(663), - [sym_sizeof_expression] = STATE(663), - [sym_alignof_expression] = STATE(663), - [sym_offsetof_expression] = STATE(663), - [sym_generic_expression] = STATE(663), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(663), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(663), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(663), - [sym_concatenated_string] = STATE(663), - [sym_string_literal] = STATE(659), - [sym_null] = STATE(663), - [sym_macro_type_specifier] = STATE(746), - [aux_sym__declaration_specifiers_repeat1] = STATE(697), - [aux_sym_attributed_declarator_repeat1] = STATE(348), - [aux_sym_sized_type_specifier_repeat1] = STATE(747), + [sym_expression] = STATE(1179), + [sym__string] = STATE(758), + [sym_comma_expression] = STATE(2159), + [sym_conditional_expression] = STATE(758), + [sym_assignment_expression] = STATE(758), + [sym_pointer_expression] = STATE(944), + [sym_unary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_cast_expression] = STATE(758), + [sym_sizeof_expression] = STATE(758), + [sym_alignof_expression] = STATE(758), + [sym_offsetof_expression] = STATE(758), + [sym_generic_expression] = STATE(758), + [sym_subscript_expression] = STATE(944), + [sym_call_expression] = STATE(944), + [sym_gnu_asm_expression] = STATE(758), + [sym_field_expression] = STATE(944), + [sym_compound_literal_expression] = STATE(758), + [sym_parenthesized_expression] = STATE(944), + [sym_char_literal] = STATE(758), + [sym_concatenated_string] = STATE(758), + [sym_string_literal] = STATE(671), + [sym_null] = STATE(758), + [sym_macro_type_specifier] = STATE(873), + [aux_sym__declaration_specifiers_repeat1] = STATE(805), + [aux_sym_attributed_declarator_repeat1] = STATE(421), + [aux_sym_sized_type_specifier_repeat1] = STATE(890), [aux_sym_case_statement_repeat1] = STATE(62), - [ts_builtin_sym_end] = ACTIONS(1006), - [sym_identifier] = ACTIONS(994), - [aux_sym_preproc_include_token1] = ACTIONS(800), - [aux_sym_preproc_def_token1] = ACTIONS(800), - [aux_sym_preproc_if_token1] = ACTIONS(800), - [aux_sym_preproc_ifdef_token1] = ACTIONS(800), - [aux_sym_preproc_ifdef_token2] = ACTIONS(800), - [sym_preproc_directive] = ACTIONS(800), + [ts_builtin_sym_end] = ACTIONS(1012), + [sym_identifier] = ACTIONS(1004), + [aux_sym_preproc_include_token1] = ACTIONS(810), + [aux_sym_preproc_def_token1] = ACTIONS(810), + [aux_sym_preproc_if_token1] = ACTIONS(810), + [aux_sym_preproc_ifdef_token1] = ACTIONS(810), + [aux_sym_preproc_ifdef_token2] = ACTIONS(810), + [sym_preproc_directive] = ACTIONS(810), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -21570,329 +22077,167 @@ 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(996), + [anon_sym_SEMI] = ACTIONS(1006), [anon_sym___extension__] = ACTIONS(27), [anon_sym_typedef] = ACTIONS(29), - [anon_sym_extern] = ACTIONS(49), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym___scanf] = ACTIONS(35), - [anon_sym___printf] = ACTIONS(35), - [anon_sym___read_mostly] = ACTIONS(37), - [anon_sym___must_hold] = ACTIONS(33), - [anon_sym___ro_after_init] = ACTIONS(37), - [anon_sym___init] = ACTIONS(37), - [anon_sym_LBRACK_LBRACK] = ACTIONS(39), - [anon_sym___declspec] = ACTIONS(41), - [anon_sym___cdecl] = ACTIONS(800), - [anon_sym___clrcall] = ACTIONS(800), - [anon_sym___stdcall] = ACTIONS(800), - [anon_sym___fastcall] = ACTIONS(800), - [anon_sym___thiscall] = ACTIONS(800), - [anon_sym___vectorcall] = ACTIONS(800), - [anon_sym_LBRACE] = ACTIONS(45), - [anon_sym_signed] = ACTIONS(47), - [anon_sym_unsigned] = ACTIONS(47), - [anon_sym_long] = ACTIONS(47), - [anon_sym_short] = ACTIONS(47), - [anon_sym_static] = ACTIONS(49), - [anon_sym_auto] = ACTIONS(49), - [anon_sym_register] = ACTIONS(49), - [anon_sym_inline] = ACTIONS(49), - [anon_sym___inline] = ACTIONS(49), - [anon_sym___inline__] = ACTIONS(49), - [anon_sym___forceinline] = ACTIONS(49), - [anon_sym_thread_local] = ACTIONS(49), - [anon_sym___thread] = ACTIONS(49), - [anon_sym_const] = ACTIONS(51), - [anon_sym_constexpr] = ACTIONS(51), - [anon_sym_volatile] = ACTIONS(51), - [anon_sym_restrict] = ACTIONS(51), - [anon_sym___restrict__] = ACTIONS(51), - [anon_sym__Atomic] = ACTIONS(51), - [anon_sym__Noreturn] = ACTIONS(51), - [anon_sym_noreturn] = ACTIONS(51), - [anon_sym_alignas] = ACTIONS(53), - [anon_sym__Alignas] = ACTIONS(53), - [sym_primitive_type] = ACTIONS(55), - [anon_sym_enum] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [anon_sym_if] = ACTIONS(63), - [anon_sym_else] = ACTIONS(800), - [anon_sym_switch] = ACTIONS(65), - [anon_sym_case] = ACTIONS(800), - [anon_sym_default] = ACTIONS(800), - [anon_sym_while] = ACTIONS(71), - [anon_sym_do] = ACTIONS(73), - [anon_sym_for] = ACTIONS(75), - [anon_sym_return] = ACTIONS(77), - [anon_sym_break] = ACTIONS(79), - [anon_sym_continue] = ACTIONS(81), - [anon_sym_goto] = ACTIONS(83), - [anon_sym___try] = ACTIONS(998), - [anon_sym___leave] = ACTIONS(1000), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [anon_sym___alignof__] = ACTIONS(89), - [anon_sym___alignof] = ACTIONS(89), - [anon_sym__alignof] = ACTIONS(89), - [anon_sym_alignof] = ACTIONS(89), - [anon_sym__Alignof] = ACTIONS(89), - [anon_sym_offsetof] = ACTIONS(91), - [anon_sym__Generic] = ACTIONS(93), - [anon_sym_asm] = ACTIONS(95), - [anon_sym___asm__] = ACTIONS(95), - [sym_number_literal] = ACTIONS(163), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(165), - [sym_false] = ACTIONS(165), - [anon_sym_NULL] = ACTIONS(105), - [anon_sym_nullptr] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - }, - [56] = { - [sym_declaration] = STATE(53), - [sym_type_definition] = STATE(53), - [sym__declaration_modifiers] = STATE(697), - [sym__declaration_specifiers] = STATE(1156), - [sym_attribute_specifier] = STATE(697), - [sym_attribute_declaration] = STATE(405), - [sym_ms_declspec_modifier] = STATE(697), - [sym_compound_statement] = STATE(53), - [sym_storage_class_specifier] = STATE(697), - [sym_type_qualifier] = STATE(697), - [sym_alignas_qualifier] = STATE(703), - [sym_type_specifier] = STATE(710), - [sym_sized_type_specifier] = STATE(746), - [sym_enum_specifier] = STATE(746), - [sym_struct_specifier] = STATE(746), - [sym_union_specifier] = STATE(746), - [sym_attributed_statement] = STATE(53), - [sym_labeled_statement] = STATE(53), - [sym_expression_statement] = STATE(53), - [sym_if_statement] = STATE(53), - [sym_switch_statement] = STATE(53), - [sym_while_statement] = STATE(53), - [sym_do_statement] = STATE(53), - [sym_for_statement] = STATE(53), - [sym_return_statement] = STATE(53), - [sym_break_statement] = STATE(53), - [sym_continue_statement] = STATE(53), - [sym_goto_statement] = STATE(53), - [sym_seh_try_statement] = STATE(53), - [sym_seh_leave_statement] = STATE(53), - [sym_expression] = STATE(1033), - [sym__string] = STATE(663), - [sym_comma_expression] = STATE(1818), - [sym_conditional_expression] = STATE(663), - [sym_assignment_expression] = STATE(663), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(663), - [sym_binary_expression] = STATE(663), - [sym_update_expression] = STATE(663), - [sym_cast_expression] = STATE(663), - [sym_sizeof_expression] = STATE(663), - [sym_alignof_expression] = STATE(663), - [sym_offsetof_expression] = STATE(663), - [sym_generic_expression] = STATE(663), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(663), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(663), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(663), - [sym_concatenated_string] = STATE(663), - [sym_string_literal] = STATE(659), - [sym_null] = STATE(663), - [sym_macro_type_specifier] = STATE(746), - [aux_sym__declaration_specifiers_repeat1] = STATE(697), - [aux_sym_attributed_declarator_repeat1] = STATE(375), - [aux_sym_sized_type_specifier_repeat1] = STATE(747), - [aux_sym_case_statement_repeat1] = STATE(53), - [sym_identifier] = ACTIONS(1002), - [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(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(378), - [anon_sym___extension__] = ACTIONS(380), - [anon_sym_typedef] = ACTIONS(382), - [anon_sym_extern] = ACTIONS(49), + [anon_sym_extern] = ACTIONS(51), [anon_sym___attribute__] = ACTIONS(33), [anon_sym___scanf] = ACTIONS(35), [anon_sym___printf] = ACTIONS(35), [anon_sym___read_mostly] = ACTIONS(37), [anon_sym___must_hold] = ACTIONS(33), [anon_sym___ro_after_init] = ACTIONS(37), - [anon_sym___init] = ACTIONS(37), + [anon_sym___noreturn] = ACTIONS(37), + [anon_sym___cold] = ACTIONS(37), [anon_sym_LBRACK_LBRACK] = ACTIONS(39), [anon_sym___declspec] = ACTIONS(41), - [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(386), - [anon_sym_RBRACE] = ACTIONS(1008), - [anon_sym_signed] = ACTIONS(47), - [anon_sym_unsigned] = ACTIONS(47), - [anon_sym_long] = ACTIONS(47), - [anon_sym_short] = ACTIONS(47), - [anon_sym_static] = ACTIONS(49), - [anon_sym_auto] = ACTIONS(49), - [anon_sym_register] = ACTIONS(49), - [anon_sym_inline] = ACTIONS(49), - [anon_sym___inline] = ACTIONS(49), - [anon_sym___inline__] = ACTIONS(49), - [anon_sym___forceinline] = ACTIONS(49), - [anon_sym_thread_local] = ACTIONS(49), - [anon_sym___thread] = ACTIONS(49), - [anon_sym_const] = ACTIONS(51), - [anon_sym_constexpr] = ACTIONS(51), - [anon_sym_volatile] = ACTIONS(51), - [anon_sym_restrict] = ACTIONS(51), - [anon_sym___restrict__] = ACTIONS(51), - [anon_sym__Atomic] = ACTIONS(51), - [anon_sym__Noreturn] = ACTIONS(51), - [anon_sym_noreturn] = ACTIONS(51), - [anon_sym_alignas] = ACTIONS(53), - [anon_sym__Alignas] = ACTIONS(53), - [sym_primitive_type] = ACTIONS(55), - [anon_sym_enum] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [anon_sym_if] = ACTIONS(390), - [anon_sym_else] = ACTIONS(940), - [anon_sym_switch] = ACTIONS(392), - [anon_sym_case] = ACTIONS(940), - [anon_sym_default] = ACTIONS(940), - [anon_sym_while] = ACTIONS(398), - [anon_sym_do] = ACTIONS(400), - [anon_sym_for] = ACTIONS(402), - [anon_sym_return] = ACTIONS(404), - [anon_sym_break] = ACTIONS(406), - [anon_sym_continue] = ACTIONS(408), - [anon_sym_goto] = ACTIONS(410), - [anon_sym___try] = ACTIONS(412), - [anon_sym___leave] = ACTIONS(414), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [anon_sym___alignof__] = ACTIONS(89), - [anon_sym___alignof] = ACTIONS(89), - [anon_sym__alignof] = ACTIONS(89), - [anon_sym_alignof] = ACTIONS(89), - [anon_sym__Alignof] = ACTIONS(89), - [anon_sym_offsetof] = ACTIONS(91), - [anon_sym__Generic] = ACTIONS(93), - [anon_sym_asm] = ACTIONS(95), - [anon_sym___asm__] = ACTIONS(95), - [sym_number_literal] = ACTIONS(163), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(165), - [sym_false] = ACTIONS(165), - [anon_sym_NULL] = ACTIONS(105), - [anon_sym_nullptr] = ACTIONS(105), + [anon_sym___init] = ACTIONS(810), + [anon_sym___exit] = ACTIONS(810), + [anon_sym___cdecl] = ACTIONS(810), + [anon_sym___clrcall] = ACTIONS(810), + [anon_sym___stdcall] = ACTIONS(810), + [anon_sym___fastcall] = ACTIONS(810), + [anon_sym___thiscall] = ACTIONS(810), + [anon_sym___vectorcall] = ACTIONS(810), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_const] = ACTIONS(53), + [anon_sym_constexpr] = ACTIONS(53), + [anon_sym_volatile] = ACTIONS(53), + [anon_sym_restrict] = ACTIONS(53), + [anon_sym___restrict__] = ACTIONS(53), + [anon_sym__Atomic] = ACTIONS(53), + [anon_sym__Noreturn] = ACTIONS(53), + [anon_sym_noreturn] = ACTIONS(53), + [anon_sym_alignas] = ACTIONS(55), + [anon_sym__Alignas] = ACTIONS(55), + [sym_primitive_type] = ACTIONS(57), + [anon_sym_enum] = ACTIONS(59), + [anon_sym_struct] = ACTIONS(61), + [anon_sym_union] = ACTIONS(63), + [anon_sym_if] = ACTIONS(65), + [anon_sym_else] = ACTIONS(810), + [anon_sym_switch] = ACTIONS(67), + [anon_sym_case] = ACTIONS(810), + [anon_sym_default] = ACTIONS(810), + [anon_sym_while] = ACTIONS(73), + [anon_sym_do] = ACTIONS(75), + [anon_sym_for] = ACTIONS(77), + [anon_sym_return] = ACTIONS(79), + [anon_sym_break] = ACTIONS(81), + [anon_sym_continue] = ACTIONS(83), + [anon_sym_goto] = ACTIONS(85), + [anon_sym___try] = ACTIONS(1008), + [anon_sym___leave] = ACTIONS(1010), + [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(87), + [anon_sym_sizeof] = ACTIONS(89), + [anon_sym___alignof__] = ACTIONS(91), + [anon_sym___alignof] = ACTIONS(91), + [anon_sym__alignof] = ACTIONS(91), + [anon_sym_alignof] = ACTIONS(91), + [anon_sym__Alignof] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(93), + [anon_sym__Generic] = ACTIONS(95), + [anon_sym_asm] = ACTIONS(97), + [anon_sym___asm__] = ACTIONS(97), + [sym_number_literal] = ACTIONS(165), + [anon_sym_L_SQUOTE] = ACTIONS(101), + [anon_sym_u_SQUOTE] = ACTIONS(101), + [anon_sym_U_SQUOTE] = ACTIONS(101), + [anon_sym_u8_SQUOTE] = ACTIONS(101), + [anon_sym_SQUOTE] = ACTIONS(101), + [anon_sym_L_DQUOTE] = ACTIONS(103), + [anon_sym_u_DQUOTE] = ACTIONS(103), + [anon_sym_U_DQUOTE] = ACTIONS(103), + [anon_sym_u8_DQUOTE] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_true] = ACTIONS(167), + [sym_false] = ACTIONS(167), + [anon_sym_NULL] = ACTIONS(107), + [anon_sym_nullptr] = ACTIONS(107), [sym_comment] = ACTIONS(3), }, - [57] = { - [sym_declaration] = STATE(50), - [sym_type_definition] = STATE(50), - [sym__declaration_modifiers] = STATE(697), - [sym__declaration_specifiers] = STATE(1148), - [sym_attribute_specifier] = STATE(697), - [sym_attribute_declaration] = STATE(405), - [sym_ms_declspec_modifier] = STATE(697), - [sym_compound_statement] = STATE(50), - [sym_storage_class_specifier] = STATE(697), - [sym_type_qualifier] = STATE(697), - [sym_alignas_qualifier] = STATE(703), - [sym_type_specifier] = STATE(710), - [sym_sized_type_specifier] = STATE(746), - [sym_enum_specifier] = STATE(746), - [sym_struct_specifier] = STATE(746), - [sym_union_specifier] = STATE(746), - [sym_attributed_statement] = STATE(50), - [sym_labeled_statement] = STATE(50), - [sym_expression_statement] = STATE(50), - [sym_if_statement] = STATE(50), - [sym_switch_statement] = STATE(50), - [sym_while_statement] = STATE(50), - [sym_do_statement] = STATE(50), - [sym_for_statement] = STATE(50), - [sym_return_statement] = STATE(50), - [sym_break_statement] = STATE(50), - [sym_continue_statement] = STATE(50), - [sym_goto_statement] = STATE(50), - [sym_seh_try_statement] = STATE(50), - [sym_seh_leave_statement] = STATE(50), - [sym_expression] = STATE(1031), - [sym__string] = STATE(663), - [sym_comma_expression] = STATE(1792), - [sym_conditional_expression] = STATE(663), - [sym_assignment_expression] = STATE(663), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(663), - [sym_binary_expression] = STATE(663), - [sym_update_expression] = STATE(663), - [sym_cast_expression] = STATE(663), - [sym_sizeof_expression] = STATE(663), - [sym_alignof_expression] = STATE(663), - [sym_offsetof_expression] = STATE(663), - [sym_generic_expression] = STATE(663), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(663), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(663), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(663), - [sym_concatenated_string] = STATE(663), - [sym_string_literal] = STATE(659), - [sym_null] = STATE(663), - [sym_macro_type_specifier] = STATE(746), - [aux_sym__declaration_specifiers_repeat1] = STATE(697), - [aux_sym_attributed_declarator_repeat1] = STATE(373), - [aux_sym_sized_type_specifier_repeat1] = STATE(747), - [aux_sym_case_statement_repeat1] = STATE(50), - [sym_identifier] = ACTIONS(990), - [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), + [54] = { + [sym_declaration] = STATE(52), + [sym_type_definition] = STATE(52), + [sym__declaration_modifiers] = STATE(805), + [sym__declaration_specifiers] = STATE(1244), + [sym_attribute_specifier] = STATE(805), + [sym_attribute_declaration] = STATE(468), + [sym_ms_declspec_modifier] = STATE(805), + [sym_compound_statement] = STATE(52), + [sym_storage_class_specifier] = STATE(805), + [sym_type_qualifier] = STATE(805), + [sym_alignas_qualifier] = STATE(799), + [sym_type_specifier] = STATE(807), + [sym_sized_type_specifier] = STATE(873), + [sym_enum_specifier] = STATE(873), + [sym_struct_specifier] = STATE(873), + [sym_union_specifier] = STATE(873), + [sym_attributed_statement] = STATE(52), + [sym_labeled_statement] = STATE(52), + [sym_expression_statement] = STATE(52), + [sym_if_statement] = STATE(52), + [sym_switch_statement] = STATE(52), + [sym_while_statement] = STATE(52), + [sym_do_statement] = STATE(52), + [sym_for_statement] = STATE(52), + [sym_return_statement] = STATE(52), + [sym_break_statement] = STATE(52), + [sym_continue_statement] = STATE(52), + [sym_goto_statement] = STATE(52), + [sym_seh_try_statement] = STATE(52), + [sym_seh_leave_statement] = STATE(52), + [sym_expression] = STATE(1179), + [sym__string] = STATE(758), + [sym_comma_expression] = STATE(2159), + [sym_conditional_expression] = STATE(758), + [sym_assignment_expression] = STATE(758), + [sym_pointer_expression] = STATE(944), + [sym_unary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_cast_expression] = STATE(758), + [sym_sizeof_expression] = STATE(758), + [sym_alignof_expression] = STATE(758), + [sym_offsetof_expression] = STATE(758), + [sym_generic_expression] = STATE(758), + [sym_subscript_expression] = STATE(944), + [sym_call_expression] = STATE(944), + [sym_gnu_asm_expression] = STATE(758), + [sym_field_expression] = STATE(944), + [sym_compound_literal_expression] = STATE(758), + [sym_parenthesized_expression] = STATE(944), + [sym_char_literal] = STATE(758), + [sym_concatenated_string] = STATE(758), + [sym_string_literal] = STATE(671), + [sym_null] = STATE(758), + [sym_macro_type_specifier] = STATE(873), + [aux_sym__declaration_specifiers_repeat1] = STATE(805), + [aux_sym_attributed_declarator_repeat1] = STATE(421), + [aux_sym_sized_type_specifier_repeat1] = STATE(890), + [aux_sym_case_statement_repeat1] = STATE(52), + [ts_builtin_sym_end] = ACTIONS(1014), + [sym_identifier] = ACTIONS(1004), + [aux_sym_preproc_include_token1] = ACTIONS(812), + [aux_sym_preproc_def_token1] = ACTIONS(812), + [aux_sym_preproc_if_token1] = ACTIONS(812), + [aux_sym_preproc_ifdef_token1] = ACTIONS(812), + [aux_sym_preproc_ifdef_token2] = ACTIONS(812), + [sym_preproc_directive] = ACTIONS(812), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -21900,113 +22245,116 @@ 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(516), - [anon_sym___extension__] = ACTIONS(518), - [anon_sym_typedef] = ACTIONS(520), - [anon_sym_extern] = ACTIONS(49), + [anon_sym_SEMI] = ACTIONS(1006), + [anon_sym___extension__] = ACTIONS(27), + [anon_sym_typedef] = ACTIONS(29), + [anon_sym_extern] = ACTIONS(51), [anon_sym___attribute__] = ACTIONS(33), [anon_sym___scanf] = ACTIONS(35), [anon_sym___printf] = ACTIONS(35), [anon_sym___read_mostly] = ACTIONS(37), [anon_sym___must_hold] = ACTIONS(33), [anon_sym___ro_after_init] = ACTIONS(37), - [anon_sym___init] = ACTIONS(37), + [anon_sym___noreturn] = ACTIONS(37), + [anon_sym___cold] = ACTIONS(37), [anon_sym_LBRACK_LBRACK] = ACTIONS(39), [anon_sym___declspec] = ACTIONS(41), - [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(524), - [anon_sym_signed] = ACTIONS(47), - [anon_sym_unsigned] = ACTIONS(47), - [anon_sym_long] = ACTIONS(47), - [anon_sym_short] = ACTIONS(47), - [anon_sym_static] = ACTIONS(49), - [anon_sym_auto] = ACTIONS(49), - [anon_sym_register] = ACTIONS(49), - [anon_sym_inline] = ACTIONS(49), - [anon_sym___inline] = ACTIONS(49), - [anon_sym___inline__] = ACTIONS(49), - [anon_sym___forceinline] = ACTIONS(49), - [anon_sym_thread_local] = ACTIONS(49), - [anon_sym___thread] = ACTIONS(49), - [anon_sym_const] = ACTIONS(51), - [anon_sym_constexpr] = ACTIONS(51), - [anon_sym_volatile] = ACTIONS(51), - [anon_sym_restrict] = ACTIONS(51), - [anon_sym___restrict__] = ACTIONS(51), - [anon_sym__Atomic] = ACTIONS(51), - [anon_sym__Noreturn] = ACTIONS(51), - [anon_sym_noreturn] = ACTIONS(51), - [anon_sym_alignas] = ACTIONS(53), - [anon_sym__Alignas] = ACTIONS(53), - [sym_primitive_type] = ACTIONS(55), - [anon_sym_enum] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [anon_sym_if] = ACTIONS(526), - [anon_sym_else] = ACTIONS(936), - [anon_sym_switch] = ACTIONS(528), - [anon_sym_case] = ACTIONS(936), - [anon_sym_default] = ACTIONS(936), - [anon_sym_while] = ACTIONS(534), - [anon_sym_do] = ACTIONS(536), - [anon_sym_for] = ACTIONS(538), - [anon_sym_return] = ACTIONS(540), - [anon_sym_break] = ACTIONS(542), - [anon_sym_continue] = ACTIONS(544), - [anon_sym_goto] = ACTIONS(546), - [anon_sym___try] = ACTIONS(548), - [anon_sym___leave] = ACTIONS(550), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [anon_sym___alignof__] = ACTIONS(89), - [anon_sym___alignof] = ACTIONS(89), - [anon_sym__alignof] = ACTIONS(89), - [anon_sym_alignof] = ACTIONS(89), - [anon_sym__Alignof] = ACTIONS(89), - [anon_sym_offsetof] = ACTIONS(91), - [anon_sym__Generic] = ACTIONS(93), - [anon_sym_asm] = ACTIONS(95), - [anon_sym___asm__] = ACTIONS(95), - [sym_number_literal] = ACTIONS(163), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(165), - [sym_false] = ACTIONS(165), - [anon_sym_NULL] = ACTIONS(105), - [anon_sym_nullptr] = ACTIONS(105), + [anon_sym___init] = ACTIONS(812), + [anon_sym___exit] = ACTIONS(812), + [anon_sym___cdecl] = ACTIONS(812), + [anon_sym___clrcall] = ACTIONS(812), + [anon_sym___stdcall] = ACTIONS(812), + [anon_sym___fastcall] = ACTIONS(812), + [anon_sym___thiscall] = ACTIONS(812), + [anon_sym___vectorcall] = ACTIONS(812), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_const] = ACTIONS(53), + [anon_sym_constexpr] = ACTIONS(53), + [anon_sym_volatile] = ACTIONS(53), + [anon_sym_restrict] = ACTIONS(53), + [anon_sym___restrict__] = ACTIONS(53), + [anon_sym__Atomic] = ACTIONS(53), + [anon_sym__Noreturn] = ACTIONS(53), + [anon_sym_noreturn] = ACTIONS(53), + [anon_sym_alignas] = ACTIONS(55), + [anon_sym__Alignas] = ACTIONS(55), + [sym_primitive_type] = ACTIONS(57), + [anon_sym_enum] = ACTIONS(59), + [anon_sym_struct] = ACTIONS(61), + [anon_sym_union] = ACTIONS(63), + [anon_sym_if] = ACTIONS(65), + [anon_sym_else] = ACTIONS(812), + [anon_sym_switch] = ACTIONS(67), + [anon_sym_case] = ACTIONS(812), + [anon_sym_default] = ACTIONS(812), + [anon_sym_while] = ACTIONS(73), + [anon_sym_do] = ACTIONS(75), + [anon_sym_for] = ACTIONS(77), + [anon_sym_return] = ACTIONS(79), + [anon_sym_break] = ACTIONS(81), + [anon_sym_continue] = ACTIONS(83), + [anon_sym_goto] = ACTIONS(85), + [anon_sym___try] = ACTIONS(1008), + [anon_sym___leave] = ACTIONS(1010), + [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(87), + [anon_sym_sizeof] = ACTIONS(89), + [anon_sym___alignof__] = ACTIONS(91), + [anon_sym___alignof] = ACTIONS(91), + [anon_sym__alignof] = ACTIONS(91), + [anon_sym_alignof] = ACTIONS(91), + [anon_sym__Alignof] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(93), + [anon_sym__Generic] = ACTIONS(95), + [anon_sym_asm] = ACTIONS(97), + [anon_sym___asm__] = ACTIONS(97), + [sym_number_literal] = ACTIONS(165), + [anon_sym_L_SQUOTE] = ACTIONS(101), + [anon_sym_u_SQUOTE] = ACTIONS(101), + [anon_sym_U_SQUOTE] = ACTIONS(101), + [anon_sym_u8_SQUOTE] = ACTIONS(101), + [anon_sym_SQUOTE] = ACTIONS(101), + [anon_sym_L_DQUOTE] = ACTIONS(103), + [anon_sym_u_DQUOTE] = ACTIONS(103), + [anon_sym_U_DQUOTE] = ACTIONS(103), + [anon_sym_u8_DQUOTE] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_true] = ACTIONS(167), + [sym_false] = ACTIONS(167), + [anon_sym_NULL] = ACTIONS(107), + [anon_sym_nullptr] = ACTIONS(107), [sym_comment] = ACTIONS(3), }, - [58] = { + [55] = { [sym_declaration] = STATE(55), [sym_type_definition] = STATE(55), - [sym__declaration_modifiers] = STATE(697), - [sym__declaration_specifiers] = STATE(1127), - [sym_attribute_specifier] = STATE(697), - [sym_attribute_declaration] = STATE(405), - [sym_ms_declspec_modifier] = STATE(697), + [sym__declaration_modifiers] = STATE(805), + [sym__declaration_specifiers] = STATE(1244), + [sym_attribute_specifier] = STATE(805), + [sym_attribute_declaration] = STATE(468), + [sym_ms_declspec_modifier] = STATE(805), [sym_compound_statement] = STATE(55), - [sym_storage_class_specifier] = STATE(697), - [sym_type_qualifier] = STATE(697), - [sym_alignas_qualifier] = STATE(703), - [sym_type_specifier] = STATE(710), - [sym_sized_type_specifier] = STATE(746), - [sym_enum_specifier] = STATE(746), - [sym_struct_specifier] = STATE(746), - [sym_union_specifier] = STATE(746), + [sym_storage_class_specifier] = STATE(805), + [sym_type_qualifier] = STATE(805), + [sym_alignas_qualifier] = STATE(799), + [sym_type_specifier] = STATE(807), + [sym_sized_type_specifier] = STATE(873), + [sym_enum_specifier] = STATE(873), + [sym_struct_specifier] = STATE(873), + [sym_union_specifier] = STATE(873), [sym_attributed_statement] = STATE(55), [sym_labeled_statement] = STATE(55), [sym_expression_statement] = STATE(55), @@ -22021,43 +22369,210 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(55), [sym_seh_try_statement] = STATE(55), [sym_seh_leave_statement] = STATE(55), - [sym_expression] = STATE(1060), - [sym__string] = STATE(663), - [sym_comma_expression] = STATE(1853), - [sym_conditional_expression] = STATE(663), - [sym_assignment_expression] = STATE(663), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(663), - [sym_binary_expression] = STATE(663), - [sym_update_expression] = STATE(663), - [sym_cast_expression] = STATE(663), - [sym_sizeof_expression] = STATE(663), - [sym_alignof_expression] = STATE(663), - [sym_offsetof_expression] = STATE(663), - [sym_generic_expression] = STATE(663), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(663), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(663), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(663), - [sym_concatenated_string] = STATE(663), - [sym_string_literal] = STATE(659), - [sym_null] = STATE(663), - [sym_macro_type_specifier] = STATE(746), - [aux_sym__declaration_specifiers_repeat1] = STATE(697), - [aux_sym_attributed_declarator_repeat1] = STATE(348), - [aux_sym_sized_type_specifier_repeat1] = STATE(747), + [sym_expression] = STATE(1179), + [sym__string] = STATE(758), + [sym_comma_expression] = STATE(2159), + [sym_conditional_expression] = STATE(758), + [sym_assignment_expression] = STATE(758), + [sym_pointer_expression] = STATE(944), + [sym_unary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_cast_expression] = STATE(758), + [sym_sizeof_expression] = STATE(758), + [sym_alignof_expression] = STATE(758), + [sym_offsetof_expression] = STATE(758), + [sym_generic_expression] = STATE(758), + [sym_subscript_expression] = STATE(944), + [sym_call_expression] = STATE(944), + [sym_gnu_asm_expression] = STATE(758), + [sym_field_expression] = STATE(944), + [sym_compound_literal_expression] = STATE(758), + [sym_parenthesized_expression] = STATE(944), + [sym_char_literal] = STATE(758), + [sym_concatenated_string] = STATE(758), + [sym_string_literal] = STATE(671), + [sym_null] = STATE(758), + [sym_macro_type_specifier] = STATE(873), + [aux_sym__declaration_specifiers_repeat1] = STATE(805), + [aux_sym_attributed_declarator_repeat1] = STATE(421), + [aux_sym_sized_type_specifier_repeat1] = STATE(890), [aux_sym_case_statement_repeat1] = STATE(55), - [ts_builtin_sym_end] = ACTIONS(1004), - [sym_identifier] = ACTIONS(994), - [aux_sym_preproc_include_token1] = ACTIONS(938), - [aux_sym_preproc_def_token1] = ACTIONS(938), - [aux_sym_preproc_if_token1] = ACTIONS(938), - [aux_sym_preproc_ifdef_token1] = ACTIONS(938), - [aux_sym_preproc_ifdef_token2] = ACTIONS(938), - [sym_preproc_directive] = ACTIONS(938), + [ts_builtin_sym_end] = ACTIONS(967), + [sym_identifier] = ACTIONS(1016), + [aux_sym_preproc_include_token1] = ACTIONS(819), + [aux_sym_preproc_def_token1] = ACTIONS(819), + [aux_sym_preproc_if_token1] = ACTIONS(819), + [aux_sym_preproc_ifdef_token1] = ACTIONS(819), + [aux_sym_preproc_ifdef_token2] = ACTIONS(819), + [sym_preproc_directive] = ACTIONS(819), + [anon_sym_LPAREN2] = ACTIONS(821), + [anon_sym_BANG] = ACTIONS(824), + [anon_sym_TILDE] = ACTIONS(824), + [anon_sym_DASH] = ACTIONS(827), + [anon_sym_PLUS] = ACTIONS(827), + [anon_sym_STAR] = ACTIONS(830), + [anon_sym_AMP] = ACTIONS(830), + [anon_sym_SEMI] = ACTIONS(1019), + [anon_sym___extension__] = ACTIONS(1022), + [anon_sym_typedef] = ACTIONS(1025), + [anon_sym_extern] = ACTIONS(842), + [anon_sym___attribute__] = ACTIONS(845), + [anon_sym___scanf] = ACTIONS(848), + [anon_sym___printf] = ACTIONS(848), + [anon_sym___read_mostly] = ACTIONS(851), + [anon_sym___must_hold] = ACTIONS(845), + [anon_sym___ro_after_init] = ACTIONS(851), + [anon_sym___noreturn] = ACTIONS(851), + [anon_sym___cold] = ACTIONS(851), + [anon_sym_LBRACK_LBRACK] = ACTIONS(854), + [anon_sym___declspec] = ACTIONS(857), + [anon_sym___init] = ACTIONS(819), + [anon_sym___exit] = ACTIONS(819), + [anon_sym___cdecl] = ACTIONS(819), + [anon_sym___clrcall] = ACTIONS(819), + [anon_sym___stdcall] = ACTIONS(819), + [anon_sym___fastcall] = ACTIONS(819), + [anon_sym___thiscall] = ACTIONS(819), + [anon_sym___vectorcall] = ACTIONS(819), + [anon_sym_LBRACE] = ACTIONS(1028), + [anon_sym_signed] = ACTIONS(863), + [anon_sym_unsigned] = ACTIONS(863), + [anon_sym_long] = ACTIONS(863), + [anon_sym_short] = ACTIONS(863), + [anon_sym_static] = ACTIONS(842), + [anon_sym_auto] = ACTIONS(842), + [anon_sym_register] = ACTIONS(842), + [anon_sym_inline] = ACTIONS(842), + [anon_sym___inline] = ACTIONS(842), + [anon_sym___inline__] = ACTIONS(842), + [anon_sym___forceinline] = ACTIONS(842), + [anon_sym_thread_local] = ACTIONS(842), + [anon_sym___thread] = ACTIONS(842), + [anon_sym_const] = ACTIONS(866), + [anon_sym_constexpr] = ACTIONS(866), + [anon_sym_volatile] = ACTIONS(866), + [anon_sym_restrict] = ACTIONS(866), + [anon_sym___restrict__] = ACTIONS(866), + [anon_sym__Atomic] = ACTIONS(866), + [anon_sym__Noreturn] = ACTIONS(866), + [anon_sym_noreturn] = ACTIONS(866), + [anon_sym_alignas] = ACTIONS(869), + [anon_sym__Alignas] = ACTIONS(869), + [sym_primitive_type] = ACTIONS(872), + [anon_sym_enum] = ACTIONS(875), + [anon_sym_struct] = ACTIONS(878), + [anon_sym_union] = ACTIONS(881), + [anon_sym_if] = ACTIONS(1031), + [anon_sym_else] = ACTIONS(819), + [anon_sym_switch] = ACTIONS(1034), + [anon_sym_case] = ACTIONS(819), + [anon_sym_default] = ACTIONS(819), + [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___try] = ACTIONS(1058), + [anon_sym___leave] = ACTIONS(1061), + [anon_sym_DASH_DASH] = ACTIONS(917), + [anon_sym_PLUS_PLUS] = ACTIONS(917), + [anon_sym_sizeof] = ACTIONS(920), + [anon_sym___alignof__] = ACTIONS(923), + [anon_sym___alignof] = ACTIONS(923), + [anon_sym__alignof] = ACTIONS(923), + [anon_sym_alignof] = ACTIONS(923), + [anon_sym__Alignof] = ACTIONS(923), + [anon_sym_offsetof] = ACTIONS(926), + [anon_sym__Generic] = ACTIONS(929), + [anon_sym_asm] = ACTIONS(932), + [anon_sym___asm__] = ACTIONS(932), + [sym_number_literal] = ACTIONS(935), + [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(941), + [anon_sym_u_DQUOTE] = ACTIONS(941), + [anon_sym_U_DQUOTE] = ACTIONS(941), + [anon_sym_u8_DQUOTE] = ACTIONS(941), + [anon_sym_DQUOTE] = ACTIONS(941), + [sym_true] = ACTIONS(944), + [sym_false] = ACTIONS(944), + [anon_sym_NULL] = ACTIONS(947), + [anon_sym_nullptr] = ACTIONS(947), + [sym_comment] = ACTIONS(3), + }, + [56] = { + [sym_declaration] = STATE(51), + [sym_type_definition] = STATE(51), + [sym__declaration_modifiers] = STATE(805), + [sym__declaration_specifiers] = STATE(1242), + [sym_attribute_specifier] = STATE(805), + [sym_attribute_declaration] = STATE(468), + [sym_ms_declspec_modifier] = STATE(805), + [sym_compound_statement] = STATE(51), + [sym_storage_class_specifier] = STATE(805), + [sym_type_qualifier] = STATE(805), + [sym_alignas_qualifier] = STATE(799), + [sym_type_specifier] = STATE(807), + [sym_sized_type_specifier] = STATE(873), + [sym_enum_specifier] = STATE(873), + [sym_struct_specifier] = STATE(873), + [sym_union_specifier] = STATE(873), + [sym_attributed_statement] = STATE(51), + [sym_labeled_statement] = STATE(51), + [sym_expression_statement] = STATE(51), + [sym_if_statement] = STATE(51), + [sym_switch_statement] = STATE(51), + [sym_while_statement] = STATE(51), + [sym_do_statement] = STATE(51), + [sym_for_statement] = STATE(51), + [sym_return_statement] = STATE(51), + [sym_break_statement] = STATE(51), + [sym_continue_statement] = STATE(51), + [sym_goto_statement] = STATE(51), + [sym_seh_try_statement] = STATE(51), + [sym_seh_leave_statement] = STATE(51), + [sym_expression] = STATE(1167), + [sym__string] = STATE(758), + [sym_comma_expression] = STATE(2207), + [sym_conditional_expression] = STATE(758), + [sym_assignment_expression] = STATE(758), + [sym_pointer_expression] = STATE(944), + [sym_unary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_cast_expression] = STATE(758), + [sym_sizeof_expression] = STATE(758), + [sym_alignof_expression] = STATE(758), + [sym_offsetof_expression] = STATE(758), + [sym_generic_expression] = STATE(758), + [sym_subscript_expression] = STATE(944), + [sym_call_expression] = STATE(944), + [sym_gnu_asm_expression] = STATE(758), + [sym_field_expression] = STATE(944), + [sym_compound_literal_expression] = STATE(758), + [sym_parenthesized_expression] = STATE(944), + [sym_char_literal] = STATE(758), + [sym_concatenated_string] = STATE(758), + [sym_string_literal] = STATE(671), + [sym_null] = STATE(758), + [sym_macro_type_specifier] = STATE(873), + [aux_sym__declaration_specifiers_repeat1] = STATE(805), + [aux_sym_attributed_declarator_repeat1] = STATE(428), + [aux_sym_sized_type_specifier_repeat1] = STATE(890), + [aux_sym_case_statement_repeat1] = STATE(51), + [sym_identifier] = ACTIONS(1064), + [aux_sym_preproc_include_token1] = ACTIONS(808), + [aux_sym_preproc_def_token1] = ACTIONS(808), + [aux_sym_preproc_if_token1] = ACTIONS(808), + [aux_sym_preproc_ifdef_token1] = ACTIONS(808), + [aux_sym_preproc_ifdef_token2] = ACTIONS(808), + [sym_preproc_directive] = ACTIONS(808), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -22065,164 +22580,504 @@ 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(996), - [anon_sym___extension__] = ACTIONS(27), - [anon_sym_typedef] = ACTIONS(29), - [anon_sym_extern] = ACTIONS(49), + [anon_sym_SEMI] = ACTIONS(383), + [anon_sym___extension__] = ACTIONS(385), + [anon_sym_typedef] = ACTIONS(387), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(33), + [anon_sym___scanf] = ACTIONS(35), + [anon_sym___printf] = ACTIONS(35), + [anon_sym___read_mostly] = ACTIONS(37), + [anon_sym___must_hold] = ACTIONS(33), + [anon_sym___ro_after_init] = ACTIONS(37), + [anon_sym___noreturn] = ACTIONS(37), + [anon_sym___cold] = ACTIONS(37), + [anon_sym_LBRACK_LBRACK] = ACTIONS(39), + [anon_sym___declspec] = ACTIONS(41), + [anon_sym___init] = ACTIONS(808), + [anon_sym___exit] = ACTIONS(808), + [anon_sym___cdecl] = ACTIONS(808), + [anon_sym___clrcall] = ACTIONS(808), + [anon_sym___stdcall] = ACTIONS(808), + [anon_sym___fastcall] = ACTIONS(808), + [anon_sym___thiscall] = ACTIONS(808), + [anon_sym___vectorcall] = ACTIONS(808), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_RBRACE] = ACTIONS(1002), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_const] = ACTIONS(53), + [anon_sym_constexpr] = ACTIONS(53), + [anon_sym_volatile] = ACTIONS(53), + [anon_sym_restrict] = ACTIONS(53), + [anon_sym___restrict__] = ACTIONS(53), + [anon_sym__Atomic] = ACTIONS(53), + [anon_sym__Noreturn] = ACTIONS(53), + [anon_sym_noreturn] = ACTIONS(53), + [anon_sym_alignas] = ACTIONS(55), + [anon_sym__Alignas] = ACTIONS(55), + [sym_primitive_type] = ACTIONS(57), + [anon_sym_enum] = ACTIONS(59), + [anon_sym_struct] = ACTIONS(61), + [anon_sym_union] = ACTIONS(63), + [anon_sym_if] = ACTIONS(395), + [anon_sym_else] = ACTIONS(808), + [anon_sym_switch] = ACTIONS(397), + [anon_sym_case] = ACTIONS(808), + [anon_sym_default] = ACTIONS(808), + [anon_sym_while] = ACTIONS(403), + [anon_sym_do] = ACTIONS(405), + [anon_sym_for] = ACTIONS(407), + [anon_sym_return] = ACTIONS(409), + [anon_sym_break] = ACTIONS(411), + [anon_sym_continue] = ACTIONS(413), + [anon_sym_goto] = ACTIONS(415), + [anon_sym___try] = ACTIONS(417), + [anon_sym___leave] = ACTIONS(419), + [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(87), + [anon_sym_sizeof] = ACTIONS(89), + [anon_sym___alignof__] = ACTIONS(91), + [anon_sym___alignof] = ACTIONS(91), + [anon_sym__alignof] = ACTIONS(91), + [anon_sym_alignof] = ACTIONS(91), + [anon_sym__Alignof] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(93), + [anon_sym__Generic] = ACTIONS(95), + [anon_sym_asm] = ACTIONS(97), + [anon_sym___asm__] = ACTIONS(97), + [sym_number_literal] = ACTIONS(165), + [anon_sym_L_SQUOTE] = ACTIONS(101), + [anon_sym_u_SQUOTE] = ACTIONS(101), + [anon_sym_U_SQUOTE] = ACTIONS(101), + [anon_sym_u8_SQUOTE] = ACTIONS(101), + [anon_sym_SQUOTE] = ACTIONS(101), + [anon_sym_L_DQUOTE] = ACTIONS(103), + [anon_sym_u_DQUOTE] = ACTIONS(103), + [anon_sym_U_DQUOTE] = ACTIONS(103), + [anon_sym_u8_DQUOTE] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_true] = ACTIONS(167), + [sym_false] = ACTIONS(167), + [anon_sym_NULL] = ACTIONS(107), + [anon_sym_nullptr] = ACTIONS(107), + [sym_comment] = ACTIONS(3), + }, + [57] = { + [sym_declaration] = STATE(64), + [sym_type_definition] = STATE(64), + [sym__declaration_modifiers] = STATE(805), + [sym__declaration_specifiers] = STATE(1242), + [sym_attribute_specifier] = STATE(805), + [sym_attribute_declaration] = STATE(468), + [sym_ms_declspec_modifier] = STATE(805), + [sym_compound_statement] = STATE(64), + [sym_storage_class_specifier] = STATE(805), + [sym_type_qualifier] = STATE(805), + [sym_alignas_qualifier] = STATE(799), + [sym_type_specifier] = STATE(807), + [sym_sized_type_specifier] = STATE(873), + [sym_enum_specifier] = STATE(873), + [sym_struct_specifier] = STATE(873), + [sym_union_specifier] = STATE(873), + [sym_attributed_statement] = STATE(64), + [sym_labeled_statement] = STATE(64), + [sym_expression_statement] = STATE(64), + [sym_if_statement] = STATE(64), + [sym_switch_statement] = STATE(64), + [sym_while_statement] = STATE(64), + [sym_do_statement] = STATE(64), + [sym_for_statement] = STATE(64), + [sym_return_statement] = STATE(64), + [sym_break_statement] = STATE(64), + [sym_continue_statement] = STATE(64), + [sym_goto_statement] = STATE(64), + [sym_seh_try_statement] = STATE(64), + [sym_seh_leave_statement] = STATE(64), + [sym_expression] = STATE(1167), + [sym__string] = STATE(758), + [sym_comma_expression] = STATE(2207), + [sym_conditional_expression] = STATE(758), + [sym_assignment_expression] = STATE(758), + [sym_pointer_expression] = STATE(944), + [sym_unary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_cast_expression] = STATE(758), + [sym_sizeof_expression] = STATE(758), + [sym_alignof_expression] = STATE(758), + [sym_offsetof_expression] = STATE(758), + [sym_generic_expression] = STATE(758), + [sym_subscript_expression] = STATE(944), + [sym_call_expression] = STATE(944), + [sym_gnu_asm_expression] = STATE(758), + [sym_field_expression] = STATE(944), + [sym_compound_literal_expression] = STATE(758), + [sym_parenthesized_expression] = STATE(944), + [sym_char_literal] = STATE(758), + [sym_concatenated_string] = STATE(758), + [sym_string_literal] = STATE(671), + [sym_null] = STATE(758), + [sym_macro_type_specifier] = STATE(873), + [aux_sym__declaration_specifiers_repeat1] = STATE(805), + [aux_sym_attributed_declarator_repeat1] = STATE(428), + [aux_sym_sized_type_specifier_repeat1] = STATE(890), + [aux_sym_case_statement_repeat1] = STATE(64), + [sym_identifier] = ACTIONS(1064), + [aux_sym_preproc_include_token1] = ACTIONS(810), + [aux_sym_preproc_def_token1] = ACTIONS(810), + [aux_sym_preproc_if_token1] = ACTIONS(810), + [aux_sym_preproc_ifdef_token1] = ACTIONS(810), + [aux_sym_preproc_ifdef_token2] = ACTIONS(810), + [sym_preproc_directive] = ACTIONS(810), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(383), + [anon_sym___extension__] = ACTIONS(385), + [anon_sym_typedef] = ACTIONS(387), + [anon_sym_extern] = ACTIONS(51), [anon_sym___attribute__] = ACTIONS(33), [anon_sym___scanf] = ACTIONS(35), [anon_sym___printf] = ACTIONS(35), [anon_sym___read_mostly] = ACTIONS(37), [anon_sym___must_hold] = ACTIONS(33), [anon_sym___ro_after_init] = ACTIONS(37), - [anon_sym___init] = ACTIONS(37), + [anon_sym___noreturn] = ACTIONS(37), + [anon_sym___cold] = ACTIONS(37), [anon_sym_LBRACK_LBRACK] = ACTIONS(39), [anon_sym___declspec] = ACTIONS(41), - [anon_sym___cdecl] = ACTIONS(938), - [anon_sym___clrcall] = ACTIONS(938), - [anon_sym___stdcall] = ACTIONS(938), - [anon_sym___fastcall] = ACTIONS(938), - [anon_sym___thiscall] = ACTIONS(938), - [anon_sym___vectorcall] = ACTIONS(938), - [anon_sym_LBRACE] = ACTIONS(45), - [anon_sym_signed] = ACTIONS(47), - [anon_sym_unsigned] = ACTIONS(47), - [anon_sym_long] = ACTIONS(47), - [anon_sym_short] = ACTIONS(47), - [anon_sym_static] = ACTIONS(49), - [anon_sym_auto] = ACTIONS(49), - [anon_sym_register] = ACTIONS(49), - [anon_sym_inline] = ACTIONS(49), - [anon_sym___inline] = ACTIONS(49), - [anon_sym___inline__] = ACTIONS(49), - [anon_sym___forceinline] = ACTIONS(49), - [anon_sym_thread_local] = ACTIONS(49), - [anon_sym___thread] = ACTIONS(49), - [anon_sym_const] = ACTIONS(51), - [anon_sym_constexpr] = ACTIONS(51), - [anon_sym_volatile] = ACTIONS(51), - [anon_sym_restrict] = ACTIONS(51), - [anon_sym___restrict__] = ACTIONS(51), - [anon_sym__Atomic] = ACTIONS(51), - [anon_sym__Noreturn] = ACTIONS(51), - [anon_sym_noreturn] = ACTIONS(51), - [anon_sym_alignas] = ACTIONS(53), - [anon_sym__Alignas] = ACTIONS(53), - [sym_primitive_type] = ACTIONS(55), - [anon_sym_enum] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [anon_sym_if] = ACTIONS(63), - [anon_sym_else] = ACTIONS(938), - [anon_sym_switch] = ACTIONS(65), - [anon_sym_case] = ACTIONS(938), - [anon_sym_default] = ACTIONS(938), - [anon_sym_while] = ACTIONS(71), - [anon_sym_do] = ACTIONS(73), - [anon_sym_for] = ACTIONS(75), - [anon_sym_return] = ACTIONS(77), - [anon_sym_break] = ACTIONS(79), - [anon_sym_continue] = ACTIONS(81), - [anon_sym_goto] = ACTIONS(83), - [anon_sym___try] = ACTIONS(998), - [anon_sym___leave] = ACTIONS(1000), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [anon_sym___alignof__] = ACTIONS(89), - [anon_sym___alignof] = ACTIONS(89), - [anon_sym__alignof] = ACTIONS(89), - [anon_sym_alignof] = ACTIONS(89), - [anon_sym__Alignof] = ACTIONS(89), - [anon_sym_offsetof] = ACTIONS(91), - [anon_sym__Generic] = ACTIONS(93), - [anon_sym_asm] = ACTIONS(95), - [anon_sym___asm__] = ACTIONS(95), - [sym_number_literal] = ACTIONS(163), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(165), - [sym_false] = ACTIONS(165), - [anon_sym_NULL] = ACTIONS(105), - [anon_sym_nullptr] = ACTIONS(105), + [anon_sym___init] = ACTIONS(810), + [anon_sym___exit] = ACTIONS(810), + [anon_sym___cdecl] = ACTIONS(810), + [anon_sym___clrcall] = ACTIONS(810), + [anon_sym___stdcall] = ACTIONS(810), + [anon_sym___fastcall] = ACTIONS(810), + [anon_sym___thiscall] = ACTIONS(810), + [anon_sym___vectorcall] = ACTIONS(810), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_RBRACE] = ACTIONS(1012), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_const] = ACTIONS(53), + [anon_sym_constexpr] = ACTIONS(53), + [anon_sym_volatile] = ACTIONS(53), + [anon_sym_restrict] = ACTIONS(53), + [anon_sym___restrict__] = ACTIONS(53), + [anon_sym__Atomic] = ACTIONS(53), + [anon_sym__Noreturn] = ACTIONS(53), + [anon_sym_noreturn] = ACTIONS(53), + [anon_sym_alignas] = ACTIONS(55), + [anon_sym__Alignas] = ACTIONS(55), + [sym_primitive_type] = ACTIONS(57), + [anon_sym_enum] = ACTIONS(59), + [anon_sym_struct] = ACTIONS(61), + [anon_sym_union] = ACTIONS(63), + [anon_sym_if] = ACTIONS(395), + [anon_sym_else] = ACTIONS(810), + [anon_sym_switch] = ACTIONS(397), + [anon_sym_case] = ACTIONS(810), + [anon_sym_default] = ACTIONS(810), + [anon_sym_while] = ACTIONS(403), + [anon_sym_do] = ACTIONS(405), + [anon_sym_for] = ACTIONS(407), + [anon_sym_return] = ACTIONS(409), + [anon_sym_break] = ACTIONS(411), + [anon_sym_continue] = ACTIONS(413), + [anon_sym_goto] = ACTIONS(415), + [anon_sym___try] = ACTIONS(417), + [anon_sym___leave] = ACTIONS(419), + [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(87), + [anon_sym_sizeof] = ACTIONS(89), + [anon_sym___alignof__] = ACTIONS(91), + [anon_sym___alignof] = ACTIONS(91), + [anon_sym__alignof] = ACTIONS(91), + [anon_sym_alignof] = ACTIONS(91), + [anon_sym__Alignof] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(93), + [anon_sym__Generic] = ACTIONS(95), + [anon_sym_asm] = ACTIONS(97), + [anon_sym___asm__] = ACTIONS(97), + [sym_number_literal] = ACTIONS(165), + [anon_sym_L_SQUOTE] = ACTIONS(101), + [anon_sym_u_SQUOTE] = ACTIONS(101), + [anon_sym_U_SQUOTE] = ACTIONS(101), + [anon_sym_u8_SQUOTE] = ACTIONS(101), + [anon_sym_SQUOTE] = ACTIONS(101), + [anon_sym_L_DQUOTE] = ACTIONS(103), + [anon_sym_u_DQUOTE] = ACTIONS(103), + [anon_sym_U_DQUOTE] = ACTIONS(103), + [anon_sym_u8_DQUOTE] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_true] = ACTIONS(167), + [sym_false] = ACTIONS(167), + [anon_sym_NULL] = ACTIONS(107), + [anon_sym_nullptr] = ACTIONS(107), + [sym_comment] = ACTIONS(3), + }, + [58] = { + [sym_declaration] = STATE(58), + [sym_type_definition] = STATE(58), + [sym__declaration_modifiers] = STATE(805), + [sym__declaration_specifiers] = STATE(1241), + [sym_attribute_specifier] = STATE(805), + [sym_attribute_declaration] = STATE(468), + [sym_ms_declspec_modifier] = STATE(805), + [sym_compound_statement] = STATE(58), + [sym_storage_class_specifier] = STATE(805), + [sym_type_qualifier] = STATE(805), + [sym_alignas_qualifier] = STATE(799), + [sym_type_specifier] = STATE(807), + [sym_sized_type_specifier] = STATE(873), + [sym_enum_specifier] = STATE(873), + [sym_struct_specifier] = STATE(873), + [sym_union_specifier] = STATE(873), + [sym_attributed_statement] = STATE(58), + [sym_labeled_statement] = STATE(58), + [sym_expression_statement] = STATE(58), + [sym_if_statement] = STATE(58), + [sym_switch_statement] = STATE(58), + [sym_while_statement] = STATE(58), + [sym_do_statement] = STATE(58), + [sym_for_statement] = STATE(58), + [sym_return_statement] = STATE(58), + [sym_break_statement] = STATE(58), + [sym_continue_statement] = STATE(58), + [sym_goto_statement] = STATE(58), + [sym_seh_try_statement] = STATE(58), + [sym_seh_leave_statement] = STATE(58), + [sym_expression] = STATE(1193), + [sym__string] = STATE(758), + [sym_comma_expression] = STATE(2067), + [sym_conditional_expression] = STATE(758), + [sym_assignment_expression] = STATE(758), + [sym_pointer_expression] = STATE(944), + [sym_unary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_cast_expression] = STATE(758), + [sym_sizeof_expression] = STATE(758), + [sym_alignof_expression] = STATE(758), + [sym_offsetof_expression] = STATE(758), + [sym_generic_expression] = STATE(758), + [sym_subscript_expression] = STATE(944), + [sym_call_expression] = STATE(944), + [sym_gnu_asm_expression] = STATE(758), + [sym_field_expression] = STATE(944), + [sym_compound_literal_expression] = STATE(758), + [sym_parenthesized_expression] = STATE(944), + [sym_char_literal] = STATE(758), + [sym_concatenated_string] = STATE(758), + [sym_string_literal] = STATE(671), + [sym_null] = STATE(758), + [sym_macro_type_specifier] = STATE(873), + [aux_sym__declaration_specifiers_repeat1] = STATE(805), + [aux_sym_attributed_declarator_repeat1] = STATE(415), + [aux_sym_sized_type_specifier_repeat1] = STATE(890), + [aux_sym_case_statement_repeat1] = STATE(58), + [sym_identifier] = ACTIONS(1066), + [aux_sym_preproc_include_token1] = ACTIONS(819), + [aux_sym_preproc_def_token1] = ACTIONS(819), + [aux_sym_preproc_if_token1] = ACTIONS(819), + [aux_sym_preproc_if_token2] = ACTIONS(819), + [aux_sym_preproc_ifdef_token1] = ACTIONS(819), + [aux_sym_preproc_ifdef_token2] = ACTIONS(819), + [sym_preproc_directive] = ACTIONS(819), + [anon_sym_LPAREN2] = ACTIONS(821), + [anon_sym_BANG] = ACTIONS(824), + [anon_sym_TILDE] = ACTIONS(824), + [anon_sym_DASH] = ACTIONS(827), + [anon_sym_PLUS] = ACTIONS(827), + [anon_sym_STAR] = ACTIONS(830), + [anon_sym_AMP] = ACTIONS(830), + [anon_sym_SEMI] = ACTIONS(1069), + [anon_sym___extension__] = ACTIONS(1072), + [anon_sym_typedef] = ACTIONS(1075), + [anon_sym_extern] = ACTIONS(842), + [anon_sym___attribute__] = ACTIONS(845), + [anon_sym___scanf] = ACTIONS(848), + [anon_sym___printf] = ACTIONS(848), + [anon_sym___read_mostly] = ACTIONS(851), + [anon_sym___must_hold] = ACTIONS(845), + [anon_sym___ro_after_init] = ACTIONS(851), + [anon_sym___noreturn] = ACTIONS(851), + [anon_sym___cold] = ACTIONS(851), + [anon_sym_LBRACK_LBRACK] = ACTIONS(854), + [anon_sym___declspec] = ACTIONS(857), + [anon_sym___init] = ACTIONS(819), + [anon_sym___exit] = ACTIONS(819), + [anon_sym___cdecl] = ACTIONS(819), + [anon_sym___clrcall] = ACTIONS(819), + [anon_sym___stdcall] = ACTIONS(819), + [anon_sym___fastcall] = ACTIONS(819), + [anon_sym___thiscall] = ACTIONS(819), + [anon_sym___vectorcall] = ACTIONS(819), + [anon_sym_LBRACE] = ACTIONS(1078), + [anon_sym_signed] = ACTIONS(863), + [anon_sym_unsigned] = ACTIONS(863), + [anon_sym_long] = ACTIONS(863), + [anon_sym_short] = ACTIONS(863), + [anon_sym_static] = ACTIONS(842), + [anon_sym_auto] = ACTIONS(842), + [anon_sym_register] = ACTIONS(842), + [anon_sym_inline] = ACTIONS(842), + [anon_sym___inline] = ACTIONS(842), + [anon_sym___inline__] = ACTIONS(842), + [anon_sym___forceinline] = ACTIONS(842), + [anon_sym_thread_local] = ACTIONS(842), + [anon_sym___thread] = ACTIONS(842), + [anon_sym_const] = ACTIONS(866), + [anon_sym_constexpr] = ACTIONS(866), + [anon_sym_volatile] = ACTIONS(866), + [anon_sym_restrict] = ACTIONS(866), + [anon_sym___restrict__] = ACTIONS(866), + [anon_sym__Atomic] = ACTIONS(866), + [anon_sym__Noreturn] = ACTIONS(866), + [anon_sym_noreturn] = ACTIONS(866), + [anon_sym_alignas] = ACTIONS(869), + [anon_sym__Alignas] = ACTIONS(869), + [sym_primitive_type] = ACTIONS(872), + [anon_sym_enum] = ACTIONS(875), + [anon_sym_struct] = ACTIONS(878), + [anon_sym_union] = ACTIONS(881), + [anon_sym_if] = ACTIONS(1081), + [anon_sym_else] = ACTIONS(819), + [anon_sym_switch] = ACTIONS(1084), + [anon_sym_case] = ACTIONS(819), + [anon_sym_default] = ACTIONS(819), + [anon_sym_while] = ACTIONS(1087), + [anon_sym_do] = ACTIONS(1090), + [anon_sym_for] = ACTIONS(1093), + [anon_sym_return] = ACTIONS(1096), + [anon_sym_break] = ACTIONS(1099), + [anon_sym_continue] = ACTIONS(1102), + [anon_sym_goto] = ACTIONS(1105), + [anon_sym___try] = ACTIONS(1108), + [anon_sym___leave] = ACTIONS(1111), + [anon_sym_DASH_DASH] = ACTIONS(917), + [anon_sym_PLUS_PLUS] = ACTIONS(917), + [anon_sym_sizeof] = ACTIONS(920), + [anon_sym___alignof__] = ACTIONS(923), + [anon_sym___alignof] = ACTIONS(923), + [anon_sym__alignof] = ACTIONS(923), + [anon_sym_alignof] = ACTIONS(923), + [anon_sym__Alignof] = ACTIONS(923), + [anon_sym_offsetof] = ACTIONS(926), + [anon_sym__Generic] = ACTIONS(929), + [anon_sym_asm] = ACTIONS(932), + [anon_sym___asm__] = ACTIONS(932), + [sym_number_literal] = ACTIONS(935), + [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(941), + [anon_sym_u_DQUOTE] = ACTIONS(941), + [anon_sym_U_DQUOTE] = ACTIONS(941), + [anon_sym_u8_DQUOTE] = ACTIONS(941), + [anon_sym_DQUOTE] = ACTIONS(941), + [sym_true] = ACTIONS(944), + [sym_false] = ACTIONS(944), + [anon_sym_NULL] = ACTIONS(947), + [anon_sym_nullptr] = ACTIONS(947), [sym_comment] = ACTIONS(3), }, [59] = { - [sym_declaration] = STATE(50), - [sym_type_definition] = STATE(50), - [sym__declaration_modifiers] = STATE(697), - [sym__declaration_specifiers] = STATE(1148), - [sym_attribute_specifier] = STATE(697), - [sym_attribute_declaration] = STATE(405), - [sym_ms_declspec_modifier] = STATE(697), - [sym_compound_statement] = STATE(50), - [sym_storage_class_specifier] = STATE(697), - [sym_type_qualifier] = STATE(697), - [sym_alignas_qualifier] = STATE(703), - [sym_type_specifier] = STATE(710), - [sym_sized_type_specifier] = STATE(746), - [sym_enum_specifier] = STATE(746), - [sym_struct_specifier] = STATE(746), - [sym_union_specifier] = STATE(746), - [sym_attributed_statement] = STATE(50), - [sym_labeled_statement] = STATE(50), - [sym_expression_statement] = STATE(50), - [sym_if_statement] = STATE(50), - [sym_switch_statement] = STATE(50), - [sym_while_statement] = STATE(50), - [sym_do_statement] = STATE(50), - [sym_for_statement] = STATE(50), - [sym_return_statement] = STATE(50), - [sym_break_statement] = STATE(50), - [sym_continue_statement] = STATE(50), - [sym_goto_statement] = STATE(50), - [sym_seh_try_statement] = STATE(50), - [sym_seh_leave_statement] = STATE(50), - [sym_expression] = STATE(1031), - [sym__string] = STATE(663), - [sym_comma_expression] = STATE(1792), - [sym_conditional_expression] = STATE(663), - [sym_assignment_expression] = STATE(663), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(663), - [sym_binary_expression] = STATE(663), - [sym_update_expression] = STATE(663), - [sym_cast_expression] = STATE(663), - [sym_sizeof_expression] = STATE(663), - [sym_alignof_expression] = STATE(663), - [sym_offsetof_expression] = STATE(663), - [sym_generic_expression] = STATE(663), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(663), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(663), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(663), - [sym_concatenated_string] = STATE(663), - [sym_string_literal] = STATE(659), - [sym_null] = STATE(663), - [sym_macro_type_specifier] = STATE(746), - [aux_sym__declaration_specifiers_repeat1] = STATE(697), - [aux_sym_attributed_declarator_repeat1] = STATE(373), - [aux_sym_sized_type_specifier_repeat1] = STATE(747), - [aux_sym_case_statement_repeat1] = STATE(50), - [sym_identifier] = ACTIONS(990), - [aux_sym_preproc_include_token1] = ACTIONS(800), - [aux_sym_preproc_def_token1] = ACTIONS(800), - [aux_sym_preproc_if_token1] = ACTIONS(800), - [aux_sym_preproc_if_token2] = ACTIONS(800), - [aux_sym_preproc_ifdef_token1] = ACTIONS(800), - [aux_sym_preproc_ifdef_token2] = ACTIONS(800), - [sym_preproc_directive] = ACTIONS(800), + [sym_declaration] = STATE(58), + [sym_type_definition] = STATE(58), + [sym__declaration_modifiers] = STATE(805), + [sym__declaration_specifiers] = STATE(1241), + [sym_attribute_specifier] = STATE(805), + [sym_attribute_declaration] = STATE(468), + [sym_ms_declspec_modifier] = STATE(805), + [sym_compound_statement] = STATE(58), + [sym_storage_class_specifier] = STATE(805), + [sym_type_qualifier] = STATE(805), + [sym_alignas_qualifier] = STATE(799), + [sym_type_specifier] = STATE(807), + [sym_sized_type_specifier] = STATE(873), + [sym_enum_specifier] = STATE(873), + [sym_struct_specifier] = STATE(873), + [sym_union_specifier] = STATE(873), + [sym_attributed_statement] = STATE(58), + [sym_labeled_statement] = STATE(58), + [sym_expression_statement] = STATE(58), + [sym_if_statement] = STATE(58), + [sym_switch_statement] = STATE(58), + [sym_while_statement] = STATE(58), + [sym_do_statement] = STATE(58), + [sym_for_statement] = STATE(58), + [sym_return_statement] = STATE(58), + [sym_break_statement] = STATE(58), + [sym_continue_statement] = STATE(58), + [sym_goto_statement] = STATE(58), + [sym_seh_try_statement] = STATE(58), + [sym_seh_leave_statement] = STATE(58), + [sym_expression] = STATE(1193), + [sym__string] = STATE(758), + [sym_comma_expression] = STATE(2067), + [sym_conditional_expression] = STATE(758), + [sym_assignment_expression] = STATE(758), + [sym_pointer_expression] = STATE(944), + [sym_unary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_cast_expression] = STATE(758), + [sym_sizeof_expression] = STATE(758), + [sym_alignof_expression] = STATE(758), + [sym_offsetof_expression] = STATE(758), + [sym_generic_expression] = STATE(758), + [sym_subscript_expression] = STATE(944), + [sym_call_expression] = STATE(944), + [sym_gnu_asm_expression] = STATE(758), + [sym_field_expression] = STATE(944), + [sym_compound_literal_expression] = STATE(758), + [sym_parenthesized_expression] = STATE(944), + [sym_char_literal] = STATE(758), + [sym_concatenated_string] = STATE(758), + [sym_string_literal] = STATE(671), + [sym_null] = STATE(758), + [sym_macro_type_specifier] = STATE(873), + [aux_sym__declaration_specifiers_repeat1] = STATE(805), + [aux_sym_attributed_declarator_repeat1] = STATE(415), + [aux_sym_sized_type_specifier_repeat1] = STATE(890), + [aux_sym_case_statement_repeat1] = STATE(58), + [sym_identifier] = ACTIONS(950), + [aux_sym_preproc_include_token1] = ACTIONS(814), + [aux_sym_preproc_def_token1] = ACTIONS(814), + [aux_sym_preproc_if_token1] = ACTIONS(814), + [aux_sym_preproc_if_token2] = ACTIONS(814), + [aux_sym_preproc_ifdef_token1] = ACTIONS(814), + [aux_sym_preproc_ifdef_token2] = ACTIONS(814), + [sym_preproc_directive] = ACTIONS(814), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -22230,164 +23085,167 @@ 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(516), - [anon_sym___extension__] = ACTIONS(518), - [anon_sym_typedef] = ACTIONS(520), - [anon_sym_extern] = ACTIONS(49), + [anon_sym_SEMI] = ACTIONS(447), + [anon_sym___extension__] = ACTIONS(449), + [anon_sym_typedef] = ACTIONS(451), + [anon_sym_extern] = ACTIONS(51), [anon_sym___attribute__] = ACTIONS(33), [anon_sym___scanf] = ACTIONS(35), [anon_sym___printf] = ACTIONS(35), [anon_sym___read_mostly] = ACTIONS(37), [anon_sym___must_hold] = ACTIONS(33), [anon_sym___ro_after_init] = ACTIONS(37), - [anon_sym___init] = ACTIONS(37), + [anon_sym___noreturn] = ACTIONS(37), + [anon_sym___cold] = ACTIONS(37), [anon_sym_LBRACK_LBRACK] = ACTIONS(39), [anon_sym___declspec] = ACTIONS(41), - [anon_sym___cdecl] = ACTIONS(800), - [anon_sym___clrcall] = ACTIONS(800), - [anon_sym___stdcall] = ACTIONS(800), - [anon_sym___fastcall] = ACTIONS(800), - [anon_sym___thiscall] = ACTIONS(800), - [anon_sym___vectorcall] = ACTIONS(800), - [anon_sym_LBRACE] = ACTIONS(524), - [anon_sym_signed] = ACTIONS(47), - [anon_sym_unsigned] = ACTIONS(47), - [anon_sym_long] = ACTIONS(47), - [anon_sym_short] = ACTIONS(47), - [anon_sym_static] = ACTIONS(49), - [anon_sym_auto] = ACTIONS(49), - [anon_sym_register] = ACTIONS(49), - [anon_sym_inline] = ACTIONS(49), - [anon_sym___inline] = ACTIONS(49), - [anon_sym___inline__] = ACTIONS(49), - [anon_sym___forceinline] = ACTIONS(49), - [anon_sym_thread_local] = ACTIONS(49), - [anon_sym___thread] = ACTIONS(49), - [anon_sym_const] = ACTIONS(51), - [anon_sym_constexpr] = ACTIONS(51), - [anon_sym_volatile] = ACTIONS(51), - [anon_sym_restrict] = ACTIONS(51), - [anon_sym___restrict__] = ACTIONS(51), - [anon_sym__Atomic] = ACTIONS(51), - [anon_sym__Noreturn] = ACTIONS(51), - [anon_sym_noreturn] = ACTIONS(51), - [anon_sym_alignas] = ACTIONS(53), - [anon_sym__Alignas] = ACTIONS(53), - [sym_primitive_type] = ACTIONS(55), - [anon_sym_enum] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [anon_sym_if] = ACTIONS(526), - [anon_sym_else] = ACTIONS(800), - [anon_sym_switch] = ACTIONS(528), - [anon_sym_case] = ACTIONS(800), - [anon_sym_default] = ACTIONS(800), - [anon_sym_while] = ACTIONS(534), - [anon_sym_do] = ACTIONS(536), - [anon_sym_for] = ACTIONS(538), - [anon_sym_return] = ACTIONS(540), - [anon_sym_break] = ACTIONS(542), - [anon_sym_continue] = ACTIONS(544), - [anon_sym_goto] = ACTIONS(546), - [anon_sym___try] = ACTIONS(548), - [anon_sym___leave] = ACTIONS(550), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [anon_sym___alignof__] = ACTIONS(89), - [anon_sym___alignof] = ACTIONS(89), - [anon_sym__alignof] = ACTIONS(89), - [anon_sym_alignof] = ACTIONS(89), - [anon_sym__Alignof] = ACTIONS(89), - [anon_sym_offsetof] = ACTIONS(91), - [anon_sym__Generic] = ACTIONS(93), - [anon_sym_asm] = ACTIONS(95), - [anon_sym___asm__] = ACTIONS(95), - [sym_number_literal] = ACTIONS(163), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(165), - [sym_false] = ACTIONS(165), - [anon_sym_NULL] = ACTIONS(105), - [anon_sym_nullptr] = ACTIONS(105), + [anon_sym___init] = ACTIONS(814), + [anon_sym___exit] = ACTIONS(814), + [anon_sym___cdecl] = ACTIONS(814), + [anon_sym___clrcall] = ACTIONS(814), + [anon_sym___stdcall] = ACTIONS(814), + [anon_sym___fastcall] = ACTIONS(814), + [anon_sym___thiscall] = ACTIONS(814), + [anon_sym___vectorcall] = ACTIONS(814), + [anon_sym_LBRACE] = ACTIONS(455), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_const] = ACTIONS(53), + [anon_sym_constexpr] = ACTIONS(53), + [anon_sym_volatile] = ACTIONS(53), + [anon_sym_restrict] = ACTIONS(53), + [anon_sym___restrict__] = ACTIONS(53), + [anon_sym__Atomic] = ACTIONS(53), + [anon_sym__Noreturn] = ACTIONS(53), + [anon_sym_noreturn] = ACTIONS(53), + [anon_sym_alignas] = ACTIONS(55), + [anon_sym__Alignas] = ACTIONS(55), + [sym_primitive_type] = ACTIONS(57), + [anon_sym_enum] = ACTIONS(59), + [anon_sym_struct] = ACTIONS(61), + [anon_sym_union] = ACTIONS(63), + [anon_sym_if] = ACTIONS(457), + [anon_sym_else] = ACTIONS(814), + [anon_sym_switch] = ACTIONS(459), + [anon_sym_case] = ACTIONS(814), + [anon_sym_default] = ACTIONS(814), + [anon_sym_while] = ACTIONS(465), + [anon_sym_do] = ACTIONS(467), + [anon_sym_for] = ACTIONS(469), + [anon_sym_return] = ACTIONS(471), + [anon_sym_break] = ACTIONS(473), + [anon_sym_continue] = ACTIONS(475), + [anon_sym_goto] = ACTIONS(477), + [anon_sym___try] = ACTIONS(479), + [anon_sym___leave] = ACTIONS(481), + [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(87), + [anon_sym_sizeof] = ACTIONS(89), + [anon_sym___alignof__] = ACTIONS(91), + [anon_sym___alignof] = ACTIONS(91), + [anon_sym__alignof] = ACTIONS(91), + [anon_sym_alignof] = ACTIONS(91), + [anon_sym__Alignof] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(93), + [anon_sym__Generic] = ACTIONS(95), + [anon_sym_asm] = ACTIONS(97), + [anon_sym___asm__] = ACTIONS(97), + [sym_number_literal] = ACTIONS(165), + [anon_sym_L_SQUOTE] = ACTIONS(101), + [anon_sym_u_SQUOTE] = ACTIONS(101), + [anon_sym_U_SQUOTE] = ACTIONS(101), + [anon_sym_u8_SQUOTE] = ACTIONS(101), + [anon_sym_SQUOTE] = ACTIONS(101), + [anon_sym_L_DQUOTE] = ACTIONS(103), + [anon_sym_u_DQUOTE] = ACTIONS(103), + [anon_sym_U_DQUOTE] = ACTIONS(103), + [anon_sym_u8_DQUOTE] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_true] = ACTIONS(167), + [sym_false] = ACTIONS(167), + [anon_sym_NULL] = ACTIONS(107), + [anon_sym_nullptr] = ACTIONS(107), [sym_comment] = ACTIONS(3), }, [60] = { - [sym_declaration] = STATE(57), - [sym_type_definition] = STATE(57), - [sym__declaration_modifiers] = STATE(697), - [sym__declaration_specifiers] = STATE(1148), - [sym_attribute_specifier] = STATE(697), - [sym_attribute_declaration] = STATE(405), - [sym_ms_declspec_modifier] = STATE(697), - [sym_compound_statement] = STATE(57), - [sym_storage_class_specifier] = STATE(697), - [sym_type_qualifier] = STATE(697), - [sym_alignas_qualifier] = STATE(703), - [sym_type_specifier] = STATE(710), - [sym_sized_type_specifier] = STATE(746), - [sym_enum_specifier] = STATE(746), - [sym_struct_specifier] = STATE(746), - [sym_union_specifier] = STATE(746), - [sym_attributed_statement] = STATE(57), - [sym_labeled_statement] = STATE(57), - [sym_expression_statement] = STATE(57), - [sym_if_statement] = STATE(57), - [sym_switch_statement] = STATE(57), - [sym_while_statement] = STATE(57), - [sym_do_statement] = STATE(57), - [sym_for_statement] = STATE(57), - [sym_return_statement] = STATE(57), - [sym_break_statement] = STATE(57), - [sym_continue_statement] = STATE(57), - [sym_goto_statement] = STATE(57), - [sym_seh_try_statement] = STATE(57), - [sym_seh_leave_statement] = STATE(57), - [sym_expression] = STATE(1031), - [sym__string] = STATE(663), - [sym_comma_expression] = STATE(1792), - [sym_conditional_expression] = STATE(663), - [sym_assignment_expression] = STATE(663), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(663), - [sym_binary_expression] = STATE(663), - [sym_update_expression] = STATE(663), - [sym_cast_expression] = STATE(663), - [sym_sizeof_expression] = STATE(663), - [sym_alignof_expression] = STATE(663), - [sym_offsetof_expression] = STATE(663), - [sym_generic_expression] = STATE(663), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(663), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(663), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(663), - [sym_concatenated_string] = STATE(663), - [sym_string_literal] = STATE(659), - [sym_null] = STATE(663), - [sym_macro_type_specifier] = STATE(746), - [aux_sym__declaration_specifiers_repeat1] = STATE(697), - [aux_sym_attributed_declarator_repeat1] = STATE(373), - [aux_sym_sized_type_specifier_repeat1] = STATE(747), - [aux_sym_case_statement_repeat1] = STATE(57), - [sym_identifier] = ACTIONS(990), - [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), + [sym_declaration] = STATE(58), + [sym_type_definition] = STATE(58), + [sym__declaration_modifiers] = STATE(805), + [sym__declaration_specifiers] = STATE(1241), + [sym_attribute_specifier] = STATE(805), + [sym_attribute_declaration] = STATE(468), + [sym_ms_declspec_modifier] = STATE(805), + [sym_compound_statement] = STATE(58), + [sym_storage_class_specifier] = STATE(805), + [sym_type_qualifier] = STATE(805), + [sym_alignas_qualifier] = STATE(799), + [sym_type_specifier] = STATE(807), + [sym_sized_type_specifier] = STATE(873), + [sym_enum_specifier] = STATE(873), + [sym_struct_specifier] = STATE(873), + [sym_union_specifier] = STATE(873), + [sym_attributed_statement] = STATE(58), + [sym_labeled_statement] = STATE(58), + [sym_expression_statement] = STATE(58), + [sym_if_statement] = STATE(58), + [sym_switch_statement] = STATE(58), + [sym_while_statement] = STATE(58), + [sym_do_statement] = STATE(58), + [sym_for_statement] = STATE(58), + [sym_return_statement] = STATE(58), + [sym_break_statement] = STATE(58), + [sym_continue_statement] = STATE(58), + [sym_goto_statement] = STATE(58), + [sym_seh_try_statement] = STATE(58), + [sym_seh_leave_statement] = STATE(58), + [sym_expression] = STATE(1193), + [sym__string] = STATE(758), + [sym_comma_expression] = STATE(2067), + [sym_conditional_expression] = STATE(758), + [sym_assignment_expression] = STATE(758), + [sym_pointer_expression] = STATE(944), + [sym_unary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_cast_expression] = STATE(758), + [sym_sizeof_expression] = STATE(758), + [sym_alignof_expression] = STATE(758), + [sym_offsetof_expression] = STATE(758), + [sym_generic_expression] = STATE(758), + [sym_subscript_expression] = STATE(944), + [sym_call_expression] = STATE(944), + [sym_gnu_asm_expression] = STATE(758), + [sym_field_expression] = STATE(944), + [sym_compound_literal_expression] = STATE(758), + [sym_parenthesized_expression] = STATE(944), + [sym_char_literal] = STATE(758), + [sym_concatenated_string] = STATE(758), + [sym_string_literal] = STATE(671), + [sym_null] = STATE(758), + [sym_macro_type_specifier] = STATE(873), + [aux_sym__declaration_specifiers_repeat1] = STATE(805), + [aux_sym_attributed_declarator_repeat1] = STATE(415), + [aux_sym_sized_type_specifier_repeat1] = STATE(890), + [aux_sym_case_statement_repeat1] = STATE(58), + [sym_identifier] = ACTIONS(950), + [aux_sym_preproc_include_token1] = ACTIONS(808), + [aux_sym_preproc_def_token1] = ACTIONS(808), + [aux_sym_preproc_if_token1] = ACTIONS(808), + [aux_sym_preproc_if_token2] = ACTIONS(808), + [aux_sym_preproc_ifdef_token1] = ACTIONS(808), + [aux_sym_preproc_ifdef_token2] = ACTIONS(808), + [sym_preproc_directive] = ACTIONS(808), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -22395,493 +23253,335 @@ 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(516), - [anon_sym___extension__] = ACTIONS(518), - [anon_sym_typedef] = ACTIONS(520), - [anon_sym_extern] = ACTIONS(49), + [anon_sym_SEMI] = ACTIONS(447), + [anon_sym___extension__] = ACTIONS(449), + [anon_sym_typedef] = ACTIONS(451), + [anon_sym_extern] = ACTIONS(51), [anon_sym___attribute__] = ACTIONS(33), [anon_sym___scanf] = ACTIONS(35), [anon_sym___printf] = ACTIONS(35), [anon_sym___read_mostly] = ACTIONS(37), [anon_sym___must_hold] = ACTIONS(33), [anon_sym___ro_after_init] = ACTIONS(37), - [anon_sym___init] = ACTIONS(37), + [anon_sym___noreturn] = ACTIONS(37), + [anon_sym___cold] = ACTIONS(37), [anon_sym_LBRACK_LBRACK] = ACTIONS(39), [anon_sym___declspec] = ACTIONS(41), - [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(524), - [anon_sym_signed] = ACTIONS(47), - [anon_sym_unsigned] = ACTIONS(47), - [anon_sym_long] = ACTIONS(47), - [anon_sym_short] = ACTIONS(47), - [anon_sym_static] = ACTIONS(49), - [anon_sym_auto] = ACTIONS(49), - [anon_sym_register] = ACTIONS(49), - [anon_sym_inline] = ACTIONS(49), - [anon_sym___inline] = ACTIONS(49), - [anon_sym___inline__] = ACTIONS(49), - [anon_sym___forceinline] = ACTIONS(49), - [anon_sym_thread_local] = ACTIONS(49), - [anon_sym___thread] = ACTIONS(49), - [anon_sym_const] = ACTIONS(51), - [anon_sym_constexpr] = ACTIONS(51), - [anon_sym_volatile] = ACTIONS(51), - [anon_sym_restrict] = ACTIONS(51), - [anon_sym___restrict__] = ACTIONS(51), - [anon_sym__Atomic] = ACTIONS(51), - [anon_sym__Noreturn] = ACTIONS(51), - [anon_sym_noreturn] = ACTIONS(51), - [anon_sym_alignas] = ACTIONS(53), - [anon_sym__Alignas] = ACTIONS(53), - [sym_primitive_type] = ACTIONS(55), - [anon_sym_enum] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [anon_sym_if] = ACTIONS(526), - [anon_sym_else] = ACTIONS(940), - [anon_sym_switch] = ACTIONS(528), - [anon_sym_case] = ACTIONS(940), - [anon_sym_default] = ACTIONS(940), - [anon_sym_while] = ACTIONS(534), - [anon_sym_do] = ACTIONS(536), - [anon_sym_for] = ACTIONS(538), - [anon_sym_return] = ACTIONS(540), - [anon_sym_break] = ACTIONS(542), - [anon_sym_continue] = ACTIONS(544), - [anon_sym_goto] = ACTIONS(546), - [anon_sym___try] = ACTIONS(548), - [anon_sym___leave] = ACTIONS(550), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [anon_sym___alignof__] = ACTIONS(89), - [anon_sym___alignof] = ACTIONS(89), - [anon_sym__alignof] = ACTIONS(89), - [anon_sym_alignof] = ACTIONS(89), - [anon_sym__Alignof] = ACTIONS(89), - [anon_sym_offsetof] = ACTIONS(91), - [anon_sym__Generic] = ACTIONS(93), - [anon_sym_asm] = ACTIONS(95), - [anon_sym___asm__] = ACTIONS(95), - [sym_number_literal] = ACTIONS(163), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(165), - [sym_false] = ACTIONS(165), - [anon_sym_NULL] = ACTIONS(105), - [anon_sym_nullptr] = ACTIONS(105), + [anon_sym___init] = ACTIONS(808), + [anon_sym___exit] = ACTIONS(808), + [anon_sym___cdecl] = ACTIONS(808), + [anon_sym___clrcall] = ACTIONS(808), + [anon_sym___stdcall] = ACTIONS(808), + [anon_sym___fastcall] = ACTIONS(808), + [anon_sym___thiscall] = ACTIONS(808), + [anon_sym___vectorcall] = ACTIONS(808), + [anon_sym_LBRACE] = ACTIONS(455), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_const] = ACTIONS(53), + [anon_sym_constexpr] = ACTIONS(53), + [anon_sym_volatile] = ACTIONS(53), + [anon_sym_restrict] = ACTIONS(53), + [anon_sym___restrict__] = ACTIONS(53), + [anon_sym__Atomic] = ACTIONS(53), + [anon_sym__Noreturn] = ACTIONS(53), + [anon_sym_noreturn] = ACTIONS(53), + [anon_sym_alignas] = ACTIONS(55), + [anon_sym__Alignas] = ACTIONS(55), + [sym_primitive_type] = ACTIONS(57), + [anon_sym_enum] = ACTIONS(59), + [anon_sym_struct] = ACTIONS(61), + [anon_sym_union] = ACTIONS(63), + [anon_sym_if] = ACTIONS(457), + [anon_sym_else] = ACTIONS(808), + [anon_sym_switch] = ACTIONS(459), + [anon_sym_case] = ACTIONS(808), + [anon_sym_default] = ACTIONS(808), + [anon_sym_while] = ACTIONS(465), + [anon_sym_do] = ACTIONS(467), + [anon_sym_for] = ACTIONS(469), + [anon_sym_return] = ACTIONS(471), + [anon_sym_break] = ACTIONS(473), + [anon_sym_continue] = ACTIONS(475), + [anon_sym_goto] = ACTIONS(477), + [anon_sym___try] = ACTIONS(479), + [anon_sym___leave] = ACTIONS(481), + [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(87), + [anon_sym_sizeof] = ACTIONS(89), + [anon_sym___alignof__] = ACTIONS(91), + [anon_sym___alignof] = ACTIONS(91), + [anon_sym__alignof] = ACTIONS(91), + [anon_sym_alignof] = ACTIONS(91), + [anon_sym__Alignof] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(93), + [anon_sym__Generic] = ACTIONS(95), + [anon_sym_asm] = ACTIONS(97), + [anon_sym___asm__] = ACTIONS(97), + [sym_number_literal] = ACTIONS(165), + [anon_sym_L_SQUOTE] = ACTIONS(101), + [anon_sym_u_SQUOTE] = ACTIONS(101), + [anon_sym_U_SQUOTE] = ACTIONS(101), + [anon_sym_u8_SQUOTE] = ACTIONS(101), + [anon_sym_SQUOTE] = ACTIONS(101), + [anon_sym_L_DQUOTE] = ACTIONS(103), + [anon_sym_u_DQUOTE] = ACTIONS(103), + [anon_sym_U_DQUOTE] = ACTIONS(103), + [anon_sym_u8_DQUOTE] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_true] = ACTIONS(167), + [sym_false] = ACTIONS(167), + [anon_sym_NULL] = ACTIONS(107), + [anon_sym_nullptr] = ACTIONS(107), [sym_comment] = ACTIONS(3), }, [61] = { - [sym_declaration] = STATE(61), - [sym_type_definition] = STATE(61), - [sym__declaration_modifiers] = STATE(697), - [sym__declaration_specifiers] = STATE(1156), - [sym_attribute_specifier] = STATE(697), - [sym_attribute_declaration] = STATE(405), - [sym_ms_declspec_modifier] = STATE(697), - [sym_compound_statement] = STATE(61), - [sym_storage_class_specifier] = STATE(697), - [sym_type_qualifier] = STATE(697), - [sym_alignas_qualifier] = STATE(703), - [sym_type_specifier] = STATE(710), - [sym_sized_type_specifier] = STATE(746), - [sym_enum_specifier] = STATE(746), - [sym_struct_specifier] = STATE(746), - [sym_union_specifier] = STATE(746), - [sym_attributed_statement] = STATE(61), - [sym_labeled_statement] = STATE(61), - [sym_expression_statement] = STATE(61), - [sym_if_statement] = STATE(61), - [sym_switch_statement] = STATE(61), - [sym_while_statement] = STATE(61), - [sym_do_statement] = STATE(61), - [sym_for_statement] = STATE(61), - [sym_return_statement] = STATE(61), - [sym_break_statement] = STATE(61), - [sym_continue_statement] = STATE(61), - [sym_goto_statement] = STATE(61), - [sym_seh_try_statement] = STATE(61), - [sym_seh_leave_statement] = STATE(61), - [sym_expression] = STATE(1033), - [sym__string] = STATE(663), - [sym_comma_expression] = STATE(1818), - [sym_conditional_expression] = STATE(663), - [sym_assignment_expression] = STATE(663), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(663), - [sym_binary_expression] = STATE(663), - [sym_update_expression] = STATE(663), - [sym_cast_expression] = STATE(663), - [sym_sizeof_expression] = STATE(663), - [sym_alignof_expression] = STATE(663), - [sym_offsetof_expression] = STATE(663), - [sym_generic_expression] = STATE(663), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(663), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(663), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(663), - [sym_concatenated_string] = STATE(663), - [sym_string_literal] = STATE(659), - [sym_null] = STATE(663), - [sym_macro_type_specifier] = STATE(746), - [aux_sym__declaration_specifiers_repeat1] = STATE(697), - [aux_sym_attributed_declarator_repeat1] = STATE(375), - [aux_sym_sized_type_specifier_repeat1] = STATE(747), - [aux_sym_case_statement_repeat1] = STATE(61), - [sym_identifier] = ACTIONS(1010), - [aux_sym_preproc_include_token1] = ACTIONS(805), - [aux_sym_preproc_def_token1] = ACTIONS(805), - [aux_sym_preproc_if_token1] = ACTIONS(805), - [aux_sym_preproc_ifdef_token1] = ACTIONS(805), - [aux_sym_preproc_ifdef_token2] = ACTIONS(805), - [sym_preproc_directive] = ACTIONS(805), - [anon_sym_LPAREN2] = ACTIONS(807), - [anon_sym_BANG] = ACTIONS(810), - [anon_sym_TILDE] = ACTIONS(810), - [anon_sym_DASH] = ACTIONS(813), - [anon_sym_PLUS] = ACTIONS(813), - [anon_sym_STAR] = ACTIONS(816), - [anon_sym_AMP] = ACTIONS(816), - [anon_sym_SEMI] = ACTIONS(1013), - [anon_sym___extension__] = ACTIONS(1016), - [anon_sym_typedef] = ACTIONS(1019), - [anon_sym_extern] = ACTIONS(828), - [anon_sym___attribute__] = ACTIONS(831), - [anon_sym___scanf] = ACTIONS(834), - [anon_sym___printf] = ACTIONS(834), - [anon_sym___read_mostly] = ACTIONS(837), - [anon_sym___must_hold] = ACTIONS(831), - [anon_sym___ro_after_init] = ACTIONS(837), - [anon_sym___init] = ACTIONS(837), - [anon_sym_LBRACK_LBRACK] = ACTIONS(840), - [anon_sym___declspec] = ACTIONS(843), - [anon_sym___cdecl] = ACTIONS(805), - [anon_sym___clrcall] = ACTIONS(805), - [anon_sym___stdcall] = ACTIONS(805), - [anon_sym___fastcall] = ACTIONS(805), - [anon_sym___thiscall] = ACTIONS(805), - [anon_sym___vectorcall] = ACTIONS(805), - [anon_sym_LBRACE] = ACTIONS(1022), - [anon_sym_RBRACE] = ACTIONS(1025), - [anon_sym_signed] = ACTIONS(849), - [anon_sym_unsigned] = ACTIONS(849), - [anon_sym_long] = ACTIONS(849), - [anon_sym_short] = ACTIONS(849), - [anon_sym_static] = ACTIONS(828), - [anon_sym_auto] = ACTIONS(828), - [anon_sym_register] = ACTIONS(828), - [anon_sym_inline] = ACTIONS(828), - [anon_sym___inline] = ACTIONS(828), - [anon_sym___inline__] = ACTIONS(828), - [anon_sym___forceinline] = ACTIONS(828), - [anon_sym_thread_local] = ACTIONS(828), - [anon_sym___thread] = ACTIONS(828), - [anon_sym_const] = ACTIONS(852), - [anon_sym_constexpr] = ACTIONS(852), - [anon_sym_volatile] = ACTIONS(852), - [anon_sym_restrict] = ACTIONS(852), - [anon_sym___restrict__] = ACTIONS(852), - [anon_sym__Atomic] = ACTIONS(852), - [anon_sym__Noreturn] = ACTIONS(852), - [anon_sym_noreturn] = ACTIONS(852), - [anon_sym_alignas] = ACTIONS(855), - [anon_sym__Alignas] = ACTIONS(855), - [sym_primitive_type] = ACTIONS(858), - [anon_sym_enum] = ACTIONS(861), - [anon_sym_struct] = ACTIONS(864), - [anon_sym_union] = ACTIONS(867), - [anon_sym_if] = ACTIONS(1027), - [anon_sym_else] = ACTIONS(805), - [anon_sym_switch] = ACTIONS(1030), - [anon_sym_case] = ACTIONS(805), - [anon_sym_default] = ACTIONS(805), - [anon_sym_while] = ACTIONS(1033), - [anon_sym_do] = ACTIONS(1036), - [anon_sym_for] = ACTIONS(1039), - [anon_sym_return] = ACTIONS(1042), - [anon_sym_break] = ACTIONS(1045), - [anon_sym_continue] = ACTIONS(1048), - [anon_sym_goto] = ACTIONS(1051), - [anon_sym___try] = ACTIONS(1054), - [anon_sym___leave] = ACTIONS(1057), - [anon_sym_DASH_DASH] = ACTIONS(903), - [anon_sym_PLUS_PLUS] = ACTIONS(903), - [anon_sym_sizeof] = ACTIONS(906), - [anon_sym___alignof__] = ACTIONS(909), - [anon_sym___alignof] = ACTIONS(909), - [anon_sym__alignof] = ACTIONS(909), - [anon_sym_alignof] = ACTIONS(909), - [anon_sym__Alignof] = ACTIONS(909), - [anon_sym_offsetof] = ACTIONS(912), - [anon_sym__Generic] = ACTIONS(915), - [anon_sym_asm] = ACTIONS(918), - [anon_sym___asm__] = ACTIONS(918), - [sym_number_literal] = ACTIONS(921), - [anon_sym_L_SQUOTE] = ACTIONS(924), - [anon_sym_u_SQUOTE] = ACTIONS(924), - [anon_sym_U_SQUOTE] = ACTIONS(924), - [anon_sym_u8_SQUOTE] = ACTIONS(924), - [anon_sym_SQUOTE] = ACTIONS(924), - [anon_sym_L_DQUOTE] = ACTIONS(927), - [anon_sym_u_DQUOTE] = ACTIONS(927), - [anon_sym_U_DQUOTE] = ACTIONS(927), - [anon_sym_u8_DQUOTE] = ACTIONS(927), - [anon_sym_DQUOTE] = ACTIONS(927), - [sym_true] = ACTIONS(930), - [sym_false] = ACTIONS(930), - [anon_sym_NULL] = ACTIONS(933), - [anon_sym_nullptr] = ACTIONS(933), + [sym_declaration] = STATE(59), + [sym_type_definition] = STATE(59), + [sym__declaration_modifiers] = STATE(805), + [sym__declaration_specifiers] = STATE(1241), + [sym_attribute_specifier] = STATE(805), + [sym_attribute_declaration] = STATE(468), + [sym_ms_declspec_modifier] = STATE(805), + [sym_compound_statement] = STATE(59), + [sym_storage_class_specifier] = STATE(805), + [sym_type_qualifier] = STATE(805), + [sym_alignas_qualifier] = STATE(799), + [sym_type_specifier] = STATE(807), + [sym_sized_type_specifier] = STATE(873), + [sym_enum_specifier] = STATE(873), + [sym_struct_specifier] = STATE(873), + [sym_union_specifier] = STATE(873), + [sym_attributed_statement] = STATE(59), + [sym_labeled_statement] = STATE(59), + [sym_expression_statement] = STATE(59), + [sym_if_statement] = STATE(59), + [sym_switch_statement] = STATE(59), + [sym_while_statement] = STATE(59), + [sym_do_statement] = STATE(59), + [sym_for_statement] = STATE(59), + [sym_return_statement] = STATE(59), + [sym_break_statement] = STATE(59), + [sym_continue_statement] = STATE(59), + [sym_goto_statement] = STATE(59), + [sym_seh_try_statement] = STATE(59), + [sym_seh_leave_statement] = STATE(59), + [sym_expression] = STATE(1193), + [sym__string] = STATE(758), + [sym_comma_expression] = STATE(2067), + [sym_conditional_expression] = STATE(758), + [sym_assignment_expression] = STATE(758), + [sym_pointer_expression] = STATE(944), + [sym_unary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_cast_expression] = STATE(758), + [sym_sizeof_expression] = STATE(758), + [sym_alignof_expression] = STATE(758), + [sym_offsetof_expression] = STATE(758), + [sym_generic_expression] = STATE(758), + [sym_subscript_expression] = STATE(944), + [sym_call_expression] = STATE(944), + [sym_gnu_asm_expression] = STATE(758), + [sym_field_expression] = STATE(944), + [sym_compound_literal_expression] = STATE(758), + [sym_parenthesized_expression] = STATE(944), + [sym_char_literal] = STATE(758), + [sym_concatenated_string] = STATE(758), + [sym_string_literal] = STATE(671), + [sym_null] = STATE(758), + [sym_macro_type_specifier] = STATE(873), + [aux_sym__declaration_specifiers_repeat1] = STATE(805), + [aux_sym_attributed_declarator_repeat1] = STATE(415), + [aux_sym_sized_type_specifier_repeat1] = STATE(890), + [aux_sym_case_statement_repeat1] = STATE(59), + [sym_identifier] = ACTIONS(950), + [aux_sym_preproc_include_token1] = ACTIONS(810), + [aux_sym_preproc_def_token1] = ACTIONS(810), + [aux_sym_preproc_if_token1] = ACTIONS(810), + [aux_sym_preproc_if_token2] = ACTIONS(810), + [aux_sym_preproc_ifdef_token1] = ACTIONS(810), + [aux_sym_preproc_ifdef_token2] = ACTIONS(810), + [sym_preproc_directive] = ACTIONS(810), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(447), + [anon_sym___extension__] = ACTIONS(449), + [anon_sym_typedef] = ACTIONS(451), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(33), + [anon_sym___scanf] = ACTIONS(35), + [anon_sym___printf] = ACTIONS(35), + [anon_sym___read_mostly] = ACTIONS(37), + [anon_sym___must_hold] = ACTIONS(33), + [anon_sym___ro_after_init] = ACTIONS(37), + [anon_sym___noreturn] = ACTIONS(37), + [anon_sym___cold] = ACTIONS(37), + [anon_sym_LBRACK_LBRACK] = ACTIONS(39), + [anon_sym___declspec] = ACTIONS(41), + [anon_sym___init] = ACTIONS(810), + [anon_sym___exit] = ACTIONS(810), + [anon_sym___cdecl] = ACTIONS(810), + [anon_sym___clrcall] = ACTIONS(810), + [anon_sym___stdcall] = ACTIONS(810), + [anon_sym___fastcall] = ACTIONS(810), + [anon_sym___thiscall] = ACTIONS(810), + [anon_sym___vectorcall] = ACTIONS(810), + [anon_sym_LBRACE] = ACTIONS(455), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_const] = ACTIONS(53), + [anon_sym_constexpr] = ACTIONS(53), + [anon_sym_volatile] = ACTIONS(53), + [anon_sym_restrict] = ACTIONS(53), + [anon_sym___restrict__] = ACTIONS(53), + [anon_sym__Atomic] = ACTIONS(53), + [anon_sym__Noreturn] = ACTIONS(53), + [anon_sym_noreturn] = ACTIONS(53), + [anon_sym_alignas] = ACTIONS(55), + [anon_sym__Alignas] = ACTIONS(55), + [sym_primitive_type] = ACTIONS(57), + [anon_sym_enum] = ACTIONS(59), + [anon_sym_struct] = ACTIONS(61), + [anon_sym_union] = ACTIONS(63), + [anon_sym_if] = ACTIONS(457), + [anon_sym_else] = ACTIONS(810), + [anon_sym_switch] = ACTIONS(459), + [anon_sym_case] = ACTIONS(810), + [anon_sym_default] = ACTIONS(810), + [anon_sym_while] = ACTIONS(465), + [anon_sym_do] = ACTIONS(467), + [anon_sym_for] = ACTIONS(469), + [anon_sym_return] = ACTIONS(471), + [anon_sym_break] = ACTIONS(473), + [anon_sym_continue] = ACTIONS(475), + [anon_sym_goto] = ACTIONS(477), + [anon_sym___try] = ACTIONS(479), + [anon_sym___leave] = ACTIONS(481), + [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(87), + [anon_sym_sizeof] = ACTIONS(89), + [anon_sym___alignof__] = ACTIONS(91), + [anon_sym___alignof] = ACTIONS(91), + [anon_sym__alignof] = ACTIONS(91), + [anon_sym_alignof] = ACTIONS(91), + [anon_sym__Alignof] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(93), + [anon_sym__Generic] = ACTIONS(95), + [anon_sym_asm] = ACTIONS(97), + [anon_sym___asm__] = ACTIONS(97), + [sym_number_literal] = ACTIONS(165), + [anon_sym_L_SQUOTE] = ACTIONS(101), + [anon_sym_u_SQUOTE] = ACTIONS(101), + [anon_sym_U_SQUOTE] = ACTIONS(101), + [anon_sym_u8_SQUOTE] = ACTIONS(101), + [anon_sym_SQUOTE] = ACTIONS(101), + [anon_sym_L_DQUOTE] = ACTIONS(103), + [anon_sym_u_DQUOTE] = ACTIONS(103), + [anon_sym_U_DQUOTE] = ACTIONS(103), + [anon_sym_u8_DQUOTE] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_true] = ACTIONS(167), + [sym_false] = ACTIONS(167), + [anon_sym_NULL] = ACTIONS(107), + [anon_sym_nullptr] = ACTIONS(107), [sym_comment] = ACTIONS(3), }, [62] = { - [sym_declaration] = STATE(62), - [sym_type_definition] = STATE(62), - [sym__declaration_modifiers] = STATE(697), - [sym__declaration_specifiers] = STATE(1127), - [sym_attribute_specifier] = STATE(697), - [sym_attribute_declaration] = STATE(405), - [sym_ms_declspec_modifier] = STATE(697), - [sym_compound_statement] = STATE(62), - [sym_storage_class_specifier] = STATE(697), - [sym_type_qualifier] = STATE(697), - [sym_alignas_qualifier] = STATE(703), - [sym_type_specifier] = STATE(710), - [sym_sized_type_specifier] = STATE(746), - [sym_enum_specifier] = STATE(746), - [sym_struct_specifier] = STATE(746), - [sym_union_specifier] = STATE(746), - [sym_attributed_statement] = STATE(62), - [sym_labeled_statement] = STATE(62), - [sym_expression_statement] = STATE(62), - [sym_if_statement] = STATE(62), - [sym_switch_statement] = STATE(62), - [sym_while_statement] = STATE(62), - [sym_do_statement] = STATE(62), - [sym_for_statement] = STATE(62), - [sym_return_statement] = STATE(62), - [sym_break_statement] = STATE(62), - [sym_continue_statement] = STATE(62), - [sym_goto_statement] = STATE(62), - [sym_seh_try_statement] = STATE(62), - [sym_seh_leave_statement] = STATE(62), - [sym_expression] = STATE(1060), - [sym__string] = STATE(663), - [sym_comma_expression] = STATE(1853), - [sym_conditional_expression] = STATE(663), - [sym_assignment_expression] = STATE(663), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(663), - [sym_binary_expression] = STATE(663), - [sym_update_expression] = STATE(663), - [sym_cast_expression] = STATE(663), - [sym_sizeof_expression] = STATE(663), - [sym_alignof_expression] = STATE(663), - [sym_offsetof_expression] = STATE(663), - [sym_generic_expression] = STATE(663), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(663), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(663), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(663), - [sym_concatenated_string] = STATE(663), - [sym_string_literal] = STATE(659), - [sym_null] = STATE(663), - [sym_macro_type_specifier] = STATE(746), - [aux_sym__declaration_specifiers_repeat1] = STATE(697), - [aux_sym_attributed_declarator_repeat1] = STATE(348), - [aux_sym_sized_type_specifier_repeat1] = STATE(747), - [aux_sym_case_statement_repeat1] = STATE(62), - [ts_builtin_sym_end] = ACTIONS(1025), - [sym_identifier] = ACTIONS(1060), - [aux_sym_preproc_include_token1] = ACTIONS(805), - [aux_sym_preproc_def_token1] = ACTIONS(805), - [aux_sym_preproc_if_token1] = ACTIONS(805), - [aux_sym_preproc_ifdef_token1] = ACTIONS(805), - [aux_sym_preproc_ifdef_token2] = ACTIONS(805), - [sym_preproc_directive] = ACTIONS(805), - [anon_sym_LPAREN2] = ACTIONS(807), - [anon_sym_BANG] = ACTIONS(810), - [anon_sym_TILDE] = ACTIONS(810), - [anon_sym_DASH] = ACTIONS(813), - [anon_sym_PLUS] = ACTIONS(813), - [anon_sym_STAR] = ACTIONS(816), - [anon_sym_AMP] = ACTIONS(816), - [anon_sym_SEMI] = ACTIONS(1063), - [anon_sym___extension__] = ACTIONS(1066), - [anon_sym_typedef] = ACTIONS(1069), - [anon_sym_extern] = ACTIONS(828), - [anon_sym___attribute__] = ACTIONS(831), - [anon_sym___scanf] = ACTIONS(834), - [anon_sym___printf] = ACTIONS(834), - [anon_sym___read_mostly] = ACTIONS(837), - [anon_sym___must_hold] = ACTIONS(831), - [anon_sym___ro_after_init] = ACTIONS(837), - [anon_sym___init] = ACTIONS(837), - [anon_sym_LBRACK_LBRACK] = ACTIONS(840), - [anon_sym___declspec] = ACTIONS(843), - [anon_sym___cdecl] = ACTIONS(805), - [anon_sym___clrcall] = ACTIONS(805), - [anon_sym___stdcall] = ACTIONS(805), - [anon_sym___fastcall] = ACTIONS(805), - [anon_sym___thiscall] = ACTIONS(805), - [anon_sym___vectorcall] = ACTIONS(805), - [anon_sym_LBRACE] = ACTIONS(1072), - [anon_sym_signed] = ACTIONS(849), - [anon_sym_unsigned] = ACTIONS(849), - [anon_sym_long] = ACTIONS(849), - [anon_sym_short] = ACTIONS(849), - [anon_sym_static] = ACTIONS(828), - [anon_sym_auto] = ACTIONS(828), - [anon_sym_register] = ACTIONS(828), - [anon_sym_inline] = ACTIONS(828), - [anon_sym___inline] = ACTIONS(828), - [anon_sym___inline__] = ACTIONS(828), - [anon_sym___forceinline] = ACTIONS(828), - [anon_sym_thread_local] = ACTIONS(828), - [anon_sym___thread] = ACTIONS(828), - [anon_sym_const] = ACTIONS(852), - [anon_sym_constexpr] = ACTIONS(852), - [anon_sym_volatile] = ACTIONS(852), - [anon_sym_restrict] = ACTIONS(852), - [anon_sym___restrict__] = ACTIONS(852), - [anon_sym__Atomic] = ACTIONS(852), - [anon_sym__Noreturn] = ACTIONS(852), - [anon_sym_noreturn] = ACTIONS(852), - [anon_sym_alignas] = ACTIONS(855), - [anon_sym__Alignas] = ACTIONS(855), - [sym_primitive_type] = ACTIONS(858), - [anon_sym_enum] = ACTIONS(861), - [anon_sym_struct] = ACTIONS(864), - [anon_sym_union] = ACTIONS(867), - [anon_sym_if] = ACTIONS(1075), - [anon_sym_else] = ACTIONS(805), - [anon_sym_switch] = ACTIONS(1078), - [anon_sym_case] = ACTIONS(805), - [anon_sym_default] = ACTIONS(805), - [anon_sym_while] = ACTIONS(1081), - [anon_sym_do] = ACTIONS(1084), - [anon_sym_for] = ACTIONS(1087), - [anon_sym_return] = ACTIONS(1090), - [anon_sym_break] = ACTIONS(1093), - [anon_sym_continue] = ACTIONS(1096), - [anon_sym_goto] = ACTIONS(1099), - [anon_sym___try] = ACTIONS(1102), - [anon_sym___leave] = ACTIONS(1105), - [anon_sym_DASH_DASH] = ACTIONS(903), - [anon_sym_PLUS_PLUS] = ACTIONS(903), - [anon_sym_sizeof] = ACTIONS(906), - [anon_sym___alignof__] = ACTIONS(909), - [anon_sym___alignof] = ACTIONS(909), - [anon_sym__alignof] = ACTIONS(909), - [anon_sym_alignof] = ACTIONS(909), - [anon_sym__Alignof] = ACTIONS(909), - [anon_sym_offsetof] = ACTIONS(912), - [anon_sym__Generic] = ACTIONS(915), - [anon_sym_asm] = ACTIONS(918), - [anon_sym___asm__] = ACTIONS(918), - [sym_number_literal] = ACTIONS(921), - [anon_sym_L_SQUOTE] = ACTIONS(924), - [anon_sym_u_SQUOTE] = ACTIONS(924), - [anon_sym_U_SQUOTE] = ACTIONS(924), - [anon_sym_u8_SQUOTE] = ACTIONS(924), - [anon_sym_SQUOTE] = ACTIONS(924), - [anon_sym_L_DQUOTE] = ACTIONS(927), - [anon_sym_u_DQUOTE] = ACTIONS(927), - [anon_sym_U_DQUOTE] = ACTIONS(927), - [anon_sym_u8_DQUOTE] = ACTIONS(927), - [anon_sym_DQUOTE] = ACTIONS(927), - [sym_true] = ACTIONS(930), - [sym_false] = ACTIONS(930), - [anon_sym_NULL] = ACTIONS(933), - [anon_sym_nullptr] = ACTIONS(933), - [sym_comment] = ACTIONS(3), - }, - [63] = { - [sym_declaration] = STATE(61), - [sym_type_definition] = STATE(61), - [sym__declaration_modifiers] = STATE(697), - [sym__declaration_specifiers] = STATE(1156), - [sym_attribute_specifier] = STATE(697), - [sym_attribute_declaration] = STATE(405), - [sym_ms_declspec_modifier] = STATE(697), - [sym_compound_statement] = STATE(61), - [sym_storage_class_specifier] = STATE(697), - [sym_type_qualifier] = STATE(697), - [sym_alignas_qualifier] = STATE(703), - [sym_type_specifier] = STATE(710), - [sym_sized_type_specifier] = STATE(746), - [sym_enum_specifier] = STATE(746), - [sym_struct_specifier] = STATE(746), - [sym_union_specifier] = STATE(746), - [sym_attributed_statement] = STATE(61), - [sym_labeled_statement] = STATE(61), - [sym_expression_statement] = STATE(61), - [sym_if_statement] = STATE(61), - [sym_switch_statement] = STATE(61), - [sym_while_statement] = STATE(61), - [sym_do_statement] = STATE(61), - [sym_for_statement] = STATE(61), - [sym_return_statement] = STATE(61), - [sym_break_statement] = STATE(61), - [sym_continue_statement] = STATE(61), - [sym_goto_statement] = STATE(61), - [sym_seh_try_statement] = STATE(61), - [sym_seh_leave_statement] = STATE(61), - [sym_expression] = STATE(1033), - [sym__string] = STATE(663), - [sym_comma_expression] = STATE(1818), - [sym_conditional_expression] = STATE(663), - [sym_assignment_expression] = STATE(663), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(663), - [sym_binary_expression] = STATE(663), - [sym_update_expression] = STATE(663), - [sym_cast_expression] = STATE(663), - [sym_sizeof_expression] = STATE(663), - [sym_alignof_expression] = STATE(663), - [sym_offsetof_expression] = STATE(663), - [sym_generic_expression] = STATE(663), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(663), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(663), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(663), - [sym_concatenated_string] = STATE(663), - [sym_string_literal] = STATE(659), - [sym_null] = STATE(663), - [sym_macro_type_specifier] = STATE(746), - [aux_sym__declaration_specifiers_repeat1] = STATE(697), - [aux_sym_attributed_declarator_repeat1] = STATE(375), - [aux_sym_sized_type_specifier_repeat1] = STATE(747), - [aux_sym_case_statement_repeat1] = STATE(61), - [sym_identifier] = ACTIONS(1002), - [aux_sym_preproc_include_token1] = ACTIONS(800), - [aux_sym_preproc_def_token1] = ACTIONS(800), - [aux_sym_preproc_if_token1] = ACTIONS(800), - [aux_sym_preproc_ifdef_token1] = ACTIONS(800), - [aux_sym_preproc_ifdef_token2] = ACTIONS(800), - [sym_preproc_directive] = ACTIONS(800), + [sym_declaration] = STATE(55), + [sym_type_definition] = STATE(55), + [sym__declaration_modifiers] = STATE(805), + [sym__declaration_specifiers] = STATE(1244), + [sym_attribute_specifier] = STATE(805), + [sym_attribute_declaration] = STATE(468), + [sym_ms_declspec_modifier] = STATE(805), + [sym_compound_statement] = STATE(55), + [sym_storage_class_specifier] = STATE(805), + [sym_type_qualifier] = STATE(805), + [sym_alignas_qualifier] = STATE(799), + [sym_type_specifier] = STATE(807), + [sym_sized_type_specifier] = STATE(873), + [sym_enum_specifier] = STATE(873), + [sym_struct_specifier] = STATE(873), + [sym_union_specifier] = STATE(873), + [sym_attributed_statement] = STATE(55), + [sym_labeled_statement] = STATE(55), + [sym_expression_statement] = STATE(55), + [sym_if_statement] = STATE(55), + [sym_switch_statement] = STATE(55), + [sym_while_statement] = STATE(55), + [sym_do_statement] = STATE(55), + [sym_for_statement] = STATE(55), + [sym_return_statement] = STATE(55), + [sym_break_statement] = STATE(55), + [sym_continue_statement] = STATE(55), + [sym_goto_statement] = STATE(55), + [sym_seh_try_statement] = STATE(55), + [sym_seh_leave_statement] = STATE(55), + [sym_expression] = STATE(1179), + [sym__string] = STATE(758), + [sym_comma_expression] = STATE(2159), + [sym_conditional_expression] = STATE(758), + [sym_assignment_expression] = STATE(758), + [sym_pointer_expression] = STATE(944), + [sym_unary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_cast_expression] = STATE(758), + [sym_sizeof_expression] = STATE(758), + [sym_alignof_expression] = STATE(758), + [sym_offsetof_expression] = STATE(758), + [sym_generic_expression] = STATE(758), + [sym_subscript_expression] = STATE(944), + [sym_call_expression] = STATE(944), + [sym_gnu_asm_expression] = STATE(758), + [sym_field_expression] = STATE(944), + [sym_compound_literal_expression] = STATE(758), + [sym_parenthesized_expression] = STATE(944), + [sym_char_literal] = STATE(758), + [sym_concatenated_string] = STATE(758), + [sym_string_literal] = STATE(671), + [sym_null] = STATE(758), + [sym_macro_type_specifier] = STATE(873), + [aux_sym__declaration_specifiers_repeat1] = STATE(805), + [aux_sym_attributed_declarator_repeat1] = STATE(421), + [aux_sym_sized_type_specifier_repeat1] = STATE(890), + [aux_sym_case_statement_repeat1] = STATE(55), + [ts_builtin_sym_end] = ACTIONS(1114), + [sym_identifier] = ACTIONS(1004), + [aux_sym_preproc_include_token1] = ACTIONS(814), + [aux_sym_preproc_def_token1] = ACTIONS(814), + [aux_sym_preproc_if_token1] = ACTIONS(814), + [aux_sym_preproc_ifdef_token1] = ACTIONS(814), + [aux_sym_preproc_ifdef_token2] = ACTIONS(814), + [sym_preproc_directive] = ACTIONS(814), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -22889,165 +23589,166 @@ 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(378), - [anon_sym___extension__] = ACTIONS(380), - [anon_sym_typedef] = ACTIONS(382), - [anon_sym_extern] = ACTIONS(49), + [anon_sym_SEMI] = ACTIONS(1006), + [anon_sym___extension__] = ACTIONS(27), + [anon_sym_typedef] = ACTIONS(29), + [anon_sym_extern] = ACTIONS(51), [anon_sym___attribute__] = ACTIONS(33), [anon_sym___scanf] = ACTIONS(35), [anon_sym___printf] = ACTIONS(35), [anon_sym___read_mostly] = ACTIONS(37), [anon_sym___must_hold] = ACTIONS(33), [anon_sym___ro_after_init] = ACTIONS(37), - [anon_sym___init] = ACTIONS(37), + [anon_sym___noreturn] = ACTIONS(37), + [anon_sym___cold] = ACTIONS(37), [anon_sym_LBRACK_LBRACK] = ACTIONS(39), [anon_sym___declspec] = ACTIONS(41), - [anon_sym___cdecl] = ACTIONS(800), - [anon_sym___clrcall] = ACTIONS(800), - [anon_sym___stdcall] = ACTIONS(800), - [anon_sym___fastcall] = ACTIONS(800), - [anon_sym___thiscall] = ACTIONS(800), - [anon_sym___vectorcall] = ACTIONS(800), - [anon_sym_LBRACE] = ACTIONS(386), - [anon_sym_RBRACE] = ACTIONS(1006), - [anon_sym_signed] = ACTIONS(47), - [anon_sym_unsigned] = ACTIONS(47), - [anon_sym_long] = ACTIONS(47), - [anon_sym_short] = ACTIONS(47), - [anon_sym_static] = ACTIONS(49), - [anon_sym_auto] = ACTIONS(49), - [anon_sym_register] = ACTIONS(49), - [anon_sym_inline] = ACTIONS(49), - [anon_sym___inline] = ACTIONS(49), - [anon_sym___inline__] = ACTIONS(49), - [anon_sym___forceinline] = ACTIONS(49), - [anon_sym_thread_local] = ACTIONS(49), - [anon_sym___thread] = ACTIONS(49), - [anon_sym_const] = ACTIONS(51), - [anon_sym_constexpr] = ACTIONS(51), - [anon_sym_volatile] = ACTIONS(51), - [anon_sym_restrict] = ACTIONS(51), - [anon_sym___restrict__] = ACTIONS(51), - [anon_sym__Atomic] = ACTIONS(51), - [anon_sym__Noreturn] = ACTIONS(51), - [anon_sym_noreturn] = ACTIONS(51), - [anon_sym_alignas] = ACTIONS(53), - [anon_sym__Alignas] = ACTIONS(53), - [sym_primitive_type] = ACTIONS(55), - [anon_sym_enum] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [anon_sym_if] = ACTIONS(390), - [anon_sym_else] = ACTIONS(800), - [anon_sym_switch] = ACTIONS(392), - [anon_sym_case] = ACTIONS(800), - [anon_sym_default] = ACTIONS(800), - [anon_sym_while] = ACTIONS(398), - [anon_sym_do] = ACTIONS(400), - [anon_sym_for] = ACTIONS(402), - [anon_sym_return] = ACTIONS(404), - [anon_sym_break] = ACTIONS(406), - [anon_sym_continue] = ACTIONS(408), - [anon_sym_goto] = ACTIONS(410), - [anon_sym___try] = ACTIONS(412), - [anon_sym___leave] = ACTIONS(414), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [anon_sym___alignof__] = ACTIONS(89), - [anon_sym___alignof] = ACTIONS(89), - [anon_sym__alignof] = ACTIONS(89), - [anon_sym_alignof] = ACTIONS(89), - [anon_sym__Alignof] = ACTIONS(89), - [anon_sym_offsetof] = ACTIONS(91), - [anon_sym__Generic] = ACTIONS(93), - [anon_sym_asm] = ACTIONS(95), - [anon_sym___asm__] = ACTIONS(95), - [sym_number_literal] = ACTIONS(163), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(165), - [sym_false] = ACTIONS(165), - [anon_sym_NULL] = ACTIONS(105), - [anon_sym_nullptr] = ACTIONS(105), + [anon_sym___init] = ACTIONS(814), + [anon_sym___exit] = ACTIONS(814), + [anon_sym___cdecl] = ACTIONS(814), + [anon_sym___clrcall] = ACTIONS(814), + [anon_sym___stdcall] = ACTIONS(814), + [anon_sym___fastcall] = ACTIONS(814), + [anon_sym___thiscall] = ACTIONS(814), + [anon_sym___vectorcall] = ACTIONS(814), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_const] = ACTIONS(53), + [anon_sym_constexpr] = ACTIONS(53), + [anon_sym_volatile] = ACTIONS(53), + [anon_sym_restrict] = ACTIONS(53), + [anon_sym___restrict__] = ACTIONS(53), + [anon_sym__Atomic] = ACTIONS(53), + [anon_sym__Noreturn] = ACTIONS(53), + [anon_sym_noreturn] = ACTIONS(53), + [anon_sym_alignas] = ACTIONS(55), + [anon_sym__Alignas] = ACTIONS(55), + [sym_primitive_type] = ACTIONS(57), + [anon_sym_enum] = ACTIONS(59), + [anon_sym_struct] = ACTIONS(61), + [anon_sym_union] = ACTIONS(63), + [anon_sym_if] = ACTIONS(65), + [anon_sym_else] = ACTIONS(814), + [anon_sym_switch] = ACTIONS(67), + [anon_sym_case] = ACTIONS(814), + [anon_sym_default] = ACTIONS(814), + [anon_sym_while] = ACTIONS(73), + [anon_sym_do] = ACTIONS(75), + [anon_sym_for] = ACTIONS(77), + [anon_sym_return] = ACTIONS(79), + [anon_sym_break] = ACTIONS(81), + [anon_sym_continue] = ACTIONS(83), + [anon_sym_goto] = ACTIONS(85), + [anon_sym___try] = ACTIONS(1008), + [anon_sym___leave] = ACTIONS(1010), + [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(87), + [anon_sym_sizeof] = ACTIONS(89), + [anon_sym___alignof__] = ACTIONS(91), + [anon_sym___alignof] = ACTIONS(91), + [anon_sym__alignof] = ACTIONS(91), + [anon_sym_alignof] = ACTIONS(91), + [anon_sym__Alignof] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(93), + [anon_sym__Generic] = ACTIONS(95), + [anon_sym_asm] = ACTIONS(97), + [anon_sym___asm__] = ACTIONS(97), + [sym_number_literal] = ACTIONS(165), + [anon_sym_L_SQUOTE] = ACTIONS(101), + [anon_sym_u_SQUOTE] = ACTIONS(101), + [anon_sym_U_SQUOTE] = ACTIONS(101), + [anon_sym_u8_SQUOTE] = ACTIONS(101), + [anon_sym_SQUOTE] = ACTIONS(101), + [anon_sym_L_DQUOTE] = ACTIONS(103), + [anon_sym_u_DQUOTE] = ACTIONS(103), + [anon_sym_U_DQUOTE] = ACTIONS(103), + [anon_sym_u8_DQUOTE] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_true] = ACTIONS(167), + [sym_false] = ACTIONS(167), + [anon_sym_NULL] = ACTIONS(107), + [anon_sym_nullptr] = ACTIONS(107), [sym_comment] = ACTIONS(3), }, - [64] = { - [sym_declaration] = STATE(52), - [sym_type_definition] = STATE(52), - [sym__declaration_modifiers] = STATE(697), - [sym__declaration_specifiers] = STATE(1127), - [sym_attribute_specifier] = STATE(697), - [sym_attribute_declaration] = STATE(405), - [sym_ms_declspec_modifier] = STATE(697), - [sym_compound_statement] = STATE(52), - [sym_storage_class_specifier] = STATE(697), - [sym_type_qualifier] = STATE(697), - [sym_alignas_qualifier] = STATE(703), - [sym_type_specifier] = STATE(710), - [sym_sized_type_specifier] = STATE(746), - [sym_enum_specifier] = STATE(746), - [sym_struct_specifier] = STATE(746), - [sym_union_specifier] = STATE(746), - [sym_attributed_statement] = STATE(52), - [sym_labeled_statement] = STATE(52), - [sym_expression_statement] = STATE(52), - [sym_if_statement] = STATE(52), - [sym_switch_statement] = STATE(52), - [sym_while_statement] = STATE(52), - [sym_do_statement] = STATE(52), - [sym_for_statement] = STATE(52), - [sym_return_statement] = STATE(52), - [sym_break_statement] = STATE(52), - [sym_continue_statement] = STATE(52), - [sym_goto_statement] = STATE(52), - [sym_seh_try_statement] = STATE(52), - [sym_seh_leave_statement] = STATE(52), - [sym_expression] = STATE(1060), - [sym__string] = STATE(663), - [sym_comma_expression] = STATE(1853), - [sym_conditional_expression] = STATE(663), - [sym_assignment_expression] = STATE(663), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(663), - [sym_binary_expression] = STATE(663), - [sym_update_expression] = STATE(663), - [sym_cast_expression] = STATE(663), - [sym_sizeof_expression] = STATE(663), - [sym_alignof_expression] = STATE(663), - [sym_offsetof_expression] = STATE(663), - [sym_generic_expression] = STATE(663), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(663), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(663), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(663), - [sym_concatenated_string] = STATE(663), - [sym_string_literal] = STATE(659), - [sym_null] = STATE(663), - [sym_macro_type_specifier] = STATE(746), - [aux_sym__declaration_specifiers_repeat1] = STATE(697), - [aux_sym_attributed_declarator_repeat1] = STATE(348), - [aux_sym_sized_type_specifier_repeat1] = STATE(747), - [aux_sym_case_statement_repeat1] = STATE(52), - [ts_builtin_sym_end] = ACTIONS(1008), - [sym_identifier] = ACTIONS(994), - [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), + [63] = { + [sym_declaration] = STATE(56), + [sym_type_definition] = STATE(56), + [sym__declaration_modifiers] = STATE(805), + [sym__declaration_specifiers] = STATE(1242), + [sym_attribute_specifier] = STATE(805), + [sym_attribute_declaration] = STATE(468), + [sym_ms_declspec_modifier] = STATE(805), + [sym_compound_statement] = STATE(56), + [sym_storage_class_specifier] = STATE(805), + [sym_type_qualifier] = STATE(805), + [sym_alignas_qualifier] = STATE(799), + [sym_type_specifier] = STATE(807), + [sym_sized_type_specifier] = STATE(873), + [sym_enum_specifier] = STATE(873), + [sym_struct_specifier] = STATE(873), + [sym_union_specifier] = STATE(873), + [sym_attributed_statement] = STATE(56), + [sym_labeled_statement] = STATE(56), + [sym_expression_statement] = STATE(56), + [sym_if_statement] = STATE(56), + [sym_switch_statement] = STATE(56), + [sym_while_statement] = STATE(56), + [sym_do_statement] = STATE(56), + [sym_for_statement] = STATE(56), + [sym_return_statement] = STATE(56), + [sym_break_statement] = STATE(56), + [sym_continue_statement] = STATE(56), + [sym_goto_statement] = STATE(56), + [sym_seh_try_statement] = STATE(56), + [sym_seh_leave_statement] = STATE(56), + [sym_expression] = STATE(1167), + [sym__string] = STATE(758), + [sym_comma_expression] = STATE(2207), + [sym_conditional_expression] = STATE(758), + [sym_assignment_expression] = STATE(758), + [sym_pointer_expression] = STATE(944), + [sym_unary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_cast_expression] = STATE(758), + [sym_sizeof_expression] = STATE(758), + [sym_alignof_expression] = STATE(758), + [sym_offsetof_expression] = STATE(758), + [sym_generic_expression] = STATE(758), + [sym_subscript_expression] = STATE(944), + [sym_call_expression] = STATE(944), + [sym_gnu_asm_expression] = STATE(758), + [sym_field_expression] = STATE(944), + [sym_compound_literal_expression] = STATE(758), + [sym_parenthesized_expression] = STATE(944), + [sym_char_literal] = STATE(758), + [sym_concatenated_string] = STATE(758), + [sym_string_literal] = STATE(671), + [sym_null] = STATE(758), + [sym_macro_type_specifier] = STATE(873), + [aux_sym__declaration_specifiers_repeat1] = STATE(805), + [aux_sym_attributed_declarator_repeat1] = STATE(428), + [aux_sym_sized_type_specifier_repeat1] = STATE(890), + [aux_sym_case_statement_repeat1] = STATE(56), + [sym_identifier] = ACTIONS(1064), + [aux_sym_preproc_include_token1] = ACTIONS(812), + [aux_sym_preproc_def_token1] = ACTIONS(812), + [aux_sym_preproc_if_token1] = ACTIONS(812), + [aux_sym_preproc_ifdef_token1] = ACTIONS(812), + [aux_sym_preproc_ifdef_token2] = ACTIONS(812), + [sym_preproc_directive] = ACTIONS(812), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -23055,157 +23756,167 @@ 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(996), - [anon_sym___extension__] = ACTIONS(27), - [anon_sym_typedef] = ACTIONS(29), - [anon_sym_extern] = ACTIONS(49), + [anon_sym_SEMI] = ACTIONS(383), + [anon_sym___extension__] = ACTIONS(385), + [anon_sym_typedef] = ACTIONS(387), + [anon_sym_extern] = ACTIONS(51), [anon_sym___attribute__] = ACTIONS(33), [anon_sym___scanf] = ACTIONS(35), [anon_sym___printf] = ACTIONS(35), [anon_sym___read_mostly] = ACTIONS(37), [anon_sym___must_hold] = ACTIONS(33), [anon_sym___ro_after_init] = ACTIONS(37), - [anon_sym___init] = ACTIONS(37), + [anon_sym___noreturn] = ACTIONS(37), + [anon_sym___cold] = ACTIONS(37), [anon_sym_LBRACK_LBRACK] = ACTIONS(39), [anon_sym___declspec] = ACTIONS(41), - [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(45), - [anon_sym_signed] = ACTIONS(47), - [anon_sym_unsigned] = ACTIONS(47), - [anon_sym_long] = ACTIONS(47), - [anon_sym_short] = ACTIONS(47), - [anon_sym_static] = ACTIONS(49), - [anon_sym_auto] = ACTIONS(49), - [anon_sym_register] = ACTIONS(49), - [anon_sym_inline] = ACTIONS(49), - [anon_sym___inline] = ACTIONS(49), - [anon_sym___inline__] = ACTIONS(49), - [anon_sym___forceinline] = ACTIONS(49), - [anon_sym_thread_local] = ACTIONS(49), - [anon_sym___thread] = ACTIONS(49), - [anon_sym_const] = ACTIONS(51), - [anon_sym_constexpr] = ACTIONS(51), - [anon_sym_volatile] = ACTIONS(51), - [anon_sym_restrict] = ACTIONS(51), - [anon_sym___restrict__] = ACTIONS(51), - [anon_sym__Atomic] = ACTIONS(51), - [anon_sym__Noreturn] = ACTIONS(51), - [anon_sym_noreturn] = ACTIONS(51), - [anon_sym_alignas] = ACTIONS(53), - [anon_sym__Alignas] = ACTIONS(53), - [sym_primitive_type] = ACTIONS(55), - [anon_sym_enum] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [anon_sym_if] = ACTIONS(63), - [anon_sym_else] = ACTIONS(940), - [anon_sym_switch] = ACTIONS(65), - [anon_sym_case] = ACTIONS(940), - [anon_sym_default] = ACTIONS(940), - [anon_sym_while] = ACTIONS(71), - [anon_sym_do] = ACTIONS(73), - [anon_sym_for] = ACTIONS(75), - [anon_sym_return] = ACTIONS(77), - [anon_sym_break] = ACTIONS(79), - [anon_sym_continue] = ACTIONS(81), - [anon_sym_goto] = ACTIONS(83), - [anon_sym___try] = ACTIONS(998), - [anon_sym___leave] = ACTIONS(1000), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [anon_sym___alignof__] = ACTIONS(89), - [anon_sym___alignof] = ACTIONS(89), - [anon_sym__alignof] = ACTIONS(89), - [anon_sym_alignof] = ACTIONS(89), - [anon_sym__Alignof] = ACTIONS(89), - [anon_sym_offsetof] = ACTIONS(91), - [anon_sym__Generic] = ACTIONS(93), - [anon_sym_asm] = ACTIONS(95), - [anon_sym___asm__] = ACTIONS(95), - [sym_number_literal] = ACTIONS(163), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(165), - [sym_false] = ACTIONS(165), - [anon_sym_NULL] = ACTIONS(105), - [anon_sym_nullptr] = ACTIONS(105), + [anon_sym___init] = ACTIONS(812), + [anon_sym___exit] = ACTIONS(812), + [anon_sym___cdecl] = ACTIONS(812), + [anon_sym___clrcall] = ACTIONS(812), + [anon_sym___stdcall] = ACTIONS(812), + [anon_sym___fastcall] = ACTIONS(812), + [anon_sym___thiscall] = ACTIONS(812), + [anon_sym___vectorcall] = ACTIONS(812), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_RBRACE] = ACTIONS(1014), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_const] = ACTIONS(53), + [anon_sym_constexpr] = ACTIONS(53), + [anon_sym_volatile] = ACTIONS(53), + [anon_sym_restrict] = ACTIONS(53), + [anon_sym___restrict__] = ACTIONS(53), + [anon_sym__Atomic] = ACTIONS(53), + [anon_sym__Noreturn] = ACTIONS(53), + [anon_sym_noreturn] = ACTIONS(53), + [anon_sym_alignas] = ACTIONS(55), + [anon_sym__Alignas] = ACTIONS(55), + [sym_primitive_type] = ACTIONS(57), + [anon_sym_enum] = ACTIONS(59), + [anon_sym_struct] = ACTIONS(61), + [anon_sym_union] = ACTIONS(63), + [anon_sym_if] = ACTIONS(395), + [anon_sym_else] = ACTIONS(812), + [anon_sym_switch] = ACTIONS(397), + [anon_sym_case] = ACTIONS(812), + [anon_sym_default] = ACTIONS(812), + [anon_sym_while] = ACTIONS(403), + [anon_sym_do] = ACTIONS(405), + [anon_sym_for] = ACTIONS(407), + [anon_sym_return] = ACTIONS(409), + [anon_sym_break] = ACTIONS(411), + [anon_sym_continue] = ACTIONS(413), + [anon_sym_goto] = ACTIONS(415), + [anon_sym___try] = ACTIONS(417), + [anon_sym___leave] = ACTIONS(419), + [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(87), + [anon_sym_sizeof] = ACTIONS(89), + [anon_sym___alignof__] = ACTIONS(91), + [anon_sym___alignof] = ACTIONS(91), + [anon_sym__alignof] = ACTIONS(91), + [anon_sym_alignof] = ACTIONS(91), + [anon_sym__Alignof] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(93), + [anon_sym__Generic] = ACTIONS(95), + [anon_sym_asm] = ACTIONS(97), + [anon_sym___asm__] = ACTIONS(97), + [sym_number_literal] = ACTIONS(165), + [anon_sym_L_SQUOTE] = ACTIONS(101), + [anon_sym_u_SQUOTE] = ACTIONS(101), + [anon_sym_U_SQUOTE] = ACTIONS(101), + [anon_sym_u8_SQUOTE] = ACTIONS(101), + [anon_sym_SQUOTE] = ACTIONS(101), + [anon_sym_L_DQUOTE] = ACTIONS(103), + [anon_sym_u_DQUOTE] = ACTIONS(103), + [anon_sym_U_DQUOTE] = ACTIONS(103), + [anon_sym_u8_DQUOTE] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_true] = ACTIONS(167), + [sym_false] = ACTIONS(167), + [anon_sym_NULL] = ACTIONS(107), + [anon_sym_nullptr] = ACTIONS(107), [sym_comment] = ACTIONS(3), }, - [65] = { - [sym_declaration] = STATE(68), - [sym_type_definition] = STATE(68), - [sym__declaration_modifiers] = STATE(697), - [sym__declaration_specifiers] = STATE(1127), - [sym_attribute_specifier] = STATE(697), - [sym_attribute_declaration] = STATE(405), - [sym_ms_declspec_modifier] = STATE(697), - [sym_compound_statement] = STATE(68), - [sym_storage_class_specifier] = STATE(697), - [sym_type_qualifier] = STATE(697), - [sym_alignas_qualifier] = STATE(703), - [sym_type_specifier] = STATE(710), - [sym_sized_type_specifier] = STATE(746), - [sym_enum_specifier] = STATE(746), - [sym_struct_specifier] = STATE(746), - [sym_union_specifier] = STATE(746), - [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_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_seh_try_statement] = STATE(68), - [sym_seh_leave_statement] = STATE(68), - [sym_expression] = STATE(1033), - [sym__string] = STATE(663), - [sym_comma_expression] = STATE(1818), - [sym_conditional_expression] = STATE(663), - [sym_assignment_expression] = STATE(663), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(663), - [sym_binary_expression] = STATE(663), - [sym_update_expression] = STATE(663), - [sym_cast_expression] = STATE(663), - [sym_sizeof_expression] = STATE(663), - [sym_alignof_expression] = STATE(663), - [sym_offsetof_expression] = STATE(663), - [sym_generic_expression] = STATE(663), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(663), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(663), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(663), - [sym_concatenated_string] = STATE(663), - [sym_string_literal] = STATE(659), - [sym_null] = STATE(663), - [sym_macro_type_specifier] = STATE(746), - [aux_sym__declaration_specifiers_repeat1] = STATE(697), - [aux_sym_attributed_declarator_repeat1] = STATE(347), - [aux_sym_sized_type_specifier_repeat1] = STATE(747), - [aux_sym_case_statement_repeat1] = STATE(68), - [sym_identifier] = ACTIONS(1108), + [64] = { + [sym_declaration] = STATE(51), + [sym_type_definition] = STATE(51), + [sym__declaration_modifiers] = STATE(805), + [sym__declaration_specifiers] = STATE(1242), + [sym_attribute_specifier] = STATE(805), + [sym_attribute_declaration] = STATE(468), + [sym_ms_declspec_modifier] = STATE(805), + [sym_compound_statement] = STATE(51), + [sym_storage_class_specifier] = STATE(805), + [sym_type_qualifier] = STATE(805), + [sym_alignas_qualifier] = STATE(799), + [sym_type_specifier] = STATE(807), + [sym_sized_type_specifier] = STATE(873), + [sym_enum_specifier] = STATE(873), + [sym_struct_specifier] = STATE(873), + [sym_union_specifier] = STATE(873), + [sym_attributed_statement] = STATE(51), + [sym_labeled_statement] = STATE(51), + [sym_expression_statement] = STATE(51), + [sym_if_statement] = STATE(51), + [sym_switch_statement] = STATE(51), + [sym_while_statement] = STATE(51), + [sym_do_statement] = STATE(51), + [sym_for_statement] = STATE(51), + [sym_return_statement] = STATE(51), + [sym_break_statement] = STATE(51), + [sym_continue_statement] = STATE(51), + [sym_goto_statement] = STATE(51), + [sym_seh_try_statement] = STATE(51), + [sym_seh_leave_statement] = STATE(51), + [sym_expression] = STATE(1167), + [sym__string] = STATE(758), + [sym_comma_expression] = STATE(2207), + [sym_conditional_expression] = STATE(758), + [sym_assignment_expression] = STATE(758), + [sym_pointer_expression] = STATE(944), + [sym_unary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_cast_expression] = STATE(758), + [sym_sizeof_expression] = STATE(758), + [sym_alignof_expression] = STATE(758), + [sym_offsetof_expression] = STATE(758), + [sym_generic_expression] = STATE(758), + [sym_subscript_expression] = STATE(944), + [sym_call_expression] = STATE(944), + [sym_gnu_asm_expression] = STATE(758), + [sym_field_expression] = STATE(944), + [sym_compound_literal_expression] = STATE(758), + [sym_parenthesized_expression] = STATE(944), + [sym_char_literal] = STATE(758), + [sym_concatenated_string] = STATE(758), + [sym_string_literal] = STATE(671), + [sym_null] = STATE(758), + [sym_macro_type_specifier] = STATE(873), + [aux_sym__declaration_specifiers_repeat1] = STATE(805), + [aux_sym_attributed_declarator_repeat1] = STATE(428), + [aux_sym_sized_type_specifier_repeat1] = STATE(890), + [aux_sym_case_statement_repeat1] = STATE(51), + [sym_identifier] = ACTIONS(1064), + [aux_sym_preproc_include_token1] = ACTIONS(814), + [aux_sym_preproc_def_token1] = ACTIONS(814), + [aux_sym_preproc_if_token1] = ACTIONS(814), + [aux_sym_preproc_ifdef_token1] = ACTIONS(814), + [aux_sym_preproc_ifdef_token2] = ACTIONS(814), + [sym_preproc_directive] = ACTIONS(814), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -23213,149 +23924,161 @@ 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(378), - [anon_sym___extension__] = ACTIONS(27), - [anon_sym_typedef] = ACTIONS(29), - [anon_sym_extern] = ACTIONS(49), + [anon_sym_SEMI] = ACTIONS(383), + [anon_sym___extension__] = ACTIONS(385), + [anon_sym_typedef] = ACTIONS(387), + [anon_sym_extern] = ACTIONS(51), [anon_sym___attribute__] = ACTIONS(33), [anon_sym___scanf] = ACTIONS(35), [anon_sym___printf] = ACTIONS(35), [anon_sym___read_mostly] = ACTIONS(37), [anon_sym___must_hold] = ACTIONS(33), [anon_sym___ro_after_init] = ACTIONS(37), - [anon_sym___init] = ACTIONS(37), + [anon_sym___noreturn] = ACTIONS(37), + [anon_sym___cold] = ACTIONS(37), [anon_sym_LBRACK_LBRACK] = ACTIONS(39), [anon_sym___declspec] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(45), - [anon_sym_signed] = ACTIONS(47), - [anon_sym_unsigned] = ACTIONS(47), - [anon_sym_long] = ACTIONS(47), - [anon_sym_short] = ACTIONS(47), - [anon_sym_static] = ACTIONS(49), - [anon_sym_auto] = ACTIONS(49), - [anon_sym_register] = ACTIONS(49), - [anon_sym_inline] = ACTIONS(49), - [anon_sym___inline] = ACTIONS(49), - [anon_sym___inline__] = ACTIONS(49), - [anon_sym___forceinline] = ACTIONS(49), - [anon_sym_thread_local] = ACTIONS(49), - [anon_sym___thread] = ACTIONS(49), - [anon_sym_const] = ACTIONS(51), - [anon_sym_constexpr] = ACTIONS(51), - [anon_sym_volatile] = ACTIONS(51), - [anon_sym_restrict] = ACTIONS(51), - [anon_sym___restrict__] = ACTIONS(51), - [anon_sym__Atomic] = ACTIONS(51), - [anon_sym__Noreturn] = ACTIONS(51), - [anon_sym_noreturn] = ACTIONS(51), - [anon_sym_alignas] = ACTIONS(53), - [anon_sym__Alignas] = ACTIONS(53), - [sym_primitive_type] = ACTIONS(55), - [anon_sym_enum] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [anon_sym_if] = ACTIONS(1110), - [anon_sym_else] = ACTIONS(936), - [anon_sym_switch] = ACTIONS(65), - [anon_sym_while] = ACTIONS(1112), - [anon_sym_do] = ACTIONS(73), - [anon_sym_for] = ACTIONS(1114), - [anon_sym_return] = ACTIONS(77), - [anon_sym_break] = ACTIONS(79), - [anon_sym_continue] = ACTIONS(81), - [anon_sym_goto] = ACTIONS(83), - [anon_sym___try] = ACTIONS(1116), - [anon_sym___leave] = ACTIONS(414), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [anon_sym___alignof__] = ACTIONS(89), - [anon_sym___alignof] = ACTIONS(89), - [anon_sym__alignof] = ACTIONS(89), - [anon_sym_alignof] = ACTIONS(89), - [anon_sym__Alignof] = ACTIONS(89), - [anon_sym_offsetof] = ACTIONS(91), - [anon_sym__Generic] = ACTIONS(93), - [anon_sym_asm] = ACTIONS(95), - [anon_sym___asm__] = ACTIONS(95), - [sym_number_literal] = ACTIONS(163), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(165), - [sym_false] = ACTIONS(165), - [anon_sym_NULL] = ACTIONS(105), - [anon_sym_nullptr] = ACTIONS(105), + [anon_sym___init] = ACTIONS(814), + [anon_sym___exit] = ACTIONS(814), + [anon_sym___cdecl] = ACTIONS(814), + [anon_sym___clrcall] = ACTIONS(814), + [anon_sym___stdcall] = ACTIONS(814), + [anon_sym___fastcall] = ACTIONS(814), + [anon_sym___thiscall] = ACTIONS(814), + [anon_sym___vectorcall] = ACTIONS(814), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_RBRACE] = ACTIONS(1114), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_const] = ACTIONS(53), + [anon_sym_constexpr] = ACTIONS(53), + [anon_sym_volatile] = ACTIONS(53), + [anon_sym_restrict] = ACTIONS(53), + [anon_sym___restrict__] = ACTIONS(53), + [anon_sym__Atomic] = ACTIONS(53), + [anon_sym__Noreturn] = ACTIONS(53), + [anon_sym_noreturn] = ACTIONS(53), + [anon_sym_alignas] = ACTIONS(55), + [anon_sym__Alignas] = ACTIONS(55), + [sym_primitive_type] = ACTIONS(57), + [anon_sym_enum] = ACTIONS(59), + [anon_sym_struct] = ACTIONS(61), + [anon_sym_union] = ACTIONS(63), + [anon_sym_if] = ACTIONS(395), + [anon_sym_else] = ACTIONS(814), + [anon_sym_switch] = ACTIONS(397), + [anon_sym_case] = ACTIONS(814), + [anon_sym_default] = ACTIONS(814), + [anon_sym_while] = ACTIONS(403), + [anon_sym_do] = ACTIONS(405), + [anon_sym_for] = ACTIONS(407), + [anon_sym_return] = ACTIONS(409), + [anon_sym_break] = ACTIONS(411), + [anon_sym_continue] = ACTIONS(413), + [anon_sym_goto] = ACTIONS(415), + [anon_sym___try] = ACTIONS(417), + [anon_sym___leave] = ACTIONS(419), + [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(87), + [anon_sym_sizeof] = ACTIONS(89), + [anon_sym___alignof__] = ACTIONS(91), + [anon_sym___alignof] = ACTIONS(91), + [anon_sym__alignof] = ACTIONS(91), + [anon_sym_alignof] = ACTIONS(91), + [anon_sym__Alignof] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(93), + [anon_sym__Generic] = ACTIONS(95), + [anon_sym_asm] = ACTIONS(97), + [anon_sym___asm__] = ACTIONS(97), + [sym_number_literal] = ACTIONS(165), + [anon_sym_L_SQUOTE] = ACTIONS(101), + [anon_sym_u_SQUOTE] = ACTIONS(101), + [anon_sym_U_SQUOTE] = ACTIONS(101), + [anon_sym_u8_SQUOTE] = ACTIONS(101), + [anon_sym_SQUOTE] = ACTIONS(101), + [anon_sym_L_DQUOTE] = ACTIONS(103), + [anon_sym_u_DQUOTE] = ACTIONS(103), + [anon_sym_U_DQUOTE] = ACTIONS(103), + [anon_sym_u8_DQUOTE] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_true] = ACTIONS(167), + [sym_false] = ACTIONS(167), + [anon_sym_NULL] = ACTIONS(107), + [anon_sym_nullptr] = ACTIONS(107), [sym_comment] = ACTIONS(3), }, - [66] = { - [sym_declaration] = STATE(68), - [sym_type_definition] = STATE(68), - [sym__declaration_modifiers] = STATE(697), - [sym__declaration_specifiers] = STATE(1127), - [sym_attribute_specifier] = STATE(697), - [sym_attribute_declaration] = STATE(405), - [sym_ms_declspec_modifier] = STATE(697), - [sym_compound_statement] = STATE(68), - [sym_storage_class_specifier] = STATE(697), - [sym_type_qualifier] = STATE(697), - [sym_alignas_qualifier] = STATE(703), - [sym_type_specifier] = STATE(710), - [sym_sized_type_specifier] = STATE(746), - [sym_enum_specifier] = STATE(746), - [sym_struct_specifier] = STATE(746), - [sym_union_specifier] = STATE(746), - [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_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_seh_try_statement] = STATE(68), - [sym_seh_leave_statement] = STATE(68), - [sym_expression] = STATE(1033), - [sym__string] = STATE(663), - [sym_comma_expression] = STATE(1818), - [sym_conditional_expression] = STATE(663), - [sym_assignment_expression] = STATE(663), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(663), - [sym_binary_expression] = STATE(663), - [sym_update_expression] = STATE(663), - [sym_cast_expression] = STATE(663), - [sym_sizeof_expression] = STATE(663), - [sym_alignof_expression] = STATE(663), - [sym_offsetof_expression] = STATE(663), - [sym_generic_expression] = STATE(663), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(663), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(663), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(663), - [sym_concatenated_string] = STATE(663), - [sym_string_literal] = STATE(659), - [sym_null] = STATE(663), - [sym_macro_type_specifier] = STATE(746), - [aux_sym__declaration_specifiers_repeat1] = STATE(697), - [aux_sym_attributed_declarator_repeat1] = STATE(347), - [aux_sym_sized_type_specifier_repeat1] = STATE(747), - [aux_sym_case_statement_repeat1] = STATE(68), - [sym_identifier] = ACTIONS(1108), + [65] = { + [sym_declaration] = STATE(66), + [sym_type_definition] = STATE(66), + [sym__declaration_modifiers] = STATE(805), + [sym__declaration_specifiers] = STATE(1244), + [sym_attribute_specifier] = STATE(805), + [sym_attribute_declaration] = STATE(468), + [sym_ms_declspec_modifier] = STATE(805), + [sym_compound_statement] = STATE(66), + [sym_storage_class_specifier] = STATE(805), + [sym_type_qualifier] = STATE(805), + [sym_alignas_qualifier] = STATE(799), + [sym_type_specifier] = STATE(807), + [sym_sized_type_specifier] = STATE(873), + [sym_enum_specifier] = STATE(873), + [sym_struct_specifier] = STATE(873), + [sym_union_specifier] = STATE(873), + [sym_attributed_statement] = STATE(66), + [sym_labeled_statement] = STATE(66), + [sym_expression_statement] = STATE(66), + [sym_if_statement] = STATE(66), + [sym_switch_statement] = STATE(66), + [sym_while_statement] = STATE(66), + [sym_do_statement] = STATE(66), + [sym_for_statement] = STATE(66), + [sym_return_statement] = STATE(66), + [sym_break_statement] = STATE(66), + [sym_continue_statement] = STATE(66), + [sym_goto_statement] = STATE(66), + [sym_seh_try_statement] = STATE(66), + [sym_seh_leave_statement] = STATE(66), + [sym_expression] = STATE(1167), + [sym__string] = STATE(758), + [sym_comma_expression] = STATE(2207), + [sym_conditional_expression] = STATE(758), + [sym_assignment_expression] = STATE(758), + [sym_pointer_expression] = STATE(944), + [sym_unary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_cast_expression] = STATE(758), + [sym_sizeof_expression] = STATE(758), + [sym_alignof_expression] = STATE(758), + [sym_offsetof_expression] = STATE(758), + [sym_generic_expression] = STATE(758), + [sym_subscript_expression] = STATE(944), + [sym_call_expression] = STATE(944), + [sym_gnu_asm_expression] = STATE(758), + [sym_field_expression] = STATE(944), + [sym_compound_literal_expression] = STATE(758), + [sym_parenthesized_expression] = STATE(944), + [sym_char_literal] = STATE(758), + [sym_concatenated_string] = STATE(758), + [sym_string_literal] = STATE(671), + [sym_null] = STATE(758), + [sym_macro_type_specifier] = STATE(873), + [aux_sym__declaration_specifiers_repeat1] = STATE(805), + [aux_sym_attributed_declarator_repeat1] = STATE(442), + [aux_sym_sized_type_specifier_repeat1] = STATE(890), + [aux_sym_case_statement_repeat1] = STATE(66), + [sym_identifier] = ACTIONS(1116), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -23363,105 +24086,257 @@ 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(378), + [anon_sym_SEMI] = ACTIONS(383), [anon_sym___extension__] = ACTIONS(27), [anon_sym_typedef] = ACTIONS(29), - [anon_sym_extern] = ACTIONS(49), + [anon_sym_extern] = ACTIONS(51), [anon_sym___attribute__] = ACTIONS(33), [anon_sym___scanf] = ACTIONS(35), [anon_sym___printf] = ACTIONS(35), [anon_sym___read_mostly] = ACTIONS(37), [anon_sym___must_hold] = ACTIONS(33), [anon_sym___ro_after_init] = ACTIONS(37), - [anon_sym___init] = ACTIONS(37), + [anon_sym___noreturn] = ACTIONS(37), + [anon_sym___cold] = ACTIONS(37), [anon_sym_LBRACK_LBRACK] = ACTIONS(39), [anon_sym___declspec] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(45), - [anon_sym_signed] = ACTIONS(47), - [anon_sym_unsigned] = ACTIONS(47), - [anon_sym_long] = ACTIONS(47), - [anon_sym_short] = ACTIONS(47), - [anon_sym_static] = ACTIONS(49), - [anon_sym_auto] = ACTIONS(49), - [anon_sym_register] = ACTIONS(49), - [anon_sym_inline] = ACTIONS(49), - [anon_sym___inline] = ACTIONS(49), - [anon_sym___inline__] = ACTIONS(49), - [anon_sym___forceinline] = ACTIONS(49), - [anon_sym_thread_local] = ACTIONS(49), - [anon_sym___thread] = ACTIONS(49), - [anon_sym_const] = ACTIONS(51), - [anon_sym_constexpr] = ACTIONS(51), - [anon_sym_volatile] = ACTIONS(51), - [anon_sym_restrict] = ACTIONS(51), - [anon_sym___restrict__] = ACTIONS(51), - [anon_sym__Atomic] = ACTIONS(51), - [anon_sym__Noreturn] = ACTIONS(51), - [anon_sym_noreturn] = ACTIONS(51), - [anon_sym_alignas] = ACTIONS(53), - [anon_sym__Alignas] = ACTIONS(53), - [sym_primitive_type] = ACTIONS(55), - [anon_sym_enum] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [anon_sym_if] = ACTIONS(1110), - [anon_sym_else] = ACTIONS(800), - [anon_sym_switch] = ACTIONS(65), - [anon_sym_while] = ACTIONS(1112), - [anon_sym_do] = ACTIONS(73), - [anon_sym_for] = ACTIONS(1114), - [anon_sym_return] = ACTIONS(77), - [anon_sym_break] = ACTIONS(79), - [anon_sym_continue] = ACTIONS(81), - [anon_sym_goto] = ACTIONS(83), - [anon_sym___try] = ACTIONS(1116), - [anon_sym___leave] = ACTIONS(414), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [anon_sym___alignof__] = ACTIONS(89), - [anon_sym___alignof] = ACTIONS(89), - [anon_sym__alignof] = ACTIONS(89), - [anon_sym_alignof] = ACTIONS(89), - [anon_sym__Alignof] = ACTIONS(89), - [anon_sym_offsetof] = ACTIONS(91), - [anon_sym__Generic] = ACTIONS(93), - [anon_sym_asm] = ACTIONS(95), - [anon_sym___asm__] = ACTIONS(95), - [sym_number_literal] = ACTIONS(163), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(165), - [sym_false] = ACTIONS(165), - [anon_sym_NULL] = ACTIONS(105), - [anon_sym_nullptr] = ACTIONS(105), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_const] = ACTIONS(53), + [anon_sym_constexpr] = ACTIONS(53), + [anon_sym_volatile] = ACTIONS(53), + [anon_sym_restrict] = ACTIONS(53), + [anon_sym___restrict__] = ACTIONS(53), + [anon_sym__Atomic] = ACTIONS(53), + [anon_sym__Noreturn] = ACTIONS(53), + [anon_sym_noreturn] = ACTIONS(53), + [anon_sym_alignas] = ACTIONS(55), + [anon_sym__Alignas] = ACTIONS(55), + [sym_primitive_type] = ACTIONS(57), + [anon_sym_enum] = ACTIONS(59), + [anon_sym_struct] = ACTIONS(61), + [anon_sym_union] = ACTIONS(63), + [anon_sym_if] = ACTIONS(1118), + [anon_sym_else] = ACTIONS(814), + [anon_sym_switch] = ACTIONS(67), + [anon_sym_while] = ACTIONS(1120), + [anon_sym_do] = ACTIONS(75), + [anon_sym_for] = ACTIONS(1122), + [anon_sym_return] = ACTIONS(79), + [anon_sym_break] = ACTIONS(81), + [anon_sym_continue] = ACTIONS(83), + [anon_sym_goto] = ACTIONS(85), + [anon_sym___try] = ACTIONS(1124), + [anon_sym___leave] = ACTIONS(419), + [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(87), + [anon_sym_sizeof] = ACTIONS(89), + [anon_sym___alignof__] = ACTIONS(91), + [anon_sym___alignof] = ACTIONS(91), + [anon_sym__alignof] = ACTIONS(91), + [anon_sym_alignof] = ACTIONS(91), + [anon_sym__Alignof] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(93), + [anon_sym__Generic] = ACTIONS(95), + [anon_sym_asm] = ACTIONS(97), + [anon_sym___asm__] = ACTIONS(97), + [sym_number_literal] = ACTIONS(165), + [anon_sym_L_SQUOTE] = ACTIONS(101), + [anon_sym_u_SQUOTE] = ACTIONS(101), + [anon_sym_U_SQUOTE] = ACTIONS(101), + [anon_sym_u8_SQUOTE] = ACTIONS(101), + [anon_sym_SQUOTE] = ACTIONS(101), + [anon_sym_L_DQUOTE] = ACTIONS(103), + [anon_sym_u_DQUOTE] = ACTIONS(103), + [anon_sym_U_DQUOTE] = ACTIONS(103), + [anon_sym_u8_DQUOTE] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_true] = ACTIONS(167), + [sym_false] = ACTIONS(167), + [anon_sym_NULL] = ACTIONS(107), + [anon_sym_nullptr] = ACTIONS(107), + [sym_comment] = ACTIONS(3), + }, + [66] = { + [sym_declaration] = STATE(66), + [sym_type_definition] = STATE(66), + [sym__declaration_modifiers] = STATE(805), + [sym__declaration_specifiers] = STATE(1244), + [sym_attribute_specifier] = STATE(805), + [sym_attribute_declaration] = STATE(468), + [sym_ms_declspec_modifier] = STATE(805), + [sym_compound_statement] = STATE(66), + [sym_storage_class_specifier] = STATE(805), + [sym_type_qualifier] = STATE(805), + [sym_alignas_qualifier] = STATE(799), + [sym_type_specifier] = STATE(807), + [sym_sized_type_specifier] = STATE(873), + [sym_enum_specifier] = STATE(873), + [sym_struct_specifier] = STATE(873), + [sym_union_specifier] = STATE(873), + [sym_attributed_statement] = STATE(66), + [sym_labeled_statement] = STATE(66), + [sym_expression_statement] = STATE(66), + [sym_if_statement] = STATE(66), + [sym_switch_statement] = STATE(66), + [sym_while_statement] = STATE(66), + [sym_do_statement] = STATE(66), + [sym_for_statement] = STATE(66), + [sym_return_statement] = STATE(66), + [sym_break_statement] = STATE(66), + [sym_continue_statement] = STATE(66), + [sym_goto_statement] = STATE(66), + [sym_seh_try_statement] = STATE(66), + [sym_seh_leave_statement] = STATE(66), + [sym_expression] = STATE(1167), + [sym__string] = STATE(758), + [sym_comma_expression] = STATE(2207), + [sym_conditional_expression] = STATE(758), + [sym_assignment_expression] = STATE(758), + [sym_pointer_expression] = STATE(944), + [sym_unary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_cast_expression] = STATE(758), + [sym_sizeof_expression] = STATE(758), + [sym_alignof_expression] = STATE(758), + [sym_offsetof_expression] = STATE(758), + [sym_generic_expression] = STATE(758), + [sym_subscript_expression] = STATE(944), + [sym_call_expression] = STATE(944), + [sym_gnu_asm_expression] = STATE(758), + [sym_field_expression] = STATE(944), + [sym_compound_literal_expression] = STATE(758), + [sym_parenthesized_expression] = STATE(944), + [sym_char_literal] = STATE(758), + [sym_concatenated_string] = STATE(758), + [sym_string_literal] = STATE(671), + [sym_null] = STATE(758), + [sym_macro_type_specifier] = STATE(873), + [aux_sym__declaration_specifiers_repeat1] = STATE(805), + [aux_sym_attributed_declarator_repeat1] = STATE(442), + [aux_sym_sized_type_specifier_repeat1] = STATE(890), + [aux_sym_case_statement_repeat1] = STATE(66), + [sym_identifier] = ACTIONS(1126), + [anon_sym_LPAREN2] = ACTIONS(821), + [anon_sym_BANG] = ACTIONS(824), + [anon_sym_TILDE] = ACTIONS(824), + [anon_sym_DASH] = ACTIONS(827), + [anon_sym_PLUS] = ACTIONS(827), + [anon_sym_STAR] = ACTIONS(830), + [anon_sym_AMP] = ACTIONS(830), + [anon_sym_SEMI] = ACTIONS(955), + [anon_sym___extension__] = ACTIONS(1022), + [anon_sym_typedef] = ACTIONS(1025), + [anon_sym_extern] = ACTIONS(842), + [anon_sym___attribute__] = ACTIONS(845), + [anon_sym___scanf] = ACTIONS(848), + [anon_sym___printf] = ACTIONS(848), + [anon_sym___read_mostly] = ACTIONS(851), + [anon_sym___must_hold] = ACTIONS(845), + [anon_sym___ro_after_init] = ACTIONS(851), + [anon_sym___noreturn] = ACTIONS(851), + [anon_sym___cold] = ACTIONS(851), + [anon_sym_LBRACK_LBRACK] = ACTIONS(854), + [anon_sym___declspec] = ACTIONS(857), + [anon_sym_LBRACE] = ACTIONS(1028), + [anon_sym_signed] = ACTIONS(863), + [anon_sym_unsigned] = ACTIONS(863), + [anon_sym_long] = ACTIONS(863), + [anon_sym_short] = ACTIONS(863), + [anon_sym_static] = ACTIONS(842), + [anon_sym_auto] = ACTIONS(842), + [anon_sym_register] = ACTIONS(842), + [anon_sym_inline] = ACTIONS(842), + [anon_sym___inline] = ACTIONS(842), + [anon_sym___inline__] = ACTIONS(842), + [anon_sym___forceinline] = ACTIONS(842), + [anon_sym_thread_local] = ACTIONS(842), + [anon_sym___thread] = ACTIONS(842), + [anon_sym_const] = ACTIONS(866), + [anon_sym_constexpr] = ACTIONS(866), + [anon_sym_volatile] = ACTIONS(866), + [anon_sym_restrict] = ACTIONS(866), + [anon_sym___restrict__] = ACTIONS(866), + [anon_sym__Atomic] = ACTIONS(866), + [anon_sym__Noreturn] = ACTIONS(866), + [anon_sym_noreturn] = ACTIONS(866), + [anon_sym_alignas] = ACTIONS(869), + [anon_sym__Alignas] = ACTIONS(869), + [sym_primitive_type] = ACTIONS(872), + [anon_sym_enum] = ACTIONS(875), + [anon_sym_struct] = ACTIONS(878), + [anon_sym_union] = ACTIONS(881), + [anon_sym_if] = ACTIONS(1129), + [anon_sym_else] = ACTIONS(819), + [anon_sym_switch] = ACTIONS(1034), + [anon_sym_while] = ACTIONS(1132), + [anon_sym_do] = ACTIONS(1040), + [anon_sym_for] = ACTIONS(1135), + [anon_sym_return] = ACTIONS(1046), + [anon_sym_break] = ACTIONS(1049), + [anon_sym_continue] = ACTIONS(1052), + [anon_sym_goto] = ACTIONS(1055), + [anon_sym___try] = ACTIONS(1138), + [anon_sym___leave] = ACTIONS(999), + [anon_sym_DASH_DASH] = ACTIONS(917), + [anon_sym_PLUS_PLUS] = ACTIONS(917), + [anon_sym_sizeof] = ACTIONS(920), + [anon_sym___alignof__] = ACTIONS(923), + [anon_sym___alignof] = ACTIONS(923), + [anon_sym__alignof] = ACTIONS(923), + [anon_sym_alignof] = ACTIONS(923), + [anon_sym__Alignof] = ACTIONS(923), + [anon_sym_offsetof] = ACTIONS(926), + [anon_sym__Generic] = ACTIONS(929), + [anon_sym_asm] = ACTIONS(932), + [anon_sym___asm__] = ACTIONS(932), + [sym_number_literal] = ACTIONS(935), + [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(941), + [anon_sym_u_DQUOTE] = ACTIONS(941), + [anon_sym_U_DQUOTE] = ACTIONS(941), + [anon_sym_u8_DQUOTE] = ACTIONS(941), + [anon_sym_DQUOTE] = ACTIONS(941), + [sym_true] = ACTIONS(944), + [sym_false] = ACTIONS(944), + [anon_sym_NULL] = ACTIONS(947), + [anon_sym_nullptr] = ACTIONS(947), [sym_comment] = ACTIONS(3), }, [67] = { [sym_declaration] = STATE(66), [sym_type_definition] = STATE(66), - [sym__declaration_modifiers] = STATE(697), - [sym__declaration_specifiers] = STATE(1127), - [sym_attribute_specifier] = STATE(697), - [sym_attribute_declaration] = STATE(405), - [sym_ms_declspec_modifier] = STATE(697), + [sym__declaration_modifiers] = STATE(805), + [sym__declaration_specifiers] = STATE(1244), + [sym_attribute_specifier] = STATE(805), + [sym_attribute_declaration] = STATE(468), + [sym_ms_declspec_modifier] = STATE(805), [sym_compound_statement] = STATE(66), - [sym_storage_class_specifier] = STATE(697), - [sym_type_qualifier] = STATE(697), - [sym_alignas_qualifier] = STATE(703), - [sym_type_specifier] = STATE(710), - [sym_sized_type_specifier] = STATE(746), - [sym_enum_specifier] = STATE(746), - [sym_struct_specifier] = STATE(746), - [sym_union_specifier] = STATE(746), + [sym_storage_class_specifier] = STATE(805), + [sym_type_qualifier] = STATE(805), + [sym_alignas_qualifier] = STATE(799), + [sym_type_specifier] = STATE(807), + [sym_sized_type_specifier] = STATE(873), + [sym_enum_specifier] = STATE(873), + [sym_struct_specifier] = STATE(873), + [sym_union_specifier] = STATE(873), [sym_attributed_statement] = STATE(66), [sym_labeled_statement] = STATE(66), [sym_expression_statement] = STATE(66), @@ -23476,36 +24351,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(66), [sym_seh_try_statement] = STATE(66), [sym_seh_leave_statement] = STATE(66), - [sym_expression] = STATE(1033), - [sym__string] = STATE(663), - [sym_comma_expression] = STATE(1818), - [sym_conditional_expression] = STATE(663), - [sym_assignment_expression] = STATE(663), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(663), - [sym_binary_expression] = STATE(663), - [sym_update_expression] = STATE(663), - [sym_cast_expression] = STATE(663), - [sym_sizeof_expression] = STATE(663), - [sym_alignof_expression] = STATE(663), - [sym_offsetof_expression] = STATE(663), - [sym_generic_expression] = STATE(663), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(663), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(663), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(663), - [sym_concatenated_string] = STATE(663), - [sym_string_literal] = STATE(659), - [sym_null] = STATE(663), - [sym_macro_type_specifier] = STATE(746), - [aux_sym__declaration_specifiers_repeat1] = STATE(697), - [aux_sym_attributed_declarator_repeat1] = STATE(347), - [aux_sym_sized_type_specifier_repeat1] = STATE(747), + [sym_expression] = STATE(1167), + [sym__string] = STATE(758), + [sym_comma_expression] = STATE(2207), + [sym_conditional_expression] = STATE(758), + [sym_assignment_expression] = STATE(758), + [sym_pointer_expression] = STATE(944), + [sym_unary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_cast_expression] = STATE(758), + [sym_sizeof_expression] = STATE(758), + [sym_alignof_expression] = STATE(758), + [sym_offsetof_expression] = STATE(758), + [sym_generic_expression] = STATE(758), + [sym_subscript_expression] = STATE(944), + [sym_call_expression] = STATE(944), + [sym_gnu_asm_expression] = STATE(758), + [sym_field_expression] = STATE(944), + [sym_compound_literal_expression] = STATE(758), + [sym_parenthesized_expression] = STATE(944), + [sym_char_literal] = STATE(758), + [sym_concatenated_string] = STATE(758), + [sym_string_literal] = STATE(671), + [sym_null] = STATE(758), + [sym_macro_type_specifier] = STATE(873), + [aux_sym__declaration_specifiers_repeat1] = STATE(805), + [aux_sym_attributed_declarator_repeat1] = STATE(442), + [aux_sym_sized_type_specifier_repeat1] = STATE(890), [aux_sym_case_statement_repeat1] = STATE(66), - [sym_identifier] = ACTIONS(1108), + [sym_identifier] = ACTIONS(1116), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -23513,255 +24388,257 @@ 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(378), + [anon_sym_SEMI] = ACTIONS(383), [anon_sym___extension__] = ACTIONS(27), [anon_sym_typedef] = ACTIONS(29), - [anon_sym_extern] = ACTIONS(49), + [anon_sym_extern] = ACTIONS(51), [anon_sym___attribute__] = ACTIONS(33), [anon_sym___scanf] = ACTIONS(35), [anon_sym___printf] = ACTIONS(35), [anon_sym___read_mostly] = ACTIONS(37), [anon_sym___must_hold] = ACTIONS(33), [anon_sym___ro_after_init] = ACTIONS(37), - [anon_sym___init] = ACTIONS(37), + [anon_sym___noreturn] = ACTIONS(37), + [anon_sym___cold] = ACTIONS(37), [anon_sym_LBRACK_LBRACK] = ACTIONS(39), [anon_sym___declspec] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(45), - [anon_sym_signed] = ACTIONS(47), - [anon_sym_unsigned] = ACTIONS(47), - [anon_sym_long] = ACTIONS(47), - [anon_sym_short] = ACTIONS(47), - [anon_sym_static] = ACTIONS(49), - [anon_sym_auto] = ACTIONS(49), - [anon_sym_register] = ACTIONS(49), - [anon_sym_inline] = ACTIONS(49), - [anon_sym___inline] = ACTIONS(49), - [anon_sym___inline__] = ACTIONS(49), - [anon_sym___forceinline] = ACTIONS(49), - [anon_sym_thread_local] = ACTIONS(49), - [anon_sym___thread] = ACTIONS(49), - [anon_sym_const] = ACTIONS(51), - [anon_sym_constexpr] = ACTIONS(51), - [anon_sym_volatile] = ACTIONS(51), - [anon_sym_restrict] = ACTIONS(51), - [anon_sym___restrict__] = ACTIONS(51), - [anon_sym__Atomic] = ACTIONS(51), - [anon_sym__Noreturn] = ACTIONS(51), - [anon_sym_noreturn] = ACTIONS(51), - [anon_sym_alignas] = ACTIONS(53), - [anon_sym__Alignas] = ACTIONS(53), - [sym_primitive_type] = ACTIONS(55), - [anon_sym_enum] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [anon_sym_if] = ACTIONS(1110), - [anon_sym_else] = ACTIONS(938), - [anon_sym_switch] = ACTIONS(65), - [anon_sym_while] = ACTIONS(1112), - [anon_sym_do] = ACTIONS(73), - [anon_sym_for] = ACTIONS(1114), - [anon_sym_return] = ACTIONS(77), - [anon_sym_break] = ACTIONS(79), - [anon_sym_continue] = ACTIONS(81), - [anon_sym_goto] = ACTIONS(83), - [anon_sym___try] = ACTIONS(1116), - [anon_sym___leave] = ACTIONS(414), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [anon_sym___alignof__] = ACTIONS(89), - [anon_sym___alignof] = ACTIONS(89), - [anon_sym__alignof] = ACTIONS(89), - [anon_sym_alignof] = ACTIONS(89), - [anon_sym__Alignof] = ACTIONS(89), - [anon_sym_offsetof] = ACTIONS(91), - [anon_sym__Generic] = ACTIONS(93), - [anon_sym_asm] = ACTIONS(95), - [anon_sym___asm__] = ACTIONS(95), - [sym_number_literal] = ACTIONS(163), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(165), - [sym_false] = ACTIONS(165), - [anon_sym_NULL] = ACTIONS(105), - [anon_sym_nullptr] = ACTIONS(105), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_const] = ACTIONS(53), + [anon_sym_constexpr] = ACTIONS(53), + [anon_sym_volatile] = ACTIONS(53), + [anon_sym_restrict] = ACTIONS(53), + [anon_sym___restrict__] = ACTIONS(53), + [anon_sym__Atomic] = ACTIONS(53), + [anon_sym__Noreturn] = ACTIONS(53), + [anon_sym_noreturn] = ACTIONS(53), + [anon_sym_alignas] = ACTIONS(55), + [anon_sym__Alignas] = ACTIONS(55), + [sym_primitive_type] = ACTIONS(57), + [anon_sym_enum] = ACTIONS(59), + [anon_sym_struct] = ACTIONS(61), + [anon_sym_union] = ACTIONS(63), + [anon_sym_if] = ACTIONS(1118), + [anon_sym_else] = ACTIONS(808), + [anon_sym_switch] = ACTIONS(67), + [anon_sym_while] = ACTIONS(1120), + [anon_sym_do] = ACTIONS(75), + [anon_sym_for] = ACTIONS(1122), + [anon_sym_return] = ACTIONS(79), + [anon_sym_break] = ACTIONS(81), + [anon_sym_continue] = ACTIONS(83), + [anon_sym_goto] = ACTIONS(85), + [anon_sym___try] = ACTIONS(1124), + [anon_sym___leave] = ACTIONS(419), + [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(87), + [anon_sym_sizeof] = ACTIONS(89), + [anon_sym___alignof__] = ACTIONS(91), + [anon_sym___alignof] = ACTIONS(91), + [anon_sym__alignof] = ACTIONS(91), + [anon_sym_alignof] = ACTIONS(91), + [anon_sym__Alignof] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(93), + [anon_sym__Generic] = ACTIONS(95), + [anon_sym_asm] = ACTIONS(97), + [anon_sym___asm__] = ACTIONS(97), + [sym_number_literal] = ACTIONS(165), + [anon_sym_L_SQUOTE] = ACTIONS(101), + [anon_sym_u_SQUOTE] = ACTIONS(101), + [anon_sym_U_SQUOTE] = ACTIONS(101), + [anon_sym_u8_SQUOTE] = ACTIONS(101), + [anon_sym_SQUOTE] = ACTIONS(101), + [anon_sym_L_DQUOTE] = ACTIONS(103), + [anon_sym_u_DQUOTE] = ACTIONS(103), + [anon_sym_U_DQUOTE] = ACTIONS(103), + [anon_sym_u8_DQUOTE] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_true] = ACTIONS(167), + [sym_false] = ACTIONS(167), + [anon_sym_NULL] = ACTIONS(107), + [anon_sym_nullptr] = ACTIONS(107), [sym_comment] = ACTIONS(3), }, [68] = { - [sym_declaration] = STATE(68), - [sym_type_definition] = STATE(68), - [sym__declaration_modifiers] = STATE(697), - [sym__declaration_specifiers] = STATE(1127), - [sym_attribute_specifier] = STATE(697), - [sym_attribute_declaration] = STATE(405), - [sym_ms_declspec_modifier] = STATE(697), - [sym_compound_statement] = STATE(68), - [sym_storage_class_specifier] = STATE(697), - [sym_type_qualifier] = STATE(697), - [sym_alignas_qualifier] = STATE(703), - [sym_type_specifier] = STATE(710), - [sym_sized_type_specifier] = STATE(746), - [sym_enum_specifier] = STATE(746), - [sym_struct_specifier] = STATE(746), - [sym_union_specifier] = STATE(746), - [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_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_seh_try_statement] = STATE(68), - [sym_seh_leave_statement] = STATE(68), - [sym_expression] = STATE(1033), - [sym__string] = STATE(663), - [sym_comma_expression] = STATE(1818), - [sym_conditional_expression] = STATE(663), - [sym_assignment_expression] = STATE(663), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(663), - [sym_binary_expression] = STATE(663), - [sym_update_expression] = STATE(663), - [sym_cast_expression] = STATE(663), - [sym_sizeof_expression] = STATE(663), - [sym_alignof_expression] = STATE(663), - [sym_offsetof_expression] = STATE(663), - [sym_generic_expression] = STATE(663), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(663), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(663), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(663), - [sym_concatenated_string] = STATE(663), - [sym_string_literal] = STATE(659), - [sym_null] = STATE(663), - [sym_macro_type_specifier] = STATE(746), - [aux_sym__declaration_specifiers_repeat1] = STATE(697), - [aux_sym_attributed_declarator_repeat1] = STATE(347), - [aux_sym_sized_type_specifier_repeat1] = STATE(747), - [aux_sym_case_statement_repeat1] = STATE(68), - [sym_identifier] = ACTIONS(1118), - [anon_sym_LPAREN2] = ACTIONS(807), - [anon_sym_BANG] = ACTIONS(810), - [anon_sym_TILDE] = ACTIONS(810), - [anon_sym_DASH] = ACTIONS(813), - [anon_sym_PLUS] = ACTIONS(813), - [anon_sym_STAR] = ACTIONS(816), - [anon_sym_AMP] = ACTIONS(816), - [anon_sym_SEMI] = ACTIONS(1013), - [anon_sym___extension__] = ACTIONS(1066), - [anon_sym_typedef] = ACTIONS(1069), - [anon_sym_extern] = ACTIONS(828), - [anon_sym___attribute__] = ACTIONS(831), - [anon_sym___scanf] = ACTIONS(834), - [anon_sym___printf] = ACTIONS(834), - [anon_sym___read_mostly] = ACTIONS(837), - [anon_sym___must_hold] = ACTIONS(831), - [anon_sym___ro_after_init] = ACTIONS(837), - [anon_sym___init] = ACTIONS(837), - [anon_sym_LBRACK_LBRACK] = ACTIONS(840), - [anon_sym___declspec] = ACTIONS(843), - [anon_sym_LBRACE] = ACTIONS(1072), - [anon_sym_signed] = ACTIONS(849), - [anon_sym_unsigned] = ACTIONS(849), - [anon_sym_long] = ACTIONS(849), - [anon_sym_short] = ACTIONS(849), - [anon_sym_static] = ACTIONS(828), - [anon_sym_auto] = ACTIONS(828), - [anon_sym_register] = ACTIONS(828), - [anon_sym_inline] = ACTIONS(828), - [anon_sym___inline] = ACTIONS(828), - [anon_sym___inline__] = ACTIONS(828), - [anon_sym___forceinline] = ACTIONS(828), - [anon_sym_thread_local] = ACTIONS(828), - [anon_sym___thread] = ACTIONS(828), - [anon_sym_const] = ACTIONS(852), - [anon_sym_constexpr] = ACTIONS(852), - [anon_sym_volatile] = ACTIONS(852), - [anon_sym_restrict] = ACTIONS(852), - [anon_sym___restrict__] = ACTIONS(852), - [anon_sym__Atomic] = ACTIONS(852), - [anon_sym__Noreturn] = ACTIONS(852), - [anon_sym_noreturn] = ACTIONS(852), - [anon_sym_alignas] = ACTIONS(855), - [anon_sym__Alignas] = ACTIONS(855), - [sym_primitive_type] = ACTIONS(858), - [anon_sym_enum] = ACTIONS(861), - [anon_sym_struct] = ACTIONS(864), - [anon_sym_union] = ACTIONS(867), - [anon_sym_if] = ACTIONS(1121), - [anon_sym_else] = ACTIONS(805), - [anon_sym_switch] = ACTIONS(1078), - [anon_sym_while] = ACTIONS(1124), - [anon_sym_do] = ACTIONS(1084), - [anon_sym_for] = ACTIONS(1127), - [anon_sym_return] = ACTIONS(1090), - [anon_sym_break] = ACTIONS(1093), - [anon_sym_continue] = ACTIONS(1096), - [anon_sym_goto] = ACTIONS(1099), - [anon_sym___try] = ACTIONS(1130), - [anon_sym___leave] = ACTIONS(1057), - [anon_sym_DASH_DASH] = ACTIONS(903), - [anon_sym_PLUS_PLUS] = ACTIONS(903), - [anon_sym_sizeof] = ACTIONS(906), - [anon_sym___alignof__] = ACTIONS(909), - [anon_sym___alignof] = ACTIONS(909), - [anon_sym__alignof] = ACTIONS(909), - [anon_sym_alignof] = ACTIONS(909), - [anon_sym__Alignof] = ACTIONS(909), - [anon_sym_offsetof] = ACTIONS(912), - [anon_sym__Generic] = ACTIONS(915), - [anon_sym_asm] = ACTIONS(918), - [anon_sym___asm__] = ACTIONS(918), - [sym_number_literal] = ACTIONS(921), - [anon_sym_L_SQUOTE] = ACTIONS(924), - [anon_sym_u_SQUOTE] = ACTIONS(924), - [anon_sym_U_SQUOTE] = ACTIONS(924), - [anon_sym_u8_SQUOTE] = ACTIONS(924), - [anon_sym_SQUOTE] = ACTIONS(924), - [anon_sym_L_DQUOTE] = ACTIONS(927), - [anon_sym_u_DQUOTE] = ACTIONS(927), - [anon_sym_U_DQUOTE] = ACTIONS(927), - [anon_sym_u8_DQUOTE] = ACTIONS(927), - [anon_sym_DQUOTE] = ACTIONS(927), - [sym_true] = ACTIONS(930), - [sym_false] = ACTIONS(930), - [anon_sym_NULL] = ACTIONS(933), - [anon_sym_nullptr] = ACTIONS(933), + [sym_declaration] = STATE(67), + [sym_type_definition] = STATE(67), + [sym__declaration_modifiers] = STATE(805), + [sym__declaration_specifiers] = STATE(1244), + [sym_attribute_specifier] = STATE(805), + [sym_attribute_declaration] = STATE(468), + [sym_ms_declspec_modifier] = STATE(805), + [sym_compound_statement] = STATE(67), + [sym_storage_class_specifier] = STATE(805), + [sym_type_qualifier] = STATE(805), + [sym_alignas_qualifier] = STATE(799), + [sym_type_specifier] = STATE(807), + [sym_sized_type_specifier] = STATE(873), + [sym_enum_specifier] = STATE(873), + [sym_struct_specifier] = STATE(873), + [sym_union_specifier] = STATE(873), + [sym_attributed_statement] = STATE(67), + [sym_labeled_statement] = STATE(67), + [sym_expression_statement] = STATE(67), + [sym_if_statement] = STATE(67), + [sym_switch_statement] = STATE(67), + [sym_while_statement] = STATE(67), + [sym_do_statement] = STATE(67), + [sym_for_statement] = STATE(67), + [sym_return_statement] = STATE(67), + [sym_break_statement] = STATE(67), + [sym_continue_statement] = STATE(67), + [sym_goto_statement] = STATE(67), + [sym_seh_try_statement] = STATE(67), + [sym_seh_leave_statement] = STATE(67), + [sym_expression] = STATE(1167), + [sym__string] = STATE(758), + [sym_comma_expression] = STATE(2207), + [sym_conditional_expression] = STATE(758), + [sym_assignment_expression] = STATE(758), + [sym_pointer_expression] = STATE(944), + [sym_unary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_cast_expression] = STATE(758), + [sym_sizeof_expression] = STATE(758), + [sym_alignof_expression] = STATE(758), + [sym_offsetof_expression] = STATE(758), + [sym_generic_expression] = STATE(758), + [sym_subscript_expression] = STATE(944), + [sym_call_expression] = STATE(944), + [sym_gnu_asm_expression] = STATE(758), + [sym_field_expression] = STATE(944), + [sym_compound_literal_expression] = STATE(758), + [sym_parenthesized_expression] = STATE(944), + [sym_char_literal] = STATE(758), + [sym_concatenated_string] = STATE(758), + [sym_string_literal] = STATE(671), + [sym_null] = STATE(758), + [sym_macro_type_specifier] = STATE(873), + [aux_sym__declaration_specifiers_repeat1] = STATE(805), + [aux_sym_attributed_declarator_repeat1] = STATE(442), + [aux_sym_sized_type_specifier_repeat1] = STATE(890), + [aux_sym_case_statement_repeat1] = STATE(67), + [sym_identifier] = ACTIONS(1116), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(383), + [anon_sym___extension__] = ACTIONS(27), + [anon_sym_typedef] = ACTIONS(29), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(33), + [anon_sym___scanf] = ACTIONS(35), + [anon_sym___printf] = ACTIONS(35), + [anon_sym___read_mostly] = ACTIONS(37), + [anon_sym___must_hold] = ACTIONS(33), + [anon_sym___ro_after_init] = ACTIONS(37), + [anon_sym___noreturn] = ACTIONS(37), + [anon_sym___cold] = ACTIONS(37), + [anon_sym_LBRACK_LBRACK] = ACTIONS(39), + [anon_sym___declspec] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_const] = ACTIONS(53), + [anon_sym_constexpr] = ACTIONS(53), + [anon_sym_volatile] = ACTIONS(53), + [anon_sym_restrict] = ACTIONS(53), + [anon_sym___restrict__] = ACTIONS(53), + [anon_sym__Atomic] = ACTIONS(53), + [anon_sym__Noreturn] = ACTIONS(53), + [anon_sym_noreturn] = ACTIONS(53), + [anon_sym_alignas] = ACTIONS(55), + [anon_sym__Alignas] = ACTIONS(55), + [sym_primitive_type] = ACTIONS(57), + [anon_sym_enum] = ACTIONS(59), + [anon_sym_struct] = ACTIONS(61), + [anon_sym_union] = ACTIONS(63), + [anon_sym_if] = ACTIONS(1118), + [anon_sym_else] = ACTIONS(812), + [anon_sym_switch] = ACTIONS(67), + [anon_sym_while] = ACTIONS(1120), + [anon_sym_do] = ACTIONS(75), + [anon_sym_for] = ACTIONS(1122), + [anon_sym_return] = ACTIONS(79), + [anon_sym_break] = ACTIONS(81), + [anon_sym_continue] = ACTIONS(83), + [anon_sym_goto] = ACTIONS(85), + [anon_sym___try] = ACTIONS(1124), + [anon_sym___leave] = ACTIONS(419), + [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(87), + [anon_sym_sizeof] = ACTIONS(89), + [anon_sym___alignof__] = ACTIONS(91), + [anon_sym___alignof] = ACTIONS(91), + [anon_sym__alignof] = ACTIONS(91), + [anon_sym_alignof] = ACTIONS(91), + [anon_sym__Alignof] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(93), + [anon_sym__Generic] = ACTIONS(95), + [anon_sym_asm] = ACTIONS(97), + [anon_sym___asm__] = ACTIONS(97), + [sym_number_literal] = ACTIONS(165), + [anon_sym_L_SQUOTE] = ACTIONS(101), + [anon_sym_u_SQUOTE] = ACTIONS(101), + [anon_sym_U_SQUOTE] = ACTIONS(101), + [anon_sym_u8_SQUOTE] = ACTIONS(101), + [anon_sym_SQUOTE] = ACTIONS(101), + [anon_sym_L_DQUOTE] = ACTIONS(103), + [anon_sym_u_DQUOTE] = ACTIONS(103), + [anon_sym_U_DQUOTE] = ACTIONS(103), + [anon_sym_u8_DQUOTE] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_true] = ACTIONS(167), + [sym_false] = ACTIONS(167), + [anon_sym_NULL] = ACTIONS(107), + [anon_sym_nullptr] = ACTIONS(107), [sym_comment] = ACTIONS(3), }, [69] = { [sym_declaration] = STATE(65), [sym_type_definition] = STATE(65), - [sym__declaration_modifiers] = STATE(697), - [sym__declaration_specifiers] = STATE(1127), - [sym_attribute_specifier] = STATE(697), - [sym_attribute_declaration] = STATE(405), - [sym_ms_declspec_modifier] = STATE(697), + [sym__declaration_modifiers] = STATE(805), + [sym__declaration_specifiers] = STATE(1244), + [sym_attribute_specifier] = STATE(805), + [sym_attribute_declaration] = STATE(468), + [sym_ms_declspec_modifier] = STATE(805), [sym_compound_statement] = STATE(65), - [sym_storage_class_specifier] = STATE(697), - [sym_type_qualifier] = STATE(697), - [sym_alignas_qualifier] = STATE(703), - [sym_type_specifier] = STATE(710), - [sym_sized_type_specifier] = STATE(746), - [sym_enum_specifier] = STATE(746), - [sym_struct_specifier] = STATE(746), - [sym_union_specifier] = STATE(746), + [sym_storage_class_specifier] = STATE(805), + [sym_type_qualifier] = STATE(805), + [sym_alignas_qualifier] = STATE(799), + [sym_type_specifier] = STATE(807), + [sym_sized_type_specifier] = STATE(873), + [sym_enum_specifier] = STATE(873), + [sym_struct_specifier] = STATE(873), + [sym_union_specifier] = STATE(873), [sym_attributed_statement] = STATE(65), [sym_labeled_statement] = STATE(65), [sym_expression_statement] = STATE(65), @@ -23776,36 +24653,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(65), [sym_seh_try_statement] = STATE(65), [sym_seh_leave_statement] = STATE(65), - [sym_expression] = STATE(1033), - [sym__string] = STATE(663), - [sym_comma_expression] = STATE(1818), - [sym_conditional_expression] = STATE(663), - [sym_assignment_expression] = STATE(663), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(663), - [sym_binary_expression] = STATE(663), - [sym_update_expression] = STATE(663), - [sym_cast_expression] = STATE(663), - [sym_sizeof_expression] = STATE(663), - [sym_alignof_expression] = STATE(663), - [sym_offsetof_expression] = STATE(663), - [sym_generic_expression] = STATE(663), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(663), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(663), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(663), - [sym_concatenated_string] = STATE(663), - [sym_string_literal] = STATE(659), - [sym_null] = STATE(663), - [sym_macro_type_specifier] = STATE(746), - [aux_sym__declaration_specifiers_repeat1] = STATE(697), - [aux_sym_attributed_declarator_repeat1] = STATE(347), - [aux_sym_sized_type_specifier_repeat1] = STATE(747), + [sym_expression] = STATE(1167), + [sym__string] = STATE(758), + [sym_comma_expression] = STATE(2207), + [sym_conditional_expression] = STATE(758), + [sym_assignment_expression] = STATE(758), + [sym_pointer_expression] = STATE(944), + [sym_unary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_cast_expression] = STATE(758), + [sym_sizeof_expression] = STATE(758), + [sym_alignof_expression] = STATE(758), + [sym_offsetof_expression] = STATE(758), + [sym_generic_expression] = STATE(758), + [sym_subscript_expression] = STATE(944), + [sym_call_expression] = STATE(944), + [sym_gnu_asm_expression] = STATE(758), + [sym_field_expression] = STATE(944), + [sym_compound_literal_expression] = STATE(758), + [sym_parenthesized_expression] = STATE(944), + [sym_char_literal] = STATE(758), + [sym_concatenated_string] = STATE(758), + [sym_string_literal] = STATE(671), + [sym_null] = STATE(758), + [sym_macro_type_specifier] = STATE(873), + [aux_sym__declaration_specifiers_repeat1] = STATE(805), + [aux_sym_attributed_declarator_repeat1] = STATE(442), + [aux_sym_sized_type_specifier_repeat1] = STATE(890), [aux_sym_case_statement_repeat1] = STATE(65), - [sym_identifier] = ACTIONS(1108), + [sym_identifier] = ACTIONS(1116), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -23813,132 +24690,133 @@ 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(378), + [anon_sym_SEMI] = ACTIONS(383), [anon_sym___extension__] = ACTIONS(27), [anon_sym_typedef] = ACTIONS(29), - [anon_sym_extern] = ACTIONS(49), + [anon_sym_extern] = ACTIONS(51), [anon_sym___attribute__] = ACTIONS(33), [anon_sym___scanf] = ACTIONS(35), [anon_sym___printf] = ACTIONS(35), [anon_sym___read_mostly] = ACTIONS(37), [anon_sym___must_hold] = ACTIONS(33), [anon_sym___ro_after_init] = ACTIONS(37), - [anon_sym___init] = ACTIONS(37), + [anon_sym___noreturn] = ACTIONS(37), + [anon_sym___cold] = ACTIONS(37), [anon_sym_LBRACK_LBRACK] = ACTIONS(39), [anon_sym___declspec] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(45), - [anon_sym_signed] = ACTIONS(47), - [anon_sym_unsigned] = ACTIONS(47), - [anon_sym_long] = ACTIONS(47), - [anon_sym_short] = ACTIONS(47), - [anon_sym_static] = ACTIONS(49), - [anon_sym_auto] = ACTIONS(49), - [anon_sym_register] = ACTIONS(49), - [anon_sym_inline] = ACTIONS(49), - [anon_sym___inline] = ACTIONS(49), - [anon_sym___inline__] = ACTIONS(49), - [anon_sym___forceinline] = ACTIONS(49), - [anon_sym_thread_local] = ACTIONS(49), - [anon_sym___thread] = ACTIONS(49), - [anon_sym_const] = ACTIONS(51), - [anon_sym_constexpr] = ACTIONS(51), - [anon_sym_volatile] = ACTIONS(51), - [anon_sym_restrict] = ACTIONS(51), - [anon_sym___restrict__] = ACTIONS(51), - [anon_sym__Atomic] = ACTIONS(51), - [anon_sym__Noreturn] = ACTIONS(51), - [anon_sym_noreturn] = ACTIONS(51), - [anon_sym_alignas] = ACTIONS(53), - [anon_sym__Alignas] = ACTIONS(53), - [sym_primitive_type] = ACTIONS(55), - [anon_sym_enum] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [anon_sym_if] = ACTIONS(1110), - [anon_sym_else] = ACTIONS(940), - [anon_sym_switch] = ACTIONS(65), - [anon_sym_while] = ACTIONS(1112), - [anon_sym_do] = ACTIONS(73), - [anon_sym_for] = ACTIONS(1114), - [anon_sym_return] = ACTIONS(77), - [anon_sym_break] = ACTIONS(79), - [anon_sym_continue] = ACTIONS(81), - [anon_sym_goto] = ACTIONS(83), - [anon_sym___try] = ACTIONS(1116), - [anon_sym___leave] = ACTIONS(414), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [anon_sym___alignof__] = ACTIONS(89), - [anon_sym___alignof] = ACTIONS(89), - [anon_sym__alignof] = ACTIONS(89), - [anon_sym_alignof] = ACTIONS(89), - [anon_sym__Alignof] = ACTIONS(89), - [anon_sym_offsetof] = ACTIONS(91), - [anon_sym__Generic] = ACTIONS(93), - [anon_sym_asm] = ACTIONS(95), - [anon_sym___asm__] = ACTIONS(95), - [sym_number_literal] = ACTIONS(163), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(165), - [sym_false] = ACTIONS(165), - [anon_sym_NULL] = ACTIONS(105), - [anon_sym_nullptr] = ACTIONS(105), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_const] = ACTIONS(53), + [anon_sym_constexpr] = ACTIONS(53), + [anon_sym_volatile] = ACTIONS(53), + [anon_sym_restrict] = ACTIONS(53), + [anon_sym___restrict__] = ACTIONS(53), + [anon_sym__Atomic] = ACTIONS(53), + [anon_sym__Noreturn] = ACTIONS(53), + [anon_sym_noreturn] = ACTIONS(53), + [anon_sym_alignas] = ACTIONS(55), + [anon_sym__Alignas] = ACTIONS(55), + [sym_primitive_type] = ACTIONS(57), + [anon_sym_enum] = ACTIONS(59), + [anon_sym_struct] = ACTIONS(61), + [anon_sym_union] = ACTIONS(63), + [anon_sym_if] = ACTIONS(1118), + [anon_sym_else] = ACTIONS(810), + [anon_sym_switch] = ACTIONS(67), + [anon_sym_while] = ACTIONS(1120), + [anon_sym_do] = ACTIONS(75), + [anon_sym_for] = ACTIONS(1122), + [anon_sym_return] = ACTIONS(79), + [anon_sym_break] = ACTIONS(81), + [anon_sym_continue] = ACTIONS(83), + [anon_sym_goto] = ACTIONS(85), + [anon_sym___try] = ACTIONS(1124), + [anon_sym___leave] = ACTIONS(419), + [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(87), + [anon_sym_sizeof] = ACTIONS(89), + [anon_sym___alignof__] = ACTIONS(91), + [anon_sym___alignof] = ACTIONS(91), + [anon_sym__alignof] = ACTIONS(91), + [anon_sym_alignof] = ACTIONS(91), + [anon_sym__Alignof] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(93), + [anon_sym__Generic] = ACTIONS(95), + [anon_sym_asm] = ACTIONS(97), + [anon_sym___asm__] = ACTIONS(97), + [sym_number_literal] = ACTIONS(165), + [anon_sym_L_SQUOTE] = ACTIONS(101), + [anon_sym_u_SQUOTE] = ACTIONS(101), + [anon_sym_U_SQUOTE] = ACTIONS(101), + [anon_sym_u8_SQUOTE] = ACTIONS(101), + [anon_sym_SQUOTE] = ACTIONS(101), + [anon_sym_L_DQUOTE] = ACTIONS(103), + [anon_sym_u_DQUOTE] = ACTIONS(103), + [anon_sym_U_DQUOTE] = ACTIONS(103), + [anon_sym_u8_DQUOTE] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_true] = ACTIONS(167), + [sym_false] = ACTIONS(167), + [anon_sym_NULL] = ACTIONS(107), + [anon_sym_nullptr] = ACTIONS(107), [sym_comment] = ACTIONS(3), }, [70] = { - [sym_declaration] = STATE(476), - [sym__declaration_modifiers] = STATE(697), - [sym__declaration_specifiers] = STATE(1130), - [sym_attribute_specifier] = STATE(697), - [sym_attribute_declaration] = STATE(697), - [sym_ms_declspec_modifier] = STATE(697), - [sym_storage_class_specifier] = STATE(697), - [sym_type_qualifier] = STATE(697), - [sym_alignas_qualifier] = STATE(703), - [sym_type_specifier] = STATE(710), - [sym_sized_type_specifier] = STATE(746), - [sym_enum_specifier] = STATE(746), - [sym_struct_specifier] = STATE(746), - [sym_union_specifier] = STATE(746), - [sym__for_statement_body] = STATE(1958), - [sym_expression] = STATE(1062), - [sym__string] = STATE(663), - [sym_comma_expression] = STATE(1854), - [sym_conditional_expression] = STATE(663), - [sym_assignment_expression] = STATE(663), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(663), - [sym_binary_expression] = STATE(663), - [sym_update_expression] = STATE(663), - [sym_cast_expression] = STATE(663), - [sym_sizeof_expression] = STATE(663), - [sym_alignof_expression] = STATE(663), - [sym_offsetof_expression] = STATE(663), - [sym_generic_expression] = STATE(663), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(663), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(663), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(663), - [sym_concatenated_string] = STATE(663), - [sym_string_literal] = STATE(659), - [sym_null] = STATE(663), - [sym_macro_type_specifier] = STATE(746), - [aux_sym__declaration_specifiers_repeat1] = STATE(697), - [aux_sym_sized_type_specifier_repeat1] = STATE(747), - [sym_identifier] = ACTIONS(1133), + [sym_declaration] = STATE(601), + [sym__declaration_modifiers] = STATE(805), + [sym__declaration_specifiers] = STATE(1247), + [sym_attribute_specifier] = STATE(805), + [sym_attribute_declaration] = STATE(805), + [sym_ms_declspec_modifier] = STATE(805), + [sym_storage_class_specifier] = STATE(805), + [sym_type_qualifier] = STATE(805), + [sym_alignas_qualifier] = STATE(799), + [sym_type_specifier] = STATE(807), + [sym_sized_type_specifier] = STATE(873), + [sym_enum_specifier] = STATE(873), + [sym_struct_specifier] = STATE(873), + [sym_union_specifier] = STATE(873), + [sym__for_statement_body] = STATE(2201), + [sym_expression] = STATE(1189), + [sym__string] = STATE(758), + [sym_comma_expression] = STATE(2084), + [sym_conditional_expression] = STATE(758), + [sym_assignment_expression] = STATE(758), + [sym_pointer_expression] = STATE(944), + [sym_unary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_cast_expression] = STATE(758), + [sym_sizeof_expression] = STATE(758), + [sym_alignof_expression] = STATE(758), + [sym_offsetof_expression] = STATE(758), + [sym_generic_expression] = STATE(758), + [sym_subscript_expression] = STATE(944), + [sym_call_expression] = STATE(944), + [sym_gnu_asm_expression] = STATE(758), + [sym_field_expression] = STATE(944), + [sym_compound_literal_expression] = STATE(758), + [sym_parenthesized_expression] = STATE(944), + [sym_char_literal] = STATE(758), + [sym_concatenated_string] = STATE(758), + [sym_string_literal] = STATE(671), + [sym_null] = STATE(758), + [sym_macro_type_specifier] = STATE(873), + [aux_sym__declaration_specifiers_repeat1] = STATE(805), + [aux_sym_sized_type_specifier_repeat1] = STATE(890), + [sym_identifier] = ACTIONS(1141), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -23946,118 +24824,119 @@ 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(1135), - [anon_sym___extension__] = ACTIONS(51), - [anon_sym_extern] = ACTIONS(49), + [anon_sym_SEMI] = ACTIONS(1143), + [anon_sym___extension__] = ACTIONS(53), + [anon_sym_extern] = ACTIONS(51), [anon_sym___attribute__] = ACTIONS(33), [anon_sym___scanf] = ACTIONS(35), [anon_sym___printf] = ACTIONS(35), [anon_sym___read_mostly] = ACTIONS(37), [anon_sym___must_hold] = ACTIONS(33), [anon_sym___ro_after_init] = ACTIONS(37), - [anon_sym___init] = ACTIONS(37), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1137), + [anon_sym___noreturn] = ACTIONS(37), + [anon_sym___cold] = ACTIONS(37), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1145), [anon_sym___declspec] = ACTIONS(41), - [anon_sym_signed] = ACTIONS(47), - [anon_sym_unsigned] = ACTIONS(47), - [anon_sym_long] = ACTIONS(47), - [anon_sym_short] = ACTIONS(47), - [anon_sym_static] = ACTIONS(49), - [anon_sym_auto] = ACTIONS(49), - [anon_sym_register] = ACTIONS(49), - [anon_sym_inline] = ACTIONS(49), - [anon_sym___inline] = ACTIONS(49), - [anon_sym___inline__] = ACTIONS(49), - [anon_sym___forceinline] = ACTIONS(49), - [anon_sym_thread_local] = ACTIONS(49), - [anon_sym___thread] = ACTIONS(49), - [anon_sym_const] = ACTIONS(51), - [anon_sym_constexpr] = ACTIONS(51), - [anon_sym_volatile] = ACTIONS(51), - [anon_sym_restrict] = ACTIONS(51), - [anon_sym___restrict__] = ACTIONS(51), - [anon_sym__Atomic] = ACTIONS(51), - [anon_sym__Noreturn] = ACTIONS(51), - [anon_sym_noreturn] = ACTIONS(51), - [anon_sym_alignas] = ACTIONS(53), - [anon_sym__Alignas] = ACTIONS(53), - [sym_primitive_type] = ACTIONS(55), - [anon_sym_enum] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [anon_sym___alignof__] = ACTIONS(89), - [anon_sym___alignof] = ACTIONS(89), - [anon_sym__alignof] = ACTIONS(89), - [anon_sym_alignof] = ACTIONS(89), - [anon_sym__Alignof] = ACTIONS(89), - [anon_sym_offsetof] = ACTIONS(91), - [anon_sym__Generic] = ACTIONS(93), - [anon_sym_asm] = ACTIONS(95), - [anon_sym___asm__] = ACTIONS(95), - [sym_number_literal] = ACTIONS(163), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(165), - [sym_false] = ACTIONS(165), - [anon_sym_NULL] = ACTIONS(105), - [anon_sym_nullptr] = ACTIONS(105), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_const] = ACTIONS(53), + [anon_sym_constexpr] = ACTIONS(53), + [anon_sym_volatile] = ACTIONS(53), + [anon_sym_restrict] = ACTIONS(53), + [anon_sym___restrict__] = ACTIONS(53), + [anon_sym__Atomic] = ACTIONS(53), + [anon_sym__Noreturn] = ACTIONS(53), + [anon_sym_noreturn] = ACTIONS(53), + [anon_sym_alignas] = ACTIONS(55), + [anon_sym__Alignas] = ACTIONS(55), + [sym_primitive_type] = ACTIONS(57), + [anon_sym_enum] = ACTIONS(59), + [anon_sym_struct] = ACTIONS(61), + [anon_sym_union] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(87), + [anon_sym_sizeof] = ACTIONS(89), + [anon_sym___alignof__] = ACTIONS(91), + [anon_sym___alignof] = ACTIONS(91), + [anon_sym__alignof] = ACTIONS(91), + [anon_sym_alignof] = ACTIONS(91), + [anon_sym__Alignof] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(93), + [anon_sym__Generic] = ACTIONS(95), + [anon_sym_asm] = ACTIONS(97), + [anon_sym___asm__] = ACTIONS(97), + [sym_number_literal] = ACTIONS(165), + [anon_sym_L_SQUOTE] = ACTIONS(101), + [anon_sym_u_SQUOTE] = ACTIONS(101), + [anon_sym_U_SQUOTE] = ACTIONS(101), + [anon_sym_u8_SQUOTE] = ACTIONS(101), + [anon_sym_SQUOTE] = ACTIONS(101), + [anon_sym_L_DQUOTE] = ACTIONS(103), + [anon_sym_u_DQUOTE] = ACTIONS(103), + [anon_sym_U_DQUOTE] = ACTIONS(103), + [anon_sym_u8_DQUOTE] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_true] = ACTIONS(167), + [sym_false] = ACTIONS(167), + [anon_sym_NULL] = ACTIONS(107), + [anon_sym_nullptr] = ACTIONS(107), [sym_comment] = ACTIONS(3), }, [71] = { - [sym_declaration] = STATE(476), - [sym__declaration_modifiers] = STATE(697), - [sym__declaration_specifiers] = STATE(1130), - [sym_attribute_specifier] = STATE(697), - [sym_attribute_declaration] = STATE(697), - [sym_ms_declspec_modifier] = STATE(697), - [sym_storage_class_specifier] = STATE(697), - [sym_type_qualifier] = STATE(697), - [sym_alignas_qualifier] = STATE(703), - [sym_type_specifier] = STATE(710), - [sym_sized_type_specifier] = STATE(746), - [sym_enum_specifier] = STATE(746), - [sym_struct_specifier] = STATE(746), - [sym_union_specifier] = STATE(746), - [sym__for_statement_body] = STATE(1855), - [sym_expression] = STATE(1062), - [sym__string] = STATE(663), - [sym_comma_expression] = STATE(1854), - [sym_conditional_expression] = STATE(663), - [sym_assignment_expression] = STATE(663), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(663), - [sym_binary_expression] = STATE(663), - [sym_update_expression] = STATE(663), - [sym_cast_expression] = STATE(663), - [sym_sizeof_expression] = STATE(663), - [sym_alignof_expression] = STATE(663), - [sym_offsetof_expression] = STATE(663), - [sym_generic_expression] = STATE(663), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(663), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(663), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(663), - [sym_concatenated_string] = STATE(663), - [sym_string_literal] = STATE(659), - [sym_null] = STATE(663), - [sym_macro_type_specifier] = STATE(746), - [aux_sym__declaration_specifiers_repeat1] = STATE(697), - [aux_sym_sized_type_specifier_repeat1] = STATE(747), - [sym_identifier] = ACTIONS(1133), + [sym_declaration] = STATE(601), + [sym__declaration_modifiers] = STATE(805), + [sym__declaration_specifiers] = STATE(1247), + [sym_attribute_specifier] = STATE(805), + [sym_attribute_declaration] = STATE(805), + [sym_ms_declspec_modifier] = STATE(805), + [sym_storage_class_specifier] = STATE(805), + [sym_type_qualifier] = STATE(805), + [sym_alignas_qualifier] = STATE(799), + [sym_type_specifier] = STATE(807), + [sym_sized_type_specifier] = STATE(873), + [sym_enum_specifier] = STATE(873), + [sym_struct_specifier] = STATE(873), + [sym_union_specifier] = STATE(873), + [sym__for_statement_body] = STATE(2215), + [sym_expression] = STATE(1189), + [sym__string] = STATE(758), + [sym_comma_expression] = STATE(2084), + [sym_conditional_expression] = STATE(758), + [sym_assignment_expression] = STATE(758), + [sym_pointer_expression] = STATE(944), + [sym_unary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_cast_expression] = STATE(758), + [sym_sizeof_expression] = STATE(758), + [sym_alignof_expression] = STATE(758), + [sym_offsetof_expression] = STATE(758), + [sym_generic_expression] = STATE(758), + [sym_subscript_expression] = STATE(944), + [sym_call_expression] = STATE(944), + [sym_gnu_asm_expression] = STATE(758), + [sym_field_expression] = STATE(944), + [sym_compound_literal_expression] = STATE(758), + [sym_parenthesized_expression] = STATE(944), + [sym_char_literal] = STATE(758), + [sym_concatenated_string] = STATE(758), + [sym_string_literal] = STATE(671), + [sym_null] = STATE(758), + [sym_macro_type_specifier] = STATE(873), + [aux_sym__declaration_specifiers_repeat1] = STATE(805), + [aux_sym_sized_type_specifier_repeat1] = STATE(890), + [sym_identifier] = ACTIONS(1141), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -24065,118 +24944,119 @@ 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(1135), - [anon_sym___extension__] = ACTIONS(51), - [anon_sym_extern] = ACTIONS(49), + [anon_sym_SEMI] = ACTIONS(1143), + [anon_sym___extension__] = ACTIONS(53), + [anon_sym_extern] = ACTIONS(51), [anon_sym___attribute__] = ACTIONS(33), [anon_sym___scanf] = ACTIONS(35), [anon_sym___printf] = ACTIONS(35), [anon_sym___read_mostly] = ACTIONS(37), [anon_sym___must_hold] = ACTIONS(33), [anon_sym___ro_after_init] = ACTIONS(37), - [anon_sym___init] = ACTIONS(37), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1137), + [anon_sym___noreturn] = ACTIONS(37), + [anon_sym___cold] = ACTIONS(37), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1145), [anon_sym___declspec] = ACTIONS(41), - [anon_sym_signed] = ACTIONS(47), - [anon_sym_unsigned] = ACTIONS(47), - [anon_sym_long] = ACTIONS(47), - [anon_sym_short] = ACTIONS(47), - [anon_sym_static] = ACTIONS(49), - [anon_sym_auto] = ACTIONS(49), - [anon_sym_register] = ACTIONS(49), - [anon_sym_inline] = ACTIONS(49), - [anon_sym___inline] = ACTIONS(49), - [anon_sym___inline__] = ACTIONS(49), - [anon_sym___forceinline] = ACTIONS(49), - [anon_sym_thread_local] = ACTIONS(49), - [anon_sym___thread] = ACTIONS(49), - [anon_sym_const] = ACTIONS(51), - [anon_sym_constexpr] = ACTIONS(51), - [anon_sym_volatile] = ACTIONS(51), - [anon_sym_restrict] = ACTIONS(51), - [anon_sym___restrict__] = ACTIONS(51), - [anon_sym__Atomic] = ACTIONS(51), - [anon_sym__Noreturn] = ACTIONS(51), - [anon_sym_noreturn] = ACTIONS(51), - [anon_sym_alignas] = ACTIONS(53), - [anon_sym__Alignas] = ACTIONS(53), - [sym_primitive_type] = ACTIONS(55), - [anon_sym_enum] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [anon_sym___alignof__] = ACTIONS(89), - [anon_sym___alignof] = ACTIONS(89), - [anon_sym__alignof] = ACTIONS(89), - [anon_sym_alignof] = ACTIONS(89), - [anon_sym__Alignof] = ACTIONS(89), - [anon_sym_offsetof] = ACTIONS(91), - [anon_sym__Generic] = ACTIONS(93), - [anon_sym_asm] = ACTIONS(95), - [anon_sym___asm__] = ACTIONS(95), - [sym_number_literal] = ACTIONS(163), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(165), - [sym_false] = ACTIONS(165), - [anon_sym_NULL] = ACTIONS(105), - [anon_sym_nullptr] = ACTIONS(105), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_const] = ACTIONS(53), + [anon_sym_constexpr] = ACTIONS(53), + [anon_sym_volatile] = ACTIONS(53), + [anon_sym_restrict] = ACTIONS(53), + [anon_sym___restrict__] = ACTIONS(53), + [anon_sym__Atomic] = ACTIONS(53), + [anon_sym__Noreturn] = ACTIONS(53), + [anon_sym_noreturn] = ACTIONS(53), + [anon_sym_alignas] = ACTIONS(55), + [anon_sym__Alignas] = ACTIONS(55), + [sym_primitive_type] = ACTIONS(57), + [anon_sym_enum] = ACTIONS(59), + [anon_sym_struct] = ACTIONS(61), + [anon_sym_union] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(87), + [anon_sym_sizeof] = ACTIONS(89), + [anon_sym___alignof__] = ACTIONS(91), + [anon_sym___alignof] = ACTIONS(91), + [anon_sym__alignof] = ACTIONS(91), + [anon_sym_alignof] = ACTIONS(91), + [anon_sym__Alignof] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(93), + [anon_sym__Generic] = ACTIONS(95), + [anon_sym_asm] = ACTIONS(97), + [anon_sym___asm__] = ACTIONS(97), + [sym_number_literal] = ACTIONS(165), + [anon_sym_L_SQUOTE] = ACTIONS(101), + [anon_sym_u_SQUOTE] = ACTIONS(101), + [anon_sym_U_SQUOTE] = ACTIONS(101), + [anon_sym_u8_SQUOTE] = ACTIONS(101), + [anon_sym_SQUOTE] = ACTIONS(101), + [anon_sym_L_DQUOTE] = ACTIONS(103), + [anon_sym_u_DQUOTE] = ACTIONS(103), + [anon_sym_U_DQUOTE] = ACTIONS(103), + [anon_sym_u8_DQUOTE] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_true] = ACTIONS(167), + [sym_false] = ACTIONS(167), + [anon_sym_NULL] = ACTIONS(107), + [anon_sym_nullptr] = ACTIONS(107), [sym_comment] = ACTIONS(3), }, [72] = { - [sym_declaration] = STATE(476), - [sym__declaration_modifiers] = STATE(697), - [sym__declaration_specifiers] = STATE(1130), - [sym_attribute_specifier] = STATE(697), - [sym_attribute_declaration] = STATE(697), - [sym_ms_declspec_modifier] = STATE(697), - [sym_storage_class_specifier] = STATE(697), - [sym_type_qualifier] = STATE(697), - [sym_alignas_qualifier] = STATE(703), - [sym_type_specifier] = STATE(710), - [sym_sized_type_specifier] = STATE(746), - [sym_enum_specifier] = STATE(746), - [sym_struct_specifier] = STATE(746), - [sym_union_specifier] = STATE(746), - [sym__for_statement_body] = STATE(1930), - [sym_expression] = STATE(1062), - [sym__string] = STATE(663), - [sym_comma_expression] = STATE(1854), - [sym_conditional_expression] = STATE(663), - [sym_assignment_expression] = STATE(663), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(663), - [sym_binary_expression] = STATE(663), - [sym_update_expression] = STATE(663), - [sym_cast_expression] = STATE(663), - [sym_sizeof_expression] = STATE(663), - [sym_alignof_expression] = STATE(663), - [sym_offsetof_expression] = STATE(663), - [sym_generic_expression] = STATE(663), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(663), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(663), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(663), - [sym_concatenated_string] = STATE(663), - [sym_string_literal] = STATE(659), - [sym_null] = STATE(663), - [sym_macro_type_specifier] = STATE(746), - [aux_sym__declaration_specifiers_repeat1] = STATE(697), - [aux_sym_sized_type_specifier_repeat1] = STATE(747), - [sym_identifier] = ACTIONS(1133), + [sym_declaration] = STATE(601), + [sym__declaration_modifiers] = STATE(805), + [sym__declaration_specifiers] = STATE(1247), + [sym_attribute_specifier] = STATE(805), + [sym_attribute_declaration] = STATE(805), + [sym_ms_declspec_modifier] = STATE(805), + [sym_storage_class_specifier] = STATE(805), + [sym_type_qualifier] = STATE(805), + [sym_alignas_qualifier] = STATE(799), + [sym_type_specifier] = STATE(807), + [sym_sized_type_specifier] = STATE(873), + [sym_enum_specifier] = STATE(873), + [sym_struct_specifier] = STATE(873), + [sym_union_specifier] = STATE(873), + [sym__for_statement_body] = STATE(2080), + [sym_expression] = STATE(1189), + [sym__string] = STATE(758), + [sym_comma_expression] = STATE(2084), + [sym_conditional_expression] = STATE(758), + [sym_assignment_expression] = STATE(758), + [sym_pointer_expression] = STATE(944), + [sym_unary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_cast_expression] = STATE(758), + [sym_sizeof_expression] = STATE(758), + [sym_alignof_expression] = STATE(758), + [sym_offsetof_expression] = STATE(758), + [sym_generic_expression] = STATE(758), + [sym_subscript_expression] = STATE(944), + [sym_call_expression] = STATE(944), + [sym_gnu_asm_expression] = STATE(758), + [sym_field_expression] = STATE(944), + [sym_compound_literal_expression] = STATE(758), + [sym_parenthesized_expression] = STATE(944), + [sym_char_literal] = STATE(758), + [sym_concatenated_string] = STATE(758), + [sym_string_literal] = STATE(671), + [sym_null] = STATE(758), + [sym_macro_type_specifier] = STATE(873), + [aux_sym__declaration_specifiers_repeat1] = STATE(805), + [aux_sym_sized_type_specifier_repeat1] = STATE(890), + [sym_identifier] = ACTIONS(1141), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -24184,118 +25064,119 @@ 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(1135), - [anon_sym___extension__] = ACTIONS(51), - [anon_sym_extern] = ACTIONS(49), + [anon_sym_SEMI] = ACTIONS(1143), + [anon_sym___extension__] = ACTIONS(53), + [anon_sym_extern] = ACTIONS(51), [anon_sym___attribute__] = ACTIONS(33), [anon_sym___scanf] = ACTIONS(35), [anon_sym___printf] = ACTIONS(35), [anon_sym___read_mostly] = ACTIONS(37), [anon_sym___must_hold] = ACTIONS(33), [anon_sym___ro_after_init] = ACTIONS(37), - [anon_sym___init] = ACTIONS(37), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1137), + [anon_sym___noreturn] = ACTIONS(37), + [anon_sym___cold] = ACTIONS(37), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1145), [anon_sym___declspec] = ACTIONS(41), - [anon_sym_signed] = ACTIONS(47), - [anon_sym_unsigned] = ACTIONS(47), - [anon_sym_long] = ACTIONS(47), - [anon_sym_short] = ACTIONS(47), - [anon_sym_static] = ACTIONS(49), - [anon_sym_auto] = ACTIONS(49), - [anon_sym_register] = ACTIONS(49), - [anon_sym_inline] = ACTIONS(49), - [anon_sym___inline] = ACTIONS(49), - [anon_sym___inline__] = ACTIONS(49), - [anon_sym___forceinline] = ACTIONS(49), - [anon_sym_thread_local] = ACTIONS(49), - [anon_sym___thread] = ACTIONS(49), - [anon_sym_const] = ACTIONS(51), - [anon_sym_constexpr] = ACTIONS(51), - [anon_sym_volatile] = ACTIONS(51), - [anon_sym_restrict] = ACTIONS(51), - [anon_sym___restrict__] = ACTIONS(51), - [anon_sym__Atomic] = ACTIONS(51), - [anon_sym__Noreturn] = ACTIONS(51), - [anon_sym_noreturn] = ACTIONS(51), - [anon_sym_alignas] = ACTIONS(53), - [anon_sym__Alignas] = ACTIONS(53), - [sym_primitive_type] = ACTIONS(55), - [anon_sym_enum] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [anon_sym___alignof__] = ACTIONS(89), - [anon_sym___alignof] = ACTIONS(89), - [anon_sym__alignof] = ACTIONS(89), - [anon_sym_alignof] = ACTIONS(89), - [anon_sym__Alignof] = ACTIONS(89), - [anon_sym_offsetof] = ACTIONS(91), - [anon_sym__Generic] = ACTIONS(93), - [anon_sym_asm] = ACTIONS(95), - [anon_sym___asm__] = ACTIONS(95), - [sym_number_literal] = ACTIONS(163), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(165), - [sym_false] = ACTIONS(165), - [anon_sym_NULL] = ACTIONS(105), - [anon_sym_nullptr] = ACTIONS(105), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_const] = ACTIONS(53), + [anon_sym_constexpr] = ACTIONS(53), + [anon_sym_volatile] = ACTIONS(53), + [anon_sym_restrict] = ACTIONS(53), + [anon_sym___restrict__] = ACTIONS(53), + [anon_sym__Atomic] = ACTIONS(53), + [anon_sym__Noreturn] = ACTIONS(53), + [anon_sym_noreturn] = ACTIONS(53), + [anon_sym_alignas] = ACTIONS(55), + [anon_sym__Alignas] = ACTIONS(55), + [sym_primitive_type] = ACTIONS(57), + [anon_sym_enum] = ACTIONS(59), + [anon_sym_struct] = ACTIONS(61), + [anon_sym_union] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(87), + [anon_sym_sizeof] = ACTIONS(89), + [anon_sym___alignof__] = ACTIONS(91), + [anon_sym___alignof] = ACTIONS(91), + [anon_sym__alignof] = ACTIONS(91), + [anon_sym_alignof] = ACTIONS(91), + [anon_sym__Alignof] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(93), + [anon_sym__Generic] = ACTIONS(95), + [anon_sym_asm] = ACTIONS(97), + [anon_sym___asm__] = ACTIONS(97), + [sym_number_literal] = ACTIONS(165), + [anon_sym_L_SQUOTE] = ACTIONS(101), + [anon_sym_u_SQUOTE] = ACTIONS(101), + [anon_sym_U_SQUOTE] = ACTIONS(101), + [anon_sym_u8_SQUOTE] = ACTIONS(101), + [anon_sym_SQUOTE] = ACTIONS(101), + [anon_sym_L_DQUOTE] = ACTIONS(103), + [anon_sym_u_DQUOTE] = ACTIONS(103), + [anon_sym_U_DQUOTE] = ACTIONS(103), + [anon_sym_u8_DQUOTE] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_true] = ACTIONS(167), + [sym_false] = ACTIONS(167), + [anon_sym_NULL] = ACTIONS(107), + [anon_sym_nullptr] = ACTIONS(107), [sym_comment] = ACTIONS(3), }, [73] = { - [sym_declaration] = STATE(476), - [sym__declaration_modifiers] = STATE(697), - [sym__declaration_specifiers] = STATE(1130), - [sym_attribute_specifier] = STATE(697), - [sym_attribute_declaration] = STATE(697), - [sym_ms_declspec_modifier] = STATE(697), - [sym_storage_class_specifier] = STATE(697), - [sym_type_qualifier] = STATE(697), - [sym_alignas_qualifier] = STATE(703), - [sym_type_specifier] = STATE(710), - [sym_sized_type_specifier] = STATE(746), - [sym_enum_specifier] = STATE(746), - [sym_struct_specifier] = STATE(746), - [sym_union_specifier] = STATE(746), - [sym__for_statement_body] = STATE(1984), - [sym_expression] = STATE(1062), - [sym__string] = STATE(663), - [sym_comma_expression] = STATE(1854), - [sym_conditional_expression] = STATE(663), - [sym_assignment_expression] = STATE(663), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(663), - [sym_binary_expression] = STATE(663), - [sym_update_expression] = STATE(663), - [sym_cast_expression] = STATE(663), - [sym_sizeof_expression] = STATE(663), - [sym_alignof_expression] = STATE(663), - [sym_offsetof_expression] = STATE(663), - [sym_generic_expression] = STATE(663), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(663), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(663), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(663), - [sym_concatenated_string] = STATE(663), - [sym_string_literal] = STATE(659), - [sym_null] = STATE(663), - [sym_macro_type_specifier] = STATE(746), - [aux_sym__declaration_specifiers_repeat1] = STATE(697), - [aux_sym_sized_type_specifier_repeat1] = STATE(747), - [sym_identifier] = ACTIONS(1133), + [sym_declaration] = STATE(601), + [sym__declaration_modifiers] = STATE(805), + [sym__declaration_specifiers] = STATE(1247), + [sym_attribute_specifier] = STATE(805), + [sym_attribute_declaration] = STATE(805), + [sym_ms_declspec_modifier] = STATE(805), + [sym_storage_class_specifier] = STATE(805), + [sym_type_qualifier] = STATE(805), + [sym_alignas_qualifier] = STATE(799), + [sym_type_specifier] = STATE(807), + [sym_sized_type_specifier] = STATE(873), + [sym_enum_specifier] = STATE(873), + [sym_struct_specifier] = STATE(873), + [sym_union_specifier] = STATE(873), + [sym__for_statement_body] = STATE(2202), + [sym_expression] = STATE(1189), + [sym__string] = STATE(758), + [sym_comma_expression] = STATE(2084), + [sym_conditional_expression] = STATE(758), + [sym_assignment_expression] = STATE(758), + [sym_pointer_expression] = STATE(944), + [sym_unary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_cast_expression] = STATE(758), + [sym_sizeof_expression] = STATE(758), + [sym_alignof_expression] = STATE(758), + [sym_offsetof_expression] = STATE(758), + [sym_generic_expression] = STATE(758), + [sym_subscript_expression] = STATE(944), + [sym_call_expression] = STATE(944), + [sym_gnu_asm_expression] = STATE(758), + [sym_field_expression] = STATE(944), + [sym_compound_literal_expression] = STATE(758), + [sym_parenthesized_expression] = STATE(944), + [sym_char_literal] = STATE(758), + [sym_concatenated_string] = STATE(758), + [sym_string_literal] = STATE(671), + [sym_null] = STATE(758), + [sym_macro_type_specifier] = STATE(873), + [aux_sym__declaration_specifiers_repeat1] = STATE(805), + [aux_sym_sized_type_specifier_repeat1] = STATE(890), + [sym_identifier] = ACTIONS(1141), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -24303,118 +25184,119 @@ 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(1135), - [anon_sym___extension__] = ACTIONS(51), - [anon_sym_extern] = ACTIONS(49), + [anon_sym_SEMI] = ACTIONS(1143), + [anon_sym___extension__] = ACTIONS(53), + [anon_sym_extern] = ACTIONS(51), [anon_sym___attribute__] = ACTIONS(33), [anon_sym___scanf] = ACTIONS(35), [anon_sym___printf] = ACTIONS(35), [anon_sym___read_mostly] = ACTIONS(37), [anon_sym___must_hold] = ACTIONS(33), [anon_sym___ro_after_init] = ACTIONS(37), - [anon_sym___init] = ACTIONS(37), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1137), + [anon_sym___noreturn] = ACTIONS(37), + [anon_sym___cold] = ACTIONS(37), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1145), [anon_sym___declspec] = ACTIONS(41), - [anon_sym_signed] = ACTIONS(47), - [anon_sym_unsigned] = ACTIONS(47), - [anon_sym_long] = ACTIONS(47), - [anon_sym_short] = ACTIONS(47), - [anon_sym_static] = ACTIONS(49), - [anon_sym_auto] = ACTIONS(49), - [anon_sym_register] = ACTIONS(49), - [anon_sym_inline] = ACTIONS(49), - [anon_sym___inline] = ACTIONS(49), - [anon_sym___inline__] = ACTIONS(49), - [anon_sym___forceinline] = ACTIONS(49), - [anon_sym_thread_local] = ACTIONS(49), - [anon_sym___thread] = ACTIONS(49), - [anon_sym_const] = ACTIONS(51), - [anon_sym_constexpr] = ACTIONS(51), - [anon_sym_volatile] = ACTIONS(51), - [anon_sym_restrict] = ACTIONS(51), - [anon_sym___restrict__] = ACTIONS(51), - [anon_sym__Atomic] = ACTIONS(51), - [anon_sym__Noreturn] = ACTIONS(51), - [anon_sym_noreturn] = ACTIONS(51), - [anon_sym_alignas] = ACTIONS(53), - [anon_sym__Alignas] = ACTIONS(53), - [sym_primitive_type] = ACTIONS(55), - [anon_sym_enum] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [anon_sym___alignof__] = ACTIONS(89), - [anon_sym___alignof] = ACTIONS(89), - [anon_sym__alignof] = ACTIONS(89), - [anon_sym_alignof] = ACTIONS(89), - [anon_sym__Alignof] = ACTIONS(89), - [anon_sym_offsetof] = ACTIONS(91), - [anon_sym__Generic] = ACTIONS(93), - [anon_sym_asm] = ACTIONS(95), - [anon_sym___asm__] = ACTIONS(95), - [sym_number_literal] = ACTIONS(163), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(165), - [sym_false] = ACTIONS(165), - [anon_sym_NULL] = ACTIONS(105), - [anon_sym_nullptr] = ACTIONS(105), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_const] = ACTIONS(53), + [anon_sym_constexpr] = ACTIONS(53), + [anon_sym_volatile] = ACTIONS(53), + [anon_sym_restrict] = ACTIONS(53), + [anon_sym___restrict__] = ACTIONS(53), + [anon_sym__Atomic] = ACTIONS(53), + [anon_sym__Noreturn] = ACTIONS(53), + [anon_sym_noreturn] = ACTIONS(53), + [anon_sym_alignas] = ACTIONS(55), + [anon_sym__Alignas] = ACTIONS(55), + [sym_primitive_type] = ACTIONS(57), + [anon_sym_enum] = ACTIONS(59), + [anon_sym_struct] = ACTIONS(61), + [anon_sym_union] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(87), + [anon_sym_sizeof] = ACTIONS(89), + [anon_sym___alignof__] = ACTIONS(91), + [anon_sym___alignof] = ACTIONS(91), + [anon_sym__alignof] = ACTIONS(91), + [anon_sym_alignof] = ACTIONS(91), + [anon_sym__Alignof] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(93), + [anon_sym__Generic] = ACTIONS(95), + [anon_sym_asm] = ACTIONS(97), + [anon_sym___asm__] = ACTIONS(97), + [sym_number_literal] = ACTIONS(165), + [anon_sym_L_SQUOTE] = ACTIONS(101), + [anon_sym_u_SQUOTE] = ACTIONS(101), + [anon_sym_U_SQUOTE] = ACTIONS(101), + [anon_sym_u8_SQUOTE] = ACTIONS(101), + [anon_sym_SQUOTE] = ACTIONS(101), + [anon_sym_L_DQUOTE] = ACTIONS(103), + [anon_sym_u_DQUOTE] = ACTIONS(103), + [anon_sym_U_DQUOTE] = ACTIONS(103), + [anon_sym_u8_DQUOTE] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_true] = ACTIONS(167), + [sym_false] = ACTIONS(167), + [anon_sym_NULL] = ACTIONS(107), + [anon_sym_nullptr] = ACTIONS(107), [sym_comment] = ACTIONS(3), }, [74] = { - [sym_declaration] = STATE(476), - [sym__declaration_modifiers] = STATE(697), - [sym__declaration_specifiers] = STATE(1130), - [sym_attribute_specifier] = STATE(697), - [sym_attribute_declaration] = STATE(697), - [sym_ms_declspec_modifier] = STATE(697), - [sym_storage_class_specifier] = STATE(697), - [sym_type_qualifier] = STATE(697), - [sym_alignas_qualifier] = STATE(703), - [sym_type_specifier] = STATE(710), - [sym_sized_type_specifier] = STATE(746), - [sym_enum_specifier] = STATE(746), - [sym_struct_specifier] = STATE(746), - [sym_union_specifier] = STATE(746), - [sym__for_statement_body] = STATE(2053), - [sym_expression] = STATE(1062), - [sym__string] = STATE(663), - [sym_comma_expression] = STATE(1854), - [sym_conditional_expression] = STATE(663), - [sym_assignment_expression] = STATE(663), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(663), - [sym_binary_expression] = STATE(663), - [sym_update_expression] = STATE(663), - [sym_cast_expression] = STATE(663), - [sym_sizeof_expression] = STATE(663), - [sym_alignof_expression] = STATE(663), - [sym_offsetof_expression] = STATE(663), - [sym_generic_expression] = STATE(663), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(663), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(663), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(663), - [sym_concatenated_string] = STATE(663), - [sym_string_literal] = STATE(659), - [sym_null] = STATE(663), - [sym_macro_type_specifier] = STATE(746), - [aux_sym__declaration_specifiers_repeat1] = STATE(697), - [aux_sym_sized_type_specifier_repeat1] = STATE(747), - [sym_identifier] = ACTIONS(1133), + [sym_declaration] = STATE(601), + [sym__declaration_modifiers] = STATE(805), + [sym__declaration_specifiers] = STATE(1247), + [sym_attribute_specifier] = STATE(805), + [sym_attribute_declaration] = STATE(805), + [sym_ms_declspec_modifier] = STATE(805), + [sym_storage_class_specifier] = STATE(805), + [sym_type_qualifier] = STATE(805), + [sym_alignas_qualifier] = STATE(799), + [sym_type_specifier] = STATE(807), + [sym_sized_type_specifier] = STATE(873), + [sym_enum_specifier] = STATE(873), + [sym_struct_specifier] = STATE(873), + [sym_union_specifier] = STATE(873), + [sym__for_statement_body] = STATE(2153), + [sym_expression] = STATE(1189), + [sym__string] = STATE(758), + [sym_comma_expression] = STATE(2084), + [sym_conditional_expression] = STATE(758), + [sym_assignment_expression] = STATE(758), + [sym_pointer_expression] = STATE(944), + [sym_unary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_cast_expression] = STATE(758), + [sym_sizeof_expression] = STATE(758), + [sym_alignof_expression] = STATE(758), + [sym_offsetof_expression] = STATE(758), + [sym_generic_expression] = STATE(758), + [sym_subscript_expression] = STATE(944), + [sym_call_expression] = STATE(944), + [sym_gnu_asm_expression] = STATE(758), + [sym_field_expression] = STATE(944), + [sym_compound_literal_expression] = STATE(758), + [sym_parenthesized_expression] = STATE(944), + [sym_char_literal] = STATE(758), + [sym_concatenated_string] = STATE(758), + [sym_string_literal] = STATE(671), + [sym_null] = STATE(758), + [sym_macro_type_specifier] = STATE(873), + [aux_sym__declaration_specifiers_repeat1] = STATE(805), + [aux_sym_sized_type_specifier_repeat1] = STATE(890), + [sym_identifier] = ACTIONS(1141), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -24422,516 +25304,303 @@ 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(1135), - [anon_sym___extension__] = ACTIONS(51), - [anon_sym_extern] = ACTIONS(49), + [anon_sym_SEMI] = ACTIONS(1143), + [anon_sym___extension__] = ACTIONS(53), + [anon_sym_extern] = ACTIONS(51), [anon_sym___attribute__] = ACTIONS(33), [anon_sym___scanf] = ACTIONS(35), [anon_sym___printf] = ACTIONS(35), [anon_sym___read_mostly] = ACTIONS(37), [anon_sym___must_hold] = ACTIONS(33), [anon_sym___ro_after_init] = ACTIONS(37), - [anon_sym___init] = ACTIONS(37), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1137), + [anon_sym___noreturn] = ACTIONS(37), + [anon_sym___cold] = ACTIONS(37), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1145), [anon_sym___declspec] = ACTIONS(41), - [anon_sym_signed] = ACTIONS(47), - [anon_sym_unsigned] = ACTIONS(47), - [anon_sym_long] = ACTIONS(47), - [anon_sym_short] = ACTIONS(47), - [anon_sym_static] = ACTIONS(49), - [anon_sym_auto] = ACTIONS(49), - [anon_sym_register] = ACTIONS(49), - [anon_sym_inline] = ACTIONS(49), - [anon_sym___inline] = ACTIONS(49), - [anon_sym___inline__] = ACTIONS(49), - [anon_sym___forceinline] = ACTIONS(49), - [anon_sym_thread_local] = ACTIONS(49), - [anon_sym___thread] = ACTIONS(49), - [anon_sym_const] = ACTIONS(51), - [anon_sym_constexpr] = ACTIONS(51), - [anon_sym_volatile] = ACTIONS(51), - [anon_sym_restrict] = ACTIONS(51), - [anon_sym___restrict__] = ACTIONS(51), - [anon_sym__Atomic] = ACTIONS(51), - [anon_sym__Noreturn] = ACTIONS(51), - [anon_sym_noreturn] = ACTIONS(51), - [anon_sym_alignas] = ACTIONS(53), - [anon_sym__Alignas] = ACTIONS(53), - [sym_primitive_type] = ACTIONS(55), - [anon_sym_enum] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [anon_sym___alignof__] = ACTIONS(89), - [anon_sym___alignof] = ACTIONS(89), - [anon_sym__alignof] = ACTIONS(89), - [anon_sym_alignof] = ACTIONS(89), - [anon_sym__Alignof] = ACTIONS(89), - [anon_sym_offsetof] = ACTIONS(91), - [anon_sym__Generic] = ACTIONS(93), - [anon_sym_asm] = ACTIONS(95), - [anon_sym___asm__] = ACTIONS(95), - [sym_number_literal] = ACTIONS(163), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(165), - [sym_false] = ACTIONS(165), - [anon_sym_NULL] = ACTIONS(105), - [anon_sym_nullptr] = ACTIONS(105), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_const] = ACTIONS(53), + [anon_sym_constexpr] = ACTIONS(53), + [anon_sym_volatile] = ACTIONS(53), + [anon_sym_restrict] = ACTIONS(53), + [anon_sym___restrict__] = ACTIONS(53), + [anon_sym__Atomic] = ACTIONS(53), + [anon_sym__Noreturn] = ACTIONS(53), + [anon_sym_noreturn] = ACTIONS(53), + [anon_sym_alignas] = ACTIONS(55), + [anon_sym__Alignas] = ACTIONS(55), + [sym_primitive_type] = ACTIONS(57), + [anon_sym_enum] = ACTIONS(59), + [anon_sym_struct] = ACTIONS(61), + [anon_sym_union] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(87), + [anon_sym_sizeof] = ACTIONS(89), + [anon_sym___alignof__] = ACTIONS(91), + [anon_sym___alignof] = ACTIONS(91), + [anon_sym__alignof] = ACTIONS(91), + [anon_sym_alignof] = ACTIONS(91), + [anon_sym__Alignof] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(93), + [anon_sym__Generic] = ACTIONS(95), + [anon_sym_asm] = ACTIONS(97), + [anon_sym___asm__] = ACTIONS(97), + [sym_number_literal] = ACTIONS(165), + [anon_sym_L_SQUOTE] = ACTIONS(101), + [anon_sym_u_SQUOTE] = ACTIONS(101), + [anon_sym_U_SQUOTE] = ACTIONS(101), + [anon_sym_u8_SQUOTE] = ACTIONS(101), + [anon_sym_SQUOTE] = ACTIONS(101), + [anon_sym_L_DQUOTE] = ACTIONS(103), + [anon_sym_u_DQUOTE] = ACTIONS(103), + [anon_sym_U_DQUOTE] = ACTIONS(103), + [anon_sym_u8_DQUOTE] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_true] = ACTIONS(167), + [sym_false] = ACTIONS(167), + [anon_sym_NULL] = ACTIONS(107), + [anon_sym_nullptr] = ACTIONS(107), [sym_comment] = ACTIONS(3), }, [75] = { - [sym_else_clause] = STATE(109), - [sym_identifier] = ACTIONS(1139), - [aux_sym_preproc_include_token1] = ACTIONS(1139), - [aux_sym_preproc_def_token1] = ACTIONS(1139), - [aux_sym_preproc_if_token1] = ACTIONS(1139), - [aux_sym_preproc_if_token2] = ACTIONS(1139), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1139), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1139), - [aux_sym_preproc_else_token1] = ACTIONS(1139), - [aux_sym_preproc_elif_token1] = ACTIONS(1139), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1139), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1139), - [sym_preproc_directive] = ACTIONS(1139), - [anon_sym_LPAREN2] = ACTIONS(1141), - [anon_sym_BANG] = ACTIONS(1141), - [anon_sym_TILDE] = ACTIONS(1141), - [anon_sym_DASH] = ACTIONS(1139), - [anon_sym_PLUS] = ACTIONS(1139), - [anon_sym_STAR] = ACTIONS(1141), - [anon_sym_AMP] = ACTIONS(1141), - [anon_sym_SEMI] = ACTIONS(1141), - [anon_sym___extension__] = ACTIONS(1139), - [anon_sym_typedef] = ACTIONS(1139), - [anon_sym_extern] = ACTIONS(1139), - [anon_sym___attribute__] = ACTIONS(1139), - [anon_sym___scanf] = ACTIONS(1139), - [anon_sym___printf] = ACTIONS(1139), - [anon_sym___read_mostly] = ACTIONS(1139), - [anon_sym___must_hold] = ACTIONS(1139), - [anon_sym___ro_after_init] = ACTIONS(1139), - [anon_sym___init] = ACTIONS(1139), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1141), - [anon_sym___declspec] = ACTIONS(1139), - [anon_sym___cdecl] = ACTIONS(1139), - [anon_sym___clrcall] = ACTIONS(1139), - [anon_sym___stdcall] = ACTIONS(1139), - [anon_sym___fastcall] = ACTIONS(1139), - [anon_sym___thiscall] = ACTIONS(1139), - [anon_sym___vectorcall] = ACTIONS(1139), - [anon_sym_LBRACE] = ACTIONS(1141), - [anon_sym_signed] = ACTIONS(1139), - [anon_sym_unsigned] = ACTIONS(1139), - [anon_sym_long] = ACTIONS(1139), - [anon_sym_short] = ACTIONS(1139), - [anon_sym_static] = ACTIONS(1139), - [anon_sym_auto] = ACTIONS(1139), - [anon_sym_register] = ACTIONS(1139), - [anon_sym_inline] = ACTIONS(1139), - [anon_sym___inline] = ACTIONS(1139), - [anon_sym___inline__] = ACTIONS(1139), - [anon_sym___forceinline] = ACTIONS(1139), - [anon_sym_thread_local] = ACTIONS(1139), - [anon_sym___thread] = ACTIONS(1139), - [anon_sym_const] = ACTIONS(1139), - [anon_sym_constexpr] = ACTIONS(1139), - [anon_sym_volatile] = ACTIONS(1139), - [anon_sym_restrict] = ACTIONS(1139), - [anon_sym___restrict__] = ACTIONS(1139), - [anon_sym__Atomic] = ACTIONS(1139), - [anon_sym__Noreturn] = ACTIONS(1139), - [anon_sym_noreturn] = ACTIONS(1139), - [anon_sym_alignas] = ACTIONS(1139), - [anon_sym__Alignas] = ACTIONS(1139), - [sym_primitive_type] = ACTIONS(1139), - [anon_sym_enum] = ACTIONS(1139), - [anon_sym_struct] = ACTIONS(1139), - [anon_sym_union] = ACTIONS(1139), - [anon_sym_if] = ACTIONS(1139), - [anon_sym_else] = ACTIONS(1143), - [anon_sym_switch] = ACTIONS(1139), - [anon_sym_case] = ACTIONS(1139), - [anon_sym_default] = ACTIONS(1139), - [anon_sym_while] = ACTIONS(1139), - [anon_sym_do] = ACTIONS(1139), - [anon_sym_for] = ACTIONS(1139), - [anon_sym_return] = ACTIONS(1139), - [anon_sym_break] = ACTIONS(1139), - [anon_sym_continue] = ACTIONS(1139), - [anon_sym_goto] = ACTIONS(1139), - [anon_sym___try] = ACTIONS(1139), - [anon_sym___leave] = ACTIONS(1139), - [anon_sym_DASH_DASH] = ACTIONS(1141), - [anon_sym_PLUS_PLUS] = ACTIONS(1141), - [anon_sym_sizeof] = ACTIONS(1139), - [anon_sym___alignof__] = ACTIONS(1139), - [anon_sym___alignof] = ACTIONS(1139), - [anon_sym__alignof] = ACTIONS(1139), - [anon_sym_alignof] = ACTIONS(1139), - [anon_sym__Alignof] = ACTIONS(1139), - [anon_sym_offsetof] = ACTIONS(1139), - [anon_sym__Generic] = ACTIONS(1139), - [anon_sym_asm] = ACTIONS(1139), - [anon_sym___asm__] = ACTIONS(1139), - [sym_number_literal] = ACTIONS(1141), - [anon_sym_L_SQUOTE] = ACTIONS(1141), - [anon_sym_u_SQUOTE] = ACTIONS(1141), - [anon_sym_U_SQUOTE] = ACTIONS(1141), - [anon_sym_u8_SQUOTE] = ACTIONS(1141), - [anon_sym_SQUOTE] = ACTIONS(1141), - [anon_sym_L_DQUOTE] = ACTIONS(1141), - [anon_sym_u_DQUOTE] = ACTIONS(1141), - [anon_sym_U_DQUOTE] = ACTIONS(1141), - [anon_sym_u8_DQUOTE] = ACTIONS(1141), - [anon_sym_DQUOTE] = ACTIONS(1141), - [sym_true] = ACTIONS(1139), - [sym_false] = ACTIONS(1139), - [anon_sym_NULL] = ACTIONS(1139), - [anon_sym_nullptr] = ACTIONS(1139), + [sym_else_clause] = STATE(93), + [sym_identifier] = ACTIONS(1147), + [aux_sym_preproc_include_token1] = ACTIONS(1147), + [aux_sym_preproc_def_token1] = ACTIONS(1147), + [aux_sym_preproc_if_token1] = ACTIONS(1147), + [aux_sym_preproc_if_token2] = ACTIONS(1147), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1147), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1147), + [aux_sym_preproc_else_token1] = ACTIONS(1147), + [aux_sym_preproc_elif_token1] = ACTIONS(1147), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1147), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1147), + [sym_preproc_directive] = ACTIONS(1147), + [anon_sym_LPAREN2] = ACTIONS(1149), + [anon_sym_BANG] = ACTIONS(1149), + [anon_sym_TILDE] = ACTIONS(1149), + [anon_sym_DASH] = ACTIONS(1147), + [anon_sym_PLUS] = ACTIONS(1147), + [anon_sym_STAR] = ACTIONS(1149), + [anon_sym_AMP] = ACTIONS(1149), + [anon_sym_SEMI] = ACTIONS(1149), + [anon_sym___extension__] = ACTIONS(1147), + [anon_sym_typedef] = ACTIONS(1147), + [anon_sym_extern] = ACTIONS(1147), + [anon_sym___attribute__] = ACTIONS(1147), + [anon_sym___scanf] = ACTIONS(1147), + [anon_sym___printf] = ACTIONS(1147), + [anon_sym___read_mostly] = ACTIONS(1147), + [anon_sym___must_hold] = ACTIONS(1147), + [anon_sym___ro_after_init] = ACTIONS(1147), + [anon_sym___noreturn] = ACTIONS(1147), + [anon_sym___cold] = ACTIONS(1147), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1149), + [anon_sym___declspec] = ACTIONS(1147), + [anon_sym___init] = ACTIONS(1147), + [anon_sym___exit] = ACTIONS(1147), + [anon_sym___cdecl] = ACTIONS(1147), + [anon_sym___clrcall] = ACTIONS(1147), + [anon_sym___stdcall] = ACTIONS(1147), + [anon_sym___fastcall] = ACTIONS(1147), + [anon_sym___thiscall] = ACTIONS(1147), + [anon_sym___vectorcall] = ACTIONS(1147), + [anon_sym_LBRACE] = ACTIONS(1149), + [anon_sym_signed] = ACTIONS(1147), + [anon_sym_unsigned] = ACTIONS(1147), + [anon_sym_long] = ACTIONS(1147), + [anon_sym_short] = ACTIONS(1147), + [anon_sym_static] = ACTIONS(1147), + [anon_sym_auto] = ACTIONS(1147), + [anon_sym_register] = ACTIONS(1147), + [anon_sym_inline] = ACTIONS(1147), + [anon_sym___inline] = ACTIONS(1147), + [anon_sym___inline__] = ACTIONS(1147), + [anon_sym___forceinline] = ACTIONS(1147), + [anon_sym_thread_local] = ACTIONS(1147), + [anon_sym___thread] = ACTIONS(1147), + [anon_sym_const] = ACTIONS(1147), + [anon_sym_constexpr] = ACTIONS(1147), + [anon_sym_volatile] = ACTIONS(1147), + [anon_sym_restrict] = ACTIONS(1147), + [anon_sym___restrict__] = ACTIONS(1147), + [anon_sym__Atomic] = ACTIONS(1147), + [anon_sym__Noreturn] = ACTIONS(1147), + [anon_sym_noreturn] = ACTIONS(1147), + [anon_sym_alignas] = ACTIONS(1147), + [anon_sym__Alignas] = ACTIONS(1147), + [sym_primitive_type] = ACTIONS(1147), + [anon_sym_enum] = ACTIONS(1147), + [anon_sym_struct] = ACTIONS(1147), + [anon_sym_union] = ACTIONS(1147), + [anon_sym_if] = ACTIONS(1147), + [anon_sym_else] = ACTIONS(1151), + [anon_sym_switch] = ACTIONS(1147), + [anon_sym_case] = ACTIONS(1147), + [anon_sym_default] = ACTIONS(1147), + [anon_sym_while] = ACTIONS(1147), + [anon_sym_do] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1147), + [anon_sym_return] = ACTIONS(1147), + [anon_sym_break] = ACTIONS(1147), + [anon_sym_continue] = ACTIONS(1147), + [anon_sym_goto] = ACTIONS(1147), + [anon_sym___try] = ACTIONS(1147), + [anon_sym___leave] = ACTIONS(1147), + [anon_sym_DASH_DASH] = ACTIONS(1149), + [anon_sym_PLUS_PLUS] = ACTIONS(1149), + [anon_sym_sizeof] = ACTIONS(1147), + [anon_sym___alignof__] = ACTIONS(1147), + [anon_sym___alignof] = ACTIONS(1147), + [anon_sym__alignof] = ACTIONS(1147), + [anon_sym_alignof] = ACTIONS(1147), + [anon_sym__Alignof] = ACTIONS(1147), + [anon_sym_offsetof] = ACTIONS(1147), + [anon_sym__Generic] = ACTIONS(1147), + [anon_sym_asm] = ACTIONS(1147), + [anon_sym___asm__] = ACTIONS(1147), + [sym_number_literal] = ACTIONS(1149), + [anon_sym_L_SQUOTE] = ACTIONS(1149), + [anon_sym_u_SQUOTE] = ACTIONS(1149), + [anon_sym_U_SQUOTE] = ACTIONS(1149), + [anon_sym_u8_SQUOTE] = ACTIONS(1149), + [anon_sym_SQUOTE] = ACTIONS(1149), + [anon_sym_L_DQUOTE] = ACTIONS(1149), + [anon_sym_u_DQUOTE] = ACTIONS(1149), + [anon_sym_U_DQUOTE] = ACTIONS(1149), + [anon_sym_u8_DQUOTE] = ACTIONS(1149), + [anon_sym_DQUOTE] = ACTIONS(1149), + [sym_true] = ACTIONS(1147), + [sym_false] = ACTIONS(1147), + [anon_sym_NULL] = ACTIONS(1147), + [anon_sym_nullptr] = ACTIONS(1147), [sym_comment] = ACTIONS(3), }, [76] = { - [sym_identifier] = ACTIONS(1145), - [aux_sym_preproc_include_token1] = ACTIONS(1145), - [aux_sym_preproc_def_token1] = ACTIONS(1145), - [aux_sym_preproc_if_token1] = ACTIONS(1145), - [aux_sym_preproc_if_token2] = ACTIONS(1145), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1145), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1145), - [aux_sym_preproc_else_token1] = ACTIONS(1145), - [aux_sym_preproc_elif_token1] = ACTIONS(1145), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1145), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1145), - [sym_preproc_directive] = ACTIONS(1145), - [anon_sym_LPAREN2] = ACTIONS(1147), - [anon_sym_BANG] = ACTIONS(1147), - [anon_sym_TILDE] = ACTIONS(1147), - [anon_sym_DASH] = ACTIONS(1145), - [anon_sym_PLUS] = ACTIONS(1145), - [anon_sym_STAR] = ACTIONS(1147), - [anon_sym_AMP] = ACTIONS(1147), - [anon_sym_SEMI] = ACTIONS(1147), - [anon_sym___extension__] = ACTIONS(1145), - [anon_sym_typedef] = ACTIONS(1145), - [anon_sym_extern] = ACTIONS(1145), - [anon_sym___attribute__] = ACTIONS(1145), - [anon_sym___scanf] = ACTIONS(1145), - [anon_sym___printf] = ACTIONS(1145), - [anon_sym___read_mostly] = ACTIONS(1145), - [anon_sym___must_hold] = ACTIONS(1145), - [anon_sym___ro_after_init] = ACTIONS(1145), - [anon_sym___init] = ACTIONS(1145), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1147), - [anon_sym___declspec] = ACTIONS(1145), - [anon_sym___cdecl] = ACTIONS(1145), - [anon_sym___clrcall] = ACTIONS(1145), - [anon_sym___stdcall] = ACTIONS(1145), - [anon_sym___fastcall] = ACTIONS(1145), - [anon_sym___thiscall] = ACTIONS(1145), - [anon_sym___vectorcall] = ACTIONS(1145), - [anon_sym_LBRACE] = ACTIONS(1147), - [anon_sym_signed] = ACTIONS(1145), - [anon_sym_unsigned] = ACTIONS(1145), - [anon_sym_long] = ACTIONS(1145), - [anon_sym_short] = ACTIONS(1145), - [anon_sym_static] = ACTIONS(1145), - [anon_sym_auto] = ACTIONS(1145), - [anon_sym_register] = ACTIONS(1145), - [anon_sym_inline] = ACTIONS(1145), - [anon_sym___inline] = ACTIONS(1145), - [anon_sym___inline__] = ACTIONS(1145), - [anon_sym___forceinline] = ACTIONS(1145), - [anon_sym_thread_local] = ACTIONS(1145), - [anon_sym___thread] = ACTIONS(1145), - [anon_sym_const] = ACTIONS(1145), - [anon_sym_constexpr] = ACTIONS(1145), - [anon_sym_volatile] = ACTIONS(1145), - [anon_sym_restrict] = ACTIONS(1145), - [anon_sym___restrict__] = ACTIONS(1145), - [anon_sym__Atomic] = ACTIONS(1145), - [anon_sym__Noreturn] = ACTIONS(1145), - [anon_sym_noreturn] = ACTIONS(1145), - [anon_sym_alignas] = ACTIONS(1145), - [anon_sym__Alignas] = ACTIONS(1145), - [sym_primitive_type] = ACTIONS(1145), - [anon_sym_enum] = ACTIONS(1145), - [anon_sym_struct] = ACTIONS(1145), - [anon_sym_union] = ACTIONS(1145), - [anon_sym_if] = ACTIONS(1145), - [anon_sym_else] = ACTIONS(1145), - [anon_sym_switch] = ACTIONS(1145), - [anon_sym_case] = ACTIONS(1145), - [anon_sym_default] = ACTIONS(1145), - [anon_sym_while] = ACTIONS(1145), - [anon_sym_do] = ACTIONS(1145), - [anon_sym_for] = ACTIONS(1145), - [anon_sym_return] = ACTIONS(1145), - [anon_sym_break] = ACTIONS(1145), - [anon_sym_continue] = ACTIONS(1145), - [anon_sym_goto] = ACTIONS(1145), - [anon_sym___try] = ACTIONS(1145), - [anon_sym___leave] = ACTIONS(1145), - [anon_sym_DASH_DASH] = ACTIONS(1147), - [anon_sym_PLUS_PLUS] = ACTIONS(1147), - [anon_sym_sizeof] = ACTIONS(1145), - [anon_sym___alignof__] = ACTIONS(1145), - [anon_sym___alignof] = ACTIONS(1145), - [anon_sym__alignof] = ACTIONS(1145), - [anon_sym_alignof] = ACTIONS(1145), - [anon_sym__Alignof] = ACTIONS(1145), - [anon_sym_offsetof] = ACTIONS(1145), - [anon_sym__Generic] = ACTIONS(1145), - [anon_sym_asm] = ACTIONS(1145), - [anon_sym___asm__] = ACTIONS(1145), - [sym_number_literal] = ACTIONS(1147), - [anon_sym_L_SQUOTE] = ACTIONS(1147), - [anon_sym_u_SQUOTE] = ACTIONS(1147), - [anon_sym_U_SQUOTE] = ACTIONS(1147), - [anon_sym_u8_SQUOTE] = ACTIONS(1147), - [anon_sym_SQUOTE] = ACTIONS(1147), - [anon_sym_L_DQUOTE] = ACTIONS(1147), - [anon_sym_u_DQUOTE] = ACTIONS(1147), - [anon_sym_U_DQUOTE] = ACTIONS(1147), - [anon_sym_u8_DQUOTE] = ACTIONS(1147), - [anon_sym_DQUOTE] = ACTIONS(1147), - [sym_true] = ACTIONS(1145), - [sym_false] = ACTIONS(1145), - [anon_sym_NULL] = ACTIONS(1145), - [anon_sym_nullptr] = ACTIONS(1145), + [sym_identifier] = ACTIONS(1153), + [aux_sym_preproc_include_token1] = ACTIONS(1153), + [aux_sym_preproc_def_token1] = ACTIONS(1153), + [aux_sym_preproc_if_token1] = ACTIONS(1153), + [aux_sym_preproc_if_token2] = ACTIONS(1153), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1153), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1153), + [aux_sym_preproc_else_token1] = ACTIONS(1153), + [aux_sym_preproc_elif_token1] = ACTIONS(1153), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1153), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1153), + [sym_preproc_directive] = ACTIONS(1153), + [anon_sym_LPAREN2] = ACTIONS(1155), + [anon_sym_BANG] = ACTIONS(1155), + [anon_sym_TILDE] = ACTIONS(1155), + [anon_sym_DASH] = ACTIONS(1153), + [anon_sym_PLUS] = ACTIONS(1153), + [anon_sym_STAR] = ACTIONS(1155), + [anon_sym_AMP] = ACTIONS(1155), + [anon_sym_SEMI] = ACTIONS(1155), + [anon_sym___extension__] = ACTIONS(1153), + [anon_sym_typedef] = ACTIONS(1153), + [anon_sym_extern] = ACTIONS(1153), + [anon_sym___attribute__] = ACTIONS(1153), + [anon_sym___scanf] = ACTIONS(1153), + [anon_sym___printf] = ACTIONS(1153), + [anon_sym___read_mostly] = ACTIONS(1153), + [anon_sym___must_hold] = ACTIONS(1153), + [anon_sym___ro_after_init] = ACTIONS(1153), + [anon_sym___noreturn] = ACTIONS(1153), + [anon_sym___cold] = ACTIONS(1153), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1155), + [anon_sym___declspec] = ACTIONS(1153), + [anon_sym___init] = ACTIONS(1153), + [anon_sym___exit] = ACTIONS(1153), + [anon_sym___cdecl] = ACTIONS(1153), + [anon_sym___clrcall] = ACTIONS(1153), + [anon_sym___stdcall] = ACTIONS(1153), + [anon_sym___fastcall] = ACTIONS(1153), + [anon_sym___thiscall] = ACTIONS(1153), + [anon_sym___vectorcall] = ACTIONS(1153), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_signed] = ACTIONS(1153), + [anon_sym_unsigned] = ACTIONS(1153), + [anon_sym_long] = ACTIONS(1153), + [anon_sym_short] = ACTIONS(1153), + [anon_sym_static] = ACTIONS(1153), + [anon_sym_auto] = ACTIONS(1153), + [anon_sym_register] = ACTIONS(1153), + [anon_sym_inline] = ACTIONS(1153), + [anon_sym___inline] = ACTIONS(1153), + [anon_sym___inline__] = ACTIONS(1153), + [anon_sym___forceinline] = ACTIONS(1153), + [anon_sym_thread_local] = ACTIONS(1153), + [anon_sym___thread] = ACTIONS(1153), + [anon_sym_const] = ACTIONS(1153), + [anon_sym_constexpr] = ACTIONS(1153), + [anon_sym_volatile] = ACTIONS(1153), + [anon_sym_restrict] = ACTIONS(1153), + [anon_sym___restrict__] = ACTIONS(1153), + [anon_sym__Atomic] = ACTIONS(1153), + [anon_sym__Noreturn] = ACTIONS(1153), + [anon_sym_noreturn] = ACTIONS(1153), + [anon_sym_alignas] = ACTIONS(1153), + [anon_sym__Alignas] = ACTIONS(1153), + [sym_primitive_type] = ACTIONS(1153), + [anon_sym_enum] = ACTIONS(1153), + [anon_sym_struct] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1153), + [anon_sym_if] = ACTIONS(1153), + [anon_sym_else] = ACTIONS(1153), + [anon_sym_switch] = ACTIONS(1153), + [anon_sym_case] = ACTIONS(1153), + [anon_sym_default] = ACTIONS(1153), + [anon_sym_while] = ACTIONS(1153), + [anon_sym_do] = ACTIONS(1153), + [anon_sym_for] = ACTIONS(1153), + [anon_sym_return] = ACTIONS(1153), + [anon_sym_break] = ACTIONS(1153), + [anon_sym_continue] = ACTIONS(1153), + [anon_sym_goto] = ACTIONS(1153), + [anon_sym___try] = ACTIONS(1153), + [anon_sym___leave] = ACTIONS(1153), + [anon_sym_DASH_DASH] = ACTIONS(1155), + [anon_sym_PLUS_PLUS] = ACTIONS(1155), + [anon_sym_sizeof] = ACTIONS(1153), + [anon_sym___alignof__] = ACTIONS(1153), + [anon_sym___alignof] = ACTIONS(1153), + [anon_sym__alignof] = ACTIONS(1153), + [anon_sym_alignof] = ACTIONS(1153), + [anon_sym__Alignof] = ACTIONS(1153), + [anon_sym_offsetof] = ACTIONS(1153), + [anon_sym__Generic] = ACTIONS(1153), + [anon_sym_asm] = ACTIONS(1153), + [anon_sym___asm__] = ACTIONS(1153), + [sym_number_literal] = ACTIONS(1155), + [anon_sym_L_SQUOTE] = ACTIONS(1155), + [anon_sym_u_SQUOTE] = ACTIONS(1155), + [anon_sym_U_SQUOTE] = ACTIONS(1155), + [anon_sym_u8_SQUOTE] = ACTIONS(1155), + [anon_sym_SQUOTE] = ACTIONS(1155), + [anon_sym_L_DQUOTE] = ACTIONS(1155), + [anon_sym_u_DQUOTE] = ACTIONS(1155), + [anon_sym_U_DQUOTE] = ACTIONS(1155), + [anon_sym_u8_DQUOTE] = ACTIONS(1155), + [anon_sym_DQUOTE] = ACTIONS(1155), + [sym_true] = ACTIONS(1153), + [sym_false] = ACTIONS(1153), + [anon_sym_NULL] = ACTIONS(1153), + [anon_sym_nullptr] = ACTIONS(1153), [sym_comment] = ACTIONS(3), }, [77] = { - [sym_identifier] = ACTIONS(1149), - [aux_sym_preproc_include_token1] = ACTIONS(1149), - [aux_sym_preproc_def_token1] = ACTIONS(1149), - [aux_sym_preproc_if_token1] = ACTIONS(1149), - [aux_sym_preproc_if_token2] = ACTIONS(1149), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1149), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1149), - [aux_sym_preproc_else_token1] = ACTIONS(1149), - [aux_sym_preproc_elif_token1] = ACTIONS(1149), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1149), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1149), - [sym_preproc_directive] = ACTIONS(1149), - [anon_sym_LPAREN2] = ACTIONS(1151), - [anon_sym_BANG] = ACTIONS(1151), - [anon_sym_TILDE] = ACTIONS(1151), - [anon_sym_DASH] = ACTIONS(1149), - [anon_sym_PLUS] = ACTIONS(1149), - [anon_sym_STAR] = ACTIONS(1151), - [anon_sym_AMP] = ACTIONS(1151), - [anon_sym_SEMI] = ACTIONS(1151), - [anon_sym___extension__] = ACTIONS(1149), - [anon_sym_typedef] = ACTIONS(1149), - [anon_sym_extern] = ACTIONS(1149), - [anon_sym___attribute__] = ACTIONS(1149), - [anon_sym___scanf] = ACTIONS(1149), - [anon_sym___printf] = ACTIONS(1149), - [anon_sym___read_mostly] = ACTIONS(1149), - [anon_sym___must_hold] = ACTIONS(1149), - [anon_sym___ro_after_init] = ACTIONS(1149), - [anon_sym___init] = ACTIONS(1149), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1151), - [anon_sym___declspec] = ACTIONS(1149), - [anon_sym___cdecl] = ACTIONS(1149), - [anon_sym___clrcall] = ACTIONS(1149), - [anon_sym___stdcall] = ACTIONS(1149), - [anon_sym___fastcall] = ACTIONS(1149), - [anon_sym___thiscall] = ACTIONS(1149), - [anon_sym___vectorcall] = ACTIONS(1149), - [anon_sym_LBRACE] = ACTIONS(1151), - [anon_sym_signed] = ACTIONS(1149), - [anon_sym_unsigned] = ACTIONS(1149), - [anon_sym_long] = ACTIONS(1149), - [anon_sym_short] = ACTIONS(1149), - [anon_sym_static] = ACTIONS(1149), - [anon_sym_auto] = ACTIONS(1149), - [anon_sym_register] = ACTIONS(1149), - [anon_sym_inline] = ACTIONS(1149), - [anon_sym___inline] = ACTIONS(1149), - [anon_sym___inline__] = ACTIONS(1149), - [anon_sym___forceinline] = ACTIONS(1149), - [anon_sym_thread_local] = ACTIONS(1149), - [anon_sym___thread] = ACTIONS(1149), - [anon_sym_const] = ACTIONS(1149), - [anon_sym_constexpr] = ACTIONS(1149), - [anon_sym_volatile] = ACTIONS(1149), - [anon_sym_restrict] = ACTIONS(1149), - [anon_sym___restrict__] = ACTIONS(1149), - [anon_sym__Atomic] = ACTIONS(1149), - [anon_sym__Noreturn] = ACTIONS(1149), - [anon_sym_noreturn] = ACTIONS(1149), - [anon_sym_alignas] = ACTIONS(1149), - [anon_sym__Alignas] = ACTIONS(1149), - [sym_primitive_type] = ACTIONS(1149), - [anon_sym_enum] = ACTIONS(1149), - [anon_sym_struct] = ACTIONS(1149), - [anon_sym_union] = ACTIONS(1149), - [anon_sym_if] = ACTIONS(1149), - [anon_sym_else] = ACTIONS(1149), - [anon_sym_switch] = ACTIONS(1149), - [anon_sym_case] = ACTIONS(1149), - [anon_sym_default] = ACTIONS(1149), - [anon_sym_while] = ACTIONS(1149), - [anon_sym_do] = ACTIONS(1149), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_return] = ACTIONS(1149), - [anon_sym_break] = ACTIONS(1149), - [anon_sym_continue] = ACTIONS(1149), - [anon_sym_goto] = ACTIONS(1149), - [anon_sym___try] = ACTIONS(1149), - [anon_sym___leave] = ACTIONS(1149), - [anon_sym_DASH_DASH] = ACTIONS(1151), - [anon_sym_PLUS_PLUS] = ACTIONS(1151), - [anon_sym_sizeof] = ACTIONS(1149), - [anon_sym___alignof__] = ACTIONS(1149), - [anon_sym___alignof] = ACTIONS(1149), - [anon_sym__alignof] = ACTIONS(1149), - [anon_sym_alignof] = ACTIONS(1149), - [anon_sym__Alignof] = ACTIONS(1149), - [anon_sym_offsetof] = ACTIONS(1149), - [anon_sym__Generic] = ACTIONS(1149), - [anon_sym_asm] = ACTIONS(1149), - [anon_sym___asm__] = ACTIONS(1149), - [sym_number_literal] = ACTIONS(1151), - [anon_sym_L_SQUOTE] = ACTIONS(1151), - [anon_sym_u_SQUOTE] = ACTIONS(1151), - [anon_sym_U_SQUOTE] = ACTIONS(1151), - [anon_sym_u8_SQUOTE] = ACTIONS(1151), - [anon_sym_SQUOTE] = ACTIONS(1151), - [anon_sym_L_DQUOTE] = ACTIONS(1151), - [anon_sym_u_DQUOTE] = ACTIONS(1151), - [anon_sym_U_DQUOTE] = ACTIONS(1151), - [anon_sym_u8_DQUOTE] = ACTIONS(1151), - [anon_sym_DQUOTE] = ACTIONS(1151), - [sym_true] = ACTIONS(1149), - [sym_false] = ACTIONS(1149), - [anon_sym_NULL] = ACTIONS(1149), - [anon_sym_nullptr] = ACTIONS(1149), - [sym_comment] = ACTIONS(3), - }, - [78] = { - [ts_builtin_sym_end] = ACTIONS(1153), - [sym_identifier] = ACTIONS(1155), - [aux_sym_preproc_include_token1] = ACTIONS(1155), - [aux_sym_preproc_def_token1] = ACTIONS(1155), - [anon_sym_COMMA] = ACTIONS(1153), - [anon_sym_RPAREN] = ACTIONS(1153), - [aux_sym_preproc_if_token1] = ACTIONS(1155), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1155), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1155), - [sym_preproc_directive] = ACTIONS(1155), - [anon_sym_LPAREN2] = ACTIONS(1153), - [anon_sym_BANG] = ACTIONS(1153), - [anon_sym_TILDE] = ACTIONS(1153), - [anon_sym_DASH] = ACTIONS(1155), - [anon_sym_PLUS] = ACTIONS(1155), - [anon_sym_STAR] = ACTIONS(1153), - [anon_sym_AMP] = ACTIONS(1153), - [anon_sym_SEMI] = ACTIONS(1153), - [anon_sym___extension__] = ACTIONS(1155), - [anon_sym_typedef] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1155), - [anon_sym___attribute__] = ACTIONS(1155), - [anon_sym___scanf] = ACTIONS(1155), - [anon_sym___printf] = ACTIONS(1155), - [anon_sym___read_mostly] = ACTIONS(1155), - [anon_sym___must_hold] = ACTIONS(1155), - [anon_sym___ro_after_init] = ACTIONS(1155), - [anon_sym___init] = ACTIONS(1155), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1153), - [anon_sym___declspec] = ACTIONS(1155), - [anon_sym___cdecl] = ACTIONS(1155), - [anon_sym___clrcall] = ACTIONS(1155), - [anon_sym___stdcall] = ACTIONS(1155), - [anon_sym___fastcall] = ACTIONS(1155), - [anon_sym___thiscall] = ACTIONS(1155), - [anon_sym___vectorcall] = ACTIONS(1155), - [anon_sym_LBRACE] = ACTIONS(1153), - [anon_sym_signed] = ACTIONS(1155), - [anon_sym_unsigned] = ACTIONS(1155), - [anon_sym_long] = ACTIONS(1155), - [anon_sym_short] = ACTIONS(1155), - [anon_sym_static] = ACTIONS(1155), - [anon_sym_auto] = ACTIONS(1155), - [anon_sym_register] = ACTIONS(1155), - [anon_sym_inline] = ACTIONS(1155), - [anon_sym___inline] = ACTIONS(1155), - [anon_sym___inline__] = ACTIONS(1155), - [anon_sym___forceinline] = ACTIONS(1155), - [anon_sym_thread_local] = ACTIONS(1155), - [anon_sym___thread] = ACTIONS(1155), - [anon_sym_const] = ACTIONS(1155), - [anon_sym_constexpr] = ACTIONS(1155), - [anon_sym_volatile] = ACTIONS(1155), - [anon_sym_restrict] = ACTIONS(1155), - [anon_sym___restrict__] = ACTIONS(1155), - [anon_sym__Atomic] = ACTIONS(1155), - [anon_sym__Noreturn] = ACTIONS(1155), - [anon_sym_noreturn] = ACTIONS(1155), - [anon_sym_alignas] = ACTIONS(1155), - [anon_sym__Alignas] = ACTIONS(1155), - [sym_primitive_type] = ACTIONS(1155), - [anon_sym_enum] = ACTIONS(1155), - [anon_sym_struct] = ACTIONS(1155), - [anon_sym_union] = ACTIONS(1155), - [anon_sym_if] = ACTIONS(1155), - [anon_sym_else] = ACTIONS(1155), - [anon_sym_switch] = ACTIONS(1155), - [anon_sym_case] = ACTIONS(1155), - [anon_sym_default] = ACTIONS(1155), - [anon_sym_while] = ACTIONS(1155), - [anon_sym_do] = ACTIONS(1155), - [anon_sym_for] = ACTIONS(1155), - [anon_sym_return] = ACTIONS(1155), - [anon_sym_break] = ACTIONS(1155), - [anon_sym_continue] = ACTIONS(1155), - [anon_sym_goto] = ACTIONS(1155), - [anon_sym___try] = ACTIONS(1155), - [anon_sym___except] = ACTIONS(1155), - [anon_sym___finally] = ACTIONS(1155), - [anon_sym___leave] = ACTIONS(1155), - [anon_sym_DASH_DASH] = ACTIONS(1153), - [anon_sym_PLUS_PLUS] = ACTIONS(1153), - [anon_sym_sizeof] = ACTIONS(1155), - [anon_sym___alignof__] = ACTIONS(1155), - [anon_sym___alignof] = ACTIONS(1155), - [anon_sym__alignof] = ACTIONS(1155), - [anon_sym_alignof] = ACTIONS(1155), - [anon_sym__Alignof] = ACTIONS(1155), - [anon_sym_offsetof] = ACTIONS(1155), - [anon_sym__Generic] = ACTIONS(1155), - [anon_sym_asm] = ACTIONS(1155), - [anon_sym___asm__] = ACTIONS(1155), - [sym_number_literal] = ACTIONS(1153), - [anon_sym_L_SQUOTE] = ACTIONS(1153), - [anon_sym_u_SQUOTE] = ACTIONS(1153), - [anon_sym_U_SQUOTE] = ACTIONS(1153), - [anon_sym_u8_SQUOTE] = ACTIONS(1153), - [anon_sym_SQUOTE] = ACTIONS(1153), - [anon_sym_L_DQUOTE] = ACTIONS(1153), - [anon_sym_u_DQUOTE] = ACTIONS(1153), - [anon_sym_U_DQUOTE] = ACTIONS(1153), - [anon_sym_u8_DQUOTE] = ACTIONS(1153), - [anon_sym_DQUOTE] = ACTIONS(1153), - [sym_true] = ACTIONS(1155), - [sym_false] = ACTIONS(1155), - [anon_sym_NULL] = ACTIONS(1155), - [anon_sym_nullptr] = ACTIONS(1155), - [sym_comment] = ACTIONS(3), - }, - [79] = { [sym_identifier] = ACTIONS(1157), [aux_sym_preproc_include_token1] = ACTIONS(1157), [aux_sym_preproc_def_token1] = ACTIONS(1157), @@ -24961,9 +25630,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___read_mostly] = ACTIONS(1157), [anon_sym___must_hold] = ACTIONS(1157), [anon_sym___ro_after_init] = ACTIONS(1157), - [anon_sym___init] = ACTIONS(1157), + [anon_sym___noreturn] = ACTIONS(1157), + [anon_sym___cold] = ACTIONS(1157), [anon_sym_LBRACK_LBRACK] = ACTIONS(1159), [anon_sym___declspec] = ACTIONS(1157), + [anon_sym___init] = ACTIONS(1157), + [anon_sym___exit] = ACTIONS(1157), [anon_sym___cdecl] = ACTIONS(1157), [anon_sym___clrcall] = ACTIONS(1157), [anon_sym___stdcall] = ACTIONS(1157), @@ -25041,7 +25713,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1157), [sym_comment] = ACTIONS(3), }, - [80] = { + [78] = { [sym_identifier] = ACTIONS(1161), [aux_sym_preproc_include_token1] = ACTIONS(1161), [aux_sym_preproc_def_token1] = ACTIONS(1161), @@ -25071,9 +25743,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___read_mostly] = ACTIONS(1161), [anon_sym___must_hold] = ACTIONS(1161), [anon_sym___ro_after_init] = ACTIONS(1161), - [anon_sym___init] = ACTIONS(1161), + [anon_sym___noreturn] = ACTIONS(1161), + [anon_sym___cold] = ACTIONS(1161), [anon_sym_LBRACK_LBRACK] = ACTIONS(1163), [anon_sym___declspec] = ACTIONS(1161), + [anon_sym___init] = ACTIONS(1161), + [anon_sym___exit] = ACTIONS(1161), [anon_sym___cdecl] = ACTIONS(1161), [anon_sym___clrcall] = ACTIONS(1161), [anon_sym___stdcall] = ACTIONS(1161), @@ -25151,7 +25826,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1161), [sym_comment] = ACTIONS(3), }, - [81] = { + [79] = { [sym_identifier] = ACTIONS(1165), [aux_sym_preproc_include_token1] = ACTIONS(1165), [aux_sym_preproc_def_token1] = ACTIONS(1165), @@ -25181,9 +25856,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___read_mostly] = ACTIONS(1165), [anon_sym___must_hold] = ACTIONS(1165), [anon_sym___ro_after_init] = ACTIONS(1165), - [anon_sym___init] = ACTIONS(1165), + [anon_sym___noreturn] = ACTIONS(1165), + [anon_sym___cold] = ACTIONS(1165), [anon_sym_LBRACK_LBRACK] = ACTIONS(1167), [anon_sym___declspec] = ACTIONS(1165), + [anon_sym___init] = ACTIONS(1165), + [anon_sym___exit] = ACTIONS(1165), [anon_sym___cdecl] = ACTIONS(1165), [anon_sym___clrcall] = ACTIONS(1165), [anon_sym___stdcall] = ACTIONS(1165), @@ -25261,7 +25939,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1165), [sym_comment] = ACTIONS(3), }, - [82] = { + [80] = { [sym_identifier] = ACTIONS(1169), [aux_sym_preproc_include_token1] = ACTIONS(1169), [aux_sym_preproc_def_token1] = ACTIONS(1169), @@ -25291,119 +25969,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___read_mostly] = ACTIONS(1169), [anon_sym___must_hold] = ACTIONS(1169), [anon_sym___ro_after_init] = ACTIONS(1169), - [anon_sym___init] = ACTIONS(1169), + [anon_sym___noreturn] = ACTIONS(1169), + [anon_sym___cold] = ACTIONS(1169), [anon_sym_LBRACK_LBRACK] = ACTIONS(1171), [anon_sym___declspec] = ACTIONS(1169), - [anon_sym___cdecl] = ACTIONS(1169), - [anon_sym___clrcall] = ACTIONS(1169), - [anon_sym___stdcall] = ACTIONS(1169), - [anon_sym___fastcall] = ACTIONS(1169), - [anon_sym___thiscall] = ACTIONS(1169), - [anon_sym___vectorcall] = ACTIONS(1169), - [anon_sym_LBRACE] = ACTIONS(1171), - [anon_sym_signed] = ACTIONS(1169), - [anon_sym_unsigned] = ACTIONS(1169), - [anon_sym_long] = ACTIONS(1169), - [anon_sym_short] = ACTIONS(1169), - [anon_sym_static] = ACTIONS(1169), - [anon_sym_auto] = ACTIONS(1169), - [anon_sym_register] = ACTIONS(1169), - [anon_sym_inline] = ACTIONS(1169), - [anon_sym___inline] = ACTIONS(1169), - [anon_sym___inline__] = ACTIONS(1169), - [anon_sym___forceinline] = ACTIONS(1169), - [anon_sym_thread_local] = ACTIONS(1169), - [anon_sym___thread] = ACTIONS(1169), - [anon_sym_const] = ACTIONS(1169), - [anon_sym_constexpr] = ACTIONS(1169), - [anon_sym_volatile] = ACTIONS(1169), - [anon_sym_restrict] = ACTIONS(1169), - [anon_sym___restrict__] = ACTIONS(1169), - [anon_sym__Atomic] = ACTIONS(1169), - [anon_sym__Noreturn] = ACTIONS(1169), - [anon_sym_noreturn] = ACTIONS(1169), - [anon_sym_alignas] = ACTIONS(1169), - [anon_sym__Alignas] = ACTIONS(1169), - [sym_primitive_type] = ACTIONS(1169), - [anon_sym_enum] = ACTIONS(1169), - [anon_sym_struct] = ACTIONS(1169), - [anon_sym_union] = ACTIONS(1169), - [anon_sym_if] = ACTIONS(1169), - [anon_sym_else] = ACTIONS(1169), - [anon_sym_switch] = ACTIONS(1169), - [anon_sym_case] = ACTIONS(1169), - [anon_sym_default] = ACTIONS(1169), - [anon_sym_while] = ACTIONS(1169), - [anon_sym_do] = ACTIONS(1169), - [anon_sym_for] = ACTIONS(1169), - [anon_sym_return] = ACTIONS(1169), - [anon_sym_break] = ACTIONS(1169), - [anon_sym_continue] = ACTIONS(1169), - [anon_sym_goto] = ACTIONS(1169), - [anon_sym___try] = ACTIONS(1169), - [anon_sym___leave] = ACTIONS(1169), - [anon_sym_DASH_DASH] = ACTIONS(1171), - [anon_sym_PLUS_PLUS] = ACTIONS(1171), - [anon_sym_sizeof] = ACTIONS(1169), - [anon_sym___alignof__] = ACTIONS(1169), - [anon_sym___alignof] = ACTIONS(1169), - [anon_sym__alignof] = ACTIONS(1169), - [anon_sym_alignof] = ACTIONS(1169), - [anon_sym__Alignof] = ACTIONS(1169), - [anon_sym_offsetof] = ACTIONS(1169), - [anon_sym__Generic] = ACTIONS(1169), - [anon_sym_asm] = ACTIONS(1169), - [anon_sym___asm__] = ACTIONS(1169), - [sym_number_literal] = ACTIONS(1171), - [anon_sym_L_SQUOTE] = ACTIONS(1171), - [anon_sym_u_SQUOTE] = ACTIONS(1171), - [anon_sym_U_SQUOTE] = ACTIONS(1171), - [anon_sym_u8_SQUOTE] = ACTIONS(1171), - [anon_sym_SQUOTE] = ACTIONS(1171), - [anon_sym_L_DQUOTE] = ACTIONS(1171), - [anon_sym_u_DQUOTE] = ACTIONS(1171), - [anon_sym_U_DQUOTE] = ACTIONS(1171), - [anon_sym_u8_DQUOTE] = ACTIONS(1171), - [anon_sym_DQUOTE] = ACTIONS(1171), - [sym_true] = ACTIONS(1169), - [sym_false] = ACTIONS(1169), - [anon_sym_NULL] = ACTIONS(1169), - [anon_sym_nullptr] = ACTIONS(1169), - [sym_comment] = ACTIONS(3), - }, - [83] = { - [sym_identifier] = ACTIONS(1169), - [aux_sym_preproc_include_token1] = ACTIONS(1169), - [aux_sym_preproc_def_token1] = ACTIONS(1169), - [aux_sym_preproc_if_token1] = ACTIONS(1169), - [aux_sym_preproc_if_token2] = ACTIONS(1169), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1169), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1169), - [aux_sym_preproc_else_token1] = ACTIONS(1169), - [aux_sym_preproc_elif_token1] = ACTIONS(1169), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1169), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1169), - [sym_preproc_directive] = ACTIONS(1169), - [anon_sym_LPAREN2] = ACTIONS(1171), - [anon_sym_BANG] = ACTIONS(1171), - [anon_sym_TILDE] = ACTIONS(1171), - [anon_sym_DASH] = ACTIONS(1169), - [anon_sym_PLUS] = ACTIONS(1169), - [anon_sym_STAR] = ACTIONS(1171), - [anon_sym_AMP] = ACTIONS(1171), - [anon_sym_SEMI] = ACTIONS(1171), - [anon_sym___extension__] = ACTIONS(1169), - [anon_sym_typedef] = ACTIONS(1169), - [anon_sym_extern] = ACTIONS(1169), - [anon_sym___attribute__] = ACTIONS(1169), - [anon_sym___scanf] = ACTIONS(1169), - [anon_sym___printf] = ACTIONS(1169), - [anon_sym___read_mostly] = ACTIONS(1169), - [anon_sym___must_hold] = ACTIONS(1169), - [anon_sym___ro_after_init] = ACTIONS(1169), [anon_sym___init] = ACTIONS(1169), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1171), - [anon_sym___declspec] = ACTIONS(1169), + [anon_sym___exit] = ACTIONS(1169), [anon_sym___cdecl] = ACTIONS(1169), [anon_sym___clrcall] = ACTIONS(1169), [anon_sym___stdcall] = ACTIONS(1169), @@ -25481,7 +26052,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1169), [sym_comment] = ACTIONS(3), }, - [84] = { + [81] = { [sym_identifier] = ACTIONS(1173), [aux_sym_preproc_include_token1] = ACTIONS(1173), [aux_sym_preproc_def_token1] = ACTIONS(1173), @@ -25511,9 +26082,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___read_mostly] = ACTIONS(1173), [anon_sym___must_hold] = ACTIONS(1173), [anon_sym___ro_after_init] = ACTIONS(1173), - [anon_sym___init] = ACTIONS(1173), + [anon_sym___noreturn] = ACTIONS(1173), + [anon_sym___cold] = ACTIONS(1173), [anon_sym_LBRACK_LBRACK] = ACTIONS(1175), [anon_sym___declspec] = ACTIONS(1173), + [anon_sym___init] = ACTIONS(1173), + [anon_sym___exit] = ACTIONS(1173), [anon_sym___cdecl] = ACTIONS(1173), [anon_sym___clrcall] = ACTIONS(1173), [anon_sym___stdcall] = ACTIONS(1173), @@ -25591,7 +26165,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1173), [sym_comment] = ACTIONS(3), }, - [85] = { + [82] = { [sym_identifier] = ACTIONS(1177), [aux_sym_preproc_include_token1] = ACTIONS(1177), [aux_sym_preproc_def_token1] = ACTIONS(1177), @@ -25621,9 +26195,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___read_mostly] = ACTIONS(1177), [anon_sym___must_hold] = ACTIONS(1177), [anon_sym___ro_after_init] = ACTIONS(1177), - [anon_sym___init] = ACTIONS(1177), + [anon_sym___noreturn] = ACTIONS(1177), + [anon_sym___cold] = ACTIONS(1177), [anon_sym_LBRACK_LBRACK] = ACTIONS(1179), [anon_sym___declspec] = ACTIONS(1177), + [anon_sym___init] = ACTIONS(1177), + [anon_sym___exit] = ACTIONS(1177), [anon_sym___cdecl] = ACTIONS(1177), [anon_sym___clrcall] = ACTIONS(1177), [anon_sym___stdcall] = ACTIONS(1177), @@ -25701,7 +26278,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1177), [sym_comment] = ACTIONS(3), }, - [86] = { + [83] = { [sym_identifier] = ACTIONS(1181), [aux_sym_preproc_include_token1] = ACTIONS(1181), [aux_sym_preproc_def_token1] = ACTIONS(1181), @@ -25731,9 +26308,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___read_mostly] = ACTIONS(1181), [anon_sym___must_hold] = ACTIONS(1181), [anon_sym___ro_after_init] = ACTIONS(1181), - [anon_sym___init] = ACTIONS(1181), + [anon_sym___noreturn] = ACTIONS(1181), + [anon_sym___cold] = ACTIONS(1181), [anon_sym_LBRACK_LBRACK] = ACTIONS(1183), [anon_sym___declspec] = ACTIONS(1181), + [anon_sym___init] = ACTIONS(1181), + [anon_sym___exit] = ACTIONS(1181), [anon_sym___cdecl] = ACTIONS(1181), [anon_sym___clrcall] = ACTIONS(1181), [anon_sym___stdcall] = ACTIONS(1181), @@ -25811,7 +26391,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1181), [sym_comment] = ACTIONS(3), }, - [87] = { + [84] = { [sym_identifier] = ACTIONS(1185), [aux_sym_preproc_include_token1] = ACTIONS(1185), [aux_sym_preproc_def_token1] = ACTIONS(1185), @@ -25841,229 +26421,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___read_mostly] = ACTIONS(1185), [anon_sym___must_hold] = ACTIONS(1185), [anon_sym___ro_after_init] = ACTIONS(1185), - [anon_sym___init] = ACTIONS(1185), + [anon_sym___noreturn] = ACTIONS(1185), + [anon_sym___cold] = ACTIONS(1185), [anon_sym_LBRACK_LBRACK] = ACTIONS(1187), [anon_sym___declspec] = ACTIONS(1185), - [anon_sym___cdecl] = ACTIONS(1185), - [anon_sym___clrcall] = ACTIONS(1185), - [anon_sym___stdcall] = ACTIONS(1185), - [anon_sym___fastcall] = ACTIONS(1185), - [anon_sym___thiscall] = ACTIONS(1185), - [anon_sym___vectorcall] = ACTIONS(1185), - [anon_sym_LBRACE] = ACTIONS(1187), - [anon_sym_signed] = ACTIONS(1185), - [anon_sym_unsigned] = ACTIONS(1185), - [anon_sym_long] = ACTIONS(1185), - [anon_sym_short] = ACTIONS(1185), - [anon_sym_static] = ACTIONS(1185), - [anon_sym_auto] = ACTIONS(1185), - [anon_sym_register] = ACTIONS(1185), - [anon_sym_inline] = ACTIONS(1185), - [anon_sym___inline] = ACTIONS(1185), - [anon_sym___inline__] = ACTIONS(1185), - [anon_sym___forceinline] = ACTIONS(1185), - [anon_sym_thread_local] = ACTIONS(1185), - [anon_sym___thread] = ACTIONS(1185), - [anon_sym_const] = ACTIONS(1185), - [anon_sym_constexpr] = ACTIONS(1185), - [anon_sym_volatile] = ACTIONS(1185), - [anon_sym_restrict] = ACTIONS(1185), - [anon_sym___restrict__] = ACTIONS(1185), - [anon_sym__Atomic] = ACTIONS(1185), - [anon_sym__Noreturn] = ACTIONS(1185), - [anon_sym_noreturn] = ACTIONS(1185), - [anon_sym_alignas] = ACTIONS(1185), - [anon_sym__Alignas] = ACTIONS(1185), - [sym_primitive_type] = ACTIONS(1185), - [anon_sym_enum] = ACTIONS(1185), - [anon_sym_struct] = ACTIONS(1185), - [anon_sym_union] = ACTIONS(1185), - [anon_sym_if] = ACTIONS(1185), - [anon_sym_else] = ACTIONS(1185), - [anon_sym_switch] = ACTIONS(1185), - [anon_sym_case] = ACTIONS(1185), - [anon_sym_default] = ACTIONS(1185), - [anon_sym_while] = ACTIONS(1185), - [anon_sym_do] = ACTIONS(1185), - [anon_sym_for] = ACTIONS(1185), - [anon_sym_return] = ACTIONS(1185), - [anon_sym_break] = ACTIONS(1185), - [anon_sym_continue] = ACTIONS(1185), - [anon_sym_goto] = ACTIONS(1185), - [anon_sym___try] = ACTIONS(1185), - [anon_sym___leave] = ACTIONS(1185), - [anon_sym_DASH_DASH] = ACTIONS(1187), - [anon_sym_PLUS_PLUS] = ACTIONS(1187), - [anon_sym_sizeof] = ACTIONS(1185), - [anon_sym___alignof__] = ACTIONS(1185), - [anon_sym___alignof] = ACTIONS(1185), - [anon_sym__alignof] = ACTIONS(1185), - [anon_sym_alignof] = ACTIONS(1185), - [anon_sym__Alignof] = ACTIONS(1185), - [anon_sym_offsetof] = ACTIONS(1185), - [anon_sym__Generic] = ACTIONS(1185), - [anon_sym_asm] = ACTIONS(1185), - [anon_sym___asm__] = ACTIONS(1185), - [sym_number_literal] = ACTIONS(1187), - [anon_sym_L_SQUOTE] = ACTIONS(1187), - [anon_sym_u_SQUOTE] = ACTIONS(1187), - [anon_sym_U_SQUOTE] = ACTIONS(1187), - [anon_sym_u8_SQUOTE] = ACTIONS(1187), - [anon_sym_SQUOTE] = ACTIONS(1187), - [anon_sym_L_DQUOTE] = ACTIONS(1187), - [anon_sym_u_DQUOTE] = ACTIONS(1187), - [anon_sym_U_DQUOTE] = ACTIONS(1187), - [anon_sym_u8_DQUOTE] = ACTIONS(1187), - [anon_sym_DQUOTE] = ACTIONS(1187), - [sym_true] = ACTIONS(1185), - [sym_false] = ACTIONS(1185), - [anon_sym_NULL] = ACTIONS(1185), - [anon_sym_nullptr] = ACTIONS(1185), - [sym_comment] = ACTIONS(3), - }, - [88] = { - [sym_identifier] = ACTIONS(1189), - [aux_sym_preproc_include_token1] = ACTIONS(1189), - [aux_sym_preproc_def_token1] = ACTIONS(1189), - [aux_sym_preproc_if_token1] = ACTIONS(1189), - [aux_sym_preproc_if_token2] = ACTIONS(1189), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1189), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1189), - [aux_sym_preproc_else_token1] = ACTIONS(1189), - [aux_sym_preproc_elif_token1] = ACTIONS(1189), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1189), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1189), - [sym_preproc_directive] = ACTIONS(1189), - [anon_sym_LPAREN2] = ACTIONS(1191), - [anon_sym_BANG] = ACTIONS(1191), - [anon_sym_TILDE] = ACTIONS(1191), - [anon_sym_DASH] = ACTIONS(1189), - [anon_sym_PLUS] = ACTIONS(1189), - [anon_sym_STAR] = ACTIONS(1191), - [anon_sym_AMP] = ACTIONS(1191), - [anon_sym_SEMI] = ACTIONS(1191), - [anon_sym___extension__] = ACTIONS(1189), - [anon_sym_typedef] = ACTIONS(1189), - [anon_sym_extern] = ACTIONS(1189), - [anon_sym___attribute__] = ACTIONS(1189), - [anon_sym___scanf] = ACTIONS(1189), - [anon_sym___printf] = ACTIONS(1189), - [anon_sym___read_mostly] = ACTIONS(1189), - [anon_sym___must_hold] = ACTIONS(1189), - [anon_sym___ro_after_init] = ACTIONS(1189), - [anon_sym___init] = ACTIONS(1189), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1191), - [anon_sym___declspec] = ACTIONS(1189), - [anon_sym___cdecl] = ACTIONS(1189), - [anon_sym___clrcall] = ACTIONS(1189), - [anon_sym___stdcall] = ACTIONS(1189), - [anon_sym___fastcall] = ACTIONS(1189), - [anon_sym___thiscall] = ACTIONS(1189), - [anon_sym___vectorcall] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_signed] = ACTIONS(1189), - [anon_sym_unsigned] = ACTIONS(1189), - [anon_sym_long] = ACTIONS(1189), - [anon_sym_short] = ACTIONS(1189), - [anon_sym_static] = ACTIONS(1189), - [anon_sym_auto] = ACTIONS(1189), - [anon_sym_register] = ACTIONS(1189), - [anon_sym_inline] = ACTIONS(1189), - [anon_sym___inline] = ACTIONS(1189), - [anon_sym___inline__] = ACTIONS(1189), - [anon_sym___forceinline] = ACTIONS(1189), - [anon_sym_thread_local] = ACTIONS(1189), - [anon_sym___thread] = ACTIONS(1189), - [anon_sym_const] = ACTIONS(1189), - [anon_sym_constexpr] = ACTIONS(1189), - [anon_sym_volatile] = ACTIONS(1189), - [anon_sym_restrict] = ACTIONS(1189), - [anon_sym___restrict__] = ACTIONS(1189), - [anon_sym__Atomic] = ACTIONS(1189), - [anon_sym__Noreturn] = ACTIONS(1189), - [anon_sym_noreturn] = ACTIONS(1189), - [anon_sym_alignas] = ACTIONS(1189), - [anon_sym__Alignas] = ACTIONS(1189), - [sym_primitive_type] = ACTIONS(1189), - [anon_sym_enum] = ACTIONS(1189), - [anon_sym_struct] = ACTIONS(1189), - [anon_sym_union] = ACTIONS(1189), - [anon_sym_if] = ACTIONS(1189), - [anon_sym_else] = ACTIONS(1189), - [anon_sym_switch] = ACTIONS(1189), - [anon_sym_case] = ACTIONS(1189), - [anon_sym_default] = ACTIONS(1189), - [anon_sym_while] = ACTIONS(1189), - [anon_sym_do] = ACTIONS(1189), - [anon_sym_for] = ACTIONS(1189), - [anon_sym_return] = ACTIONS(1189), - [anon_sym_break] = ACTIONS(1189), - [anon_sym_continue] = ACTIONS(1189), - [anon_sym_goto] = ACTIONS(1189), - [anon_sym___try] = ACTIONS(1189), - [anon_sym___leave] = ACTIONS(1189), - [anon_sym_DASH_DASH] = ACTIONS(1191), - [anon_sym_PLUS_PLUS] = ACTIONS(1191), - [anon_sym_sizeof] = ACTIONS(1189), - [anon_sym___alignof__] = ACTIONS(1189), - [anon_sym___alignof] = ACTIONS(1189), - [anon_sym__alignof] = ACTIONS(1189), - [anon_sym_alignof] = ACTIONS(1189), - [anon_sym__Alignof] = ACTIONS(1189), - [anon_sym_offsetof] = ACTIONS(1189), - [anon_sym__Generic] = ACTIONS(1189), - [anon_sym_asm] = ACTIONS(1189), - [anon_sym___asm__] = ACTIONS(1189), - [sym_number_literal] = ACTIONS(1191), - [anon_sym_L_SQUOTE] = ACTIONS(1191), - [anon_sym_u_SQUOTE] = ACTIONS(1191), - [anon_sym_U_SQUOTE] = ACTIONS(1191), - [anon_sym_u8_SQUOTE] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1191), - [anon_sym_L_DQUOTE] = ACTIONS(1191), - [anon_sym_u_DQUOTE] = ACTIONS(1191), - [anon_sym_U_DQUOTE] = ACTIONS(1191), - [anon_sym_u8_DQUOTE] = ACTIONS(1191), - [anon_sym_DQUOTE] = ACTIONS(1191), - [sym_true] = ACTIONS(1189), - [sym_false] = ACTIONS(1189), - [anon_sym_NULL] = ACTIONS(1189), - [anon_sym_nullptr] = ACTIONS(1189), - [sym_comment] = ACTIONS(3), - }, - [89] = { - [sym_identifier] = ACTIONS(1185), - [aux_sym_preproc_include_token1] = ACTIONS(1185), - [aux_sym_preproc_def_token1] = ACTIONS(1185), - [aux_sym_preproc_if_token1] = ACTIONS(1185), - [aux_sym_preproc_if_token2] = ACTIONS(1185), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1185), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1185), - [aux_sym_preproc_else_token1] = ACTIONS(1185), - [aux_sym_preproc_elif_token1] = ACTIONS(1185), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1185), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1185), - [sym_preproc_directive] = ACTIONS(1185), - [anon_sym_LPAREN2] = ACTIONS(1187), - [anon_sym_BANG] = ACTIONS(1187), - [anon_sym_TILDE] = ACTIONS(1187), - [anon_sym_DASH] = ACTIONS(1185), - [anon_sym_PLUS] = ACTIONS(1185), - [anon_sym_STAR] = ACTIONS(1187), - [anon_sym_AMP] = ACTIONS(1187), - [anon_sym_SEMI] = ACTIONS(1187), - [anon_sym___extension__] = ACTIONS(1185), - [anon_sym_typedef] = ACTIONS(1185), - [anon_sym_extern] = ACTIONS(1185), - [anon_sym___attribute__] = ACTIONS(1185), - [anon_sym___scanf] = ACTIONS(1185), - [anon_sym___printf] = ACTIONS(1185), - [anon_sym___read_mostly] = ACTIONS(1185), - [anon_sym___must_hold] = ACTIONS(1185), - [anon_sym___ro_after_init] = ACTIONS(1185), [anon_sym___init] = ACTIONS(1185), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1187), - [anon_sym___declspec] = ACTIONS(1185), + [anon_sym___exit] = ACTIONS(1185), [anon_sym___cdecl] = ACTIONS(1185), [anon_sym___clrcall] = ACTIONS(1185), [anon_sym___stdcall] = ACTIONS(1185), @@ -26141,117 +26504,120 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1185), [sym_comment] = ACTIONS(3), }, - [90] = { - [sym_identifier] = ACTIONS(1181), - [aux_sym_preproc_include_token1] = ACTIONS(1181), - [aux_sym_preproc_def_token1] = ACTIONS(1181), - [aux_sym_preproc_if_token1] = ACTIONS(1181), - [aux_sym_preproc_if_token2] = ACTIONS(1181), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1181), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1181), - [aux_sym_preproc_else_token1] = ACTIONS(1181), - [aux_sym_preproc_elif_token1] = ACTIONS(1181), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1181), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1181), - [sym_preproc_directive] = ACTIONS(1181), - [anon_sym_LPAREN2] = ACTIONS(1183), - [anon_sym_BANG] = ACTIONS(1183), - [anon_sym_TILDE] = ACTIONS(1183), - [anon_sym_DASH] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1181), - [anon_sym_STAR] = ACTIONS(1183), - [anon_sym_AMP] = ACTIONS(1183), - [anon_sym_SEMI] = ACTIONS(1183), - [anon_sym___extension__] = ACTIONS(1181), - [anon_sym_typedef] = ACTIONS(1181), - [anon_sym_extern] = ACTIONS(1181), - [anon_sym___attribute__] = ACTIONS(1181), - [anon_sym___scanf] = ACTIONS(1181), - [anon_sym___printf] = ACTIONS(1181), - [anon_sym___read_mostly] = ACTIONS(1181), - [anon_sym___must_hold] = ACTIONS(1181), - [anon_sym___ro_after_init] = ACTIONS(1181), - [anon_sym___init] = ACTIONS(1181), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1183), - [anon_sym___declspec] = ACTIONS(1181), - [anon_sym___cdecl] = ACTIONS(1181), - [anon_sym___clrcall] = ACTIONS(1181), - [anon_sym___stdcall] = ACTIONS(1181), - [anon_sym___fastcall] = ACTIONS(1181), - [anon_sym___thiscall] = ACTIONS(1181), - [anon_sym___vectorcall] = ACTIONS(1181), - [anon_sym_LBRACE] = ACTIONS(1183), - [anon_sym_signed] = ACTIONS(1181), - [anon_sym_unsigned] = ACTIONS(1181), - [anon_sym_long] = ACTIONS(1181), - [anon_sym_short] = ACTIONS(1181), - [anon_sym_static] = ACTIONS(1181), - [anon_sym_auto] = ACTIONS(1181), - [anon_sym_register] = ACTIONS(1181), - [anon_sym_inline] = ACTIONS(1181), - [anon_sym___inline] = ACTIONS(1181), - [anon_sym___inline__] = ACTIONS(1181), - [anon_sym___forceinline] = ACTIONS(1181), - [anon_sym_thread_local] = ACTIONS(1181), - [anon_sym___thread] = ACTIONS(1181), - [anon_sym_const] = ACTIONS(1181), - [anon_sym_constexpr] = ACTIONS(1181), - [anon_sym_volatile] = ACTIONS(1181), - [anon_sym_restrict] = ACTIONS(1181), - [anon_sym___restrict__] = ACTIONS(1181), - [anon_sym__Atomic] = ACTIONS(1181), - [anon_sym__Noreturn] = ACTIONS(1181), - [anon_sym_noreturn] = ACTIONS(1181), - [anon_sym_alignas] = ACTIONS(1181), - [anon_sym__Alignas] = ACTIONS(1181), - [sym_primitive_type] = ACTIONS(1181), - [anon_sym_enum] = ACTIONS(1181), - [anon_sym_struct] = ACTIONS(1181), - [anon_sym_union] = ACTIONS(1181), - [anon_sym_if] = ACTIONS(1181), - [anon_sym_else] = ACTIONS(1181), - [anon_sym_switch] = ACTIONS(1181), - [anon_sym_case] = ACTIONS(1181), - [anon_sym_default] = ACTIONS(1181), - [anon_sym_while] = ACTIONS(1181), - [anon_sym_do] = ACTIONS(1181), - [anon_sym_for] = ACTIONS(1181), - [anon_sym_return] = ACTIONS(1181), - [anon_sym_break] = ACTIONS(1181), - [anon_sym_continue] = ACTIONS(1181), - [anon_sym_goto] = ACTIONS(1181), - [anon_sym___try] = ACTIONS(1181), - [anon_sym___leave] = ACTIONS(1181), - [anon_sym_DASH_DASH] = ACTIONS(1183), - [anon_sym_PLUS_PLUS] = ACTIONS(1183), - [anon_sym_sizeof] = ACTIONS(1181), - [anon_sym___alignof__] = ACTIONS(1181), - [anon_sym___alignof] = ACTIONS(1181), - [anon_sym__alignof] = ACTIONS(1181), - [anon_sym_alignof] = ACTIONS(1181), - [anon_sym__Alignof] = ACTIONS(1181), - [anon_sym_offsetof] = ACTIONS(1181), - [anon_sym__Generic] = ACTIONS(1181), - [anon_sym_asm] = ACTIONS(1181), - [anon_sym___asm__] = ACTIONS(1181), - [sym_number_literal] = ACTIONS(1183), - [anon_sym_L_SQUOTE] = ACTIONS(1183), - [anon_sym_u_SQUOTE] = ACTIONS(1183), - [anon_sym_U_SQUOTE] = ACTIONS(1183), - [anon_sym_u8_SQUOTE] = ACTIONS(1183), - [anon_sym_SQUOTE] = ACTIONS(1183), - [anon_sym_L_DQUOTE] = ACTIONS(1183), - [anon_sym_u_DQUOTE] = ACTIONS(1183), - [anon_sym_U_DQUOTE] = ACTIONS(1183), - [anon_sym_u8_DQUOTE] = ACTIONS(1183), - [anon_sym_DQUOTE] = ACTIONS(1183), - [sym_true] = ACTIONS(1181), - [sym_false] = ACTIONS(1181), - [anon_sym_NULL] = ACTIONS(1181), - [anon_sym_nullptr] = ACTIONS(1181), + [85] = { + [sym_identifier] = ACTIONS(1189), + [aux_sym_preproc_include_token1] = ACTIONS(1189), + [aux_sym_preproc_def_token1] = ACTIONS(1189), + [aux_sym_preproc_if_token1] = ACTIONS(1189), + [aux_sym_preproc_if_token2] = ACTIONS(1189), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1189), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1189), + [aux_sym_preproc_else_token1] = ACTIONS(1189), + [aux_sym_preproc_elif_token1] = ACTIONS(1189), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1189), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1189), + [sym_preproc_directive] = ACTIONS(1189), + [anon_sym_LPAREN2] = ACTIONS(1191), + [anon_sym_BANG] = ACTIONS(1191), + [anon_sym_TILDE] = ACTIONS(1191), + [anon_sym_DASH] = ACTIONS(1189), + [anon_sym_PLUS] = ACTIONS(1189), + [anon_sym_STAR] = ACTIONS(1191), + [anon_sym_AMP] = ACTIONS(1191), + [anon_sym_SEMI] = ACTIONS(1191), + [anon_sym___extension__] = ACTIONS(1189), + [anon_sym_typedef] = ACTIONS(1189), + [anon_sym_extern] = ACTIONS(1189), + [anon_sym___attribute__] = ACTIONS(1189), + [anon_sym___scanf] = ACTIONS(1189), + [anon_sym___printf] = ACTIONS(1189), + [anon_sym___read_mostly] = ACTIONS(1189), + [anon_sym___must_hold] = ACTIONS(1189), + [anon_sym___ro_after_init] = ACTIONS(1189), + [anon_sym___noreturn] = ACTIONS(1189), + [anon_sym___cold] = ACTIONS(1189), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1191), + [anon_sym___declspec] = ACTIONS(1189), + [anon_sym___init] = ACTIONS(1189), + [anon_sym___exit] = ACTIONS(1189), + [anon_sym___cdecl] = ACTIONS(1189), + [anon_sym___clrcall] = ACTIONS(1189), + [anon_sym___stdcall] = ACTIONS(1189), + [anon_sym___fastcall] = ACTIONS(1189), + [anon_sym___thiscall] = ACTIONS(1189), + [anon_sym___vectorcall] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_signed] = ACTIONS(1189), + [anon_sym_unsigned] = ACTIONS(1189), + [anon_sym_long] = ACTIONS(1189), + [anon_sym_short] = ACTIONS(1189), + [anon_sym_static] = ACTIONS(1189), + [anon_sym_auto] = ACTIONS(1189), + [anon_sym_register] = ACTIONS(1189), + [anon_sym_inline] = ACTIONS(1189), + [anon_sym___inline] = ACTIONS(1189), + [anon_sym___inline__] = ACTIONS(1189), + [anon_sym___forceinline] = ACTIONS(1189), + [anon_sym_thread_local] = ACTIONS(1189), + [anon_sym___thread] = ACTIONS(1189), + [anon_sym_const] = ACTIONS(1189), + [anon_sym_constexpr] = ACTIONS(1189), + [anon_sym_volatile] = ACTIONS(1189), + [anon_sym_restrict] = ACTIONS(1189), + [anon_sym___restrict__] = ACTIONS(1189), + [anon_sym__Atomic] = ACTIONS(1189), + [anon_sym__Noreturn] = ACTIONS(1189), + [anon_sym_noreturn] = ACTIONS(1189), + [anon_sym_alignas] = ACTIONS(1189), + [anon_sym__Alignas] = ACTIONS(1189), + [sym_primitive_type] = ACTIONS(1189), + [anon_sym_enum] = ACTIONS(1189), + [anon_sym_struct] = ACTIONS(1189), + [anon_sym_union] = ACTIONS(1189), + [anon_sym_if] = ACTIONS(1189), + [anon_sym_else] = ACTIONS(1189), + [anon_sym_switch] = ACTIONS(1189), + [anon_sym_case] = ACTIONS(1189), + [anon_sym_default] = ACTIONS(1189), + [anon_sym_while] = ACTIONS(1189), + [anon_sym_do] = ACTIONS(1189), + [anon_sym_for] = ACTIONS(1189), + [anon_sym_return] = ACTIONS(1189), + [anon_sym_break] = ACTIONS(1189), + [anon_sym_continue] = ACTIONS(1189), + [anon_sym_goto] = ACTIONS(1189), + [anon_sym___try] = ACTIONS(1189), + [anon_sym___leave] = ACTIONS(1189), + [anon_sym_DASH_DASH] = ACTIONS(1191), + [anon_sym_PLUS_PLUS] = ACTIONS(1191), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym___alignof__] = ACTIONS(1189), + [anon_sym___alignof] = ACTIONS(1189), + [anon_sym__alignof] = ACTIONS(1189), + [anon_sym_alignof] = ACTIONS(1189), + [anon_sym__Alignof] = ACTIONS(1189), + [anon_sym_offsetof] = ACTIONS(1189), + [anon_sym__Generic] = ACTIONS(1189), + [anon_sym_asm] = ACTIONS(1189), + [anon_sym___asm__] = ACTIONS(1189), + [sym_number_literal] = ACTIONS(1191), + [anon_sym_L_SQUOTE] = ACTIONS(1191), + [anon_sym_u_SQUOTE] = ACTIONS(1191), + [anon_sym_U_SQUOTE] = ACTIONS(1191), + [anon_sym_u8_SQUOTE] = ACTIONS(1191), + [anon_sym_SQUOTE] = ACTIONS(1191), + [anon_sym_L_DQUOTE] = ACTIONS(1191), + [anon_sym_u_DQUOTE] = ACTIONS(1191), + [anon_sym_U_DQUOTE] = ACTIONS(1191), + [anon_sym_u8_DQUOTE] = ACTIONS(1191), + [anon_sym_DQUOTE] = ACTIONS(1191), + [sym_true] = ACTIONS(1189), + [sym_false] = ACTIONS(1189), + [anon_sym_NULL] = ACTIONS(1189), + [anon_sym_nullptr] = ACTIONS(1189), [sym_comment] = ACTIONS(3), }, - [91] = { + [86] = { [sym_identifier] = ACTIONS(1193), [aux_sym_preproc_include_token1] = ACTIONS(1193), [aux_sym_preproc_def_token1] = ACTIONS(1193), @@ -26281,9 +26647,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___read_mostly] = ACTIONS(1193), [anon_sym___must_hold] = ACTIONS(1193), [anon_sym___ro_after_init] = ACTIONS(1193), + [anon_sym___noreturn] = ACTIONS(1193), + [anon_sym___cold] = ACTIONS(1193), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1195), + [anon_sym___declspec] = ACTIONS(1193), [anon_sym___init] = ACTIONS(1193), + [anon_sym___exit] = ACTIONS(1193), + [anon_sym___cdecl] = ACTIONS(1193), + [anon_sym___clrcall] = ACTIONS(1193), + [anon_sym___stdcall] = ACTIONS(1193), + [anon_sym___fastcall] = ACTIONS(1193), + [anon_sym___thiscall] = ACTIONS(1193), + [anon_sym___vectorcall] = ACTIONS(1193), + [anon_sym_LBRACE] = ACTIONS(1195), + [anon_sym_signed] = ACTIONS(1193), + [anon_sym_unsigned] = ACTIONS(1193), + [anon_sym_long] = ACTIONS(1193), + [anon_sym_short] = ACTIONS(1193), + [anon_sym_static] = ACTIONS(1193), + [anon_sym_auto] = ACTIONS(1193), + [anon_sym_register] = ACTIONS(1193), + [anon_sym_inline] = ACTIONS(1193), + [anon_sym___inline] = ACTIONS(1193), + [anon_sym___inline__] = ACTIONS(1193), + [anon_sym___forceinline] = ACTIONS(1193), + [anon_sym_thread_local] = ACTIONS(1193), + [anon_sym___thread] = ACTIONS(1193), + [anon_sym_const] = ACTIONS(1193), + [anon_sym_constexpr] = ACTIONS(1193), + [anon_sym_volatile] = ACTIONS(1193), + [anon_sym_restrict] = ACTIONS(1193), + [anon_sym___restrict__] = ACTIONS(1193), + [anon_sym__Atomic] = ACTIONS(1193), + [anon_sym__Noreturn] = ACTIONS(1193), + [anon_sym_noreturn] = ACTIONS(1193), + [anon_sym_alignas] = ACTIONS(1193), + [anon_sym__Alignas] = ACTIONS(1193), + [sym_primitive_type] = ACTIONS(1193), + [anon_sym_enum] = ACTIONS(1193), + [anon_sym_struct] = ACTIONS(1193), + [anon_sym_union] = ACTIONS(1193), + [anon_sym_if] = ACTIONS(1193), + [anon_sym_else] = ACTIONS(1193), + [anon_sym_switch] = ACTIONS(1193), + [anon_sym_case] = ACTIONS(1193), + [anon_sym_default] = ACTIONS(1193), + [anon_sym_while] = ACTIONS(1193), + [anon_sym_do] = ACTIONS(1193), + [anon_sym_for] = ACTIONS(1193), + [anon_sym_return] = ACTIONS(1193), + [anon_sym_break] = ACTIONS(1193), + [anon_sym_continue] = ACTIONS(1193), + [anon_sym_goto] = ACTIONS(1193), + [anon_sym___try] = ACTIONS(1193), + [anon_sym___leave] = ACTIONS(1193), + [anon_sym_DASH_DASH] = ACTIONS(1195), + [anon_sym_PLUS_PLUS] = ACTIONS(1195), + [anon_sym_sizeof] = ACTIONS(1193), + [anon_sym___alignof__] = ACTIONS(1193), + [anon_sym___alignof] = ACTIONS(1193), + [anon_sym__alignof] = ACTIONS(1193), + [anon_sym_alignof] = ACTIONS(1193), + [anon_sym__Alignof] = ACTIONS(1193), + [anon_sym_offsetof] = ACTIONS(1193), + [anon_sym__Generic] = ACTIONS(1193), + [anon_sym_asm] = ACTIONS(1193), + [anon_sym___asm__] = ACTIONS(1193), + [sym_number_literal] = ACTIONS(1195), + [anon_sym_L_SQUOTE] = ACTIONS(1195), + [anon_sym_u_SQUOTE] = ACTIONS(1195), + [anon_sym_U_SQUOTE] = ACTIONS(1195), + [anon_sym_u8_SQUOTE] = ACTIONS(1195), + [anon_sym_SQUOTE] = ACTIONS(1195), + [anon_sym_L_DQUOTE] = ACTIONS(1195), + [anon_sym_u_DQUOTE] = ACTIONS(1195), + [anon_sym_U_DQUOTE] = ACTIONS(1195), + [anon_sym_u8_DQUOTE] = ACTIONS(1195), + [anon_sym_DQUOTE] = ACTIONS(1195), + [sym_true] = ACTIONS(1193), + [sym_false] = ACTIONS(1193), + [anon_sym_NULL] = ACTIONS(1193), + [anon_sym_nullptr] = ACTIONS(1193), + [sym_comment] = ACTIONS(3), + }, + [87] = { + [sym_identifier] = ACTIONS(1193), + [aux_sym_preproc_include_token1] = ACTIONS(1193), + [aux_sym_preproc_def_token1] = ACTIONS(1193), + [aux_sym_preproc_if_token1] = ACTIONS(1193), + [aux_sym_preproc_if_token2] = ACTIONS(1193), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1193), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1193), + [aux_sym_preproc_else_token1] = ACTIONS(1193), + [aux_sym_preproc_elif_token1] = ACTIONS(1193), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1193), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1193), + [sym_preproc_directive] = ACTIONS(1193), + [anon_sym_LPAREN2] = ACTIONS(1195), + [anon_sym_BANG] = ACTIONS(1195), + [anon_sym_TILDE] = ACTIONS(1195), + [anon_sym_DASH] = ACTIONS(1193), + [anon_sym_PLUS] = ACTIONS(1193), + [anon_sym_STAR] = ACTIONS(1195), + [anon_sym_AMP] = ACTIONS(1195), + [anon_sym_SEMI] = ACTIONS(1195), + [anon_sym___extension__] = ACTIONS(1193), + [anon_sym_typedef] = ACTIONS(1193), + [anon_sym_extern] = ACTIONS(1193), + [anon_sym___attribute__] = ACTIONS(1193), + [anon_sym___scanf] = ACTIONS(1193), + [anon_sym___printf] = ACTIONS(1193), + [anon_sym___read_mostly] = ACTIONS(1193), + [anon_sym___must_hold] = ACTIONS(1193), + [anon_sym___ro_after_init] = ACTIONS(1193), + [anon_sym___noreturn] = ACTIONS(1193), + [anon_sym___cold] = ACTIONS(1193), [anon_sym_LBRACK_LBRACK] = ACTIONS(1195), [anon_sym___declspec] = ACTIONS(1193), + [anon_sym___init] = ACTIONS(1193), + [anon_sym___exit] = ACTIONS(1193), [anon_sym___cdecl] = ACTIONS(1193), [anon_sym___clrcall] = ACTIONS(1193), [anon_sym___stdcall] = ACTIONS(1193), @@ -26361,7 +26843,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1193), [sym_comment] = ACTIONS(3), }, - [92] = { + [88] = { [sym_identifier] = ACTIONS(1197), [aux_sym_preproc_include_token1] = ACTIONS(1197), [aux_sym_preproc_def_token1] = ACTIONS(1197), @@ -26391,9 +26873,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___read_mostly] = ACTIONS(1197), [anon_sym___must_hold] = ACTIONS(1197), [anon_sym___ro_after_init] = ACTIONS(1197), - [anon_sym___init] = ACTIONS(1197), + [anon_sym___noreturn] = ACTIONS(1197), + [anon_sym___cold] = ACTIONS(1197), [anon_sym_LBRACK_LBRACK] = ACTIONS(1199), [anon_sym___declspec] = ACTIONS(1197), + [anon_sym___init] = ACTIONS(1197), + [anon_sym___exit] = ACTIONS(1197), [anon_sym___cdecl] = ACTIONS(1197), [anon_sym___clrcall] = ACTIONS(1197), [anon_sym___stdcall] = ACTIONS(1197), @@ -26471,187 +26956,532 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1197), [sym_comment] = ACTIONS(3), }, - [93] = { - [sym_identifier] = ACTIONS(1201), - [aux_sym_preproc_include_token1] = ACTIONS(1201), - [aux_sym_preproc_def_token1] = ACTIONS(1201), - [aux_sym_preproc_if_token1] = ACTIONS(1201), - [aux_sym_preproc_if_token2] = ACTIONS(1201), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1201), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1201), - [aux_sym_preproc_else_token1] = ACTIONS(1201), - [aux_sym_preproc_elif_token1] = ACTIONS(1201), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1201), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1201), - [sym_preproc_directive] = ACTIONS(1201), - [anon_sym_LPAREN2] = ACTIONS(1203), - [anon_sym_BANG] = ACTIONS(1203), - [anon_sym_TILDE] = ACTIONS(1203), - [anon_sym_DASH] = ACTIONS(1201), - [anon_sym_PLUS] = ACTIONS(1201), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_AMP] = ACTIONS(1203), - [anon_sym_SEMI] = ACTIONS(1203), - [anon_sym___extension__] = ACTIONS(1201), - [anon_sym_typedef] = ACTIONS(1201), - [anon_sym_extern] = ACTIONS(1201), - [anon_sym___attribute__] = ACTIONS(1201), - [anon_sym___scanf] = ACTIONS(1201), - [anon_sym___printf] = ACTIONS(1201), - [anon_sym___read_mostly] = ACTIONS(1201), - [anon_sym___must_hold] = ACTIONS(1201), - [anon_sym___ro_after_init] = ACTIONS(1201), - [anon_sym___init] = ACTIONS(1201), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1203), - [anon_sym___declspec] = ACTIONS(1201), - [anon_sym___cdecl] = ACTIONS(1201), - [anon_sym___clrcall] = ACTIONS(1201), - [anon_sym___stdcall] = ACTIONS(1201), - [anon_sym___fastcall] = ACTIONS(1201), - [anon_sym___thiscall] = ACTIONS(1201), - [anon_sym___vectorcall] = ACTIONS(1201), - [anon_sym_LBRACE] = ACTIONS(1203), - [anon_sym_signed] = ACTIONS(1201), - [anon_sym_unsigned] = ACTIONS(1201), - [anon_sym_long] = ACTIONS(1201), - [anon_sym_short] = ACTIONS(1201), - [anon_sym_static] = ACTIONS(1201), - [anon_sym_auto] = ACTIONS(1201), - [anon_sym_register] = ACTIONS(1201), - [anon_sym_inline] = ACTIONS(1201), - [anon_sym___inline] = ACTIONS(1201), - [anon_sym___inline__] = ACTIONS(1201), - [anon_sym___forceinline] = ACTIONS(1201), - [anon_sym_thread_local] = ACTIONS(1201), - [anon_sym___thread] = ACTIONS(1201), - [anon_sym_const] = ACTIONS(1201), - [anon_sym_constexpr] = ACTIONS(1201), - [anon_sym_volatile] = ACTIONS(1201), - [anon_sym_restrict] = ACTIONS(1201), - [anon_sym___restrict__] = ACTIONS(1201), - [anon_sym__Atomic] = ACTIONS(1201), - [anon_sym__Noreturn] = ACTIONS(1201), - [anon_sym_noreturn] = ACTIONS(1201), - [anon_sym_alignas] = ACTIONS(1201), - [anon_sym__Alignas] = ACTIONS(1201), - [sym_primitive_type] = ACTIONS(1201), - [anon_sym_enum] = ACTIONS(1201), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_union] = ACTIONS(1201), - [anon_sym_if] = ACTIONS(1201), - [anon_sym_else] = ACTIONS(1201), - [anon_sym_switch] = ACTIONS(1201), - [anon_sym_case] = ACTIONS(1201), - [anon_sym_default] = ACTIONS(1201), - [anon_sym_while] = ACTIONS(1201), - [anon_sym_do] = ACTIONS(1201), - [anon_sym_for] = ACTIONS(1201), - [anon_sym_return] = ACTIONS(1201), - [anon_sym_break] = ACTIONS(1201), - [anon_sym_continue] = ACTIONS(1201), - [anon_sym_goto] = ACTIONS(1201), - [anon_sym___try] = ACTIONS(1201), - [anon_sym___leave] = ACTIONS(1201), - [anon_sym_DASH_DASH] = ACTIONS(1203), - [anon_sym_PLUS_PLUS] = ACTIONS(1203), - [anon_sym_sizeof] = ACTIONS(1201), - [anon_sym___alignof__] = ACTIONS(1201), - [anon_sym___alignof] = ACTIONS(1201), - [anon_sym__alignof] = ACTIONS(1201), - [anon_sym_alignof] = ACTIONS(1201), - [anon_sym__Alignof] = ACTIONS(1201), - [anon_sym_offsetof] = ACTIONS(1201), - [anon_sym__Generic] = ACTIONS(1201), - [anon_sym_asm] = ACTIONS(1201), - [anon_sym___asm__] = ACTIONS(1201), - [sym_number_literal] = ACTIONS(1203), - [anon_sym_L_SQUOTE] = ACTIONS(1203), - [anon_sym_u_SQUOTE] = ACTIONS(1203), - [anon_sym_U_SQUOTE] = ACTIONS(1203), - [anon_sym_u8_SQUOTE] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1203), - [anon_sym_L_DQUOTE] = ACTIONS(1203), - [anon_sym_u_DQUOTE] = ACTIONS(1203), - [anon_sym_U_DQUOTE] = ACTIONS(1203), - [anon_sym_u8_DQUOTE] = ACTIONS(1203), - [anon_sym_DQUOTE] = ACTIONS(1203), - [sym_true] = ACTIONS(1201), - [sym_false] = ACTIONS(1201), - [anon_sym_NULL] = ACTIONS(1201), - [anon_sym_nullptr] = ACTIONS(1201), + [89] = { + [sym_identifier] = ACTIONS(1197), + [aux_sym_preproc_include_token1] = ACTIONS(1197), + [aux_sym_preproc_def_token1] = ACTIONS(1197), + [aux_sym_preproc_if_token1] = ACTIONS(1197), + [aux_sym_preproc_if_token2] = ACTIONS(1197), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1197), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1197), + [aux_sym_preproc_else_token1] = ACTIONS(1197), + [aux_sym_preproc_elif_token1] = ACTIONS(1197), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1197), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1197), + [sym_preproc_directive] = ACTIONS(1197), + [anon_sym_LPAREN2] = ACTIONS(1199), + [anon_sym_BANG] = ACTIONS(1199), + [anon_sym_TILDE] = ACTIONS(1199), + [anon_sym_DASH] = ACTIONS(1197), + [anon_sym_PLUS] = ACTIONS(1197), + [anon_sym_STAR] = ACTIONS(1199), + [anon_sym_AMP] = ACTIONS(1199), + [anon_sym_SEMI] = ACTIONS(1199), + [anon_sym___extension__] = ACTIONS(1197), + [anon_sym_typedef] = ACTIONS(1197), + [anon_sym_extern] = ACTIONS(1197), + [anon_sym___attribute__] = ACTIONS(1197), + [anon_sym___scanf] = ACTIONS(1197), + [anon_sym___printf] = ACTIONS(1197), + [anon_sym___read_mostly] = ACTIONS(1197), + [anon_sym___must_hold] = ACTIONS(1197), + [anon_sym___ro_after_init] = ACTIONS(1197), + [anon_sym___noreturn] = ACTIONS(1197), + [anon_sym___cold] = ACTIONS(1197), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1199), + [anon_sym___declspec] = ACTIONS(1197), + [anon_sym___init] = ACTIONS(1197), + [anon_sym___exit] = ACTIONS(1197), + [anon_sym___cdecl] = ACTIONS(1197), + [anon_sym___clrcall] = ACTIONS(1197), + [anon_sym___stdcall] = ACTIONS(1197), + [anon_sym___fastcall] = ACTIONS(1197), + [anon_sym___thiscall] = ACTIONS(1197), + [anon_sym___vectorcall] = ACTIONS(1197), + [anon_sym_LBRACE] = ACTIONS(1199), + [anon_sym_signed] = ACTIONS(1197), + [anon_sym_unsigned] = ACTIONS(1197), + [anon_sym_long] = ACTIONS(1197), + [anon_sym_short] = ACTIONS(1197), + [anon_sym_static] = ACTIONS(1197), + [anon_sym_auto] = ACTIONS(1197), + [anon_sym_register] = ACTIONS(1197), + [anon_sym_inline] = ACTIONS(1197), + [anon_sym___inline] = ACTIONS(1197), + [anon_sym___inline__] = ACTIONS(1197), + [anon_sym___forceinline] = ACTIONS(1197), + [anon_sym_thread_local] = ACTIONS(1197), + [anon_sym___thread] = ACTIONS(1197), + [anon_sym_const] = ACTIONS(1197), + [anon_sym_constexpr] = ACTIONS(1197), + [anon_sym_volatile] = ACTIONS(1197), + [anon_sym_restrict] = ACTIONS(1197), + [anon_sym___restrict__] = ACTIONS(1197), + [anon_sym__Atomic] = ACTIONS(1197), + [anon_sym__Noreturn] = ACTIONS(1197), + [anon_sym_noreturn] = ACTIONS(1197), + [anon_sym_alignas] = ACTIONS(1197), + [anon_sym__Alignas] = ACTIONS(1197), + [sym_primitive_type] = ACTIONS(1197), + [anon_sym_enum] = ACTIONS(1197), + [anon_sym_struct] = ACTIONS(1197), + [anon_sym_union] = ACTIONS(1197), + [anon_sym_if] = ACTIONS(1197), + [anon_sym_else] = ACTIONS(1197), + [anon_sym_switch] = ACTIONS(1197), + [anon_sym_case] = ACTIONS(1197), + [anon_sym_default] = ACTIONS(1197), + [anon_sym_while] = ACTIONS(1197), + [anon_sym_do] = ACTIONS(1197), + [anon_sym_for] = ACTIONS(1197), + [anon_sym_return] = ACTIONS(1197), + [anon_sym_break] = ACTIONS(1197), + [anon_sym_continue] = ACTIONS(1197), + [anon_sym_goto] = ACTIONS(1197), + [anon_sym___try] = ACTIONS(1197), + [anon_sym___leave] = ACTIONS(1197), + [anon_sym_DASH_DASH] = ACTIONS(1199), + [anon_sym_PLUS_PLUS] = ACTIONS(1199), + [anon_sym_sizeof] = ACTIONS(1197), + [anon_sym___alignof__] = ACTIONS(1197), + [anon_sym___alignof] = ACTIONS(1197), + [anon_sym__alignof] = ACTIONS(1197), + [anon_sym_alignof] = ACTIONS(1197), + [anon_sym__Alignof] = ACTIONS(1197), + [anon_sym_offsetof] = ACTIONS(1197), + [anon_sym__Generic] = ACTIONS(1197), + [anon_sym_asm] = ACTIONS(1197), + [anon_sym___asm__] = ACTIONS(1197), + [sym_number_literal] = ACTIONS(1199), + [anon_sym_L_SQUOTE] = ACTIONS(1199), + [anon_sym_u_SQUOTE] = ACTIONS(1199), + [anon_sym_U_SQUOTE] = ACTIONS(1199), + [anon_sym_u8_SQUOTE] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1199), + [anon_sym_L_DQUOTE] = ACTIONS(1199), + [anon_sym_u_DQUOTE] = ACTIONS(1199), + [anon_sym_U_DQUOTE] = ACTIONS(1199), + [anon_sym_u8_DQUOTE] = ACTIONS(1199), + [anon_sym_DQUOTE] = ACTIONS(1199), + [sym_true] = ACTIONS(1197), + [sym_false] = ACTIONS(1197), + [anon_sym_NULL] = ACTIONS(1197), + [anon_sym_nullptr] = ACTIONS(1197), [sym_comment] = ACTIONS(3), }, - [94] = { - [sym_identifier] = ACTIONS(1205), - [aux_sym_preproc_include_token1] = ACTIONS(1205), - [aux_sym_preproc_def_token1] = ACTIONS(1205), - [aux_sym_preproc_if_token1] = ACTIONS(1205), - [aux_sym_preproc_if_token2] = ACTIONS(1205), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1205), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1205), - [aux_sym_preproc_else_token1] = ACTIONS(1205), - [aux_sym_preproc_elif_token1] = ACTIONS(1205), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1205), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1205), - [sym_preproc_directive] = ACTIONS(1205), - [anon_sym_LPAREN2] = ACTIONS(1207), - [anon_sym_BANG] = ACTIONS(1207), - [anon_sym_TILDE] = ACTIONS(1207), - [anon_sym_DASH] = ACTIONS(1205), - [anon_sym_PLUS] = ACTIONS(1205), - [anon_sym_STAR] = ACTIONS(1207), - [anon_sym_AMP] = ACTIONS(1207), - [anon_sym_SEMI] = ACTIONS(1207), - [anon_sym___extension__] = ACTIONS(1205), - [anon_sym_typedef] = ACTIONS(1205), - [anon_sym_extern] = ACTIONS(1205), - [anon_sym___attribute__] = ACTIONS(1205), - [anon_sym___scanf] = ACTIONS(1205), - [anon_sym___printf] = ACTIONS(1205), - [anon_sym___read_mostly] = ACTIONS(1205), - [anon_sym___must_hold] = ACTIONS(1205), - [anon_sym___ro_after_init] = ACTIONS(1205), - [anon_sym___init] = ACTIONS(1205), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1207), - [anon_sym___declspec] = ACTIONS(1205), - [anon_sym___cdecl] = ACTIONS(1205), - [anon_sym___clrcall] = ACTIONS(1205), - [anon_sym___stdcall] = ACTIONS(1205), - [anon_sym___fastcall] = ACTIONS(1205), - [anon_sym___thiscall] = ACTIONS(1205), - [anon_sym___vectorcall] = ACTIONS(1205), - [anon_sym_LBRACE] = ACTIONS(1207), - [anon_sym_signed] = ACTIONS(1205), - [anon_sym_unsigned] = ACTIONS(1205), - [anon_sym_long] = ACTIONS(1205), - [anon_sym_short] = ACTIONS(1205), - [anon_sym_static] = ACTIONS(1205), - [anon_sym_auto] = ACTIONS(1205), - [anon_sym_register] = ACTIONS(1205), - [anon_sym_inline] = ACTIONS(1205), - [anon_sym___inline] = ACTIONS(1205), - [anon_sym___inline__] = ACTIONS(1205), - [anon_sym___forceinline] = ACTIONS(1205), - [anon_sym_thread_local] = ACTIONS(1205), - [anon_sym___thread] = ACTIONS(1205), - [anon_sym_const] = ACTIONS(1205), - [anon_sym_constexpr] = ACTIONS(1205), - [anon_sym_volatile] = ACTIONS(1205), - [anon_sym_restrict] = ACTIONS(1205), - [anon_sym___restrict__] = ACTIONS(1205), - [anon_sym__Atomic] = ACTIONS(1205), - [anon_sym__Noreturn] = ACTIONS(1205), - [anon_sym_noreturn] = ACTIONS(1205), - [anon_sym_alignas] = ACTIONS(1205), - [anon_sym__Alignas] = ACTIONS(1205), - [sym_primitive_type] = ACTIONS(1205), - [anon_sym_enum] = ACTIONS(1205), - [anon_sym_struct] = ACTIONS(1205), - [anon_sym_union] = ACTIONS(1205), - [anon_sym_if] = ACTIONS(1205), - [anon_sym_else] = ACTIONS(1205), - [anon_sym_switch] = ACTIONS(1205), - [anon_sym_case] = ACTIONS(1205), + [90] = { + [sym_identifier] = ACTIONS(1197), + [aux_sym_preproc_include_token1] = ACTIONS(1197), + [aux_sym_preproc_def_token1] = ACTIONS(1197), + [aux_sym_preproc_if_token1] = ACTIONS(1197), + [aux_sym_preproc_if_token2] = ACTIONS(1197), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1197), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1197), + [aux_sym_preproc_else_token1] = ACTIONS(1197), + [aux_sym_preproc_elif_token1] = ACTIONS(1197), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1197), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1197), + [sym_preproc_directive] = ACTIONS(1197), + [anon_sym_LPAREN2] = ACTIONS(1199), + [anon_sym_BANG] = ACTIONS(1199), + [anon_sym_TILDE] = ACTIONS(1199), + [anon_sym_DASH] = ACTIONS(1197), + [anon_sym_PLUS] = ACTIONS(1197), + [anon_sym_STAR] = ACTIONS(1199), + [anon_sym_AMP] = ACTIONS(1199), + [anon_sym_SEMI] = ACTIONS(1199), + [anon_sym___extension__] = ACTIONS(1197), + [anon_sym_typedef] = ACTIONS(1197), + [anon_sym_extern] = ACTIONS(1197), + [anon_sym___attribute__] = ACTIONS(1197), + [anon_sym___scanf] = ACTIONS(1197), + [anon_sym___printf] = ACTIONS(1197), + [anon_sym___read_mostly] = ACTIONS(1197), + [anon_sym___must_hold] = ACTIONS(1197), + [anon_sym___ro_after_init] = ACTIONS(1197), + [anon_sym___noreturn] = ACTIONS(1197), + [anon_sym___cold] = ACTIONS(1197), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1199), + [anon_sym___declspec] = ACTIONS(1197), + [anon_sym___init] = ACTIONS(1197), + [anon_sym___exit] = ACTIONS(1197), + [anon_sym___cdecl] = ACTIONS(1197), + [anon_sym___clrcall] = ACTIONS(1197), + [anon_sym___stdcall] = ACTIONS(1197), + [anon_sym___fastcall] = ACTIONS(1197), + [anon_sym___thiscall] = ACTIONS(1197), + [anon_sym___vectorcall] = ACTIONS(1197), + [anon_sym_LBRACE] = ACTIONS(1199), + [anon_sym_signed] = ACTIONS(1197), + [anon_sym_unsigned] = ACTIONS(1197), + [anon_sym_long] = ACTIONS(1197), + [anon_sym_short] = ACTIONS(1197), + [anon_sym_static] = ACTIONS(1197), + [anon_sym_auto] = ACTIONS(1197), + [anon_sym_register] = ACTIONS(1197), + [anon_sym_inline] = ACTIONS(1197), + [anon_sym___inline] = ACTIONS(1197), + [anon_sym___inline__] = ACTIONS(1197), + [anon_sym___forceinline] = ACTIONS(1197), + [anon_sym_thread_local] = ACTIONS(1197), + [anon_sym___thread] = ACTIONS(1197), + [anon_sym_const] = ACTIONS(1197), + [anon_sym_constexpr] = ACTIONS(1197), + [anon_sym_volatile] = ACTIONS(1197), + [anon_sym_restrict] = ACTIONS(1197), + [anon_sym___restrict__] = ACTIONS(1197), + [anon_sym__Atomic] = ACTIONS(1197), + [anon_sym__Noreturn] = ACTIONS(1197), + [anon_sym_noreturn] = ACTIONS(1197), + [anon_sym_alignas] = ACTIONS(1197), + [anon_sym__Alignas] = ACTIONS(1197), + [sym_primitive_type] = ACTIONS(1197), + [anon_sym_enum] = ACTIONS(1197), + [anon_sym_struct] = ACTIONS(1197), + [anon_sym_union] = ACTIONS(1197), + [anon_sym_if] = ACTIONS(1197), + [anon_sym_else] = ACTIONS(1197), + [anon_sym_switch] = ACTIONS(1197), + [anon_sym_case] = ACTIONS(1197), + [anon_sym_default] = ACTIONS(1197), + [anon_sym_while] = ACTIONS(1197), + [anon_sym_do] = ACTIONS(1197), + [anon_sym_for] = ACTIONS(1197), + [anon_sym_return] = ACTIONS(1197), + [anon_sym_break] = ACTIONS(1197), + [anon_sym_continue] = ACTIONS(1197), + [anon_sym_goto] = ACTIONS(1197), + [anon_sym___try] = ACTIONS(1197), + [anon_sym___leave] = ACTIONS(1197), + [anon_sym_DASH_DASH] = ACTIONS(1199), + [anon_sym_PLUS_PLUS] = ACTIONS(1199), + [anon_sym_sizeof] = ACTIONS(1197), + [anon_sym___alignof__] = ACTIONS(1197), + [anon_sym___alignof] = ACTIONS(1197), + [anon_sym__alignof] = ACTIONS(1197), + [anon_sym_alignof] = ACTIONS(1197), + [anon_sym__Alignof] = ACTIONS(1197), + [anon_sym_offsetof] = ACTIONS(1197), + [anon_sym__Generic] = ACTIONS(1197), + [anon_sym_asm] = ACTIONS(1197), + [anon_sym___asm__] = ACTIONS(1197), + [sym_number_literal] = ACTIONS(1199), + [anon_sym_L_SQUOTE] = ACTIONS(1199), + [anon_sym_u_SQUOTE] = ACTIONS(1199), + [anon_sym_U_SQUOTE] = ACTIONS(1199), + [anon_sym_u8_SQUOTE] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1199), + [anon_sym_L_DQUOTE] = ACTIONS(1199), + [anon_sym_u_DQUOTE] = ACTIONS(1199), + [anon_sym_U_DQUOTE] = ACTIONS(1199), + [anon_sym_u8_DQUOTE] = ACTIONS(1199), + [anon_sym_DQUOTE] = ACTIONS(1199), + [sym_true] = ACTIONS(1197), + [sym_false] = ACTIONS(1197), + [anon_sym_NULL] = ACTIONS(1197), + [anon_sym_nullptr] = ACTIONS(1197), + [sym_comment] = ACTIONS(3), + }, + [91] = { + [ts_builtin_sym_end] = ACTIONS(1201), + [sym_identifier] = ACTIONS(1203), + [aux_sym_preproc_include_token1] = ACTIONS(1203), + [aux_sym_preproc_def_token1] = ACTIONS(1203), + [anon_sym_COMMA] = ACTIONS(1201), + [anon_sym_RPAREN] = ACTIONS(1201), + [aux_sym_preproc_if_token1] = ACTIONS(1203), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1203), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1203), + [sym_preproc_directive] = ACTIONS(1203), + [anon_sym_LPAREN2] = ACTIONS(1201), + [anon_sym_BANG] = ACTIONS(1201), + [anon_sym_TILDE] = ACTIONS(1201), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_STAR] = ACTIONS(1201), + [anon_sym_AMP] = ACTIONS(1201), + [anon_sym_SEMI] = ACTIONS(1201), + [anon_sym___extension__] = ACTIONS(1203), + [anon_sym_typedef] = ACTIONS(1203), + [anon_sym_extern] = ACTIONS(1203), + [anon_sym___attribute__] = ACTIONS(1203), + [anon_sym___scanf] = ACTIONS(1203), + [anon_sym___printf] = ACTIONS(1203), + [anon_sym___read_mostly] = ACTIONS(1203), + [anon_sym___must_hold] = ACTIONS(1203), + [anon_sym___ro_after_init] = ACTIONS(1203), + [anon_sym___noreturn] = ACTIONS(1203), + [anon_sym___cold] = ACTIONS(1203), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1201), + [anon_sym___declspec] = ACTIONS(1203), + [anon_sym___init] = ACTIONS(1203), + [anon_sym___exit] = ACTIONS(1203), + [anon_sym___cdecl] = ACTIONS(1203), + [anon_sym___clrcall] = ACTIONS(1203), + [anon_sym___stdcall] = ACTIONS(1203), + [anon_sym___fastcall] = ACTIONS(1203), + [anon_sym___thiscall] = ACTIONS(1203), + [anon_sym___vectorcall] = ACTIONS(1203), + [anon_sym_LBRACE] = ACTIONS(1201), + [anon_sym_signed] = ACTIONS(1203), + [anon_sym_unsigned] = ACTIONS(1203), + [anon_sym_long] = ACTIONS(1203), + [anon_sym_short] = ACTIONS(1203), + [anon_sym_static] = ACTIONS(1203), + [anon_sym_auto] = ACTIONS(1203), + [anon_sym_register] = ACTIONS(1203), + [anon_sym_inline] = ACTIONS(1203), + [anon_sym___inline] = ACTIONS(1203), + [anon_sym___inline__] = ACTIONS(1203), + [anon_sym___forceinline] = ACTIONS(1203), + [anon_sym_thread_local] = ACTIONS(1203), + [anon_sym___thread] = ACTIONS(1203), + [anon_sym_const] = ACTIONS(1203), + [anon_sym_constexpr] = ACTIONS(1203), + [anon_sym_volatile] = ACTIONS(1203), + [anon_sym_restrict] = ACTIONS(1203), + [anon_sym___restrict__] = ACTIONS(1203), + [anon_sym__Atomic] = ACTIONS(1203), + [anon_sym__Noreturn] = ACTIONS(1203), + [anon_sym_noreturn] = ACTIONS(1203), + [anon_sym_alignas] = ACTIONS(1203), + [anon_sym__Alignas] = ACTIONS(1203), + [sym_primitive_type] = ACTIONS(1203), + [anon_sym_enum] = ACTIONS(1203), + [anon_sym_struct] = ACTIONS(1203), + [anon_sym_union] = ACTIONS(1203), + [anon_sym_if] = ACTIONS(1203), + [anon_sym_else] = ACTIONS(1203), + [anon_sym_switch] = ACTIONS(1203), + [anon_sym_case] = ACTIONS(1203), + [anon_sym_default] = ACTIONS(1203), + [anon_sym_while] = ACTIONS(1203), + [anon_sym_do] = ACTIONS(1203), + [anon_sym_for] = ACTIONS(1203), + [anon_sym_return] = ACTIONS(1203), + [anon_sym_break] = ACTIONS(1203), + [anon_sym_continue] = ACTIONS(1203), + [anon_sym_goto] = ACTIONS(1203), + [anon_sym___try] = ACTIONS(1203), + [anon_sym___except] = ACTIONS(1203), + [anon_sym___finally] = ACTIONS(1203), + [anon_sym___leave] = ACTIONS(1203), + [anon_sym_DASH_DASH] = ACTIONS(1201), + [anon_sym_PLUS_PLUS] = ACTIONS(1201), + [anon_sym_sizeof] = ACTIONS(1203), + [anon_sym___alignof__] = ACTIONS(1203), + [anon_sym___alignof] = ACTIONS(1203), + [anon_sym__alignof] = ACTIONS(1203), + [anon_sym_alignof] = ACTIONS(1203), + [anon_sym__Alignof] = ACTIONS(1203), + [anon_sym_offsetof] = ACTIONS(1203), + [anon_sym__Generic] = ACTIONS(1203), + [anon_sym_asm] = ACTIONS(1203), + [anon_sym___asm__] = ACTIONS(1203), + [sym_number_literal] = ACTIONS(1201), + [anon_sym_L_SQUOTE] = ACTIONS(1201), + [anon_sym_u_SQUOTE] = ACTIONS(1201), + [anon_sym_U_SQUOTE] = ACTIONS(1201), + [anon_sym_u8_SQUOTE] = ACTIONS(1201), + [anon_sym_SQUOTE] = ACTIONS(1201), + [anon_sym_L_DQUOTE] = ACTIONS(1201), + [anon_sym_u_DQUOTE] = ACTIONS(1201), + [anon_sym_U_DQUOTE] = ACTIONS(1201), + [anon_sym_u8_DQUOTE] = ACTIONS(1201), + [anon_sym_DQUOTE] = ACTIONS(1201), + [sym_true] = ACTIONS(1203), + [sym_false] = ACTIONS(1203), + [anon_sym_NULL] = ACTIONS(1203), + [anon_sym_nullptr] = ACTIONS(1203), + [sym_comment] = ACTIONS(3), + }, + [92] = { + [sym_identifier] = ACTIONS(1165), + [aux_sym_preproc_include_token1] = ACTIONS(1165), + [aux_sym_preproc_def_token1] = ACTIONS(1165), + [aux_sym_preproc_if_token1] = ACTIONS(1165), + [aux_sym_preproc_if_token2] = ACTIONS(1165), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1165), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1165), + [aux_sym_preproc_else_token1] = ACTIONS(1165), + [aux_sym_preproc_elif_token1] = ACTIONS(1165), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1165), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1165), + [sym_preproc_directive] = ACTIONS(1165), + [anon_sym_LPAREN2] = ACTIONS(1167), + [anon_sym_BANG] = ACTIONS(1167), + [anon_sym_TILDE] = ACTIONS(1167), + [anon_sym_DASH] = ACTIONS(1165), + [anon_sym_PLUS] = ACTIONS(1165), + [anon_sym_STAR] = ACTIONS(1167), + [anon_sym_AMP] = ACTIONS(1167), + [anon_sym_SEMI] = ACTIONS(1167), + [anon_sym___extension__] = ACTIONS(1165), + [anon_sym_typedef] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1165), + [anon_sym___attribute__] = ACTIONS(1165), + [anon_sym___scanf] = ACTIONS(1165), + [anon_sym___printf] = ACTIONS(1165), + [anon_sym___read_mostly] = ACTIONS(1165), + [anon_sym___must_hold] = ACTIONS(1165), + [anon_sym___ro_after_init] = ACTIONS(1165), + [anon_sym___noreturn] = ACTIONS(1165), + [anon_sym___cold] = ACTIONS(1165), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1167), + [anon_sym___declspec] = ACTIONS(1165), + [anon_sym___init] = ACTIONS(1165), + [anon_sym___exit] = ACTIONS(1165), + [anon_sym___cdecl] = ACTIONS(1165), + [anon_sym___clrcall] = ACTIONS(1165), + [anon_sym___stdcall] = ACTIONS(1165), + [anon_sym___fastcall] = ACTIONS(1165), + [anon_sym___thiscall] = ACTIONS(1165), + [anon_sym___vectorcall] = ACTIONS(1165), + [anon_sym_LBRACE] = ACTIONS(1167), + [anon_sym_signed] = ACTIONS(1165), + [anon_sym_unsigned] = ACTIONS(1165), + [anon_sym_long] = ACTIONS(1165), + [anon_sym_short] = ACTIONS(1165), + [anon_sym_static] = ACTIONS(1165), + [anon_sym_auto] = ACTIONS(1165), + [anon_sym_register] = ACTIONS(1165), + [anon_sym_inline] = ACTIONS(1165), + [anon_sym___inline] = ACTIONS(1165), + [anon_sym___inline__] = ACTIONS(1165), + [anon_sym___forceinline] = ACTIONS(1165), + [anon_sym_thread_local] = ACTIONS(1165), + [anon_sym___thread] = ACTIONS(1165), + [anon_sym_const] = ACTIONS(1165), + [anon_sym_constexpr] = ACTIONS(1165), + [anon_sym_volatile] = ACTIONS(1165), + [anon_sym_restrict] = ACTIONS(1165), + [anon_sym___restrict__] = ACTIONS(1165), + [anon_sym__Atomic] = ACTIONS(1165), + [anon_sym__Noreturn] = ACTIONS(1165), + [anon_sym_noreturn] = ACTIONS(1165), + [anon_sym_alignas] = ACTIONS(1165), + [anon_sym__Alignas] = ACTIONS(1165), + [sym_primitive_type] = ACTIONS(1165), + [anon_sym_enum] = ACTIONS(1165), + [anon_sym_struct] = ACTIONS(1165), + [anon_sym_union] = ACTIONS(1165), + [anon_sym_if] = ACTIONS(1165), + [anon_sym_else] = ACTIONS(1165), + [anon_sym_switch] = ACTIONS(1165), + [anon_sym_case] = ACTIONS(1165), + [anon_sym_default] = ACTIONS(1165), + [anon_sym_while] = ACTIONS(1165), + [anon_sym_do] = ACTIONS(1165), + [anon_sym_for] = ACTIONS(1165), + [anon_sym_return] = ACTIONS(1165), + [anon_sym_break] = ACTIONS(1165), + [anon_sym_continue] = ACTIONS(1165), + [anon_sym_goto] = ACTIONS(1165), + [anon_sym___try] = ACTIONS(1165), + [anon_sym___leave] = ACTIONS(1165), + [anon_sym_DASH_DASH] = ACTIONS(1167), + [anon_sym_PLUS_PLUS] = ACTIONS(1167), + [anon_sym_sizeof] = ACTIONS(1165), + [anon_sym___alignof__] = ACTIONS(1165), + [anon_sym___alignof] = ACTIONS(1165), + [anon_sym__alignof] = ACTIONS(1165), + [anon_sym_alignof] = ACTIONS(1165), + [anon_sym__Alignof] = ACTIONS(1165), + [anon_sym_offsetof] = ACTIONS(1165), + [anon_sym__Generic] = ACTIONS(1165), + [anon_sym_asm] = ACTIONS(1165), + [anon_sym___asm__] = ACTIONS(1165), + [sym_number_literal] = ACTIONS(1167), + [anon_sym_L_SQUOTE] = ACTIONS(1167), + [anon_sym_u_SQUOTE] = ACTIONS(1167), + [anon_sym_U_SQUOTE] = ACTIONS(1167), + [anon_sym_u8_SQUOTE] = ACTIONS(1167), + [anon_sym_SQUOTE] = ACTIONS(1167), + [anon_sym_L_DQUOTE] = ACTIONS(1167), + [anon_sym_u_DQUOTE] = ACTIONS(1167), + [anon_sym_U_DQUOTE] = ACTIONS(1167), + [anon_sym_u8_DQUOTE] = ACTIONS(1167), + [anon_sym_DQUOTE] = ACTIONS(1167), + [sym_true] = ACTIONS(1165), + [sym_false] = ACTIONS(1165), + [anon_sym_NULL] = ACTIONS(1165), + [anon_sym_nullptr] = ACTIONS(1165), + [sym_comment] = ACTIONS(3), + }, + [93] = { + [sym_identifier] = ACTIONS(1205), + [aux_sym_preproc_include_token1] = ACTIONS(1205), + [aux_sym_preproc_def_token1] = ACTIONS(1205), + [aux_sym_preproc_if_token1] = ACTIONS(1205), + [aux_sym_preproc_if_token2] = ACTIONS(1205), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1205), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1205), + [aux_sym_preproc_else_token1] = ACTIONS(1205), + [aux_sym_preproc_elif_token1] = ACTIONS(1205), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1205), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1205), + [sym_preproc_directive] = ACTIONS(1205), + [anon_sym_LPAREN2] = ACTIONS(1207), + [anon_sym_BANG] = ACTIONS(1207), + [anon_sym_TILDE] = ACTIONS(1207), + [anon_sym_DASH] = ACTIONS(1205), + [anon_sym_PLUS] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1207), + [anon_sym_AMP] = ACTIONS(1207), + [anon_sym_SEMI] = ACTIONS(1207), + [anon_sym___extension__] = ACTIONS(1205), + [anon_sym_typedef] = ACTIONS(1205), + [anon_sym_extern] = ACTIONS(1205), + [anon_sym___attribute__] = ACTIONS(1205), + [anon_sym___scanf] = ACTIONS(1205), + [anon_sym___printf] = ACTIONS(1205), + [anon_sym___read_mostly] = ACTIONS(1205), + [anon_sym___must_hold] = ACTIONS(1205), + [anon_sym___ro_after_init] = ACTIONS(1205), + [anon_sym___noreturn] = ACTIONS(1205), + [anon_sym___cold] = ACTIONS(1205), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1207), + [anon_sym___declspec] = ACTIONS(1205), + [anon_sym___init] = ACTIONS(1205), + [anon_sym___exit] = ACTIONS(1205), + [anon_sym___cdecl] = ACTIONS(1205), + [anon_sym___clrcall] = ACTIONS(1205), + [anon_sym___stdcall] = ACTIONS(1205), + [anon_sym___fastcall] = ACTIONS(1205), + [anon_sym___thiscall] = ACTIONS(1205), + [anon_sym___vectorcall] = ACTIONS(1205), + [anon_sym_LBRACE] = ACTIONS(1207), + [anon_sym_signed] = ACTIONS(1205), + [anon_sym_unsigned] = ACTIONS(1205), + [anon_sym_long] = ACTIONS(1205), + [anon_sym_short] = ACTIONS(1205), + [anon_sym_static] = ACTIONS(1205), + [anon_sym_auto] = ACTIONS(1205), + [anon_sym_register] = ACTIONS(1205), + [anon_sym_inline] = ACTIONS(1205), + [anon_sym___inline] = ACTIONS(1205), + [anon_sym___inline__] = ACTIONS(1205), + [anon_sym___forceinline] = ACTIONS(1205), + [anon_sym_thread_local] = ACTIONS(1205), + [anon_sym___thread] = ACTIONS(1205), + [anon_sym_const] = ACTIONS(1205), + [anon_sym_constexpr] = ACTIONS(1205), + [anon_sym_volatile] = ACTIONS(1205), + [anon_sym_restrict] = ACTIONS(1205), + [anon_sym___restrict__] = ACTIONS(1205), + [anon_sym__Atomic] = ACTIONS(1205), + [anon_sym__Noreturn] = ACTIONS(1205), + [anon_sym_noreturn] = ACTIONS(1205), + [anon_sym_alignas] = ACTIONS(1205), + [anon_sym__Alignas] = ACTIONS(1205), + [sym_primitive_type] = ACTIONS(1205), + [anon_sym_enum] = ACTIONS(1205), + [anon_sym_struct] = ACTIONS(1205), + [anon_sym_union] = ACTIONS(1205), + [anon_sym_if] = ACTIONS(1205), + [anon_sym_else] = ACTIONS(1205), + [anon_sym_switch] = ACTIONS(1205), + [anon_sym_case] = ACTIONS(1205), [anon_sym_default] = ACTIONS(1205), [anon_sym_while] = ACTIONS(1205), [anon_sym_do] = ACTIONS(1205), @@ -26691,7 +27521,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1205), [sym_comment] = ACTIONS(3), }, - [95] = { + [94] = { [sym_identifier] = ACTIONS(1209), [aux_sym_preproc_include_token1] = ACTIONS(1209), [aux_sym_preproc_def_token1] = ACTIONS(1209), @@ -26721,9 +27551,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___read_mostly] = ACTIONS(1209), [anon_sym___must_hold] = ACTIONS(1209), [anon_sym___ro_after_init] = ACTIONS(1209), - [anon_sym___init] = ACTIONS(1209), + [anon_sym___noreturn] = ACTIONS(1209), + [anon_sym___cold] = ACTIONS(1209), [anon_sym_LBRACK_LBRACK] = ACTIONS(1211), [anon_sym___declspec] = ACTIONS(1209), + [anon_sym___init] = ACTIONS(1209), + [anon_sym___exit] = ACTIONS(1209), [anon_sym___cdecl] = ACTIONS(1209), [anon_sym___clrcall] = ACTIONS(1209), [anon_sym___stdcall] = ACTIONS(1209), @@ -26801,7 +27634,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1209), [sym_comment] = ACTIONS(3), }, - [96] = { + [95] = { [sym_identifier] = ACTIONS(1213), [aux_sym_preproc_include_token1] = ACTIONS(1213), [aux_sym_preproc_def_token1] = ACTIONS(1213), @@ -26831,9 +27664,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___read_mostly] = ACTIONS(1213), [anon_sym___must_hold] = ACTIONS(1213), [anon_sym___ro_after_init] = ACTIONS(1213), - [anon_sym___init] = ACTIONS(1213), + [anon_sym___noreturn] = ACTIONS(1213), + [anon_sym___cold] = ACTIONS(1213), [anon_sym_LBRACK_LBRACK] = ACTIONS(1215), [anon_sym___declspec] = ACTIONS(1213), + [anon_sym___init] = ACTIONS(1213), + [anon_sym___exit] = ACTIONS(1213), [anon_sym___cdecl] = ACTIONS(1213), [anon_sym___clrcall] = ACTIONS(1213), [anon_sym___stdcall] = ACTIONS(1213), @@ -26911,7 +27747,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1213), [sym_comment] = ACTIONS(3), }, - [97] = { + [96] = { [sym_identifier] = ACTIONS(1217), [aux_sym_preproc_include_token1] = ACTIONS(1217), [aux_sym_preproc_def_token1] = ACTIONS(1217), @@ -26941,9 +27777,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___read_mostly] = ACTIONS(1217), [anon_sym___must_hold] = ACTIONS(1217), [anon_sym___ro_after_init] = ACTIONS(1217), - [anon_sym___init] = ACTIONS(1217), + [anon_sym___noreturn] = ACTIONS(1217), + [anon_sym___cold] = ACTIONS(1217), [anon_sym_LBRACK_LBRACK] = ACTIONS(1219), [anon_sym___declspec] = ACTIONS(1217), + [anon_sym___init] = ACTIONS(1217), + [anon_sym___exit] = ACTIONS(1217), [anon_sym___cdecl] = ACTIONS(1217), [anon_sym___clrcall] = ACTIONS(1217), [anon_sym___stdcall] = ACTIONS(1217), @@ -27021,7 +27860,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1217), [sym_comment] = ACTIONS(3), }, - [98] = { + [97] = { [sym_identifier] = ACTIONS(1221), [aux_sym_preproc_include_token1] = ACTIONS(1221), [aux_sym_preproc_def_token1] = ACTIONS(1221), @@ -27051,9 +27890,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___read_mostly] = ACTIONS(1221), [anon_sym___must_hold] = ACTIONS(1221), [anon_sym___ro_after_init] = ACTIONS(1221), - [anon_sym___init] = ACTIONS(1221), + [anon_sym___noreturn] = ACTIONS(1221), + [anon_sym___cold] = ACTIONS(1221), [anon_sym_LBRACK_LBRACK] = ACTIONS(1223), [anon_sym___declspec] = ACTIONS(1221), + [anon_sym___init] = ACTIONS(1221), + [anon_sym___exit] = ACTIONS(1221), [anon_sym___cdecl] = ACTIONS(1221), [anon_sym___clrcall] = ACTIONS(1221), [anon_sym___stdcall] = ACTIONS(1221), @@ -27131,7 +27973,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1221), [sym_comment] = ACTIONS(3), }, - [99] = { + [98] = { [sym_identifier] = ACTIONS(1225), [aux_sym_preproc_include_token1] = ACTIONS(1225), [aux_sym_preproc_def_token1] = ACTIONS(1225), @@ -27161,9 +28003,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___read_mostly] = ACTIONS(1225), [anon_sym___must_hold] = ACTIONS(1225), [anon_sym___ro_after_init] = ACTIONS(1225), - [anon_sym___init] = ACTIONS(1225), + [anon_sym___noreturn] = ACTIONS(1225), + [anon_sym___cold] = ACTIONS(1225), [anon_sym_LBRACK_LBRACK] = ACTIONS(1227), [anon_sym___declspec] = ACTIONS(1225), + [anon_sym___init] = ACTIONS(1225), + [anon_sym___exit] = ACTIONS(1225), [anon_sym___cdecl] = ACTIONS(1225), [anon_sym___clrcall] = ACTIONS(1225), [anon_sym___stdcall] = ACTIONS(1225), @@ -27241,597 +28086,1180 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1225), [sym_comment] = ACTIONS(3), }, + [99] = { + [sym_identifier] = ACTIONS(1165), + [aux_sym_preproc_include_token1] = ACTIONS(1165), + [aux_sym_preproc_def_token1] = ACTIONS(1165), + [aux_sym_preproc_if_token1] = ACTIONS(1165), + [aux_sym_preproc_if_token2] = ACTIONS(1165), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1165), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1165), + [aux_sym_preproc_else_token1] = ACTIONS(1165), + [aux_sym_preproc_elif_token1] = ACTIONS(1165), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1165), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1165), + [sym_preproc_directive] = ACTIONS(1165), + [anon_sym_LPAREN2] = ACTIONS(1167), + [anon_sym_BANG] = ACTIONS(1167), + [anon_sym_TILDE] = ACTIONS(1167), + [anon_sym_DASH] = ACTIONS(1165), + [anon_sym_PLUS] = ACTIONS(1165), + [anon_sym_STAR] = ACTIONS(1167), + [anon_sym_AMP] = ACTIONS(1167), + [anon_sym_SEMI] = ACTIONS(1167), + [anon_sym___extension__] = ACTIONS(1165), + [anon_sym_typedef] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1165), + [anon_sym___attribute__] = ACTIONS(1165), + [anon_sym___scanf] = ACTIONS(1165), + [anon_sym___printf] = ACTIONS(1165), + [anon_sym___read_mostly] = ACTIONS(1165), + [anon_sym___must_hold] = ACTIONS(1165), + [anon_sym___ro_after_init] = ACTIONS(1165), + [anon_sym___noreturn] = ACTIONS(1165), + [anon_sym___cold] = ACTIONS(1165), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1167), + [anon_sym___declspec] = ACTIONS(1165), + [anon_sym___init] = ACTIONS(1165), + [anon_sym___exit] = ACTIONS(1165), + [anon_sym___cdecl] = ACTIONS(1165), + [anon_sym___clrcall] = ACTIONS(1165), + [anon_sym___stdcall] = ACTIONS(1165), + [anon_sym___fastcall] = ACTIONS(1165), + [anon_sym___thiscall] = ACTIONS(1165), + [anon_sym___vectorcall] = ACTIONS(1165), + [anon_sym_LBRACE] = ACTIONS(1167), + [anon_sym_signed] = ACTIONS(1165), + [anon_sym_unsigned] = ACTIONS(1165), + [anon_sym_long] = ACTIONS(1165), + [anon_sym_short] = ACTIONS(1165), + [anon_sym_static] = ACTIONS(1165), + [anon_sym_auto] = ACTIONS(1165), + [anon_sym_register] = ACTIONS(1165), + [anon_sym_inline] = ACTIONS(1165), + [anon_sym___inline] = ACTIONS(1165), + [anon_sym___inline__] = ACTIONS(1165), + [anon_sym___forceinline] = ACTIONS(1165), + [anon_sym_thread_local] = ACTIONS(1165), + [anon_sym___thread] = ACTIONS(1165), + [anon_sym_const] = ACTIONS(1165), + [anon_sym_constexpr] = ACTIONS(1165), + [anon_sym_volatile] = ACTIONS(1165), + [anon_sym_restrict] = ACTIONS(1165), + [anon_sym___restrict__] = ACTIONS(1165), + [anon_sym__Atomic] = ACTIONS(1165), + [anon_sym__Noreturn] = ACTIONS(1165), + [anon_sym_noreturn] = ACTIONS(1165), + [anon_sym_alignas] = ACTIONS(1165), + [anon_sym__Alignas] = ACTIONS(1165), + [sym_primitive_type] = ACTIONS(1165), + [anon_sym_enum] = ACTIONS(1165), + [anon_sym_struct] = ACTIONS(1165), + [anon_sym_union] = ACTIONS(1165), + [anon_sym_if] = ACTIONS(1165), + [anon_sym_else] = ACTIONS(1165), + [anon_sym_switch] = ACTIONS(1165), + [anon_sym_case] = ACTIONS(1165), + [anon_sym_default] = ACTIONS(1165), + [anon_sym_while] = ACTIONS(1165), + [anon_sym_do] = ACTIONS(1165), + [anon_sym_for] = ACTIONS(1165), + [anon_sym_return] = ACTIONS(1165), + [anon_sym_break] = ACTIONS(1165), + [anon_sym_continue] = ACTIONS(1165), + [anon_sym_goto] = ACTIONS(1165), + [anon_sym___try] = ACTIONS(1165), + [anon_sym___leave] = ACTIONS(1165), + [anon_sym_DASH_DASH] = ACTIONS(1167), + [anon_sym_PLUS_PLUS] = ACTIONS(1167), + [anon_sym_sizeof] = ACTIONS(1165), + [anon_sym___alignof__] = ACTIONS(1165), + [anon_sym___alignof] = ACTIONS(1165), + [anon_sym__alignof] = ACTIONS(1165), + [anon_sym_alignof] = ACTIONS(1165), + [anon_sym__Alignof] = ACTIONS(1165), + [anon_sym_offsetof] = ACTIONS(1165), + [anon_sym__Generic] = ACTIONS(1165), + [anon_sym_asm] = ACTIONS(1165), + [anon_sym___asm__] = ACTIONS(1165), + [sym_number_literal] = ACTIONS(1167), + [anon_sym_L_SQUOTE] = ACTIONS(1167), + [anon_sym_u_SQUOTE] = ACTIONS(1167), + [anon_sym_U_SQUOTE] = ACTIONS(1167), + [anon_sym_u8_SQUOTE] = ACTIONS(1167), + [anon_sym_SQUOTE] = ACTIONS(1167), + [anon_sym_L_DQUOTE] = ACTIONS(1167), + [anon_sym_u_DQUOTE] = ACTIONS(1167), + [anon_sym_U_DQUOTE] = ACTIONS(1167), + [anon_sym_u8_DQUOTE] = ACTIONS(1167), + [anon_sym_DQUOTE] = ACTIONS(1167), + [sym_true] = ACTIONS(1165), + [sym_false] = ACTIONS(1165), + [anon_sym_NULL] = ACTIONS(1165), + [anon_sym_nullptr] = ACTIONS(1165), + [sym_comment] = ACTIONS(3), + }, [100] = { - [sym_identifier] = ACTIONS(1229), - [aux_sym_preproc_include_token1] = ACTIONS(1229), - [aux_sym_preproc_def_token1] = ACTIONS(1229), - [aux_sym_preproc_if_token1] = ACTIONS(1229), - [aux_sym_preproc_if_token2] = ACTIONS(1229), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1229), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1229), - [aux_sym_preproc_else_token1] = ACTIONS(1229), - [aux_sym_preproc_elif_token1] = ACTIONS(1229), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1229), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1229), - [sym_preproc_directive] = ACTIONS(1229), - [anon_sym_LPAREN2] = ACTIONS(1231), - [anon_sym_BANG] = ACTIONS(1231), - [anon_sym_TILDE] = ACTIONS(1231), - [anon_sym_DASH] = ACTIONS(1229), - [anon_sym_PLUS] = ACTIONS(1229), - [anon_sym_STAR] = ACTIONS(1231), - [anon_sym_AMP] = ACTIONS(1231), - [anon_sym_SEMI] = ACTIONS(1231), - [anon_sym___extension__] = ACTIONS(1229), - [anon_sym_typedef] = ACTIONS(1229), - [anon_sym_extern] = ACTIONS(1229), - [anon_sym___attribute__] = ACTIONS(1229), - [anon_sym___scanf] = ACTIONS(1229), - [anon_sym___printf] = ACTIONS(1229), - [anon_sym___read_mostly] = ACTIONS(1229), - [anon_sym___must_hold] = ACTIONS(1229), - [anon_sym___ro_after_init] = ACTIONS(1229), - [anon_sym___init] = ACTIONS(1229), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1231), - [anon_sym___declspec] = ACTIONS(1229), - [anon_sym___cdecl] = ACTIONS(1229), - [anon_sym___clrcall] = ACTIONS(1229), - [anon_sym___stdcall] = ACTIONS(1229), - [anon_sym___fastcall] = ACTIONS(1229), - [anon_sym___thiscall] = ACTIONS(1229), - [anon_sym___vectorcall] = ACTIONS(1229), - [anon_sym_LBRACE] = ACTIONS(1231), - [anon_sym_signed] = ACTIONS(1229), - [anon_sym_unsigned] = ACTIONS(1229), - [anon_sym_long] = ACTIONS(1229), - [anon_sym_short] = ACTIONS(1229), - [anon_sym_static] = ACTIONS(1229), - [anon_sym_auto] = ACTIONS(1229), - [anon_sym_register] = ACTIONS(1229), - [anon_sym_inline] = ACTIONS(1229), - [anon_sym___inline] = ACTIONS(1229), - [anon_sym___inline__] = ACTIONS(1229), - [anon_sym___forceinline] = ACTIONS(1229), - [anon_sym_thread_local] = ACTIONS(1229), - [anon_sym___thread] = ACTIONS(1229), - [anon_sym_const] = ACTIONS(1229), - [anon_sym_constexpr] = ACTIONS(1229), - [anon_sym_volatile] = ACTIONS(1229), - [anon_sym_restrict] = ACTIONS(1229), - [anon_sym___restrict__] = ACTIONS(1229), - [anon_sym__Atomic] = ACTIONS(1229), - [anon_sym__Noreturn] = ACTIONS(1229), - [anon_sym_noreturn] = ACTIONS(1229), - [anon_sym_alignas] = ACTIONS(1229), - [anon_sym__Alignas] = ACTIONS(1229), - [sym_primitive_type] = ACTIONS(1229), - [anon_sym_enum] = ACTIONS(1229), - [anon_sym_struct] = ACTIONS(1229), - [anon_sym_union] = ACTIONS(1229), - [anon_sym_if] = ACTIONS(1229), - [anon_sym_else] = ACTIONS(1229), - [anon_sym_switch] = ACTIONS(1229), - [anon_sym_case] = ACTIONS(1229), - [anon_sym_default] = ACTIONS(1229), - [anon_sym_while] = ACTIONS(1229), - [anon_sym_do] = ACTIONS(1229), - [anon_sym_for] = ACTIONS(1229), - [anon_sym_return] = ACTIONS(1229), - [anon_sym_break] = ACTIONS(1229), - [anon_sym_continue] = ACTIONS(1229), - [anon_sym_goto] = ACTIONS(1229), - [anon_sym___try] = ACTIONS(1229), - [anon_sym___leave] = ACTIONS(1229), - [anon_sym_DASH_DASH] = ACTIONS(1231), - [anon_sym_PLUS_PLUS] = ACTIONS(1231), - [anon_sym_sizeof] = ACTIONS(1229), - [anon_sym___alignof__] = ACTIONS(1229), - [anon_sym___alignof] = ACTIONS(1229), - [anon_sym__alignof] = ACTIONS(1229), - [anon_sym_alignof] = ACTIONS(1229), - [anon_sym__Alignof] = ACTIONS(1229), - [anon_sym_offsetof] = ACTIONS(1229), - [anon_sym__Generic] = ACTIONS(1229), - [anon_sym_asm] = ACTIONS(1229), - [anon_sym___asm__] = ACTIONS(1229), - [sym_number_literal] = ACTIONS(1231), - [anon_sym_L_SQUOTE] = ACTIONS(1231), - [anon_sym_u_SQUOTE] = ACTIONS(1231), - [anon_sym_U_SQUOTE] = ACTIONS(1231), - [anon_sym_u8_SQUOTE] = ACTIONS(1231), - [anon_sym_SQUOTE] = ACTIONS(1231), - [anon_sym_L_DQUOTE] = ACTIONS(1231), - [anon_sym_u_DQUOTE] = ACTIONS(1231), - [anon_sym_U_DQUOTE] = ACTIONS(1231), - [anon_sym_u8_DQUOTE] = ACTIONS(1231), - [anon_sym_DQUOTE] = ACTIONS(1231), - [sym_true] = ACTIONS(1229), - [sym_false] = ACTIONS(1229), - [anon_sym_NULL] = ACTIONS(1229), - [anon_sym_nullptr] = ACTIONS(1229), + [sym_identifier] = ACTIONS(1225), + [aux_sym_preproc_include_token1] = ACTIONS(1225), + [aux_sym_preproc_def_token1] = ACTIONS(1225), + [aux_sym_preproc_if_token1] = ACTIONS(1225), + [aux_sym_preproc_if_token2] = ACTIONS(1225), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1225), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1225), + [aux_sym_preproc_else_token1] = ACTIONS(1225), + [aux_sym_preproc_elif_token1] = ACTIONS(1225), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1225), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1225), + [sym_preproc_directive] = ACTIONS(1225), + [anon_sym_LPAREN2] = ACTIONS(1227), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_TILDE] = ACTIONS(1227), + [anon_sym_DASH] = ACTIONS(1225), + [anon_sym_PLUS] = ACTIONS(1225), + [anon_sym_STAR] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(1227), + [anon_sym_SEMI] = ACTIONS(1227), + [anon_sym___extension__] = ACTIONS(1225), + [anon_sym_typedef] = ACTIONS(1225), + [anon_sym_extern] = ACTIONS(1225), + [anon_sym___attribute__] = ACTIONS(1225), + [anon_sym___scanf] = ACTIONS(1225), + [anon_sym___printf] = ACTIONS(1225), + [anon_sym___read_mostly] = ACTIONS(1225), + [anon_sym___must_hold] = ACTIONS(1225), + [anon_sym___ro_after_init] = ACTIONS(1225), + [anon_sym___noreturn] = ACTIONS(1225), + [anon_sym___cold] = ACTIONS(1225), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1227), + [anon_sym___declspec] = ACTIONS(1225), + [anon_sym___init] = ACTIONS(1225), + [anon_sym___exit] = ACTIONS(1225), + [anon_sym___cdecl] = ACTIONS(1225), + [anon_sym___clrcall] = ACTIONS(1225), + [anon_sym___stdcall] = ACTIONS(1225), + [anon_sym___fastcall] = ACTIONS(1225), + [anon_sym___thiscall] = ACTIONS(1225), + [anon_sym___vectorcall] = ACTIONS(1225), + [anon_sym_LBRACE] = ACTIONS(1227), + [anon_sym_signed] = ACTIONS(1225), + [anon_sym_unsigned] = ACTIONS(1225), + [anon_sym_long] = ACTIONS(1225), + [anon_sym_short] = ACTIONS(1225), + [anon_sym_static] = ACTIONS(1225), + [anon_sym_auto] = ACTIONS(1225), + [anon_sym_register] = ACTIONS(1225), + [anon_sym_inline] = ACTIONS(1225), + [anon_sym___inline] = ACTIONS(1225), + [anon_sym___inline__] = ACTIONS(1225), + [anon_sym___forceinline] = ACTIONS(1225), + [anon_sym_thread_local] = ACTIONS(1225), + [anon_sym___thread] = ACTIONS(1225), + [anon_sym_const] = ACTIONS(1225), + [anon_sym_constexpr] = ACTIONS(1225), + [anon_sym_volatile] = ACTIONS(1225), + [anon_sym_restrict] = ACTIONS(1225), + [anon_sym___restrict__] = ACTIONS(1225), + [anon_sym__Atomic] = ACTIONS(1225), + [anon_sym__Noreturn] = ACTIONS(1225), + [anon_sym_noreturn] = ACTIONS(1225), + [anon_sym_alignas] = ACTIONS(1225), + [anon_sym__Alignas] = ACTIONS(1225), + [sym_primitive_type] = ACTIONS(1225), + [anon_sym_enum] = ACTIONS(1225), + [anon_sym_struct] = ACTIONS(1225), + [anon_sym_union] = ACTIONS(1225), + [anon_sym_if] = ACTIONS(1225), + [anon_sym_else] = ACTIONS(1225), + [anon_sym_switch] = ACTIONS(1225), + [anon_sym_case] = ACTIONS(1225), + [anon_sym_default] = ACTIONS(1225), + [anon_sym_while] = ACTIONS(1225), + [anon_sym_do] = ACTIONS(1225), + [anon_sym_for] = ACTIONS(1225), + [anon_sym_return] = ACTIONS(1225), + [anon_sym_break] = ACTIONS(1225), + [anon_sym_continue] = ACTIONS(1225), + [anon_sym_goto] = ACTIONS(1225), + [anon_sym___try] = ACTIONS(1225), + [anon_sym___leave] = ACTIONS(1225), + [anon_sym_DASH_DASH] = ACTIONS(1227), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_sizeof] = ACTIONS(1225), + [anon_sym___alignof__] = ACTIONS(1225), + [anon_sym___alignof] = ACTIONS(1225), + [anon_sym__alignof] = ACTIONS(1225), + [anon_sym_alignof] = ACTIONS(1225), + [anon_sym__Alignof] = ACTIONS(1225), + [anon_sym_offsetof] = ACTIONS(1225), + [anon_sym__Generic] = ACTIONS(1225), + [anon_sym_asm] = ACTIONS(1225), + [anon_sym___asm__] = ACTIONS(1225), + [sym_number_literal] = ACTIONS(1227), + [anon_sym_L_SQUOTE] = ACTIONS(1227), + [anon_sym_u_SQUOTE] = ACTIONS(1227), + [anon_sym_U_SQUOTE] = ACTIONS(1227), + [anon_sym_u8_SQUOTE] = ACTIONS(1227), + [anon_sym_SQUOTE] = ACTIONS(1227), + [anon_sym_L_DQUOTE] = ACTIONS(1227), + [anon_sym_u_DQUOTE] = ACTIONS(1227), + [anon_sym_U_DQUOTE] = ACTIONS(1227), + [anon_sym_u8_DQUOTE] = ACTIONS(1227), + [anon_sym_DQUOTE] = ACTIONS(1227), + [sym_true] = ACTIONS(1225), + [sym_false] = ACTIONS(1225), + [anon_sym_NULL] = ACTIONS(1225), + [anon_sym_nullptr] = ACTIONS(1225), [sym_comment] = ACTIONS(3), }, [101] = { - [sym_identifier] = ACTIONS(1233), - [aux_sym_preproc_include_token1] = ACTIONS(1233), - [aux_sym_preproc_def_token1] = ACTIONS(1233), - [aux_sym_preproc_if_token1] = ACTIONS(1233), - [aux_sym_preproc_if_token2] = ACTIONS(1233), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1233), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1233), - [aux_sym_preproc_else_token1] = ACTIONS(1233), - [aux_sym_preproc_elif_token1] = ACTIONS(1233), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1233), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1233), - [sym_preproc_directive] = ACTIONS(1233), - [anon_sym_LPAREN2] = ACTIONS(1235), - [anon_sym_BANG] = ACTIONS(1235), - [anon_sym_TILDE] = ACTIONS(1235), - [anon_sym_DASH] = ACTIONS(1233), - [anon_sym_PLUS] = ACTIONS(1233), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_AMP] = ACTIONS(1235), - [anon_sym_SEMI] = ACTIONS(1235), - [anon_sym___extension__] = ACTIONS(1233), - [anon_sym_typedef] = ACTIONS(1233), - [anon_sym_extern] = ACTIONS(1233), - [anon_sym___attribute__] = ACTIONS(1233), - [anon_sym___scanf] = ACTIONS(1233), - [anon_sym___printf] = ACTIONS(1233), - [anon_sym___read_mostly] = ACTIONS(1233), - [anon_sym___must_hold] = ACTIONS(1233), - [anon_sym___ro_after_init] = ACTIONS(1233), - [anon_sym___init] = ACTIONS(1233), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1235), - [anon_sym___declspec] = ACTIONS(1233), - [anon_sym___cdecl] = ACTIONS(1233), - [anon_sym___clrcall] = ACTIONS(1233), - [anon_sym___stdcall] = ACTIONS(1233), - [anon_sym___fastcall] = ACTIONS(1233), - [anon_sym___thiscall] = ACTIONS(1233), - [anon_sym___vectorcall] = ACTIONS(1233), - [anon_sym_LBRACE] = ACTIONS(1235), - [anon_sym_signed] = ACTIONS(1233), - [anon_sym_unsigned] = ACTIONS(1233), - [anon_sym_long] = ACTIONS(1233), - [anon_sym_short] = ACTIONS(1233), - [anon_sym_static] = ACTIONS(1233), - [anon_sym_auto] = ACTIONS(1233), - [anon_sym_register] = ACTIONS(1233), - [anon_sym_inline] = ACTIONS(1233), - [anon_sym___inline] = ACTIONS(1233), - [anon_sym___inline__] = ACTIONS(1233), - [anon_sym___forceinline] = ACTIONS(1233), - [anon_sym_thread_local] = ACTIONS(1233), - [anon_sym___thread] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_constexpr] = ACTIONS(1233), - [anon_sym_volatile] = ACTIONS(1233), - [anon_sym_restrict] = ACTIONS(1233), - [anon_sym___restrict__] = ACTIONS(1233), - [anon_sym__Atomic] = ACTIONS(1233), - [anon_sym__Noreturn] = ACTIONS(1233), - [anon_sym_noreturn] = ACTIONS(1233), - [anon_sym_alignas] = ACTIONS(1233), - [anon_sym__Alignas] = ACTIONS(1233), - [sym_primitive_type] = ACTIONS(1233), - [anon_sym_enum] = ACTIONS(1233), - [anon_sym_struct] = ACTIONS(1233), - [anon_sym_union] = ACTIONS(1233), - [anon_sym_if] = ACTIONS(1233), - [anon_sym_else] = ACTIONS(1233), - [anon_sym_switch] = ACTIONS(1233), - [anon_sym_case] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1233), - [anon_sym_while] = ACTIONS(1233), - [anon_sym_do] = ACTIONS(1233), - [anon_sym_for] = ACTIONS(1233), - [anon_sym_return] = ACTIONS(1233), - [anon_sym_break] = ACTIONS(1233), - [anon_sym_continue] = ACTIONS(1233), - [anon_sym_goto] = ACTIONS(1233), - [anon_sym___try] = ACTIONS(1233), - [anon_sym___leave] = ACTIONS(1233), - [anon_sym_DASH_DASH] = ACTIONS(1235), - [anon_sym_PLUS_PLUS] = ACTIONS(1235), - [anon_sym_sizeof] = ACTIONS(1233), - [anon_sym___alignof__] = ACTIONS(1233), - [anon_sym___alignof] = ACTIONS(1233), - [anon_sym__alignof] = ACTIONS(1233), - [anon_sym_alignof] = ACTIONS(1233), - [anon_sym__Alignof] = ACTIONS(1233), - [anon_sym_offsetof] = ACTIONS(1233), - [anon_sym__Generic] = ACTIONS(1233), - [anon_sym_asm] = ACTIONS(1233), - [anon_sym___asm__] = ACTIONS(1233), - [sym_number_literal] = ACTIONS(1235), - [anon_sym_L_SQUOTE] = ACTIONS(1235), - [anon_sym_u_SQUOTE] = ACTIONS(1235), - [anon_sym_U_SQUOTE] = ACTIONS(1235), - [anon_sym_u8_SQUOTE] = ACTIONS(1235), - [anon_sym_SQUOTE] = ACTIONS(1235), - [anon_sym_L_DQUOTE] = ACTIONS(1235), - [anon_sym_u_DQUOTE] = ACTIONS(1235), - [anon_sym_U_DQUOTE] = ACTIONS(1235), - [anon_sym_u8_DQUOTE] = ACTIONS(1235), - [anon_sym_DQUOTE] = ACTIONS(1235), - [sym_true] = ACTIONS(1233), - [sym_false] = ACTIONS(1233), - [anon_sym_NULL] = ACTIONS(1233), - [anon_sym_nullptr] = ACTIONS(1233), + [ts_builtin_sym_end] = ACTIONS(1223), + [sym_identifier] = ACTIONS(1221), + [aux_sym_preproc_include_token1] = ACTIONS(1221), + [aux_sym_preproc_def_token1] = ACTIONS(1221), + [anon_sym_COMMA] = ACTIONS(1223), + [anon_sym_RPAREN] = ACTIONS(1223), + [aux_sym_preproc_if_token1] = ACTIONS(1221), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1221), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1221), + [sym_preproc_directive] = ACTIONS(1221), + [anon_sym_LPAREN2] = ACTIONS(1223), + [anon_sym_BANG] = ACTIONS(1223), + [anon_sym_TILDE] = ACTIONS(1223), + [anon_sym_DASH] = ACTIONS(1221), + [anon_sym_PLUS] = ACTIONS(1221), + [anon_sym_STAR] = ACTIONS(1223), + [anon_sym_AMP] = ACTIONS(1223), + [anon_sym_SEMI] = ACTIONS(1223), + [anon_sym___extension__] = ACTIONS(1221), + [anon_sym_typedef] = ACTIONS(1221), + [anon_sym_extern] = ACTIONS(1221), + [anon_sym___attribute__] = ACTIONS(1221), + [anon_sym___scanf] = ACTIONS(1221), + [anon_sym___printf] = ACTIONS(1221), + [anon_sym___read_mostly] = ACTIONS(1221), + [anon_sym___must_hold] = ACTIONS(1221), + [anon_sym___ro_after_init] = ACTIONS(1221), + [anon_sym___noreturn] = ACTIONS(1221), + [anon_sym___cold] = ACTIONS(1221), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1223), + [anon_sym___declspec] = ACTIONS(1221), + [anon_sym___init] = ACTIONS(1221), + [anon_sym___exit] = ACTIONS(1221), + [anon_sym___cdecl] = ACTIONS(1221), + [anon_sym___clrcall] = ACTIONS(1221), + [anon_sym___stdcall] = ACTIONS(1221), + [anon_sym___fastcall] = ACTIONS(1221), + [anon_sym___thiscall] = ACTIONS(1221), + [anon_sym___vectorcall] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_signed] = ACTIONS(1221), + [anon_sym_unsigned] = ACTIONS(1221), + [anon_sym_long] = ACTIONS(1221), + [anon_sym_short] = ACTIONS(1221), + [anon_sym_static] = ACTIONS(1221), + [anon_sym_auto] = ACTIONS(1221), + [anon_sym_register] = ACTIONS(1221), + [anon_sym_inline] = ACTIONS(1221), + [anon_sym___inline] = ACTIONS(1221), + [anon_sym___inline__] = ACTIONS(1221), + [anon_sym___forceinline] = ACTIONS(1221), + [anon_sym_thread_local] = ACTIONS(1221), + [anon_sym___thread] = ACTIONS(1221), + [anon_sym_const] = ACTIONS(1221), + [anon_sym_constexpr] = ACTIONS(1221), + [anon_sym_volatile] = ACTIONS(1221), + [anon_sym_restrict] = ACTIONS(1221), + [anon_sym___restrict__] = ACTIONS(1221), + [anon_sym__Atomic] = ACTIONS(1221), + [anon_sym__Noreturn] = ACTIONS(1221), + [anon_sym_noreturn] = ACTIONS(1221), + [anon_sym_alignas] = ACTIONS(1221), + [anon_sym__Alignas] = ACTIONS(1221), + [sym_primitive_type] = ACTIONS(1221), + [anon_sym_enum] = ACTIONS(1221), + [anon_sym_struct] = ACTIONS(1221), + [anon_sym_union] = ACTIONS(1221), + [anon_sym_if] = ACTIONS(1221), + [anon_sym_else] = ACTIONS(1221), + [anon_sym_switch] = ACTIONS(1221), + [anon_sym_case] = ACTIONS(1221), + [anon_sym_default] = ACTIONS(1221), + [anon_sym_while] = ACTIONS(1221), + [anon_sym_do] = ACTIONS(1221), + [anon_sym_for] = ACTIONS(1221), + [anon_sym_return] = ACTIONS(1221), + [anon_sym_break] = ACTIONS(1221), + [anon_sym_continue] = ACTIONS(1221), + [anon_sym_goto] = ACTIONS(1221), + [anon_sym___try] = ACTIONS(1221), + [anon_sym___except] = ACTIONS(1221), + [anon_sym___finally] = ACTIONS(1221), + [anon_sym___leave] = ACTIONS(1221), + [anon_sym_DASH_DASH] = ACTIONS(1223), + [anon_sym_PLUS_PLUS] = ACTIONS(1223), + [anon_sym_sizeof] = ACTIONS(1221), + [anon_sym___alignof__] = ACTIONS(1221), + [anon_sym___alignof] = ACTIONS(1221), + [anon_sym__alignof] = ACTIONS(1221), + [anon_sym_alignof] = ACTIONS(1221), + [anon_sym__Alignof] = ACTIONS(1221), + [anon_sym_offsetof] = ACTIONS(1221), + [anon_sym__Generic] = ACTIONS(1221), + [anon_sym_asm] = ACTIONS(1221), + [anon_sym___asm__] = ACTIONS(1221), + [sym_number_literal] = ACTIONS(1223), + [anon_sym_L_SQUOTE] = ACTIONS(1223), + [anon_sym_u_SQUOTE] = ACTIONS(1223), + [anon_sym_U_SQUOTE] = ACTIONS(1223), + [anon_sym_u8_SQUOTE] = ACTIONS(1223), + [anon_sym_SQUOTE] = ACTIONS(1223), + [anon_sym_L_DQUOTE] = ACTIONS(1223), + [anon_sym_u_DQUOTE] = ACTIONS(1223), + [anon_sym_U_DQUOTE] = ACTIONS(1223), + [anon_sym_u8_DQUOTE] = ACTIONS(1223), + [anon_sym_DQUOTE] = ACTIONS(1223), + [sym_true] = ACTIONS(1221), + [sym_false] = ACTIONS(1221), + [anon_sym_NULL] = ACTIONS(1221), + [anon_sym_nullptr] = ACTIONS(1221), [sym_comment] = ACTIONS(3), }, [102] = { - [sym_identifier] = ACTIONS(1237), - [aux_sym_preproc_include_token1] = ACTIONS(1237), - [aux_sym_preproc_def_token1] = ACTIONS(1237), - [aux_sym_preproc_if_token1] = ACTIONS(1237), - [aux_sym_preproc_if_token2] = ACTIONS(1237), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1237), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1237), - [aux_sym_preproc_else_token1] = ACTIONS(1237), - [aux_sym_preproc_elif_token1] = ACTIONS(1237), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1237), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1237), - [sym_preproc_directive] = ACTIONS(1237), - [anon_sym_LPAREN2] = ACTIONS(1239), - [anon_sym_BANG] = ACTIONS(1239), - [anon_sym_TILDE] = ACTIONS(1239), - [anon_sym_DASH] = ACTIONS(1237), - [anon_sym_PLUS] = ACTIONS(1237), - [anon_sym_STAR] = ACTIONS(1239), - [anon_sym_AMP] = ACTIONS(1239), - [anon_sym_SEMI] = ACTIONS(1239), - [anon_sym___extension__] = ACTIONS(1237), - [anon_sym_typedef] = ACTIONS(1237), - [anon_sym_extern] = ACTIONS(1237), - [anon_sym___attribute__] = ACTIONS(1237), - [anon_sym___scanf] = ACTIONS(1237), - [anon_sym___printf] = ACTIONS(1237), - [anon_sym___read_mostly] = ACTIONS(1237), - [anon_sym___must_hold] = ACTIONS(1237), - [anon_sym___ro_after_init] = ACTIONS(1237), - [anon_sym___init] = ACTIONS(1237), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1239), - [anon_sym___declspec] = ACTIONS(1237), - [anon_sym___cdecl] = ACTIONS(1237), - [anon_sym___clrcall] = ACTIONS(1237), - [anon_sym___stdcall] = ACTIONS(1237), - [anon_sym___fastcall] = ACTIONS(1237), - [anon_sym___thiscall] = ACTIONS(1237), - [anon_sym___vectorcall] = ACTIONS(1237), - [anon_sym_LBRACE] = ACTIONS(1239), - [anon_sym_signed] = ACTIONS(1237), - [anon_sym_unsigned] = ACTIONS(1237), - [anon_sym_long] = ACTIONS(1237), - [anon_sym_short] = ACTIONS(1237), - [anon_sym_static] = ACTIONS(1237), - [anon_sym_auto] = ACTIONS(1237), - [anon_sym_register] = ACTIONS(1237), - [anon_sym_inline] = ACTIONS(1237), - [anon_sym___inline] = ACTIONS(1237), - [anon_sym___inline__] = ACTIONS(1237), - [anon_sym___forceinline] = ACTIONS(1237), - [anon_sym_thread_local] = ACTIONS(1237), - [anon_sym___thread] = ACTIONS(1237), - [anon_sym_const] = ACTIONS(1237), - [anon_sym_constexpr] = ACTIONS(1237), - [anon_sym_volatile] = ACTIONS(1237), - [anon_sym_restrict] = ACTIONS(1237), - [anon_sym___restrict__] = ACTIONS(1237), - [anon_sym__Atomic] = ACTIONS(1237), - [anon_sym__Noreturn] = ACTIONS(1237), - [anon_sym_noreturn] = ACTIONS(1237), - [anon_sym_alignas] = ACTIONS(1237), - [anon_sym__Alignas] = ACTIONS(1237), - [sym_primitive_type] = ACTIONS(1237), - [anon_sym_enum] = ACTIONS(1237), - [anon_sym_struct] = ACTIONS(1237), - [anon_sym_union] = ACTIONS(1237), - [anon_sym_if] = ACTIONS(1237), - [anon_sym_else] = ACTIONS(1237), - [anon_sym_switch] = ACTIONS(1237), - [anon_sym_case] = ACTIONS(1237), - [anon_sym_default] = ACTIONS(1237), - [anon_sym_while] = ACTIONS(1237), - [anon_sym_do] = ACTIONS(1237), - [anon_sym_for] = ACTIONS(1237), - [anon_sym_return] = ACTIONS(1237), - [anon_sym_break] = ACTIONS(1237), - [anon_sym_continue] = ACTIONS(1237), - [anon_sym_goto] = ACTIONS(1237), - [anon_sym___try] = ACTIONS(1237), - [anon_sym___leave] = ACTIONS(1237), - [anon_sym_DASH_DASH] = ACTIONS(1239), - [anon_sym_PLUS_PLUS] = ACTIONS(1239), - [anon_sym_sizeof] = ACTIONS(1237), - [anon_sym___alignof__] = ACTIONS(1237), - [anon_sym___alignof] = ACTIONS(1237), - [anon_sym__alignof] = ACTIONS(1237), - [anon_sym_alignof] = ACTIONS(1237), - [anon_sym__Alignof] = ACTIONS(1237), - [anon_sym_offsetof] = ACTIONS(1237), - [anon_sym__Generic] = ACTIONS(1237), - [anon_sym_asm] = ACTIONS(1237), - [anon_sym___asm__] = ACTIONS(1237), - [sym_number_literal] = ACTIONS(1239), - [anon_sym_L_SQUOTE] = ACTIONS(1239), - [anon_sym_u_SQUOTE] = ACTIONS(1239), - [anon_sym_U_SQUOTE] = ACTIONS(1239), - [anon_sym_u8_SQUOTE] = ACTIONS(1239), - [anon_sym_SQUOTE] = ACTIONS(1239), - [anon_sym_L_DQUOTE] = ACTIONS(1239), - [anon_sym_u_DQUOTE] = ACTIONS(1239), - [anon_sym_U_DQUOTE] = ACTIONS(1239), - [anon_sym_u8_DQUOTE] = ACTIONS(1239), - [anon_sym_DQUOTE] = ACTIONS(1239), - [sym_true] = ACTIONS(1237), - [sym_false] = ACTIONS(1237), - [anon_sym_NULL] = ACTIONS(1237), - [anon_sym_nullptr] = ACTIONS(1237), - [sym_comment] = ACTIONS(3), - }, - [103] = { - [sym_identifier] = ACTIONS(1241), - [aux_sym_preproc_include_token1] = ACTIONS(1241), - [aux_sym_preproc_def_token1] = ACTIONS(1241), - [aux_sym_preproc_if_token1] = ACTIONS(1241), - [aux_sym_preproc_if_token2] = ACTIONS(1241), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1241), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1241), - [aux_sym_preproc_else_token1] = ACTIONS(1241), - [aux_sym_preproc_elif_token1] = ACTIONS(1241), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1241), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1241), - [sym_preproc_directive] = ACTIONS(1241), - [anon_sym_LPAREN2] = ACTIONS(1243), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_TILDE] = ACTIONS(1243), - [anon_sym_DASH] = ACTIONS(1241), - [anon_sym_PLUS] = ACTIONS(1241), - [anon_sym_STAR] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(1243), - [anon_sym_SEMI] = ACTIONS(1243), - [anon_sym___extension__] = ACTIONS(1241), - [anon_sym_typedef] = ACTIONS(1241), - [anon_sym_extern] = ACTIONS(1241), - [anon_sym___attribute__] = ACTIONS(1241), - [anon_sym___scanf] = ACTIONS(1241), - [anon_sym___printf] = ACTIONS(1241), - [anon_sym___read_mostly] = ACTIONS(1241), - [anon_sym___must_hold] = ACTIONS(1241), - [anon_sym___ro_after_init] = ACTIONS(1241), - [anon_sym___init] = ACTIONS(1241), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1243), - [anon_sym___declspec] = ACTIONS(1241), - [anon_sym___cdecl] = ACTIONS(1241), - [anon_sym___clrcall] = ACTIONS(1241), - [anon_sym___stdcall] = ACTIONS(1241), - [anon_sym___fastcall] = ACTIONS(1241), - [anon_sym___thiscall] = ACTIONS(1241), - [anon_sym___vectorcall] = ACTIONS(1241), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_signed] = ACTIONS(1241), - [anon_sym_unsigned] = ACTIONS(1241), - [anon_sym_long] = ACTIONS(1241), - [anon_sym_short] = ACTIONS(1241), - [anon_sym_static] = ACTIONS(1241), - [anon_sym_auto] = ACTIONS(1241), - [anon_sym_register] = ACTIONS(1241), - [anon_sym_inline] = ACTIONS(1241), - [anon_sym___inline] = ACTIONS(1241), - [anon_sym___inline__] = ACTIONS(1241), - [anon_sym___forceinline] = ACTIONS(1241), - [anon_sym_thread_local] = ACTIONS(1241), - [anon_sym___thread] = ACTIONS(1241), - [anon_sym_const] = ACTIONS(1241), - [anon_sym_constexpr] = ACTIONS(1241), - [anon_sym_volatile] = ACTIONS(1241), - [anon_sym_restrict] = ACTIONS(1241), - [anon_sym___restrict__] = ACTIONS(1241), - [anon_sym__Atomic] = ACTIONS(1241), - [anon_sym__Noreturn] = ACTIONS(1241), - [anon_sym_noreturn] = ACTIONS(1241), - [anon_sym_alignas] = ACTIONS(1241), - [anon_sym__Alignas] = ACTIONS(1241), - [sym_primitive_type] = ACTIONS(1241), - [anon_sym_enum] = ACTIONS(1241), - [anon_sym_struct] = ACTIONS(1241), - [anon_sym_union] = ACTIONS(1241), - [anon_sym_if] = ACTIONS(1241), - [anon_sym_else] = ACTIONS(1241), - [anon_sym_switch] = ACTIONS(1241), - [anon_sym_case] = ACTIONS(1241), - [anon_sym_default] = ACTIONS(1241), - [anon_sym_while] = ACTIONS(1241), - [anon_sym_do] = ACTIONS(1241), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_return] = ACTIONS(1241), - [anon_sym_break] = ACTIONS(1241), - [anon_sym_continue] = ACTIONS(1241), - [anon_sym_goto] = ACTIONS(1241), - [anon_sym___try] = ACTIONS(1241), - [anon_sym___leave] = ACTIONS(1241), - [anon_sym_DASH_DASH] = ACTIONS(1243), - [anon_sym_PLUS_PLUS] = ACTIONS(1243), - [anon_sym_sizeof] = ACTIONS(1241), - [anon_sym___alignof__] = ACTIONS(1241), - [anon_sym___alignof] = ACTIONS(1241), - [anon_sym__alignof] = ACTIONS(1241), - [anon_sym_alignof] = ACTIONS(1241), - [anon_sym__Alignof] = ACTIONS(1241), - [anon_sym_offsetof] = ACTIONS(1241), - [anon_sym__Generic] = ACTIONS(1241), - [anon_sym_asm] = ACTIONS(1241), - [anon_sym___asm__] = ACTIONS(1241), - [sym_number_literal] = ACTIONS(1243), - [anon_sym_L_SQUOTE] = ACTIONS(1243), - [anon_sym_u_SQUOTE] = ACTIONS(1243), - [anon_sym_U_SQUOTE] = ACTIONS(1243), - [anon_sym_u8_SQUOTE] = ACTIONS(1243), - [anon_sym_SQUOTE] = ACTIONS(1243), - [anon_sym_L_DQUOTE] = ACTIONS(1243), - [anon_sym_u_DQUOTE] = ACTIONS(1243), - [anon_sym_U_DQUOTE] = ACTIONS(1243), - [anon_sym_u8_DQUOTE] = ACTIONS(1243), - [anon_sym_DQUOTE] = ACTIONS(1243), - [sym_true] = ACTIONS(1241), - [sym_false] = ACTIONS(1241), - [anon_sym_NULL] = ACTIONS(1241), - [anon_sym_nullptr] = ACTIONS(1241), + [sym_identifier] = ACTIONS(1161), + [aux_sym_preproc_include_token1] = ACTIONS(1161), + [aux_sym_preproc_def_token1] = ACTIONS(1161), + [aux_sym_preproc_if_token1] = ACTIONS(1161), + [aux_sym_preproc_if_token2] = ACTIONS(1161), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1161), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1161), + [aux_sym_preproc_else_token1] = ACTIONS(1161), + [aux_sym_preproc_elif_token1] = ACTIONS(1161), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1161), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1161), + [sym_preproc_directive] = ACTIONS(1161), + [anon_sym_LPAREN2] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1163), + [anon_sym_TILDE] = ACTIONS(1163), + [anon_sym_DASH] = ACTIONS(1161), + [anon_sym_PLUS] = ACTIONS(1161), + [anon_sym_STAR] = ACTIONS(1163), + [anon_sym_AMP] = ACTIONS(1163), + [anon_sym_SEMI] = ACTIONS(1163), + [anon_sym___extension__] = ACTIONS(1161), + [anon_sym_typedef] = ACTIONS(1161), + [anon_sym_extern] = ACTIONS(1161), + [anon_sym___attribute__] = ACTIONS(1161), + [anon_sym___scanf] = ACTIONS(1161), + [anon_sym___printf] = ACTIONS(1161), + [anon_sym___read_mostly] = ACTIONS(1161), + [anon_sym___must_hold] = ACTIONS(1161), + [anon_sym___ro_after_init] = ACTIONS(1161), + [anon_sym___noreturn] = ACTIONS(1161), + [anon_sym___cold] = ACTIONS(1161), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1163), + [anon_sym___declspec] = ACTIONS(1161), + [anon_sym___init] = ACTIONS(1161), + [anon_sym___exit] = ACTIONS(1161), + [anon_sym___cdecl] = ACTIONS(1161), + [anon_sym___clrcall] = ACTIONS(1161), + [anon_sym___stdcall] = ACTIONS(1161), + [anon_sym___fastcall] = ACTIONS(1161), + [anon_sym___thiscall] = ACTIONS(1161), + [anon_sym___vectorcall] = ACTIONS(1161), + [anon_sym_LBRACE] = ACTIONS(1163), + [anon_sym_signed] = ACTIONS(1161), + [anon_sym_unsigned] = ACTIONS(1161), + [anon_sym_long] = ACTIONS(1161), + [anon_sym_short] = ACTIONS(1161), + [anon_sym_static] = ACTIONS(1161), + [anon_sym_auto] = ACTIONS(1161), + [anon_sym_register] = ACTIONS(1161), + [anon_sym_inline] = ACTIONS(1161), + [anon_sym___inline] = ACTIONS(1161), + [anon_sym___inline__] = ACTIONS(1161), + [anon_sym___forceinline] = ACTIONS(1161), + [anon_sym_thread_local] = ACTIONS(1161), + [anon_sym___thread] = ACTIONS(1161), + [anon_sym_const] = ACTIONS(1161), + [anon_sym_constexpr] = ACTIONS(1161), + [anon_sym_volatile] = ACTIONS(1161), + [anon_sym_restrict] = ACTIONS(1161), + [anon_sym___restrict__] = ACTIONS(1161), + [anon_sym__Atomic] = ACTIONS(1161), + [anon_sym__Noreturn] = ACTIONS(1161), + [anon_sym_noreturn] = ACTIONS(1161), + [anon_sym_alignas] = ACTIONS(1161), + [anon_sym__Alignas] = ACTIONS(1161), + [sym_primitive_type] = ACTIONS(1161), + [anon_sym_enum] = ACTIONS(1161), + [anon_sym_struct] = ACTIONS(1161), + [anon_sym_union] = ACTIONS(1161), + [anon_sym_if] = ACTIONS(1161), + [anon_sym_else] = ACTIONS(1161), + [anon_sym_switch] = ACTIONS(1161), + [anon_sym_case] = ACTIONS(1161), + [anon_sym_default] = ACTIONS(1161), + [anon_sym_while] = ACTIONS(1161), + [anon_sym_do] = ACTIONS(1161), + [anon_sym_for] = ACTIONS(1161), + [anon_sym_return] = ACTIONS(1161), + [anon_sym_break] = ACTIONS(1161), + [anon_sym_continue] = ACTIONS(1161), + [anon_sym_goto] = ACTIONS(1161), + [anon_sym___try] = ACTIONS(1161), + [anon_sym___leave] = ACTIONS(1161), + [anon_sym_DASH_DASH] = ACTIONS(1163), + [anon_sym_PLUS_PLUS] = ACTIONS(1163), + [anon_sym_sizeof] = ACTIONS(1161), + [anon_sym___alignof__] = ACTIONS(1161), + [anon_sym___alignof] = ACTIONS(1161), + [anon_sym__alignof] = ACTIONS(1161), + [anon_sym_alignof] = ACTIONS(1161), + [anon_sym__Alignof] = ACTIONS(1161), + [anon_sym_offsetof] = ACTIONS(1161), + [anon_sym__Generic] = ACTIONS(1161), + [anon_sym_asm] = ACTIONS(1161), + [anon_sym___asm__] = ACTIONS(1161), + [sym_number_literal] = ACTIONS(1163), + [anon_sym_L_SQUOTE] = ACTIONS(1163), + [anon_sym_u_SQUOTE] = ACTIONS(1163), + [anon_sym_U_SQUOTE] = ACTIONS(1163), + [anon_sym_u8_SQUOTE] = ACTIONS(1163), + [anon_sym_SQUOTE] = ACTIONS(1163), + [anon_sym_L_DQUOTE] = ACTIONS(1163), + [anon_sym_u_DQUOTE] = ACTIONS(1163), + [anon_sym_U_DQUOTE] = ACTIONS(1163), + [anon_sym_u8_DQUOTE] = ACTIONS(1163), + [anon_sym_DQUOTE] = ACTIONS(1163), + [sym_true] = ACTIONS(1161), + [sym_false] = ACTIONS(1161), + [anon_sym_NULL] = ACTIONS(1161), + [anon_sym_nullptr] = ACTIONS(1161), + [sym_comment] = ACTIONS(3), + }, + [103] = { + [sym_identifier] = ACTIONS(1161), + [aux_sym_preproc_include_token1] = ACTIONS(1161), + [aux_sym_preproc_def_token1] = ACTIONS(1161), + [aux_sym_preproc_if_token1] = ACTIONS(1161), + [aux_sym_preproc_if_token2] = ACTIONS(1161), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1161), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1161), + [aux_sym_preproc_else_token1] = ACTIONS(1161), + [aux_sym_preproc_elif_token1] = ACTIONS(1161), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1161), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1161), + [sym_preproc_directive] = ACTIONS(1161), + [anon_sym_LPAREN2] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1163), + [anon_sym_TILDE] = ACTIONS(1163), + [anon_sym_DASH] = ACTIONS(1161), + [anon_sym_PLUS] = ACTIONS(1161), + [anon_sym_STAR] = ACTIONS(1163), + [anon_sym_AMP] = ACTIONS(1163), + [anon_sym_SEMI] = ACTIONS(1163), + [anon_sym___extension__] = ACTIONS(1161), + [anon_sym_typedef] = ACTIONS(1161), + [anon_sym_extern] = ACTIONS(1161), + [anon_sym___attribute__] = ACTIONS(1161), + [anon_sym___scanf] = ACTIONS(1161), + [anon_sym___printf] = ACTIONS(1161), + [anon_sym___read_mostly] = ACTIONS(1161), + [anon_sym___must_hold] = ACTIONS(1161), + [anon_sym___ro_after_init] = ACTIONS(1161), + [anon_sym___noreturn] = ACTIONS(1161), + [anon_sym___cold] = ACTIONS(1161), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1163), + [anon_sym___declspec] = ACTIONS(1161), + [anon_sym___init] = ACTIONS(1161), + [anon_sym___exit] = ACTIONS(1161), + [anon_sym___cdecl] = ACTIONS(1161), + [anon_sym___clrcall] = ACTIONS(1161), + [anon_sym___stdcall] = ACTIONS(1161), + [anon_sym___fastcall] = ACTIONS(1161), + [anon_sym___thiscall] = ACTIONS(1161), + [anon_sym___vectorcall] = ACTIONS(1161), + [anon_sym_LBRACE] = ACTIONS(1163), + [anon_sym_signed] = ACTIONS(1161), + [anon_sym_unsigned] = ACTIONS(1161), + [anon_sym_long] = ACTIONS(1161), + [anon_sym_short] = ACTIONS(1161), + [anon_sym_static] = ACTIONS(1161), + [anon_sym_auto] = ACTIONS(1161), + [anon_sym_register] = ACTIONS(1161), + [anon_sym_inline] = ACTIONS(1161), + [anon_sym___inline] = ACTIONS(1161), + [anon_sym___inline__] = ACTIONS(1161), + [anon_sym___forceinline] = ACTIONS(1161), + [anon_sym_thread_local] = ACTIONS(1161), + [anon_sym___thread] = ACTIONS(1161), + [anon_sym_const] = ACTIONS(1161), + [anon_sym_constexpr] = ACTIONS(1161), + [anon_sym_volatile] = ACTIONS(1161), + [anon_sym_restrict] = ACTIONS(1161), + [anon_sym___restrict__] = ACTIONS(1161), + [anon_sym__Atomic] = ACTIONS(1161), + [anon_sym__Noreturn] = ACTIONS(1161), + [anon_sym_noreturn] = ACTIONS(1161), + [anon_sym_alignas] = ACTIONS(1161), + [anon_sym__Alignas] = ACTIONS(1161), + [sym_primitive_type] = ACTIONS(1161), + [anon_sym_enum] = ACTIONS(1161), + [anon_sym_struct] = ACTIONS(1161), + [anon_sym_union] = ACTIONS(1161), + [anon_sym_if] = ACTIONS(1161), + [anon_sym_else] = ACTIONS(1161), + [anon_sym_switch] = ACTIONS(1161), + [anon_sym_case] = ACTIONS(1161), + [anon_sym_default] = ACTIONS(1161), + [anon_sym_while] = ACTIONS(1161), + [anon_sym_do] = ACTIONS(1161), + [anon_sym_for] = ACTIONS(1161), + [anon_sym_return] = ACTIONS(1161), + [anon_sym_break] = ACTIONS(1161), + [anon_sym_continue] = ACTIONS(1161), + [anon_sym_goto] = ACTIONS(1161), + [anon_sym___try] = ACTIONS(1161), + [anon_sym___leave] = ACTIONS(1161), + [anon_sym_DASH_DASH] = ACTIONS(1163), + [anon_sym_PLUS_PLUS] = ACTIONS(1163), + [anon_sym_sizeof] = ACTIONS(1161), + [anon_sym___alignof__] = ACTIONS(1161), + [anon_sym___alignof] = ACTIONS(1161), + [anon_sym__alignof] = ACTIONS(1161), + [anon_sym_alignof] = ACTIONS(1161), + [anon_sym__Alignof] = ACTIONS(1161), + [anon_sym_offsetof] = ACTIONS(1161), + [anon_sym__Generic] = ACTIONS(1161), + [anon_sym_asm] = ACTIONS(1161), + [anon_sym___asm__] = ACTIONS(1161), + [sym_number_literal] = ACTIONS(1163), + [anon_sym_L_SQUOTE] = ACTIONS(1163), + [anon_sym_u_SQUOTE] = ACTIONS(1163), + [anon_sym_U_SQUOTE] = ACTIONS(1163), + [anon_sym_u8_SQUOTE] = ACTIONS(1163), + [anon_sym_SQUOTE] = ACTIONS(1163), + [anon_sym_L_DQUOTE] = ACTIONS(1163), + [anon_sym_u_DQUOTE] = ACTIONS(1163), + [anon_sym_U_DQUOTE] = ACTIONS(1163), + [anon_sym_u8_DQUOTE] = ACTIONS(1163), + [anon_sym_DQUOTE] = ACTIONS(1163), + [sym_true] = ACTIONS(1161), + [sym_false] = ACTIONS(1161), + [anon_sym_NULL] = ACTIONS(1161), + [anon_sym_nullptr] = ACTIONS(1161), [sym_comment] = ACTIONS(3), }, [104] = { - [sym_identifier] = ACTIONS(1245), - [aux_sym_preproc_include_token1] = ACTIONS(1245), - [aux_sym_preproc_def_token1] = ACTIONS(1245), - [aux_sym_preproc_if_token1] = ACTIONS(1245), - [aux_sym_preproc_if_token2] = ACTIONS(1245), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1245), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1245), - [aux_sym_preproc_else_token1] = ACTIONS(1245), - [aux_sym_preproc_elif_token1] = ACTIONS(1245), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1245), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1245), - [sym_preproc_directive] = ACTIONS(1245), - [anon_sym_LPAREN2] = ACTIONS(1247), - [anon_sym_BANG] = ACTIONS(1247), - [anon_sym_TILDE] = ACTIONS(1247), - [anon_sym_DASH] = ACTIONS(1245), - [anon_sym_PLUS] = ACTIONS(1245), - [anon_sym_STAR] = ACTIONS(1247), - [anon_sym_AMP] = ACTIONS(1247), - [anon_sym_SEMI] = ACTIONS(1247), - [anon_sym___extension__] = ACTIONS(1245), - [anon_sym_typedef] = ACTIONS(1245), - [anon_sym_extern] = ACTIONS(1245), - [anon_sym___attribute__] = ACTIONS(1245), - [anon_sym___scanf] = ACTIONS(1245), - [anon_sym___printf] = ACTIONS(1245), - [anon_sym___read_mostly] = ACTIONS(1245), - [anon_sym___must_hold] = ACTIONS(1245), - [anon_sym___ro_after_init] = ACTIONS(1245), - [anon_sym___init] = ACTIONS(1245), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1247), - [anon_sym___declspec] = ACTIONS(1245), - [anon_sym___cdecl] = ACTIONS(1245), - [anon_sym___clrcall] = ACTIONS(1245), - [anon_sym___stdcall] = ACTIONS(1245), - [anon_sym___fastcall] = ACTIONS(1245), - [anon_sym___thiscall] = ACTIONS(1245), - [anon_sym___vectorcall] = ACTIONS(1245), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_signed] = ACTIONS(1245), - [anon_sym_unsigned] = ACTIONS(1245), - [anon_sym_long] = ACTIONS(1245), - [anon_sym_short] = ACTIONS(1245), - [anon_sym_static] = ACTIONS(1245), - [anon_sym_auto] = ACTIONS(1245), - [anon_sym_register] = ACTIONS(1245), - [anon_sym_inline] = ACTIONS(1245), - [anon_sym___inline] = ACTIONS(1245), - [anon_sym___inline__] = ACTIONS(1245), - [anon_sym___forceinline] = ACTIONS(1245), - [anon_sym_thread_local] = ACTIONS(1245), - [anon_sym___thread] = ACTIONS(1245), - [anon_sym_const] = ACTIONS(1245), - [anon_sym_constexpr] = ACTIONS(1245), - [anon_sym_volatile] = ACTIONS(1245), - [anon_sym_restrict] = ACTIONS(1245), - [anon_sym___restrict__] = ACTIONS(1245), - [anon_sym__Atomic] = ACTIONS(1245), - [anon_sym__Noreturn] = ACTIONS(1245), - [anon_sym_noreturn] = ACTIONS(1245), - [anon_sym_alignas] = ACTIONS(1245), - [anon_sym__Alignas] = ACTIONS(1245), - [sym_primitive_type] = ACTIONS(1245), - [anon_sym_enum] = ACTIONS(1245), - [anon_sym_struct] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1245), - [anon_sym_if] = ACTIONS(1245), - [anon_sym_else] = ACTIONS(1245), - [anon_sym_switch] = ACTIONS(1245), - [anon_sym_case] = ACTIONS(1245), - [anon_sym_default] = ACTIONS(1245), - [anon_sym_while] = ACTIONS(1245), - [anon_sym_do] = ACTIONS(1245), - [anon_sym_for] = ACTIONS(1245), - [anon_sym_return] = ACTIONS(1245), - [anon_sym_break] = ACTIONS(1245), - [anon_sym_continue] = ACTIONS(1245), - [anon_sym_goto] = ACTIONS(1245), - [anon_sym___try] = ACTIONS(1245), - [anon_sym___leave] = ACTIONS(1245), - [anon_sym_DASH_DASH] = ACTIONS(1247), - [anon_sym_PLUS_PLUS] = ACTIONS(1247), - [anon_sym_sizeof] = ACTIONS(1245), - [anon_sym___alignof__] = ACTIONS(1245), - [anon_sym___alignof] = ACTIONS(1245), - [anon_sym__alignof] = ACTIONS(1245), - [anon_sym_alignof] = ACTIONS(1245), - [anon_sym__Alignof] = ACTIONS(1245), - [anon_sym_offsetof] = ACTIONS(1245), - [anon_sym__Generic] = ACTIONS(1245), - [anon_sym_asm] = ACTIONS(1245), - [anon_sym___asm__] = ACTIONS(1245), - [sym_number_literal] = ACTIONS(1247), - [anon_sym_L_SQUOTE] = ACTIONS(1247), - [anon_sym_u_SQUOTE] = ACTIONS(1247), - [anon_sym_U_SQUOTE] = ACTIONS(1247), - [anon_sym_u8_SQUOTE] = ACTIONS(1247), - [anon_sym_SQUOTE] = ACTIONS(1247), - [anon_sym_L_DQUOTE] = ACTIONS(1247), - [anon_sym_u_DQUOTE] = ACTIONS(1247), - [anon_sym_U_DQUOTE] = ACTIONS(1247), - [anon_sym_u8_DQUOTE] = ACTIONS(1247), - [anon_sym_DQUOTE] = ACTIONS(1247), - [sym_true] = ACTIONS(1245), - [sym_false] = ACTIONS(1245), - [anon_sym_NULL] = ACTIONS(1245), - [anon_sym_nullptr] = ACTIONS(1245), + [sym_identifier] = ACTIONS(1229), + [aux_sym_preproc_include_token1] = ACTIONS(1229), + [aux_sym_preproc_def_token1] = ACTIONS(1229), + [aux_sym_preproc_if_token1] = ACTIONS(1229), + [aux_sym_preproc_if_token2] = ACTIONS(1229), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1229), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1229), + [aux_sym_preproc_else_token1] = ACTIONS(1229), + [aux_sym_preproc_elif_token1] = ACTIONS(1229), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1229), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1229), + [sym_preproc_directive] = ACTIONS(1229), + [anon_sym_LPAREN2] = ACTIONS(1231), + [anon_sym_BANG] = ACTIONS(1231), + [anon_sym_TILDE] = ACTIONS(1231), + [anon_sym_DASH] = ACTIONS(1229), + [anon_sym_PLUS] = ACTIONS(1229), + [anon_sym_STAR] = ACTIONS(1231), + [anon_sym_AMP] = ACTIONS(1231), + [anon_sym_SEMI] = ACTIONS(1231), + [anon_sym___extension__] = ACTIONS(1229), + [anon_sym_typedef] = ACTIONS(1229), + [anon_sym_extern] = ACTIONS(1229), + [anon_sym___attribute__] = ACTIONS(1229), + [anon_sym___scanf] = ACTIONS(1229), + [anon_sym___printf] = ACTIONS(1229), + [anon_sym___read_mostly] = ACTIONS(1229), + [anon_sym___must_hold] = ACTIONS(1229), + [anon_sym___ro_after_init] = ACTIONS(1229), + [anon_sym___noreturn] = ACTIONS(1229), + [anon_sym___cold] = ACTIONS(1229), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1231), + [anon_sym___declspec] = ACTIONS(1229), + [anon_sym___init] = ACTIONS(1229), + [anon_sym___exit] = ACTIONS(1229), + [anon_sym___cdecl] = ACTIONS(1229), + [anon_sym___clrcall] = ACTIONS(1229), + [anon_sym___stdcall] = ACTIONS(1229), + [anon_sym___fastcall] = ACTIONS(1229), + [anon_sym___thiscall] = ACTIONS(1229), + [anon_sym___vectorcall] = ACTIONS(1229), + [anon_sym_LBRACE] = ACTIONS(1231), + [anon_sym_signed] = ACTIONS(1229), + [anon_sym_unsigned] = ACTIONS(1229), + [anon_sym_long] = ACTIONS(1229), + [anon_sym_short] = ACTIONS(1229), + [anon_sym_static] = ACTIONS(1229), + [anon_sym_auto] = ACTIONS(1229), + [anon_sym_register] = ACTIONS(1229), + [anon_sym_inline] = ACTIONS(1229), + [anon_sym___inline] = ACTIONS(1229), + [anon_sym___inline__] = ACTIONS(1229), + [anon_sym___forceinline] = ACTIONS(1229), + [anon_sym_thread_local] = ACTIONS(1229), + [anon_sym___thread] = ACTIONS(1229), + [anon_sym_const] = ACTIONS(1229), + [anon_sym_constexpr] = ACTIONS(1229), + [anon_sym_volatile] = ACTIONS(1229), + [anon_sym_restrict] = ACTIONS(1229), + [anon_sym___restrict__] = ACTIONS(1229), + [anon_sym__Atomic] = ACTIONS(1229), + [anon_sym__Noreturn] = ACTIONS(1229), + [anon_sym_noreturn] = ACTIONS(1229), + [anon_sym_alignas] = ACTIONS(1229), + [anon_sym__Alignas] = ACTIONS(1229), + [sym_primitive_type] = ACTIONS(1229), + [anon_sym_enum] = ACTIONS(1229), + [anon_sym_struct] = ACTIONS(1229), + [anon_sym_union] = ACTIONS(1229), + [anon_sym_if] = ACTIONS(1229), + [anon_sym_else] = ACTIONS(1229), + [anon_sym_switch] = ACTIONS(1229), + [anon_sym_case] = ACTIONS(1229), + [anon_sym_default] = ACTIONS(1229), + [anon_sym_while] = ACTIONS(1229), + [anon_sym_do] = ACTIONS(1229), + [anon_sym_for] = ACTIONS(1229), + [anon_sym_return] = ACTIONS(1229), + [anon_sym_break] = ACTIONS(1229), + [anon_sym_continue] = ACTIONS(1229), + [anon_sym_goto] = ACTIONS(1229), + [anon_sym___try] = ACTIONS(1229), + [anon_sym___leave] = ACTIONS(1229), + [anon_sym_DASH_DASH] = ACTIONS(1231), + [anon_sym_PLUS_PLUS] = ACTIONS(1231), + [anon_sym_sizeof] = ACTIONS(1229), + [anon_sym___alignof__] = ACTIONS(1229), + [anon_sym___alignof] = ACTIONS(1229), + [anon_sym__alignof] = ACTIONS(1229), + [anon_sym_alignof] = ACTIONS(1229), + [anon_sym__Alignof] = ACTIONS(1229), + [anon_sym_offsetof] = ACTIONS(1229), + [anon_sym__Generic] = ACTIONS(1229), + [anon_sym_asm] = ACTIONS(1229), + [anon_sym___asm__] = ACTIONS(1229), + [sym_number_literal] = ACTIONS(1231), + [anon_sym_L_SQUOTE] = ACTIONS(1231), + [anon_sym_u_SQUOTE] = ACTIONS(1231), + [anon_sym_U_SQUOTE] = ACTIONS(1231), + [anon_sym_u8_SQUOTE] = ACTIONS(1231), + [anon_sym_SQUOTE] = ACTIONS(1231), + [anon_sym_L_DQUOTE] = ACTIONS(1231), + [anon_sym_u_DQUOTE] = ACTIONS(1231), + [anon_sym_U_DQUOTE] = ACTIONS(1231), + [anon_sym_u8_DQUOTE] = ACTIONS(1231), + [anon_sym_DQUOTE] = ACTIONS(1231), + [sym_true] = ACTIONS(1229), + [sym_false] = ACTIONS(1229), + [anon_sym_NULL] = ACTIONS(1229), + [anon_sym_nullptr] = ACTIONS(1229), [sym_comment] = ACTIONS(3), }, [105] = { - [sym_identifier] = ACTIONS(1249), - [aux_sym_preproc_include_token1] = ACTIONS(1249), - [aux_sym_preproc_def_token1] = ACTIONS(1249), - [aux_sym_preproc_if_token1] = ACTIONS(1249), - [aux_sym_preproc_if_token2] = ACTIONS(1249), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1249), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1249), - [aux_sym_preproc_else_token1] = ACTIONS(1249), - [aux_sym_preproc_elif_token1] = ACTIONS(1249), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1249), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1249), - [sym_preproc_directive] = ACTIONS(1249), - [anon_sym_LPAREN2] = ACTIONS(1251), - [anon_sym_BANG] = ACTIONS(1251), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1249), - [anon_sym_STAR] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1251), - [anon_sym_SEMI] = ACTIONS(1251), - [anon_sym___extension__] = ACTIONS(1249), - [anon_sym_typedef] = ACTIONS(1249), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym___attribute__] = ACTIONS(1249), - [anon_sym___scanf] = ACTIONS(1249), - [anon_sym___printf] = ACTIONS(1249), - [anon_sym___read_mostly] = ACTIONS(1249), - [anon_sym___must_hold] = ACTIONS(1249), - [anon_sym___ro_after_init] = ACTIONS(1249), - [anon_sym___init] = ACTIONS(1249), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1251), - [anon_sym___declspec] = ACTIONS(1249), - [anon_sym___cdecl] = ACTIONS(1249), - [anon_sym___clrcall] = ACTIONS(1249), - [anon_sym___stdcall] = ACTIONS(1249), - [anon_sym___fastcall] = ACTIONS(1249), - [anon_sym___thiscall] = ACTIONS(1249), - [anon_sym___vectorcall] = ACTIONS(1249), - [anon_sym_LBRACE] = ACTIONS(1251), - [anon_sym_signed] = ACTIONS(1249), + [sym_identifier] = ACTIONS(1233), + [aux_sym_preproc_include_token1] = ACTIONS(1233), + [aux_sym_preproc_def_token1] = ACTIONS(1233), + [aux_sym_preproc_if_token1] = ACTIONS(1233), + [aux_sym_preproc_if_token2] = ACTIONS(1233), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1233), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1233), + [aux_sym_preproc_else_token1] = ACTIONS(1233), + [aux_sym_preproc_elif_token1] = ACTIONS(1233), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1233), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1233), + [sym_preproc_directive] = ACTIONS(1233), + [anon_sym_LPAREN2] = ACTIONS(1235), + [anon_sym_BANG] = ACTIONS(1235), + [anon_sym_TILDE] = ACTIONS(1235), + [anon_sym_DASH] = ACTIONS(1233), + [anon_sym_PLUS] = ACTIONS(1233), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_AMP] = ACTIONS(1235), + [anon_sym_SEMI] = ACTIONS(1235), + [anon_sym___extension__] = ACTIONS(1233), + [anon_sym_typedef] = ACTIONS(1233), + [anon_sym_extern] = ACTIONS(1233), + [anon_sym___attribute__] = ACTIONS(1233), + [anon_sym___scanf] = ACTIONS(1233), + [anon_sym___printf] = ACTIONS(1233), + [anon_sym___read_mostly] = ACTIONS(1233), + [anon_sym___must_hold] = ACTIONS(1233), + [anon_sym___ro_after_init] = ACTIONS(1233), + [anon_sym___noreturn] = ACTIONS(1233), + [anon_sym___cold] = ACTIONS(1233), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1235), + [anon_sym___declspec] = ACTIONS(1233), + [anon_sym___init] = ACTIONS(1233), + [anon_sym___exit] = ACTIONS(1233), + [anon_sym___cdecl] = ACTIONS(1233), + [anon_sym___clrcall] = ACTIONS(1233), + [anon_sym___stdcall] = ACTIONS(1233), + [anon_sym___fastcall] = ACTIONS(1233), + [anon_sym___thiscall] = ACTIONS(1233), + [anon_sym___vectorcall] = ACTIONS(1233), + [anon_sym_LBRACE] = ACTIONS(1235), + [anon_sym_signed] = ACTIONS(1233), + [anon_sym_unsigned] = ACTIONS(1233), + [anon_sym_long] = ACTIONS(1233), + [anon_sym_short] = ACTIONS(1233), + [anon_sym_static] = ACTIONS(1233), + [anon_sym_auto] = ACTIONS(1233), + [anon_sym_register] = ACTIONS(1233), + [anon_sym_inline] = ACTIONS(1233), + [anon_sym___inline] = ACTIONS(1233), + [anon_sym___inline__] = ACTIONS(1233), + [anon_sym___forceinline] = ACTIONS(1233), + [anon_sym_thread_local] = ACTIONS(1233), + [anon_sym___thread] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_constexpr] = ACTIONS(1233), + [anon_sym_volatile] = ACTIONS(1233), + [anon_sym_restrict] = ACTIONS(1233), + [anon_sym___restrict__] = ACTIONS(1233), + [anon_sym__Atomic] = ACTIONS(1233), + [anon_sym__Noreturn] = ACTIONS(1233), + [anon_sym_noreturn] = ACTIONS(1233), + [anon_sym_alignas] = ACTIONS(1233), + [anon_sym__Alignas] = ACTIONS(1233), + [sym_primitive_type] = ACTIONS(1233), + [anon_sym_enum] = ACTIONS(1233), + [anon_sym_struct] = ACTIONS(1233), + [anon_sym_union] = ACTIONS(1233), + [anon_sym_if] = ACTIONS(1233), + [anon_sym_else] = ACTIONS(1233), + [anon_sym_switch] = ACTIONS(1233), + [anon_sym_case] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(1233), + [anon_sym_while] = ACTIONS(1233), + [anon_sym_do] = ACTIONS(1233), + [anon_sym_for] = ACTIONS(1233), + [anon_sym_return] = ACTIONS(1233), + [anon_sym_break] = ACTIONS(1233), + [anon_sym_continue] = ACTIONS(1233), + [anon_sym_goto] = ACTIONS(1233), + [anon_sym___try] = ACTIONS(1233), + [anon_sym___leave] = ACTIONS(1233), + [anon_sym_DASH_DASH] = ACTIONS(1235), + [anon_sym_PLUS_PLUS] = ACTIONS(1235), + [anon_sym_sizeof] = ACTIONS(1233), + [anon_sym___alignof__] = ACTIONS(1233), + [anon_sym___alignof] = ACTIONS(1233), + [anon_sym__alignof] = ACTIONS(1233), + [anon_sym_alignof] = ACTIONS(1233), + [anon_sym__Alignof] = ACTIONS(1233), + [anon_sym_offsetof] = ACTIONS(1233), + [anon_sym__Generic] = ACTIONS(1233), + [anon_sym_asm] = ACTIONS(1233), + [anon_sym___asm__] = ACTIONS(1233), + [sym_number_literal] = ACTIONS(1235), + [anon_sym_L_SQUOTE] = ACTIONS(1235), + [anon_sym_u_SQUOTE] = ACTIONS(1235), + [anon_sym_U_SQUOTE] = ACTIONS(1235), + [anon_sym_u8_SQUOTE] = ACTIONS(1235), + [anon_sym_SQUOTE] = ACTIONS(1235), + [anon_sym_L_DQUOTE] = ACTIONS(1235), + [anon_sym_u_DQUOTE] = ACTIONS(1235), + [anon_sym_U_DQUOTE] = ACTIONS(1235), + [anon_sym_u8_DQUOTE] = ACTIONS(1235), + [anon_sym_DQUOTE] = ACTIONS(1235), + [sym_true] = ACTIONS(1233), + [sym_false] = ACTIONS(1233), + [anon_sym_NULL] = ACTIONS(1233), + [anon_sym_nullptr] = ACTIONS(1233), + [sym_comment] = ACTIONS(3), + }, + [106] = { + [sym_identifier] = ACTIONS(1237), + [aux_sym_preproc_include_token1] = ACTIONS(1237), + [aux_sym_preproc_def_token1] = ACTIONS(1237), + [aux_sym_preproc_if_token1] = ACTIONS(1237), + [aux_sym_preproc_if_token2] = ACTIONS(1237), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1237), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1237), + [aux_sym_preproc_else_token1] = ACTIONS(1237), + [aux_sym_preproc_elif_token1] = ACTIONS(1237), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1237), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1237), + [sym_preproc_directive] = ACTIONS(1237), + [anon_sym_LPAREN2] = ACTIONS(1239), + [anon_sym_BANG] = ACTIONS(1239), + [anon_sym_TILDE] = ACTIONS(1239), + [anon_sym_DASH] = ACTIONS(1237), + [anon_sym_PLUS] = ACTIONS(1237), + [anon_sym_STAR] = ACTIONS(1239), + [anon_sym_AMP] = ACTIONS(1239), + [anon_sym_SEMI] = ACTIONS(1239), + [anon_sym___extension__] = ACTIONS(1237), + [anon_sym_typedef] = ACTIONS(1237), + [anon_sym_extern] = ACTIONS(1237), + [anon_sym___attribute__] = ACTIONS(1237), + [anon_sym___scanf] = ACTIONS(1237), + [anon_sym___printf] = ACTIONS(1237), + [anon_sym___read_mostly] = ACTIONS(1237), + [anon_sym___must_hold] = ACTIONS(1237), + [anon_sym___ro_after_init] = ACTIONS(1237), + [anon_sym___noreturn] = ACTIONS(1237), + [anon_sym___cold] = ACTIONS(1237), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1239), + [anon_sym___declspec] = ACTIONS(1237), + [anon_sym___init] = ACTIONS(1237), + [anon_sym___exit] = ACTIONS(1237), + [anon_sym___cdecl] = ACTIONS(1237), + [anon_sym___clrcall] = ACTIONS(1237), + [anon_sym___stdcall] = ACTIONS(1237), + [anon_sym___fastcall] = ACTIONS(1237), + [anon_sym___thiscall] = ACTIONS(1237), + [anon_sym___vectorcall] = ACTIONS(1237), + [anon_sym_LBRACE] = ACTIONS(1239), + [anon_sym_signed] = ACTIONS(1237), + [anon_sym_unsigned] = ACTIONS(1237), + [anon_sym_long] = ACTIONS(1237), + [anon_sym_short] = ACTIONS(1237), + [anon_sym_static] = ACTIONS(1237), + [anon_sym_auto] = ACTIONS(1237), + [anon_sym_register] = ACTIONS(1237), + [anon_sym_inline] = ACTIONS(1237), + [anon_sym___inline] = ACTIONS(1237), + [anon_sym___inline__] = ACTIONS(1237), + [anon_sym___forceinline] = ACTIONS(1237), + [anon_sym_thread_local] = ACTIONS(1237), + [anon_sym___thread] = ACTIONS(1237), + [anon_sym_const] = ACTIONS(1237), + [anon_sym_constexpr] = ACTIONS(1237), + [anon_sym_volatile] = ACTIONS(1237), + [anon_sym_restrict] = ACTIONS(1237), + [anon_sym___restrict__] = ACTIONS(1237), + [anon_sym__Atomic] = ACTIONS(1237), + [anon_sym__Noreturn] = ACTIONS(1237), + [anon_sym_noreturn] = ACTIONS(1237), + [anon_sym_alignas] = ACTIONS(1237), + [anon_sym__Alignas] = ACTIONS(1237), + [sym_primitive_type] = ACTIONS(1237), + [anon_sym_enum] = ACTIONS(1237), + [anon_sym_struct] = ACTIONS(1237), + [anon_sym_union] = ACTIONS(1237), + [anon_sym_if] = ACTIONS(1237), + [anon_sym_else] = ACTIONS(1237), + [anon_sym_switch] = ACTIONS(1237), + [anon_sym_case] = ACTIONS(1237), + [anon_sym_default] = ACTIONS(1237), + [anon_sym_while] = ACTIONS(1237), + [anon_sym_do] = ACTIONS(1237), + [anon_sym_for] = ACTIONS(1237), + [anon_sym_return] = ACTIONS(1237), + [anon_sym_break] = ACTIONS(1237), + [anon_sym_continue] = ACTIONS(1237), + [anon_sym_goto] = ACTIONS(1237), + [anon_sym___try] = ACTIONS(1237), + [anon_sym___leave] = ACTIONS(1237), + [anon_sym_DASH_DASH] = ACTIONS(1239), + [anon_sym_PLUS_PLUS] = ACTIONS(1239), + [anon_sym_sizeof] = ACTIONS(1237), + [anon_sym___alignof__] = ACTIONS(1237), + [anon_sym___alignof] = ACTIONS(1237), + [anon_sym__alignof] = ACTIONS(1237), + [anon_sym_alignof] = ACTIONS(1237), + [anon_sym__Alignof] = ACTIONS(1237), + [anon_sym_offsetof] = ACTIONS(1237), + [anon_sym__Generic] = ACTIONS(1237), + [anon_sym_asm] = ACTIONS(1237), + [anon_sym___asm__] = ACTIONS(1237), + [sym_number_literal] = ACTIONS(1239), + [anon_sym_L_SQUOTE] = ACTIONS(1239), + [anon_sym_u_SQUOTE] = ACTIONS(1239), + [anon_sym_U_SQUOTE] = ACTIONS(1239), + [anon_sym_u8_SQUOTE] = ACTIONS(1239), + [anon_sym_SQUOTE] = ACTIONS(1239), + [anon_sym_L_DQUOTE] = ACTIONS(1239), + [anon_sym_u_DQUOTE] = ACTIONS(1239), + [anon_sym_U_DQUOTE] = ACTIONS(1239), + [anon_sym_u8_DQUOTE] = ACTIONS(1239), + [anon_sym_DQUOTE] = ACTIONS(1239), + [sym_true] = ACTIONS(1237), + [sym_false] = ACTIONS(1237), + [anon_sym_NULL] = ACTIONS(1237), + [anon_sym_nullptr] = ACTIONS(1237), + [sym_comment] = ACTIONS(3), + }, + [107] = { + [sym_identifier] = ACTIONS(1241), + [aux_sym_preproc_include_token1] = ACTIONS(1241), + [aux_sym_preproc_def_token1] = ACTIONS(1241), + [aux_sym_preproc_if_token1] = ACTIONS(1241), + [aux_sym_preproc_if_token2] = ACTIONS(1241), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1241), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1241), + [aux_sym_preproc_else_token1] = ACTIONS(1241), + [aux_sym_preproc_elif_token1] = ACTIONS(1241), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1241), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1241), + [sym_preproc_directive] = ACTIONS(1241), + [anon_sym_LPAREN2] = ACTIONS(1243), + [anon_sym_BANG] = ACTIONS(1243), + [anon_sym_TILDE] = ACTIONS(1243), + [anon_sym_DASH] = ACTIONS(1241), + [anon_sym_PLUS] = ACTIONS(1241), + [anon_sym_STAR] = ACTIONS(1243), + [anon_sym_AMP] = ACTIONS(1243), + [anon_sym_SEMI] = ACTIONS(1243), + [anon_sym___extension__] = ACTIONS(1241), + [anon_sym_typedef] = ACTIONS(1241), + [anon_sym_extern] = ACTIONS(1241), + [anon_sym___attribute__] = ACTIONS(1241), + [anon_sym___scanf] = ACTIONS(1241), + [anon_sym___printf] = ACTIONS(1241), + [anon_sym___read_mostly] = ACTIONS(1241), + [anon_sym___must_hold] = ACTIONS(1241), + [anon_sym___ro_after_init] = ACTIONS(1241), + [anon_sym___noreturn] = ACTIONS(1241), + [anon_sym___cold] = ACTIONS(1241), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1243), + [anon_sym___declspec] = ACTIONS(1241), + [anon_sym___init] = ACTIONS(1241), + [anon_sym___exit] = ACTIONS(1241), + [anon_sym___cdecl] = ACTIONS(1241), + [anon_sym___clrcall] = ACTIONS(1241), + [anon_sym___stdcall] = ACTIONS(1241), + [anon_sym___fastcall] = ACTIONS(1241), + [anon_sym___thiscall] = ACTIONS(1241), + [anon_sym___vectorcall] = ACTIONS(1241), + [anon_sym_LBRACE] = ACTIONS(1243), + [anon_sym_signed] = ACTIONS(1241), + [anon_sym_unsigned] = ACTIONS(1241), + [anon_sym_long] = ACTIONS(1241), + [anon_sym_short] = ACTIONS(1241), + [anon_sym_static] = ACTIONS(1241), + [anon_sym_auto] = ACTIONS(1241), + [anon_sym_register] = ACTIONS(1241), + [anon_sym_inline] = ACTIONS(1241), + [anon_sym___inline] = ACTIONS(1241), + [anon_sym___inline__] = ACTIONS(1241), + [anon_sym___forceinline] = ACTIONS(1241), + [anon_sym_thread_local] = ACTIONS(1241), + [anon_sym___thread] = ACTIONS(1241), + [anon_sym_const] = ACTIONS(1241), + [anon_sym_constexpr] = ACTIONS(1241), + [anon_sym_volatile] = ACTIONS(1241), + [anon_sym_restrict] = ACTIONS(1241), + [anon_sym___restrict__] = ACTIONS(1241), + [anon_sym__Atomic] = ACTIONS(1241), + [anon_sym__Noreturn] = ACTIONS(1241), + [anon_sym_noreturn] = ACTIONS(1241), + [anon_sym_alignas] = ACTIONS(1241), + [anon_sym__Alignas] = ACTIONS(1241), + [sym_primitive_type] = ACTIONS(1241), + [anon_sym_enum] = ACTIONS(1241), + [anon_sym_struct] = ACTIONS(1241), + [anon_sym_union] = ACTIONS(1241), + [anon_sym_if] = ACTIONS(1241), + [anon_sym_else] = ACTIONS(1241), + [anon_sym_switch] = ACTIONS(1241), + [anon_sym_case] = ACTIONS(1241), + [anon_sym_default] = ACTIONS(1241), + [anon_sym_while] = ACTIONS(1241), + [anon_sym_do] = ACTIONS(1241), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_return] = ACTIONS(1241), + [anon_sym_break] = ACTIONS(1241), + [anon_sym_continue] = ACTIONS(1241), + [anon_sym_goto] = ACTIONS(1241), + [anon_sym___try] = ACTIONS(1241), + [anon_sym___leave] = ACTIONS(1241), + [anon_sym_DASH_DASH] = ACTIONS(1243), + [anon_sym_PLUS_PLUS] = ACTIONS(1243), + [anon_sym_sizeof] = ACTIONS(1241), + [anon_sym___alignof__] = ACTIONS(1241), + [anon_sym___alignof] = ACTIONS(1241), + [anon_sym__alignof] = ACTIONS(1241), + [anon_sym_alignof] = ACTIONS(1241), + [anon_sym__Alignof] = ACTIONS(1241), + [anon_sym_offsetof] = ACTIONS(1241), + [anon_sym__Generic] = ACTIONS(1241), + [anon_sym_asm] = ACTIONS(1241), + [anon_sym___asm__] = ACTIONS(1241), + [sym_number_literal] = ACTIONS(1243), + [anon_sym_L_SQUOTE] = ACTIONS(1243), + [anon_sym_u_SQUOTE] = ACTIONS(1243), + [anon_sym_U_SQUOTE] = ACTIONS(1243), + [anon_sym_u8_SQUOTE] = ACTIONS(1243), + [anon_sym_SQUOTE] = ACTIONS(1243), + [anon_sym_L_DQUOTE] = ACTIONS(1243), + [anon_sym_u_DQUOTE] = ACTIONS(1243), + [anon_sym_U_DQUOTE] = ACTIONS(1243), + [anon_sym_u8_DQUOTE] = ACTIONS(1243), + [anon_sym_DQUOTE] = ACTIONS(1243), + [sym_true] = ACTIONS(1241), + [sym_false] = ACTIONS(1241), + [anon_sym_NULL] = ACTIONS(1241), + [anon_sym_nullptr] = ACTIONS(1241), + [sym_comment] = ACTIONS(3), + }, + [108] = { + [sym_identifier] = ACTIONS(1245), + [aux_sym_preproc_include_token1] = ACTIONS(1245), + [aux_sym_preproc_def_token1] = ACTIONS(1245), + [aux_sym_preproc_if_token1] = ACTIONS(1245), + [aux_sym_preproc_if_token2] = ACTIONS(1245), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1245), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1245), + [aux_sym_preproc_else_token1] = ACTIONS(1245), + [aux_sym_preproc_elif_token1] = ACTIONS(1245), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1245), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1245), + [sym_preproc_directive] = ACTIONS(1245), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(1247), + [anon_sym_TILDE] = ACTIONS(1247), + [anon_sym_DASH] = ACTIONS(1245), + [anon_sym_PLUS] = ACTIONS(1245), + [anon_sym_STAR] = ACTIONS(1247), + [anon_sym_AMP] = ACTIONS(1247), + [anon_sym_SEMI] = ACTIONS(1247), + [anon_sym___extension__] = ACTIONS(1245), + [anon_sym_typedef] = ACTIONS(1245), + [anon_sym_extern] = ACTIONS(1245), + [anon_sym___attribute__] = ACTIONS(1245), + [anon_sym___scanf] = ACTIONS(1245), + [anon_sym___printf] = ACTIONS(1245), + [anon_sym___read_mostly] = ACTIONS(1245), + [anon_sym___must_hold] = ACTIONS(1245), + [anon_sym___ro_after_init] = ACTIONS(1245), + [anon_sym___noreturn] = ACTIONS(1245), + [anon_sym___cold] = ACTIONS(1245), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1247), + [anon_sym___declspec] = ACTIONS(1245), + [anon_sym___init] = ACTIONS(1245), + [anon_sym___exit] = ACTIONS(1245), + [anon_sym___cdecl] = ACTIONS(1245), + [anon_sym___clrcall] = ACTIONS(1245), + [anon_sym___stdcall] = ACTIONS(1245), + [anon_sym___fastcall] = ACTIONS(1245), + [anon_sym___thiscall] = ACTIONS(1245), + [anon_sym___vectorcall] = ACTIONS(1245), + [anon_sym_LBRACE] = ACTIONS(1247), + [anon_sym_signed] = ACTIONS(1245), + [anon_sym_unsigned] = ACTIONS(1245), + [anon_sym_long] = ACTIONS(1245), + [anon_sym_short] = ACTIONS(1245), + [anon_sym_static] = ACTIONS(1245), + [anon_sym_auto] = ACTIONS(1245), + [anon_sym_register] = ACTIONS(1245), + [anon_sym_inline] = ACTIONS(1245), + [anon_sym___inline] = ACTIONS(1245), + [anon_sym___inline__] = ACTIONS(1245), + [anon_sym___forceinline] = ACTIONS(1245), + [anon_sym_thread_local] = ACTIONS(1245), + [anon_sym___thread] = ACTIONS(1245), + [anon_sym_const] = ACTIONS(1245), + [anon_sym_constexpr] = ACTIONS(1245), + [anon_sym_volatile] = ACTIONS(1245), + [anon_sym_restrict] = ACTIONS(1245), + [anon_sym___restrict__] = ACTIONS(1245), + [anon_sym__Atomic] = ACTIONS(1245), + [anon_sym__Noreturn] = ACTIONS(1245), + [anon_sym_noreturn] = ACTIONS(1245), + [anon_sym_alignas] = ACTIONS(1245), + [anon_sym__Alignas] = ACTIONS(1245), + [sym_primitive_type] = ACTIONS(1245), + [anon_sym_enum] = ACTIONS(1245), + [anon_sym_struct] = ACTIONS(1245), + [anon_sym_union] = ACTIONS(1245), + [anon_sym_if] = ACTIONS(1245), + [anon_sym_else] = ACTIONS(1245), + [anon_sym_switch] = ACTIONS(1245), + [anon_sym_case] = ACTIONS(1245), + [anon_sym_default] = ACTIONS(1245), + [anon_sym_while] = ACTIONS(1245), + [anon_sym_do] = ACTIONS(1245), + [anon_sym_for] = ACTIONS(1245), + [anon_sym_return] = ACTIONS(1245), + [anon_sym_break] = ACTIONS(1245), + [anon_sym_continue] = ACTIONS(1245), + [anon_sym_goto] = ACTIONS(1245), + [anon_sym___try] = ACTIONS(1245), + [anon_sym___leave] = ACTIONS(1245), + [anon_sym_DASH_DASH] = ACTIONS(1247), + [anon_sym_PLUS_PLUS] = ACTIONS(1247), + [anon_sym_sizeof] = ACTIONS(1245), + [anon_sym___alignof__] = ACTIONS(1245), + [anon_sym___alignof] = ACTIONS(1245), + [anon_sym__alignof] = ACTIONS(1245), + [anon_sym_alignof] = ACTIONS(1245), + [anon_sym__Alignof] = ACTIONS(1245), + [anon_sym_offsetof] = ACTIONS(1245), + [anon_sym__Generic] = ACTIONS(1245), + [anon_sym_asm] = ACTIONS(1245), + [anon_sym___asm__] = ACTIONS(1245), + [sym_number_literal] = ACTIONS(1247), + [anon_sym_L_SQUOTE] = ACTIONS(1247), + [anon_sym_u_SQUOTE] = ACTIONS(1247), + [anon_sym_U_SQUOTE] = ACTIONS(1247), + [anon_sym_u8_SQUOTE] = ACTIONS(1247), + [anon_sym_SQUOTE] = ACTIONS(1247), + [anon_sym_L_DQUOTE] = ACTIONS(1247), + [anon_sym_u_DQUOTE] = ACTIONS(1247), + [anon_sym_U_DQUOTE] = ACTIONS(1247), + [anon_sym_u8_DQUOTE] = ACTIONS(1247), + [anon_sym_DQUOTE] = ACTIONS(1247), + [sym_true] = ACTIONS(1245), + [sym_false] = ACTIONS(1245), + [anon_sym_NULL] = ACTIONS(1245), + [anon_sym_nullptr] = ACTIONS(1245), + [sym_comment] = ACTIONS(3), + }, + [109] = { + [sym_identifier] = ACTIONS(1249), + [aux_sym_preproc_include_token1] = ACTIONS(1249), + [aux_sym_preproc_def_token1] = ACTIONS(1249), + [aux_sym_preproc_if_token1] = ACTIONS(1249), + [aux_sym_preproc_if_token2] = ACTIONS(1249), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1249), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1249), + [aux_sym_preproc_else_token1] = ACTIONS(1249), + [aux_sym_preproc_elif_token1] = ACTIONS(1249), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1249), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1249), + [sym_preproc_directive] = ACTIONS(1249), + [anon_sym_LPAREN2] = ACTIONS(1251), + [anon_sym_BANG] = ACTIONS(1251), + [anon_sym_TILDE] = ACTIONS(1251), + [anon_sym_DASH] = ACTIONS(1249), + [anon_sym_PLUS] = ACTIONS(1249), + [anon_sym_STAR] = ACTIONS(1251), + [anon_sym_AMP] = ACTIONS(1251), + [anon_sym_SEMI] = ACTIONS(1251), + [anon_sym___extension__] = ACTIONS(1249), + [anon_sym_typedef] = ACTIONS(1249), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym___attribute__] = ACTIONS(1249), + [anon_sym___scanf] = ACTIONS(1249), + [anon_sym___printf] = ACTIONS(1249), + [anon_sym___read_mostly] = ACTIONS(1249), + [anon_sym___must_hold] = ACTIONS(1249), + [anon_sym___ro_after_init] = ACTIONS(1249), + [anon_sym___noreturn] = ACTIONS(1249), + [anon_sym___cold] = ACTIONS(1249), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1251), + [anon_sym___declspec] = ACTIONS(1249), + [anon_sym___init] = ACTIONS(1249), + [anon_sym___exit] = ACTIONS(1249), + [anon_sym___cdecl] = ACTIONS(1249), + [anon_sym___clrcall] = ACTIONS(1249), + [anon_sym___stdcall] = ACTIONS(1249), + [anon_sym___fastcall] = ACTIONS(1249), + [anon_sym___thiscall] = ACTIONS(1249), + [anon_sym___vectorcall] = ACTIONS(1249), + [anon_sym_LBRACE] = ACTIONS(1251), + [anon_sym_signed] = ACTIONS(1249), [anon_sym_unsigned] = ACTIONS(1249), [anon_sym_long] = ACTIONS(1249), [anon_sym_short] = ACTIONS(1249), @@ -27901,7 +29329,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1249), [sym_comment] = ACTIONS(3), }, - [106] = { + [110] = { [sym_identifier] = ACTIONS(1253), [aux_sym_preproc_include_token1] = ACTIONS(1253), [aux_sym_preproc_def_token1] = ACTIONS(1253), @@ -27931,9 +29359,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___read_mostly] = ACTIONS(1253), [anon_sym___must_hold] = ACTIONS(1253), [anon_sym___ro_after_init] = ACTIONS(1253), - [anon_sym___init] = ACTIONS(1253), + [anon_sym___noreturn] = ACTIONS(1253), + [anon_sym___cold] = ACTIONS(1253), [anon_sym_LBRACK_LBRACK] = ACTIONS(1255), [anon_sym___declspec] = ACTIONS(1253), + [anon_sym___init] = ACTIONS(1253), + [anon_sym___exit] = ACTIONS(1253), [anon_sym___cdecl] = ACTIONS(1253), [anon_sym___clrcall] = ACTIONS(1253), [anon_sym___stdcall] = ACTIONS(1253), @@ -28011,117 +29442,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1253), [sym_comment] = ACTIONS(3), }, - [107] = { - [sym_identifier] = ACTIONS(1155), - [aux_sym_preproc_include_token1] = ACTIONS(1155), - [aux_sym_preproc_def_token1] = ACTIONS(1155), - [aux_sym_preproc_if_token1] = ACTIONS(1155), - [aux_sym_preproc_if_token2] = ACTIONS(1155), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1155), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1155), - [aux_sym_preproc_else_token1] = ACTIONS(1155), - [aux_sym_preproc_elif_token1] = ACTIONS(1155), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1155), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1155), - [sym_preproc_directive] = ACTIONS(1155), - [anon_sym_LPAREN2] = ACTIONS(1153), - [anon_sym_BANG] = ACTIONS(1153), - [anon_sym_TILDE] = ACTIONS(1153), - [anon_sym_DASH] = ACTIONS(1155), - [anon_sym_PLUS] = ACTIONS(1155), - [anon_sym_STAR] = ACTIONS(1153), - [anon_sym_AMP] = ACTIONS(1153), - [anon_sym_SEMI] = ACTIONS(1153), - [anon_sym___extension__] = ACTIONS(1155), - [anon_sym_typedef] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1155), - [anon_sym___attribute__] = ACTIONS(1155), - [anon_sym___scanf] = ACTIONS(1155), - [anon_sym___printf] = ACTIONS(1155), - [anon_sym___read_mostly] = ACTIONS(1155), - [anon_sym___must_hold] = ACTIONS(1155), - [anon_sym___ro_after_init] = ACTIONS(1155), - [anon_sym___init] = ACTIONS(1155), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1153), - [anon_sym___declspec] = ACTIONS(1155), - [anon_sym___cdecl] = ACTIONS(1155), - [anon_sym___clrcall] = ACTIONS(1155), - [anon_sym___stdcall] = ACTIONS(1155), - [anon_sym___fastcall] = ACTIONS(1155), - [anon_sym___thiscall] = ACTIONS(1155), - [anon_sym___vectorcall] = ACTIONS(1155), - [anon_sym_LBRACE] = ACTIONS(1153), - [anon_sym_signed] = ACTIONS(1155), - [anon_sym_unsigned] = ACTIONS(1155), - [anon_sym_long] = ACTIONS(1155), - [anon_sym_short] = ACTIONS(1155), - [anon_sym_static] = ACTIONS(1155), - [anon_sym_auto] = ACTIONS(1155), - [anon_sym_register] = ACTIONS(1155), - [anon_sym_inline] = ACTIONS(1155), - [anon_sym___inline] = ACTIONS(1155), - [anon_sym___inline__] = ACTIONS(1155), - [anon_sym___forceinline] = ACTIONS(1155), - [anon_sym_thread_local] = ACTIONS(1155), - [anon_sym___thread] = ACTIONS(1155), - [anon_sym_const] = ACTIONS(1155), - [anon_sym_constexpr] = ACTIONS(1155), - [anon_sym_volatile] = ACTIONS(1155), - [anon_sym_restrict] = ACTIONS(1155), - [anon_sym___restrict__] = ACTIONS(1155), - [anon_sym__Atomic] = ACTIONS(1155), - [anon_sym__Noreturn] = ACTIONS(1155), - [anon_sym_noreturn] = ACTIONS(1155), - [anon_sym_alignas] = ACTIONS(1155), - [anon_sym__Alignas] = ACTIONS(1155), - [sym_primitive_type] = ACTIONS(1155), - [anon_sym_enum] = ACTIONS(1155), - [anon_sym_struct] = ACTIONS(1155), - [anon_sym_union] = ACTIONS(1155), - [anon_sym_if] = ACTIONS(1155), - [anon_sym_else] = ACTIONS(1155), - [anon_sym_switch] = ACTIONS(1155), - [anon_sym_case] = ACTIONS(1155), - [anon_sym_default] = ACTIONS(1155), - [anon_sym_while] = ACTIONS(1155), - [anon_sym_do] = ACTIONS(1155), - [anon_sym_for] = ACTIONS(1155), - [anon_sym_return] = ACTIONS(1155), - [anon_sym_break] = ACTIONS(1155), - [anon_sym_continue] = ACTIONS(1155), - [anon_sym_goto] = ACTIONS(1155), - [anon_sym___try] = ACTIONS(1155), - [anon_sym___leave] = ACTIONS(1155), - [anon_sym_DASH_DASH] = ACTIONS(1153), - [anon_sym_PLUS_PLUS] = ACTIONS(1153), - [anon_sym_sizeof] = ACTIONS(1155), - [anon_sym___alignof__] = ACTIONS(1155), - [anon_sym___alignof] = ACTIONS(1155), - [anon_sym__alignof] = ACTIONS(1155), - [anon_sym_alignof] = ACTIONS(1155), - [anon_sym__Alignof] = ACTIONS(1155), - [anon_sym_offsetof] = ACTIONS(1155), - [anon_sym__Generic] = ACTIONS(1155), - [anon_sym_asm] = ACTIONS(1155), - [anon_sym___asm__] = ACTIONS(1155), - [sym_number_literal] = ACTIONS(1153), - [anon_sym_L_SQUOTE] = ACTIONS(1153), - [anon_sym_u_SQUOTE] = ACTIONS(1153), - [anon_sym_U_SQUOTE] = ACTIONS(1153), - [anon_sym_u8_SQUOTE] = ACTIONS(1153), - [anon_sym_SQUOTE] = ACTIONS(1153), - [anon_sym_L_DQUOTE] = ACTIONS(1153), - [anon_sym_u_DQUOTE] = ACTIONS(1153), - [anon_sym_U_DQUOTE] = ACTIONS(1153), - [anon_sym_u8_DQUOTE] = ACTIONS(1153), - [anon_sym_DQUOTE] = ACTIONS(1153), - [sym_true] = ACTIONS(1155), - [sym_false] = ACTIONS(1155), - [anon_sym_NULL] = ACTIONS(1155), - [anon_sym_nullptr] = ACTIONS(1155), - [sym_comment] = ACTIONS(3), - }, - [108] = { + [111] = { [sym_identifier] = ACTIONS(1257), [aux_sym_preproc_include_token1] = ACTIONS(1257), [aux_sym_preproc_def_token1] = ACTIONS(1257), @@ -28151,9 +29472,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___read_mostly] = ACTIONS(1257), [anon_sym___must_hold] = ACTIONS(1257), [anon_sym___ro_after_init] = ACTIONS(1257), - [anon_sym___init] = ACTIONS(1257), + [anon_sym___noreturn] = ACTIONS(1257), + [anon_sym___cold] = ACTIONS(1257), [anon_sym_LBRACK_LBRACK] = ACTIONS(1259), [anon_sym___declspec] = ACTIONS(1257), + [anon_sym___init] = ACTIONS(1257), + [anon_sym___exit] = ACTIONS(1257), [anon_sym___cdecl] = ACTIONS(1257), [anon_sym___clrcall] = ACTIONS(1257), [anon_sym___stdcall] = ACTIONS(1257), @@ -28231,7 +29555,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1257), [sym_comment] = ACTIONS(3), }, - [109] = { + [112] = { [sym_identifier] = ACTIONS(1261), [aux_sym_preproc_include_token1] = ACTIONS(1261), [aux_sym_preproc_def_token1] = ACTIONS(1261), @@ -28261,9 +29585,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___read_mostly] = ACTIONS(1261), [anon_sym___must_hold] = ACTIONS(1261), [anon_sym___ro_after_init] = ACTIONS(1261), - [anon_sym___init] = ACTIONS(1261), + [anon_sym___noreturn] = ACTIONS(1261), + [anon_sym___cold] = ACTIONS(1261), [anon_sym_LBRACK_LBRACK] = ACTIONS(1263), [anon_sym___declspec] = ACTIONS(1261), + [anon_sym___init] = ACTIONS(1261), + [anon_sym___exit] = ACTIONS(1261), [anon_sym___cdecl] = ACTIONS(1261), [anon_sym___clrcall] = ACTIONS(1261), [anon_sym___stdcall] = ACTIONS(1261), @@ -28341,117 +29668,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1261), [sym_comment] = ACTIONS(3), }, - [110] = { - [ts_builtin_sym_end] = ACTIONS(1199), - [sym_identifier] = ACTIONS(1197), - [aux_sym_preproc_include_token1] = ACTIONS(1197), - [aux_sym_preproc_def_token1] = ACTIONS(1197), - [anon_sym_COMMA] = ACTIONS(1199), - [anon_sym_RPAREN] = ACTIONS(1199), - [aux_sym_preproc_if_token1] = ACTIONS(1197), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1197), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1197), - [sym_preproc_directive] = ACTIONS(1197), - [anon_sym_LPAREN2] = ACTIONS(1199), - [anon_sym_BANG] = ACTIONS(1199), - [anon_sym_TILDE] = ACTIONS(1199), - [anon_sym_DASH] = ACTIONS(1197), - [anon_sym_PLUS] = ACTIONS(1197), - [anon_sym_STAR] = ACTIONS(1199), - [anon_sym_AMP] = ACTIONS(1199), - [anon_sym_SEMI] = ACTIONS(1199), - [anon_sym___extension__] = ACTIONS(1197), - [anon_sym_typedef] = ACTIONS(1197), - [anon_sym_extern] = ACTIONS(1197), - [anon_sym___attribute__] = ACTIONS(1197), - [anon_sym___scanf] = ACTIONS(1197), - [anon_sym___printf] = ACTIONS(1197), - [anon_sym___read_mostly] = ACTIONS(1197), - [anon_sym___must_hold] = ACTIONS(1197), - [anon_sym___ro_after_init] = ACTIONS(1197), - [anon_sym___init] = ACTIONS(1197), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1199), - [anon_sym___declspec] = ACTIONS(1197), - [anon_sym___cdecl] = ACTIONS(1197), - [anon_sym___clrcall] = ACTIONS(1197), - [anon_sym___stdcall] = ACTIONS(1197), - [anon_sym___fastcall] = ACTIONS(1197), - [anon_sym___thiscall] = ACTIONS(1197), - [anon_sym___vectorcall] = ACTIONS(1197), - [anon_sym_LBRACE] = ACTIONS(1199), - [anon_sym_signed] = ACTIONS(1197), - [anon_sym_unsigned] = ACTIONS(1197), - [anon_sym_long] = ACTIONS(1197), - [anon_sym_short] = ACTIONS(1197), - [anon_sym_static] = ACTIONS(1197), - [anon_sym_auto] = ACTIONS(1197), - [anon_sym_register] = ACTIONS(1197), - [anon_sym_inline] = ACTIONS(1197), - [anon_sym___inline] = ACTIONS(1197), - [anon_sym___inline__] = ACTIONS(1197), - [anon_sym___forceinline] = ACTIONS(1197), - [anon_sym_thread_local] = ACTIONS(1197), - [anon_sym___thread] = ACTIONS(1197), - [anon_sym_const] = ACTIONS(1197), - [anon_sym_constexpr] = ACTIONS(1197), - [anon_sym_volatile] = ACTIONS(1197), - [anon_sym_restrict] = ACTIONS(1197), - [anon_sym___restrict__] = ACTIONS(1197), - [anon_sym__Atomic] = ACTIONS(1197), - [anon_sym__Noreturn] = ACTIONS(1197), - [anon_sym_noreturn] = ACTIONS(1197), - [anon_sym_alignas] = ACTIONS(1197), - [anon_sym__Alignas] = ACTIONS(1197), - [sym_primitive_type] = ACTIONS(1197), - [anon_sym_enum] = ACTIONS(1197), - [anon_sym_struct] = ACTIONS(1197), - [anon_sym_union] = ACTIONS(1197), - [anon_sym_if] = ACTIONS(1197), - [anon_sym_else] = ACTIONS(1197), - [anon_sym_switch] = ACTIONS(1197), - [anon_sym_case] = ACTIONS(1197), - [anon_sym_default] = ACTIONS(1197), - [anon_sym_while] = ACTIONS(1197), - [anon_sym_do] = ACTIONS(1197), - [anon_sym_for] = ACTIONS(1197), - [anon_sym_return] = ACTIONS(1197), - [anon_sym_break] = ACTIONS(1197), - [anon_sym_continue] = ACTIONS(1197), - [anon_sym_goto] = ACTIONS(1197), - [anon_sym___try] = ACTIONS(1197), - [anon_sym___except] = ACTIONS(1197), - [anon_sym___finally] = ACTIONS(1197), - [anon_sym___leave] = ACTIONS(1197), - [anon_sym_DASH_DASH] = ACTIONS(1199), - [anon_sym_PLUS_PLUS] = ACTIONS(1199), - [anon_sym_sizeof] = ACTIONS(1197), - [anon_sym___alignof__] = ACTIONS(1197), - [anon_sym___alignof] = ACTIONS(1197), - [anon_sym__alignof] = ACTIONS(1197), - [anon_sym_alignof] = ACTIONS(1197), - [anon_sym__Alignof] = ACTIONS(1197), - [anon_sym_offsetof] = ACTIONS(1197), - [anon_sym__Generic] = ACTIONS(1197), - [anon_sym_asm] = ACTIONS(1197), - [anon_sym___asm__] = ACTIONS(1197), - [sym_number_literal] = ACTIONS(1199), - [anon_sym_L_SQUOTE] = ACTIONS(1199), - [anon_sym_u_SQUOTE] = ACTIONS(1199), - [anon_sym_U_SQUOTE] = ACTIONS(1199), - [anon_sym_u8_SQUOTE] = ACTIONS(1199), - [anon_sym_SQUOTE] = ACTIONS(1199), - [anon_sym_L_DQUOTE] = ACTIONS(1199), - [anon_sym_u_DQUOTE] = ACTIONS(1199), - [anon_sym_U_DQUOTE] = ACTIONS(1199), - [anon_sym_u8_DQUOTE] = ACTIONS(1199), - [anon_sym_DQUOTE] = ACTIONS(1199), - [sym_true] = ACTIONS(1197), - [sym_false] = ACTIONS(1197), - [anon_sym_NULL] = ACTIONS(1197), - [anon_sym_nullptr] = ACTIONS(1197), - [sym_comment] = ACTIONS(3), - }, - [111] = { + [113] = { [sym_identifier] = ACTIONS(1265), [aux_sym_preproc_include_token1] = ACTIONS(1265), [aux_sym_preproc_def_token1] = ACTIONS(1265), @@ -28481,9 +29698,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___read_mostly] = ACTIONS(1265), [anon_sym___must_hold] = ACTIONS(1265), [anon_sym___ro_after_init] = ACTIONS(1265), - [anon_sym___init] = ACTIONS(1265), + [anon_sym___noreturn] = ACTIONS(1265), + [anon_sym___cold] = ACTIONS(1265), [anon_sym_LBRACK_LBRACK] = ACTIONS(1267), [anon_sym___declspec] = ACTIONS(1265), + [anon_sym___init] = ACTIONS(1265), + [anon_sym___exit] = ACTIONS(1265), [anon_sym___cdecl] = ACTIONS(1265), [anon_sym___clrcall] = ACTIONS(1265), [anon_sym___stdcall] = ACTIONS(1265), @@ -28561,117 +29781,233 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1265), [sym_comment] = ACTIONS(3), }, - [112] = { - [sym_identifier] = ACTIONS(1245), - [aux_sym_preproc_include_token1] = ACTIONS(1245), - [aux_sym_preproc_def_token1] = ACTIONS(1245), - [aux_sym_preproc_if_token1] = ACTIONS(1245), - [aux_sym_preproc_if_token2] = ACTIONS(1245), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1245), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1245), - [aux_sym_preproc_else_token1] = ACTIONS(1245), - [aux_sym_preproc_elif_token1] = ACTIONS(1245), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1245), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1245), - [sym_preproc_directive] = ACTIONS(1245), - [anon_sym_LPAREN2] = ACTIONS(1247), - [anon_sym_BANG] = ACTIONS(1247), - [anon_sym_TILDE] = ACTIONS(1247), - [anon_sym_DASH] = ACTIONS(1245), - [anon_sym_PLUS] = ACTIONS(1245), - [anon_sym_STAR] = ACTIONS(1247), - [anon_sym_AMP] = ACTIONS(1247), - [anon_sym_SEMI] = ACTIONS(1247), - [anon_sym___extension__] = ACTIONS(1245), - [anon_sym_typedef] = ACTIONS(1245), - [anon_sym_extern] = ACTIONS(1245), - [anon_sym___attribute__] = ACTIONS(1245), - [anon_sym___scanf] = ACTIONS(1245), - [anon_sym___printf] = ACTIONS(1245), - [anon_sym___read_mostly] = ACTIONS(1245), - [anon_sym___must_hold] = ACTIONS(1245), - [anon_sym___ro_after_init] = ACTIONS(1245), - [anon_sym___init] = ACTIONS(1245), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1247), - [anon_sym___declspec] = ACTIONS(1245), - [anon_sym___cdecl] = ACTIONS(1245), - [anon_sym___clrcall] = ACTIONS(1245), - [anon_sym___stdcall] = ACTIONS(1245), - [anon_sym___fastcall] = ACTIONS(1245), - [anon_sym___thiscall] = ACTIONS(1245), - [anon_sym___vectorcall] = ACTIONS(1245), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_signed] = ACTIONS(1245), - [anon_sym_unsigned] = ACTIONS(1245), - [anon_sym_long] = ACTIONS(1245), - [anon_sym_short] = ACTIONS(1245), - [anon_sym_static] = ACTIONS(1245), - [anon_sym_auto] = ACTIONS(1245), - [anon_sym_register] = ACTIONS(1245), - [anon_sym_inline] = ACTIONS(1245), - [anon_sym___inline] = ACTIONS(1245), - [anon_sym___inline__] = ACTIONS(1245), - [anon_sym___forceinline] = ACTIONS(1245), - [anon_sym_thread_local] = ACTIONS(1245), - [anon_sym___thread] = ACTIONS(1245), - [anon_sym_const] = ACTIONS(1245), - [anon_sym_constexpr] = ACTIONS(1245), - [anon_sym_volatile] = ACTIONS(1245), - [anon_sym_restrict] = ACTIONS(1245), - [anon_sym___restrict__] = ACTIONS(1245), - [anon_sym__Atomic] = ACTIONS(1245), - [anon_sym__Noreturn] = ACTIONS(1245), - [anon_sym_noreturn] = ACTIONS(1245), - [anon_sym_alignas] = ACTIONS(1245), - [anon_sym__Alignas] = ACTIONS(1245), - [sym_primitive_type] = ACTIONS(1245), - [anon_sym_enum] = ACTIONS(1245), - [anon_sym_struct] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1245), - [anon_sym_if] = ACTIONS(1245), - [anon_sym_else] = ACTIONS(1245), - [anon_sym_switch] = ACTIONS(1245), - [anon_sym_case] = ACTIONS(1245), - [anon_sym_default] = ACTIONS(1245), - [anon_sym_while] = ACTIONS(1245), - [anon_sym_do] = ACTIONS(1245), - [anon_sym_for] = ACTIONS(1245), - [anon_sym_return] = ACTIONS(1245), - [anon_sym_break] = ACTIONS(1245), - [anon_sym_continue] = ACTIONS(1245), - [anon_sym_goto] = ACTIONS(1245), - [anon_sym___try] = ACTIONS(1245), - [anon_sym___leave] = ACTIONS(1245), - [anon_sym_DASH_DASH] = ACTIONS(1247), - [anon_sym_PLUS_PLUS] = ACTIONS(1247), - [anon_sym_sizeof] = ACTIONS(1245), - [anon_sym___alignof__] = ACTIONS(1245), - [anon_sym___alignof] = ACTIONS(1245), - [anon_sym__alignof] = ACTIONS(1245), - [anon_sym_alignof] = ACTIONS(1245), - [anon_sym__Alignof] = ACTIONS(1245), - [anon_sym_offsetof] = ACTIONS(1245), - [anon_sym__Generic] = ACTIONS(1245), - [anon_sym_asm] = ACTIONS(1245), - [anon_sym___asm__] = ACTIONS(1245), - [sym_number_literal] = ACTIONS(1247), - [anon_sym_L_SQUOTE] = ACTIONS(1247), - [anon_sym_u_SQUOTE] = ACTIONS(1247), - [anon_sym_U_SQUOTE] = ACTIONS(1247), - [anon_sym_u8_SQUOTE] = ACTIONS(1247), - [anon_sym_SQUOTE] = ACTIONS(1247), - [anon_sym_L_DQUOTE] = ACTIONS(1247), - [anon_sym_u_DQUOTE] = ACTIONS(1247), - [anon_sym_U_DQUOTE] = ACTIONS(1247), - [anon_sym_u8_DQUOTE] = ACTIONS(1247), - [anon_sym_DQUOTE] = ACTIONS(1247), - [sym_true] = ACTIONS(1245), - [sym_false] = ACTIONS(1245), - [anon_sym_NULL] = ACTIONS(1245), - [anon_sym_nullptr] = ACTIONS(1245), + [114] = { + [sym_identifier] = ACTIONS(1153), + [aux_sym_preproc_include_token1] = ACTIONS(1153), + [aux_sym_preproc_def_token1] = ACTIONS(1153), + [aux_sym_preproc_if_token1] = ACTIONS(1153), + [aux_sym_preproc_if_token2] = ACTIONS(1153), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1153), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1153), + [aux_sym_preproc_else_token1] = ACTIONS(1153), + [aux_sym_preproc_elif_token1] = ACTIONS(1153), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1153), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1153), + [sym_preproc_directive] = ACTIONS(1153), + [anon_sym_LPAREN2] = ACTIONS(1155), + [anon_sym_BANG] = ACTIONS(1155), + [anon_sym_TILDE] = ACTIONS(1155), + [anon_sym_DASH] = ACTIONS(1153), + [anon_sym_PLUS] = ACTIONS(1153), + [anon_sym_STAR] = ACTIONS(1155), + [anon_sym_AMP] = ACTIONS(1155), + [anon_sym_SEMI] = ACTIONS(1155), + [anon_sym___extension__] = ACTIONS(1153), + [anon_sym_typedef] = ACTIONS(1153), + [anon_sym_extern] = ACTIONS(1153), + [anon_sym___attribute__] = ACTIONS(1153), + [anon_sym___scanf] = ACTIONS(1153), + [anon_sym___printf] = ACTIONS(1153), + [anon_sym___read_mostly] = ACTIONS(1153), + [anon_sym___must_hold] = ACTIONS(1153), + [anon_sym___ro_after_init] = ACTIONS(1153), + [anon_sym___noreturn] = ACTIONS(1153), + [anon_sym___cold] = ACTIONS(1153), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1155), + [anon_sym___declspec] = ACTIONS(1153), + [anon_sym___init] = ACTIONS(1153), + [anon_sym___exit] = ACTIONS(1153), + [anon_sym___cdecl] = ACTIONS(1153), + [anon_sym___clrcall] = ACTIONS(1153), + [anon_sym___stdcall] = ACTIONS(1153), + [anon_sym___fastcall] = ACTIONS(1153), + [anon_sym___thiscall] = ACTIONS(1153), + [anon_sym___vectorcall] = ACTIONS(1153), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_signed] = ACTIONS(1153), + [anon_sym_unsigned] = ACTIONS(1153), + [anon_sym_long] = ACTIONS(1153), + [anon_sym_short] = ACTIONS(1153), + [anon_sym_static] = ACTIONS(1153), + [anon_sym_auto] = ACTIONS(1153), + [anon_sym_register] = ACTIONS(1153), + [anon_sym_inline] = ACTIONS(1153), + [anon_sym___inline] = ACTIONS(1153), + [anon_sym___inline__] = ACTIONS(1153), + [anon_sym___forceinline] = ACTIONS(1153), + [anon_sym_thread_local] = ACTIONS(1153), + [anon_sym___thread] = ACTIONS(1153), + [anon_sym_const] = ACTIONS(1153), + [anon_sym_constexpr] = ACTIONS(1153), + [anon_sym_volatile] = ACTIONS(1153), + [anon_sym_restrict] = ACTIONS(1153), + [anon_sym___restrict__] = ACTIONS(1153), + [anon_sym__Atomic] = ACTIONS(1153), + [anon_sym__Noreturn] = ACTIONS(1153), + [anon_sym_noreturn] = ACTIONS(1153), + [anon_sym_alignas] = ACTIONS(1153), + [anon_sym__Alignas] = ACTIONS(1153), + [sym_primitive_type] = ACTIONS(1153), + [anon_sym_enum] = ACTIONS(1153), + [anon_sym_struct] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1153), + [anon_sym_if] = ACTIONS(1153), + [anon_sym_else] = ACTIONS(1153), + [anon_sym_switch] = ACTIONS(1153), + [anon_sym_case] = ACTIONS(1153), + [anon_sym_default] = ACTIONS(1153), + [anon_sym_while] = ACTIONS(1153), + [anon_sym_do] = ACTIONS(1153), + [anon_sym_for] = ACTIONS(1153), + [anon_sym_return] = ACTIONS(1153), + [anon_sym_break] = ACTIONS(1153), + [anon_sym_continue] = ACTIONS(1153), + [anon_sym_goto] = ACTIONS(1153), + [anon_sym___try] = ACTIONS(1153), + [anon_sym___leave] = ACTIONS(1153), + [anon_sym_DASH_DASH] = ACTIONS(1155), + [anon_sym_PLUS_PLUS] = ACTIONS(1155), + [anon_sym_sizeof] = ACTIONS(1153), + [anon_sym___alignof__] = ACTIONS(1153), + [anon_sym___alignof] = ACTIONS(1153), + [anon_sym__alignof] = ACTIONS(1153), + [anon_sym_alignof] = ACTIONS(1153), + [anon_sym__Alignof] = ACTIONS(1153), + [anon_sym_offsetof] = ACTIONS(1153), + [anon_sym__Generic] = ACTIONS(1153), + [anon_sym_asm] = ACTIONS(1153), + [anon_sym___asm__] = ACTIONS(1153), + [sym_number_literal] = ACTIONS(1155), + [anon_sym_L_SQUOTE] = ACTIONS(1155), + [anon_sym_u_SQUOTE] = ACTIONS(1155), + [anon_sym_U_SQUOTE] = ACTIONS(1155), + [anon_sym_u8_SQUOTE] = ACTIONS(1155), + [anon_sym_SQUOTE] = ACTIONS(1155), + [anon_sym_L_DQUOTE] = ACTIONS(1155), + [anon_sym_u_DQUOTE] = ACTIONS(1155), + [anon_sym_U_DQUOTE] = ACTIONS(1155), + [anon_sym_u8_DQUOTE] = ACTIONS(1155), + [anon_sym_DQUOTE] = ACTIONS(1155), + [sym_true] = ACTIONS(1153), + [sym_false] = ACTIONS(1153), + [anon_sym_NULL] = ACTIONS(1153), + [anon_sym_nullptr] = ACTIONS(1153), [sym_comment] = ACTIONS(3), }, - [113] = { + [115] = { + [sym_identifier] = ACTIONS(1153), + [aux_sym_preproc_include_token1] = ACTIONS(1153), + [aux_sym_preproc_def_token1] = ACTIONS(1153), + [aux_sym_preproc_if_token1] = ACTIONS(1153), + [aux_sym_preproc_if_token2] = ACTIONS(1153), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1153), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1153), + [aux_sym_preproc_else_token1] = ACTIONS(1153), + [aux_sym_preproc_elif_token1] = ACTIONS(1153), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1153), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1153), + [sym_preproc_directive] = ACTIONS(1153), + [anon_sym_LPAREN2] = ACTIONS(1155), + [anon_sym_BANG] = ACTIONS(1155), + [anon_sym_TILDE] = ACTIONS(1155), + [anon_sym_DASH] = ACTIONS(1153), + [anon_sym_PLUS] = ACTIONS(1153), + [anon_sym_STAR] = ACTIONS(1155), + [anon_sym_AMP] = ACTIONS(1155), + [anon_sym_SEMI] = ACTIONS(1155), + [anon_sym___extension__] = ACTIONS(1153), + [anon_sym_typedef] = ACTIONS(1153), + [anon_sym_extern] = ACTIONS(1153), + [anon_sym___attribute__] = ACTIONS(1153), + [anon_sym___scanf] = ACTIONS(1153), + [anon_sym___printf] = ACTIONS(1153), + [anon_sym___read_mostly] = ACTIONS(1153), + [anon_sym___must_hold] = ACTIONS(1153), + [anon_sym___ro_after_init] = ACTIONS(1153), + [anon_sym___noreturn] = ACTIONS(1153), + [anon_sym___cold] = ACTIONS(1153), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1155), + [anon_sym___declspec] = ACTIONS(1153), + [anon_sym___init] = ACTIONS(1153), + [anon_sym___exit] = ACTIONS(1153), + [anon_sym___cdecl] = ACTIONS(1153), + [anon_sym___clrcall] = ACTIONS(1153), + [anon_sym___stdcall] = ACTIONS(1153), + [anon_sym___fastcall] = ACTIONS(1153), + [anon_sym___thiscall] = ACTIONS(1153), + [anon_sym___vectorcall] = ACTIONS(1153), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_signed] = ACTIONS(1153), + [anon_sym_unsigned] = ACTIONS(1153), + [anon_sym_long] = ACTIONS(1153), + [anon_sym_short] = ACTIONS(1153), + [anon_sym_static] = ACTIONS(1153), + [anon_sym_auto] = ACTIONS(1153), + [anon_sym_register] = ACTIONS(1153), + [anon_sym_inline] = ACTIONS(1153), + [anon_sym___inline] = ACTIONS(1153), + [anon_sym___inline__] = ACTIONS(1153), + [anon_sym___forceinline] = ACTIONS(1153), + [anon_sym_thread_local] = ACTIONS(1153), + [anon_sym___thread] = ACTIONS(1153), + [anon_sym_const] = ACTIONS(1153), + [anon_sym_constexpr] = ACTIONS(1153), + [anon_sym_volatile] = ACTIONS(1153), + [anon_sym_restrict] = ACTIONS(1153), + [anon_sym___restrict__] = ACTIONS(1153), + [anon_sym__Atomic] = ACTIONS(1153), + [anon_sym__Noreturn] = ACTIONS(1153), + [anon_sym_noreturn] = ACTIONS(1153), + [anon_sym_alignas] = ACTIONS(1153), + [anon_sym__Alignas] = ACTIONS(1153), + [sym_primitive_type] = ACTIONS(1153), + [anon_sym_enum] = ACTIONS(1153), + [anon_sym_struct] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1153), + [anon_sym_if] = ACTIONS(1153), + [anon_sym_else] = ACTIONS(1153), + [anon_sym_switch] = ACTIONS(1153), + [anon_sym_case] = ACTIONS(1153), + [anon_sym_default] = ACTIONS(1153), + [anon_sym_while] = ACTIONS(1153), + [anon_sym_do] = ACTIONS(1153), + [anon_sym_for] = ACTIONS(1153), + [anon_sym_return] = ACTIONS(1153), + [anon_sym_break] = ACTIONS(1153), + [anon_sym_continue] = ACTIONS(1153), + [anon_sym_goto] = ACTIONS(1153), + [anon_sym___try] = ACTIONS(1153), + [anon_sym___leave] = ACTIONS(1153), + [anon_sym_DASH_DASH] = ACTIONS(1155), + [anon_sym_PLUS_PLUS] = ACTIONS(1155), + [anon_sym_sizeof] = ACTIONS(1153), + [anon_sym___alignof__] = ACTIONS(1153), + [anon_sym___alignof] = ACTIONS(1153), + [anon_sym__alignof] = ACTIONS(1153), + [anon_sym_alignof] = ACTIONS(1153), + [anon_sym__Alignof] = ACTIONS(1153), + [anon_sym_offsetof] = ACTIONS(1153), + [anon_sym__Generic] = ACTIONS(1153), + [anon_sym_asm] = ACTIONS(1153), + [anon_sym___asm__] = ACTIONS(1153), + [sym_number_literal] = ACTIONS(1155), + [anon_sym_L_SQUOTE] = ACTIONS(1155), + [anon_sym_u_SQUOTE] = ACTIONS(1155), + [anon_sym_U_SQUOTE] = ACTIONS(1155), + [anon_sym_u8_SQUOTE] = ACTIONS(1155), + [anon_sym_SQUOTE] = ACTIONS(1155), + [anon_sym_L_DQUOTE] = ACTIONS(1155), + [anon_sym_u_DQUOTE] = ACTIONS(1155), + [anon_sym_U_DQUOTE] = ACTIONS(1155), + [anon_sym_u8_DQUOTE] = ACTIONS(1155), + [anon_sym_DQUOTE] = ACTIONS(1155), + [sym_true] = ACTIONS(1153), + [sym_false] = ACTIONS(1153), + [anon_sym_NULL] = ACTIONS(1153), + [anon_sym_nullptr] = ACTIONS(1153), + [sym_comment] = ACTIONS(3), + }, + [116] = { [sym_identifier] = ACTIONS(1269), [aux_sym_preproc_include_token1] = ACTIONS(1269), [aux_sym_preproc_def_token1] = ACTIONS(1269), @@ -28701,9 +30037,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___read_mostly] = ACTIONS(1269), [anon_sym___must_hold] = ACTIONS(1269), [anon_sym___ro_after_init] = ACTIONS(1269), - [anon_sym___init] = ACTIONS(1269), + [anon_sym___noreturn] = ACTIONS(1269), + [anon_sym___cold] = ACTIONS(1269), [anon_sym_LBRACK_LBRACK] = ACTIONS(1271), [anon_sym___declspec] = ACTIONS(1269), + [anon_sym___init] = ACTIONS(1269), + [anon_sym___exit] = ACTIONS(1269), [anon_sym___cdecl] = ACTIONS(1269), [anon_sym___clrcall] = ACTIONS(1269), [anon_sym___stdcall] = ACTIONS(1269), @@ -28781,7 +30120,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1269), [sym_comment] = ACTIONS(3), }, - [114] = { + [117] = { [sym_identifier] = ACTIONS(1273), [aux_sym_preproc_include_token1] = ACTIONS(1273), [aux_sym_preproc_def_token1] = ACTIONS(1273), @@ -28811,9 +30150,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___read_mostly] = ACTIONS(1273), [anon_sym___must_hold] = ACTIONS(1273), [anon_sym___ro_after_init] = ACTIONS(1273), - [anon_sym___init] = ACTIONS(1273), + [anon_sym___noreturn] = ACTIONS(1273), + [anon_sym___cold] = ACTIONS(1273), [anon_sym_LBRACK_LBRACK] = ACTIONS(1275), [anon_sym___declspec] = ACTIONS(1273), + [anon_sym___init] = ACTIONS(1273), + [anon_sym___exit] = ACTIONS(1273), [anon_sym___cdecl] = ACTIONS(1273), [anon_sym___clrcall] = ACTIONS(1273), [anon_sym___stdcall] = ACTIONS(1273), @@ -28849,6 +30191,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(1273), [anon_sym_union] = ACTIONS(1273), [anon_sym_if] = ACTIONS(1273), + [anon_sym_else] = ACTIONS(1273), [anon_sym_switch] = ACTIONS(1273), [anon_sym_case] = ACTIONS(1273), [anon_sym_default] = ACTIONS(1273), @@ -28890,7 +30233,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1273), [sym_comment] = ACTIONS(3), }, - [115] = { + [118] = { [sym_identifier] = ACTIONS(1277), [aux_sym_preproc_include_token1] = ACTIONS(1277), [aux_sym_preproc_def_token1] = ACTIONS(1277), @@ -28920,9 +30263,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___read_mostly] = ACTIONS(1277), [anon_sym___must_hold] = ACTIONS(1277), [anon_sym___ro_after_init] = ACTIONS(1277), - [anon_sym___init] = ACTIONS(1277), + [anon_sym___noreturn] = ACTIONS(1277), + [anon_sym___cold] = ACTIONS(1277), [anon_sym_LBRACK_LBRACK] = ACTIONS(1279), [anon_sym___declspec] = ACTIONS(1277), + [anon_sym___init] = ACTIONS(1277), + [anon_sym___exit] = ACTIONS(1277), [anon_sym___cdecl] = ACTIONS(1277), [anon_sym___clrcall] = ACTIONS(1277), [anon_sym___stdcall] = ACTIONS(1277), @@ -28958,6 +30304,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(1277), [anon_sym_union] = ACTIONS(1277), [anon_sym_if] = ACTIONS(1277), + [anon_sym_else] = ACTIONS(1277), [anon_sym_switch] = ACTIONS(1277), [anon_sym_case] = ACTIONS(1277), [anon_sym_default] = ACTIONS(1277), @@ -28999,7 +30346,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1277), [sym_comment] = ACTIONS(3), }, - [116] = { + [119] = { [sym_identifier] = ACTIONS(1281), [aux_sym_preproc_include_token1] = ACTIONS(1281), [aux_sym_preproc_def_token1] = ACTIONS(1281), @@ -29029,9 +30376,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___read_mostly] = ACTIONS(1281), [anon_sym___must_hold] = ACTIONS(1281), [anon_sym___ro_after_init] = ACTIONS(1281), - [anon_sym___init] = ACTIONS(1281), + [anon_sym___noreturn] = ACTIONS(1281), + [anon_sym___cold] = ACTIONS(1281), [anon_sym_LBRACK_LBRACK] = ACTIONS(1283), [anon_sym___declspec] = ACTIONS(1281), + [anon_sym___init] = ACTIONS(1281), + [anon_sym___exit] = ACTIONS(1281), [anon_sym___cdecl] = ACTIONS(1281), [anon_sym___clrcall] = ACTIONS(1281), [anon_sym___stdcall] = ACTIONS(1281), @@ -29067,6 +30417,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(1281), [anon_sym_union] = ACTIONS(1281), [anon_sym_if] = ACTIONS(1281), + [anon_sym_else] = ACTIONS(1281), [anon_sym_switch] = ACTIONS(1281), [anon_sym_case] = ACTIONS(1281), [anon_sym_default] = ACTIONS(1281), @@ -29108,7 +30459,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1281), [sym_comment] = ACTIONS(3), }, - [117] = { + [120] = { [sym_identifier] = ACTIONS(1285), [aux_sym_preproc_include_token1] = ACTIONS(1285), [aux_sym_preproc_def_token1] = ACTIONS(1285), @@ -29138,9 +30489,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___read_mostly] = ACTIONS(1285), [anon_sym___must_hold] = ACTIONS(1285), [anon_sym___ro_after_init] = ACTIONS(1285), - [anon_sym___init] = ACTIONS(1285), + [anon_sym___noreturn] = ACTIONS(1285), + [anon_sym___cold] = ACTIONS(1285), [anon_sym_LBRACK_LBRACK] = ACTIONS(1287), [anon_sym___declspec] = ACTIONS(1285), + [anon_sym___init] = ACTIONS(1285), + [anon_sym___exit] = ACTIONS(1285), [anon_sym___cdecl] = ACTIONS(1285), [anon_sym___clrcall] = ACTIONS(1285), [anon_sym___stdcall] = ACTIONS(1285), @@ -29176,6 +30530,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(1285), [anon_sym_union] = ACTIONS(1285), [anon_sym_if] = ACTIONS(1285), + [anon_sym_else] = ACTIONS(1285), [anon_sym_switch] = ACTIONS(1285), [anon_sym_case] = ACTIONS(1285), [anon_sym_default] = ACTIONS(1285), @@ -29217,7 +30572,120 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1285), [sym_comment] = ACTIONS(3), }, - [118] = { + [121] = { + [sym_identifier] = ACTIONS(1203), + [aux_sym_preproc_include_token1] = ACTIONS(1203), + [aux_sym_preproc_def_token1] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1203), + [aux_sym_preproc_if_token2] = ACTIONS(1203), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1203), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1203), + [aux_sym_preproc_else_token1] = ACTIONS(1203), + [aux_sym_preproc_elif_token1] = ACTIONS(1203), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1203), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1203), + [sym_preproc_directive] = ACTIONS(1203), + [anon_sym_LPAREN2] = ACTIONS(1201), + [anon_sym_BANG] = ACTIONS(1201), + [anon_sym_TILDE] = ACTIONS(1201), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_STAR] = ACTIONS(1201), + [anon_sym_AMP] = ACTIONS(1201), + [anon_sym_SEMI] = ACTIONS(1201), + [anon_sym___extension__] = ACTIONS(1203), + [anon_sym_typedef] = ACTIONS(1203), + [anon_sym_extern] = ACTIONS(1203), + [anon_sym___attribute__] = ACTIONS(1203), + [anon_sym___scanf] = ACTIONS(1203), + [anon_sym___printf] = ACTIONS(1203), + [anon_sym___read_mostly] = ACTIONS(1203), + [anon_sym___must_hold] = ACTIONS(1203), + [anon_sym___ro_after_init] = ACTIONS(1203), + [anon_sym___noreturn] = ACTIONS(1203), + [anon_sym___cold] = ACTIONS(1203), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1201), + [anon_sym___declspec] = ACTIONS(1203), + [anon_sym___init] = ACTIONS(1203), + [anon_sym___exit] = ACTIONS(1203), + [anon_sym___cdecl] = ACTIONS(1203), + [anon_sym___clrcall] = ACTIONS(1203), + [anon_sym___stdcall] = ACTIONS(1203), + [anon_sym___fastcall] = ACTIONS(1203), + [anon_sym___thiscall] = ACTIONS(1203), + [anon_sym___vectorcall] = ACTIONS(1203), + [anon_sym_LBRACE] = ACTIONS(1201), + [anon_sym_signed] = ACTIONS(1203), + [anon_sym_unsigned] = ACTIONS(1203), + [anon_sym_long] = ACTIONS(1203), + [anon_sym_short] = ACTIONS(1203), + [anon_sym_static] = ACTIONS(1203), + [anon_sym_auto] = ACTIONS(1203), + [anon_sym_register] = ACTIONS(1203), + [anon_sym_inline] = ACTIONS(1203), + [anon_sym___inline] = ACTIONS(1203), + [anon_sym___inline__] = ACTIONS(1203), + [anon_sym___forceinline] = ACTIONS(1203), + [anon_sym_thread_local] = ACTIONS(1203), + [anon_sym___thread] = ACTIONS(1203), + [anon_sym_const] = ACTIONS(1203), + [anon_sym_constexpr] = ACTIONS(1203), + [anon_sym_volatile] = ACTIONS(1203), + [anon_sym_restrict] = ACTIONS(1203), + [anon_sym___restrict__] = ACTIONS(1203), + [anon_sym__Atomic] = ACTIONS(1203), + [anon_sym__Noreturn] = ACTIONS(1203), + [anon_sym_noreturn] = ACTIONS(1203), + [anon_sym_alignas] = ACTIONS(1203), + [anon_sym__Alignas] = ACTIONS(1203), + [sym_primitive_type] = ACTIONS(1203), + [anon_sym_enum] = ACTIONS(1203), + [anon_sym_struct] = ACTIONS(1203), + [anon_sym_union] = ACTIONS(1203), + [anon_sym_if] = ACTIONS(1203), + [anon_sym_else] = ACTIONS(1203), + [anon_sym_switch] = ACTIONS(1203), + [anon_sym_case] = ACTIONS(1203), + [anon_sym_default] = ACTIONS(1203), + [anon_sym_while] = ACTIONS(1203), + [anon_sym_do] = ACTIONS(1203), + [anon_sym_for] = ACTIONS(1203), + [anon_sym_return] = ACTIONS(1203), + [anon_sym_break] = ACTIONS(1203), + [anon_sym_continue] = ACTIONS(1203), + [anon_sym_goto] = ACTIONS(1203), + [anon_sym___try] = ACTIONS(1203), + [anon_sym___leave] = ACTIONS(1203), + [anon_sym_DASH_DASH] = ACTIONS(1201), + [anon_sym_PLUS_PLUS] = ACTIONS(1201), + [anon_sym_sizeof] = ACTIONS(1203), + [anon_sym___alignof__] = ACTIONS(1203), + [anon_sym___alignof] = ACTIONS(1203), + [anon_sym__alignof] = ACTIONS(1203), + [anon_sym_alignof] = ACTIONS(1203), + [anon_sym__Alignof] = ACTIONS(1203), + [anon_sym_offsetof] = ACTIONS(1203), + [anon_sym__Generic] = ACTIONS(1203), + [anon_sym_asm] = ACTIONS(1203), + [anon_sym___asm__] = ACTIONS(1203), + [sym_number_literal] = ACTIONS(1201), + [anon_sym_L_SQUOTE] = ACTIONS(1201), + [anon_sym_u_SQUOTE] = ACTIONS(1201), + [anon_sym_U_SQUOTE] = ACTIONS(1201), + [anon_sym_u8_SQUOTE] = ACTIONS(1201), + [anon_sym_SQUOTE] = ACTIONS(1201), + [anon_sym_L_DQUOTE] = ACTIONS(1201), + [anon_sym_u_DQUOTE] = ACTIONS(1201), + [anon_sym_U_DQUOTE] = ACTIONS(1201), + [anon_sym_u8_DQUOTE] = ACTIONS(1201), + [anon_sym_DQUOTE] = ACTIONS(1201), + [sym_true] = ACTIONS(1203), + [sym_false] = ACTIONS(1203), + [anon_sym_NULL] = ACTIONS(1203), + [anon_sym_nullptr] = ACTIONS(1203), + [sym_comment] = ACTIONS(3), + }, + [122] = { [sym_identifier] = ACTIONS(1289), [aux_sym_preproc_include_token1] = ACTIONS(1289), [aux_sym_preproc_def_token1] = ACTIONS(1289), @@ -29230,14 +30698,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_elifdef_token1] = ACTIONS(1289), [aux_sym_preproc_elifdef_token2] = ACTIONS(1289), [sym_preproc_directive] = ACTIONS(1289), - [anon_sym_LPAREN2] = ACTIONS(1292), - [anon_sym_BANG] = ACTIONS(1292), - [anon_sym_TILDE] = ACTIONS(1292), + [anon_sym_LPAREN2] = ACTIONS(1291), + [anon_sym_BANG] = ACTIONS(1291), + [anon_sym_TILDE] = ACTIONS(1291), [anon_sym_DASH] = ACTIONS(1289), [anon_sym_PLUS] = ACTIONS(1289), - [anon_sym_STAR] = ACTIONS(1292), - [anon_sym_AMP] = ACTIONS(1292), - [anon_sym_SEMI] = ACTIONS(1292), + [anon_sym_STAR] = ACTIONS(1291), + [anon_sym_AMP] = ACTIONS(1291), + [anon_sym_SEMI] = ACTIONS(1291), [anon_sym___extension__] = ACTIONS(1289), [anon_sym_typedef] = ACTIONS(1289), [anon_sym_extern] = ACTIONS(1289), @@ -29247,16 +30715,3491 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___read_mostly] = ACTIONS(1289), [anon_sym___must_hold] = ACTIONS(1289), [anon_sym___ro_after_init] = ACTIONS(1289), + [anon_sym___noreturn] = ACTIONS(1289), + [anon_sym___cold] = ACTIONS(1289), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1291), + [anon_sym___declspec] = ACTIONS(1289), [anon_sym___init] = ACTIONS(1289), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1292), + [anon_sym___exit] = ACTIONS(1289), + [anon_sym___cdecl] = ACTIONS(1289), + [anon_sym___clrcall] = ACTIONS(1289), + [anon_sym___stdcall] = ACTIONS(1289), + [anon_sym___fastcall] = ACTIONS(1289), + [anon_sym___thiscall] = ACTIONS(1289), + [anon_sym___vectorcall] = ACTIONS(1289), + [anon_sym_LBRACE] = ACTIONS(1291), + [anon_sym_signed] = ACTIONS(1289), + [anon_sym_unsigned] = ACTIONS(1289), + [anon_sym_long] = ACTIONS(1289), + [anon_sym_short] = ACTIONS(1289), + [anon_sym_static] = ACTIONS(1289), + [anon_sym_auto] = ACTIONS(1289), + [anon_sym_register] = ACTIONS(1289), + [anon_sym_inline] = ACTIONS(1289), + [anon_sym___inline] = ACTIONS(1289), + [anon_sym___inline__] = ACTIONS(1289), + [anon_sym___forceinline] = ACTIONS(1289), + [anon_sym_thread_local] = ACTIONS(1289), + [anon_sym___thread] = ACTIONS(1289), + [anon_sym_const] = ACTIONS(1289), + [anon_sym_constexpr] = ACTIONS(1289), + [anon_sym_volatile] = ACTIONS(1289), + [anon_sym_restrict] = ACTIONS(1289), + [anon_sym___restrict__] = ACTIONS(1289), + [anon_sym__Atomic] = ACTIONS(1289), + [anon_sym__Noreturn] = ACTIONS(1289), + [anon_sym_noreturn] = ACTIONS(1289), + [anon_sym_alignas] = ACTIONS(1289), + [anon_sym__Alignas] = ACTIONS(1289), + [sym_primitive_type] = ACTIONS(1289), + [anon_sym_enum] = ACTIONS(1289), + [anon_sym_struct] = ACTIONS(1289), + [anon_sym_union] = ACTIONS(1289), + [anon_sym_if] = ACTIONS(1289), + [anon_sym_switch] = ACTIONS(1289), + [anon_sym_case] = ACTIONS(1289), + [anon_sym_default] = ACTIONS(1289), + [anon_sym_while] = ACTIONS(1289), + [anon_sym_do] = ACTIONS(1289), + [anon_sym_for] = ACTIONS(1289), + [anon_sym_return] = ACTIONS(1289), + [anon_sym_break] = ACTIONS(1289), + [anon_sym_continue] = ACTIONS(1289), + [anon_sym_goto] = ACTIONS(1289), + [anon_sym___try] = ACTIONS(1289), + [anon_sym___leave] = ACTIONS(1289), + [anon_sym_DASH_DASH] = ACTIONS(1291), + [anon_sym_PLUS_PLUS] = ACTIONS(1291), + [anon_sym_sizeof] = ACTIONS(1289), + [anon_sym___alignof__] = ACTIONS(1289), + [anon_sym___alignof] = ACTIONS(1289), + [anon_sym__alignof] = ACTIONS(1289), + [anon_sym_alignof] = ACTIONS(1289), + [anon_sym__Alignof] = ACTIONS(1289), + [anon_sym_offsetof] = ACTIONS(1289), + [anon_sym__Generic] = ACTIONS(1289), + [anon_sym_asm] = ACTIONS(1289), + [anon_sym___asm__] = ACTIONS(1289), + [sym_number_literal] = ACTIONS(1291), + [anon_sym_L_SQUOTE] = ACTIONS(1291), + [anon_sym_u_SQUOTE] = ACTIONS(1291), + [anon_sym_U_SQUOTE] = ACTIONS(1291), + [anon_sym_u8_SQUOTE] = ACTIONS(1291), + [anon_sym_SQUOTE] = ACTIONS(1291), + [anon_sym_L_DQUOTE] = ACTIONS(1291), + [anon_sym_u_DQUOTE] = ACTIONS(1291), + [anon_sym_U_DQUOTE] = ACTIONS(1291), + [anon_sym_u8_DQUOTE] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1291), + [sym_true] = ACTIONS(1289), + [sym_false] = ACTIONS(1289), + [anon_sym_NULL] = ACTIONS(1289), + [anon_sym_nullptr] = ACTIONS(1289), + [sym_comment] = ACTIONS(3), + }, + [123] = { + [sym_identifier] = ACTIONS(1293), + [aux_sym_preproc_include_token1] = ACTIONS(1293), + [aux_sym_preproc_def_token1] = ACTIONS(1293), + [aux_sym_preproc_if_token1] = ACTIONS(1293), + [aux_sym_preproc_if_token2] = ACTIONS(1293), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1293), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1293), + [aux_sym_preproc_else_token1] = ACTIONS(1293), + [aux_sym_preproc_elif_token1] = ACTIONS(1293), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1293), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1293), + [sym_preproc_directive] = ACTIONS(1293), + [anon_sym_LPAREN2] = ACTIONS(1295), + [anon_sym_BANG] = ACTIONS(1295), + [anon_sym_TILDE] = ACTIONS(1295), + [anon_sym_DASH] = ACTIONS(1293), + [anon_sym_PLUS] = ACTIONS(1293), + [anon_sym_STAR] = ACTIONS(1295), + [anon_sym_AMP] = ACTIONS(1295), + [anon_sym_SEMI] = ACTIONS(1295), + [anon_sym___extension__] = ACTIONS(1293), + [anon_sym_typedef] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1293), + [anon_sym___attribute__] = ACTIONS(1293), + [anon_sym___scanf] = ACTIONS(1293), + [anon_sym___printf] = ACTIONS(1293), + [anon_sym___read_mostly] = ACTIONS(1293), + [anon_sym___must_hold] = ACTIONS(1293), + [anon_sym___ro_after_init] = ACTIONS(1293), + [anon_sym___noreturn] = ACTIONS(1293), + [anon_sym___cold] = ACTIONS(1293), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1295), + [anon_sym___declspec] = ACTIONS(1293), + [anon_sym___init] = ACTIONS(1293), + [anon_sym___exit] = ACTIONS(1293), + [anon_sym___cdecl] = ACTIONS(1293), + [anon_sym___clrcall] = ACTIONS(1293), + [anon_sym___stdcall] = ACTIONS(1293), + [anon_sym___fastcall] = ACTIONS(1293), + [anon_sym___thiscall] = ACTIONS(1293), + [anon_sym___vectorcall] = ACTIONS(1293), + [anon_sym_LBRACE] = ACTIONS(1295), + [anon_sym_signed] = ACTIONS(1293), + [anon_sym_unsigned] = ACTIONS(1293), + [anon_sym_long] = ACTIONS(1293), + [anon_sym_short] = ACTIONS(1293), + [anon_sym_static] = ACTIONS(1293), + [anon_sym_auto] = ACTIONS(1293), + [anon_sym_register] = ACTIONS(1293), + [anon_sym_inline] = ACTIONS(1293), + [anon_sym___inline] = ACTIONS(1293), + [anon_sym___inline__] = ACTIONS(1293), + [anon_sym___forceinline] = ACTIONS(1293), + [anon_sym_thread_local] = ACTIONS(1293), + [anon_sym___thread] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1293), + [anon_sym_constexpr] = ACTIONS(1293), + [anon_sym_volatile] = ACTIONS(1293), + [anon_sym_restrict] = ACTIONS(1293), + [anon_sym___restrict__] = ACTIONS(1293), + [anon_sym__Atomic] = ACTIONS(1293), + [anon_sym__Noreturn] = ACTIONS(1293), + [anon_sym_noreturn] = ACTIONS(1293), + [anon_sym_alignas] = ACTIONS(1293), + [anon_sym__Alignas] = ACTIONS(1293), + [sym_primitive_type] = ACTIONS(1293), + [anon_sym_enum] = ACTIONS(1293), + [anon_sym_struct] = ACTIONS(1293), + [anon_sym_union] = ACTIONS(1293), + [anon_sym_if] = ACTIONS(1293), + [anon_sym_switch] = ACTIONS(1293), + [anon_sym_case] = ACTIONS(1293), + [anon_sym_default] = ACTIONS(1293), + [anon_sym_while] = ACTIONS(1293), + [anon_sym_do] = ACTIONS(1293), + [anon_sym_for] = ACTIONS(1293), + [anon_sym_return] = ACTIONS(1293), + [anon_sym_break] = ACTIONS(1293), + [anon_sym_continue] = ACTIONS(1293), + [anon_sym_goto] = ACTIONS(1293), + [anon_sym___try] = ACTIONS(1293), + [anon_sym___leave] = ACTIONS(1293), + [anon_sym_DASH_DASH] = ACTIONS(1295), + [anon_sym_PLUS_PLUS] = ACTIONS(1295), + [anon_sym_sizeof] = ACTIONS(1293), + [anon_sym___alignof__] = ACTIONS(1293), + [anon_sym___alignof] = ACTIONS(1293), + [anon_sym__alignof] = ACTIONS(1293), + [anon_sym_alignof] = ACTIONS(1293), + [anon_sym__Alignof] = ACTIONS(1293), + [anon_sym_offsetof] = ACTIONS(1293), + [anon_sym__Generic] = ACTIONS(1293), + [anon_sym_asm] = ACTIONS(1293), + [anon_sym___asm__] = ACTIONS(1293), + [sym_number_literal] = ACTIONS(1295), + [anon_sym_L_SQUOTE] = ACTIONS(1295), + [anon_sym_u_SQUOTE] = ACTIONS(1295), + [anon_sym_U_SQUOTE] = ACTIONS(1295), + [anon_sym_u8_SQUOTE] = ACTIONS(1295), + [anon_sym_SQUOTE] = ACTIONS(1295), + [anon_sym_L_DQUOTE] = ACTIONS(1295), + [anon_sym_u_DQUOTE] = ACTIONS(1295), + [anon_sym_U_DQUOTE] = ACTIONS(1295), + [anon_sym_u8_DQUOTE] = ACTIONS(1295), + [anon_sym_DQUOTE] = ACTIONS(1295), + [sym_true] = ACTIONS(1293), + [sym_false] = ACTIONS(1293), + [anon_sym_NULL] = ACTIONS(1293), + [anon_sym_nullptr] = ACTIONS(1293), + [sym_comment] = ACTIONS(3), + }, + [124] = { + [sym_identifier] = ACTIONS(1297), + [aux_sym_preproc_include_token1] = ACTIONS(1297), + [aux_sym_preproc_def_token1] = ACTIONS(1297), + [aux_sym_preproc_if_token1] = ACTIONS(1297), + [aux_sym_preproc_if_token2] = ACTIONS(1297), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1297), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1297), + [aux_sym_preproc_else_token1] = ACTIONS(1297), + [aux_sym_preproc_elif_token1] = ACTIONS(1297), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1297), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1297), + [sym_preproc_directive] = ACTIONS(1297), + [anon_sym_LPAREN2] = ACTIONS(1299), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_TILDE] = ACTIONS(1299), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_STAR] = ACTIONS(1299), + [anon_sym_AMP] = ACTIONS(1299), + [anon_sym_SEMI] = ACTIONS(1299), + [anon_sym___extension__] = ACTIONS(1297), + [anon_sym_typedef] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1297), + [anon_sym___attribute__] = ACTIONS(1297), + [anon_sym___scanf] = ACTIONS(1297), + [anon_sym___printf] = ACTIONS(1297), + [anon_sym___read_mostly] = ACTIONS(1297), + [anon_sym___must_hold] = ACTIONS(1297), + [anon_sym___ro_after_init] = ACTIONS(1297), + [anon_sym___noreturn] = ACTIONS(1297), + [anon_sym___cold] = ACTIONS(1297), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1299), + [anon_sym___declspec] = ACTIONS(1297), + [anon_sym___init] = ACTIONS(1297), + [anon_sym___exit] = ACTIONS(1297), + [anon_sym___cdecl] = ACTIONS(1297), + [anon_sym___clrcall] = ACTIONS(1297), + [anon_sym___stdcall] = ACTIONS(1297), + [anon_sym___fastcall] = ACTIONS(1297), + [anon_sym___thiscall] = ACTIONS(1297), + [anon_sym___vectorcall] = ACTIONS(1297), + [anon_sym_LBRACE] = ACTIONS(1299), + [anon_sym_signed] = ACTIONS(1297), + [anon_sym_unsigned] = ACTIONS(1297), + [anon_sym_long] = ACTIONS(1297), + [anon_sym_short] = ACTIONS(1297), + [anon_sym_static] = ACTIONS(1297), + [anon_sym_auto] = ACTIONS(1297), + [anon_sym_register] = ACTIONS(1297), + [anon_sym_inline] = ACTIONS(1297), + [anon_sym___inline] = ACTIONS(1297), + [anon_sym___inline__] = ACTIONS(1297), + [anon_sym___forceinline] = ACTIONS(1297), + [anon_sym_thread_local] = ACTIONS(1297), + [anon_sym___thread] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1297), + [anon_sym_constexpr] = ACTIONS(1297), + [anon_sym_volatile] = ACTIONS(1297), + [anon_sym_restrict] = ACTIONS(1297), + [anon_sym___restrict__] = ACTIONS(1297), + [anon_sym__Atomic] = ACTIONS(1297), + [anon_sym__Noreturn] = ACTIONS(1297), + [anon_sym_noreturn] = ACTIONS(1297), + [anon_sym_alignas] = ACTIONS(1297), + [anon_sym__Alignas] = ACTIONS(1297), + [sym_primitive_type] = ACTIONS(1297), + [anon_sym_enum] = ACTIONS(1297), + [anon_sym_struct] = ACTIONS(1297), + [anon_sym_union] = ACTIONS(1297), + [anon_sym_if] = ACTIONS(1297), + [anon_sym_switch] = ACTIONS(1297), + [anon_sym_case] = ACTIONS(1297), + [anon_sym_default] = ACTIONS(1297), + [anon_sym_while] = ACTIONS(1297), + [anon_sym_do] = ACTIONS(1297), + [anon_sym_for] = ACTIONS(1297), + [anon_sym_return] = ACTIONS(1297), + [anon_sym_break] = ACTIONS(1297), + [anon_sym_continue] = ACTIONS(1297), + [anon_sym_goto] = ACTIONS(1297), + [anon_sym___try] = ACTIONS(1297), + [anon_sym___leave] = ACTIONS(1297), + [anon_sym_DASH_DASH] = ACTIONS(1299), + [anon_sym_PLUS_PLUS] = ACTIONS(1299), + [anon_sym_sizeof] = ACTIONS(1297), + [anon_sym___alignof__] = ACTIONS(1297), + [anon_sym___alignof] = ACTIONS(1297), + [anon_sym__alignof] = ACTIONS(1297), + [anon_sym_alignof] = ACTIONS(1297), + [anon_sym__Alignof] = ACTIONS(1297), + [anon_sym_offsetof] = ACTIONS(1297), + [anon_sym__Generic] = ACTIONS(1297), + [anon_sym_asm] = ACTIONS(1297), + [anon_sym___asm__] = ACTIONS(1297), + [sym_number_literal] = ACTIONS(1299), + [anon_sym_L_SQUOTE] = ACTIONS(1299), + [anon_sym_u_SQUOTE] = ACTIONS(1299), + [anon_sym_U_SQUOTE] = ACTIONS(1299), + [anon_sym_u8_SQUOTE] = ACTIONS(1299), + [anon_sym_SQUOTE] = ACTIONS(1299), + [anon_sym_L_DQUOTE] = ACTIONS(1299), + [anon_sym_u_DQUOTE] = ACTIONS(1299), + [anon_sym_U_DQUOTE] = ACTIONS(1299), + [anon_sym_u8_DQUOTE] = ACTIONS(1299), + [anon_sym_DQUOTE] = ACTIONS(1299), + [sym_true] = ACTIONS(1297), + [sym_false] = ACTIONS(1297), + [anon_sym_NULL] = ACTIONS(1297), + [anon_sym_nullptr] = ACTIONS(1297), + [sym_comment] = ACTIONS(3), + }, + [125] = { + [sym_identifier] = ACTIONS(1301), + [aux_sym_preproc_include_token1] = ACTIONS(1301), + [aux_sym_preproc_def_token1] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1301), + [aux_sym_preproc_if_token2] = ACTIONS(1301), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1301), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1301), + [aux_sym_preproc_else_token1] = ACTIONS(1301), + [aux_sym_preproc_elif_token1] = ACTIONS(1301), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1301), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1301), + [sym_preproc_directive] = ACTIONS(1301), + [anon_sym_LPAREN2] = ACTIONS(1303), + [anon_sym_BANG] = ACTIONS(1303), + [anon_sym_TILDE] = ACTIONS(1303), + [anon_sym_DASH] = ACTIONS(1301), + [anon_sym_PLUS] = ACTIONS(1301), + [anon_sym_STAR] = ACTIONS(1303), + [anon_sym_AMP] = ACTIONS(1303), + [anon_sym_SEMI] = ACTIONS(1303), + [anon_sym___extension__] = ACTIONS(1301), + [anon_sym_typedef] = ACTIONS(1301), + [anon_sym_extern] = ACTIONS(1301), + [anon_sym___attribute__] = ACTIONS(1301), + [anon_sym___scanf] = ACTIONS(1301), + [anon_sym___printf] = ACTIONS(1301), + [anon_sym___read_mostly] = ACTIONS(1301), + [anon_sym___must_hold] = ACTIONS(1301), + [anon_sym___ro_after_init] = ACTIONS(1301), + [anon_sym___noreturn] = ACTIONS(1301), + [anon_sym___cold] = ACTIONS(1301), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1303), + [anon_sym___declspec] = ACTIONS(1301), + [anon_sym___init] = ACTIONS(1301), + [anon_sym___exit] = ACTIONS(1301), + [anon_sym___cdecl] = ACTIONS(1301), + [anon_sym___clrcall] = ACTIONS(1301), + [anon_sym___stdcall] = ACTIONS(1301), + [anon_sym___fastcall] = ACTIONS(1301), + [anon_sym___thiscall] = ACTIONS(1301), + [anon_sym___vectorcall] = ACTIONS(1301), + [anon_sym_LBRACE] = ACTIONS(1303), + [anon_sym_signed] = ACTIONS(1301), + [anon_sym_unsigned] = ACTIONS(1301), + [anon_sym_long] = ACTIONS(1301), + [anon_sym_short] = ACTIONS(1301), + [anon_sym_static] = ACTIONS(1301), + [anon_sym_auto] = ACTIONS(1301), + [anon_sym_register] = ACTIONS(1301), + [anon_sym_inline] = ACTIONS(1301), + [anon_sym___inline] = ACTIONS(1301), + [anon_sym___inline__] = ACTIONS(1301), + [anon_sym___forceinline] = ACTIONS(1301), + [anon_sym_thread_local] = ACTIONS(1301), + [anon_sym___thread] = ACTIONS(1301), + [anon_sym_const] = ACTIONS(1301), + [anon_sym_constexpr] = ACTIONS(1301), + [anon_sym_volatile] = ACTIONS(1301), + [anon_sym_restrict] = ACTIONS(1301), + [anon_sym___restrict__] = ACTIONS(1301), + [anon_sym__Atomic] = ACTIONS(1301), + [anon_sym__Noreturn] = ACTIONS(1301), + [anon_sym_noreturn] = ACTIONS(1301), + [anon_sym_alignas] = ACTIONS(1301), + [anon_sym__Alignas] = ACTIONS(1301), + [sym_primitive_type] = ACTIONS(1301), + [anon_sym_enum] = ACTIONS(1301), + [anon_sym_struct] = ACTIONS(1301), + [anon_sym_union] = ACTIONS(1301), + [anon_sym_if] = ACTIONS(1301), + [anon_sym_switch] = ACTIONS(1301), + [anon_sym_case] = ACTIONS(1301), + [anon_sym_default] = ACTIONS(1301), + [anon_sym_while] = ACTIONS(1301), + [anon_sym_do] = ACTIONS(1301), + [anon_sym_for] = ACTIONS(1301), + [anon_sym_return] = ACTIONS(1301), + [anon_sym_break] = ACTIONS(1301), + [anon_sym_continue] = ACTIONS(1301), + [anon_sym_goto] = ACTIONS(1301), + [anon_sym___try] = ACTIONS(1301), + [anon_sym___leave] = ACTIONS(1301), + [anon_sym_DASH_DASH] = ACTIONS(1303), + [anon_sym_PLUS_PLUS] = ACTIONS(1303), + [anon_sym_sizeof] = ACTIONS(1301), + [anon_sym___alignof__] = ACTIONS(1301), + [anon_sym___alignof] = ACTIONS(1301), + [anon_sym__alignof] = ACTIONS(1301), + [anon_sym_alignof] = ACTIONS(1301), + [anon_sym__Alignof] = ACTIONS(1301), + [anon_sym_offsetof] = ACTIONS(1301), + [anon_sym__Generic] = ACTIONS(1301), + [anon_sym_asm] = ACTIONS(1301), + [anon_sym___asm__] = ACTIONS(1301), + [sym_number_literal] = ACTIONS(1303), + [anon_sym_L_SQUOTE] = ACTIONS(1303), + [anon_sym_u_SQUOTE] = ACTIONS(1303), + [anon_sym_U_SQUOTE] = ACTIONS(1303), + [anon_sym_u8_SQUOTE] = ACTIONS(1303), + [anon_sym_SQUOTE] = ACTIONS(1303), + [anon_sym_L_DQUOTE] = ACTIONS(1303), + [anon_sym_u_DQUOTE] = ACTIONS(1303), + [anon_sym_U_DQUOTE] = ACTIONS(1303), + [anon_sym_u8_DQUOTE] = ACTIONS(1303), + [anon_sym_DQUOTE] = ACTIONS(1303), + [sym_true] = ACTIONS(1301), + [sym_false] = ACTIONS(1301), + [anon_sym_NULL] = ACTIONS(1301), + [anon_sym_nullptr] = ACTIONS(1301), + [sym_comment] = ACTIONS(3), + }, + [126] = { + [sym_identifier] = ACTIONS(1305), + [aux_sym_preproc_include_token1] = ACTIONS(1305), + [aux_sym_preproc_def_token1] = ACTIONS(1305), + [aux_sym_preproc_if_token1] = ACTIONS(1305), + [aux_sym_preproc_if_token2] = ACTIONS(1305), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1305), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1305), + [aux_sym_preproc_else_token1] = ACTIONS(1305), + [aux_sym_preproc_elif_token1] = ACTIONS(1305), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1305), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1305), + [sym_preproc_directive] = ACTIONS(1305), + [anon_sym_LPAREN2] = ACTIONS(1307), + [anon_sym_BANG] = ACTIONS(1307), + [anon_sym_TILDE] = ACTIONS(1307), + [anon_sym_DASH] = ACTIONS(1305), + [anon_sym_PLUS] = ACTIONS(1305), + [anon_sym_STAR] = ACTIONS(1307), + [anon_sym_AMP] = ACTIONS(1307), + [anon_sym_SEMI] = ACTIONS(1307), + [anon_sym___extension__] = ACTIONS(1305), + [anon_sym_typedef] = ACTIONS(1305), + [anon_sym_extern] = ACTIONS(1305), + [anon_sym___attribute__] = ACTIONS(1305), + [anon_sym___scanf] = ACTIONS(1305), + [anon_sym___printf] = ACTIONS(1305), + [anon_sym___read_mostly] = ACTIONS(1305), + [anon_sym___must_hold] = ACTIONS(1305), + [anon_sym___ro_after_init] = ACTIONS(1305), + [anon_sym___noreturn] = ACTIONS(1305), + [anon_sym___cold] = ACTIONS(1305), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1307), + [anon_sym___declspec] = ACTIONS(1305), + [anon_sym___init] = ACTIONS(1305), + [anon_sym___exit] = ACTIONS(1305), + [anon_sym___cdecl] = ACTIONS(1305), + [anon_sym___clrcall] = ACTIONS(1305), + [anon_sym___stdcall] = ACTIONS(1305), + [anon_sym___fastcall] = ACTIONS(1305), + [anon_sym___thiscall] = ACTIONS(1305), + [anon_sym___vectorcall] = ACTIONS(1305), + [anon_sym_LBRACE] = ACTIONS(1307), + [anon_sym_signed] = ACTIONS(1305), + [anon_sym_unsigned] = ACTIONS(1305), + [anon_sym_long] = ACTIONS(1305), + [anon_sym_short] = ACTIONS(1305), + [anon_sym_static] = ACTIONS(1305), + [anon_sym_auto] = ACTIONS(1305), + [anon_sym_register] = ACTIONS(1305), + [anon_sym_inline] = ACTIONS(1305), + [anon_sym___inline] = ACTIONS(1305), + [anon_sym___inline__] = ACTIONS(1305), + [anon_sym___forceinline] = ACTIONS(1305), + [anon_sym_thread_local] = ACTIONS(1305), + [anon_sym___thread] = ACTIONS(1305), + [anon_sym_const] = ACTIONS(1305), + [anon_sym_constexpr] = ACTIONS(1305), + [anon_sym_volatile] = ACTIONS(1305), + [anon_sym_restrict] = ACTIONS(1305), + [anon_sym___restrict__] = ACTIONS(1305), + [anon_sym__Atomic] = ACTIONS(1305), + [anon_sym__Noreturn] = ACTIONS(1305), + [anon_sym_noreturn] = ACTIONS(1305), + [anon_sym_alignas] = ACTIONS(1305), + [anon_sym__Alignas] = ACTIONS(1305), + [sym_primitive_type] = ACTIONS(1305), + [anon_sym_enum] = ACTIONS(1305), + [anon_sym_struct] = ACTIONS(1305), + [anon_sym_union] = ACTIONS(1305), + [anon_sym_if] = ACTIONS(1305), + [anon_sym_switch] = ACTIONS(1305), + [anon_sym_case] = ACTIONS(1305), + [anon_sym_default] = ACTIONS(1305), + [anon_sym_while] = ACTIONS(1305), + [anon_sym_do] = ACTIONS(1305), + [anon_sym_for] = ACTIONS(1305), + [anon_sym_return] = ACTIONS(1305), + [anon_sym_break] = ACTIONS(1305), + [anon_sym_continue] = ACTIONS(1305), + [anon_sym_goto] = ACTIONS(1305), + [anon_sym___try] = ACTIONS(1305), + [anon_sym___leave] = ACTIONS(1305), + [anon_sym_DASH_DASH] = ACTIONS(1307), + [anon_sym_PLUS_PLUS] = ACTIONS(1307), + [anon_sym_sizeof] = ACTIONS(1305), + [anon_sym___alignof__] = ACTIONS(1305), + [anon_sym___alignof] = ACTIONS(1305), + [anon_sym__alignof] = ACTIONS(1305), + [anon_sym_alignof] = ACTIONS(1305), + [anon_sym__Alignof] = ACTIONS(1305), + [anon_sym_offsetof] = ACTIONS(1305), + [anon_sym__Generic] = ACTIONS(1305), + [anon_sym_asm] = ACTIONS(1305), + [anon_sym___asm__] = ACTIONS(1305), + [sym_number_literal] = ACTIONS(1307), + [anon_sym_L_SQUOTE] = ACTIONS(1307), + [anon_sym_u_SQUOTE] = ACTIONS(1307), + [anon_sym_U_SQUOTE] = ACTIONS(1307), + [anon_sym_u8_SQUOTE] = ACTIONS(1307), + [anon_sym_SQUOTE] = ACTIONS(1307), + [anon_sym_L_DQUOTE] = ACTIONS(1307), + [anon_sym_u_DQUOTE] = ACTIONS(1307), + [anon_sym_U_DQUOTE] = ACTIONS(1307), + [anon_sym_u8_DQUOTE] = ACTIONS(1307), + [anon_sym_DQUOTE] = ACTIONS(1307), + [sym_true] = ACTIONS(1305), + [sym_false] = ACTIONS(1305), + [anon_sym_NULL] = ACTIONS(1305), + [anon_sym_nullptr] = ACTIONS(1305), + [sym_comment] = ACTIONS(3), + }, + [127] = { + [sym_identifier] = ACTIONS(1309), + [aux_sym_preproc_include_token1] = ACTIONS(1309), + [aux_sym_preproc_def_token1] = ACTIONS(1309), + [aux_sym_preproc_if_token1] = ACTIONS(1309), + [aux_sym_preproc_if_token2] = ACTIONS(1309), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1309), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1309), + [aux_sym_preproc_else_token1] = ACTIONS(1309), + [aux_sym_preproc_elif_token1] = ACTIONS(1309), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1309), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1309), + [sym_preproc_directive] = ACTIONS(1309), + [anon_sym_LPAREN2] = ACTIONS(1311), + [anon_sym_BANG] = ACTIONS(1311), + [anon_sym_TILDE] = ACTIONS(1311), + [anon_sym_DASH] = ACTIONS(1309), + [anon_sym_PLUS] = ACTIONS(1309), + [anon_sym_STAR] = ACTIONS(1311), + [anon_sym_AMP] = ACTIONS(1311), + [anon_sym_SEMI] = ACTIONS(1311), + [anon_sym___extension__] = ACTIONS(1309), + [anon_sym_typedef] = ACTIONS(1309), + [anon_sym_extern] = ACTIONS(1309), + [anon_sym___attribute__] = ACTIONS(1309), + [anon_sym___scanf] = ACTIONS(1309), + [anon_sym___printf] = ACTIONS(1309), + [anon_sym___read_mostly] = ACTIONS(1309), + [anon_sym___must_hold] = ACTIONS(1309), + [anon_sym___ro_after_init] = ACTIONS(1309), + [anon_sym___noreturn] = ACTIONS(1309), + [anon_sym___cold] = ACTIONS(1309), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1311), + [anon_sym___declspec] = ACTIONS(1309), + [anon_sym___init] = ACTIONS(1309), + [anon_sym___exit] = ACTIONS(1309), + [anon_sym___cdecl] = ACTIONS(1309), + [anon_sym___clrcall] = ACTIONS(1309), + [anon_sym___stdcall] = ACTIONS(1309), + [anon_sym___fastcall] = ACTIONS(1309), + [anon_sym___thiscall] = ACTIONS(1309), + [anon_sym___vectorcall] = ACTIONS(1309), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_signed] = ACTIONS(1309), + [anon_sym_unsigned] = ACTIONS(1309), + [anon_sym_long] = ACTIONS(1309), + [anon_sym_short] = ACTIONS(1309), + [anon_sym_static] = ACTIONS(1309), + [anon_sym_auto] = ACTIONS(1309), + [anon_sym_register] = ACTIONS(1309), + [anon_sym_inline] = ACTIONS(1309), + [anon_sym___inline] = ACTIONS(1309), + [anon_sym___inline__] = ACTIONS(1309), + [anon_sym___forceinline] = ACTIONS(1309), + [anon_sym_thread_local] = ACTIONS(1309), + [anon_sym___thread] = ACTIONS(1309), + [anon_sym_const] = ACTIONS(1309), + [anon_sym_constexpr] = ACTIONS(1309), + [anon_sym_volatile] = ACTIONS(1309), + [anon_sym_restrict] = ACTIONS(1309), + [anon_sym___restrict__] = ACTIONS(1309), + [anon_sym__Atomic] = ACTIONS(1309), + [anon_sym__Noreturn] = ACTIONS(1309), + [anon_sym_noreturn] = ACTIONS(1309), + [anon_sym_alignas] = ACTIONS(1309), + [anon_sym__Alignas] = ACTIONS(1309), + [sym_primitive_type] = ACTIONS(1309), + [anon_sym_enum] = ACTIONS(1309), + [anon_sym_struct] = ACTIONS(1309), + [anon_sym_union] = ACTIONS(1309), + [anon_sym_if] = ACTIONS(1309), + [anon_sym_switch] = ACTIONS(1309), + [anon_sym_case] = ACTIONS(1309), + [anon_sym_default] = ACTIONS(1309), + [anon_sym_while] = ACTIONS(1309), + [anon_sym_do] = ACTIONS(1309), + [anon_sym_for] = ACTIONS(1309), + [anon_sym_return] = ACTIONS(1309), + [anon_sym_break] = ACTIONS(1309), + [anon_sym_continue] = ACTIONS(1309), + [anon_sym_goto] = ACTIONS(1309), + [anon_sym___try] = ACTIONS(1309), + [anon_sym___leave] = ACTIONS(1309), + [anon_sym_DASH_DASH] = ACTIONS(1311), + [anon_sym_PLUS_PLUS] = ACTIONS(1311), + [anon_sym_sizeof] = ACTIONS(1309), + [anon_sym___alignof__] = ACTIONS(1309), + [anon_sym___alignof] = ACTIONS(1309), + [anon_sym__alignof] = ACTIONS(1309), + [anon_sym_alignof] = ACTIONS(1309), + [anon_sym__Alignof] = ACTIONS(1309), + [anon_sym_offsetof] = ACTIONS(1309), + [anon_sym__Generic] = ACTIONS(1309), + [anon_sym_asm] = ACTIONS(1309), + [anon_sym___asm__] = ACTIONS(1309), + [sym_number_literal] = ACTIONS(1311), + [anon_sym_L_SQUOTE] = ACTIONS(1311), + [anon_sym_u_SQUOTE] = ACTIONS(1311), + [anon_sym_U_SQUOTE] = ACTIONS(1311), + [anon_sym_u8_SQUOTE] = ACTIONS(1311), + [anon_sym_SQUOTE] = ACTIONS(1311), + [anon_sym_L_DQUOTE] = ACTIONS(1311), + [anon_sym_u_DQUOTE] = ACTIONS(1311), + [anon_sym_U_DQUOTE] = ACTIONS(1311), + [anon_sym_u8_DQUOTE] = ACTIONS(1311), + [anon_sym_DQUOTE] = ACTIONS(1311), + [sym_true] = ACTIONS(1309), + [sym_false] = ACTIONS(1309), + [anon_sym_NULL] = ACTIONS(1309), + [anon_sym_nullptr] = ACTIONS(1309), + [sym_comment] = ACTIONS(3), + }, + [128] = { + [sym_identifier] = ACTIONS(1313), + [aux_sym_preproc_include_token1] = ACTIONS(1313), + [aux_sym_preproc_def_token1] = ACTIONS(1313), + [aux_sym_preproc_if_token1] = ACTIONS(1313), + [aux_sym_preproc_if_token2] = ACTIONS(1313), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1313), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1313), + [aux_sym_preproc_else_token1] = ACTIONS(1313), + [aux_sym_preproc_elif_token1] = ACTIONS(1313), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1313), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1313), + [sym_preproc_directive] = ACTIONS(1313), + [anon_sym_LPAREN2] = ACTIONS(1315), + [anon_sym_BANG] = ACTIONS(1315), + [anon_sym_TILDE] = ACTIONS(1315), + [anon_sym_DASH] = ACTIONS(1313), + [anon_sym_PLUS] = ACTIONS(1313), + [anon_sym_STAR] = ACTIONS(1315), + [anon_sym_AMP] = ACTIONS(1315), + [anon_sym_SEMI] = ACTIONS(1315), + [anon_sym___extension__] = ACTIONS(1313), + [anon_sym_typedef] = ACTIONS(1313), + [anon_sym_extern] = ACTIONS(1313), + [anon_sym___attribute__] = ACTIONS(1313), + [anon_sym___scanf] = ACTIONS(1313), + [anon_sym___printf] = ACTIONS(1313), + [anon_sym___read_mostly] = ACTIONS(1313), + [anon_sym___must_hold] = ACTIONS(1313), + [anon_sym___ro_after_init] = ACTIONS(1313), + [anon_sym___noreturn] = ACTIONS(1313), + [anon_sym___cold] = ACTIONS(1313), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1315), + [anon_sym___declspec] = ACTIONS(1313), + [anon_sym___init] = ACTIONS(1313), + [anon_sym___exit] = ACTIONS(1313), + [anon_sym___cdecl] = ACTIONS(1313), + [anon_sym___clrcall] = ACTIONS(1313), + [anon_sym___stdcall] = ACTIONS(1313), + [anon_sym___fastcall] = ACTIONS(1313), + [anon_sym___thiscall] = ACTIONS(1313), + [anon_sym___vectorcall] = ACTIONS(1313), + [anon_sym_LBRACE] = ACTIONS(1315), + [anon_sym_signed] = ACTIONS(1313), + [anon_sym_unsigned] = ACTIONS(1313), + [anon_sym_long] = ACTIONS(1313), + [anon_sym_short] = ACTIONS(1313), + [anon_sym_static] = ACTIONS(1313), + [anon_sym_auto] = ACTIONS(1313), + [anon_sym_register] = ACTIONS(1313), + [anon_sym_inline] = ACTIONS(1313), + [anon_sym___inline] = ACTIONS(1313), + [anon_sym___inline__] = ACTIONS(1313), + [anon_sym___forceinline] = ACTIONS(1313), + [anon_sym_thread_local] = ACTIONS(1313), + [anon_sym___thread] = ACTIONS(1313), + [anon_sym_const] = ACTIONS(1313), + [anon_sym_constexpr] = ACTIONS(1313), + [anon_sym_volatile] = ACTIONS(1313), + [anon_sym_restrict] = ACTIONS(1313), + [anon_sym___restrict__] = ACTIONS(1313), + [anon_sym__Atomic] = ACTIONS(1313), + [anon_sym__Noreturn] = ACTIONS(1313), + [anon_sym_noreturn] = ACTIONS(1313), + [anon_sym_alignas] = ACTIONS(1313), + [anon_sym__Alignas] = ACTIONS(1313), + [sym_primitive_type] = ACTIONS(1313), + [anon_sym_enum] = ACTIONS(1313), + [anon_sym_struct] = ACTIONS(1313), + [anon_sym_union] = ACTIONS(1313), + [anon_sym_if] = ACTIONS(1313), + [anon_sym_switch] = ACTIONS(1313), + [anon_sym_case] = ACTIONS(1313), + [anon_sym_default] = ACTIONS(1313), + [anon_sym_while] = ACTIONS(1313), + [anon_sym_do] = ACTIONS(1313), + [anon_sym_for] = ACTIONS(1313), + [anon_sym_return] = ACTIONS(1313), + [anon_sym_break] = ACTIONS(1313), + [anon_sym_continue] = ACTIONS(1313), + [anon_sym_goto] = ACTIONS(1313), + [anon_sym___try] = ACTIONS(1313), + [anon_sym___leave] = ACTIONS(1313), + [anon_sym_DASH_DASH] = ACTIONS(1315), + [anon_sym_PLUS_PLUS] = ACTIONS(1315), + [anon_sym_sizeof] = ACTIONS(1313), + [anon_sym___alignof__] = ACTIONS(1313), + [anon_sym___alignof] = ACTIONS(1313), + [anon_sym__alignof] = ACTIONS(1313), + [anon_sym_alignof] = ACTIONS(1313), + [anon_sym__Alignof] = ACTIONS(1313), + [anon_sym_offsetof] = ACTIONS(1313), + [anon_sym__Generic] = ACTIONS(1313), + [anon_sym_asm] = ACTIONS(1313), + [anon_sym___asm__] = ACTIONS(1313), + [sym_number_literal] = ACTIONS(1315), + [anon_sym_L_SQUOTE] = ACTIONS(1315), + [anon_sym_u_SQUOTE] = ACTIONS(1315), + [anon_sym_U_SQUOTE] = ACTIONS(1315), + [anon_sym_u8_SQUOTE] = ACTIONS(1315), + [anon_sym_SQUOTE] = ACTIONS(1315), + [anon_sym_L_DQUOTE] = ACTIONS(1315), + [anon_sym_u_DQUOTE] = ACTIONS(1315), + [anon_sym_U_DQUOTE] = ACTIONS(1315), + [anon_sym_u8_DQUOTE] = ACTIONS(1315), + [anon_sym_DQUOTE] = ACTIONS(1315), + [sym_true] = ACTIONS(1313), + [sym_false] = ACTIONS(1313), + [anon_sym_NULL] = ACTIONS(1313), + [anon_sym_nullptr] = ACTIONS(1313), + [sym_comment] = ACTIONS(3), + }, + [129] = { + [sym_identifier] = ACTIONS(1317), + [aux_sym_preproc_include_token1] = ACTIONS(1317), + [aux_sym_preproc_def_token1] = ACTIONS(1317), + [aux_sym_preproc_if_token1] = ACTIONS(1317), + [aux_sym_preproc_if_token2] = ACTIONS(1317), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1317), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1317), + [aux_sym_preproc_else_token1] = ACTIONS(1317), + [aux_sym_preproc_elif_token1] = ACTIONS(1317), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1317), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1317), + [sym_preproc_directive] = ACTIONS(1317), + [anon_sym_LPAREN2] = ACTIONS(1319), + [anon_sym_BANG] = ACTIONS(1319), + [anon_sym_TILDE] = ACTIONS(1319), + [anon_sym_DASH] = ACTIONS(1317), + [anon_sym_PLUS] = ACTIONS(1317), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(1319), + [anon_sym___extension__] = ACTIONS(1317), + [anon_sym_typedef] = ACTIONS(1317), + [anon_sym_extern] = ACTIONS(1317), + [anon_sym___attribute__] = ACTIONS(1317), + [anon_sym___scanf] = ACTIONS(1317), + [anon_sym___printf] = ACTIONS(1317), + [anon_sym___read_mostly] = ACTIONS(1317), + [anon_sym___must_hold] = ACTIONS(1317), + [anon_sym___ro_after_init] = ACTIONS(1317), + [anon_sym___noreturn] = ACTIONS(1317), + [anon_sym___cold] = ACTIONS(1317), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1319), + [anon_sym___declspec] = ACTIONS(1317), + [anon_sym___init] = ACTIONS(1317), + [anon_sym___exit] = ACTIONS(1317), + [anon_sym___cdecl] = ACTIONS(1317), + [anon_sym___clrcall] = ACTIONS(1317), + [anon_sym___stdcall] = ACTIONS(1317), + [anon_sym___fastcall] = ACTIONS(1317), + [anon_sym___thiscall] = ACTIONS(1317), + [anon_sym___vectorcall] = ACTIONS(1317), + [anon_sym_LBRACE] = ACTIONS(1319), + [anon_sym_signed] = ACTIONS(1317), + [anon_sym_unsigned] = ACTIONS(1317), + [anon_sym_long] = ACTIONS(1317), + [anon_sym_short] = ACTIONS(1317), + [anon_sym_static] = ACTIONS(1317), + [anon_sym_auto] = ACTIONS(1317), + [anon_sym_register] = ACTIONS(1317), + [anon_sym_inline] = ACTIONS(1317), + [anon_sym___inline] = ACTIONS(1317), + [anon_sym___inline__] = ACTIONS(1317), + [anon_sym___forceinline] = ACTIONS(1317), + [anon_sym_thread_local] = ACTIONS(1317), + [anon_sym___thread] = ACTIONS(1317), + [anon_sym_const] = ACTIONS(1317), + [anon_sym_constexpr] = ACTIONS(1317), + [anon_sym_volatile] = ACTIONS(1317), + [anon_sym_restrict] = ACTIONS(1317), + [anon_sym___restrict__] = ACTIONS(1317), + [anon_sym__Atomic] = ACTIONS(1317), + [anon_sym__Noreturn] = ACTIONS(1317), + [anon_sym_noreturn] = ACTIONS(1317), + [anon_sym_alignas] = ACTIONS(1317), + [anon_sym__Alignas] = ACTIONS(1317), + [sym_primitive_type] = ACTIONS(1317), + [anon_sym_enum] = ACTIONS(1317), + [anon_sym_struct] = ACTIONS(1317), + [anon_sym_union] = ACTIONS(1317), + [anon_sym_if] = ACTIONS(1317), + [anon_sym_switch] = ACTIONS(1317), + [anon_sym_case] = ACTIONS(1317), + [anon_sym_default] = ACTIONS(1317), + [anon_sym_while] = ACTIONS(1317), + [anon_sym_do] = ACTIONS(1317), + [anon_sym_for] = ACTIONS(1317), + [anon_sym_return] = ACTIONS(1317), + [anon_sym_break] = ACTIONS(1317), + [anon_sym_continue] = ACTIONS(1317), + [anon_sym_goto] = ACTIONS(1317), + [anon_sym___try] = ACTIONS(1317), + [anon_sym___leave] = ACTIONS(1317), + [anon_sym_DASH_DASH] = ACTIONS(1319), + [anon_sym_PLUS_PLUS] = ACTIONS(1319), + [anon_sym_sizeof] = ACTIONS(1317), + [anon_sym___alignof__] = ACTIONS(1317), + [anon_sym___alignof] = ACTIONS(1317), + [anon_sym__alignof] = ACTIONS(1317), + [anon_sym_alignof] = ACTIONS(1317), + [anon_sym__Alignof] = ACTIONS(1317), + [anon_sym_offsetof] = ACTIONS(1317), + [anon_sym__Generic] = ACTIONS(1317), + [anon_sym_asm] = ACTIONS(1317), + [anon_sym___asm__] = ACTIONS(1317), + [sym_number_literal] = ACTIONS(1319), + [anon_sym_L_SQUOTE] = ACTIONS(1319), + [anon_sym_u_SQUOTE] = ACTIONS(1319), + [anon_sym_U_SQUOTE] = ACTIONS(1319), + [anon_sym_u8_SQUOTE] = ACTIONS(1319), + [anon_sym_SQUOTE] = ACTIONS(1319), + [anon_sym_L_DQUOTE] = ACTIONS(1319), + [anon_sym_u_DQUOTE] = ACTIONS(1319), + [anon_sym_U_DQUOTE] = ACTIONS(1319), + [anon_sym_u8_DQUOTE] = ACTIONS(1319), + [anon_sym_DQUOTE] = ACTIONS(1319), + [sym_true] = ACTIONS(1317), + [sym_false] = ACTIONS(1317), + [anon_sym_NULL] = ACTIONS(1317), + [anon_sym_nullptr] = ACTIONS(1317), + [sym_comment] = ACTIONS(3), + }, + [130] = { + [sym_identifier] = ACTIONS(1321), + [aux_sym_preproc_include_token1] = ACTIONS(1321), + [aux_sym_preproc_def_token1] = ACTIONS(1321), + [aux_sym_preproc_if_token1] = ACTIONS(1321), + [aux_sym_preproc_if_token2] = ACTIONS(1321), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1321), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1321), + [aux_sym_preproc_else_token1] = ACTIONS(1321), + [aux_sym_preproc_elif_token1] = ACTIONS(1321), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1321), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1321), + [sym_preproc_directive] = ACTIONS(1321), + [anon_sym_LPAREN2] = ACTIONS(1323), + [anon_sym_BANG] = ACTIONS(1323), + [anon_sym_TILDE] = ACTIONS(1323), + [anon_sym_DASH] = ACTIONS(1321), + [anon_sym_PLUS] = ACTIONS(1321), + [anon_sym_STAR] = ACTIONS(1323), + [anon_sym_AMP] = ACTIONS(1323), + [anon_sym_SEMI] = ACTIONS(1323), + [anon_sym___extension__] = ACTIONS(1321), + [anon_sym_typedef] = ACTIONS(1321), + [anon_sym_extern] = ACTIONS(1321), + [anon_sym___attribute__] = ACTIONS(1321), + [anon_sym___scanf] = ACTIONS(1321), + [anon_sym___printf] = ACTIONS(1321), + [anon_sym___read_mostly] = ACTIONS(1321), + [anon_sym___must_hold] = ACTIONS(1321), + [anon_sym___ro_after_init] = ACTIONS(1321), + [anon_sym___noreturn] = ACTIONS(1321), + [anon_sym___cold] = ACTIONS(1321), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1323), + [anon_sym___declspec] = ACTIONS(1321), + [anon_sym___init] = ACTIONS(1321), + [anon_sym___exit] = ACTIONS(1321), + [anon_sym___cdecl] = ACTIONS(1321), + [anon_sym___clrcall] = ACTIONS(1321), + [anon_sym___stdcall] = ACTIONS(1321), + [anon_sym___fastcall] = ACTIONS(1321), + [anon_sym___thiscall] = ACTIONS(1321), + [anon_sym___vectorcall] = ACTIONS(1321), + [anon_sym_LBRACE] = ACTIONS(1323), + [anon_sym_signed] = ACTIONS(1321), + [anon_sym_unsigned] = ACTIONS(1321), + [anon_sym_long] = ACTIONS(1321), + [anon_sym_short] = ACTIONS(1321), + [anon_sym_static] = ACTIONS(1321), + [anon_sym_auto] = ACTIONS(1321), + [anon_sym_register] = ACTIONS(1321), + [anon_sym_inline] = ACTIONS(1321), + [anon_sym___inline] = ACTIONS(1321), + [anon_sym___inline__] = ACTIONS(1321), + [anon_sym___forceinline] = ACTIONS(1321), + [anon_sym_thread_local] = ACTIONS(1321), + [anon_sym___thread] = ACTIONS(1321), + [anon_sym_const] = ACTIONS(1321), + [anon_sym_constexpr] = ACTIONS(1321), + [anon_sym_volatile] = ACTIONS(1321), + [anon_sym_restrict] = ACTIONS(1321), + [anon_sym___restrict__] = ACTIONS(1321), + [anon_sym__Atomic] = ACTIONS(1321), + [anon_sym__Noreturn] = ACTIONS(1321), + [anon_sym_noreturn] = ACTIONS(1321), + [anon_sym_alignas] = ACTIONS(1321), + [anon_sym__Alignas] = ACTIONS(1321), + [sym_primitive_type] = ACTIONS(1321), + [anon_sym_enum] = ACTIONS(1321), + [anon_sym_struct] = ACTIONS(1321), + [anon_sym_union] = ACTIONS(1321), + [anon_sym_if] = ACTIONS(1321), + [anon_sym_switch] = ACTIONS(1321), + [anon_sym_case] = ACTIONS(1321), + [anon_sym_default] = ACTIONS(1321), + [anon_sym_while] = ACTIONS(1321), + [anon_sym_do] = ACTIONS(1321), + [anon_sym_for] = ACTIONS(1321), + [anon_sym_return] = ACTIONS(1321), + [anon_sym_break] = ACTIONS(1321), + [anon_sym_continue] = ACTIONS(1321), + [anon_sym_goto] = ACTIONS(1321), + [anon_sym___try] = ACTIONS(1321), + [anon_sym___leave] = ACTIONS(1321), + [anon_sym_DASH_DASH] = ACTIONS(1323), + [anon_sym_PLUS_PLUS] = ACTIONS(1323), + [anon_sym_sizeof] = ACTIONS(1321), + [anon_sym___alignof__] = ACTIONS(1321), + [anon_sym___alignof] = ACTIONS(1321), + [anon_sym__alignof] = ACTIONS(1321), + [anon_sym_alignof] = ACTIONS(1321), + [anon_sym__Alignof] = ACTIONS(1321), + [anon_sym_offsetof] = ACTIONS(1321), + [anon_sym__Generic] = ACTIONS(1321), + [anon_sym_asm] = ACTIONS(1321), + [anon_sym___asm__] = ACTIONS(1321), + [sym_number_literal] = ACTIONS(1323), + [anon_sym_L_SQUOTE] = ACTIONS(1323), + [anon_sym_u_SQUOTE] = ACTIONS(1323), + [anon_sym_U_SQUOTE] = ACTIONS(1323), + [anon_sym_u8_SQUOTE] = ACTIONS(1323), + [anon_sym_SQUOTE] = ACTIONS(1323), + [anon_sym_L_DQUOTE] = ACTIONS(1323), + [anon_sym_u_DQUOTE] = ACTIONS(1323), + [anon_sym_U_DQUOTE] = ACTIONS(1323), + [anon_sym_u8_DQUOTE] = ACTIONS(1323), + [anon_sym_DQUOTE] = ACTIONS(1323), + [sym_true] = ACTIONS(1321), + [sym_false] = ACTIONS(1321), + [anon_sym_NULL] = ACTIONS(1321), + [anon_sym_nullptr] = ACTIONS(1321), + [sym_comment] = ACTIONS(3), + }, + [131] = { + [sym_identifier] = ACTIONS(1325), + [aux_sym_preproc_include_token1] = ACTIONS(1325), + [aux_sym_preproc_def_token1] = ACTIONS(1325), + [aux_sym_preproc_if_token1] = ACTIONS(1325), + [aux_sym_preproc_if_token2] = ACTIONS(1325), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1325), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1325), + [aux_sym_preproc_else_token1] = ACTIONS(1325), + [aux_sym_preproc_elif_token1] = ACTIONS(1325), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1325), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1325), + [sym_preproc_directive] = ACTIONS(1325), + [anon_sym_LPAREN2] = ACTIONS(1327), + [anon_sym_BANG] = ACTIONS(1327), + [anon_sym_TILDE] = ACTIONS(1327), + [anon_sym_DASH] = ACTIONS(1325), + [anon_sym_PLUS] = ACTIONS(1325), + [anon_sym_STAR] = ACTIONS(1327), + [anon_sym_AMP] = ACTIONS(1327), + [anon_sym_SEMI] = ACTIONS(1327), + [anon_sym___extension__] = ACTIONS(1325), + [anon_sym_typedef] = ACTIONS(1325), + [anon_sym_extern] = ACTIONS(1325), + [anon_sym___attribute__] = ACTIONS(1325), + [anon_sym___scanf] = ACTIONS(1325), + [anon_sym___printf] = ACTIONS(1325), + [anon_sym___read_mostly] = ACTIONS(1325), + [anon_sym___must_hold] = ACTIONS(1325), + [anon_sym___ro_after_init] = ACTIONS(1325), + [anon_sym___noreturn] = ACTIONS(1325), + [anon_sym___cold] = ACTIONS(1325), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1327), + [anon_sym___declspec] = ACTIONS(1325), + [anon_sym___init] = ACTIONS(1325), + [anon_sym___exit] = ACTIONS(1325), + [anon_sym___cdecl] = ACTIONS(1325), + [anon_sym___clrcall] = ACTIONS(1325), + [anon_sym___stdcall] = ACTIONS(1325), + [anon_sym___fastcall] = ACTIONS(1325), + [anon_sym___thiscall] = ACTIONS(1325), + [anon_sym___vectorcall] = ACTIONS(1325), + [anon_sym_LBRACE] = ACTIONS(1327), + [anon_sym_signed] = ACTIONS(1325), + [anon_sym_unsigned] = ACTIONS(1325), + [anon_sym_long] = ACTIONS(1325), + [anon_sym_short] = ACTIONS(1325), + [anon_sym_static] = ACTIONS(1325), + [anon_sym_auto] = ACTIONS(1325), + [anon_sym_register] = ACTIONS(1325), + [anon_sym_inline] = ACTIONS(1325), + [anon_sym___inline] = ACTIONS(1325), + [anon_sym___inline__] = ACTIONS(1325), + [anon_sym___forceinline] = ACTIONS(1325), + [anon_sym_thread_local] = ACTIONS(1325), + [anon_sym___thread] = ACTIONS(1325), + [anon_sym_const] = ACTIONS(1325), + [anon_sym_constexpr] = ACTIONS(1325), + [anon_sym_volatile] = ACTIONS(1325), + [anon_sym_restrict] = ACTIONS(1325), + [anon_sym___restrict__] = ACTIONS(1325), + [anon_sym__Atomic] = ACTIONS(1325), + [anon_sym__Noreturn] = ACTIONS(1325), + [anon_sym_noreturn] = ACTIONS(1325), + [anon_sym_alignas] = ACTIONS(1325), + [anon_sym__Alignas] = ACTIONS(1325), + [sym_primitive_type] = ACTIONS(1325), + [anon_sym_enum] = ACTIONS(1325), + [anon_sym_struct] = ACTIONS(1325), + [anon_sym_union] = ACTIONS(1325), + [anon_sym_if] = ACTIONS(1325), + [anon_sym_switch] = ACTIONS(1325), + [anon_sym_case] = ACTIONS(1325), + [anon_sym_default] = ACTIONS(1325), + [anon_sym_while] = ACTIONS(1325), + [anon_sym_do] = ACTIONS(1325), + [anon_sym_for] = ACTIONS(1325), + [anon_sym_return] = ACTIONS(1325), + [anon_sym_break] = ACTIONS(1325), + [anon_sym_continue] = ACTIONS(1325), + [anon_sym_goto] = ACTIONS(1325), + [anon_sym___try] = ACTIONS(1325), + [anon_sym___leave] = ACTIONS(1325), + [anon_sym_DASH_DASH] = ACTIONS(1327), + [anon_sym_PLUS_PLUS] = ACTIONS(1327), + [anon_sym_sizeof] = ACTIONS(1325), + [anon_sym___alignof__] = ACTIONS(1325), + [anon_sym___alignof] = ACTIONS(1325), + [anon_sym__alignof] = ACTIONS(1325), + [anon_sym_alignof] = ACTIONS(1325), + [anon_sym__Alignof] = ACTIONS(1325), + [anon_sym_offsetof] = ACTIONS(1325), + [anon_sym__Generic] = ACTIONS(1325), + [anon_sym_asm] = ACTIONS(1325), + [anon_sym___asm__] = ACTIONS(1325), + [sym_number_literal] = ACTIONS(1327), + [anon_sym_L_SQUOTE] = ACTIONS(1327), + [anon_sym_u_SQUOTE] = ACTIONS(1327), + [anon_sym_U_SQUOTE] = ACTIONS(1327), + [anon_sym_u8_SQUOTE] = ACTIONS(1327), + [anon_sym_SQUOTE] = ACTIONS(1327), + [anon_sym_L_DQUOTE] = ACTIONS(1327), + [anon_sym_u_DQUOTE] = ACTIONS(1327), + [anon_sym_U_DQUOTE] = ACTIONS(1327), + [anon_sym_u8_DQUOTE] = ACTIONS(1327), + [anon_sym_DQUOTE] = ACTIONS(1327), + [sym_true] = ACTIONS(1325), + [sym_false] = ACTIONS(1325), + [anon_sym_NULL] = ACTIONS(1325), + [anon_sym_nullptr] = ACTIONS(1325), + [sym_comment] = ACTIONS(3), + }, + [132] = { + [sym_identifier] = ACTIONS(1329), + [aux_sym_preproc_include_token1] = ACTIONS(1329), + [aux_sym_preproc_def_token1] = ACTIONS(1329), + [aux_sym_preproc_if_token1] = ACTIONS(1329), + [aux_sym_preproc_if_token2] = ACTIONS(1329), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1329), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1329), + [aux_sym_preproc_else_token1] = ACTIONS(1329), + [aux_sym_preproc_elif_token1] = ACTIONS(1329), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1329), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1329), + [sym_preproc_directive] = ACTIONS(1329), + [anon_sym_LPAREN2] = ACTIONS(1331), + [anon_sym_BANG] = ACTIONS(1331), + [anon_sym_TILDE] = ACTIONS(1331), + [anon_sym_DASH] = ACTIONS(1329), + [anon_sym_PLUS] = ACTIONS(1329), + [anon_sym_STAR] = ACTIONS(1331), + [anon_sym_AMP] = ACTIONS(1331), + [anon_sym_SEMI] = ACTIONS(1331), + [anon_sym___extension__] = ACTIONS(1329), + [anon_sym_typedef] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1329), + [anon_sym___attribute__] = ACTIONS(1329), + [anon_sym___scanf] = ACTIONS(1329), + [anon_sym___printf] = ACTIONS(1329), + [anon_sym___read_mostly] = ACTIONS(1329), + [anon_sym___must_hold] = ACTIONS(1329), + [anon_sym___ro_after_init] = ACTIONS(1329), + [anon_sym___noreturn] = ACTIONS(1329), + [anon_sym___cold] = ACTIONS(1329), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1331), + [anon_sym___declspec] = ACTIONS(1329), + [anon_sym___init] = ACTIONS(1329), + [anon_sym___exit] = ACTIONS(1329), + [anon_sym___cdecl] = ACTIONS(1329), + [anon_sym___clrcall] = ACTIONS(1329), + [anon_sym___stdcall] = ACTIONS(1329), + [anon_sym___fastcall] = ACTIONS(1329), + [anon_sym___thiscall] = ACTIONS(1329), + [anon_sym___vectorcall] = ACTIONS(1329), + [anon_sym_LBRACE] = ACTIONS(1331), + [anon_sym_signed] = ACTIONS(1329), + [anon_sym_unsigned] = ACTIONS(1329), + [anon_sym_long] = ACTIONS(1329), + [anon_sym_short] = ACTIONS(1329), + [anon_sym_static] = ACTIONS(1329), + [anon_sym_auto] = ACTIONS(1329), + [anon_sym_register] = ACTIONS(1329), + [anon_sym_inline] = ACTIONS(1329), + [anon_sym___inline] = ACTIONS(1329), + [anon_sym___inline__] = ACTIONS(1329), + [anon_sym___forceinline] = ACTIONS(1329), + [anon_sym_thread_local] = ACTIONS(1329), + [anon_sym___thread] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), + [anon_sym_constexpr] = ACTIONS(1329), + [anon_sym_volatile] = ACTIONS(1329), + [anon_sym_restrict] = ACTIONS(1329), + [anon_sym___restrict__] = ACTIONS(1329), + [anon_sym__Atomic] = ACTIONS(1329), + [anon_sym__Noreturn] = ACTIONS(1329), + [anon_sym_noreturn] = ACTIONS(1329), + [anon_sym_alignas] = ACTIONS(1329), + [anon_sym__Alignas] = ACTIONS(1329), + [sym_primitive_type] = ACTIONS(1329), + [anon_sym_enum] = ACTIONS(1329), + [anon_sym_struct] = ACTIONS(1329), + [anon_sym_union] = ACTIONS(1329), + [anon_sym_if] = ACTIONS(1329), + [anon_sym_switch] = ACTIONS(1329), + [anon_sym_case] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(1329), + [anon_sym_while] = ACTIONS(1329), + [anon_sym_do] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(1329), + [anon_sym_return] = ACTIONS(1329), + [anon_sym_break] = ACTIONS(1329), + [anon_sym_continue] = ACTIONS(1329), + [anon_sym_goto] = ACTIONS(1329), + [anon_sym___try] = ACTIONS(1329), + [anon_sym___leave] = ACTIONS(1329), + [anon_sym_DASH_DASH] = ACTIONS(1331), + [anon_sym_PLUS_PLUS] = ACTIONS(1331), + [anon_sym_sizeof] = ACTIONS(1329), + [anon_sym___alignof__] = ACTIONS(1329), + [anon_sym___alignof] = ACTIONS(1329), + [anon_sym__alignof] = ACTIONS(1329), + [anon_sym_alignof] = ACTIONS(1329), + [anon_sym__Alignof] = ACTIONS(1329), + [anon_sym_offsetof] = ACTIONS(1329), + [anon_sym__Generic] = ACTIONS(1329), + [anon_sym_asm] = ACTIONS(1329), + [anon_sym___asm__] = ACTIONS(1329), + [sym_number_literal] = ACTIONS(1331), + [anon_sym_L_SQUOTE] = ACTIONS(1331), + [anon_sym_u_SQUOTE] = ACTIONS(1331), + [anon_sym_U_SQUOTE] = ACTIONS(1331), + [anon_sym_u8_SQUOTE] = ACTIONS(1331), + [anon_sym_SQUOTE] = ACTIONS(1331), + [anon_sym_L_DQUOTE] = ACTIONS(1331), + [anon_sym_u_DQUOTE] = ACTIONS(1331), + [anon_sym_U_DQUOTE] = ACTIONS(1331), + [anon_sym_u8_DQUOTE] = ACTIONS(1331), + [anon_sym_DQUOTE] = ACTIONS(1331), + [sym_true] = ACTIONS(1329), + [sym_false] = ACTIONS(1329), + [anon_sym_NULL] = ACTIONS(1329), + [anon_sym_nullptr] = ACTIONS(1329), + [sym_comment] = ACTIONS(3), + }, + [133] = { + [sym_identifier] = ACTIONS(1333), + [aux_sym_preproc_include_token1] = ACTIONS(1333), + [aux_sym_preproc_def_token1] = ACTIONS(1333), + [aux_sym_preproc_if_token1] = ACTIONS(1333), + [aux_sym_preproc_if_token2] = ACTIONS(1333), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1333), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1333), + [aux_sym_preproc_else_token1] = ACTIONS(1333), + [aux_sym_preproc_elif_token1] = ACTIONS(1333), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1333), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1333), + [sym_preproc_directive] = ACTIONS(1333), + [anon_sym_LPAREN2] = ACTIONS(1335), + [anon_sym_BANG] = ACTIONS(1335), + [anon_sym_TILDE] = ACTIONS(1335), + [anon_sym_DASH] = ACTIONS(1333), + [anon_sym_PLUS] = ACTIONS(1333), + [anon_sym_STAR] = ACTIONS(1335), + [anon_sym_AMP] = ACTIONS(1335), + [anon_sym_SEMI] = ACTIONS(1335), + [anon_sym___extension__] = ACTIONS(1333), + [anon_sym_typedef] = ACTIONS(1333), + [anon_sym_extern] = ACTIONS(1333), + [anon_sym___attribute__] = ACTIONS(1333), + [anon_sym___scanf] = ACTIONS(1333), + [anon_sym___printf] = ACTIONS(1333), + [anon_sym___read_mostly] = ACTIONS(1333), + [anon_sym___must_hold] = ACTIONS(1333), + [anon_sym___ro_after_init] = ACTIONS(1333), + [anon_sym___noreturn] = ACTIONS(1333), + [anon_sym___cold] = ACTIONS(1333), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1335), + [anon_sym___declspec] = ACTIONS(1333), + [anon_sym___init] = ACTIONS(1333), + [anon_sym___exit] = ACTIONS(1333), + [anon_sym___cdecl] = ACTIONS(1333), + [anon_sym___clrcall] = ACTIONS(1333), + [anon_sym___stdcall] = ACTIONS(1333), + [anon_sym___fastcall] = ACTIONS(1333), + [anon_sym___thiscall] = ACTIONS(1333), + [anon_sym___vectorcall] = ACTIONS(1333), + [anon_sym_LBRACE] = ACTIONS(1335), + [anon_sym_signed] = ACTIONS(1333), + [anon_sym_unsigned] = ACTIONS(1333), + [anon_sym_long] = ACTIONS(1333), + [anon_sym_short] = ACTIONS(1333), + [anon_sym_static] = ACTIONS(1333), + [anon_sym_auto] = ACTIONS(1333), + [anon_sym_register] = ACTIONS(1333), + [anon_sym_inline] = ACTIONS(1333), + [anon_sym___inline] = ACTIONS(1333), + [anon_sym___inline__] = ACTIONS(1333), + [anon_sym___forceinline] = ACTIONS(1333), + [anon_sym_thread_local] = ACTIONS(1333), + [anon_sym___thread] = ACTIONS(1333), + [anon_sym_const] = ACTIONS(1333), + [anon_sym_constexpr] = ACTIONS(1333), + [anon_sym_volatile] = ACTIONS(1333), + [anon_sym_restrict] = ACTIONS(1333), + [anon_sym___restrict__] = ACTIONS(1333), + [anon_sym__Atomic] = ACTIONS(1333), + [anon_sym__Noreturn] = ACTIONS(1333), + [anon_sym_noreturn] = ACTIONS(1333), + [anon_sym_alignas] = ACTIONS(1333), + [anon_sym__Alignas] = ACTIONS(1333), + [sym_primitive_type] = ACTIONS(1333), + [anon_sym_enum] = ACTIONS(1333), + [anon_sym_struct] = ACTIONS(1333), + [anon_sym_union] = ACTIONS(1333), + [anon_sym_if] = ACTIONS(1333), + [anon_sym_switch] = ACTIONS(1333), + [anon_sym_case] = ACTIONS(1333), + [anon_sym_default] = ACTIONS(1333), + [anon_sym_while] = ACTIONS(1333), + [anon_sym_do] = ACTIONS(1333), + [anon_sym_for] = ACTIONS(1333), + [anon_sym_return] = ACTIONS(1333), + [anon_sym_break] = ACTIONS(1333), + [anon_sym_continue] = ACTIONS(1333), + [anon_sym_goto] = ACTIONS(1333), + [anon_sym___try] = ACTIONS(1333), + [anon_sym___leave] = ACTIONS(1333), + [anon_sym_DASH_DASH] = ACTIONS(1335), + [anon_sym_PLUS_PLUS] = ACTIONS(1335), + [anon_sym_sizeof] = ACTIONS(1333), + [anon_sym___alignof__] = ACTIONS(1333), + [anon_sym___alignof] = ACTIONS(1333), + [anon_sym__alignof] = ACTIONS(1333), + [anon_sym_alignof] = ACTIONS(1333), + [anon_sym__Alignof] = ACTIONS(1333), + [anon_sym_offsetof] = ACTIONS(1333), + [anon_sym__Generic] = ACTIONS(1333), + [anon_sym_asm] = ACTIONS(1333), + [anon_sym___asm__] = ACTIONS(1333), + [sym_number_literal] = ACTIONS(1335), + [anon_sym_L_SQUOTE] = ACTIONS(1335), + [anon_sym_u_SQUOTE] = ACTIONS(1335), + [anon_sym_U_SQUOTE] = ACTIONS(1335), + [anon_sym_u8_SQUOTE] = ACTIONS(1335), + [anon_sym_SQUOTE] = ACTIONS(1335), + [anon_sym_L_DQUOTE] = ACTIONS(1335), + [anon_sym_u_DQUOTE] = ACTIONS(1335), + [anon_sym_U_DQUOTE] = ACTIONS(1335), + [anon_sym_u8_DQUOTE] = ACTIONS(1335), + [anon_sym_DQUOTE] = ACTIONS(1335), + [sym_true] = ACTIONS(1333), + [sym_false] = ACTIONS(1333), + [anon_sym_NULL] = ACTIONS(1333), + [anon_sym_nullptr] = ACTIONS(1333), + [sym_comment] = ACTIONS(3), + }, + [134] = { + [sym_identifier] = ACTIONS(1337), + [aux_sym_preproc_include_token1] = ACTIONS(1337), + [aux_sym_preproc_def_token1] = ACTIONS(1337), + [aux_sym_preproc_if_token1] = ACTIONS(1337), + [aux_sym_preproc_if_token2] = ACTIONS(1337), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1337), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1337), + [aux_sym_preproc_else_token1] = ACTIONS(1337), + [aux_sym_preproc_elif_token1] = ACTIONS(1337), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1337), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1337), + [sym_preproc_directive] = ACTIONS(1337), + [anon_sym_LPAREN2] = ACTIONS(1339), + [anon_sym_BANG] = ACTIONS(1339), + [anon_sym_TILDE] = ACTIONS(1339), + [anon_sym_DASH] = ACTIONS(1337), + [anon_sym_PLUS] = ACTIONS(1337), + [anon_sym_STAR] = ACTIONS(1339), + [anon_sym_AMP] = ACTIONS(1339), + [anon_sym_SEMI] = ACTIONS(1339), + [anon_sym___extension__] = ACTIONS(1337), + [anon_sym_typedef] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1337), + [anon_sym___attribute__] = ACTIONS(1337), + [anon_sym___scanf] = ACTIONS(1337), + [anon_sym___printf] = ACTIONS(1337), + [anon_sym___read_mostly] = ACTIONS(1337), + [anon_sym___must_hold] = ACTIONS(1337), + [anon_sym___ro_after_init] = ACTIONS(1337), + [anon_sym___noreturn] = ACTIONS(1337), + [anon_sym___cold] = ACTIONS(1337), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1339), + [anon_sym___declspec] = ACTIONS(1337), + [anon_sym___init] = ACTIONS(1337), + [anon_sym___exit] = ACTIONS(1337), + [anon_sym___cdecl] = ACTIONS(1337), + [anon_sym___clrcall] = ACTIONS(1337), + [anon_sym___stdcall] = ACTIONS(1337), + [anon_sym___fastcall] = ACTIONS(1337), + [anon_sym___thiscall] = ACTIONS(1337), + [anon_sym___vectorcall] = ACTIONS(1337), + [anon_sym_LBRACE] = ACTIONS(1339), + [anon_sym_signed] = ACTIONS(1337), + [anon_sym_unsigned] = ACTIONS(1337), + [anon_sym_long] = ACTIONS(1337), + [anon_sym_short] = ACTIONS(1337), + [anon_sym_static] = ACTIONS(1337), + [anon_sym_auto] = ACTIONS(1337), + [anon_sym_register] = ACTIONS(1337), + [anon_sym_inline] = ACTIONS(1337), + [anon_sym___inline] = ACTIONS(1337), + [anon_sym___inline__] = ACTIONS(1337), + [anon_sym___forceinline] = ACTIONS(1337), + [anon_sym_thread_local] = ACTIONS(1337), + [anon_sym___thread] = ACTIONS(1337), + [anon_sym_const] = ACTIONS(1337), + [anon_sym_constexpr] = ACTIONS(1337), + [anon_sym_volatile] = ACTIONS(1337), + [anon_sym_restrict] = ACTIONS(1337), + [anon_sym___restrict__] = ACTIONS(1337), + [anon_sym__Atomic] = ACTIONS(1337), + [anon_sym__Noreturn] = ACTIONS(1337), + [anon_sym_noreturn] = ACTIONS(1337), + [anon_sym_alignas] = ACTIONS(1337), + [anon_sym__Alignas] = ACTIONS(1337), + [sym_primitive_type] = ACTIONS(1337), + [anon_sym_enum] = ACTIONS(1337), + [anon_sym_struct] = ACTIONS(1337), + [anon_sym_union] = ACTIONS(1337), + [anon_sym_if] = ACTIONS(1337), + [anon_sym_switch] = ACTIONS(1337), + [anon_sym_case] = ACTIONS(1337), + [anon_sym_default] = ACTIONS(1337), + [anon_sym_while] = ACTIONS(1337), + [anon_sym_do] = ACTIONS(1337), + [anon_sym_for] = ACTIONS(1337), + [anon_sym_return] = ACTIONS(1337), + [anon_sym_break] = ACTIONS(1337), + [anon_sym_continue] = ACTIONS(1337), + [anon_sym_goto] = ACTIONS(1337), + [anon_sym___try] = ACTIONS(1337), + [anon_sym___leave] = ACTIONS(1337), + [anon_sym_DASH_DASH] = ACTIONS(1339), + [anon_sym_PLUS_PLUS] = ACTIONS(1339), + [anon_sym_sizeof] = ACTIONS(1337), + [anon_sym___alignof__] = ACTIONS(1337), + [anon_sym___alignof] = ACTIONS(1337), + [anon_sym__alignof] = ACTIONS(1337), + [anon_sym_alignof] = ACTIONS(1337), + [anon_sym__Alignof] = ACTIONS(1337), + [anon_sym_offsetof] = ACTIONS(1337), + [anon_sym__Generic] = ACTIONS(1337), + [anon_sym_asm] = ACTIONS(1337), + [anon_sym___asm__] = ACTIONS(1337), + [sym_number_literal] = ACTIONS(1339), + [anon_sym_L_SQUOTE] = ACTIONS(1339), + [anon_sym_u_SQUOTE] = ACTIONS(1339), + [anon_sym_U_SQUOTE] = ACTIONS(1339), + [anon_sym_u8_SQUOTE] = ACTIONS(1339), + [anon_sym_SQUOTE] = ACTIONS(1339), + [anon_sym_L_DQUOTE] = ACTIONS(1339), + [anon_sym_u_DQUOTE] = ACTIONS(1339), + [anon_sym_U_DQUOTE] = ACTIONS(1339), + [anon_sym_u8_DQUOTE] = ACTIONS(1339), + [anon_sym_DQUOTE] = ACTIONS(1339), + [sym_true] = ACTIONS(1337), + [sym_false] = ACTIONS(1337), + [anon_sym_NULL] = ACTIONS(1337), + [anon_sym_nullptr] = ACTIONS(1337), + [sym_comment] = ACTIONS(3), + }, + [135] = { + [sym_identifier] = ACTIONS(1341), + [aux_sym_preproc_include_token1] = ACTIONS(1341), + [aux_sym_preproc_def_token1] = ACTIONS(1341), + [aux_sym_preproc_if_token1] = ACTIONS(1341), + [aux_sym_preproc_if_token2] = ACTIONS(1341), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1341), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1341), + [aux_sym_preproc_else_token1] = ACTIONS(1341), + [aux_sym_preproc_elif_token1] = ACTIONS(1341), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1341), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1341), + [sym_preproc_directive] = ACTIONS(1341), + [anon_sym_LPAREN2] = ACTIONS(1343), + [anon_sym_BANG] = ACTIONS(1343), + [anon_sym_TILDE] = ACTIONS(1343), + [anon_sym_DASH] = ACTIONS(1341), + [anon_sym_PLUS] = ACTIONS(1341), + [anon_sym_STAR] = ACTIONS(1343), + [anon_sym_AMP] = ACTIONS(1343), + [anon_sym_SEMI] = ACTIONS(1343), + [anon_sym___extension__] = ACTIONS(1341), + [anon_sym_typedef] = ACTIONS(1341), + [anon_sym_extern] = ACTIONS(1341), + [anon_sym___attribute__] = ACTIONS(1341), + [anon_sym___scanf] = ACTIONS(1341), + [anon_sym___printf] = ACTIONS(1341), + [anon_sym___read_mostly] = ACTIONS(1341), + [anon_sym___must_hold] = ACTIONS(1341), + [anon_sym___ro_after_init] = ACTIONS(1341), + [anon_sym___noreturn] = ACTIONS(1341), + [anon_sym___cold] = ACTIONS(1341), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1343), + [anon_sym___declspec] = ACTIONS(1341), + [anon_sym___init] = ACTIONS(1341), + [anon_sym___exit] = ACTIONS(1341), + [anon_sym___cdecl] = ACTIONS(1341), + [anon_sym___clrcall] = ACTIONS(1341), + [anon_sym___stdcall] = ACTIONS(1341), + [anon_sym___fastcall] = ACTIONS(1341), + [anon_sym___thiscall] = ACTIONS(1341), + [anon_sym___vectorcall] = ACTIONS(1341), + [anon_sym_LBRACE] = ACTIONS(1343), + [anon_sym_signed] = ACTIONS(1341), + [anon_sym_unsigned] = ACTIONS(1341), + [anon_sym_long] = ACTIONS(1341), + [anon_sym_short] = ACTIONS(1341), + [anon_sym_static] = ACTIONS(1341), + [anon_sym_auto] = ACTIONS(1341), + [anon_sym_register] = ACTIONS(1341), + [anon_sym_inline] = ACTIONS(1341), + [anon_sym___inline] = ACTIONS(1341), + [anon_sym___inline__] = ACTIONS(1341), + [anon_sym___forceinline] = ACTIONS(1341), + [anon_sym_thread_local] = ACTIONS(1341), + [anon_sym___thread] = ACTIONS(1341), + [anon_sym_const] = ACTIONS(1341), + [anon_sym_constexpr] = ACTIONS(1341), + [anon_sym_volatile] = ACTIONS(1341), + [anon_sym_restrict] = ACTIONS(1341), + [anon_sym___restrict__] = ACTIONS(1341), + [anon_sym__Atomic] = ACTIONS(1341), + [anon_sym__Noreturn] = ACTIONS(1341), + [anon_sym_noreturn] = ACTIONS(1341), + [anon_sym_alignas] = ACTIONS(1341), + [anon_sym__Alignas] = ACTIONS(1341), + [sym_primitive_type] = ACTIONS(1341), + [anon_sym_enum] = ACTIONS(1341), + [anon_sym_struct] = ACTIONS(1341), + [anon_sym_union] = ACTIONS(1341), + [anon_sym_if] = ACTIONS(1341), + [anon_sym_switch] = ACTIONS(1341), + [anon_sym_case] = ACTIONS(1341), + [anon_sym_default] = ACTIONS(1341), + [anon_sym_while] = ACTIONS(1341), + [anon_sym_do] = ACTIONS(1341), + [anon_sym_for] = ACTIONS(1341), + [anon_sym_return] = ACTIONS(1341), + [anon_sym_break] = ACTIONS(1341), + [anon_sym_continue] = ACTIONS(1341), + [anon_sym_goto] = ACTIONS(1341), + [anon_sym___try] = ACTIONS(1341), + [anon_sym___leave] = ACTIONS(1341), + [anon_sym_DASH_DASH] = ACTIONS(1343), + [anon_sym_PLUS_PLUS] = ACTIONS(1343), + [anon_sym_sizeof] = ACTIONS(1341), + [anon_sym___alignof__] = ACTIONS(1341), + [anon_sym___alignof] = ACTIONS(1341), + [anon_sym__alignof] = ACTIONS(1341), + [anon_sym_alignof] = ACTIONS(1341), + [anon_sym__Alignof] = ACTIONS(1341), + [anon_sym_offsetof] = ACTIONS(1341), + [anon_sym__Generic] = ACTIONS(1341), + [anon_sym_asm] = ACTIONS(1341), + [anon_sym___asm__] = ACTIONS(1341), + [sym_number_literal] = ACTIONS(1343), + [anon_sym_L_SQUOTE] = ACTIONS(1343), + [anon_sym_u_SQUOTE] = ACTIONS(1343), + [anon_sym_U_SQUOTE] = ACTIONS(1343), + [anon_sym_u8_SQUOTE] = ACTIONS(1343), + [anon_sym_SQUOTE] = ACTIONS(1343), + [anon_sym_L_DQUOTE] = ACTIONS(1343), + [anon_sym_u_DQUOTE] = ACTIONS(1343), + [anon_sym_U_DQUOTE] = ACTIONS(1343), + [anon_sym_u8_DQUOTE] = ACTIONS(1343), + [anon_sym_DQUOTE] = ACTIONS(1343), + [sym_true] = ACTIONS(1341), + [sym_false] = ACTIONS(1341), + [anon_sym_NULL] = ACTIONS(1341), + [anon_sym_nullptr] = ACTIONS(1341), + [sym_comment] = ACTIONS(3), + }, + [136] = { + [sym_identifier] = ACTIONS(1345), + [aux_sym_preproc_include_token1] = ACTIONS(1345), + [aux_sym_preproc_def_token1] = ACTIONS(1345), + [aux_sym_preproc_if_token1] = ACTIONS(1345), + [aux_sym_preproc_if_token2] = ACTIONS(1345), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1345), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1345), + [aux_sym_preproc_else_token1] = ACTIONS(1345), + [aux_sym_preproc_elif_token1] = ACTIONS(1345), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1345), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1345), + [sym_preproc_directive] = ACTIONS(1345), + [anon_sym_LPAREN2] = ACTIONS(1347), + [anon_sym_BANG] = ACTIONS(1347), + [anon_sym_TILDE] = ACTIONS(1347), + [anon_sym_DASH] = ACTIONS(1345), + [anon_sym_PLUS] = ACTIONS(1345), + [anon_sym_STAR] = ACTIONS(1347), + [anon_sym_AMP] = ACTIONS(1347), + [anon_sym_SEMI] = ACTIONS(1347), + [anon_sym___extension__] = ACTIONS(1345), + [anon_sym_typedef] = ACTIONS(1345), + [anon_sym_extern] = ACTIONS(1345), + [anon_sym___attribute__] = ACTIONS(1345), + [anon_sym___scanf] = ACTIONS(1345), + [anon_sym___printf] = ACTIONS(1345), + [anon_sym___read_mostly] = ACTIONS(1345), + [anon_sym___must_hold] = ACTIONS(1345), + [anon_sym___ro_after_init] = ACTIONS(1345), + [anon_sym___noreturn] = ACTIONS(1345), + [anon_sym___cold] = ACTIONS(1345), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1347), + [anon_sym___declspec] = ACTIONS(1345), + [anon_sym___init] = ACTIONS(1345), + [anon_sym___exit] = ACTIONS(1345), + [anon_sym___cdecl] = ACTIONS(1345), + [anon_sym___clrcall] = ACTIONS(1345), + [anon_sym___stdcall] = ACTIONS(1345), + [anon_sym___fastcall] = ACTIONS(1345), + [anon_sym___thiscall] = ACTIONS(1345), + [anon_sym___vectorcall] = ACTIONS(1345), + [anon_sym_LBRACE] = ACTIONS(1347), + [anon_sym_signed] = ACTIONS(1345), + [anon_sym_unsigned] = ACTIONS(1345), + [anon_sym_long] = ACTIONS(1345), + [anon_sym_short] = ACTIONS(1345), + [anon_sym_static] = ACTIONS(1345), + [anon_sym_auto] = ACTIONS(1345), + [anon_sym_register] = ACTIONS(1345), + [anon_sym_inline] = ACTIONS(1345), + [anon_sym___inline] = ACTIONS(1345), + [anon_sym___inline__] = ACTIONS(1345), + [anon_sym___forceinline] = ACTIONS(1345), + [anon_sym_thread_local] = ACTIONS(1345), + [anon_sym___thread] = ACTIONS(1345), + [anon_sym_const] = ACTIONS(1345), + [anon_sym_constexpr] = ACTIONS(1345), + [anon_sym_volatile] = ACTIONS(1345), + [anon_sym_restrict] = ACTIONS(1345), + [anon_sym___restrict__] = ACTIONS(1345), + [anon_sym__Atomic] = ACTIONS(1345), + [anon_sym__Noreturn] = ACTIONS(1345), + [anon_sym_noreturn] = ACTIONS(1345), + [anon_sym_alignas] = ACTIONS(1345), + [anon_sym__Alignas] = ACTIONS(1345), + [sym_primitive_type] = ACTIONS(1345), + [anon_sym_enum] = ACTIONS(1345), + [anon_sym_struct] = ACTIONS(1345), + [anon_sym_union] = ACTIONS(1345), + [anon_sym_if] = ACTIONS(1345), + [anon_sym_switch] = ACTIONS(1345), + [anon_sym_case] = ACTIONS(1345), + [anon_sym_default] = ACTIONS(1345), + [anon_sym_while] = ACTIONS(1345), + [anon_sym_do] = ACTIONS(1345), + [anon_sym_for] = ACTIONS(1345), + [anon_sym_return] = ACTIONS(1345), + [anon_sym_break] = ACTIONS(1345), + [anon_sym_continue] = ACTIONS(1345), + [anon_sym_goto] = ACTIONS(1345), + [anon_sym___try] = ACTIONS(1345), + [anon_sym___leave] = ACTIONS(1345), + [anon_sym_DASH_DASH] = ACTIONS(1347), + [anon_sym_PLUS_PLUS] = ACTIONS(1347), + [anon_sym_sizeof] = ACTIONS(1345), + [anon_sym___alignof__] = ACTIONS(1345), + [anon_sym___alignof] = ACTIONS(1345), + [anon_sym__alignof] = ACTIONS(1345), + [anon_sym_alignof] = ACTIONS(1345), + [anon_sym__Alignof] = ACTIONS(1345), + [anon_sym_offsetof] = ACTIONS(1345), + [anon_sym__Generic] = ACTIONS(1345), + [anon_sym_asm] = ACTIONS(1345), + [anon_sym___asm__] = ACTIONS(1345), + [sym_number_literal] = ACTIONS(1347), + [anon_sym_L_SQUOTE] = ACTIONS(1347), + [anon_sym_u_SQUOTE] = ACTIONS(1347), + [anon_sym_U_SQUOTE] = ACTIONS(1347), + [anon_sym_u8_SQUOTE] = ACTIONS(1347), + [anon_sym_SQUOTE] = ACTIONS(1347), + [anon_sym_L_DQUOTE] = ACTIONS(1347), + [anon_sym_u_DQUOTE] = ACTIONS(1347), + [anon_sym_U_DQUOTE] = ACTIONS(1347), + [anon_sym_u8_DQUOTE] = ACTIONS(1347), + [anon_sym_DQUOTE] = ACTIONS(1347), + [sym_true] = ACTIONS(1345), + [sym_false] = ACTIONS(1345), + [anon_sym_NULL] = ACTIONS(1345), + [anon_sym_nullptr] = ACTIONS(1345), + [sym_comment] = ACTIONS(3), + }, + [137] = { + [sym_identifier] = ACTIONS(1349), + [aux_sym_preproc_include_token1] = ACTIONS(1349), + [aux_sym_preproc_def_token1] = ACTIONS(1349), + [aux_sym_preproc_if_token1] = ACTIONS(1349), + [aux_sym_preproc_if_token2] = ACTIONS(1349), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1349), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1349), + [aux_sym_preproc_else_token1] = ACTIONS(1349), + [aux_sym_preproc_elif_token1] = ACTIONS(1349), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1349), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1349), + [sym_preproc_directive] = ACTIONS(1349), + [anon_sym_LPAREN2] = ACTIONS(1351), + [anon_sym_BANG] = ACTIONS(1351), + [anon_sym_TILDE] = ACTIONS(1351), + [anon_sym_DASH] = ACTIONS(1349), + [anon_sym_PLUS] = ACTIONS(1349), + [anon_sym_STAR] = ACTIONS(1351), + [anon_sym_AMP] = ACTIONS(1351), + [anon_sym_SEMI] = ACTIONS(1351), + [anon_sym___extension__] = ACTIONS(1349), + [anon_sym_typedef] = ACTIONS(1349), + [anon_sym_extern] = ACTIONS(1349), + [anon_sym___attribute__] = ACTIONS(1349), + [anon_sym___scanf] = ACTIONS(1349), + [anon_sym___printf] = ACTIONS(1349), + [anon_sym___read_mostly] = ACTIONS(1349), + [anon_sym___must_hold] = ACTIONS(1349), + [anon_sym___ro_after_init] = ACTIONS(1349), + [anon_sym___noreturn] = ACTIONS(1349), + [anon_sym___cold] = ACTIONS(1349), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1351), + [anon_sym___declspec] = ACTIONS(1349), + [anon_sym___init] = ACTIONS(1349), + [anon_sym___exit] = ACTIONS(1349), + [anon_sym___cdecl] = ACTIONS(1349), + [anon_sym___clrcall] = ACTIONS(1349), + [anon_sym___stdcall] = ACTIONS(1349), + [anon_sym___fastcall] = ACTIONS(1349), + [anon_sym___thiscall] = ACTIONS(1349), + [anon_sym___vectorcall] = ACTIONS(1349), + [anon_sym_LBRACE] = ACTIONS(1351), + [anon_sym_signed] = ACTIONS(1349), + [anon_sym_unsigned] = ACTIONS(1349), + [anon_sym_long] = ACTIONS(1349), + [anon_sym_short] = ACTIONS(1349), + [anon_sym_static] = ACTIONS(1349), + [anon_sym_auto] = ACTIONS(1349), + [anon_sym_register] = ACTIONS(1349), + [anon_sym_inline] = ACTIONS(1349), + [anon_sym___inline] = ACTIONS(1349), + [anon_sym___inline__] = ACTIONS(1349), + [anon_sym___forceinline] = ACTIONS(1349), + [anon_sym_thread_local] = ACTIONS(1349), + [anon_sym___thread] = ACTIONS(1349), + [anon_sym_const] = ACTIONS(1349), + [anon_sym_constexpr] = ACTIONS(1349), + [anon_sym_volatile] = ACTIONS(1349), + [anon_sym_restrict] = ACTIONS(1349), + [anon_sym___restrict__] = ACTIONS(1349), + [anon_sym__Atomic] = ACTIONS(1349), + [anon_sym__Noreturn] = ACTIONS(1349), + [anon_sym_noreturn] = ACTIONS(1349), + [anon_sym_alignas] = ACTIONS(1349), + [anon_sym__Alignas] = ACTIONS(1349), + [sym_primitive_type] = ACTIONS(1349), + [anon_sym_enum] = ACTIONS(1349), + [anon_sym_struct] = ACTIONS(1349), + [anon_sym_union] = ACTIONS(1349), + [anon_sym_if] = ACTIONS(1349), + [anon_sym_switch] = ACTIONS(1349), + [anon_sym_case] = ACTIONS(1349), + [anon_sym_default] = ACTIONS(1349), + [anon_sym_while] = ACTIONS(1349), + [anon_sym_do] = ACTIONS(1349), + [anon_sym_for] = ACTIONS(1349), + [anon_sym_return] = ACTIONS(1349), + [anon_sym_break] = ACTIONS(1349), + [anon_sym_continue] = ACTIONS(1349), + [anon_sym_goto] = ACTIONS(1349), + [anon_sym___try] = ACTIONS(1349), + [anon_sym___leave] = ACTIONS(1349), + [anon_sym_DASH_DASH] = ACTIONS(1351), + [anon_sym_PLUS_PLUS] = ACTIONS(1351), + [anon_sym_sizeof] = ACTIONS(1349), + [anon_sym___alignof__] = ACTIONS(1349), + [anon_sym___alignof] = ACTIONS(1349), + [anon_sym__alignof] = ACTIONS(1349), + [anon_sym_alignof] = ACTIONS(1349), + [anon_sym__Alignof] = ACTIONS(1349), + [anon_sym_offsetof] = ACTIONS(1349), + [anon_sym__Generic] = ACTIONS(1349), + [anon_sym_asm] = ACTIONS(1349), + [anon_sym___asm__] = ACTIONS(1349), + [sym_number_literal] = ACTIONS(1351), + [anon_sym_L_SQUOTE] = ACTIONS(1351), + [anon_sym_u_SQUOTE] = ACTIONS(1351), + [anon_sym_U_SQUOTE] = ACTIONS(1351), + [anon_sym_u8_SQUOTE] = ACTIONS(1351), + [anon_sym_SQUOTE] = ACTIONS(1351), + [anon_sym_L_DQUOTE] = ACTIONS(1351), + [anon_sym_u_DQUOTE] = ACTIONS(1351), + [anon_sym_U_DQUOTE] = ACTIONS(1351), + [anon_sym_u8_DQUOTE] = ACTIONS(1351), + [anon_sym_DQUOTE] = ACTIONS(1351), + [sym_true] = ACTIONS(1349), + [sym_false] = ACTIONS(1349), + [anon_sym_NULL] = ACTIONS(1349), + [anon_sym_nullptr] = ACTIONS(1349), + [sym_comment] = ACTIONS(3), + }, + [138] = { + [sym_identifier] = ACTIONS(1353), + [aux_sym_preproc_include_token1] = ACTIONS(1353), + [aux_sym_preproc_def_token1] = ACTIONS(1353), + [aux_sym_preproc_if_token1] = ACTIONS(1353), + [aux_sym_preproc_if_token2] = ACTIONS(1353), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1353), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1353), + [aux_sym_preproc_else_token1] = ACTIONS(1353), + [aux_sym_preproc_elif_token1] = ACTIONS(1353), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1353), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1353), + [sym_preproc_directive] = ACTIONS(1353), + [anon_sym_LPAREN2] = ACTIONS(1355), + [anon_sym_BANG] = ACTIONS(1355), + [anon_sym_TILDE] = ACTIONS(1355), + [anon_sym_DASH] = ACTIONS(1353), + [anon_sym_PLUS] = ACTIONS(1353), + [anon_sym_STAR] = ACTIONS(1355), + [anon_sym_AMP] = ACTIONS(1355), + [anon_sym_SEMI] = ACTIONS(1355), + [anon_sym___extension__] = ACTIONS(1353), + [anon_sym_typedef] = ACTIONS(1353), + [anon_sym_extern] = ACTIONS(1353), + [anon_sym___attribute__] = ACTIONS(1353), + [anon_sym___scanf] = ACTIONS(1353), + [anon_sym___printf] = ACTIONS(1353), + [anon_sym___read_mostly] = ACTIONS(1353), + [anon_sym___must_hold] = ACTIONS(1353), + [anon_sym___ro_after_init] = ACTIONS(1353), + [anon_sym___noreturn] = ACTIONS(1353), + [anon_sym___cold] = ACTIONS(1353), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1355), + [anon_sym___declspec] = ACTIONS(1353), + [anon_sym___init] = ACTIONS(1353), + [anon_sym___exit] = ACTIONS(1353), + [anon_sym___cdecl] = ACTIONS(1353), + [anon_sym___clrcall] = ACTIONS(1353), + [anon_sym___stdcall] = ACTIONS(1353), + [anon_sym___fastcall] = ACTIONS(1353), + [anon_sym___thiscall] = ACTIONS(1353), + [anon_sym___vectorcall] = ACTIONS(1353), + [anon_sym_LBRACE] = ACTIONS(1355), + [anon_sym_signed] = ACTIONS(1353), + [anon_sym_unsigned] = ACTIONS(1353), + [anon_sym_long] = ACTIONS(1353), + [anon_sym_short] = ACTIONS(1353), + [anon_sym_static] = ACTIONS(1353), + [anon_sym_auto] = ACTIONS(1353), + [anon_sym_register] = ACTIONS(1353), + [anon_sym_inline] = ACTIONS(1353), + [anon_sym___inline] = ACTIONS(1353), + [anon_sym___inline__] = ACTIONS(1353), + [anon_sym___forceinline] = ACTIONS(1353), + [anon_sym_thread_local] = ACTIONS(1353), + [anon_sym___thread] = ACTIONS(1353), + [anon_sym_const] = ACTIONS(1353), + [anon_sym_constexpr] = ACTIONS(1353), + [anon_sym_volatile] = ACTIONS(1353), + [anon_sym_restrict] = ACTIONS(1353), + [anon_sym___restrict__] = ACTIONS(1353), + [anon_sym__Atomic] = ACTIONS(1353), + [anon_sym__Noreturn] = ACTIONS(1353), + [anon_sym_noreturn] = ACTIONS(1353), + [anon_sym_alignas] = ACTIONS(1353), + [anon_sym__Alignas] = ACTIONS(1353), + [sym_primitive_type] = ACTIONS(1353), + [anon_sym_enum] = ACTIONS(1353), + [anon_sym_struct] = ACTIONS(1353), + [anon_sym_union] = ACTIONS(1353), + [anon_sym_if] = ACTIONS(1353), + [anon_sym_switch] = ACTIONS(1353), + [anon_sym_case] = ACTIONS(1353), + [anon_sym_default] = ACTIONS(1353), + [anon_sym_while] = ACTIONS(1353), + [anon_sym_do] = ACTIONS(1353), + [anon_sym_for] = ACTIONS(1353), + [anon_sym_return] = ACTIONS(1353), + [anon_sym_break] = ACTIONS(1353), + [anon_sym_continue] = ACTIONS(1353), + [anon_sym_goto] = ACTIONS(1353), + [anon_sym___try] = ACTIONS(1353), + [anon_sym___leave] = ACTIONS(1353), + [anon_sym_DASH_DASH] = ACTIONS(1355), + [anon_sym_PLUS_PLUS] = ACTIONS(1355), + [anon_sym_sizeof] = ACTIONS(1353), + [anon_sym___alignof__] = ACTIONS(1353), + [anon_sym___alignof] = ACTIONS(1353), + [anon_sym__alignof] = ACTIONS(1353), + [anon_sym_alignof] = ACTIONS(1353), + [anon_sym__Alignof] = ACTIONS(1353), + [anon_sym_offsetof] = ACTIONS(1353), + [anon_sym__Generic] = ACTIONS(1353), + [anon_sym_asm] = ACTIONS(1353), + [anon_sym___asm__] = ACTIONS(1353), + [sym_number_literal] = ACTIONS(1355), + [anon_sym_L_SQUOTE] = ACTIONS(1355), + [anon_sym_u_SQUOTE] = ACTIONS(1355), + [anon_sym_U_SQUOTE] = ACTIONS(1355), + [anon_sym_u8_SQUOTE] = ACTIONS(1355), + [anon_sym_SQUOTE] = ACTIONS(1355), + [anon_sym_L_DQUOTE] = ACTIONS(1355), + [anon_sym_u_DQUOTE] = ACTIONS(1355), + [anon_sym_U_DQUOTE] = ACTIONS(1355), + [anon_sym_u8_DQUOTE] = ACTIONS(1355), + [anon_sym_DQUOTE] = ACTIONS(1355), + [sym_true] = ACTIONS(1353), + [sym_false] = ACTIONS(1353), + [anon_sym_NULL] = ACTIONS(1353), + [anon_sym_nullptr] = ACTIONS(1353), + [sym_comment] = ACTIONS(3), + }, + [139] = { + [sym_identifier] = ACTIONS(1357), + [aux_sym_preproc_include_token1] = ACTIONS(1357), + [aux_sym_preproc_def_token1] = ACTIONS(1357), + [aux_sym_preproc_if_token1] = ACTIONS(1357), + [aux_sym_preproc_if_token2] = ACTIONS(1357), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1357), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1357), + [aux_sym_preproc_else_token1] = ACTIONS(1357), + [aux_sym_preproc_elif_token1] = ACTIONS(1357), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1357), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1357), + [sym_preproc_directive] = ACTIONS(1357), + [anon_sym_LPAREN2] = ACTIONS(1359), + [anon_sym_BANG] = ACTIONS(1359), + [anon_sym_TILDE] = ACTIONS(1359), + [anon_sym_DASH] = ACTIONS(1357), + [anon_sym_PLUS] = ACTIONS(1357), + [anon_sym_STAR] = ACTIONS(1359), + [anon_sym_AMP] = ACTIONS(1359), + [anon_sym_SEMI] = ACTIONS(1359), + [anon_sym___extension__] = ACTIONS(1357), + [anon_sym_typedef] = ACTIONS(1357), + [anon_sym_extern] = ACTIONS(1357), + [anon_sym___attribute__] = ACTIONS(1357), + [anon_sym___scanf] = ACTIONS(1357), + [anon_sym___printf] = ACTIONS(1357), + [anon_sym___read_mostly] = ACTIONS(1357), + [anon_sym___must_hold] = ACTIONS(1357), + [anon_sym___ro_after_init] = ACTIONS(1357), + [anon_sym___noreturn] = ACTIONS(1357), + [anon_sym___cold] = ACTIONS(1357), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1359), + [anon_sym___declspec] = ACTIONS(1357), + [anon_sym___init] = ACTIONS(1357), + [anon_sym___exit] = ACTIONS(1357), + [anon_sym___cdecl] = ACTIONS(1357), + [anon_sym___clrcall] = ACTIONS(1357), + [anon_sym___stdcall] = ACTIONS(1357), + [anon_sym___fastcall] = ACTIONS(1357), + [anon_sym___thiscall] = ACTIONS(1357), + [anon_sym___vectorcall] = ACTIONS(1357), + [anon_sym_LBRACE] = ACTIONS(1359), + [anon_sym_signed] = ACTIONS(1357), + [anon_sym_unsigned] = ACTIONS(1357), + [anon_sym_long] = ACTIONS(1357), + [anon_sym_short] = ACTIONS(1357), + [anon_sym_static] = ACTIONS(1357), + [anon_sym_auto] = ACTIONS(1357), + [anon_sym_register] = ACTIONS(1357), + [anon_sym_inline] = ACTIONS(1357), + [anon_sym___inline] = ACTIONS(1357), + [anon_sym___inline__] = ACTIONS(1357), + [anon_sym___forceinline] = ACTIONS(1357), + [anon_sym_thread_local] = ACTIONS(1357), + [anon_sym___thread] = ACTIONS(1357), + [anon_sym_const] = ACTIONS(1357), + [anon_sym_constexpr] = ACTIONS(1357), + [anon_sym_volatile] = ACTIONS(1357), + [anon_sym_restrict] = ACTIONS(1357), + [anon_sym___restrict__] = ACTIONS(1357), + [anon_sym__Atomic] = ACTIONS(1357), + [anon_sym__Noreturn] = ACTIONS(1357), + [anon_sym_noreturn] = ACTIONS(1357), + [anon_sym_alignas] = ACTIONS(1357), + [anon_sym__Alignas] = ACTIONS(1357), + [sym_primitive_type] = ACTIONS(1357), + [anon_sym_enum] = ACTIONS(1357), + [anon_sym_struct] = ACTIONS(1357), + [anon_sym_union] = ACTIONS(1357), + [anon_sym_if] = ACTIONS(1357), + [anon_sym_switch] = ACTIONS(1357), + [anon_sym_case] = ACTIONS(1357), + [anon_sym_default] = ACTIONS(1357), + [anon_sym_while] = ACTIONS(1357), + [anon_sym_do] = ACTIONS(1357), + [anon_sym_for] = ACTIONS(1357), + [anon_sym_return] = ACTIONS(1357), + [anon_sym_break] = ACTIONS(1357), + [anon_sym_continue] = ACTIONS(1357), + [anon_sym_goto] = ACTIONS(1357), + [anon_sym___try] = ACTIONS(1357), + [anon_sym___leave] = ACTIONS(1357), + [anon_sym_DASH_DASH] = ACTIONS(1359), + [anon_sym_PLUS_PLUS] = ACTIONS(1359), + [anon_sym_sizeof] = ACTIONS(1357), + [anon_sym___alignof__] = ACTIONS(1357), + [anon_sym___alignof] = ACTIONS(1357), + [anon_sym__alignof] = ACTIONS(1357), + [anon_sym_alignof] = ACTIONS(1357), + [anon_sym__Alignof] = ACTIONS(1357), + [anon_sym_offsetof] = ACTIONS(1357), + [anon_sym__Generic] = ACTIONS(1357), + [anon_sym_asm] = ACTIONS(1357), + [anon_sym___asm__] = ACTIONS(1357), + [sym_number_literal] = ACTIONS(1359), + [anon_sym_L_SQUOTE] = ACTIONS(1359), + [anon_sym_u_SQUOTE] = ACTIONS(1359), + [anon_sym_U_SQUOTE] = ACTIONS(1359), + [anon_sym_u8_SQUOTE] = ACTIONS(1359), + [anon_sym_SQUOTE] = ACTIONS(1359), + [anon_sym_L_DQUOTE] = ACTIONS(1359), + [anon_sym_u_DQUOTE] = ACTIONS(1359), + [anon_sym_U_DQUOTE] = ACTIONS(1359), + [anon_sym_u8_DQUOTE] = ACTIONS(1359), + [anon_sym_DQUOTE] = ACTIONS(1359), + [sym_true] = ACTIONS(1357), + [sym_false] = ACTIONS(1357), + [anon_sym_NULL] = ACTIONS(1357), + [anon_sym_nullptr] = ACTIONS(1357), + [sym_comment] = ACTIONS(3), + }, + [140] = { + [sym_identifier] = ACTIONS(1361), + [aux_sym_preproc_include_token1] = ACTIONS(1361), + [aux_sym_preproc_def_token1] = ACTIONS(1361), + [aux_sym_preproc_if_token1] = ACTIONS(1361), + [aux_sym_preproc_if_token2] = ACTIONS(1361), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1361), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1361), + [aux_sym_preproc_else_token1] = ACTIONS(1361), + [aux_sym_preproc_elif_token1] = ACTIONS(1361), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1361), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1361), + [sym_preproc_directive] = ACTIONS(1361), + [anon_sym_LPAREN2] = ACTIONS(1363), + [anon_sym_BANG] = ACTIONS(1363), + [anon_sym_TILDE] = ACTIONS(1363), + [anon_sym_DASH] = ACTIONS(1361), + [anon_sym_PLUS] = ACTIONS(1361), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_AMP] = ACTIONS(1363), + [anon_sym_SEMI] = ACTIONS(1363), + [anon_sym___extension__] = ACTIONS(1361), + [anon_sym_typedef] = ACTIONS(1361), + [anon_sym_extern] = ACTIONS(1361), + [anon_sym___attribute__] = ACTIONS(1361), + [anon_sym___scanf] = ACTIONS(1361), + [anon_sym___printf] = ACTIONS(1361), + [anon_sym___read_mostly] = ACTIONS(1361), + [anon_sym___must_hold] = ACTIONS(1361), + [anon_sym___ro_after_init] = ACTIONS(1361), + [anon_sym___noreturn] = ACTIONS(1361), + [anon_sym___cold] = ACTIONS(1361), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1363), + [anon_sym___declspec] = ACTIONS(1361), + [anon_sym___init] = ACTIONS(1361), + [anon_sym___exit] = ACTIONS(1361), + [anon_sym___cdecl] = ACTIONS(1361), + [anon_sym___clrcall] = ACTIONS(1361), + [anon_sym___stdcall] = ACTIONS(1361), + [anon_sym___fastcall] = ACTIONS(1361), + [anon_sym___thiscall] = ACTIONS(1361), + [anon_sym___vectorcall] = ACTIONS(1361), + [anon_sym_LBRACE] = ACTIONS(1363), + [anon_sym_signed] = ACTIONS(1361), + [anon_sym_unsigned] = ACTIONS(1361), + [anon_sym_long] = ACTIONS(1361), + [anon_sym_short] = ACTIONS(1361), + [anon_sym_static] = ACTIONS(1361), + [anon_sym_auto] = ACTIONS(1361), + [anon_sym_register] = ACTIONS(1361), + [anon_sym_inline] = ACTIONS(1361), + [anon_sym___inline] = ACTIONS(1361), + [anon_sym___inline__] = ACTIONS(1361), + [anon_sym___forceinline] = ACTIONS(1361), + [anon_sym_thread_local] = ACTIONS(1361), + [anon_sym___thread] = ACTIONS(1361), + [anon_sym_const] = ACTIONS(1361), + [anon_sym_constexpr] = ACTIONS(1361), + [anon_sym_volatile] = ACTIONS(1361), + [anon_sym_restrict] = ACTIONS(1361), + [anon_sym___restrict__] = ACTIONS(1361), + [anon_sym__Atomic] = ACTIONS(1361), + [anon_sym__Noreturn] = ACTIONS(1361), + [anon_sym_noreturn] = ACTIONS(1361), + [anon_sym_alignas] = ACTIONS(1361), + [anon_sym__Alignas] = ACTIONS(1361), + [sym_primitive_type] = ACTIONS(1361), + [anon_sym_enum] = ACTIONS(1361), + [anon_sym_struct] = ACTIONS(1361), + [anon_sym_union] = ACTIONS(1361), + [anon_sym_if] = ACTIONS(1361), + [anon_sym_switch] = ACTIONS(1361), + [anon_sym_case] = ACTIONS(1361), + [anon_sym_default] = ACTIONS(1361), + [anon_sym_while] = ACTIONS(1361), + [anon_sym_do] = ACTIONS(1361), + [anon_sym_for] = ACTIONS(1361), + [anon_sym_return] = ACTIONS(1361), + [anon_sym_break] = ACTIONS(1361), + [anon_sym_continue] = ACTIONS(1361), + [anon_sym_goto] = ACTIONS(1361), + [anon_sym___try] = ACTIONS(1361), + [anon_sym___leave] = ACTIONS(1361), + [anon_sym_DASH_DASH] = ACTIONS(1363), + [anon_sym_PLUS_PLUS] = ACTIONS(1363), + [anon_sym_sizeof] = ACTIONS(1361), + [anon_sym___alignof__] = ACTIONS(1361), + [anon_sym___alignof] = ACTIONS(1361), + [anon_sym__alignof] = ACTIONS(1361), + [anon_sym_alignof] = ACTIONS(1361), + [anon_sym__Alignof] = ACTIONS(1361), + [anon_sym_offsetof] = ACTIONS(1361), + [anon_sym__Generic] = ACTIONS(1361), + [anon_sym_asm] = ACTIONS(1361), + [anon_sym___asm__] = ACTIONS(1361), + [sym_number_literal] = ACTIONS(1363), + [anon_sym_L_SQUOTE] = ACTIONS(1363), + [anon_sym_u_SQUOTE] = ACTIONS(1363), + [anon_sym_U_SQUOTE] = ACTIONS(1363), + [anon_sym_u8_SQUOTE] = ACTIONS(1363), + [anon_sym_SQUOTE] = ACTIONS(1363), + [anon_sym_L_DQUOTE] = ACTIONS(1363), + [anon_sym_u_DQUOTE] = ACTIONS(1363), + [anon_sym_U_DQUOTE] = ACTIONS(1363), + [anon_sym_u8_DQUOTE] = ACTIONS(1363), + [anon_sym_DQUOTE] = ACTIONS(1363), + [sym_true] = ACTIONS(1361), + [sym_false] = ACTIONS(1361), + [anon_sym_NULL] = ACTIONS(1361), + [anon_sym_nullptr] = ACTIONS(1361), + [sym_comment] = ACTIONS(3), + }, + [141] = { + [sym_identifier] = ACTIONS(1365), + [aux_sym_preproc_include_token1] = ACTIONS(1365), + [aux_sym_preproc_def_token1] = ACTIONS(1365), + [aux_sym_preproc_if_token1] = ACTIONS(1365), + [aux_sym_preproc_if_token2] = ACTIONS(1365), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1365), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1365), + [aux_sym_preproc_else_token1] = ACTIONS(1365), + [aux_sym_preproc_elif_token1] = ACTIONS(1365), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1365), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1365), + [sym_preproc_directive] = ACTIONS(1365), + [anon_sym_LPAREN2] = ACTIONS(1367), + [anon_sym_BANG] = ACTIONS(1367), + [anon_sym_TILDE] = ACTIONS(1367), + [anon_sym_DASH] = ACTIONS(1365), + [anon_sym_PLUS] = ACTIONS(1365), + [anon_sym_STAR] = ACTIONS(1367), + [anon_sym_AMP] = ACTIONS(1367), + [anon_sym_SEMI] = ACTIONS(1367), + [anon_sym___extension__] = ACTIONS(1365), + [anon_sym_typedef] = ACTIONS(1365), + [anon_sym_extern] = ACTIONS(1365), + [anon_sym___attribute__] = ACTIONS(1365), + [anon_sym___scanf] = ACTIONS(1365), + [anon_sym___printf] = ACTIONS(1365), + [anon_sym___read_mostly] = ACTIONS(1365), + [anon_sym___must_hold] = ACTIONS(1365), + [anon_sym___ro_after_init] = ACTIONS(1365), + [anon_sym___noreturn] = ACTIONS(1365), + [anon_sym___cold] = ACTIONS(1365), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1367), + [anon_sym___declspec] = ACTIONS(1365), + [anon_sym___init] = ACTIONS(1365), + [anon_sym___exit] = ACTIONS(1365), + [anon_sym___cdecl] = ACTIONS(1365), + [anon_sym___clrcall] = ACTIONS(1365), + [anon_sym___stdcall] = ACTIONS(1365), + [anon_sym___fastcall] = ACTIONS(1365), + [anon_sym___thiscall] = ACTIONS(1365), + [anon_sym___vectorcall] = ACTIONS(1365), + [anon_sym_LBRACE] = ACTIONS(1367), + [anon_sym_signed] = ACTIONS(1365), + [anon_sym_unsigned] = ACTIONS(1365), + [anon_sym_long] = ACTIONS(1365), + [anon_sym_short] = ACTIONS(1365), + [anon_sym_static] = ACTIONS(1365), + [anon_sym_auto] = ACTIONS(1365), + [anon_sym_register] = ACTIONS(1365), + [anon_sym_inline] = ACTIONS(1365), + [anon_sym___inline] = ACTIONS(1365), + [anon_sym___inline__] = ACTIONS(1365), + [anon_sym___forceinline] = ACTIONS(1365), + [anon_sym_thread_local] = ACTIONS(1365), + [anon_sym___thread] = ACTIONS(1365), + [anon_sym_const] = ACTIONS(1365), + [anon_sym_constexpr] = ACTIONS(1365), + [anon_sym_volatile] = ACTIONS(1365), + [anon_sym_restrict] = ACTIONS(1365), + [anon_sym___restrict__] = ACTIONS(1365), + [anon_sym__Atomic] = ACTIONS(1365), + [anon_sym__Noreturn] = ACTIONS(1365), + [anon_sym_noreturn] = ACTIONS(1365), + [anon_sym_alignas] = ACTIONS(1365), + [anon_sym__Alignas] = ACTIONS(1365), + [sym_primitive_type] = ACTIONS(1365), + [anon_sym_enum] = ACTIONS(1365), + [anon_sym_struct] = ACTIONS(1365), + [anon_sym_union] = ACTIONS(1365), + [anon_sym_if] = ACTIONS(1365), + [anon_sym_switch] = ACTIONS(1365), + [anon_sym_case] = ACTIONS(1365), + [anon_sym_default] = ACTIONS(1365), + [anon_sym_while] = ACTIONS(1365), + [anon_sym_do] = ACTIONS(1365), + [anon_sym_for] = ACTIONS(1365), + [anon_sym_return] = ACTIONS(1365), + [anon_sym_break] = ACTIONS(1365), + [anon_sym_continue] = ACTIONS(1365), + [anon_sym_goto] = ACTIONS(1365), + [anon_sym___try] = ACTIONS(1365), + [anon_sym___leave] = ACTIONS(1365), + [anon_sym_DASH_DASH] = ACTIONS(1367), + [anon_sym_PLUS_PLUS] = ACTIONS(1367), + [anon_sym_sizeof] = ACTIONS(1365), + [anon_sym___alignof__] = ACTIONS(1365), + [anon_sym___alignof] = ACTIONS(1365), + [anon_sym__alignof] = ACTIONS(1365), + [anon_sym_alignof] = ACTIONS(1365), + [anon_sym__Alignof] = ACTIONS(1365), + [anon_sym_offsetof] = ACTIONS(1365), + [anon_sym__Generic] = ACTIONS(1365), + [anon_sym_asm] = ACTIONS(1365), + [anon_sym___asm__] = ACTIONS(1365), + [sym_number_literal] = ACTIONS(1367), + [anon_sym_L_SQUOTE] = ACTIONS(1367), + [anon_sym_u_SQUOTE] = ACTIONS(1367), + [anon_sym_U_SQUOTE] = ACTIONS(1367), + [anon_sym_u8_SQUOTE] = ACTIONS(1367), + [anon_sym_SQUOTE] = ACTIONS(1367), + [anon_sym_L_DQUOTE] = ACTIONS(1367), + [anon_sym_u_DQUOTE] = ACTIONS(1367), + [anon_sym_U_DQUOTE] = ACTIONS(1367), + [anon_sym_u8_DQUOTE] = ACTIONS(1367), + [anon_sym_DQUOTE] = ACTIONS(1367), + [sym_true] = ACTIONS(1365), + [sym_false] = ACTIONS(1365), + [anon_sym_NULL] = ACTIONS(1365), + [anon_sym_nullptr] = ACTIONS(1365), + [sym_comment] = ACTIONS(3), + }, + [142] = { + [sym_identifier] = ACTIONS(1369), + [aux_sym_preproc_include_token1] = ACTIONS(1369), + [aux_sym_preproc_def_token1] = ACTIONS(1369), + [aux_sym_preproc_if_token1] = ACTIONS(1369), + [aux_sym_preproc_if_token2] = ACTIONS(1369), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1369), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1369), + [aux_sym_preproc_else_token1] = ACTIONS(1369), + [aux_sym_preproc_elif_token1] = ACTIONS(1369), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1369), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1369), + [sym_preproc_directive] = ACTIONS(1369), + [anon_sym_LPAREN2] = ACTIONS(1371), + [anon_sym_BANG] = ACTIONS(1371), + [anon_sym_TILDE] = ACTIONS(1371), + [anon_sym_DASH] = ACTIONS(1369), + [anon_sym_PLUS] = ACTIONS(1369), + [anon_sym_STAR] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1371), + [anon_sym_SEMI] = ACTIONS(1371), + [anon_sym___extension__] = ACTIONS(1369), + [anon_sym_typedef] = ACTIONS(1369), + [anon_sym_extern] = ACTIONS(1369), + [anon_sym___attribute__] = ACTIONS(1369), + [anon_sym___scanf] = ACTIONS(1369), + [anon_sym___printf] = ACTIONS(1369), + [anon_sym___read_mostly] = ACTIONS(1369), + [anon_sym___must_hold] = ACTIONS(1369), + [anon_sym___ro_after_init] = ACTIONS(1369), + [anon_sym___noreturn] = ACTIONS(1369), + [anon_sym___cold] = ACTIONS(1369), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1371), + [anon_sym___declspec] = ACTIONS(1369), + [anon_sym___init] = ACTIONS(1369), + [anon_sym___exit] = ACTIONS(1369), + [anon_sym___cdecl] = ACTIONS(1369), + [anon_sym___clrcall] = ACTIONS(1369), + [anon_sym___stdcall] = ACTIONS(1369), + [anon_sym___fastcall] = ACTIONS(1369), + [anon_sym___thiscall] = ACTIONS(1369), + [anon_sym___vectorcall] = ACTIONS(1369), + [anon_sym_LBRACE] = ACTIONS(1371), + [anon_sym_signed] = ACTIONS(1369), + [anon_sym_unsigned] = ACTIONS(1369), + [anon_sym_long] = ACTIONS(1369), + [anon_sym_short] = ACTIONS(1369), + [anon_sym_static] = ACTIONS(1369), + [anon_sym_auto] = ACTIONS(1369), + [anon_sym_register] = ACTIONS(1369), + [anon_sym_inline] = ACTIONS(1369), + [anon_sym___inline] = ACTIONS(1369), + [anon_sym___inline__] = ACTIONS(1369), + [anon_sym___forceinline] = ACTIONS(1369), + [anon_sym_thread_local] = ACTIONS(1369), + [anon_sym___thread] = ACTIONS(1369), + [anon_sym_const] = ACTIONS(1369), + [anon_sym_constexpr] = ACTIONS(1369), + [anon_sym_volatile] = ACTIONS(1369), + [anon_sym_restrict] = ACTIONS(1369), + [anon_sym___restrict__] = ACTIONS(1369), + [anon_sym__Atomic] = ACTIONS(1369), + [anon_sym__Noreturn] = ACTIONS(1369), + [anon_sym_noreturn] = ACTIONS(1369), + [anon_sym_alignas] = ACTIONS(1369), + [anon_sym__Alignas] = ACTIONS(1369), + [sym_primitive_type] = ACTIONS(1369), + [anon_sym_enum] = ACTIONS(1369), + [anon_sym_struct] = ACTIONS(1369), + [anon_sym_union] = ACTIONS(1369), + [anon_sym_if] = ACTIONS(1369), + [anon_sym_switch] = ACTIONS(1369), + [anon_sym_case] = ACTIONS(1369), + [anon_sym_default] = ACTIONS(1369), + [anon_sym_while] = ACTIONS(1369), + [anon_sym_do] = ACTIONS(1369), + [anon_sym_for] = ACTIONS(1369), + [anon_sym_return] = ACTIONS(1369), + [anon_sym_break] = ACTIONS(1369), + [anon_sym_continue] = ACTIONS(1369), + [anon_sym_goto] = ACTIONS(1369), + [anon_sym___try] = ACTIONS(1369), + [anon_sym___leave] = ACTIONS(1369), + [anon_sym_DASH_DASH] = ACTIONS(1371), + [anon_sym_PLUS_PLUS] = ACTIONS(1371), + [anon_sym_sizeof] = ACTIONS(1369), + [anon_sym___alignof__] = ACTIONS(1369), + [anon_sym___alignof] = ACTIONS(1369), + [anon_sym__alignof] = ACTIONS(1369), + [anon_sym_alignof] = ACTIONS(1369), + [anon_sym__Alignof] = ACTIONS(1369), + [anon_sym_offsetof] = ACTIONS(1369), + [anon_sym__Generic] = ACTIONS(1369), + [anon_sym_asm] = ACTIONS(1369), + [anon_sym___asm__] = ACTIONS(1369), + [sym_number_literal] = ACTIONS(1371), + [anon_sym_L_SQUOTE] = ACTIONS(1371), + [anon_sym_u_SQUOTE] = ACTIONS(1371), + [anon_sym_U_SQUOTE] = ACTIONS(1371), + [anon_sym_u8_SQUOTE] = ACTIONS(1371), + [anon_sym_SQUOTE] = ACTIONS(1371), + [anon_sym_L_DQUOTE] = ACTIONS(1371), + [anon_sym_u_DQUOTE] = ACTIONS(1371), + [anon_sym_U_DQUOTE] = ACTIONS(1371), + [anon_sym_u8_DQUOTE] = ACTIONS(1371), + [anon_sym_DQUOTE] = ACTIONS(1371), + [sym_true] = ACTIONS(1369), + [sym_false] = ACTIONS(1369), + [anon_sym_NULL] = ACTIONS(1369), + [anon_sym_nullptr] = ACTIONS(1369), + [sym_comment] = ACTIONS(3), + }, + [143] = { + [sym_identifier] = ACTIONS(1373), + [aux_sym_preproc_include_token1] = ACTIONS(1373), + [aux_sym_preproc_def_token1] = ACTIONS(1373), + [aux_sym_preproc_if_token1] = ACTIONS(1373), + [aux_sym_preproc_if_token2] = ACTIONS(1373), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1373), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1373), + [aux_sym_preproc_else_token1] = ACTIONS(1373), + [aux_sym_preproc_elif_token1] = ACTIONS(1373), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1373), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1373), + [sym_preproc_directive] = ACTIONS(1373), + [anon_sym_LPAREN2] = ACTIONS(1375), + [anon_sym_BANG] = ACTIONS(1375), + [anon_sym_TILDE] = ACTIONS(1375), + [anon_sym_DASH] = ACTIONS(1373), + [anon_sym_PLUS] = ACTIONS(1373), + [anon_sym_STAR] = ACTIONS(1375), + [anon_sym_AMP] = ACTIONS(1375), + [anon_sym_SEMI] = ACTIONS(1375), + [anon_sym___extension__] = ACTIONS(1373), + [anon_sym_typedef] = ACTIONS(1373), + [anon_sym_extern] = ACTIONS(1373), + [anon_sym___attribute__] = ACTIONS(1373), + [anon_sym___scanf] = ACTIONS(1373), + [anon_sym___printf] = ACTIONS(1373), + [anon_sym___read_mostly] = ACTIONS(1373), + [anon_sym___must_hold] = ACTIONS(1373), + [anon_sym___ro_after_init] = ACTIONS(1373), + [anon_sym___noreturn] = ACTIONS(1373), + [anon_sym___cold] = ACTIONS(1373), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1375), + [anon_sym___declspec] = ACTIONS(1373), + [anon_sym___init] = ACTIONS(1373), + [anon_sym___exit] = ACTIONS(1373), + [anon_sym___cdecl] = ACTIONS(1373), + [anon_sym___clrcall] = ACTIONS(1373), + [anon_sym___stdcall] = ACTIONS(1373), + [anon_sym___fastcall] = ACTIONS(1373), + [anon_sym___thiscall] = ACTIONS(1373), + [anon_sym___vectorcall] = ACTIONS(1373), + [anon_sym_LBRACE] = ACTIONS(1375), + [anon_sym_signed] = ACTIONS(1373), + [anon_sym_unsigned] = ACTIONS(1373), + [anon_sym_long] = ACTIONS(1373), + [anon_sym_short] = ACTIONS(1373), + [anon_sym_static] = ACTIONS(1373), + [anon_sym_auto] = ACTIONS(1373), + [anon_sym_register] = ACTIONS(1373), + [anon_sym_inline] = ACTIONS(1373), + [anon_sym___inline] = ACTIONS(1373), + [anon_sym___inline__] = ACTIONS(1373), + [anon_sym___forceinline] = ACTIONS(1373), + [anon_sym_thread_local] = ACTIONS(1373), + [anon_sym___thread] = ACTIONS(1373), + [anon_sym_const] = ACTIONS(1373), + [anon_sym_constexpr] = ACTIONS(1373), + [anon_sym_volatile] = ACTIONS(1373), + [anon_sym_restrict] = ACTIONS(1373), + [anon_sym___restrict__] = ACTIONS(1373), + [anon_sym__Atomic] = ACTIONS(1373), + [anon_sym__Noreturn] = ACTIONS(1373), + [anon_sym_noreturn] = ACTIONS(1373), + [anon_sym_alignas] = ACTIONS(1373), + [anon_sym__Alignas] = ACTIONS(1373), + [sym_primitive_type] = ACTIONS(1373), + [anon_sym_enum] = ACTIONS(1373), + [anon_sym_struct] = ACTIONS(1373), + [anon_sym_union] = ACTIONS(1373), + [anon_sym_if] = ACTIONS(1373), + [anon_sym_switch] = ACTIONS(1373), + [anon_sym_case] = ACTIONS(1373), + [anon_sym_default] = ACTIONS(1373), + [anon_sym_while] = ACTIONS(1373), + [anon_sym_do] = ACTIONS(1373), + [anon_sym_for] = ACTIONS(1373), + [anon_sym_return] = ACTIONS(1373), + [anon_sym_break] = ACTIONS(1373), + [anon_sym_continue] = ACTIONS(1373), + [anon_sym_goto] = ACTIONS(1373), + [anon_sym___try] = ACTIONS(1373), + [anon_sym___leave] = ACTIONS(1373), + [anon_sym_DASH_DASH] = ACTIONS(1375), + [anon_sym_PLUS_PLUS] = ACTIONS(1375), + [anon_sym_sizeof] = ACTIONS(1373), + [anon_sym___alignof__] = ACTIONS(1373), + [anon_sym___alignof] = ACTIONS(1373), + [anon_sym__alignof] = ACTIONS(1373), + [anon_sym_alignof] = ACTIONS(1373), + [anon_sym__Alignof] = ACTIONS(1373), + [anon_sym_offsetof] = ACTIONS(1373), + [anon_sym__Generic] = ACTIONS(1373), + [anon_sym_asm] = ACTIONS(1373), + [anon_sym___asm__] = ACTIONS(1373), + [sym_number_literal] = ACTIONS(1375), + [anon_sym_L_SQUOTE] = ACTIONS(1375), + [anon_sym_u_SQUOTE] = ACTIONS(1375), + [anon_sym_U_SQUOTE] = ACTIONS(1375), + [anon_sym_u8_SQUOTE] = ACTIONS(1375), + [anon_sym_SQUOTE] = ACTIONS(1375), + [anon_sym_L_DQUOTE] = ACTIONS(1375), + [anon_sym_u_DQUOTE] = ACTIONS(1375), + [anon_sym_U_DQUOTE] = ACTIONS(1375), + [anon_sym_u8_DQUOTE] = ACTIONS(1375), + [anon_sym_DQUOTE] = ACTIONS(1375), + [sym_true] = ACTIONS(1373), + [sym_false] = ACTIONS(1373), + [anon_sym_NULL] = ACTIONS(1373), + [anon_sym_nullptr] = ACTIONS(1373), + [sym_comment] = ACTIONS(3), + }, + [144] = { + [sym_identifier] = ACTIONS(1377), + [aux_sym_preproc_include_token1] = ACTIONS(1377), + [aux_sym_preproc_def_token1] = ACTIONS(1377), + [aux_sym_preproc_if_token1] = ACTIONS(1377), + [aux_sym_preproc_if_token2] = ACTIONS(1377), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1377), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1377), + [aux_sym_preproc_else_token1] = ACTIONS(1377), + [aux_sym_preproc_elif_token1] = ACTIONS(1377), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1377), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1377), + [sym_preproc_directive] = ACTIONS(1377), + [anon_sym_LPAREN2] = ACTIONS(1379), + [anon_sym_BANG] = ACTIONS(1379), + [anon_sym_TILDE] = ACTIONS(1379), + [anon_sym_DASH] = ACTIONS(1377), + [anon_sym_PLUS] = ACTIONS(1377), + [anon_sym_STAR] = ACTIONS(1379), + [anon_sym_AMP] = ACTIONS(1379), + [anon_sym_SEMI] = ACTIONS(1379), + [anon_sym___extension__] = ACTIONS(1377), + [anon_sym_typedef] = ACTIONS(1377), + [anon_sym_extern] = ACTIONS(1377), + [anon_sym___attribute__] = ACTIONS(1377), + [anon_sym___scanf] = ACTIONS(1377), + [anon_sym___printf] = ACTIONS(1377), + [anon_sym___read_mostly] = ACTIONS(1377), + [anon_sym___must_hold] = ACTIONS(1377), + [anon_sym___ro_after_init] = ACTIONS(1377), + [anon_sym___noreturn] = ACTIONS(1377), + [anon_sym___cold] = ACTIONS(1377), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1379), + [anon_sym___declspec] = ACTIONS(1377), + [anon_sym___init] = ACTIONS(1377), + [anon_sym___exit] = ACTIONS(1377), + [anon_sym___cdecl] = ACTIONS(1377), + [anon_sym___clrcall] = ACTIONS(1377), + [anon_sym___stdcall] = ACTIONS(1377), + [anon_sym___fastcall] = ACTIONS(1377), + [anon_sym___thiscall] = ACTIONS(1377), + [anon_sym___vectorcall] = ACTIONS(1377), + [anon_sym_LBRACE] = ACTIONS(1379), + [anon_sym_signed] = ACTIONS(1377), + [anon_sym_unsigned] = ACTIONS(1377), + [anon_sym_long] = ACTIONS(1377), + [anon_sym_short] = ACTIONS(1377), + [anon_sym_static] = ACTIONS(1377), + [anon_sym_auto] = ACTIONS(1377), + [anon_sym_register] = ACTIONS(1377), + [anon_sym_inline] = ACTIONS(1377), + [anon_sym___inline] = ACTIONS(1377), + [anon_sym___inline__] = ACTIONS(1377), + [anon_sym___forceinline] = ACTIONS(1377), + [anon_sym_thread_local] = ACTIONS(1377), + [anon_sym___thread] = ACTIONS(1377), + [anon_sym_const] = ACTIONS(1377), + [anon_sym_constexpr] = ACTIONS(1377), + [anon_sym_volatile] = ACTIONS(1377), + [anon_sym_restrict] = ACTIONS(1377), + [anon_sym___restrict__] = ACTIONS(1377), + [anon_sym__Atomic] = ACTIONS(1377), + [anon_sym__Noreturn] = ACTIONS(1377), + [anon_sym_noreturn] = ACTIONS(1377), + [anon_sym_alignas] = ACTIONS(1377), + [anon_sym__Alignas] = ACTIONS(1377), + [sym_primitive_type] = ACTIONS(1377), + [anon_sym_enum] = ACTIONS(1377), + [anon_sym_struct] = ACTIONS(1377), + [anon_sym_union] = ACTIONS(1377), + [anon_sym_if] = ACTIONS(1377), + [anon_sym_switch] = ACTIONS(1377), + [anon_sym_case] = ACTIONS(1377), + [anon_sym_default] = ACTIONS(1377), + [anon_sym_while] = ACTIONS(1377), + [anon_sym_do] = ACTIONS(1377), + [anon_sym_for] = ACTIONS(1377), + [anon_sym_return] = ACTIONS(1377), + [anon_sym_break] = ACTIONS(1377), + [anon_sym_continue] = ACTIONS(1377), + [anon_sym_goto] = ACTIONS(1377), + [anon_sym___try] = ACTIONS(1377), + [anon_sym___leave] = ACTIONS(1377), + [anon_sym_DASH_DASH] = ACTIONS(1379), + [anon_sym_PLUS_PLUS] = ACTIONS(1379), + [anon_sym_sizeof] = ACTIONS(1377), + [anon_sym___alignof__] = ACTIONS(1377), + [anon_sym___alignof] = ACTIONS(1377), + [anon_sym__alignof] = ACTIONS(1377), + [anon_sym_alignof] = ACTIONS(1377), + [anon_sym__Alignof] = ACTIONS(1377), + [anon_sym_offsetof] = ACTIONS(1377), + [anon_sym__Generic] = ACTIONS(1377), + [anon_sym_asm] = ACTIONS(1377), + [anon_sym___asm__] = ACTIONS(1377), + [sym_number_literal] = ACTIONS(1379), + [anon_sym_L_SQUOTE] = ACTIONS(1379), + [anon_sym_u_SQUOTE] = ACTIONS(1379), + [anon_sym_U_SQUOTE] = ACTIONS(1379), + [anon_sym_u8_SQUOTE] = ACTIONS(1379), + [anon_sym_SQUOTE] = ACTIONS(1379), + [anon_sym_L_DQUOTE] = ACTIONS(1379), + [anon_sym_u_DQUOTE] = ACTIONS(1379), + [anon_sym_U_DQUOTE] = ACTIONS(1379), + [anon_sym_u8_DQUOTE] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1379), + [sym_true] = ACTIONS(1377), + [sym_false] = ACTIONS(1377), + [anon_sym_NULL] = ACTIONS(1377), + [anon_sym_nullptr] = ACTIONS(1377), + [sym_comment] = ACTIONS(3), + }, + [145] = { + [sym_identifier] = ACTIONS(1381), + [aux_sym_preproc_include_token1] = ACTIONS(1381), + [aux_sym_preproc_def_token1] = ACTIONS(1381), + [aux_sym_preproc_if_token1] = ACTIONS(1381), + [aux_sym_preproc_if_token2] = ACTIONS(1381), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1381), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1381), + [aux_sym_preproc_else_token1] = ACTIONS(1381), + [aux_sym_preproc_elif_token1] = ACTIONS(1381), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1381), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1381), + [sym_preproc_directive] = ACTIONS(1381), + [anon_sym_LPAREN2] = ACTIONS(1383), + [anon_sym_BANG] = ACTIONS(1383), + [anon_sym_TILDE] = ACTIONS(1383), + [anon_sym_DASH] = ACTIONS(1381), + [anon_sym_PLUS] = ACTIONS(1381), + [anon_sym_STAR] = ACTIONS(1383), + [anon_sym_AMP] = ACTIONS(1383), + [anon_sym_SEMI] = ACTIONS(1383), + [anon_sym___extension__] = ACTIONS(1381), + [anon_sym_typedef] = ACTIONS(1381), + [anon_sym_extern] = ACTIONS(1381), + [anon_sym___attribute__] = ACTIONS(1381), + [anon_sym___scanf] = ACTIONS(1381), + [anon_sym___printf] = ACTIONS(1381), + [anon_sym___read_mostly] = ACTIONS(1381), + [anon_sym___must_hold] = ACTIONS(1381), + [anon_sym___ro_after_init] = ACTIONS(1381), + [anon_sym___noreturn] = ACTIONS(1381), + [anon_sym___cold] = ACTIONS(1381), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1383), + [anon_sym___declspec] = ACTIONS(1381), + [anon_sym___init] = ACTIONS(1381), + [anon_sym___exit] = ACTIONS(1381), + [anon_sym___cdecl] = ACTIONS(1381), + [anon_sym___clrcall] = ACTIONS(1381), + [anon_sym___stdcall] = ACTIONS(1381), + [anon_sym___fastcall] = ACTIONS(1381), + [anon_sym___thiscall] = ACTIONS(1381), + [anon_sym___vectorcall] = ACTIONS(1381), + [anon_sym_LBRACE] = ACTIONS(1383), + [anon_sym_signed] = ACTIONS(1381), + [anon_sym_unsigned] = ACTIONS(1381), + [anon_sym_long] = ACTIONS(1381), + [anon_sym_short] = ACTIONS(1381), + [anon_sym_static] = ACTIONS(1381), + [anon_sym_auto] = ACTIONS(1381), + [anon_sym_register] = ACTIONS(1381), + [anon_sym_inline] = ACTIONS(1381), + [anon_sym___inline] = ACTIONS(1381), + [anon_sym___inline__] = ACTIONS(1381), + [anon_sym___forceinline] = ACTIONS(1381), + [anon_sym_thread_local] = ACTIONS(1381), + [anon_sym___thread] = ACTIONS(1381), + [anon_sym_const] = ACTIONS(1381), + [anon_sym_constexpr] = ACTIONS(1381), + [anon_sym_volatile] = ACTIONS(1381), + [anon_sym_restrict] = ACTIONS(1381), + [anon_sym___restrict__] = ACTIONS(1381), + [anon_sym__Atomic] = ACTIONS(1381), + [anon_sym__Noreturn] = ACTIONS(1381), + [anon_sym_noreturn] = ACTIONS(1381), + [anon_sym_alignas] = ACTIONS(1381), + [anon_sym__Alignas] = ACTIONS(1381), + [sym_primitive_type] = ACTIONS(1381), + [anon_sym_enum] = ACTIONS(1381), + [anon_sym_struct] = ACTIONS(1381), + [anon_sym_union] = ACTIONS(1381), + [anon_sym_if] = ACTIONS(1381), + [anon_sym_switch] = ACTIONS(1381), + [anon_sym_case] = ACTIONS(1381), + [anon_sym_default] = ACTIONS(1381), + [anon_sym_while] = ACTIONS(1381), + [anon_sym_do] = ACTIONS(1381), + [anon_sym_for] = ACTIONS(1381), + [anon_sym_return] = ACTIONS(1381), + [anon_sym_break] = ACTIONS(1381), + [anon_sym_continue] = ACTIONS(1381), + [anon_sym_goto] = ACTIONS(1381), + [anon_sym___try] = ACTIONS(1381), + [anon_sym___leave] = ACTIONS(1381), + [anon_sym_DASH_DASH] = ACTIONS(1383), + [anon_sym_PLUS_PLUS] = ACTIONS(1383), + [anon_sym_sizeof] = ACTIONS(1381), + [anon_sym___alignof__] = ACTIONS(1381), + [anon_sym___alignof] = ACTIONS(1381), + [anon_sym__alignof] = ACTIONS(1381), + [anon_sym_alignof] = ACTIONS(1381), + [anon_sym__Alignof] = ACTIONS(1381), + [anon_sym_offsetof] = ACTIONS(1381), + [anon_sym__Generic] = ACTIONS(1381), + [anon_sym_asm] = ACTIONS(1381), + [anon_sym___asm__] = ACTIONS(1381), + [sym_number_literal] = ACTIONS(1383), + [anon_sym_L_SQUOTE] = ACTIONS(1383), + [anon_sym_u_SQUOTE] = ACTIONS(1383), + [anon_sym_U_SQUOTE] = ACTIONS(1383), + [anon_sym_u8_SQUOTE] = ACTIONS(1383), + [anon_sym_SQUOTE] = ACTIONS(1383), + [anon_sym_L_DQUOTE] = ACTIONS(1383), + [anon_sym_u_DQUOTE] = ACTIONS(1383), + [anon_sym_U_DQUOTE] = ACTIONS(1383), + [anon_sym_u8_DQUOTE] = ACTIONS(1383), + [anon_sym_DQUOTE] = ACTIONS(1383), + [sym_true] = ACTIONS(1381), + [sym_false] = ACTIONS(1381), + [anon_sym_NULL] = ACTIONS(1381), + [anon_sym_nullptr] = ACTIONS(1381), + [sym_comment] = ACTIONS(3), + }, + [146] = { + [sym_identifier] = ACTIONS(1385), + [aux_sym_preproc_include_token1] = ACTIONS(1385), + [aux_sym_preproc_def_token1] = ACTIONS(1385), + [aux_sym_preproc_if_token1] = ACTIONS(1385), + [aux_sym_preproc_if_token2] = ACTIONS(1385), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1385), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1385), + [aux_sym_preproc_else_token1] = ACTIONS(1385), + [aux_sym_preproc_elif_token1] = ACTIONS(1385), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1385), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1385), + [sym_preproc_directive] = ACTIONS(1385), + [anon_sym_LPAREN2] = ACTIONS(1387), + [anon_sym_BANG] = ACTIONS(1387), + [anon_sym_TILDE] = ACTIONS(1387), + [anon_sym_DASH] = ACTIONS(1385), + [anon_sym_PLUS] = ACTIONS(1385), + [anon_sym_STAR] = ACTIONS(1387), + [anon_sym_AMP] = ACTIONS(1387), + [anon_sym_SEMI] = ACTIONS(1387), + [anon_sym___extension__] = ACTIONS(1385), + [anon_sym_typedef] = ACTIONS(1385), + [anon_sym_extern] = ACTIONS(1385), + [anon_sym___attribute__] = ACTIONS(1385), + [anon_sym___scanf] = ACTIONS(1385), + [anon_sym___printf] = ACTIONS(1385), + [anon_sym___read_mostly] = ACTIONS(1385), + [anon_sym___must_hold] = ACTIONS(1385), + [anon_sym___ro_after_init] = ACTIONS(1385), + [anon_sym___noreturn] = ACTIONS(1385), + [anon_sym___cold] = ACTIONS(1385), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1387), + [anon_sym___declspec] = ACTIONS(1385), + [anon_sym___init] = ACTIONS(1385), + [anon_sym___exit] = ACTIONS(1385), + [anon_sym___cdecl] = ACTIONS(1385), + [anon_sym___clrcall] = ACTIONS(1385), + [anon_sym___stdcall] = ACTIONS(1385), + [anon_sym___fastcall] = ACTIONS(1385), + [anon_sym___thiscall] = ACTIONS(1385), + [anon_sym___vectorcall] = ACTIONS(1385), + [anon_sym_LBRACE] = ACTIONS(1387), + [anon_sym_signed] = ACTIONS(1385), + [anon_sym_unsigned] = ACTIONS(1385), + [anon_sym_long] = ACTIONS(1385), + [anon_sym_short] = ACTIONS(1385), + [anon_sym_static] = ACTIONS(1385), + [anon_sym_auto] = ACTIONS(1385), + [anon_sym_register] = ACTIONS(1385), + [anon_sym_inline] = ACTIONS(1385), + [anon_sym___inline] = ACTIONS(1385), + [anon_sym___inline__] = ACTIONS(1385), + [anon_sym___forceinline] = ACTIONS(1385), + [anon_sym_thread_local] = ACTIONS(1385), + [anon_sym___thread] = ACTIONS(1385), + [anon_sym_const] = ACTIONS(1385), + [anon_sym_constexpr] = ACTIONS(1385), + [anon_sym_volatile] = ACTIONS(1385), + [anon_sym_restrict] = ACTIONS(1385), + [anon_sym___restrict__] = ACTIONS(1385), + [anon_sym__Atomic] = ACTIONS(1385), + [anon_sym__Noreturn] = ACTIONS(1385), + [anon_sym_noreturn] = ACTIONS(1385), + [anon_sym_alignas] = ACTIONS(1385), + [anon_sym__Alignas] = ACTIONS(1385), + [sym_primitive_type] = ACTIONS(1385), + [anon_sym_enum] = ACTIONS(1385), + [anon_sym_struct] = ACTIONS(1385), + [anon_sym_union] = ACTIONS(1385), + [anon_sym_if] = ACTIONS(1385), + [anon_sym_switch] = ACTIONS(1385), + [anon_sym_case] = ACTIONS(1385), + [anon_sym_default] = ACTIONS(1385), + [anon_sym_while] = ACTIONS(1385), + [anon_sym_do] = ACTIONS(1385), + [anon_sym_for] = ACTIONS(1385), + [anon_sym_return] = ACTIONS(1385), + [anon_sym_break] = ACTIONS(1385), + [anon_sym_continue] = ACTIONS(1385), + [anon_sym_goto] = ACTIONS(1385), + [anon_sym___try] = ACTIONS(1385), + [anon_sym___leave] = ACTIONS(1385), + [anon_sym_DASH_DASH] = ACTIONS(1387), + [anon_sym_PLUS_PLUS] = ACTIONS(1387), + [anon_sym_sizeof] = ACTIONS(1385), + [anon_sym___alignof__] = ACTIONS(1385), + [anon_sym___alignof] = ACTIONS(1385), + [anon_sym__alignof] = ACTIONS(1385), + [anon_sym_alignof] = ACTIONS(1385), + [anon_sym__Alignof] = ACTIONS(1385), + [anon_sym_offsetof] = ACTIONS(1385), + [anon_sym__Generic] = ACTIONS(1385), + [anon_sym_asm] = ACTIONS(1385), + [anon_sym___asm__] = ACTIONS(1385), + [sym_number_literal] = ACTIONS(1387), + [anon_sym_L_SQUOTE] = ACTIONS(1387), + [anon_sym_u_SQUOTE] = ACTIONS(1387), + [anon_sym_U_SQUOTE] = ACTIONS(1387), + [anon_sym_u8_SQUOTE] = ACTIONS(1387), + [anon_sym_SQUOTE] = ACTIONS(1387), + [anon_sym_L_DQUOTE] = ACTIONS(1387), + [anon_sym_u_DQUOTE] = ACTIONS(1387), + [anon_sym_U_DQUOTE] = ACTIONS(1387), + [anon_sym_u8_DQUOTE] = ACTIONS(1387), + [anon_sym_DQUOTE] = ACTIONS(1387), + [sym_true] = ACTIONS(1385), + [sym_false] = ACTIONS(1385), + [anon_sym_NULL] = ACTIONS(1385), + [anon_sym_nullptr] = ACTIONS(1385), + [sym_comment] = ACTIONS(3), + }, + [147] = { + [sym_identifier] = ACTIONS(1389), + [aux_sym_preproc_include_token1] = ACTIONS(1389), + [aux_sym_preproc_def_token1] = ACTIONS(1389), + [aux_sym_preproc_if_token1] = ACTIONS(1389), + [aux_sym_preproc_if_token2] = ACTIONS(1389), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1389), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1389), + [aux_sym_preproc_else_token1] = ACTIONS(1389), + [aux_sym_preproc_elif_token1] = ACTIONS(1389), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1389), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1389), + [sym_preproc_directive] = ACTIONS(1389), + [anon_sym_LPAREN2] = ACTIONS(1391), + [anon_sym_BANG] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1391), + [anon_sym_DASH] = ACTIONS(1389), + [anon_sym_PLUS] = ACTIONS(1389), + [anon_sym_STAR] = ACTIONS(1391), + [anon_sym_AMP] = ACTIONS(1391), + [anon_sym_SEMI] = ACTIONS(1391), + [anon_sym___extension__] = ACTIONS(1389), + [anon_sym_typedef] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1389), + [anon_sym___attribute__] = ACTIONS(1389), + [anon_sym___scanf] = ACTIONS(1389), + [anon_sym___printf] = ACTIONS(1389), + [anon_sym___read_mostly] = ACTIONS(1389), + [anon_sym___must_hold] = ACTIONS(1389), + [anon_sym___ro_after_init] = ACTIONS(1389), + [anon_sym___noreturn] = ACTIONS(1389), + [anon_sym___cold] = ACTIONS(1389), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1391), + [anon_sym___declspec] = ACTIONS(1389), + [anon_sym___init] = ACTIONS(1389), + [anon_sym___exit] = ACTIONS(1389), + [anon_sym___cdecl] = ACTIONS(1389), + [anon_sym___clrcall] = ACTIONS(1389), + [anon_sym___stdcall] = ACTIONS(1389), + [anon_sym___fastcall] = ACTIONS(1389), + [anon_sym___thiscall] = ACTIONS(1389), + [anon_sym___vectorcall] = ACTIONS(1389), + [anon_sym_LBRACE] = ACTIONS(1391), + [anon_sym_signed] = ACTIONS(1389), + [anon_sym_unsigned] = ACTIONS(1389), + [anon_sym_long] = ACTIONS(1389), + [anon_sym_short] = ACTIONS(1389), + [anon_sym_static] = ACTIONS(1389), + [anon_sym_auto] = ACTIONS(1389), + [anon_sym_register] = ACTIONS(1389), + [anon_sym_inline] = ACTIONS(1389), + [anon_sym___inline] = ACTIONS(1389), + [anon_sym___inline__] = ACTIONS(1389), + [anon_sym___forceinline] = ACTIONS(1389), + [anon_sym_thread_local] = ACTIONS(1389), + [anon_sym___thread] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_constexpr] = ACTIONS(1389), + [anon_sym_volatile] = ACTIONS(1389), + [anon_sym_restrict] = ACTIONS(1389), + [anon_sym___restrict__] = ACTIONS(1389), + [anon_sym__Atomic] = ACTIONS(1389), + [anon_sym__Noreturn] = ACTIONS(1389), + [anon_sym_noreturn] = ACTIONS(1389), + [anon_sym_alignas] = ACTIONS(1389), + [anon_sym__Alignas] = ACTIONS(1389), + [sym_primitive_type] = ACTIONS(1389), + [anon_sym_enum] = ACTIONS(1389), + [anon_sym_struct] = ACTIONS(1389), + [anon_sym_union] = ACTIONS(1389), + [anon_sym_if] = ACTIONS(1389), + [anon_sym_switch] = ACTIONS(1389), + [anon_sym_case] = ACTIONS(1389), + [anon_sym_default] = ACTIONS(1389), + [anon_sym_while] = ACTIONS(1389), + [anon_sym_do] = ACTIONS(1389), + [anon_sym_for] = ACTIONS(1389), + [anon_sym_return] = ACTIONS(1389), + [anon_sym_break] = ACTIONS(1389), + [anon_sym_continue] = ACTIONS(1389), + [anon_sym_goto] = ACTIONS(1389), + [anon_sym___try] = ACTIONS(1389), + [anon_sym___leave] = ACTIONS(1389), + [anon_sym_DASH_DASH] = ACTIONS(1391), + [anon_sym_PLUS_PLUS] = ACTIONS(1391), + [anon_sym_sizeof] = ACTIONS(1389), + [anon_sym___alignof__] = ACTIONS(1389), + [anon_sym___alignof] = ACTIONS(1389), + [anon_sym__alignof] = ACTIONS(1389), + [anon_sym_alignof] = ACTIONS(1389), + [anon_sym__Alignof] = ACTIONS(1389), + [anon_sym_offsetof] = ACTIONS(1389), + [anon_sym__Generic] = ACTIONS(1389), + [anon_sym_asm] = ACTIONS(1389), + [anon_sym___asm__] = ACTIONS(1389), + [sym_number_literal] = ACTIONS(1391), + [anon_sym_L_SQUOTE] = ACTIONS(1391), + [anon_sym_u_SQUOTE] = ACTIONS(1391), + [anon_sym_U_SQUOTE] = ACTIONS(1391), + [anon_sym_u8_SQUOTE] = ACTIONS(1391), + [anon_sym_SQUOTE] = ACTIONS(1391), + [anon_sym_L_DQUOTE] = ACTIONS(1391), + [anon_sym_u_DQUOTE] = ACTIONS(1391), + [anon_sym_U_DQUOTE] = ACTIONS(1391), + [anon_sym_u8_DQUOTE] = ACTIONS(1391), + [anon_sym_DQUOTE] = ACTIONS(1391), + [sym_true] = ACTIONS(1389), + [sym_false] = ACTIONS(1389), + [anon_sym_NULL] = ACTIONS(1389), + [anon_sym_nullptr] = ACTIONS(1389), + [sym_comment] = ACTIONS(3), + }, + [148] = { + [sym_identifier] = ACTIONS(1393), + [aux_sym_preproc_include_token1] = ACTIONS(1393), + [aux_sym_preproc_def_token1] = ACTIONS(1393), + [aux_sym_preproc_if_token1] = ACTIONS(1393), + [aux_sym_preproc_if_token2] = ACTIONS(1393), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1393), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1393), + [aux_sym_preproc_else_token1] = ACTIONS(1393), + [aux_sym_preproc_elif_token1] = ACTIONS(1393), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1393), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1393), + [sym_preproc_directive] = ACTIONS(1393), + [anon_sym_LPAREN2] = ACTIONS(1395), + [anon_sym_BANG] = ACTIONS(1395), + [anon_sym_TILDE] = ACTIONS(1395), + [anon_sym_DASH] = ACTIONS(1393), + [anon_sym_PLUS] = ACTIONS(1393), + [anon_sym_STAR] = ACTIONS(1395), + [anon_sym_AMP] = ACTIONS(1395), + [anon_sym_SEMI] = ACTIONS(1395), + [anon_sym___extension__] = ACTIONS(1393), + [anon_sym_typedef] = ACTIONS(1393), + [anon_sym_extern] = ACTIONS(1393), + [anon_sym___attribute__] = ACTIONS(1393), + [anon_sym___scanf] = ACTIONS(1393), + [anon_sym___printf] = ACTIONS(1393), + [anon_sym___read_mostly] = ACTIONS(1393), + [anon_sym___must_hold] = ACTIONS(1393), + [anon_sym___ro_after_init] = ACTIONS(1393), + [anon_sym___noreturn] = ACTIONS(1393), + [anon_sym___cold] = ACTIONS(1393), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1395), + [anon_sym___declspec] = ACTIONS(1393), + [anon_sym___init] = ACTIONS(1393), + [anon_sym___exit] = ACTIONS(1393), + [anon_sym___cdecl] = ACTIONS(1393), + [anon_sym___clrcall] = ACTIONS(1393), + [anon_sym___stdcall] = ACTIONS(1393), + [anon_sym___fastcall] = ACTIONS(1393), + [anon_sym___thiscall] = ACTIONS(1393), + [anon_sym___vectorcall] = ACTIONS(1393), + [anon_sym_LBRACE] = ACTIONS(1395), + [anon_sym_signed] = ACTIONS(1393), + [anon_sym_unsigned] = ACTIONS(1393), + [anon_sym_long] = ACTIONS(1393), + [anon_sym_short] = ACTIONS(1393), + [anon_sym_static] = ACTIONS(1393), + [anon_sym_auto] = ACTIONS(1393), + [anon_sym_register] = ACTIONS(1393), + [anon_sym_inline] = ACTIONS(1393), + [anon_sym___inline] = ACTIONS(1393), + [anon_sym___inline__] = ACTIONS(1393), + [anon_sym___forceinline] = ACTIONS(1393), + [anon_sym_thread_local] = ACTIONS(1393), + [anon_sym___thread] = ACTIONS(1393), + [anon_sym_const] = ACTIONS(1393), + [anon_sym_constexpr] = ACTIONS(1393), + [anon_sym_volatile] = ACTIONS(1393), + [anon_sym_restrict] = ACTIONS(1393), + [anon_sym___restrict__] = ACTIONS(1393), + [anon_sym__Atomic] = ACTIONS(1393), + [anon_sym__Noreturn] = ACTIONS(1393), + [anon_sym_noreturn] = ACTIONS(1393), + [anon_sym_alignas] = ACTIONS(1393), + [anon_sym__Alignas] = ACTIONS(1393), + [sym_primitive_type] = ACTIONS(1393), + [anon_sym_enum] = ACTIONS(1393), + [anon_sym_struct] = ACTIONS(1393), + [anon_sym_union] = ACTIONS(1393), + [anon_sym_if] = ACTIONS(1393), + [anon_sym_switch] = ACTIONS(1393), + [anon_sym_case] = ACTIONS(1393), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_while] = ACTIONS(1393), + [anon_sym_do] = ACTIONS(1393), + [anon_sym_for] = ACTIONS(1393), + [anon_sym_return] = ACTIONS(1393), + [anon_sym_break] = ACTIONS(1393), + [anon_sym_continue] = ACTIONS(1393), + [anon_sym_goto] = ACTIONS(1393), + [anon_sym___try] = ACTIONS(1393), + [anon_sym___leave] = ACTIONS(1393), + [anon_sym_DASH_DASH] = ACTIONS(1395), + [anon_sym_PLUS_PLUS] = ACTIONS(1395), + [anon_sym_sizeof] = ACTIONS(1393), + [anon_sym___alignof__] = ACTIONS(1393), + [anon_sym___alignof] = ACTIONS(1393), + [anon_sym__alignof] = ACTIONS(1393), + [anon_sym_alignof] = ACTIONS(1393), + [anon_sym__Alignof] = ACTIONS(1393), + [anon_sym_offsetof] = ACTIONS(1393), + [anon_sym__Generic] = ACTIONS(1393), + [anon_sym_asm] = ACTIONS(1393), + [anon_sym___asm__] = ACTIONS(1393), + [sym_number_literal] = ACTIONS(1395), + [anon_sym_L_SQUOTE] = ACTIONS(1395), + [anon_sym_u_SQUOTE] = ACTIONS(1395), + [anon_sym_U_SQUOTE] = ACTIONS(1395), + [anon_sym_u8_SQUOTE] = ACTIONS(1395), + [anon_sym_SQUOTE] = ACTIONS(1395), + [anon_sym_L_DQUOTE] = ACTIONS(1395), + [anon_sym_u_DQUOTE] = ACTIONS(1395), + [anon_sym_U_DQUOTE] = ACTIONS(1395), + [anon_sym_u8_DQUOTE] = ACTIONS(1395), + [anon_sym_DQUOTE] = ACTIONS(1395), + [sym_true] = ACTIONS(1393), + [sym_false] = ACTIONS(1393), + [anon_sym_NULL] = ACTIONS(1393), + [anon_sym_nullptr] = ACTIONS(1393), + [sym_comment] = ACTIONS(3), + }, + [149] = { + [sym_identifier] = ACTIONS(1397), + [aux_sym_preproc_include_token1] = ACTIONS(1397), + [aux_sym_preproc_def_token1] = ACTIONS(1397), + [aux_sym_preproc_if_token1] = ACTIONS(1397), + [aux_sym_preproc_if_token2] = ACTIONS(1397), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1397), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1397), + [aux_sym_preproc_else_token1] = ACTIONS(1397), + [aux_sym_preproc_elif_token1] = ACTIONS(1397), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1397), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1397), + [sym_preproc_directive] = ACTIONS(1397), + [anon_sym_LPAREN2] = ACTIONS(1399), + [anon_sym_BANG] = ACTIONS(1399), + [anon_sym_TILDE] = ACTIONS(1399), + [anon_sym_DASH] = ACTIONS(1397), + [anon_sym_PLUS] = ACTIONS(1397), + [anon_sym_STAR] = ACTIONS(1399), + [anon_sym_AMP] = ACTIONS(1399), + [anon_sym_SEMI] = ACTIONS(1399), + [anon_sym___extension__] = ACTIONS(1397), + [anon_sym_typedef] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1397), + [anon_sym___attribute__] = ACTIONS(1397), + [anon_sym___scanf] = ACTIONS(1397), + [anon_sym___printf] = ACTIONS(1397), + [anon_sym___read_mostly] = ACTIONS(1397), + [anon_sym___must_hold] = ACTIONS(1397), + [anon_sym___ro_after_init] = ACTIONS(1397), + [anon_sym___noreturn] = ACTIONS(1397), + [anon_sym___cold] = ACTIONS(1397), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1399), + [anon_sym___declspec] = ACTIONS(1397), + [anon_sym___init] = ACTIONS(1397), + [anon_sym___exit] = ACTIONS(1397), + [anon_sym___cdecl] = ACTIONS(1397), + [anon_sym___clrcall] = ACTIONS(1397), + [anon_sym___stdcall] = ACTIONS(1397), + [anon_sym___fastcall] = ACTIONS(1397), + [anon_sym___thiscall] = ACTIONS(1397), + [anon_sym___vectorcall] = ACTIONS(1397), + [anon_sym_LBRACE] = ACTIONS(1399), + [anon_sym_signed] = ACTIONS(1397), + [anon_sym_unsigned] = ACTIONS(1397), + [anon_sym_long] = ACTIONS(1397), + [anon_sym_short] = ACTIONS(1397), + [anon_sym_static] = ACTIONS(1397), + [anon_sym_auto] = ACTIONS(1397), + [anon_sym_register] = ACTIONS(1397), + [anon_sym_inline] = ACTIONS(1397), + [anon_sym___inline] = ACTIONS(1397), + [anon_sym___inline__] = ACTIONS(1397), + [anon_sym___forceinline] = ACTIONS(1397), + [anon_sym_thread_local] = ACTIONS(1397), + [anon_sym___thread] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_constexpr] = ACTIONS(1397), + [anon_sym_volatile] = ACTIONS(1397), + [anon_sym_restrict] = ACTIONS(1397), + [anon_sym___restrict__] = ACTIONS(1397), + [anon_sym__Atomic] = ACTIONS(1397), + [anon_sym__Noreturn] = ACTIONS(1397), + [anon_sym_noreturn] = ACTIONS(1397), + [anon_sym_alignas] = ACTIONS(1397), + [anon_sym__Alignas] = ACTIONS(1397), + [sym_primitive_type] = ACTIONS(1397), + [anon_sym_enum] = ACTIONS(1397), + [anon_sym_struct] = ACTIONS(1397), + [anon_sym_union] = ACTIONS(1397), + [anon_sym_if] = ACTIONS(1397), + [anon_sym_switch] = ACTIONS(1397), + [anon_sym_case] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(1397), + [anon_sym_while] = ACTIONS(1397), + [anon_sym_do] = ACTIONS(1397), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_return] = ACTIONS(1397), + [anon_sym_break] = ACTIONS(1397), + [anon_sym_continue] = ACTIONS(1397), + [anon_sym_goto] = ACTIONS(1397), + [anon_sym___try] = ACTIONS(1397), + [anon_sym___leave] = ACTIONS(1397), + [anon_sym_DASH_DASH] = ACTIONS(1399), + [anon_sym_PLUS_PLUS] = ACTIONS(1399), + [anon_sym_sizeof] = ACTIONS(1397), + [anon_sym___alignof__] = ACTIONS(1397), + [anon_sym___alignof] = ACTIONS(1397), + [anon_sym__alignof] = ACTIONS(1397), + [anon_sym_alignof] = ACTIONS(1397), + [anon_sym__Alignof] = ACTIONS(1397), + [anon_sym_offsetof] = ACTIONS(1397), + [anon_sym__Generic] = ACTIONS(1397), + [anon_sym_asm] = ACTIONS(1397), + [anon_sym___asm__] = ACTIONS(1397), + [sym_number_literal] = ACTIONS(1399), + [anon_sym_L_SQUOTE] = ACTIONS(1399), + [anon_sym_u_SQUOTE] = ACTIONS(1399), + [anon_sym_U_SQUOTE] = ACTIONS(1399), + [anon_sym_u8_SQUOTE] = ACTIONS(1399), + [anon_sym_SQUOTE] = ACTIONS(1399), + [anon_sym_L_DQUOTE] = ACTIONS(1399), + [anon_sym_u_DQUOTE] = ACTIONS(1399), + [anon_sym_U_DQUOTE] = ACTIONS(1399), + [anon_sym_u8_DQUOTE] = ACTIONS(1399), + [anon_sym_DQUOTE] = ACTIONS(1399), + [sym_true] = ACTIONS(1397), + [sym_false] = ACTIONS(1397), + [anon_sym_NULL] = ACTIONS(1397), + [anon_sym_nullptr] = ACTIONS(1397), + [sym_comment] = ACTIONS(3), + }, + [150] = { + [sym_identifier] = ACTIONS(1325), + [aux_sym_preproc_include_token1] = ACTIONS(1325), + [aux_sym_preproc_def_token1] = ACTIONS(1325), + [aux_sym_preproc_if_token1] = ACTIONS(1325), + [aux_sym_preproc_if_token2] = ACTIONS(1325), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1325), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1325), + [aux_sym_preproc_else_token1] = ACTIONS(1325), + [aux_sym_preproc_elif_token1] = ACTIONS(1325), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1325), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1325), + [sym_preproc_directive] = ACTIONS(1325), + [anon_sym_LPAREN2] = ACTIONS(1327), + [anon_sym_BANG] = ACTIONS(1327), + [anon_sym_TILDE] = ACTIONS(1327), + [anon_sym_DASH] = ACTIONS(1325), + [anon_sym_PLUS] = ACTIONS(1325), + [anon_sym_STAR] = ACTIONS(1327), + [anon_sym_AMP] = ACTIONS(1327), + [anon_sym_SEMI] = ACTIONS(1327), + [anon_sym___extension__] = ACTIONS(1325), + [anon_sym_typedef] = ACTIONS(1325), + [anon_sym_extern] = ACTIONS(1325), + [anon_sym___attribute__] = ACTIONS(1325), + [anon_sym___scanf] = ACTIONS(1325), + [anon_sym___printf] = ACTIONS(1325), + [anon_sym___read_mostly] = ACTIONS(1325), + [anon_sym___must_hold] = ACTIONS(1325), + [anon_sym___ro_after_init] = ACTIONS(1325), + [anon_sym___noreturn] = ACTIONS(1325), + [anon_sym___cold] = ACTIONS(1325), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1327), + [anon_sym___declspec] = ACTIONS(1325), + [anon_sym___init] = ACTIONS(1325), + [anon_sym___exit] = ACTIONS(1325), + [anon_sym___cdecl] = ACTIONS(1325), + [anon_sym___clrcall] = ACTIONS(1325), + [anon_sym___stdcall] = ACTIONS(1325), + [anon_sym___fastcall] = ACTIONS(1325), + [anon_sym___thiscall] = ACTIONS(1325), + [anon_sym___vectorcall] = ACTIONS(1325), + [anon_sym_LBRACE] = ACTIONS(1327), + [anon_sym_signed] = ACTIONS(1325), + [anon_sym_unsigned] = ACTIONS(1325), + [anon_sym_long] = ACTIONS(1325), + [anon_sym_short] = ACTIONS(1325), + [anon_sym_static] = ACTIONS(1325), + [anon_sym_auto] = ACTIONS(1325), + [anon_sym_register] = ACTIONS(1325), + [anon_sym_inline] = ACTIONS(1325), + [anon_sym___inline] = ACTIONS(1325), + [anon_sym___inline__] = ACTIONS(1325), + [anon_sym___forceinline] = ACTIONS(1325), + [anon_sym_thread_local] = ACTIONS(1325), + [anon_sym___thread] = ACTIONS(1325), + [anon_sym_const] = ACTIONS(1325), + [anon_sym_constexpr] = ACTIONS(1325), + [anon_sym_volatile] = ACTIONS(1325), + [anon_sym_restrict] = ACTIONS(1325), + [anon_sym___restrict__] = ACTIONS(1325), + [anon_sym__Atomic] = ACTIONS(1325), + [anon_sym__Noreturn] = ACTIONS(1325), + [anon_sym_noreturn] = ACTIONS(1325), + [anon_sym_alignas] = ACTIONS(1325), + [anon_sym__Alignas] = ACTIONS(1325), + [sym_primitive_type] = ACTIONS(1325), + [anon_sym_enum] = ACTIONS(1325), + [anon_sym_struct] = ACTIONS(1325), + [anon_sym_union] = ACTIONS(1325), + [anon_sym_if] = ACTIONS(1325), + [anon_sym_switch] = ACTIONS(1325), + [anon_sym_case] = ACTIONS(1325), + [anon_sym_default] = ACTIONS(1325), + [anon_sym_while] = ACTIONS(1325), + [anon_sym_do] = ACTIONS(1325), + [anon_sym_for] = ACTIONS(1325), + [anon_sym_return] = ACTIONS(1325), + [anon_sym_break] = ACTIONS(1325), + [anon_sym_continue] = ACTIONS(1325), + [anon_sym_goto] = ACTIONS(1325), + [anon_sym___try] = ACTIONS(1325), + [anon_sym___leave] = ACTIONS(1325), + [anon_sym_DASH_DASH] = ACTIONS(1327), + [anon_sym_PLUS_PLUS] = ACTIONS(1327), + [anon_sym_sizeof] = ACTIONS(1325), + [anon_sym___alignof__] = ACTIONS(1325), + [anon_sym___alignof] = ACTIONS(1325), + [anon_sym__alignof] = ACTIONS(1325), + [anon_sym_alignof] = ACTIONS(1325), + [anon_sym__Alignof] = ACTIONS(1325), + [anon_sym_offsetof] = ACTIONS(1325), + [anon_sym__Generic] = ACTIONS(1325), + [anon_sym_asm] = ACTIONS(1325), + [anon_sym___asm__] = ACTIONS(1325), + [sym_number_literal] = ACTIONS(1327), + [anon_sym_L_SQUOTE] = ACTIONS(1327), + [anon_sym_u_SQUOTE] = ACTIONS(1327), + [anon_sym_U_SQUOTE] = ACTIONS(1327), + [anon_sym_u8_SQUOTE] = ACTIONS(1327), + [anon_sym_SQUOTE] = ACTIONS(1327), + [anon_sym_L_DQUOTE] = ACTIONS(1327), + [anon_sym_u_DQUOTE] = ACTIONS(1327), + [anon_sym_U_DQUOTE] = ACTIONS(1327), + [anon_sym_u8_DQUOTE] = ACTIONS(1327), + [anon_sym_DQUOTE] = ACTIONS(1327), + [sym_true] = ACTIONS(1325), + [sym_false] = ACTIONS(1325), + [anon_sym_NULL] = ACTIONS(1325), + [anon_sym_nullptr] = ACTIONS(1325), + [sym_comment] = ACTIONS(3), + }, + [151] = { + [sym_identifier] = ACTIONS(1401), + [aux_sym_preproc_include_token1] = ACTIONS(1401), + [aux_sym_preproc_def_token1] = ACTIONS(1401), + [aux_sym_preproc_if_token1] = ACTIONS(1401), + [aux_sym_preproc_if_token2] = ACTIONS(1401), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1401), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1401), + [aux_sym_preproc_else_token1] = ACTIONS(1401), + [aux_sym_preproc_elif_token1] = ACTIONS(1401), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1401), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1401), + [sym_preproc_directive] = ACTIONS(1401), + [anon_sym_LPAREN2] = ACTIONS(1404), + [anon_sym_BANG] = ACTIONS(1404), + [anon_sym_TILDE] = ACTIONS(1404), + [anon_sym_DASH] = ACTIONS(1401), + [anon_sym_PLUS] = ACTIONS(1401), + [anon_sym_STAR] = ACTIONS(1404), + [anon_sym_AMP] = ACTIONS(1404), + [anon_sym_SEMI] = ACTIONS(1404), + [anon_sym___extension__] = ACTIONS(1401), + [anon_sym_typedef] = ACTIONS(1401), + [anon_sym_extern] = ACTIONS(1401), + [anon_sym___attribute__] = ACTIONS(1401), + [anon_sym___scanf] = ACTIONS(1401), + [anon_sym___printf] = ACTIONS(1401), + [anon_sym___read_mostly] = ACTIONS(1401), + [anon_sym___must_hold] = ACTIONS(1401), + [anon_sym___ro_after_init] = ACTIONS(1401), + [anon_sym___noreturn] = ACTIONS(1401), + [anon_sym___cold] = ACTIONS(1401), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1404), + [anon_sym___declspec] = ACTIONS(1401), + [anon_sym___init] = ACTIONS(1401), + [anon_sym___exit] = ACTIONS(1401), + [anon_sym___cdecl] = ACTIONS(1401), + [anon_sym___clrcall] = ACTIONS(1401), + [anon_sym___stdcall] = ACTIONS(1401), + [anon_sym___fastcall] = ACTIONS(1401), + [anon_sym___thiscall] = ACTIONS(1401), + [anon_sym___vectorcall] = ACTIONS(1401), + [anon_sym_LBRACE] = ACTIONS(1404), + [anon_sym_signed] = ACTIONS(1401), + [anon_sym_unsigned] = ACTIONS(1401), + [anon_sym_long] = ACTIONS(1401), + [anon_sym_short] = ACTIONS(1401), + [anon_sym_static] = ACTIONS(1401), + [anon_sym_auto] = ACTIONS(1401), + [anon_sym_register] = ACTIONS(1401), + [anon_sym_inline] = ACTIONS(1401), + [anon_sym___inline] = ACTIONS(1401), + [anon_sym___inline__] = ACTIONS(1401), + [anon_sym___forceinline] = ACTIONS(1401), + [anon_sym_thread_local] = ACTIONS(1401), + [anon_sym___thread] = ACTIONS(1401), + [anon_sym_const] = ACTIONS(1401), + [anon_sym_constexpr] = ACTIONS(1401), + [anon_sym_volatile] = ACTIONS(1401), + [anon_sym_restrict] = ACTIONS(1401), + [anon_sym___restrict__] = ACTIONS(1401), + [anon_sym__Atomic] = ACTIONS(1401), + [anon_sym__Noreturn] = ACTIONS(1401), + [anon_sym_noreturn] = ACTIONS(1401), + [anon_sym_alignas] = ACTIONS(1401), + [anon_sym__Alignas] = ACTIONS(1401), + [sym_primitive_type] = ACTIONS(1401), + [anon_sym_enum] = ACTIONS(1401), + [anon_sym_struct] = ACTIONS(1401), + [anon_sym_union] = ACTIONS(1401), + [anon_sym_if] = ACTIONS(1401), + [anon_sym_switch] = ACTIONS(1401), + [anon_sym_case] = ACTIONS(1401), + [anon_sym_default] = ACTIONS(1401), + [anon_sym_while] = ACTIONS(1401), + [anon_sym_do] = ACTIONS(1401), + [anon_sym_for] = ACTIONS(1401), + [anon_sym_return] = ACTIONS(1401), + [anon_sym_break] = ACTIONS(1401), + [anon_sym_continue] = ACTIONS(1401), + [anon_sym_goto] = ACTIONS(1401), + [anon_sym___try] = ACTIONS(1401), + [anon_sym___leave] = ACTIONS(1401), + [anon_sym_DASH_DASH] = ACTIONS(1404), + [anon_sym_PLUS_PLUS] = ACTIONS(1404), + [anon_sym_sizeof] = ACTIONS(1401), + [anon_sym___alignof__] = ACTIONS(1401), + [anon_sym___alignof] = ACTIONS(1401), + [anon_sym__alignof] = ACTIONS(1401), + [anon_sym_alignof] = ACTIONS(1401), + [anon_sym__Alignof] = ACTIONS(1401), + [anon_sym_offsetof] = ACTIONS(1401), + [anon_sym__Generic] = ACTIONS(1401), + [anon_sym_asm] = ACTIONS(1401), + [anon_sym___asm__] = ACTIONS(1401), + [sym_number_literal] = ACTIONS(1404), + [anon_sym_L_SQUOTE] = ACTIONS(1404), + [anon_sym_u_SQUOTE] = ACTIONS(1404), + [anon_sym_U_SQUOTE] = ACTIONS(1404), + [anon_sym_u8_SQUOTE] = ACTIONS(1404), + [anon_sym_SQUOTE] = ACTIONS(1404), + [anon_sym_L_DQUOTE] = ACTIONS(1404), + [anon_sym_u_DQUOTE] = ACTIONS(1404), + [anon_sym_U_DQUOTE] = ACTIONS(1404), + [anon_sym_u8_DQUOTE] = ACTIONS(1404), + [anon_sym_DQUOTE] = ACTIONS(1404), + [sym_true] = ACTIONS(1401), + [sym_false] = ACTIONS(1401), + [anon_sym_NULL] = ACTIONS(1401), + [anon_sym_nullptr] = ACTIONS(1401), + [sym_comment] = ACTIONS(3), + }, + [152] = { + [sym_identifier] = ACTIONS(1407), + [aux_sym_preproc_include_token1] = ACTIONS(1407), + [aux_sym_preproc_def_token1] = ACTIONS(1407), + [aux_sym_preproc_if_token1] = ACTIONS(1407), + [aux_sym_preproc_if_token2] = ACTIONS(1407), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1407), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1407), + [aux_sym_preproc_else_token1] = ACTIONS(1407), + [aux_sym_preproc_elif_token1] = ACTIONS(1407), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1407), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1407), + [sym_preproc_directive] = ACTIONS(1407), + [anon_sym_LPAREN2] = ACTIONS(1409), + [anon_sym_BANG] = ACTIONS(1409), + [anon_sym_TILDE] = ACTIONS(1409), + [anon_sym_DASH] = ACTIONS(1407), + [anon_sym_PLUS] = ACTIONS(1407), + [anon_sym_STAR] = ACTIONS(1409), + [anon_sym_AMP] = ACTIONS(1409), + [anon_sym_SEMI] = ACTIONS(1409), + [anon_sym___extension__] = ACTIONS(1407), + [anon_sym_typedef] = ACTIONS(1407), + [anon_sym_extern] = ACTIONS(1407), + [anon_sym___attribute__] = ACTIONS(1407), + [anon_sym___scanf] = ACTIONS(1407), + [anon_sym___printf] = ACTIONS(1407), + [anon_sym___read_mostly] = ACTIONS(1407), + [anon_sym___must_hold] = ACTIONS(1407), + [anon_sym___ro_after_init] = ACTIONS(1407), + [anon_sym___noreturn] = ACTIONS(1407), + [anon_sym___cold] = ACTIONS(1407), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1409), + [anon_sym___declspec] = ACTIONS(1407), + [anon_sym___init] = ACTIONS(1407), + [anon_sym___exit] = ACTIONS(1407), + [anon_sym___cdecl] = ACTIONS(1407), + [anon_sym___clrcall] = ACTIONS(1407), + [anon_sym___stdcall] = ACTIONS(1407), + [anon_sym___fastcall] = ACTIONS(1407), + [anon_sym___thiscall] = ACTIONS(1407), + [anon_sym___vectorcall] = ACTIONS(1407), + [anon_sym_LBRACE] = ACTIONS(1409), + [anon_sym_signed] = ACTIONS(1407), + [anon_sym_unsigned] = ACTIONS(1407), + [anon_sym_long] = ACTIONS(1407), + [anon_sym_short] = ACTIONS(1407), + [anon_sym_static] = ACTIONS(1407), + [anon_sym_auto] = ACTIONS(1407), + [anon_sym_register] = ACTIONS(1407), + [anon_sym_inline] = ACTIONS(1407), + [anon_sym___inline] = ACTIONS(1407), + [anon_sym___inline__] = ACTIONS(1407), + [anon_sym___forceinline] = ACTIONS(1407), + [anon_sym_thread_local] = ACTIONS(1407), + [anon_sym___thread] = ACTIONS(1407), + [anon_sym_const] = ACTIONS(1407), + [anon_sym_constexpr] = ACTIONS(1407), + [anon_sym_volatile] = ACTIONS(1407), + [anon_sym_restrict] = ACTIONS(1407), + [anon_sym___restrict__] = ACTIONS(1407), + [anon_sym__Atomic] = ACTIONS(1407), + [anon_sym__Noreturn] = ACTIONS(1407), + [anon_sym_noreturn] = ACTIONS(1407), + [anon_sym_alignas] = ACTIONS(1407), + [anon_sym__Alignas] = ACTIONS(1407), + [sym_primitive_type] = ACTIONS(1407), + [anon_sym_enum] = ACTIONS(1407), + [anon_sym_struct] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1407), + [anon_sym_if] = ACTIONS(1407), + [anon_sym_switch] = ACTIONS(1407), + [anon_sym_case] = ACTIONS(1407), + [anon_sym_default] = ACTIONS(1407), + [anon_sym_while] = ACTIONS(1407), + [anon_sym_do] = ACTIONS(1407), + [anon_sym_for] = ACTIONS(1407), + [anon_sym_return] = ACTIONS(1407), + [anon_sym_break] = ACTIONS(1407), + [anon_sym_continue] = ACTIONS(1407), + [anon_sym_goto] = ACTIONS(1407), + [anon_sym___try] = ACTIONS(1407), + [anon_sym___leave] = ACTIONS(1407), + [anon_sym_DASH_DASH] = ACTIONS(1409), + [anon_sym_PLUS_PLUS] = ACTIONS(1409), + [anon_sym_sizeof] = ACTIONS(1407), + [anon_sym___alignof__] = ACTIONS(1407), + [anon_sym___alignof] = ACTIONS(1407), + [anon_sym__alignof] = ACTIONS(1407), + [anon_sym_alignof] = ACTIONS(1407), + [anon_sym__Alignof] = ACTIONS(1407), + [anon_sym_offsetof] = ACTIONS(1407), + [anon_sym__Generic] = ACTIONS(1407), + [anon_sym_asm] = ACTIONS(1407), + [anon_sym___asm__] = ACTIONS(1407), + [sym_number_literal] = ACTIONS(1409), + [anon_sym_L_SQUOTE] = ACTIONS(1409), + [anon_sym_u_SQUOTE] = ACTIONS(1409), + [anon_sym_U_SQUOTE] = ACTIONS(1409), + [anon_sym_u8_SQUOTE] = ACTIONS(1409), + [anon_sym_SQUOTE] = ACTIONS(1409), + [anon_sym_L_DQUOTE] = ACTIONS(1409), + [anon_sym_u_DQUOTE] = ACTIONS(1409), + [anon_sym_U_DQUOTE] = ACTIONS(1409), + [anon_sym_u8_DQUOTE] = ACTIONS(1409), + [anon_sym_DQUOTE] = ACTIONS(1409), + [sym_true] = ACTIONS(1407), + [sym_false] = ACTIONS(1407), + [anon_sym_NULL] = ACTIONS(1407), + [anon_sym_nullptr] = ACTIONS(1407), + [sym_comment] = ACTIONS(3), + }, + [153] = { + [sym_identifier] = ACTIONS(1289), + [aux_sym_preproc_include_token1] = ACTIONS(1289), + [aux_sym_preproc_def_token1] = ACTIONS(1289), + [aux_sym_preproc_if_token1] = ACTIONS(1289), + [aux_sym_preproc_if_token2] = ACTIONS(1289), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1289), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1289), + [aux_sym_preproc_else_token1] = ACTIONS(1289), + [aux_sym_preproc_elif_token1] = ACTIONS(1289), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1289), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1289), + [sym_preproc_directive] = ACTIONS(1289), + [anon_sym_LPAREN2] = ACTIONS(1291), + [anon_sym_BANG] = ACTIONS(1291), + [anon_sym_TILDE] = ACTIONS(1291), + [anon_sym_DASH] = ACTIONS(1289), + [anon_sym_PLUS] = ACTIONS(1289), + [anon_sym_STAR] = ACTIONS(1291), + [anon_sym_AMP] = ACTIONS(1291), + [anon_sym_SEMI] = ACTIONS(1291), + [anon_sym___extension__] = ACTIONS(1289), + [anon_sym_typedef] = ACTIONS(1289), + [anon_sym_extern] = ACTIONS(1289), + [anon_sym___attribute__] = ACTIONS(1289), + [anon_sym___scanf] = ACTIONS(1289), + [anon_sym___printf] = ACTIONS(1289), + [anon_sym___read_mostly] = ACTIONS(1289), + [anon_sym___must_hold] = ACTIONS(1289), + [anon_sym___ro_after_init] = ACTIONS(1289), + [anon_sym___noreturn] = ACTIONS(1289), + [anon_sym___cold] = ACTIONS(1289), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1291), [anon_sym___declspec] = ACTIONS(1289), + [anon_sym___init] = ACTIONS(1289), + [anon_sym___exit] = ACTIONS(1289), [anon_sym___cdecl] = ACTIONS(1289), [anon_sym___clrcall] = ACTIONS(1289), [anon_sym___stdcall] = ACTIONS(1289), [anon_sym___fastcall] = ACTIONS(1289), [anon_sym___thiscall] = ACTIONS(1289), [anon_sym___vectorcall] = ACTIONS(1289), - [anon_sym_LBRACE] = ACTIONS(1292), + [anon_sym_LBRACE] = ACTIONS(1291), [anon_sym_signed] = ACTIONS(1289), [anon_sym_unsigned] = ACTIONS(1289), [anon_sym_long] = ACTIONS(1289), @@ -29297,8 +34240,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_goto] = ACTIONS(1289), [anon_sym___try] = ACTIONS(1289), [anon_sym___leave] = ACTIONS(1289), - [anon_sym_DASH_DASH] = ACTIONS(1292), - [anon_sym_PLUS_PLUS] = ACTIONS(1292), + [anon_sym_DASH_DASH] = ACTIONS(1291), + [anon_sym_PLUS_PLUS] = ACTIONS(1291), [anon_sym_sizeof] = ACTIONS(1289), [anon_sym___alignof__] = ACTIONS(1289), [anon_sym___alignof] = ACTIONS(1289), @@ -29309,3279 +34252,1678 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(1289), [anon_sym_asm] = ACTIONS(1289), [anon_sym___asm__] = ACTIONS(1289), - [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_number_literal] = ACTIONS(1291), + [anon_sym_L_SQUOTE] = ACTIONS(1291), + [anon_sym_u_SQUOTE] = ACTIONS(1291), + [anon_sym_U_SQUOTE] = ACTIONS(1291), + [anon_sym_u8_SQUOTE] = ACTIONS(1291), + [anon_sym_SQUOTE] = ACTIONS(1291), + [anon_sym_L_DQUOTE] = ACTIONS(1291), + [anon_sym_u_DQUOTE] = ACTIONS(1291), + [anon_sym_U_DQUOTE] = ACTIONS(1291), + [anon_sym_u8_DQUOTE] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1291), [sym_true] = ACTIONS(1289), [sym_false] = ACTIONS(1289), [anon_sym_NULL] = ACTIONS(1289), [anon_sym_nullptr] = ACTIONS(1289), [sym_comment] = ACTIONS(3), }, - [119] = { - [sym_identifier] = ACTIONS(1295), - [aux_sym_preproc_include_token1] = ACTIONS(1295), - [aux_sym_preproc_def_token1] = ACTIONS(1295), - [aux_sym_preproc_if_token1] = ACTIONS(1295), - [aux_sym_preproc_if_token2] = ACTIONS(1295), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1295), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1295), - [aux_sym_preproc_else_token1] = ACTIONS(1295), - [aux_sym_preproc_elif_token1] = ACTIONS(1295), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1295), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1295), - [sym_preproc_directive] = ACTIONS(1295), - [anon_sym_LPAREN2] = ACTIONS(1297), - [anon_sym_BANG] = ACTIONS(1297), - [anon_sym_TILDE] = ACTIONS(1297), - [anon_sym_DASH] = ACTIONS(1295), - [anon_sym_PLUS] = ACTIONS(1295), - [anon_sym_STAR] = ACTIONS(1297), - [anon_sym_AMP] = ACTIONS(1297), - [anon_sym_SEMI] = ACTIONS(1297), - [anon_sym___extension__] = ACTIONS(1295), - [anon_sym_typedef] = ACTIONS(1295), - [anon_sym_extern] = ACTIONS(1295), - [anon_sym___attribute__] = ACTIONS(1295), - [anon_sym___scanf] = ACTIONS(1295), - [anon_sym___printf] = ACTIONS(1295), - [anon_sym___read_mostly] = ACTIONS(1295), - [anon_sym___must_hold] = ACTIONS(1295), - [anon_sym___ro_after_init] = ACTIONS(1295), - [anon_sym___init] = ACTIONS(1295), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1297), - [anon_sym___declspec] = ACTIONS(1295), - [anon_sym___cdecl] = ACTIONS(1295), - [anon_sym___clrcall] = ACTIONS(1295), - [anon_sym___stdcall] = ACTIONS(1295), - [anon_sym___fastcall] = ACTIONS(1295), - [anon_sym___thiscall] = ACTIONS(1295), - [anon_sym___vectorcall] = ACTIONS(1295), - [anon_sym_LBRACE] = ACTIONS(1297), - [anon_sym_signed] = ACTIONS(1295), - [anon_sym_unsigned] = ACTIONS(1295), - [anon_sym_long] = ACTIONS(1295), - [anon_sym_short] = ACTIONS(1295), - [anon_sym_static] = ACTIONS(1295), - [anon_sym_auto] = ACTIONS(1295), - [anon_sym_register] = ACTIONS(1295), - [anon_sym_inline] = ACTIONS(1295), - [anon_sym___inline] = ACTIONS(1295), - [anon_sym___inline__] = ACTIONS(1295), - [anon_sym___forceinline] = ACTIONS(1295), - [anon_sym_thread_local] = ACTIONS(1295), - [anon_sym___thread] = ACTIONS(1295), - [anon_sym_const] = ACTIONS(1295), - [anon_sym_constexpr] = ACTIONS(1295), - [anon_sym_volatile] = ACTIONS(1295), - [anon_sym_restrict] = ACTIONS(1295), - [anon_sym___restrict__] = ACTIONS(1295), - [anon_sym__Atomic] = ACTIONS(1295), - [anon_sym__Noreturn] = ACTIONS(1295), - [anon_sym_noreturn] = ACTIONS(1295), - [anon_sym_alignas] = ACTIONS(1295), - [anon_sym__Alignas] = ACTIONS(1295), - [sym_primitive_type] = ACTIONS(1295), - [anon_sym_enum] = ACTIONS(1295), - [anon_sym_struct] = ACTIONS(1295), - [anon_sym_union] = ACTIONS(1295), - [anon_sym_if] = ACTIONS(1295), - [anon_sym_switch] = ACTIONS(1295), - [anon_sym_case] = ACTIONS(1295), - [anon_sym_default] = ACTIONS(1295), - [anon_sym_while] = ACTIONS(1295), - [anon_sym_do] = ACTIONS(1295), - [anon_sym_for] = ACTIONS(1295), - [anon_sym_return] = ACTIONS(1295), - [anon_sym_break] = ACTIONS(1295), - [anon_sym_continue] = ACTIONS(1295), - [anon_sym_goto] = ACTIONS(1295), - [anon_sym___try] = ACTIONS(1295), - [anon_sym___leave] = ACTIONS(1295), - [anon_sym_DASH_DASH] = ACTIONS(1297), - [anon_sym_PLUS_PLUS] = ACTIONS(1297), - [anon_sym_sizeof] = ACTIONS(1295), - [anon_sym___alignof__] = ACTIONS(1295), - [anon_sym___alignof] = ACTIONS(1295), - [anon_sym__alignof] = ACTIONS(1295), - [anon_sym_alignof] = ACTIONS(1295), - [anon_sym__Alignof] = ACTIONS(1295), - [anon_sym_offsetof] = ACTIONS(1295), - [anon_sym__Generic] = ACTIONS(1295), - [anon_sym_asm] = ACTIONS(1295), - [anon_sym___asm__] = ACTIONS(1295), - [sym_number_literal] = ACTIONS(1297), - [anon_sym_L_SQUOTE] = ACTIONS(1297), - [anon_sym_u_SQUOTE] = ACTIONS(1297), - [anon_sym_U_SQUOTE] = ACTIONS(1297), - [anon_sym_u8_SQUOTE] = ACTIONS(1297), - [anon_sym_SQUOTE] = ACTIONS(1297), - [anon_sym_L_DQUOTE] = ACTIONS(1297), - [anon_sym_u_DQUOTE] = ACTIONS(1297), - [anon_sym_U_DQUOTE] = ACTIONS(1297), - [anon_sym_u8_DQUOTE] = ACTIONS(1297), - [anon_sym_DQUOTE] = ACTIONS(1297), - [sym_true] = ACTIONS(1295), - [sym_false] = ACTIONS(1295), - [anon_sym_NULL] = ACTIONS(1295), - [anon_sym_nullptr] = ACTIONS(1295), - [sym_comment] = ACTIONS(3), - }, - [120] = { - [sym_identifier] = ACTIONS(1299), - [aux_sym_preproc_include_token1] = ACTIONS(1299), - [aux_sym_preproc_def_token1] = ACTIONS(1299), - [aux_sym_preproc_if_token1] = ACTIONS(1299), - [aux_sym_preproc_if_token2] = ACTIONS(1299), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1299), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1299), - [aux_sym_preproc_else_token1] = ACTIONS(1299), - [aux_sym_preproc_elif_token1] = ACTIONS(1299), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1299), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1299), - [sym_preproc_directive] = ACTIONS(1299), - [anon_sym_LPAREN2] = ACTIONS(1301), - [anon_sym_BANG] = ACTIONS(1301), - [anon_sym_TILDE] = ACTIONS(1301), - [anon_sym_DASH] = ACTIONS(1299), - [anon_sym_PLUS] = ACTIONS(1299), - [anon_sym_STAR] = ACTIONS(1301), - [anon_sym_AMP] = ACTIONS(1301), - [anon_sym_SEMI] = ACTIONS(1301), - [anon_sym___extension__] = ACTIONS(1299), - [anon_sym_typedef] = ACTIONS(1299), - [anon_sym_extern] = ACTIONS(1299), - [anon_sym___attribute__] = ACTIONS(1299), - [anon_sym___scanf] = ACTIONS(1299), - [anon_sym___printf] = ACTIONS(1299), - [anon_sym___read_mostly] = ACTIONS(1299), - [anon_sym___must_hold] = ACTIONS(1299), - [anon_sym___ro_after_init] = ACTIONS(1299), - [anon_sym___init] = ACTIONS(1299), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1301), - [anon_sym___declspec] = ACTIONS(1299), - [anon_sym___cdecl] = ACTIONS(1299), - [anon_sym___clrcall] = ACTIONS(1299), - [anon_sym___stdcall] = ACTIONS(1299), - [anon_sym___fastcall] = ACTIONS(1299), - [anon_sym___thiscall] = ACTIONS(1299), - [anon_sym___vectorcall] = ACTIONS(1299), - [anon_sym_LBRACE] = ACTIONS(1301), - [anon_sym_signed] = ACTIONS(1299), - [anon_sym_unsigned] = ACTIONS(1299), - [anon_sym_long] = ACTIONS(1299), - [anon_sym_short] = ACTIONS(1299), - [anon_sym_static] = ACTIONS(1299), - [anon_sym_auto] = ACTIONS(1299), - [anon_sym_register] = ACTIONS(1299), - [anon_sym_inline] = ACTIONS(1299), - [anon_sym___inline] = ACTIONS(1299), - [anon_sym___inline__] = ACTIONS(1299), - [anon_sym___forceinline] = ACTIONS(1299), - [anon_sym_thread_local] = ACTIONS(1299), - [anon_sym___thread] = ACTIONS(1299), - [anon_sym_const] = ACTIONS(1299), - [anon_sym_constexpr] = ACTIONS(1299), - [anon_sym_volatile] = ACTIONS(1299), - [anon_sym_restrict] = ACTIONS(1299), - [anon_sym___restrict__] = ACTIONS(1299), - [anon_sym__Atomic] = ACTIONS(1299), - [anon_sym__Noreturn] = ACTIONS(1299), - [anon_sym_noreturn] = ACTIONS(1299), - [anon_sym_alignas] = ACTIONS(1299), - [anon_sym__Alignas] = ACTIONS(1299), - [sym_primitive_type] = ACTIONS(1299), - [anon_sym_enum] = ACTIONS(1299), - [anon_sym_struct] = ACTIONS(1299), - [anon_sym_union] = ACTIONS(1299), - [anon_sym_if] = ACTIONS(1299), - [anon_sym_switch] = ACTIONS(1299), - [anon_sym_case] = ACTIONS(1299), - [anon_sym_default] = ACTIONS(1299), - [anon_sym_while] = ACTIONS(1299), - [anon_sym_do] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(1299), - [anon_sym_return] = ACTIONS(1299), - [anon_sym_break] = ACTIONS(1299), - [anon_sym_continue] = ACTIONS(1299), - [anon_sym_goto] = ACTIONS(1299), - [anon_sym___try] = ACTIONS(1299), - [anon_sym___leave] = ACTIONS(1299), - [anon_sym_DASH_DASH] = ACTIONS(1301), - [anon_sym_PLUS_PLUS] = ACTIONS(1301), - [anon_sym_sizeof] = ACTIONS(1299), - [anon_sym___alignof__] = ACTIONS(1299), - [anon_sym___alignof] = ACTIONS(1299), - [anon_sym__alignof] = ACTIONS(1299), - [anon_sym_alignof] = ACTIONS(1299), - [anon_sym__Alignof] = ACTIONS(1299), - [anon_sym_offsetof] = ACTIONS(1299), - [anon_sym__Generic] = ACTIONS(1299), - [anon_sym_asm] = ACTIONS(1299), - [anon_sym___asm__] = ACTIONS(1299), - [sym_number_literal] = ACTIONS(1301), - [anon_sym_L_SQUOTE] = ACTIONS(1301), - [anon_sym_u_SQUOTE] = ACTIONS(1301), - [anon_sym_U_SQUOTE] = ACTIONS(1301), - [anon_sym_u8_SQUOTE] = ACTIONS(1301), - [anon_sym_SQUOTE] = ACTIONS(1301), - [anon_sym_L_DQUOTE] = ACTIONS(1301), - [anon_sym_u_DQUOTE] = ACTIONS(1301), - [anon_sym_U_DQUOTE] = ACTIONS(1301), - [anon_sym_u8_DQUOTE] = ACTIONS(1301), - [anon_sym_DQUOTE] = ACTIONS(1301), - [sym_true] = ACTIONS(1299), - [sym_false] = ACTIONS(1299), - [anon_sym_NULL] = ACTIONS(1299), - [anon_sym_nullptr] = ACTIONS(1299), - [sym_comment] = ACTIONS(3), - }, - [121] = { - [sym_identifier] = ACTIONS(1303), - [aux_sym_preproc_include_token1] = ACTIONS(1303), - [aux_sym_preproc_def_token1] = ACTIONS(1303), - [aux_sym_preproc_if_token1] = ACTIONS(1303), - [aux_sym_preproc_if_token2] = ACTIONS(1303), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1303), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1303), - [aux_sym_preproc_else_token1] = ACTIONS(1303), - [aux_sym_preproc_elif_token1] = ACTIONS(1303), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1303), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1303), - [sym_preproc_directive] = ACTIONS(1303), - [anon_sym_LPAREN2] = ACTIONS(1305), - [anon_sym_BANG] = ACTIONS(1305), - [anon_sym_TILDE] = ACTIONS(1305), - [anon_sym_DASH] = ACTIONS(1303), - [anon_sym_PLUS] = ACTIONS(1303), - [anon_sym_STAR] = ACTIONS(1305), - [anon_sym_AMP] = ACTIONS(1305), - [anon_sym_SEMI] = ACTIONS(1305), - [anon_sym___extension__] = ACTIONS(1303), - [anon_sym_typedef] = ACTIONS(1303), - [anon_sym_extern] = ACTIONS(1303), - [anon_sym___attribute__] = ACTIONS(1303), - [anon_sym___scanf] = ACTIONS(1303), - [anon_sym___printf] = ACTIONS(1303), - [anon_sym___read_mostly] = ACTIONS(1303), - [anon_sym___must_hold] = ACTIONS(1303), - [anon_sym___ro_after_init] = ACTIONS(1303), - [anon_sym___init] = ACTIONS(1303), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1305), - [anon_sym___declspec] = ACTIONS(1303), - [anon_sym___cdecl] = ACTIONS(1303), - [anon_sym___clrcall] = ACTIONS(1303), - [anon_sym___stdcall] = ACTIONS(1303), - [anon_sym___fastcall] = ACTIONS(1303), - [anon_sym___thiscall] = ACTIONS(1303), - [anon_sym___vectorcall] = ACTIONS(1303), - [anon_sym_LBRACE] = ACTIONS(1305), - [anon_sym_signed] = ACTIONS(1303), - [anon_sym_unsigned] = ACTIONS(1303), - [anon_sym_long] = ACTIONS(1303), - [anon_sym_short] = ACTIONS(1303), - [anon_sym_static] = ACTIONS(1303), - [anon_sym_auto] = ACTIONS(1303), - [anon_sym_register] = ACTIONS(1303), - [anon_sym_inline] = ACTIONS(1303), - [anon_sym___inline] = ACTIONS(1303), - [anon_sym___inline__] = ACTIONS(1303), - [anon_sym___forceinline] = ACTIONS(1303), - [anon_sym_thread_local] = ACTIONS(1303), - [anon_sym___thread] = ACTIONS(1303), - [anon_sym_const] = ACTIONS(1303), - [anon_sym_constexpr] = ACTIONS(1303), - [anon_sym_volatile] = ACTIONS(1303), - [anon_sym_restrict] = ACTIONS(1303), - [anon_sym___restrict__] = ACTIONS(1303), - [anon_sym__Atomic] = ACTIONS(1303), - [anon_sym__Noreturn] = ACTIONS(1303), - [anon_sym_noreturn] = ACTIONS(1303), - [anon_sym_alignas] = ACTIONS(1303), - [anon_sym__Alignas] = ACTIONS(1303), - [sym_primitive_type] = ACTIONS(1303), - [anon_sym_enum] = ACTIONS(1303), - [anon_sym_struct] = ACTIONS(1303), - [anon_sym_union] = ACTIONS(1303), - [anon_sym_if] = ACTIONS(1303), - [anon_sym_switch] = ACTIONS(1303), - [anon_sym_case] = ACTIONS(1303), - [anon_sym_default] = ACTIONS(1303), - [anon_sym_while] = ACTIONS(1303), - [anon_sym_do] = ACTIONS(1303), - [anon_sym_for] = ACTIONS(1303), - [anon_sym_return] = ACTIONS(1303), - [anon_sym_break] = ACTIONS(1303), - [anon_sym_continue] = ACTIONS(1303), - [anon_sym_goto] = ACTIONS(1303), - [anon_sym___try] = ACTIONS(1303), - [anon_sym___leave] = ACTIONS(1303), - [anon_sym_DASH_DASH] = ACTIONS(1305), - [anon_sym_PLUS_PLUS] = ACTIONS(1305), - [anon_sym_sizeof] = ACTIONS(1303), - [anon_sym___alignof__] = ACTIONS(1303), - [anon_sym___alignof] = ACTIONS(1303), - [anon_sym__alignof] = ACTIONS(1303), - [anon_sym_alignof] = ACTIONS(1303), - [anon_sym__Alignof] = ACTIONS(1303), - [anon_sym_offsetof] = ACTIONS(1303), - [anon_sym__Generic] = ACTIONS(1303), - [anon_sym_asm] = ACTIONS(1303), - [anon_sym___asm__] = ACTIONS(1303), - [sym_number_literal] = ACTIONS(1305), - [anon_sym_L_SQUOTE] = ACTIONS(1305), - [anon_sym_u_SQUOTE] = ACTIONS(1305), - [anon_sym_U_SQUOTE] = ACTIONS(1305), - [anon_sym_u8_SQUOTE] = ACTIONS(1305), - [anon_sym_SQUOTE] = ACTIONS(1305), - [anon_sym_L_DQUOTE] = ACTIONS(1305), - [anon_sym_u_DQUOTE] = ACTIONS(1305), - [anon_sym_U_DQUOTE] = ACTIONS(1305), - [anon_sym_u8_DQUOTE] = ACTIONS(1305), - [anon_sym_DQUOTE] = ACTIONS(1305), - [sym_true] = ACTIONS(1303), - [sym_false] = ACTIONS(1303), - [anon_sym_NULL] = ACTIONS(1303), - [anon_sym_nullptr] = ACTIONS(1303), - [sym_comment] = ACTIONS(3), - }, - [122] = { - [sym_identifier] = ACTIONS(1307), - [aux_sym_preproc_include_token1] = ACTIONS(1307), - [aux_sym_preproc_def_token1] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1307), - [aux_sym_preproc_if_token2] = ACTIONS(1307), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1307), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1307), - [aux_sym_preproc_else_token1] = ACTIONS(1307), - [aux_sym_preproc_elif_token1] = ACTIONS(1307), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1307), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1307), - [sym_preproc_directive] = ACTIONS(1307), - [anon_sym_LPAREN2] = ACTIONS(1309), - [anon_sym_BANG] = ACTIONS(1309), - [anon_sym_TILDE] = ACTIONS(1309), - [anon_sym_DASH] = ACTIONS(1307), - [anon_sym_PLUS] = ACTIONS(1307), - [anon_sym_STAR] = ACTIONS(1309), - [anon_sym_AMP] = ACTIONS(1309), - [anon_sym_SEMI] = ACTIONS(1309), - [anon_sym___extension__] = ACTIONS(1307), - [anon_sym_typedef] = ACTIONS(1307), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym___attribute__] = ACTIONS(1307), - [anon_sym___scanf] = ACTIONS(1307), - [anon_sym___printf] = ACTIONS(1307), - [anon_sym___read_mostly] = ACTIONS(1307), - [anon_sym___must_hold] = ACTIONS(1307), - [anon_sym___ro_after_init] = ACTIONS(1307), - [anon_sym___init] = ACTIONS(1307), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1309), - [anon_sym___declspec] = ACTIONS(1307), - [anon_sym___cdecl] = ACTIONS(1307), - [anon_sym___clrcall] = ACTIONS(1307), - [anon_sym___stdcall] = ACTIONS(1307), - [anon_sym___fastcall] = ACTIONS(1307), - [anon_sym___thiscall] = ACTIONS(1307), - [anon_sym___vectorcall] = ACTIONS(1307), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_signed] = ACTIONS(1307), - [anon_sym_unsigned] = ACTIONS(1307), - [anon_sym_long] = ACTIONS(1307), - [anon_sym_short] = ACTIONS(1307), - [anon_sym_static] = ACTIONS(1307), - [anon_sym_auto] = ACTIONS(1307), - [anon_sym_register] = ACTIONS(1307), - [anon_sym_inline] = ACTIONS(1307), - [anon_sym___inline] = ACTIONS(1307), - [anon_sym___inline__] = ACTIONS(1307), - [anon_sym___forceinline] = ACTIONS(1307), - [anon_sym_thread_local] = ACTIONS(1307), - [anon_sym___thread] = ACTIONS(1307), - [anon_sym_const] = ACTIONS(1307), - [anon_sym_constexpr] = ACTIONS(1307), - [anon_sym_volatile] = ACTIONS(1307), - [anon_sym_restrict] = ACTIONS(1307), - [anon_sym___restrict__] = ACTIONS(1307), - [anon_sym__Atomic] = ACTIONS(1307), - [anon_sym__Noreturn] = ACTIONS(1307), - [anon_sym_noreturn] = ACTIONS(1307), - [anon_sym_alignas] = ACTIONS(1307), - [anon_sym__Alignas] = ACTIONS(1307), - [sym_primitive_type] = ACTIONS(1307), - [anon_sym_enum] = ACTIONS(1307), - [anon_sym_struct] = ACTIONS(1307), - [anon_sym_union] = ACTIONS(1307), - [anon_sym_if] = ACTIONS(1307), - [anon_sym_switch] = ACTIONS(1307), - [anon_sym_case] = ACTIONS(1307), - [anon_sym_default] = ACTIONS(1307), - [anon_sym_while] = ACTIONS(1307), - [anon_sym_do] = ACTIONS(1307), - [anon_sym_for] = ACTIONS(1307), - [anon_sym_return] = ACTIONS(1307), - [anon_sym_break] = ACTIONS(1307), - [anon_sym_continue] = ACTIONS(1307), - [anon_sym_goto] = ACTIONS(1307), - [anon_sym___try] = ACTIONS(1307), - [anon_sym___leave] = ACTIONS(1307), - [anon_sym_DASH_DASH] = ACTIONS(1309), - [anon_sym_PLUS_PLUS] = ACTIONS(1309), - [anon_sym_sizeof] = ACTIONS(1307), - [anon_sym___alignof__] = ACTIONS(1307), - [anon_sym___alignof] = ACTIONS(1307), - [anon_sym__alignof] = ACTIONS(1307), - [anon_sym_alignof] = ACTIONS(1307), - [anon_sym__Alignof] = ACTIONS(1307), - [anon_sym_offsetof] = ACTIONS(1307), - [anon_sym__Generic] = ACTIONS(1307), - [anon_sym_asm] = ACTIONS(1307), - [anon_sym___asm__] = ACTIONS(1307), - [sym_number_literal] = ACTIONS(1309), - [anon_sym_L_SQUOTE] = ACTIONS(1309), - [anon_sym_u_SQUOTE] = ACTIONS(1309), - [anon_sym_U_SQUOTE] = ACTIONS(1309), - [anon_sym_u8_SQUOTE] = ACTIONS(1309), - [anon_sym_SQUOTE] = ACTIONS(1309), - [anon_sym_L_DQUOTE] = ACTIONS(1309), - [anon_sym_u_DQUOTE] = ACTIONS(1309), - [anon_sym_U_DQUOTE] = ACTIONS(1309), - [anon_sym_u8_DQUOTE] = ACTIONS(1309), - [anon_sym_DQUOTE] = ACTIONS(1309), - [sym_true] = ACTIONS(1307), - [sym_false] = ACTIONS(1307), - [anon_sym_NULL] = ACTIONS(1307), - [anon_sym_nullptr] = ACTIONS(1307), - [sym_comment] = ACTIONS(3), - }, - [123] = { - [sym_identifier] = ACTIONS(1311), - [aux_sym_preproc_include_token1] = ACTIONS(1311), - [aux_sym_preproc_def_token1] = ACTIONS(1311), - [aux_sym_preproc_if_token1] = ACTIONS(1311), - [aux_sym_preproc_if_token2] = ACTIONS(1311), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1311), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1311), - [aux_sym_preproc_else_token1] = ACTIONS(1311), - [aux_sym_preproc_elif_token1] = ACTIONS(1311), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1311), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1311), - [sym_preproc_directive] = ACTIONS(1311), - [anon_sym_LPAREN2] = ACTIONS(1313), - [anon_sym_BANG] = ACTIONS(1313), - [anon_sym_TILDE] = ACTIONS(1313), - [anon_sym_DASH] = ACTIONS(1311), - [anon_sym_PLUS] = ACTIONS(1311), - [anon_sym_STAR] = ACTIONS(1313), - [anon_sym_AMP] = ACTIONS(1313), - [anon_sym_SEMI] = ACTIONS(1313), - [anon_sym___extension__] = ACTIONS(1311), - [anon_sym_typedef] = ACTIONS(1311), - [anon_sym_extern] = ACTIONS(1311), - [anon_sym___attribute__] = ACTIONS(1311), - [anon_sym___scanf] = ACTIONS(1311), - [anon_sym___printf] = ACTIONS(1311), - [anon_sym___read_mostly] = ACTIONS(1311), - [anon_sym___must_hold] = ACTIONS(1311), - [anon_sym___ro_after_init] = ACTIONS(1311), - [anon_sym___init] = ACTIONS(1311), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1313), - [anon_sym___declspec] = ACTIONS(1311), - [anon_sym___cdecl] = ACTIONS(1311), - [anon_sym___clrcall] = ACTIONS(1311), - [anon_sym___stdcall] = ACTIONS(1311), - [anon_sym___fastcall] = ACTIONS(1311), - [anon_sym___thiscall] = ACTIONS(1311), - [anon_sym___vectorcall] = ACTIONS(1311), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_signed] = ACTIONS(1311), - [anon_sym_unsigned] = ACTIONS(1311), - [anon_sym_long] = ACTIONS(1311), - [anon_sym_short] = ACTIONS(1311), - [anon_sym_static] = ACTIONS(1311), - [anon_sym_auto] = ACTIONS(1311), - [anon_sym_register] = ACTIONS(1311), - [anon_sym_inline] = ACTIONS(1311), - [anon_sym___inline] = ACTIONS(1311), - [anon_sym___inline__] = ACTIONS(1311), - [anon_sym___forceinline] = ACTIONS(1311), - [anon_sym_thread_local] = ACTIONS(1311), - [anon_sym___thread] = ACTIONS(1311), - [anon_sym_const] = ACTIONS(1311), - [anon_sym_constexpr] = ACTIONS(1311), - [anon_sym_volatile] = ACTIONS(1311), - [anon_sym_restrict] = ACTIONS(1311), - [anon_sym___restrict__] = ACTIONS(1311), - [anon_sym__Atomic] = ACTIONS(1311), - [anon_sym__Noreturn] = ACTIONS(1311), - [anon_sym_noreturn] = ACTIONS(1311), - [anon_sym_alignas] = ACTIONS(1311), - [anon_sym__Alignas] = ACTIONS(1311), - [sym_primitive_type] = ACTIONS(1311), - [anon_sym_enum] = ACTIONS(1311), - [anon_sym_struct] = ACTIONS(1311), - [anon_sym_union] = ACTIONS(1311), - [anon_sym_if] = ACTIONS(1311), - [anon_sym_switch] = ACTIONS(1311), - [anon_sym_case] = ACTIONS(1311), - [anon_sym_default] = ACTIONS(1311), - [anon_sym_while] = ACTIONS(1311), - [anon_sym_do] = ACTIONS(1311), - [anon_sym_for] = ACTIONS(1311), - [anon_sym_return] = ACTIONS(1311), - [anon_sym_break] = ACTIONS(1311), - [anon_sym_continue] = ACTIONS(1311), - [anon_sym_goto] = ACTIONS(1311), - [anon_sym___try] = ACTIONS(1311), - [anon_sym___leave] = ACTIONS(1311), - [anon_sym_DASH_DASH] = ACTIONS(1313), - [anon_sym_PLUS_PLUS] = ACTIONS(1313), - [anon_sym_sizeof] = ACTIONS(1311), - [anon_sym___alignof__] = ACTIONS(1311), - [anon_sym___alignof] = ACTIONS(1311), - [anon_sym__alignof] = ACTIONS(1311), - [anon_sym_alignof] = ACTIONS(1311), - [anon_sym__Alignof] = ACTIONS(1311), - [anon_sym_offsetof] = ACTIONS(1311), - [anon_sym__Generic] = ACTIONS(1311), - [anon_sym_asm] = ACTIONS(1311), - [anon_sym___asm__] = ACTIONS(1311), - [sym_number_literal] = ACTIONS(1313), - [anon_sym_L_SQUOTE] = ACTIONS(1313), - [anon_sym_u_SQUOTE] = ACTIONS(1313), - [anon_sym_U_SQUOTE] = ACTIONS(1313), - [anon_sym_u8_SQUOTE] = ACTIONS(1313), - [anon_sym_SQUOTE] = ACTIONS(1313), - [anon_sym_L_DQUOTE] = ACTIONS(1313), - [anon_sym_u_DQUOTE] = ACTIONS(1313), - [anon_sym_U_DQUOTE] = ACTIONS(1313), - [anon_sym_u8_DQUOTE] = ACTIONS(1313), - [anon_sym_DQUOTE] = ACTIONS(1313), - [sym_true] = ACTIONS(1311), - [sym_false] = ACTIONS(1311), - [anon_sym_NULL] = ACTIONS(1311), - [anon_sym_nullptr] = ACTIONS(1311), - [sym_comment] = ACTIONS(3), - }, - [124] = { - [sym_identifier] = ACTIONS(1315), - [aux_sym_preproc_include_token1] = ACTIONS(1315), - [aux_sym_preproc_def_token1] = ACTIONS(1315), - [aux_sym_preproc_if_token1] = ACTIONS(1315), - [aux_sym_preproc_if_token2] = ACTIONS(1315), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1315), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1315), - [aux_sym_preproc_else_token1] = ACTIONS(1315), - [aux_sym_preproc_elif_token1] = ACTIONS(1315), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1315), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1315), - [sym_preproc_directive] = ACTIONS(1315), - [anon_sym_LPAREN2] = ACTIONS(1317), - [anon_sym_BANG] = ACTIONS(1317), - [anon_sym_TILDE] = ACTIONS(1317), - [anon_sym_DASH] = ACTIONS(1315), - [anon_sym_PLUS] = ACTIONS(1315), - [anon_sym_STAR] = ACTIONS(1317), - [anon_sym_AMP] = ACTIONS(1317), - [anon_sym_SEMI] = ACTIONS(1317), - [anon_sym___extension__] = ACTIONS(1315), - [anon_sym_typedef] = ACTIONS(1315), - [anon_sym_extern] = ACTIONS(1315), - [anon_sym___attribute__] = ACTIONS(1315), - [anon_sym___scanf] = ACTIONS(1315), - [anon_sym___printf] = ACTIONS(1315), - [anon_sym___read_mostly] = ACTIONS(1315), - [anon_sym___must_hold] = ACTIONS(1315), - [anon_sym___ro_after_init] = ACTIONS(1315), - [anon_sym___init] = ACTIONS(1315), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1317), - [anon_sym___declspec] = ACTIONS(1315), - [anon_sym___cdecl] = ACTIONS(1315), - [anon_sym___clrcall] = ACTIONS(1315), - [anon_sym___stdcall] = ACTIONS(1315), - [anon_sym___fastcall] = ACTIONS(1315), - [anon_sym___thiscall] = ACTIONS(1315), - [anon_sym___vectorcall] = ACTIONS(1315), - [anon_sym_LBRACE] = ACTIONS(1317), - [anon_sym_signed] = ACTIONS(1315), - [anon_sym_unsigned] = ACTIONS(1315), - [anon_sym_long] = ACTIONS(1315), - [anon_sym_short] = ACTIONS(1315), - [anon_sym_static] = ACTIONS(1315), - [anon_sym_auto] = ACTIONS(1315), - [anon_sym_register] = ACTIONS(1315), - [anon_sym_inline] = ACTIONS(1315), - [anon_sym___inline] = ACTIONS(1315), - [anon_sym___inline__] = ACTIONS(1315), - [anon_sym___forceinline] = ACTIONS(1315), - [anon_sym_thread_local] = ACTIONS(1315), - [anon_sym___thread] = ACTIONS(1315), - [anon_sym_const] = ACTIONS(1315), - [anon_sym_constexpr] = ACTIONS(1315), - [anon_sym_volatile] = ACTIONS(1315), - [anon_sym_restrict] = ACTIONS(1315), - [anon_sym___restrict__] = ACTIONS(1315), - [anon_sym__Atomic] = ACTIONS(1315), - [anon_sym__Noreturn] = ACTIONS(1315), - [anon_sym_noreturn] = ACTIONS(1315), - [anon_sym_alignas] = ACTIONS(1315), - [anon_sym__Alignas] = ACTIONS(1315), - [sym_primitive_type] = ACTIONS(1315), - [anon_sym_enum] = ACTIONS(1315), - [anon_sym_struct] = ACTIONS(1315), - [anon_sym_union] = ACTIONS(1315), - [anon_sym_if] = ACTIONS(1315), - [anon_sym_switch] = ACTIONS(1315), - [anon_sym_case] = ACTIONS(1315), - [anon_sym_default] = ACTIONS(1315), - [anon_sym_while] = ACTIONS(1315), - [anon_sym_do] = ACTIONS(1315), - [anon_sym_for] = ACTIONS(1315), - [anon_sym_return] = ACTIONS(1315), - [anon_sym_break] = ACTIONS(1315), - [anon_sym_continue] = ACTIONS(1315), - [anon_sym_goto] = ACTIONS(1315), - [anon_sym___try] = ACTIONS(1315), - [anon_sym___leave] = ACTIONS(1315), - [anon_sym_DASH_DASH] = ACTIONS(1317), - [anon_sym_PLUS_PLUS] = ACTIONS(1317), - [anon_sym_sizeof] = ACTIONS(1315), - [anon_sym___alignof__] = ACTIONS(1315), - [anon_sym___alignof] = ACTIONS(1315), - [anon_sym__alignof] = ACTIONS(1315), - [anon_sym_alignof] = ACTIONS(1315), - [anon_sym__Alignof] = ACTIONS(1315), - [anon_sym_offsetof] = ACTIONS(1315), - [anon_sym__Generic] = ACTIONS(1315), - [anon_sym_asm] = ACTIONS(1315), - [anon_sym___asm__] = ACTIONS(1315), - [sym_number_literal] = ACTIONS(1317), - [anon_sym_L_SQUOTE] = ACTIONS(1317), - [anon_sym_u_SQUOTE] = ACTIONS(1317), - [anon_sym_U_SQUOTE] = ACTIONS(1317), - [anon_sym_u8_SQUOTE] = ACTIONS(1317), - [anon_sym_SQUOTE] = ACTIONS(1317), - [anon_sym_L_DQUOTE] = ACTIONS(1317), - [anon_sym_u_DQUOTE] = ACTIONS(1317), - [anon_sym_U_DQUOTE] = ACTIONS(1317), - [anon_sym_u8_DQUOTE] = ACTIONS(1317), - [anon_sym_DQUOTE] = ACTIONS(1317), - [sym_true] = ACTIONS(1315), - [sym_false] = ACTIONS(1315), - [anon_sym_NULL] = ACTIONS(1315), - [anon_sym_nullptr] = ACTIONS(1315), - [sym_comment] = ACTIONS(3), - }, - [125] = { - [sym_identifier] = ACTIONS(1319), - [aux_sym_preproc_include_token1] = ACTIONS(1319), - [aux_sym_preproc_def_token1] = ACTIONS(1319), - [aux_sym_preproc_if_token1] = ACTIONS(1319), - [aux_sym_preproc_if_token2] = ACTIONS(1319), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1319), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1319), - [aux_sym_preproc_else_token1] = ACTIONS(1319), - [aux_sym_preproc_elif_token1] = ACTIONS(1319), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1319), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1319), - [sym_preproc_directive] = ACTIONS(1319), - [anon_sym_LPAREN2] = ACTIONS(1321), - [anon_sym_BANG] = ACTIONS(1321), - [anon_sym_TILDE] = ACTIONS(1321), - [anon_sym_DASH] = ACTIONS(1319), - [anon_sym_PLUS] = ACTIONS(1319), - [anon_sym_STAR] = ACTIONS(1321), - [anon_sym_AMP] = ACTIONS(1321), - [anon_sym_SEMI] = ACTIONS(1321), - [anon_sym___extension__] = ACTIONS(1319), - [anon_sym_typedef] = ACTIONS(1319), - [anon_sym_extern] = ACTIONS(1319), - [anon_sym___attribute__] = ACTIONS(1319), - [anon_sym___scanf] = ACTIONS(1319), - [anon_sym___printf] = ACTIONS(1319), - [anon_sym___read_mostly] = ACTIONS(1319), - [anon_sym___must_hold] = ACTIONS(1319), - [anon_sym___ro_after_init] = ACTIONS(1319), - [anon_sym___init] = ACTIONS(1319), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1321), - [anon_sym___declspec] = ACTIONS(1319), - [anon_sym___cdecl] = ACTIONS(1319), - [anon_sym___clrcall] = ACTIONS(1319), - [anon_sym___stdcall] = ACTIONS(1319), - [anon_sym___fastcall] = ACTIONS(1319), - [anon_sym___thiscall] = ACTIONS(1319), - [anon_sym___vectorcall] = ACTIONS(1319), - [anon_sym_LBRACE] = ACTIONS(1321), - [anon_sym_signed] = ACTIONS(1319), - [anon_sym_unsigned] = ACTIONS(1319), - [anon_sym_long] = ACTIONS(1319), - [anon_sym_short] = ACTIONS(1319), - [anon_sym_static] = ACTIONS(1319), - [anon_sym_auto] = ACTIONS(1319), - [anon_sym_register] = ACTIONS(1319), - [anon_sym_inline] = ACTIONS(1319), - [anon_sym___inline] = ACTIONS(1319), - [anon_sym___inline__] = ACTIONS(1319), - [anon_sym___forceinline] = ACTIONS(1319), - [anon_sym_thread_local] = ACTIONS(1319), - [anon_sym___thread] = ACTIONS(1319), - [anon_sym_const] = ACTIONS(1319), - [anon_sym_constexpr] = ACTIONS(1319), - [anon_sym_volatile] = ACTIONS(1319), - [anon_sym_restrict] = ACTIONS(1319), - [anon_sym___restrict__] = ACTIONS(1319), - [anon_sym__Atomic] = ACTIONS(1319), - [anon_sym__Noreturn] = ACTIONS(1319), - [anon_sym_noreturn] = ACTIONS(1319), - [anon_sym_alignas] = ACTIONS(1319), - [anon_sym__Alignas] = ACTIONS(1319), - [sym_primitive_type] = ACTIONS(1319), - [anon_sym_enum] = ACTIONS(1319), - [anon_sym_struct] = ACTIONS(1319), - [anon_sym_union] = ACTIONS(1319), - [anon_sym_if] = ACTIONS(1319), - [anon_sym_switch] = ACTIONS(1319), - [anon_sym_case] = ACTIONS(1319), - [anon_sym_default] = ACTIONS(1319), - [anon_sym_while] = ACTIONS(1319), - [anon_sym_do] = ACTIONS(1319), - [anon_sym_for] = ACTIONS(1319), - [anon_sym_return] = ACTIONS(1319), - [anon_sym_break] = ACTIONS(1319), - [anon_sym_continue] = ACTIONS(1319), - [anon_sym_goto] = ACTIONS(1319), - [anon_sym___try] = ACTIONS(1319), - [anon_sym___leave] = ACTIONS(1319), - [anon_sym_DASH_DASH] = ACTIONS(1321), - [anon_sym_PLUS_PLUS] = ACTIONS(1321), - [anon_sym_sizeof] = ACTIONS(1319), - [anon_sym___alignof__] = ACTIONS(1319), - [anon_sym___alignof] = ACTIONS(1319), - [anon_sym__alignof] = ACTIONS(1319), - [anon_sym_alignof] = ACTIONS(1319), - [anon_sym__Alignof] = ACTIONS(1319), - [anon_sym_offsetof] = ACTIONS(1319), - [anon_sym__Generic] = ACTIONS(1319), - [anon_sym_asm] = ACTIONS(1319), - [anon_sym___asm__] = ACTIONS(1319), - [sym_number_literal] = ACTIONS(1321), - [anon_sym_L_SQUOTE] = ACTIONS(1321), - [anon_sym_u_SQUOTE] = ACTIONS(1321), - [anon_sym_U_SQUOTE] = ACTIONS(1321), - [anon_sym_u8_SQUOTE] = ACTIONS(1321), - [anon_sym_SQUOTE] = ACTIONS(1321), - [anon_sym_L_DQUOTE] = ACTIONS(1321), - [anon_sym_u_DQUOTE] = ACTIONS(1321), - [anon_sym_U_DQUOTE] = ACTIONS(1321), - [anon_sym_u8_DQUOTE] = ACTIONS(1321), - [anon_sym_DQUOTE] = ACTIONS(1321), - [sym_true] = ACTIONS(1319), - [sym_false] = ACTIONS(1319), - [anon_sym_NULL] = ACTIONS(1319), - [anon_sym_nullptr] = ACTIONS(1319), - [sym_comment] = ACTIONS(3), - }, - [126] = { - [sym_identifier] = ACTIONS(1323), - [aux_sym_preproc_include_token1] = ACTIONS(1323), - [aux_sym_preproc_def_token1] = ACTIONS(1323), - [aux_sym_preproc_if_token1] = ACTIONS(1323), - [aux_sym_preproc_if_token2] = ACTIONS(1323), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1323), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1323), - [aux_sym_preproc_else_token1] = ACTIONS(1323), - [aux_sym_preproc_elif_token1] = ACTIONS(1323), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1323), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1323), - [sym_preproc_directive] = ACTIONS(1323), - [anon_sym_LPAREN2] = ACTIONS(1325), - [anon_sym_BANG] = ACTIONS(1325), - [anon_sym_TILDE] = ACTIONS(1325), - [anon_sym_DASH] = ACTIONS(1323), - [anon_sym_PLUS] = ACTIONS(1323), - [anon_sym_STAR] = ACTIONS(1325), - [anon_sym_AMP] = ACTIONS(1325), - [anon_sym_SEMI] = ACTIONS(1325), - [anon_sym___extension__] = ACTIONS(1323), - [anon_sym_typedef] = ACTIONS(1323), - [anon_sym_extern] = ACTIONS(1323), - [anon_sym___attribute__] = ACTIONS(1323), - [anon_sym___scanf] = ACTIONS(1323), - [anon_sym___printf] = ACTIONS(1323), - [anon_sym___read_mostly] = ACTIONS(1323), - [anon_sym___must_hold] = ACTIONS(1323), - [anon_sym___ro_after_init] = ACTIONS(1323), - [anon_sym___init] = ACTIONS(1323), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), - [anon_sym___declspec] = ACTIONS(1323), - [anon_sym___cdecl] = ACTIONS(1323), - [anon_sym___clrcall] = ACTIONS(1323), - [anon_sym___stdcall] = ACTIONS(1323), - [anon_sym___fastcall] = ACTIONS(1323), - [anon_sym___thiscall] = ACTIONS(1323), - [anon_sym___vectorcall] = ACTIONS(1323), - [anon_sym_LBRACE] = ACTIONS(1325), - [anon_sym_signed] = ACTIONS(1323), - [anon_sym_unsigned] = ACTIONS(1323), - [anon_sym_long] = ACTIONS(1323), - [anon_sym_short] = ACTIONS(1323), - [anon_sym_static] = ACTIONS(1323), - [anon_sym_auto] = ACTIONS(1323), - [anon_sym_register] = ACTIONS(1323), - [anon_sym_inline] = ACTIONS(1323), - [anon_sym___inline] = ACTIONS(1323), - [anon_sym___inline__] = ACTIONS(1323), - [anon_sym___forceinline] = ACTIONS(1323), - [anon_sym_thread_local] = ACTIONS(1323), - [anon_sym___thread] = ACTIONS(1323), - [anon_sym_const] = ACTIONS(1323), - [anon_sym_constexpr] = ACTIONS(1323), - [anon_sym_volatile] = ACTIONS(1323), - [anon_sym_restrict] = ACTIONS(1323), - [anon_sym___restrict__] = ACTIONS(1323), - [anon_sym__Atomic] = ACTIONS(1323), - [anon_sym__Noreturn] = ACTIONS(1323), - [anon_sym_noreturn] = ACTIONS(1323), - [anon_sym_alignas] = ACTIONS(1323), - [anon_sym__Alignas] = ACTIONS(1323), - [sym_primitive_type] = ACTIONS(1323), - [anon_sym_enum] = ACTIONS(1323), - [anon_sym_struct] = ACTIONS(1323), - [anon_sym_union] = ACTIONS(1323), - [anon_sym_if] = ACTIONS(1323), - [anon_sym_switch] = ACTIONS(1323), - [anon_sym_case] = ACTIONS(1323), - [anon_sym_default] = ACTIONS(1323), - [anon_sym_while] = ACTIONS(1323), - [anon_sym_do] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1323), - [anon_sym_return] = ACTIONS(1323), - [anon_sym_break] = ACTIONS(1323), - [anon_sym_continue] = ACTIONS(1323), - [anon_sym_goto] = ACTIONS(1323), - [anon_sym___try] = ACTIONS(1323), - [anon_sym___leave] = ACTIONS(1323), - [anon_sym_DASH_DASH] = ACTIONS(1325), - [anon_sym_PLUS_PLUS] = ACTIONS(1325), - [anon_sym_sizeof] = ACTIONS(1323), - [anon_sym___alignof__] = ACTIONS(1323), - [anon_sym___alignof] = ACTIONS(1323), - [anon_sym__alignof] = ACTIONS(1323), - [anon_sym_alignof] = ACTIONS(1323), - [anon_sym__Alignof] = ACTIONS(1323), - [anon_sym_offsetof] = ACTIONS(1323), - [anon_sym__Generic] = ACTIONS(1323), - [anon_sym_asm] = ACTIONS(1323), - [anon_sym___asm__] = ACTIONS(1323), - [sym_number_literal] = ACTIONS(1325), - [anon_sym_L_SQUOTE] = ACTIONS(1325), - [anon_sym_u_SQUOTE] = ACTIONS(1325), - [anon_sym_U_SQUOTE] = ACTIONS(1325), - [anon_sym_u8_SQUOTE] = ACTIONS(1325), - [anon_sym_SQUOTE] = ACTIONS(1325), - [anon_sym_L_DQUOTE] = ACTIONS(1325), - [anon_sym_u_DQUOTE] = ACTIONS(1325), - [anon_sym_U_DQUOTE] = ACTIONS(1325), - [anon_sym_u8_DQUOTE] = ACTIONS(1325), - [anon_sym_DQUOTE] = ACTIONS(1325), - [sym_true] = ACTIONS(1323), - [sym_false] = ACTIONS(1323), - [anon_sym_NULL] = ACTIONS(1323), - [anon_sym_nullptr] = ACTIONS(1323), - [sym_comment] = ACTIONS(3), - }, - [127] = { - [sym_identifier] = ACTIONS(1327), - [aux_sym_preproc_include_token1] = ACTIONS(1327), - [aux_sym_preproc_def_token1] = ACTIONS(1327), - [aux_sym_preproc_if_token1] = ACTIONS(1327), - [aux_sym_preproc_if_token2] = ACTIONS(1327), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1327), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1327), - [aux_sym_preproc_else_token1] = ACTIONS(1327), - [aux_sym_preproc_elif_token1] = ACTIONS(1327), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1327), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1327), - [sym_preproc_directive] = ACTIONS(1327), - [anon_sym_LPAREN2] = ACTIONS(1329), - [anon_sym_BANG] = ACTIONS(1329), - [anon_sym_TILDE] = ACTIONS(1329), - [anon_sym_DASH] = ACTIONS(1327), - [anon_sym_PLUS] = ACTIONS(1327), - [anon_sym_STAR] = ACTIONS(1329), - [anon_sym_AMP] = ACTIONS(1329), - [anon_sym_SEMI] = ACTIONS(1329), - [anon_sym___extension__] = ACTIONS(1327), - [anon_sym_typedef] = ACTIONS(1327), - [anon_sym_extern] = ACTIONS(1327), - [anon_sym___attribute__] = ACTIONS(1327), - [anon_sym___scanf] = ACTIONS(1327), - [anon_sym___printf] = ACTIONS(1327), - [anon_sym___read_mostly] = ACTIONS(1327), - [anon_sym___must_hold] = ACTIONS(1327), - [anon_sym___ro_after_init] = ACTIONS(1327), - [anon_sym___init] = ACTIONS(1327), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1329), - [anon_sym___declspec] = ACTIONS(1327), - [anon_sym___cdecl] = ACTIONS(1327), - [anon_sym___clrcall] = ACTIONS(1327), - [anon_sym___stdcall] = ACTIONS(1327), - [anon_sym___fastcall] = ACTIONS(1327), - [anon_sym___thiscall] = ACTIONS(1327), - [anon_sym___vectorcall] = ACTIONS(1327), - [anon_sym_LBRACE] = ACTIONS(1329), - [anon_sym_signed] = ACTIONS(1327), - [anon_sym_unsigned] = ACTIONS(1327), - [anon_sym_long] = ACTIONS(1327), - [anon_sym_short] = ACTIONS(1327), - [anon_sym_static] = ACTIONS(1327), - [anon_sym_auto] = ACTIONS(1327), - [anon_sym_register] = ACTIONS(1327), - [anon_sym_inline] = ACTIONS(1327), - [anon_sym___inline] = ACTIONS(1327), - [anon_sym___inline__] = ACTIONS(1327), - [anon_sym___forceinline] = ACTIONS(1327), - [anon_sym_thread_local] = ACTIONS(1327), - [anon_sym___thread] = ACTIONS(1327), - [anon_sym_const] = ACTIONS(1327), - [anon_sym_constexpr] = ACTIONS(1327), - [anon_sym_volatile] = ACTIONS(1327), - [anon_sym_restrict] = ACTIONS(1327), - [anon_sym___restrict__] = ACTIONS(1327), - [anon_sym__Atomic] = ACTIONS(1327), - [anon_sym__Noreturn] = ACTIONS(1327), - [anon_sym_noreturn] = ACTIONS(1327), - [anon_sym_alignas] = ACTIONS(1327), - [anon_sym__Alignas] = ACTIONS(1327), - [sym_primitive_type] = ACTIONS(1327), - [anon_sym_enum] = ACTIONS(1327), - [anon_sym_struct] = ACTIONS(1327), - [anon_sym_union] = ACTIONS(1327), - [anon_sym_if] = ACTIONS(1327), - [anon_sym_switch] = ACTIONS(1327), - [anon_sym_case] = ACTIONS(1327), - [anon_sym_default] = ACTIONS(1327), - [anon_sym_while] = ACTIONS(1327), - [anon_sym_do] = ACTIONS(1327), - [anon_sym_for] = ACTIONS(1327), - [anon_sym_return] = ACTIONS(1327), - [anon_sym_break] = ACTIONS(1327), - [anon_sym_continue] = ACTIONS(1327), - [anon_sym_goto] = ACTIONS(1327), - [anon_sym___try] = ACTIONS(1327), - [anon_sym___leave] = ACTIONS(1327), - [anon_sym_DASH_DASH] = ACTIONS(1329), - [anon_sym_PLUS_PLUS] = ACTIONS(1329), - [anon_sym_sizeof] = ACTIONS(1327), - [anon_sym___alignof__] = ACTIONS(1327), - [anon_sym___alignof] = ACTIONS(1327), - [anon_sym__alignof] = ACTIONS(1327), - [anon_sym_alignof] = ACTIONS(1327), - [anon_sym__Alignof] = ACTIONS(1327), - [anon_sym_offsetof] = ACTIONS(1327), - [anon_sym__Generic] = ACTIONS(1327), - [anon_sym_asm] = ACTIONS(1327), - [anon_sym___asm__] = ACTIONS(1327), - [sym_number_literal] = ACTIONS(1329), - [anon_sym_L_SQUOTE] = ACTIONS(1329), - [anon_sym_u_SQUOTE] = ACTIONS(1329), - [anon_sym_U_SQUOTE] = ACTIONS(1329), - [anon_sym_u8_SQUOTE] = ACTIONS(1329), - [anon_sym_SQUOTE] = ACTIONS(1329), - [anon_sym_L_DQUOTE] = ACTIONS(1329), - [anon_sym_u_DQUOTE] = ACTIONS(1329), - [anon_sym_U_DQUOTE] = ACTIONS(1329), - [anon_sym_u8_DQUOTE] = ACTIONS(1329), - [anon_sym_DQUOTE] = ACTIONS(1329), - [sym_true] = ACTIONS(1327), - [sym_false] = ACTIONS(1327), - [anon_sym_NULL] = ACTIONS(1327), - [anon_sym_nullptr] = ACTIONS(1327), - [sym_comment] = ACTIONS(3), - }, - [128] = { - [sym_identifier] = ACTIONS(1331), - [aux_sym_preproc_include_token1] = ACTIONS(1331), - [aux_sym_preproc_def_token1] = ACTIONS(1331), - [aux_sym_preproc_if_token1] = ACTIONS(1331), - [aux_sym_preproc_if_token2] = ACTIONS(1331), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1331), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1331), - [aux_sym_preproc_else_token1] = ACTIONS(1331), - [aux_sym_preproc_elif_token1] = ACTIONS(1331), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1331), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1331), - [sym_preproc_directive] = ACTIONS(1331), - [anon_sym_LPAREN2] = ACTIONS(1333), - [anon_sym_BANG] = ACTIONS(1333), - [anon_sym_TILDE] = ACTIONS(1333), - [anon_sym_DASH] = ACTIONS(1331), - [anon_sym_PLUS] = ACTIONS(1331), - [anon_sym_STAR] = ACTIONS(1333), - [anon_sym_AMP] = ACTIONS(1333), - [anon_sym_SEMI] = ACTIONS(1333), - [anon_sym___extension__] = ACTIONS(1331), - [anon_sym_typedef] = ACTIONS(1331), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym___attribute__] = ACTIONS(1331), - [anon_sym___scanf] = ACTIONS(1331), - [anon_sym___printf] = ACTIONS(1331), - [anon_sym___read_mostly] = ACTIONS(1331), - [anon_sym___must_hold] = ACTIONS(1331), - [anon_sym___ro_after_init] = ACTIONS(1331), - [anon_sym___init] = ACTIONS(1331), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1333), - [anon_sym___declspec] = ACTIONS(1331), - [anon_sym___cdecl] = ACTIONS(1331), - [anon_sym___clrcall] = ACTIONS(1331), - [anon_sym___stdcall] = ACTIONS(1331), - [anon_sym___fastcall] = ACTIONS(1331), - [anon_sym___thiscall] = ACTIONS(1331), - [anon_sym___vectorcall] = ACTIONS(1331), - [anon_sym_LBRACE] = ACTIONS(1333), - [anon_sym_signed] = ACTIONS(1331), - [anon_sym_unsigned] = ACTIONS(1331), - [anon_sym_long] = ACTIONS(1331), - [anon_sym_short] = ACTIONS(1331), - [anon_sym_static] = ACTIONS(1331), - [anon_sym_auto] = ACTIONS(1331), - [anon_sym_register] = ACTIONS(1331), - [anon_sym_inline] = ACTIONS(1331), - [anon_sym___inline] = ACTIONS(1331), - [anon_sym___inline__] = ACTIONS(1331), - [anon_sym___forceinline] = ACTIONS(1331), - [anon_sym_thread_local] = ACTIONS(1331), - [anon_sym___thread] = ACTIONS(1331), - [anon_sym_const] = ACTIONS(1331), - [anon_sym_constexpr] = ACTIONS(1331), - [anon_sym_volatile] = ACTIONS(1331), - [anon_sym_restrict] = ACTIONS(1331), - [anon_sym___restrict__] = ACTIONS(1331), - [anon_sym__Atomic] = ACTIONS(1331), - [anon_sym__Noreturn] = ACTIONS(1331), - [anon_sym_noreturn] = ACTIONS(1331), - [anon_sym_alignas] = ACTIONS(1331), - [anon_sym__Alignas] = ACTIONS(1331), - [sym_primitive_type] = ACTIONS(1331), - [anon_sym_enum] = ACTIONS(1331), - [anon_sym_struct] = ACTIONS(1331), - [anon_sym_union] = ACTIONS(1331), - [anon_sym_if] = ACTIONS(1331), - [anon_sym_switch] = ACTIONS(1331), - [anon_sym_case] = ACTIONS(1331), - [anon_sym_default] = ACTIONS(1331), - [anon_sym_while] = ACTIONS(1331), - [anon_sym_do] = ACTIONS(1331), - [anon_sym_for] = ACTIONS(1331), - [anon_sym_return] = ACTIONS(1331), - [anon_sym_break] = ACTIONS(1331), - [anon_sym_continue] = ACTIONS(1331), - [anon_sym_goto] = ACTIONS(1331), - [anon_sym___try] = ACTIONS(1331), - [anon_sym___leave] = ACTIONS(1331), - [anon_sym_DASH_DASH] = ACTIONS(1333), - [anon_sym_PLUS_PLUS] = ACTIONS(1333), - [anon_sym_sizeof] = ACTIONS(1331), - [anon_sym___alignof__] = ACTIONS(1331), - [anon_sym___alignof] = ACTIONS(1331), - [anon_sym__alignof] = ACTIONS(1331), - [anon_sym_alignof] = ACTIONS(1331), - [anon_sym__Alignof] = ACTIONS(1331), - [anon_sym_offsetof] = ACTIONS(1331), - [anon_sym__Generic] = ACTIONS(1331), - [anon_sym_asm] = ACTIONS(1331), - [anon_sym___asm__] = ACTIONS(1331), - [sym_number_literal] = ACTIONS(1333), - [anon_sym_L_SQUOTE] = ACTIONS(1333), - [anon_sym_u_SQUOTE] = ACTIONS(1333), - [anon_sym_U_SQUOTE] = ACTIONS(1333), - [anon_sym_u8_SQUOTE] = ACTIONS(1333), - [anon_sym_SQUOTE] = ACTIONS(1333), - [anon_sym_L_DQUOTE] = ACTIONS(1333), - [anon_sym_u_DQUOTE] = ACTIONS(1333), - [anon_sym_U_DQUOTE] = ACTIONS(1333), - [anon_sym_u8_DQUOTE] = ACTIONS(1333), - [anon_sym_DQUOTE] = ACTIONS(1333), - [sym_true] = ACTIONS(1331), - [sym_false] = ACTIONS(1331), - [anon_sym_NULL] = ACTIONS(1331), - [anon_sym_nullptr] = ACTIONS(1331), - [sym_comment] = ACTIONS(3), - }, - [129] = { - [sym_identifier] = ACTIONS(1335), - [aux_sym_preproc_include_token1] = ACTIONS(1335), - [aux_sym_preproc_def_token1] = ACTIONS(1335), - [aux_sym_preproc_if_token1] = ACTIONS(1335), - [aux_sym_preproc_if_token2] = ACTIONS(1335), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1335), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1335), - [aux_sym_preproc_else_token1] = ACTIONS(1335), - [aux_sym_preproc_elif_token1] = ACTIONS(1335), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1335), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1335), - [sym_preproc_directive] = ACTIONS(1335), - [anon_sym_LPAREN2] = ACTIONS(1337), - [anon_sym_BANG] = ACTIONS(1337), - [anon_sym_TILDE] = ACTIONS(1337), - [anon_sym_DASH] = ACTIONS(1335), - [anon_sym_PLUS] = ACTIONS(1335), - [anon_sym_STAR] = ACTIONS(1337), - [anon_sym_AMP] = ACTIONS(1337), - [anon_sym_SEMI] = ACTIONS(1337), - [anon_sym___extension__] = ACTIONS(1335), - [anon_sym_typedef] = ACTIONS(1335), - [anon_sym_extern] = ACTIONS(1335), - [anon_sym___attribute__] = ACTIONS(1335), - [anon_sym___scanf] = ACTIONS(1335), - [anon_sym___printf] = ACTIONS(1335), - [anon_sym___read_mostly] = ACTIONS(1335), - [anon_sym___must_hold] = ACTIONS(1335), - [anon_sym___ro_after_init] = ACTIONS(1335), - [anon_sym___init] = ACTIONS(1335), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1337), - [anon_sym___declspec] = ACTIONS(1335), - [anon_sym___cdecl] = ACTIONS(1335), - [anon_sym___clrcall] = ACTIONS(1335), - [anon_sym___stdcall] = ACTIONS(1335), - [anon_sym___fastcall] = ACTIONS(1335), - [anon_sym___thiscall] = ACTIONS(1335), - [anon_sym___vectorcall] = ACTIONS(1335), - [anon_sym_LBRACE] = ACTIONS(1337), - [anon_sym_signed] = ACTIONS(1335), - [anon_sym_unsigned] = ACTIONS(1335), - [anon_sym_long] = ACTIONS(1335), - [anon_sym_short] = ACTIONS(1335), - [anon_sym_static] = ACTIONS(1335), - [anon_sym_auto] = ACTIONS(1335), - [anon_sym_register] = ACTIONS(1335), - [anon_sym_inline] = ACTIONS(1335), - [anon_sym___inline] = ACTIONS(1335), - [anon_sym___inline__] = ACTIONS(1335), - [anon_sym___forceinline] = ACTIONS(1335), - [anon_sym_thread_local] = ACTIONS(1335), - [anon_sym___thread] = ACTIONS(1335), - [anon_sym_const] = ACTIONS(1335), - [anon_sym_constexpr] = ACTIONS(1335), - [anon_sym_volatile] = ACTIONS(1335), - [anon_sym_restrict] = ACTIONS(1335), - [anon_sym___restrict__] = ACTIONS(1335), - [anon_sym__Atomic] = ACTIONS(1335), - [anon_sym__Noreturn] = ACTIONS(1335), - [anon_sym_noreturn] = ACTIONS(1335), - [anon_sym_alignas] = ACTIONS(1335), - [anon_sym__Alignas] = ACTIONS(1335), - [sym_primitive_type] = ACTIONS(1335), - [anon_sym_enum] = ACTIONS(1335), - [anon_sym_struct] = ACTIONS(1335), - [anon_sym_union] = ACTIONS(1335), - [anon_sym_if] = ACTIONS(1335), - [anon_sym_switch] = ACTIONS(1335), - [anon_sym_case] = ACTIONS(1335), - [anon_sym_default] = ACTIONS(1335), - [anon_sym_while] = ACTIONS(1335), - [anon_sym_do] = ACTIONS(1335), - [anon_sym_for] = ACTIONS(1335), - [anon_sym_return] = ACTIONS(1335), - [anon_sym_break] = ACTIONS(1335), - [anon_sym_continue] = ACTIONS(1335), - [anon_sym_goto] = ACTIONS(1335), - [anon_sym___try] = ACTIONS(1335), - [anon_sym___leave] = ACTIONS(1335), - [anon_sym_DASH_DASH] = ACTIONS(1337), - [anon_sym_PLUS_PLUS] = ACTIONS(1337), - [anon_sym_sizeof] = ACTIONS(1335), - [anon_sym___alignof__] = ACTIONS(1335), - [anon_sym___alignof] = ACTIONS(1335), - [anon_sym__alignof] = ACTIONS(1335), - [anon_sym_alignof] = ACTIONS(1335), - [anon_sym__Alignof] = ACTIONS(1335), - [anon_sym_offsetof] = ACTIONS(1335), - [anon_sym__Generic] = ACTIONS(1335), - [anon_sym_asm] = ACTIONS(1335), - [anon_sym___asm__] = ACTIONS(1335), - [sym_number_literal] = ACTIONS(1337), - [anon_sym_L_SQUOTE] = ACTIONS(1337), - [anon_sym_u_SQUOTE] = ACTIONS(1337), - [anon_sym_U_SQUOTE] = ACTIONS(1337), - [anon_sym_u8_SQUOTE] = ACTIONS(1337), - [anon_sym_SQUOTE] = ACTIONS(1337), - [anon_sym_L_DQUOTE] = ACTIONS(1337), - [anon_sym_u_DQUOTE] = ACTIONS(1337), - [anon_sym_U_DQUOTE] = ACTIONS(1337), - [anon_sym_u8_DQUOTE] = ACTIONS(1337), - [anon_sym_DQUOTE] = ACTIONS(1337), - [sym_true] = ACTIONS(1335), - [sym_false] = ACTIONS(1335), - [anon_sym_NULL] = ACTIONS(1335), - [anon_sym_nullptr] = ACTIONS(1335), - [sym_comment] = ACTIONS(3), - }, - [130] = { - [sym_identifier] = ACTIONS(1339), - [aux_sym_preproc_include_token1] = ACTIONS(1339), - [aux_sym_preproc_def_token1] = ACTIONS(1339), - [aux_sym_preproc_if_token1] = ACTIONS(1339), - [aux_sym_preproc_if_token2] = ACTIONS(1339), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1339), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1339), - [aux_sym_preproc_else_token1] = ACTIONS(1339), - [aux_sym_preproc_elif_token1] = ACTIONS(1339), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1339), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1339), - [sym_preproc_directive] = ACTIONS(1339), - [anon_sym_LPAREN2] = ACTIONS(1341), - [anon_sym_BANG] = ACTIONS(1341), - [anon_sym_TILDE] = ACTIONS(1341), - [anon_sym_DASH] = ACTIONS(1339), - [anon_sym_PLUS] = ACTIONS(1339), - [anon_sym_STAR] = ACTIONS(1341), - [anon_sym_AMP] = ACTIONS(1341), - [anon_sym_SEMI] = ACTIONS(1341), - [anon_sym___extension__] = ACTIONS(1339), - [anon_sym_typedef] = ACTIONS(1339), - [anon_sym_extern] = ACTIONS(1339), - [anon_sym___attribute__] = ACTIONS(1339), - [anon_sym___scanf] = ACTIONS(1339), - [anon_sym___printf] = ACTIONS(1339), - [anon_sym___read_mostly] = ACTIONS(1339), - [anon_sym___must_hold] = ACTIONS(1339), - [anon_sym___ro_after_init] = ACTIONS(1339), - [anon_sym___init] = ACTIONS(1339), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1341), - [anon_sym___declspec] = ACTIONS(1339), - [anon_sym___cdecl] = ACTIONS(1339), - [anon_sym___clrcall] = ACTIONS(1339), - [anon_sym___stdcall] = ACTIONS(1339), - [anon_sym___fastcall] = ACTIONS(1339), - [anon_sym___thiscall] = ACTIONS(1339), - [anon_sym___vectorcall] = ACTIONS(1339), - [anon_sym_LBRACE] = ACTIONS(1341), - [anon_sym_signed] = ACTIONS(1339), - [anon_sym_unsigned] = ACTIONS(1339), - [anon_sym_long] = ACTIONS(1339), - [anon_sym_short] = ACTIONS(1339), - [anon_sym_static] = ACTIONS(1339), - [anon_sym_auto] = ACTIONS(1339), - [anon_sym_register] = ACTIONS(1339), - [anon_sym_inline] = ACTIONS(1339), - [anon_sym___inline] = ACTIONS(1339), - [anon_sym___inline__] = ACTIONS(1339), - [anon_sym___forceinline] = ACTIONS(1339), - [anon_sym_thread_local] = ACTIONS(1339), - [anon_sym___thread] = ACTIONS(1339), - [anon_sym_const] = ACTIONS(1339), - [anon_sym_constexpr] = ACTIONS(1339), - [anon_sym_volatile] = ACTIONS(1339), - [anon_sym_restrict] = ACTIONS(1339), - [anon_sym___restrict__] = ACTIONS(1339), - [anon_sym__Atomic] = ACTIONS(1339), - [anon_sym__Noreturn] = ACTIONS(1339), - [anon_sym_noreturn] = ACTIONS(1339), - [anon_sym_alignas] = ACTIONS(1339), - [anon_sym__Alignas] = ACTIONS(1339), - [sym_primitive_type] = ACTIONS(1339), - [anon_sym_enum] = ACTIONS(1339), - [anon_sym_struct] = ACTIONS(1339), - [anon_sym_union] = ACTIONS(1339), - [anon_sym_if] = ACTIONS(1339), - [anon_sym_switch] = ACTIONS(1339), - [anon_sym_case] = ACTIONS(1339), - [anon_sym_default] = ACTIONS(1339), - [anon_sym_while] = ACTIONS(1339), - [anon_sym_do] = ACTIONS(1339), - [anon_sym_for] = ACTIONS(1339), - [anon_sym_return] = ACTIONS(1339), - [anon_sym_break] = ACTIONS(1339), - [anon_sym_continue] = ACTIONS(1339), - [anon_sym_goto] = ACTIONS(1339), - [anon_sym___try] = ACTIONS(1339), - [anon_sym___leave] = ACTIONS(1339), - [anon_sym_DASH_DASH] = ACTIONS(1341), - [anon_sym_PLUS_PLUS] = ACTIONS(1341), - [anon_sym_sizeof] = ACTIONS(1339), - [anon_sym___alignof__] = ACTIONS(1339), - [anon_sym___alignof] = ACTIONS(1339), - [anon_sym__alignof] = ACTIONS(1339), - [anon_sym_alignof] = ACTIONS(1339), - [anon_sym__Alignof] = ACTIONS(1339), - [anon_sym_offsetof] = ACTIONS(1339), - [anon_sym__Generic] = ACTIONS(1339), - [anon_sym_asm] = ACTIONS(1339), - [anon_sym___asm__] = ACTIONS(1339), - [sym_number_literal] = ACTIONS(1341), - [anon_sym_L_SQUOTE] = ACTIONS(1341), - [anon_sym_u_SQUOTE] = ACTIONS(1341), - [anon_sym_U_SQUOTE] = ACTIONS(1341), - [anon_sym_u8_SQUOTE] = ACTIONS(1341), - [anon_sym_SQUOTE] = ACTIONS(1341), - [anon_sym_L_DQUOTE] = ACTIONS(1341), - [anon_sym_u_DQUOTE] = ACTIONS(1341), - [anon_sym_U_DQUOTE] = ACTIONS(1341), - [anon_sym_u8_DQUOTE] = ACTIONS(1341), - [anon_sym_DQUOTE] = ACTIONS(1341), - [sym_true] = ACTIONS(1339), - [sym_false] = ACTIONS(1339), - [anon_sym_NULL] = ACTIONS(1339), - [anon_sym_nullptr] = ACTIONS(1339), - [sym_comment] = ACTIONS(3), - }, - [131] = { - [sym_identifier] = ACTIONS(1343), - [aux_sym_preproc_include_token1] = ACTIONS(1343), - [aux_sym_preproc_def_token1] = ACTIONS(1343), - [aux_sym_preproc_if_token1] = ACTIONS(1343), - [aux_sym_preproc_if_token2] = ACTIONS(1343), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1343), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1343), - [aux_sym_preproc_else_token1] = ACTIONS(1343), - [aux_sym_preproc_elif_token1] = ACTIONS(1343), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1343), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1343), - [sym_preproc_directive] = ACTIONS(1343), - [anon_sym_LPAREN2] = ACTIONS(1345), - [anon_sym_BANG] = ACTIONS(1345), - [anon_sym_TILDE] = ACTIONS(1345), - [anon_sym_DASH] = ACTIONS(1343), - [anon_sym_PLUS] = ACTIONS(1343), - [anon_sym_STAR] = ACTIONS(1345), - [anon_sym_AMP] = ACTIONS(1345), - [anon_sym_SEMI] = ACTIONS(1345), - [anon_sym___extension__] = ACTIONS(1343), - [anon_sym_typedef] = ACTIONS(1343), - [anon_sym_extern] = ACTIONS(1343), - [anon_sym___attribute__] = ACTIONS(1343), - [anon_sym___scanf] = ACTIONS(1343), - [anon_sym___printf] = ACTIONS(1343), - [anon_sym___read_mostly] = ACTIONS(1343), - [anon_sym___must_hold] = ACTIONS(1343), - [anon_sym___ro_after_init] = ACTIONS(1343), - [anon_sym___init] = ACTIONS(1343), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1345), - [anon_sym___declspec] = ACTIONS(1343), - [anon_sym___cdecl] = ACTIONS(1343), - [anon_sym___clrcall] = ACTIONS(1343), - [anon_sym___stdcall] = ACTIONS(1343), - [anon_sym___fastcall] = ACTIONS(1343), - [anon_sym___thiscall] = ACTIONS(1343), - [anon_sym___vectorcall] = ACTIONS(1343), - [anon_sym_LBRACE] = ACTIONS(1345), - [anon_sym_signed] = ACTIONS(1343), - [anon_sym_unsigned] = ACTIONS(1343), - [anon_sym_long] = ACTIONS(1343), - [anon_sym_short] = ACTIONS(1343), - [anon_sym_static] = ACTIONS(1343), - [anon_sym_auto] = ACTIONS(1343), - [anon_sym_register] = ACTIONS(1343), - [anon_sym_inline] = ACTIONS(1343), - [anon_sym___inline] = ACTIONS(1343), - [anon_sym___inline__] = ACTIONS(1343), - [anon_sym___forceinline] = ACTIONS(1343), - [anon_sym_thread_local] = ACTIONS(1343), - [anon_sym___thread] = ACTIONS(1343), - [anon_sym_const] = ACTIONS(1343), - [anon_sym_constexpr] = ACTIONS(1343), - [anon_sym_volatile] = ACTIONS(1343), - [anon_sym_restrict] = ACTIONS(1343), - [anon_sym___restrict__] = ACTIONS(1343), - [anon_sym__Atomic] = ACTIONS(1343), - [anon_sym__Noreturn] = ACTIONS(1343), - [anon_sym_noreturn] = ACTIONS(1343), - [anon_sym_alignas] = ACTIONS(1343), - [anon_sym__Alignas] = ACTIONS(1343), - [sym_primitive_type] = ACTIONS(1343), - [anon_sym_enum] = ACTIONS(1343), - [anon_sym_struct] = ACTIONS(1343), - [anon_sym_union] = ACTIONS(1343), - [anon_sym_if] = ACTIONS(1343), - [anon_sym_switch] = ACTIONS(1343), - [anon_sym_case] = ACTIONS(1343), - [anon_sym_default] = ACTIONS(1343), - [anon_sym_while] = ACTIONS(1343), - [anon_sym_do] = ACTIONS(1343), - [anon_sym_for] = ACTIONS(1343), - [anon_sym_return] = ACTIONS(1343), - [anon_sym_break] = ACTIONS(1343), - [anon_sym_continue] = ACTIONS(1343), - [anon_sym_goto] = ACTIONS(1343), - [anon_sym___try] = ACTIONS(1343), - [anon_sym___leave] = ACTIONS(1343), - [anon_sym_DASH_DASH] = ACTIONS(1345), - [anon_sym_PLUS_PLUS] = ACTIONS(1345), - [anon_sym_sizeof] = ACTIONS(1343), - [anon_sym___alignof__] = ACTIONS(1343), - [anon_sym___alignof] = ACTIONS(1343), - [anon_sym__alignof] = ACTIONS(1343), - [anon_sym_alignof] = ACTIONS(1343), - [anon_sym__Alignof] = ACTIONS(1343), - [anon_sym_offsetof] = ACTIONS(1343), - [anon_sym__Generic] = ACTIONS(1343), - [anon_sym_asm] = ACTIONS(1343), - [anon_sym___asm__] = ACTIONS(1343), - [sym_number_literal] = ACTIONS(1345), - [anon_sym_L_SQUOTE] = ACTIONS(1345), - [anon_sym_u_SQUOTE] = ACTIONS(1345), - [anon_sym_U_SQUOTE] = ACTIONS(1345), - [anon_sym_u8_SQUOTE] = ACTIONS(1345), - [anon_sym_SQUOTE] = ACTIONS(1345), - [anon_sym_L_DQUOTE] = ACTIONS(1345), - [anon_sym_u_DQUOTE] = ACTIONS(1345), - [anon_sym_U_DQUOTE] = ACTIONS(1345), - [anon_sym_u8_DQUOTE] = ACTIONS(1345), - [anon_sym_DQUOTE] = ACTIONS(1345), - [sym_true] = ACTIONS(1343), - [sym_false] = ACTIONS(1343), - [anon_sym_NULL] = ACTIONS(1343), - [anon_sym_nullptr] = ACTIONS(1343), - [sym_comment] = ACTIONS(3), - }, - [132] = { - [sym_identifier] = ACTIONS(1347), - [aux_sym_preproc_include_token1] = ACTIONS(1347), - [aux_sym_preproc_def_token1] = ACTIONS(1347), - [aux_sym_preproc_if_token1] = ACTIONS(1347), - [aux_sym_preproc_if_token2] = ACTIONS(1347), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1347), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1347), - [aux_sym_preproc_else_token1] = ACTIONS(1347), - [aux_sym_preproc_elif_token1] = ACTIONS(1347), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1347), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1347), - [sym_preproc_directive] = ACTIONS(1347), - [anon_sym_LPAREN2] = ACTIONS(1349), - [anon_sym_BANG] = ACTIONS(1349), - [anon_sym_TILDE] = ACTIONS(1349), - [anon_sym_DASH] = ACTIONS(1347), - [anon_sym_PLUS] = ACTIONS(1347), - [anon_sym_STAR] = ACTIONS(1349), - [anon_sym_AMP] = ACTIONS(1349), - [anon_sym_SEMI] = ACTIONS(1349), - [anon_sym___extension__] = ACTIONS(1347), - [anon_sym_typedef] = ACTIONS(1347), - [anon_sym_extern] = ACTIONS(1347), - [anon_sym___attribute__] = ACTIONS(1347), - [anon_sym___scanf] = ACTIONS(1347), - [anon_sym___printf] = ACTIONS(1347), - [anon_sym___read_mostly] = ACTIONS(1347), - [anon_sym___must_hold] = ACTIONS(1347), - [anon_sym___ro_after_init] = ACTIONS(1347), - [anon_sym___init] = ACTIONS(1347), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1349), - [anon_sym___declspec] = ACTIONS(1347), - [anon_sym___cdecl] = ACTIONS(1347), - [anon_sym___clrcall] = ACTIONS(1347), - [anon_sym___stdcall] = ACTIONS(1347), - [anon_sym___fastcall] = ACTIONS(1347), - [anon_sym___thiscall] = ACTIONS(1347), - [anon_sym___vectorcall] = ACTIONS(1347), - [anon_sym_LBRACE] = ACTIONS(1349), - [anon_sym_signed] = ACTIONS(1347), - [anon_sym_unsigned] = ACTIONS(1347), - [anon_sym_long] = ACTIONS(1347), - [anon_sym_short] = ACTIONS(1347), - [anon_sym_static] = ACTIONS(1347), - [anon_sym_auto] = ACTIONS(1347), - [anon_sym_register] = ACTIONS(1347), - [anon_sym_inline] = ACTIONS(1347), - [anon_sym___inline] = ACTIONS(1347), - [anon_sym___inline__] = ACTIONS(1347), - [anon_sym___forceinline] = ACTIONS(1347), - [anon_sym_thread_local] = ACTIONS(1347), - [anon_sym___thread] = ACTIONS(1347), - [anon_sym_const] = ACTIONS(1347), - [anon_sym_constexpr] = ACTIONS(1347), - [anon_sym_volatile] = ACTIONS(1347), - [anon_sym_restrict] = ACTIONS(1347), - [anon_sym___restrict__] = ACTIONS(1347), - [anon_sym__Atomic] = ACTIONS(1347), - [anon_sym__Noreturn] = ACTIONS(1347), - [anon_sym_noreturn] = ACTIONS(1347), - [anon_sym_alignas] = ACTIONS(1347), - [anon_sym__Alignas] = ACTIONS(1347), - [sym_primitive_type] = ACTIONS(1347), - [anon_sym_enum] = ACTIONS(1347), - [anon_sym_struct] = ACTIONS(1347), - [anon_sym_union] = ACTIONS(1347), - [anon_sym_if] = ACTIONS(1347), - [anon_sym_switch] = ACTIONS(1347), - [anon_sym_case] = ACTIONS(1347), - [anon_sym_default] = ACTIONS(1347), - [anon_sym_while] = ACTIONS(1347), - [anon_sym_do] = ACTIONS(1347), - [anon_sym_for] = ACTIONS(1347), - [anon_sym_return] = ACTIONS(1347), - [anon_sym_break] = ACTIONS(1347), - [anon_sym_continue] = ACTIONS(1347), - [anon_sym_goto] = ACTIONS(1347), - [anon_sym___try] = ACTIONS(1347), - [anon_sym___leave] = ACTIONS(1347), - [anon_sym_DASH_DASH] = ACTIONS(1349), - [anon_sym_PLUS_PLUS] = ACTIONS(1349), - [anon_sym_sizeof] = ACTIONS(1347), - [anon_sym___alignof__] = ACTIONS(1347), - [anon_sym___alignof] = ACTIONS(1347), - [anon_sym__alignof] = ACTIONS(1347), - [anon_sym_alignof] = ACTIONS(1347), - [anon_sym__Alignof] = ACTIONS(1347), - [anon_sym_offsetof] = ACTIONS(1347), - [anon_sym__Generic] = ACTIONS(1347), - [anon_sym_asm] = ACTIONS(1347), - [anon_sym___asm__] = ACTIONS(1347), - [sym_number_literal] = ACTIONS(1349), - [anon_sym_L_SQUOTE] = ACTIONS(1349), - [anon_sym_u_SQUOTE] = ACTIONS(1349), - [anon_sym_U_SQUOTE] = ACTIONS(1349), - [anon_sym_u8_SQUOTE] = ACTIONS(1349), - [anon_sym_SQUOTE] = ACTIONS(1349), - [anon_sym_L_DQUOTE] = ACTIONS(1349), - [anon_sym_u_DQUOTE] = ACTIONS(1349), - [anon_sym_U_DQUOTE] = ACTIONS(1349), - [anon_sym_u8_DQUOTE] = ACTIONS(1349), - [anon_sym_DQUOTE] = ACTIONS(1349), - [sym_true] = ACTIONS(1347), - [sym_false] = ACTIONS(1347), - [anon_sym_NULL] = ACTIONS(1347), - [anon_sym_nullptr] = ACTIONS(1347), - [sym_comment] = ACTIONS(3), - }, - [133] = { - [sym_identifier] = ACTIONS(1351), - [aux_sym_preproc_include_token1] = ACTIONS(1351), - [aux_sym_preproc_def_token1] = ACTIONS(1351), - [aux_sym_preproc_if_token1] = ACTIONS(1351), - [aux_sym_preproc_if_token2] = ACTIONS(1351), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1351), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1351), - [aux_sym_preproc_else_token1] = ACTIONS(1351), - [aux_sym_preproc_elif_token1] = ACTIONS(1351), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1351), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1351), - [sym_preproc_directive] = ACTIONS(1351), - [anon_sym_LPAREN2] = ACTIONS(1353), - [anon_sym_BANG] = ACTIONS(1353), - [anon_sym_TILDE] = ACTIONS(1353), - [anon_sym_DASH] = ACTIONS(1351), - [anon_sym_PLUS] = ACTIONS(1351), - [anon_sym_STAR] = ACTIONS(1353), - [anon_sym_AMP] = ACTIONS(1353), - [anon_sym_SEMI] = ACTIONS(1353), - [anon_sym___extension__] = ACTIONS(1351), - [anon_sym_typedef] = ACTIONS(1351), - [anon_sym_extern] = ACTIONS(1351), - [anon_sym___attribute__] = ACTIONS(1351), - [anon_sym___scanf] = ACTIONS(1351), - [anon_sym___printf] = ACTIONS(1351), - [anon_sym___read_mostly] = ACTIONS(1351), - [anon_sym___must_hold] = ACTIONS(1351), - [anon_sym___ro_after_init] = ACTIONS(1351), - [anon_sym___init] = ACTIONS(1351), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1353), - [anon_sym___declspec] = ACTIONS(1351), - [anon_sym___cdecl] = ACTIONS(1351), - [anon_sym___clrcall] = ACTIONS(1351), - [anon_sym___stdcall] = ACTIONS(1351), - [anon_sym___fastcall] = ACTIONS(1351), - [anon_sym___thiscall] = ACTIONS(1351), - [anon_sym___vectorcall] = ACTIONS(1351), - [anon_sym_LBRACE] = ACTIONS(1353), - [anon_sym_signed] = ACTIONS(1351), - [anon_sym_unsigned] = ACTIONS(1351), - [anon_sym_long] = ACTIONS(1351), - [anon_sym_short] = ACTIONS(1351), - [anon_sym_static] = ACTIONS(1351), - [anon_sym_auto] = ACTIONS(1351), - [anon_sym_register] = ACTIONS(1351), - [anon_sym_inline] = ACTIONS(1351), - [anon_sym___inline] = ACTIONS(1351), - [anon_sym___inline__] = ACTIONS(1351), - [anon_sym___forceinline] = ACTIONS(1351), - [anon_sym_thread_local] = ACTIONS(1351), - [anon_sym___thread] = ACTIONS(1351), - [anon_sym_const] = ACTIONS(1351), - [anon_sym_constexpr] = ACTIONS(1351), - [anon_sym_volatile] = ACTIONS(1351), - [anon_sym_restrict] = ACTIONS(1351), - [anon_sym___restrict__] = ACTIONS(1351), - [anon_sym__Atomic] = ACTIONS(1351), - [anon_sym__Noreturn] = ACTIONS(1351), - [anon_sym_noreturn] = ACTIONS(1351), - [anon_sym_alignas] = ACTIONS(1351), - [anon_sym__Alignas] = ACTIONS(1351), - [sym_primitive_type] = ACTIONS(1351), - [anon_sym_enum] = ACTIONS(1351), - [anon_sym_struct] = ACTIONS(1351), - [anon_sym_union] = ACTIONS(1351), - [anon_sym_if] = ACTIONS(1351), - [anon_sym_switch] = ACTIONS(1351), - [anon_sym_case] = ACTIONS(1351), - [anon_sym_default] = ACTIONS(1351), - [anon_sym_while] = ACTIONS(1351), - [anon_sym_do] = ACTIONS(1351), - [anon_sym_for] = ACTIONS(1351), - [anon_sym_return] = ACTIONS(1351), - [anon_sym_break] = ACTIONS(1351), - [anon_sym_continue] = ACTIONS(1351), - [anon_sym_goto] = ACTIONS(1351), - [anon_sym___try] = ACTIONS(1351), - [anon_sym___leave] = ACTIONS(1351), - [anon_sym_DASH_DASH] = ACTIONS(1353), - [anon_sym_PLUS_PLUS] = ACTIONS(1353), - [anon_sym_sizeof] = ACTIONS(1351), - [anon_sym___alignof__] = ACTIONS(1351), - [anon_sym___alignof] = ACTIONS(1351), - [anon_sym__alignof] = ACTIONS(1351), - [anon_sym_alignof] = ACTIONS(1351), - [anon_sym__Alignof] = ACTIONS(1351), - [anon_sym_offsetof] = ACTIONS(1351), - [anon_sym__Generic] = ACTIONS(1351), - [anon_sym_asm] = ACTIONS(1351), - [anon_sym___asm__] = ACTIONS(1351), - [sym_number_literal] = ACTIONS(1353), - [anon_sym_L_SQUOTE] = ACTIONS(1353), - [anon_sym_u_SQUOTE] = ACTIONS(1353), - [anon_sym_U_SQUOTE] = ACTIONS(1353), - [anon_sym_u8_SQUOTE] = ACTIONS(1353), - [anon_sym_SQUOTE] = ACTIONS(1353), - [anon_sym_L_DQUOTE] = ACTIONS(1353), - [anon_sym_u_DQUOTE] = ACTIONS(1353), - [anon_sym_U_DQUOTE] = ACTIONS(1353), - [anon_sym_u8_DQUOTE] = ACTIONS(1353), - [anon_sym_DQUOTE] = ACTIONS(1353), - [sym_true] = ACTIONS(1351), - [sym_false] = ACTIONS(1351), - [anon_sym_NULL] = ACTIONS(1351), - [anon_sym_nullptr] = ACTIONS(1351), - [sym_comment] = ACTIONS(3), - }, - [134] = { - [sym_identifier] = ACTIONS(1355), - [aux_sym_preproc_include_token1] = ACTIONS(1355), - [aux_sym_preproc_def_token1] = ACTIONS(1355), - [aux_sym_preproc_if_token1] = ACTIONS(1355), - [aux_sym_preproc_if_token2] = ACTIONS(1355), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1355), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1355), - [aux_sym_preproc_else_token1] = ACTIONS(1355), - [aux_sym_preproc_elif_token1] = ACTIONS(1355), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1355), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1355), - [sym_preproc_directive] = ACTIONS(1355), - [anon_sym_LPAREN2] = ACTIONS(1357), - [anon_sym_BANG] = ACTIONS(1357), - [anon_sym_TILDE] = ACTIONS(1357), - [anon_sym_DASH] = ACTIONS(1355), - [anon_sym_PLUS] = ACTIONS(1355), - [anon_sym_STAR] = ACTIONS(1357), - [anon_sym_AMP] = ACTIONS(1357), - [anon_sym_SEMI] = ACTIONS(1357), - [anon_sym___extension__] = ACTIONS(1355), - [anon_sym_typedef] = ACTIONS(1355), - [anon_sym_extern] = ACTIONS(1355), - [anon_sym___attribute__] = ACTIONS(1355), - [anon_sym___scanf] = ACTIONS(1355), - [anon_sym___printf] = ACTIONS(1355), - [anon_sym___read_mostly] = ACTIONS(1355), - [anon_sym___must_hold] = ACTIONS(1355), - [anon_sym___ro_after_init] = ACTIONS(1355), - [anon_sym___init] = ACTIONS(1355), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1357), - [anon_sym___declspec] = ACTIONS(1355), - [anon_sym___cdecl] = ACTIONS(1355), - [anon_sym___clrcall] = ACTIONS(1355), - [anon_sym___stdcall] = ACTIONS(1355), - [anon_sym___fastcall] = ACTIONS(1355), - [anon_sym___thiscall] = ACTIONS(1355), - [anon_sym___vectorcall] = ACTIONS(1355), - [anon_sym_LBRACE] = ACTIONS(1357), - [anon_sym_signed] = ACTIONS(1355), - [anon_sym_unsigned] = ACTIONS(1355), - [anon_sym_long] = ACTIONS(1355), - [anon_sym_short] = ACTIONS(1355), - [anon_sym_static] = ACTIONS(1355), - [anon_sym_auto] = ACTIONS(1355), - [anon_sym_register] = ACTIONS(1355), - [anon_sym_inline] = ACTIONS(1355), - [anon_sym___inline] = ACTIONS(1355), - [anon_sym___inline__] = ACTIONS(1355), - [anon_sym___forceinline] = ACTIONS(1355), - [anon_sym_thread_local] = ACTIONS(1355), - [anon_sym___thread] = ACTIONS(1355), - [anon_sym_const] = ACTIONS(1355), - [anon_sym_constexpr] = ACTIONS(1355), - [anon_sym_volatile] = ACTIONS(1355), - [anon_sym_restrict] = ACTIONS(1355), - [anon_sym___restrict__] = ACTIONS(1355), - [anon_sym__Atomic] = ACTIONS(1355), - [anon_sym__Noreturn] = ACTIONS(1355), - [anon_sym_noreturn] = ACTIONS(1355), - [anon_sym_alignas] = ACTIONS(1355), - [anon_sym__Alignas] = ACTIONS(1355), - [sym_primitive_type] = ACTIONS(1355), - [anon_sym_enum] = ACTIONS(1355), - [anon_sym_struct] = ACTIONS(1355), - [anon_sym_union] = ACTIONS(1355), - [anon_sym_if] = ACTIONS(1355), - [anon_sym_switch] = ACTIONS(1355), - [anon_sym_case] = ACTIONS(1355), - [anon_sym_default] = ACTIONS(1355), - [anon_sym_while] = ACTIONS(1355), - [anon_sym_do] = ACTIONS(1355), - [anon_sym_for] = ACTIONS(1355), - [anon_sym_return] = ACTIONS(1355), - [anon_sym_break] = ACTIONS(1355), - [anon_sym_continue] = ACTIONS(1355), - [anon_sym_goto] = ACTIONS(1355), - [anon_sym___try] = ACTIONS(1355), - [anon_sym___leave] = ACTIONS(1355), - [anon_sym_DASH_DASH] = ACTIONS(1357), - [anon_sym_PLUS_PLUS] = ACTIONS(1357), - [anon_sym_sizeof] = ACTIONS(1355), - [anon_sym___alignof__] = ACTIONS(1355), - [anon_sym___alignof] = ACTIONS(1355), - [anon_sym__alignof] = ACTIONS(1355), - [anon_sym_alignof] = ACTIONS(1355), - [anon_sym__Alignof] = ACTIONS(1355), - [anon_sym_offsetof] = ACTIONS(1355), - [anon_sym__Generic] = ACTIONS(1355), - [anon_sym_asm] = ACTIONS(1355), - [anon_sym___asm__] = ACTIONS(1355), - [sym_number_literal] = ACTIONS(1357), - [anon_sym_L_SQUOTE] = ACTIONS(1357), - [anon_sym_u_SQUOTE] = ACTIONS(1357), - [anon_sym_U_SQUOTE] = ACTIONS(1357), - [anon_sym_u8_SQUOTE] = ACTIONS(1357), - [anon_sym_SQUOTE] = ACTIONS(1357), - [anon_sym_L_DQUOTE] = ACTIONS(1357), - [anon_sym_u_DQUOTE] = ACTIONS(1357), - [anon_sym_U_DQUOTE] = ACTIONS(1357), - [anon_sym_u8_DQUOTE] = ACTIONS(1357), - [anon_sym_DQUOTE] = ACTIONS(1357), - [sym_true] = ACTIONS(1355), - [sym_false] = ACTIONS(1355), - [anon_sym_NULL] = ACTIONS(1355), - [anon_sym_nullptr] = ACTIONS(1355), + [154] = { + [sym_identifier] = ACTIONS(1407), + [aux_sym_preproc_include_token1] = ACTIONS(1407), + [aux_sym_preproc_def_token1] = ACTIONS(1407), + [aux_sym_preproc_if_token1] = ACTIONS(1407), + [aux_sym_preproc_if_token2] = ACTIONS(1407), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1407), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1407), + [aux_sym_preproc_else_token1] = ACTIONS(1407), + [aux_sym_preproc_elif_token1] = ACTIONS(1407), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1407), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1407), + [sym_preproc_directive] = ACTIONS(1407), + [anon_sym_LPAREN2] = ACTIONS(1409), + [anon_sym_BANG] = ACTIONS(1409), + [anon_sym_TILDE] = ACTIONS(1409), + [anon_sym_DASH] = ACTIONS(1407), + [anon_sym_PLUS] = ACTIONS(1407), + [anon_sym_STAR] = ACTIONS(1409), + [anon_sym_AMP] = ACTIONS(1409), + [anon_sym_SEMI] = ACTIONS(1409), + [anon_sym___extension__] = ACTIONS(1407), + [anon_sym_typedef] = ACTIONS(1407), + [anon_sym_extern] = ACTIONS(1407), + [anon_sym___attribute__] = ACTIONS(1407), + [anon_sym___scanf] = ACTIONS(1407), + [anon_sym___printf] = ACTIONS(1407), + [anon_sym___read_mostly] = ACTIONS(1407), + [anon_sym___must_hold] = ACTIONS(1407), + [anon_sym___ro_after_init] = ACTIONS(1407), + [anon_sym___noreturn] = ACTIONS(1407), + [anon_sym___cold] = ACTIONS(1407), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1409), + [anon_sym___declspec] = ACTIONS(1407), + [anon_sym___init] = ACTIONS(1407), + [anon_sym___exit] = ACTIONS(1407), + [anon_sym___cdecl] = ACTIONS(1407), + [anon_sym___clrcall] = ACTIONS(1407), + [anon_sym___stdcall] = ACTIONS(1407), + [anon_sym___fastcall] = ACTIONS(1407), + [anon_sym___thiscall] = ACTIONS(1407), + [anon_sym___vectorcall] = ACTIONS(1407), + [anon_sym_LBRACE] = ACTIONS(1409), + [anon_sym_signed] = ACTIONS(1407), + [anon_sym_unsigned] = ACTIONS(1407), + [anon_sym_long] = ACTIONS(1407), + [anon_sym_short] = ACTIONS(1407), + [anon_sym_static] = ACTIONS(1407), + [anon_sym_auto] = ACTIONS(1407), + [anon_sym_register] = ACTIONS(1407), + [anon_sym_inline] = ACTIONS(1407), + [anon_sym___inline] = ACTIONS(1407), + [anon_sym___inline__] = ACTIONS(1407), + [anon_sym___forceinline] = ACTIONS(1407), + [anon_sym_thread_local] = ACTIONS(1407), + [anon_sym___thread] = ACTIONS(1407), + [anon_sym_const] = ACTIONS(1407), + [anon_sym_constexpr] = ACTIONS(1407), + [anon_sym_volatile] = ACTIONS(1407), + [anon_sym_restrict] = ACTIONS(1407), + [anon_sym___restrict__] = ACTIONS(1407), + [anon_sym__Atomic] = ACTIONS(1407), + [anon_sym__Noreturn] = ACTIONS(1407), + [anon_sym_noreturn] = ACTIONS(1407), + [anon_sym_alignas] = ACTIONS(1407), + [anon_sym__Alignas] = ACTIONS(1407), + [sym_primitive_type] = ACTIONS(1407), + [anon_sym_enum] = ACTIONS(1407), + [anon_sym_struct] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1407), + [anon_sym_if] = ACTIONS(1407), + [anon_sym_switch] = ACTIONS(1407), + [anon_sym_case] = ACTIONS(1407), + [anon_sym_default] = ACTIONS(1407), + [anon_sym_while] = ACTIONS(1407), + [anon_sym_do] = ACTIONS(1407), + [anon_sym_for] = ACTIONS(1407), + [anon_sym_return] = ACTIONS(1407), + [anon_sym_break] = ACTIONS(1407), + [anon_sym_continue] = ACTIONS(1407), + [anon_sym_goto] = ACTIONS(1407), + [anon_sym___try] = ACTIONS(1407), + [anon_sym___leave] = ACTIONS(1407), + [anon_sym_DASH_DASH] = ACTIONS(1409), + [anon_sym_PLUS_PLUS] = ACTIONS(1409), + [anon_sym_sizeof] = ACTIONS(1407), + [anon_sym___alignof__] = ACTIONS(1407), + [anon_sym___alignof] = ACTIONS(1407), + [anon_sym__alignof] = ACTIONS(1407), + [anon_sym_alignof] = ACTIONS(1407), + [anon_sym__Alignof] = ACTIONS(1407), + [anon_sym_offsetof] = ACTIONS(1407), + [anon_sym__Generic] = ACTIONS(1407), + [anon_sym_asm] = ACTIONS(1407), + [anon_sym___asm__] = ACTIONS(1407), + [sym_number_literal] = ACTIONS(1409), + [anon_sym_L_SQUOTE] = ACTIONS(1409), + [anon_sym_u_SQUOTE] = ACTIONS(1409), + [anon_sym_U_SQUOTE] = ACTIONS(1409), + [anon_sym_u8_SQUOTE] = ACTIONS(1409), + [anon_sym_SQUOTE] = ACTIONS(1409), + [anon_sym_L_DQUOTE] = ACTIONS(1409), + [anon_sym_u_DQUOTE] = ACTIONS(1409), + [anon_sym_U_DQUOTE] = ACTIONS(1409), + [anon_sym_u8_DQUOTE] = ACTIONS(1409), + [anon_sym_DQUOTE] = ACTIONS(1409), + [sym_true] = ACTIONS(1407), + [sym_false] = ACTIONS(1407), + [anon_sym_NULL] = ACTIONS(1407), + [anon_sym_nullptr] = ACTIONS(1407), [sym_comment] = ACTIONS(3), }, - [135] = { - [sym_identifier] = ACTIONS(1359), - [aux_sym_preproc_include_token1] = ACTIONS(1359), - [aux_sym_preproc_def_token1] = ACTIONS(1359), - [aux_sym_preproc_if_token1] = ACTIONS(1359), - [aux_sym_preproc_if_token2] = ACTIONS(1359), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1359), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1359), - [aux_sym_preproc_else_token1] = ACTIONS(1359), - [aux_sym_preproc_elif_token1] = ACTIONS(1359), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1359), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1359), - [sym_preproc_directive] = ACTIONS(1359), - [anon_sym_LPAREN2] = ACTIONS(1361), - [anon_sym_BANG] = ACTIONS(1361), - [anon_sym_TILDE] = ACTIONS(1361), - [anon_sym_DASH] = ACTIONS(1359), - [anon_sym_PLUS] = ACTIONS(1359), - [anon_sym_STAR] = ACTIONS(1361), - [anon_sym_AMP] = ACTIONS(1361), - [anon_sym_SEMI] = ACTIONS(1361), - [anon_sym___extension__] = ACTIONS(1359), - [anon_sym_typedef] = ACTIONS(1359), - [anon_sym_extern] = ACTIONS(1359), - [anon_sym___attribute__] = ACTIONS(1359), - [anon_sym___scanf] = ACTIONS(1359), - [anon_sym___printf] = ACTIONS(1359), - [anon_sym___read_mostly] = ACTIONS(1359), - [anon_sym___must_hold] = ACTIONS(1359), - [anon_sym___ro_after_init] = ACTIONS(1359), - [anon_sym___init] = ACTIONS(1359), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1361), - [anon_sym___declspec] = ACTIONS(1359), - [anon_sym___cdecl] = ACTIONS(1359), - [anon_sym___clrcall] = ACTIONS(1359), - [anon_sym___stdcall] = ACTIONS(1359), - [anon_sym___fastcall] = ACTIONS(1359), - [anon_sym___thiscall] = ACTIONS(1359), - [anon_sym___vectorcall] = ACTIONS(1359), - [anon_sym_LBRACE] = ACTIONS(1361), - [anon_sym_signed] = ACTIONS(1359), - [anon_sym_unsigned] = ACTIONS(1359), - [anon_sym_long] = ACTIONS(1359), - [anon_sym_short] = ACTIONS(1359), - [anon_sym_static] = ACTIONS(1359), - [anon_sym_auto] = ACTIONS(1359), - [anon_sym_register] = ACTIONS(1359), - [anon_sym_inline] = ACTIONS(1359), - [anon_sym___inline] = ACTIONS(1359), - [anon_sym___inline__] = ACTIONS(1359), - [anon_sym___forceinline] = ACTIONS(1359), - [anon_sym_thread_local] = ACTIONS(1359), - [anon_sym___thread] = ACTIONS(1359), - [anon_sym_const] = ACTIONS(1359), - [anon_sym_constexpr] = ACTIONS(1359), - [anon_sym_volatile] = ACTIONS(1359), - [anon_sym_restrict] = ACTIONS(1359), - [anon_sym___restrict__] = ACTIONS(1359), - [anon_sym__Atomic] = ACTIONS(1359), - [anon_sym__Noreturn] = ACTIONS(1359), - [anon_sym_noreturn] = ACTIONS(1359), - [anon_sym_alignas] = ACTIONS(1359), - [anon_sym__Alignas] = ACTIONS(1359), - [sym_primitive_type] = ACTIONS(1359), - [anon_sym_enum] = ACTIONS(1359), - [anon_sym_struct] = ACTIONS(1359), - [anon_sym_union] = ACTIONS(1359), - [anon_sym_if] = ACTIONS(1359), - [anon_sym_switch] = ACTIONS(1359), - [anon_sym_case] = ACTIONS(1359), - [anon_sym_default] = ACTIONS(1359), - [anon_sym_while] = ACTIONS(1359), - [anon_sym_do] = ACTIONS(1359), - [anon_sym_for] = ACTIONS(1359), - [anon_sym_return] = ACTIONS(1359), - [anon_sym_break] = ACTIONS(1359), - [anon_sym_continue] = ACTIONS(1359), - [anon_sym_goto] = ACTIONS(1359), - [anon_sym___try] = ACTIONS(1359), - [anon_sym___leave] = ACTIONS(1359), - [anon_sym_DASH_DASH] = ACTIONS(1361), - [anon_sym_PLUS_PLUS] = ACTIONS(1361), - [anon_sym_sizeof] = ACTIONS(1359), - [anon_sym___alignof__] = ACTIONS(1359), - [anon_sym___alignof] = ACTIONS(1359), - [anon_sym__alignof] = ACTIONS(1359), - [anon_sym_alignof] = ACTIONS(1359), - [anon_sym__Alignof] = ACTIONS(1359), - [anon_sym_offsetof] = ACTIONS(1359), - [anon_sym__Generic] = ACTIONS(1359), - [anon_sym_asm] = ACTIONS(1359), - [anon_sym___asm__] = ACTIONS(1359), - [sym_number_literal] = ACTIONS(1361), - [anon_sym_L_SQUOTE] = ACTIONS(1361), - [anon_sym_u_SQUOTE] = ACTIONS(1361), - [anon_sym_U_SQUOTE] = ACTIONS(1361), - [anon_sym_u8_SQUOTE] = ACTIONS(1361), - [anon_sym_SQUOTE] = ACTIONS(1361), - [anon_sym_L_DQUOTE] = ACTIONS(1361), - [anon_sym_u_DQUOTE] = ACTIONS(1361), - [anon_sym_U_DQUOTE] = ACTIONS(1361), - [anon_sym_u8_DQUOTE] = ACTIONS(1361), - [anon_sym_DQUOTE] = ACTIONS(1361), - [sym_true] = ACTIONS(1359), - [sym_false] = ACTIONS(1359), - [anon_sym_NULL] = ACTIONS(1359), - [anon_sym_nullptr] = ACTIONS(1359), + [155] = { + [sym_identifier] = ACTIONS(1411), + [aux_sym_preproc_include_token1] = ACTIONS(1411), + [aux_sym_preproc_def_token1] = ACTIONS(1411), + [aux_sym_preproc_if_token1] = ACTIONS(1411), + [aux_sym_preproc_if_token2] = ACTIONS(1411), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1411), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1411), + [aux_sym_preproc_else_token1] = ACTIONS(1411), + [aux_sym_preproc_elif_token1] = ACTIONS(1411), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1411), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1411), + [sym_preproc_directive] = ACTIONS(1411), + [anon_sym_LPAREN2] = ACTIONS(1413), + [anon_sym_BANG] = ACTIONS(1413), + [anon_sym_TILDE] = ACTIONS(1413), + [anon_sym_DASH] = ACTIONS(1411), + [anon_sym_PLUS] = ACTIONS(1411), + [anon_sym_STAR] = ACTIONS(1413), + [anon_sym_AMP] = ACTIONS(1413), + [anon_sym_SEMI] = ACTIONS(1413), + [anon_sym___extension__] = ACTIONS(1411), + [anon_sym_typedef] = ACTIONS(1411), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym___attribute__] = ACTIONS(1411), + [anon_sym___scanf] = ACTIONS(1411), + [anon_sym___printf] = ACTIONS(1411), + [anon_sym___read_mostly] = ACTIONS(1411), + [anon_sym___must_hold] = ACTIONS(1411), + [anon_sym___ro_after_init] = ACTIONS(1411), + [anon_sym___noreturn] = ACTIONS(1411), + [anon_sym___cold] = ACTIONS(1411), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1413), + [anon_sym___declspec] = ACTIONS(1411), + [anon_sym___init] = ACTIONS(1411), + [anon_sym___exit] = ACTIONS(1411), + [anon_sym___cdecl] = ACTIONS(1411), + [anon_sym___clrcall] = ACTIONS(1411), + [anon_sym___stdcall] = ACTIONS(1411), + [anon_sym___fastcall] = ACTIONS(1411), + [anon_sym___thiscall] = ACTIONS(1411), + [anon_sym___vectorcall] = ACTIONS(1411), + [anon_sym_LBRACE] = ACTIONS(1413), + [anon_sym_signed] = ACTIONS(1411), + [anon_sym_unsigned] = ACTIONS(1411), + [anon_sym_long] = ACTIONS(1411), + [anon_sym_short] = ACTIONS(1411), + [anon_sym_static] = ACTIONS(1411), + [anon_sym_auto] = ACTIONS(1411), + [anon_sym_register] = ACTIONS(1411), + [anon_sym_inline] = ACTIONS(1411), + [anon_sym___inline] = ACTIONS(1411), + [anon_sym___inline__] = ACTIONS(1411), + [anon_sym___forceinline] = ACTIONS(1411), + [anon_sym_thread_local] = ACTIONS(1411), + [anon_sym___thread] = ACTIONS(1411), + [anon_sym_const] = ACTIONS(1411), + [anon_sym_constexpr] = ACTIONS(1411), + [anon_sym_volatile] = ACTIONS(1411), + [anon_sym_restrict] = ACTIONS(1411), + [anon_sym___restrict__] = ACTIONS(1411), + [anon_sym__Atomic] = ACTIONS(1411), + [anon_sym__Noreturn] = ACTIONS(1411), + [anon_sym_noreturn] = ACTIONS(1411), + [anon_sym_alignas] = ACTIONS(1411), + [anon_sym__Alignas] = ACTIONS(1411), + [sym_primitive_type] = ACTIONS(1411), + [anon_sym_enum] = ACTIONS(1411), + [anon_sym_struct] = ACTIONS(1411), + [anon_sym_union] = ACTIONS(1411), + [anon_sym_if] = ACTIONS(1411), + [anon_sym_switch] = ACTIONS(1411), + [anon_sym_case] = ACTIONS(1411), + [anon_sym_default] = ACTIONS(1411), + [anon_sym_while] = ACTIONS(1411), + [anon_sym_do] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1411), + [anon_sym_return] = ACTIONS(1411), + [anon_sym_break] = ACTIONS(1411), + [anon_sym_continue] = ACTIONS(1411), + [anon_sym_goto] = ACTIONS(1411), + [anon_sym___try] = ACTIONS(1411), + [anon_sym___leave] = ACTIONS(1411), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_sizeof] = ACTIONS(1411), + [anon_sym___alignof__] = ACTIONS(1411), + [anon_sym___alignof] = ACTIONS(1411), + [anon_sym__alignof] = ACTIONS(1411), + [anon_sym_alignof] = ACTIONS(1411), + [anon_sym__Alignof] = ACTIONS(1411), + [anon_sym_offsetof] = ACTIONS(1411), + [anon_sym__Generic] = ACTIONS(1411), + [anon_sym_asm] = ACTIONS(1411), + [anon_sym___asm__] = ACTIONS(1411), + [sym_number_literal] = ACTIONS(1413), + [anon_sym_L_SQUOTE] = ACTIONS(1413), + [anon_sym_u_SQUOTE] = ACTIONS(1413), + [anon_sym_U_SQUOTE] = ACTIONS(1413), + [anon_sym_u8_SQUOTE] = ACTIONS(1413), + [anon_sym_SQUOTE] = ACTIONS(1413), + [anon_sym_L_DQUOTE] = ACTIONS(1413), + [anon_sym_u_DQUOTE] = ACTIONS(1413), + [anon_sym_U_DQUOTE] = ACTIONS(1413), + [anon_sym_u8_DQUOTE] = ACTIONS(1413), + [anon_sym_DQUOTE] = ACTIONS(1413), + [sym_true] = ACTIONS(1411), + [sym_false] = ACTIONS(1411), + [anon_sym_NULL] = ACTIONS(1411), + [anon_sym_nullptr] = ACTIONS(1411), [sym_comment] = ACTIONS(3), }, - [136] = { - [sym_identifier] = ACTIONS(1363), - [aux_sym_preproc_include_token1] = ACTIONS(1363), - [aux_sym_preproc_def_token1] = ACTIONS(1363), - [aux_sym_preproc_if_token1] = ACTIONS(1363), - [aux_sym_preproc_if_token2] = ACTIONS(1363), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1363), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1363), - [aux_sym_preproc_else_token1] = ACTIONS(1363), - [aux_sym_preproc_elif_token1] = ACTIONS(1363), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1363), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1363), - [sym_preproc_directive] = ACTIONS(1363), - [anon_sym_LPAREN2] = ACTIONS(1365), - [anon_sym_BANG] = ACTIONS(1365), - [anon_sym_TILDE] = ACTIONS(1365), - [anon_sym_DASH] = ACTIONS(1363), - [anon_sym_PLUS] = ACTIONS(1363), - [anon_sym_STAR] = ACTIONS(1365), - [anon_sym_AMP] = ACTIONS(1365), - [anon_sym_SEMI] = ACTIONS(1365), - [anon_sym___extension__] = ACTIONS(1363), - [anon_sym_typedef] = ACTIONS(1363), - [anon_sym_extern] = ACTIONS(1363), - [anon_sym___attribute__] = ACTIONS(1363), - [anon_sym___scanf] = ACTIONS(1363), - [anon_sym___printf] = ACTIONS(1363), - [anon_sym___read_mostly] = ACTIONS(1363), - [anon_sym___must_hold] = ACTIONS(1363), - [anon_sym___ro_after_init] = ACTIONS(1363), - [anon_sym___init] = ACTIONS(1363), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1365), - [anon_sym___declspec] = ACTIONS(1363), - [anon_sym___cdecl] = ACTIONS(1363), - [anon_sym___clrcall] = ACTIONS(1363), - [anon_sym___stdcall] = ACTIONS(1363), - [anon_sym___fastcall] = ACTIONS(1363), - [anon_sym___thiscall] = ACTIONS(1363), - [anon_sym___vectorcall] = ACTIONS(1363), - [anon_sym_LBRACE] = ACTIONS(1365), - [anon_sym_signed] = ACTIONS(1363), - [anon_sym_unsigned] = ACTIONS(1363), - [anon_sym_long] = ACTIONS(1363), - [anon_sym_short] = ACTIONS(1363), - [anon_sym_static] = ACTIONS(1363), - [anon_sym_auto] = ACTIONS(1363), - [anon_sym_register] = ACTIONS(1363), - [anon_sym_inline] = ACTIONS(1363), - [anon_sym___inline] = ACTIONS(1363), - [anon_sym___inline__] = ACTIONS(1363), - [anon_sym___forceinline] = ACTIONS(1363), - [anon_sym_thread_local] = ACTIONS(1363), - [anon_sym___thread] = ACTIONS(1363), - [anon_sym_const] = ACTIONS(1363), - [anon_sym_constexpr] = ACTIONS(1363), - [anon_sym_volatile] = ACTIONS(1363), - [anon_sym_restrict] = ACTIONS(1363), - [anon_sym___restrict__] = ACTIONS(1363), - [anon_sym__Atomic] = ACTIONS(1363), - [anon_sym__Noreturn] = ACTIONS(1363), - [anon_sym_noreturn] = ACTIONS(1363), - [anon_sym_alignas] = ACTIONS(1363), - [anon_sym__Alignas] = ACTIONS(1363), - [sym_primitive_type] = ACTIONS(1363), - [anon_sym_enum] = ACTIONS(1363), - [anon_sym_struct] = ACTIONS(1363), - [anon_sym_union] = ACTIONS(1363), - [anon_sym_if] = ACTIONS(1363), - [anon_sym_switch] = ACTIONS(1363), - [anon_sym_case] = ACTIONS(1363), - [anon_sym_default] = ACTIONS(1363), - [anon_sym_while] = ACTIONS(1363), - [anon_sym_do] = ACTIONS(1363), - [anon_sym_for] = ACTIONS(1363), - [anon_sym_return] = ACTIONS(1363), - [anon_sym_break] = ACTIONS(1363), - [anon_sym_continue] = ACTIONS(1363), - [anon_sym_goto] = ACTIONS(1363), - [anon_sym___try] = ACTIONS(1363), - [anon_sym___leave] = ACTIONS(1363), - [anon_sym_DASH_DASH] = ACTIONS(1365), - [anon_sym_PLUS_PLUS] = ACTIONS(1365), - [anon_sym_sizeof] = ACTIONS(1363), - [anon_sym___alignof__] = ACTIONS(1363), - [anon_sym___alignof] = ACTIONS(1363), - [anon_sym__alignof] = ACTIONS(1363), - [anon_sym_alignof] = ACTIONS(1363), - [anon_sym__Alignof] = ACTIONS(1363), - [anon_sym_offsetof] = ACTIONS(1363), - [anon_sym__Generic] = ACTIONS(1363), - [anon_sym_asm] = ACTIONS(1363), - [anon_sym___asm__] = ACTIONS(1363), - [sym_number_literal] = ACTIONS(1365), - [anon_sym_L_SQUOTE] = ACTIONS(1365), - [anon_sym_u_SQUOTE] = ACTIONS(1365), - [anon_sym_U_SQUOTE] = ACTIONS(1365), - [anon_sym_u8_SQUOTE] = ACTIONS(1365), - [anon_sym_SQUOTE] = ACTIONS(1365), - [anon_sym_L_DQUOTE] = ACTIONS(1365), - [anon_sym_u_DQUOTE] = ACTIONS(1365), - [anon_sym_U_DQUOTE] = ACTIONS(1365), - [anon_sym_u8_DQUOTE] = ACTIONS(1365), - [anon_sym_DQUOTE] = ACTIONS(1365), - [sym_true] = ACTIONS(1363), - [sym_false] = ACTIONS(1363), - [anon_sym_NULL] = ACTIONS(1363), - [anon_sym_nullptr] = ACTIONS(1363), + [156] = { + [sym_identifier] = ACTIONS(1411), + [aux_sym_preproc_include_token1] = ACTIONS(1411), + [aux_sym_preproc_def_token1] = ACTIONS(1411), + [aux_sym_preproc_if_token1] = ACTIONS(1411), + [aux_sym_preproc_if_token2] = ACTIONS(1411), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1411), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1411), + [aux_sym_preproc_else_token1] = ACTIONS(1411), + [aux_sym_preproc_elif_token1] = ACTIONS(1411), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1411), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1411), + [sym_preproc_directive] = ACTIONS(1411), + [anon_sym_LPAREN2] = ACTIONS(1413), + [anon_sym_BANG] = ACTIONS(1413), + [anon_sym_TILDE] = ACTIONS(1413), + [anon_sym_DASH] = ACTIONS(1411), + [anon_sym_PLUS] = ACTIONS(1411), + [anon_sym_STAR] = ACTIONS(1413), + [anon_sym_AMP] = ACTIONS(1413), + [anon_sym_SEMI] = ACTIONS(1413), + [anon_sym___extension__] = ACTIONS(1411), + [anon_sym_typedef] = ACTIONS(1411), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym___attribute__] = ACTIONS(1411), + [anon_sym___scanf] = ACTIONS(1411), + [anon_sym___printf] = ACTIONS(1411), + [anon_sym___read_mostly] = ACTIONS(1411), + [anon_sym___must_hold] = ACTIONS(1411), + [anon_sym___ro_after_init] = ACTIONS(1411), + [anon_sym___noreturn] = ACTIONS(1411), + [anon_sym___cold] = ACTIONS(1411), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1413), + [anon_sym___declspec] = ACTIONS(1411), + [anon_sym___init] = ACTIONS(1411), + [anon_sym___exit] = ACTIONS(1411), + [anon_sym___cdecl] = ACTIONS(1411), + [anon_sym___clrcall] = ACTIONS(1411), + [anon_sym___stdcall] = ACTIONS(1411), + [anon_sym___fastcall] = ACTIONS(1411), + [anon_sym___thiscall] = ACTIONS(1411), + [anon_sym___vectorcall] = ACTIONS(1411), + [anon_sym_LBRACE] = ACTIONS(1413), + [anon_sym_signed] = ACTIONS(1411), + [anon_sym_unsigned] = ACTIONS(1411), + [anon_sym_long] = ACTIONS(1411), + [anon_sym_short] = ACTIONS(1411), + [anon_sym_static] = ACTIONS(1411), + [anon_sym_auto] = ACTIONS(1411), + [anon_sym_register] = ACTIONS(1411), + [anon_sym_inline] = ACTIONS(1411), + [anon_sym___inline] = ACTIONS(1411), + [anon_sym___inline__] = ACTIONS(1411), + [anon_sym___forceinline] = ACTIONS(1411), + [anon_sym_thread_local] = ACTIONS(1411), + [anon_sym___thread] = ACTIONS(1411), + [anon_sym_const] = ACTIONS(1411), + [anon_sym_constexpr] = ACTIONS(1411), + [anon_sym_volatile] = ACTIONS(1411), + [anon_sym_restrict] = ACTIONS(1411), + [anon_sym___restrict__] = ACTIONS(1411), + [anon_sym__Atomic] = ACTIONS(1411), + [anon_sym__Noreturn] = ACTIONS(1411), + [anon_sym_noreturn] = ACTIONS(1411), + [anon_sym_alignas] = ACTIONS(1411), + [anon_sym__Alignas] = ACTIONS(1411), + [sym_primitive_type] = ACTIONS(1411), + [anon_sym_enum] = ACTIONS(1411), + [anon_sym_struct] = ACTIONS(1411), + [anon_sym_union] = ACTIONS(1411), + [anon_sym_if] = ACTIONS(1411), + [anon_sym_switch] = ACTIONS(1411), + [anon_sym_case] = ACTIONS(1411), + [anon_sym_default] = ACTIONS(1411), + [anon_sym_while] = ACTIONS(1411), + [anon_sym_do] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1411), + [anon_sym_return] = ACTIONS(1411), + [anon_sym_break] = ACTIONS(1411), + [anon_sym_continue] = ACTIONS(1411), + [anon_sym_goto] = ACTIONS(1411), + [anon_sym___try] = ACTIONS(1411), + [anon_sym___leave] = ACTIONS(1411), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_sizeof] = ACTIONS(1411), + [anon_sym___alignof__] = ACTIONS(1411), + [anon_sym___alignof] = ACTIONS(1411), + [anon_sym__alignof] = ACTIONS(1411), + [anon_sym_alignof] = ACTIONS(1411), + [anon_sym__Alignof] = ACTIONS(1411), + [anon_sym_offsetof] = ACTIONS(1411), + [anon_sym__Generic] = ACTIONS(1411), + [anon_sym_asm] = ACTIONS(1411), + [anon_sym___asm__] = ACTIONS(1411), + [sym_number_literal] = ACTIONS(1413), + [anon_sym_L_SQUOTE] = ACTIONS(1413), + [anon_sym_u_SQUOTE] = ACTIONS(1413), + [anon_sym_U_SQUOTE] = ACTIONS(1413), + [anon_sym_u8_SQUOTE] = ACTIONS(1413), + [anon_sym_SQUOTE] = ACTIONS(1413), + [anon_sym_L_DQUOTE] = ACTIONS(1413), + [anon_sym_u_DQUOTE] = ACTIONS(1413), + [anon_sym_U_DQUOTE] = ACTIONS(1413), + [anon_sym_u8_DQUOTE] = ACTIONS(1413), + [anon_sym_DQUOTE] = ACTIONS(1413), + [sym_true] = ACTIONS(1411), + [sym_false] = ACTIONS(1411), + [anon_sym_NULL] = ACTIONS(1411), + [anon_sym_nullptr] = ACTIONS(1411), [sym_comment] = ACTIONS(3), }, - [137] = { - [sym_identifier] = ACTIONS(1367), - [aux_sym_preproc_include_token1] = ACTIONS(1367), - [aux_sym_preproc_def_token1] = ACTIONS(1367), - [aux_sym_preproc_if_token1] = ACTIONS(1367), - [aux_sym_preproc_if_token2] = ACTIONS(1367), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1367), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1367), - [aux_sym_preproc_else_token1] = ACTIONS(1367), - [aux_sym_preproc_elif_token1] = ACTIONS(1367), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1367), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1367), - [sym_preproc_directive] = ACTIONS(1367), - [anon_sym_LPAREN2] = ACTIONS(1369), - [anon_sym_BANG] = ACTIONS(1369), - [anon_sym_TILDE] = ACTIONS(1369), - [anon_sym_DASH] = ACTIONS(1367), - [anon_sym_PLUS] = ACTIONS(1367), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_AMP] = ACTIONS(1369), - [anon_sym_SEMI] = ACTIONS(1369), - [anon_sym___extension__] = ACTIONS(1367), - [anon_sym_typedef] = ACTIONS(1367), - [anon_sym_extern] = ACTIONS(1367), - [anon_sym___attribute__] = ACTIONS(1367), - [anon_sym___scanf] = ACTIONS(1367), - [anon_sym___printf] = ACTIONS(1367), - [anon_sym___read_mostly] = ACTIONS(1367), - [anon_sym___must_hold] = ACTIONS(1367), - [anon_sym___ro_after_init] = ACTIONS(1367), - [anon_sym___init] = ACTIONS(1367), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1369), - [anon_sym___declspec] = ACTIONS(1367), - [anon_sym___cdecl] = ACTIONS(1367), - [anon_sym___clrcall] = ACTIONS(1367), - [anon_sym___stdcall] = ACTIONS(1367), - [anon_sym___fastcall] = ACTIONS(1367), - [anon_sym___thiscall] = ACTIONS(1367), - [anon_sym___vectorcall] = ACTIONS(1367), - [anon_sym_LBRACE] = ACTIONS(1369), - [anon_sym_signed] = ACTIONS(1367), - [anon_sym_unsigned] = ACTIONS(1367), - [anon_sym_long] = ACTIONS(1367), - [anon_sym_short] = ACTIONS(1367), - [anon_sym_static] = ACTIONS(1367), - [anon_sym_auto] = ACTIONS(1367), - [anon_sym_register] = ACTIONS(1367), - [anon_sym_inline] = ACTIONS(1367), - [anon_sym___inline] = ACTIONS(1367), - [anon_sym___inline__] = ACTIONS(1367), - [anon_sym___forceinline] = ACTIONS(1367), - [anon_sym_thread_local] = ACTIONS(1367), - [anon_sym___thread] = ACTIONS(1367), - [anon_sym_const] = ACTIONS(1367), - [anon_sym_constexpr] = ACTIONS(1367), - [anon_sym_volatile] = ACTIONS(1367), - [anon_sym_restrict] = ACTIONS(1367), - [anon_sym___restrict__] = ACTIONS(1367), - [anon_sym__Atomic] = ACTIONS(1367), - [anon_sym__Noreturn] = ACTIONS(1367), - [anon_sym_noreturn] = ACTIONS(1367), - [anon_sym_alignas] = ACTIONS(1367), - [anon_sym__Alignas] = ACTIONS(1367), - [sym_primitive_type] = ACTIONS(1367), - [anon_sym_enum] = ACTIONS(1367), - [anon_sym_struct] = ACTIONS(1367), - [anon_sym_union] = ACTIONS(1367), - [anon_sym_if] = ACTIONS(1367), - [anon_sym_switch] = ACTIONS(1367), - [anon_sym_case] = ACTIONS(1367), - [anon_sym_default] = ACTIONS(1367), - [anon_sym_while] = ACTIONS(1367), - [anon_sym_do] = ACTIONS(1367), - [anon_sym_for] = ACTIONS(1367), - [anon_sym_return] = ACTIONS(1367), - [anon_sym_break] = ACTIONS(1367), - [anon_sym_continue] = ACTIONS(1367), - [anon_sym_goto] = ACTIONS(1367), - [anon_sym___try] = ACTIONS(1367), - [anon_sym___leave] = ACTIONS(1367), - [anon_sym_DASH_DASH] = ACTIONS(1369), - [anon_sym_PLUS_PLUS] = ACTIONS(1369), - [anon_sym_sizeof] = ACTIONS(1367), - [anon_sym___alignof__] = ACTIONS(1367), - [anon_sym___alignof] = ACTIONS(1367), - [anon_sym__alignof] = ACTIONS(1367), - [anon_sym_alignof] = ACTIONS(1367), - [anon_sym__Alignof] = ACTIONS(1367), - [anon_sym_offsetof] = ACTIONS(1367), - [anon_sym__Generic] = ACTIONS(1367), - [anon_sym_asm] = ACTIONS(1367), - [anon_sym___asm__] = ACTIONS(1367), - [sym_number_literal] = ACTIONS(1369), - [anon_sym_L_SQUOTE] = ACTIONS(1369), - [anon_sym_u_SQUOTE] = ACTIONS(1369), - [anon_sym_U_SQUOTE] = ACTIONS(1369), - [anon_sym_u8_SQUOTE] = ACTIONS(1369), - [anon_sym_SQUOTE] = ACTIONS(1369), - [anon_sym_L_DQUOTE] = ACTIONS(1369), - [anon_sym_u_DQUOTE] = ACTIONS(1369), - [anon_sym_U_DQUOTE] = ACTIONS(1369), - [anon_sym_u8_DQUOTE] = ACTIONS(1369), - [anon_sym_DQUOTE] = ACTIONS(1369), - [sym_true] = ACTIONS(1367), - [sym_false] = ACTIONS(1367), - [anon_sym_NULL] = ACTIONS(1367), - [anon_sym_nullptr] = ACTIONS(1367), + [157] = { + [sym_identifier] = ACTIONS(1415), + [aux_sym_preproc_include_token1] = ACTIONS(1415), + [aux_sym_preproc_def_token1] = ACTIONS(1415), + [aux_sym_preproc_if_token1] = ACTIONS(1415), + [aux_sym_preproc_if_token2] = ACTIONS(1415), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1415), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1415), + [aux_sym_preproc_else_token1] = ACTIONS(1415), + [aux_sym_preproc_elif_token1] = ACTIONS(1415), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1415), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1415), + [sym_preproc_directive] = ACTIONS(1415), + [anon_sym_LPAREN2] = ACTIONS(1417), + [anon_sym_BANG] = ACTIONS(1417), + [anon_sym_TILDE] = ACTIONS(1417), + [anon_sym_DASH] = ACTIONS(1415), + [anon_sym_PLUS] = ACTIONS(1415), + [anon_sym_STAR] = ACTIONS(1417), + [anon_sym_AMP] = ACTIONS(1417), + [anon_sym_SEMI] = ACTIONS(1417), + [anon_sym___extension__] = ACTIONS(1415), + [anon_sym_typedef] = ACTIONS(1415), + [anon_sym_extern] = ACTIONS(1415), + [anon_sym___attribute__] = ACTIONS(1415), + [anon_sym___scanf] = ACTIONS(1415), + [anon_sym___printf] = ACTIONS(1415), + [anon_sym___read_mostly] = ACTIONS(1415), + [anon_sym___must_hold] = ACTIONS(1415), + [anon_sym___ro_after_init] = ACTIONS(1415), + [anon_sym___noreturn] = ACTIONS(1415), + [anon_sym___cold] = ACTIONS(1415), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1417), + [anon_sym___declspec] = ACTIONS(1415), + [anon_sym___init] = ACTIONS(1415), + [anon_sym___exit] = ACTIONS(1415), + [anon_sym___cdecl] = ACTIONS(1415), + [anon_sym___clrcall] = ACTIONS(1415), + [anon_sym___stdcall] = ACTIONS(1415), + [anon_sym___fastcall] = ACTIONS(1415), + [anon_sym___thiscall] = ACTIONS(1415), + [anon_sym___vectorcall] = ACTIONS(1415), + [anon_sym_LBRACE] = ACTIONS(1417), + [anon_sym_signed] = ACTIONS(1415), + [anon_sym_unsigned] = ACTIONS(1415), + [anon_sym_long] = ACTIONS(1415), + [anon_sym_short] = ACTIONS(1415), + [anon_sym_static] = ACTIONS(1415), + [anon_sym_auto] = ACTIONS(1415), + [anon_sym_register] = ACTIONS(1415), + [anon_sym_inline] = ACTIONS(1415), + [anon_sym___inline] = ACTIONS(1415), + [anon_sym___inline__] = ACTIONS(1415), + [anon_sym___forceinline] = ACTIONS(1415), + [anon_sym_thread_local] = ACTIONS(1415), + [anon_sym___thread] = ACTIONS(1415), + [anon_sym_const] = ACTIONS(1415), + [anon_sym_constexpr] = ACTIONS(1415), + [anon_sym_volatile] = ACTIONS(1415), + [anon_sym_restrict] = ACTIONS(1415), + [anon_sym___restrict__] = ACTIONS(1415), + [anon_sym__Atomic] = ACTIONS(1415), + [anon_sym__Noreturn] = ACTIONS(1415), + [anon_sym_noreturn] = ACTIONS(1415), + [anon_sym_alignas] = ACTIONS(1415), + [anon_sym__Alignas] = ACTIONS(1415), + [sym_primitive_type] = ACTIONS(1415), + [anon_sym_enum] = ACTIONS(1415), + [anon_sym_struct] = ACTIONS(1415), + [anon_sym_union] = ACTIONS(1415), + [anon_sym_if] = ACTIONS(1415), + [anon_sym_switch] = ACTIONS(1415), + [anon_sym_case] = ACTIONS(1415), + [anon_sym_default] = ACTIONS(1415), + [anon_sym_while] = ACTIONS(1415), + [anon_sym_do] = ACTIONS(1415), + [anon_sym_for] = ACTIONS(1415), + [anon_sym_return] = ACTIONS(1415), + [anon_sym_break] = ACTIONS(1415), + [anon_sym_continue] = ACTIONS(1415), + [anon_sym_goto] = ACTIONS(1415), + [anon_sym___try] = ACTIONS(1415), + [anon_sym___leave] = ACTIONS(1415), + [anon_sym_DASH_DASH] = ACTIONS(1417), + [anon_sym_PLUS_PLUS] = ACTIONS(1417), + [anon_sym_sizeof] = ACTIONS(1415), + [anon_sym___alignof__] = ACTIONS(1415), + [anon_sym___alignof] = ACTIONS(1415), + [anon_sym__alignof] = ACTIONS(1415), + [anon_sym_alignof] = ACTIONS(1415), + [anon_sym__Alignof] = ACTIONS(1415), + [anon_sym_offsetof] = ACTIONS(1415), + [anon_sym__Generic] = ACTIONS(1415), + [anon_sym_asm] = ACTIONS(1415), + [anon_sym___asm__] = ACTIONS(1415), + [sym_number_literal] = ACTIONS(1417), + [anon_sym_L_SQUOTE] = ACTIONS(1417), + [anon_sym_u_SQUOTE] = ACTIONS(1417), + [anon_sym_U_SQUOTE] = ACTIONS(1417), + [anon_sym_u8_SQUOTE] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1417), + [anon_sym_L_DQUOTE] = ACTIONS(1417), + [anon_sym_u_DQUOTE] = ACTIONS(1417), + [anon_sym_U_DQUOTE] = ACTIONS(1417), + [anon_sym_u8_DQUOTE] = ACTIONS(1417), + [anon_sym_DQUOTE] = ACTIONS(1417), + [sym_true] = ACTIONS(1415), + [sym_false] = ACTIONS(1415), + [anon_sym_NULL] = ACTIONS(1415), + [anon_sym_nullptr] = ACTIONS(1415), [sym_comment] = ACTIONS(3), }, - [138] = { - [sym_identifier] = ACTIONS(1371), - [aux_sym_preproc_include_token1] = ACTIONS(1371), - [aux_sym_preproc_def_token1] = ACTIONS(1371), - [aux_sym_preproc_if_token1] = ACTIONS(1371), - [aux_sym_preproc_if_token2] = ACTIONS(1371), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1371), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1371), - [aux_sym_preproc_else_token1] = ACTIONS(1371), - [aux_sym_preproc_elif_token1] = ACTIONS(1371), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1371), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1371), - [sym_preproc_directive] = ACTIONS(1371), - [anon_sym_LPAREN2] = ACTIONS(1373), - [anon_sym_BANG] = ACTIONS(1373), - [anon_sym_TILDE] = ACTIONS(1373), - [anon_sym_DASH] = ACTIONS(1371), - [anon_sym_PLUS] = ACTIONS(1371), - [anon_sym_STAR] = ACTIONS(1373), - [anon_sym_AMP] = ACTIONS(1373), - [anon_sym_SEMI] = ACTIONS(1373), - [anon_sym___extension__] = ACTIONS(1371), - [anon_sym_typedef] = ACTIONS(1371), - [anon_sym_extern] = ACTIONS(1371), - [anon_sym___attribute__] = ACTIONS(1371), - [anon_sym___scanf] = ACTIONS(1371), - [anon_sym___printf] = ACTIONS(1371), - [anon_sym___read_mostly] = ACTIONS(1371), - [anon_sym___must_hold] = ACTIONS(1371), - [anon_sym___ro_after_init] = ACTIONS(1371), - [anon_sym___init] = ACTIONS(1371), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1373), - [anon_sym___declspec] = ACTIONS(1371), - [anon_sym___cdecl] = ACTIONS(1371), - [anon_sym___clrcall] = ACTIONS(1371), - [anon_sym___stdcall] = ACTIONS(1371), - [anon_sym___fastcall] = ACTIONS(1371), - [anon_sym___thiscall] = ACTIONS(1371), - [anon_sym___vectorcall] = ACTIONS(1371), - [anon_sym_LBRACE] = ACTIONS(1373), - [anon_sym_signed] = ACTIONS(1371), - [anon_sym_unsigned] = ACTIONS(1371), - [anon_sym_long] = ACTIONS(1371), - [anon_sym_short] = ACTIONS(1371), - [anon_sym_static] = ACTIONS(1371), - [anon_sym_auto] = ACTIONS(1371), - [anon_sym_register] = ACTIONS(1371), - [anon_sym_inline] = ACTIONS(1371), - [anon_sym___inline] = ACTIONS(1371), - [anon_sym___inline__] = ACTIONS(1371), - [anon_sym___forceinline] = ACTIONS(1371), - [anon_sym_thread_local] = ACTIONS(1371), - [anon_sym___thread] = ACTIONS(1371), - [anon_sym_const] = ACTIONS(1371), - [anon_sym_constexpr] = ACTIONS(1371), - [anon_sym_volatile] = ACTIONS(1371), - [anon_sym_restrict] = ACTIONS(1371), - [anon_sym___restrict__] = ACTIONS(1371), - [anon_sym__Atomic] = ACTIONS(1371), - [anon_sym__Noreturn] = ACTIONS(1371), - [anon_sym_noreturn] = ACTIONS(1371), - [anon_sym_alignas] = ACTIONS(1371), - [anon_sym__Alignas] = ACTIONS(1371), - [sym_primitive_type] = ACTIONS(1371), - [anon_sym_enum] = ACTIONS(1371), - [anon_sym_struct] = ACTIONS(1371), - [anon_sym_union] = ACTIONS(1371), - [anon_sym_if] = ACTIONS(1371), - [anon_sym_switch] = ACTIONS(1371), - [anon_sym_case] = ACTIONS(1371), - [anon_sym_default] = ACTIONS(1371), - [anon_sym_while] = ACTIONS(1371), - [anon_sym_do] = ACTIONS(1371), - [anon_sym_for] = ACTIONS(1371), - [anon_sym_return] = ACTIONS(1371), - [anon_sym_break] = ACTIONS(1371), - [anon_sym_continue] = ACTIONS(1371), - [anon_sym_goto] = ACTIONS(1371), - [anon_sym___try] = ACTIONS(1371), - [anon_sym___leave] = ACTIONS(1371), - [anon_sym_DASH_DASH] = ACTIONS(1373), - [anon_sym_PLUS_PLUS] = ACTIONS(1373), - [anon_sym_sizeof] = ACTIONS(1371), - [anon_sym___alignof__] = ACTIONS(1371), - [anon_sym___alignof] = ACTIONS(1371), - [anon_sym__alignof] = ACTIONS(1371), - [anon_sym_alignof] = ACTIONS(1371), - [anon_sym__Alignof] = ACTIONS(1371), - [anon_sym_offsetof] = ACTIONS(1371), - [anon_sym__Generic] = ACTIONS(1371), - [anon_sym_asm] = ACTIONS(1371), - [anon_sym___asm__] = ACTIONS(1371), - [sym_number_literal] = ACTIONS(1373), - [anon_sym_L_SQUOTE] = ACTIONS(1373), - [anon_sym_u_SQUOTE] = ACTIONS(1373), - [anon_sym_U_SQUOTE] = ACTIONS(1373), - [anon_sym_u8_SQUOTE] = ACTIONS(1373), - [anon_sym_SQUOTE] = ACTIONS(1373), - [anon_sym_L_DQUOTE] = ACTIONS(1373), - [anon_sym_u_DQUOTE] = ACTIONS(1373), - [anon_sym_U_DQUOTE] = ACTIONS(1373), - [anon_sym_u8_DQUOTE] = ACTIONS(1373), - [anon_sym_DQUOTE] = ACTIONS(1373), - [sym_true] = ACTIONS(1371), - [sym_false] = ACTIONS(1371), - [anon_sym_NULL] = ACTIONS(1371), - [anon_sym_nullptr] = ACTIONS(1371), + [158] = { + [sym_identifier] = ACTIONS(1419), + [aux_sym_preproc_include_token1] = ACTIONS(1419), + [aux_sym_preproc_def_token1] = ACTIONS(1419), + [aux_sym_preproc_if_token1] = ACTIONS(1419), + [aux_sym_preproc_if_token2] = ACTIONS(1419), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1419), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1419), + [aux_sym_preproc_else_token1] = ACTIONS(1419), + [aux_sym_preproc_elif_token1] = ACTIONS(1419), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1419), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1419), + [sym_preproc_directive] = ACTIONS(1419), + [anon_sym_LPAREN2] = ACTIONS(1421), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1419), + [anon_sym_PLUS] = ACTIONS(1419), + [anon_sym_STAR] = ACTIONS(1421), + [anon_sym_AMP] = ACTIONS(1421), + [anon_sym_SEMI] = ACTIONS(1421), + [anon_sym___extension__] = ACTIONS(1419), + [anon_sym_typedef] = ACTIONS(1419), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym___attribute__] = ACTIONS(1419), + [anon_sym___scanf] = ACTIONS(1419), + [anon_sym___printf] = ACTIONS(1419), + [anon_sym___read_mostly] = ACTIONS(1419), + [anon_sym___must_hold] = ACTIONS(1419), + [anon_sym___ro_after_init] = ACTIONS(1419), + [anon_sym___noreturn] = ACTIONS(1419), + [anon_sym___cold] = ACTIONS(1419), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1421), + [anon_sym___declspec] = ACTIONS(1419), + [anon_sym___init] = ACTIONS(1419), + [anon_sym___exit] = ACTIONS(1419), + [anon_sym___cdecl] = ACTIONS(1419), + [anon_sym___clrcall] = ACTIONS(1419), + [anon_sym___stdcall] = ACTIONS(1419), + [anon_sym___fastcall] = ACTIONS(1419), + [anon_sym___thiscall] = ACTIONS(1419), + [anon_sym___vectorcall] = ACTIONS(1419), + [anon_sym_LBRACE] = ACTIONS(1421), + [anon_sym_signed] = ACTIONS(1419), + [anon_sym_unsigned] = ACTIONS(1419), + [anon_sym_long] = ACTIONS(1419), + [anon_sym_short] = ACTIONS(1419), + [anon_sym_static] = ACTIONS(1419), + [anon_sym_auto] = ACTIONS(1419), + [anon_sym_register] = ACTIONS(1419), + [anon_sym_inline] = ACTIONS(1419), + [anon_sym___inline] = ACTIONS(1419), + [anon_sym___inline__] = ACTIONS(1419), + [anon_sym___forceinline] = ACTIONS(1419), + [anon_sym_thread_local] = ACTIONS(1419), + [anon_sym___thread] = ACTIONS(1419), + [anon_sym_const] = ACTIONS(1419), + [anon_sym_constexpr] = ACTIONS(1419), + [anon_sym_volatile] = ACTIONS(1419), + [anon_sym_restrict] = ACTIONS(1419), + [anon_sym___restrict__] = ACTIONS(1419), + [anon_sym__Atomic] = ACTIONS(1419), + [anon_sym__Noreturn] = ACTIONS(1419), + [anon_sym_noreturn] = ACTIONS(1419), + [anon_sym_alignas] = ACTIONS(1419), + [anon_sym__Alignas] = ACTIONS(1419), + [sym_primitive_type] = ACTIONS(1419), + [anon_sym_enum] = ACTIONS(1419), + [anon_sym_struct] = ACTIONS(1419), + [anon_sym_union] = ACTIONS(1419), + [anon_sym_if] = ACTIONS(1419), + [anon_sym_switch] = ACTIONS(1419), + [anon_sym_case] = ACTIONS(1419), + [anon_sym_default] = ACTIONS(1419), + [anon_sym_while] = ACTIONS(1419), + [anon_sym_do] = ACTIONS(1419), + [anon_sym_for] = ACTIONS(1419), + [anon_sym_return] = ACTIONS(1419), + [anon_sym_break] = ACTIONS(1419), + [anon_sym_continue] = ACTIONS(1419), + [anon_sym_goto] = ACTIONS(1419), + [anon_sym___try] = ACTIONS(1419), + [anon_sym___leave] = ACTIONS(1419), + [anon_sym_DASH_DASH] = ACTIONS(1421), + [anon_sym_PLUS_PLUS] = ACTIONS(1421), + [anon_sym_sizeof] = ACTIONS(1419), + [anon_sym___alignof__] = ACTIONS(1419), + [anon_sym___alignof] = ACTIONS(1419), + [anon_sym__alignof] = ACTIONS(1419), + [anon_sym_alignof] = ACTIONS(1419), + [anon_sym__Alignof] = ACTIONS(1419), + [anon_sym_offsetof] = ACTIONS(1419), + [anon_sym__Generic] = ACTIONS(1419), + [anon_sym_asm] = ACTIONS(1419), + [anon_sym___asm__] = ACTIONS(1419), + [sym_number_literal] = ACTIONS(1421), + [anon_sym_L_SQUOTE] = ACTIONS(1421), + [anon_sym_u_SQUOTE] = ACTIONS(1421), + [anon_sym_U_SQUOTE] = ACTIONS(1421), + [anon_sym_u8_SQUOTE] = ACTIONS(1421), + [anon_sym_SQUOTE] = ACTIONS(1421), + [anon_sym_L_DQUOTE] = ACTIONS(1421), + [anon_sym_u_DQUOTE] = ACTIONS(1421), + [anon_sym_U_DQUOTE] = ACTIONS(1421), + [anon_sym_u8_DQUOTE] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1421), + [sym_true] = ACTIONS(1419), + [sym_false] = ACTIONS(1419), + [anon_sym_NULL] = ACTIONS(1419), + [anon_sym_nullptr] = ACTIONS(1419), [sym_comment] = ACTIONS(3), }, - [139] = { - [sym_identifier] = ACTIONS(1375), - [aux_sym_preproc_include_token1] = ACTIONS(1375), - [aux_sym_preproc_def_token1] = ACTIONS(1375), - [aux_sym_preproc_if_token1] = ACTIONS(1375), - [aux_sym_preproc_if_token2] = ACTIONS(1375), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1375), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1375), - [aux_sym_preproc_else_token1] = ACTIONS(1375), - [aux_sym_preproc_elif_token1] = ACTIONS(1375), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1375), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1375), - [sym_preproc_directive] = ACTIONS(1375), - [anon_sym_LPAREN2] = ACTIONS(1377), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_TILDE] = ACTIONS(1377), - [anon_sym_DASH] = ACTIONS(1375), - [anon_sym_PLUS] = ACTIONS(1375), - [anon_sym_STAR] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1377), - [anon_sym_SEMI] = ACTIONS(1377), - [anon_sym___extension__] = ACTIONS(1375), - [anon_sym_typedef] = ACTIONS(1375), - [anon_sym_extern] = ACTIONS(1375), - [anon_sym___attribute__] = ACTIONS(1375), - [anon_sym___scanf] = ACTIONS(1375), - [anon_sym___printf] = ACTIONS(1375), - [anon_sym___read_mostly] = ACTIONS(1375), - [anon_sym___must_hold] = ACTIONS(1375), - [anon_sym___ro_after_init] = ACTIONS(1375), - [anon_sym___init] = ACTIONS(1375), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1377), - [anon_sym___declspec] = ACTIONS(1375), - [anon_sym___cdecl] = ACTIONS(1375), - [anon_sym___clrcall] = ACTIONS(1375), - [anon_sym___stdcall] = ACTIONS(1375), - [anon_sym___fastcall] = ACTIONS(1375), - [anon_sym___thiscall] = ACTIONS(1375), - [anon_sym___vectorcall] = ACTIONS(1375), - [anon_sym_LBRACE] = ACTIONS(1377), - [anon_sym_signed] = ACTIONS(1375), - [anon_sym_unsigned] = ACTIONS(1375), - [anon_sym_long] = ACTIONS(1375), - [anon_sym_short] = ACTIONS(1375), - [anon_sym_static] = ACTIONS(1375), - [anon_sym_auto] = ACTIONS(1375), - [anon_sym_register] = ACTIONS(1375), - [anon_sym_inline] = ACTIONS(1375), - [anon_sym___inline] = ACTIONS(1375), - [anon_sym___inline__] = ACTIONS(1375), - [anon_sym___forceinline] = ACTIONS(1375), - [anon_sym_thread_local] = ACTIONS(1375), - [anon_sym___thread] = ACTIONS(1375), - [anon_sym_const] = ACTIONS(1375), - [anon_sym_constexpr] = ACTIONS(1375), - [anon_sym_volatile] = ACTIONS(1375), - [anon_sym_restrict] = ACTIONS(1375), - [anon_sym___restrict__] = ACTIONS(1375), - [anon_sym__Atomic] = ACTIONS(1375), - [anon_sym__Noreturn] = ACTIONS(1375), - [anon_sym_noreturn] = ACTIONS(1375), - [anon_sym_alignas] = ACTIONS(1375), - [anon_sym__Alignas] = ACTIONS(1375), - [sym_primitive_type] = ACTIONS(1375), - [anon_sym_enum] = ACTIONS(1375), - [anon_sym_struct] = ACTIONS(1375), - [anon_sym_union] = ACTIONS(1375), - [anon_sym_if] = ACTIONS(1375), - [anon_sym_switch] = ACTIONS(1375), - [anon_sym_case] = ACTIONS(1375), - [anon_sym_default] = ACTIONS(1375), - [anon_sym_while] = ACTIONS(1375), - [anon_sym_do] = ACTIONS(1375), - [anon_sym_for] = ACTIONS(1375), - [anon_sym_return] = ACTIONS(1375), - [anon_sym_break] = ACTIONS(1375), - [anon_sym_continue] = ACTIONS(1375), - [anon_sym_goto] = ACTIONS(1375), - [anon_sym___try] = ACTIONS(1375), - [anon_sym___leave] = ACTIONS(1375), - [anon_sym_DASH_DASH] = ACTIONS(1377), - [anon_sym_PLUS_PLUS] = ACTIONS(1377), - [anon_sym_sizeof] = ACTIONS(1375), - [anon_sym___alignof__] = ACTIONS(1375), - [anon_sym___alignof] = ACTIONS(1375), - [anon_sym__alignof] = ACTIONS(1375), - [anon_sym_alignof] = ACTIONS(1375), - [anon_sym__Alignof] = ACTIONS(1375), - [anon_sym_offsetof] = ACTIONS(1375), - [anon_sym__Generic] = ACTIONS(1375), - [anon_sym_asm] = ACTIONS(1375), - [anon_sym___asm__] = ACTIONS(1375), - [sym_number_literal] = ACTIONS(1377), - [anon_sym_L_SQUOTE] = ACTIONS(1377), - [anon_sym_u_SQUOTE] = ACTIONS(1377), - [anon_sym_U_SQUOTE] = ACTIONS(1377), - [anon_sym_u8_SQUOTE] = ACTIONS(1377), - [anon_sym_SQUOTE] = ACTIONS(1377), - [anon_sym_L_DQUOTE] = ACTIONS(1377), - [anon_sym_u_DQUOTE] = ACTIONS(1377), - [anon_sym_U_DQUOTE] = ACTIONS(1377), - [anon_sym_u8_DQUOTE] = ACTIONS(1377), - [anon_sym_DQUOTE] = ACTIONS(1377), - [sym_true] = ACTIONS(1375), - [sym_false] = ACTIONS(1375), - [anon_sym_NULL] = ACTIONS(1375), - [anon_sym_nullptr] = ACTIONS(1375), + [159] = { + [sym_else_clause] = STATE(239), + [sym_identifier] = ACTIONS(1147), + [aux_sym_preproc_include_token1] = ACTIONS(1147), + [aux_sym_preproc_def_token1] = ACTIONS(1147), + [aux_sym_preproc_if_token1] = ACTIONS(1147), + [aux_sym_preproc_if_token2] = ACTIONS(1147), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1147), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1147), + [sym_preproc_directive] = ACTIONS(1147), + [anon_sym_LPAREN2] = ACTIONS(1149), + [anon_sym_BANG] = ACTIONS(1149), + [anon_sym_TILDE] = ACTIONS(1149), + [anon_sym_DASH] = ACTIONS(1147), + [anon_sym_PLUS] = ACTIONS(1147), + [anon_sym_STAR] = ACTIONS(1149), + [anon_sym_AMP] = ACTIONS(1149), + [anon_sym_SEMI] = ACTIONS(1149), + [anon_sym___extension__] = ACTIONS(1147), + [anon_sym_typedef] = ACTIONS(1147), + [anon_sym_extern] = ACTIONS(1147), + [anon_sym___attribute__] = ACTIONS(1147), + [anon_sym___scanf] = ACTIONS(1147), + [anon_sym___printf] = ACTIONS(1147), + [anon_sym___read_mostly] = ACTIONS(1147), + [anon_sym___must_hold] = ACTIONS(1147), + [anon_sym___ro_after_init] = ACTIONS(1147), + [anon_sym___noreturn] = ACTIONS(1147), + [anon_sym___cold] = ACTIONS(1147), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1149), + [anon_sym___declspec] = ACTIONS(1147), + [anon_sym___init] = ACTIONS(1147), + [anon_sym___exit] = ACTIONS(1147), + [anon_sym___cdecl] = ACTIONS(1147), + [anon_sym___clrcall] = ACTIONS(1147), + [anon_sym___stdcall] = ACTIONS(1147), + [anon_sym___fastcall] = ACTIONS(1147), + [anon_sym___thiscall] = ACTIONS(1147), + [anon_sym___vectorcall] = ACTIONS(1147), + [anon_sym_LBRACE] = ACTIONS(1149), + [anon_sym_signed] = ACTIONS(1147), + [anon_sym_unsigned] = ACTIONS(1147), + [anon_sym_long] = ACTIONS(1147), + [anon_sym_short] = ACTIONS(1147), + [anon_sym_static] = ACTIONS(1147), + [anon_sym_auto] = ACTIONS(1147), + [anon_sym_register] = ACTIONS(1147), + [anon_sym_inline] = ACTIONS(1147), + [anon_sym___inline] = ACTIONS(1147), + [anon_sym___inline__] = ACTIONS(1147), + [anon_sym___forceinline] = ACTIONS(1147), + [anon_sym_thread_local] = ACTIONS(1147), + [anon_sym___thread] = ACTIONS(1147), + [anon_sym_const] = ACTIONS(1147), + [anon_sym_constexpr] = ACTIONS(1147), + [anon_sym_volatile] = ACTIONS(1147), + [anon_sym_restrict] = ACTIONS(1147), + [anon_sym___restrict__] = ACTIONS(1147), + [anon_sym__Atomic] = ACTIONS(1147), + [anon_sym__Noreturn] = ACTIONS(1147), + [anon_sym_noreturn] = ACTIONS(1147), + [anon_sym_alignas] = ACTIONS(1147), + [anon_sym__Alignas] = ACTIONS(1147), + [sym_primitive_type] = ACTIONS(1147), + [anon_sym_enum] = ACTIONS(1147), + [anon_sym_struct] = ACTIONS(1147), + [anon_sym_union] = ACTIONS(1147), + [anon_sym_if] = ACTIONS(1147), + [anon_sym_else] = ACTIONS(1423), + [anon_sym_switch] = ACTIONS(1147), + [anon_sym_case] = ACTIONS(1147), + [anon_sym_default] = ACTIONS(1147), + [anon_sym_while] = ACTIONS(1147), + [anon_sym_do] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1147), + [anon_sym_return] = ACTIONS(1147), + [anon_sym_break] = ACTIONS(1147), + [anon_sym_continue] = ACTIONS(1147), + [anon_sym_goto] = ACTIONS(1147), + [anon_sym___try] = ACTIONS(1147), + [anon_sym___leave] = ACTIONS(1147), + [anon_sym_DASH_DASH] = ACTIONS(1149), + [anon_sym_PLUS_PLUS] = ACTIONS(1149), + [anon_sym_sizeof] = ACTIONS(1147), + [anon_sym___alignof__] = ACTIONS(1147), + [anon_sym___alignof] = ACTIONS(1147), + [anon_sym__alignof] = ACTIONS(1147), + [anon_sym_alignof] = ACTIONS(1147), + [anon_sym__Alignof] = ACTIONS(1147), + [anon_sym_offsetof] = ACTIONS(1147), + [anon_sym__Generic] = ACTIONS(1147), + [anon_sym_asm] = ACTIONS(1147), + [anon_sym___asm__] = ACTIONS(1147), + [sym_number_literal] = ACTIONS(1149), + [anon_sym_L_SQUOTE] = ACTIONS(1149), + [anon_sym_u_SQUOTE] = ACTIONS(1149), + [anon_sym_U_SQUOTE] = ACTIONS(1149), + [anon_sym_u8_SQUOTE] = ACTIONS(1149), + [anon_sym_SQUOTE] = ACTIONS(1149), + [anon_sym_L_DQUOTE] = ACTIONS(1149), + [anon_sym_u_DQUOTE] = ACTIONS(1149), + [anon_sym_U_DQUOTE] = ACTIONS(1149), + [anon_sym_u8_DQUOTE] = ACTIONS(1149), + [anon_sym_DQUOTE] = ACTIONS(1149), + [sym_true] = ACTIONS(1147), + [sym_false] = ACTIONS(1147), + [anon_sym_NULL] = ACTIONS(1147), + [anon_sym_nullptr] = ACTIONS(1147), [sym_comment] = ACTIONS(3), }, - [140] = { - [sym_identifier] = ACTIONS(1379), - [aux_sym_preproc_include_token1] = ACTIONS(1379), - [aux_sym_preproc_def_token1] = ACTIONS(1379), - [aux_sym_preproc_if_token1] = ACTIONS(1379), - [aux_sym_preproc_if_token2] = ACTIONS(1379), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1379), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1379), - [aux_sym_preproc_else_token1] = ACTIONS(1379), - [aux_sym_preproc_elif_token1] = ACTIONS(1379), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1379), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1379), - [sym_preproc_directive] = ACTIONS(1379), - [anon_sym_LPAREN2] = ACTIONS(1381), - [anon_sym_BANG] = ACTIONS(1381), - [anon_sym_TILDE] = ACTIONS(1381), - [anon_sym_DASH] = ACTIONS(1379), - [anon_sym_PLUS] = ACTIONS(1379), - [anon_sym_STAR] = ACTIONS(1381), - [anon_sym_AMP] = ACTIONS(1381), - [anon_sym_SEMI] = ACTIONS(1381), - [anon_sym___extension__] = ACTIONS(1379), - [anon_sym_typedef] = ACTIONS(1379), - [anon_sym_extern] = ACTIONS(1379), - [anon_sym___attribute__] = ACTIONS(1379), - [anon_sym___scanf] = ACTIONS(1379), - [anon_sym___printf] = ACTIONS(1379), - [anon_sym___read_mostly] = ACTIONS(1379), - [anon_sym___must_hold] = ACTIONS(1379), - [anon_sym___ro_after_init] = ACTIONS(1379), - [anon_sym___init] = ACTIONS(1379), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1381), - [anon_sym___declspec] = ACTIONS(1379), - [anon_sym___cdecl] = ACTIONS(1379), - [anon_sym___clrcall] = ACTIONS(1379), - [anon_sym___stdcall] = ACTIONS(1379), - [anon_sym___fastcall] = ACTIONS(1379), - [anon_sym___thiscall] = ACTIONS(1379), - [anon_sym___vectorcall] = ACTIONS(1379), - [anon_sym_LBRACE] = ACTIONS(1381), - [anon_sym_signed] = ACTIONS(1379), - [anon_sym_unsigned] = ACTIONS(1379), - [anon_sym_long] = ACTIONS(1379), - [anon_sym_short] = ACTIONS(1379), - [anon_sym_static] = ACTIONS(1379), - [anon_sym_auto] = ACTIONS(1379), - [anon_sym_register] = ACTIONS(1379), - [anon_sym_inline] = ACTIONS(1379), - [anon_sym___inline] = ACTIONS(1379), - [anon_sym___inline__] = ACTIONS(1379), - [anon_sym___forceinline] = ACTIONS(1379), - [anon_sym_thread_local] = ACTIONS(1379), - [anon_sym___thread] = ACTIONS(1379), - [anon_sym_const] = ACTIONS(1379), - [anon_sym_constexpr] = ACTIONS(1379), - [anon_sym_volatile] = ACTIONS(1379), - [anon_sym_restrict] = ACTIONS(1379), - [anon_sym___restrict__] = ACTIONS(1379), - [anon_sym__Atomic] = ACTIONS(1379), - [anon_sym__Noreturn] = ACTIONS(1379), - [anon_sym_noreturn] = ACTIONS(1379), - [anon_sym_alignas] = ACTIONS(1379), - [anon_sym__Alignas] = ACTIONS(1379), - [sym_primitive_type] = ACTIONS(1379), - [anon_sym_enum] = ACTIONS(1379), - [anon_sym_struct] = ACTIONS(1379), - [anon_sym_union] = ACTIONS(1379), - [anon_sym_if] = ACTIONS(1379), - [anon_sym_switch] = ACTIONS(1379), - [anon_sym_case] = ACTIONS(1379), - [anon_sym_default] = ACTIONS(1379), - [anon_sym_while] = ACTIONS(1379), - [anon_sym_do] = ACTIONS(1379), - [anon_sym_for] = ACTIONS(1379), - [anon_sym_return] = ACTIONS(1379), - [anon_sym_break] = ACTIONS(1379), - [anon_sym_continue] = ACTIONS(1379), - [anon_sym_goto] = ACTIONS(1379), - [anon_sym___try] = ACTIONS(1379), - [anon_sym___leave] = ACTIONS(1379), - [anon_sym_DASH_DASH] = ACTIONS(1381), - [anon_sym_PLUS_PLUS] = ACTIONS(1381), - [anon_sym_sizeof] = ACTIONS(1379), - [anon_sym___alignof__] = ACTIONS(1379), - [anon_sym___alignof] = ACTIONS(1379), - [anon_sym__alignof] = ACTIONS(1379), - [anon_sym_alignof] = ACTIONS(1379), - [anon_sym__Alignof] = ACTIONS(1379), - [anon_sym_offsetof] = ACTIONS(1379), - [anon_sym__Generic] = ACTIONS(1379), - [anon_sym_asm] = ACTIONS(1379), - [anon_sym___asm__] = ACTIONS(1379), - [sym_number_literal] = ACTIONS(1381), - [anon_sym_L_SQUOTE] = ACTIONS(1381), - [anon_sym_u_SQUOTE] = ACTIONS(1381), - [anon_sym_U_SQUOTE] = ACTIONS(1381), - [anon_sym_u8_SQUOTE] = ACTIONS(1381), - [anon_sym_SQUOTE] = ACTIONS(1381), - [anon_sym_L_DQUOTE] = ACTIONS(1381), - [anon_sym_u_DQUOTE] = ACTIONS(1381), - [anon_sym_U_DQUOTE] = ACTIONS(1381), - [anon_sym_u8_DQUOTE] = ACTIONS(1381), - [anon_sym_DQUOTE] = ACTIONS(1381), - [sym_true] = ACTIONS(1379), - [sym_false] = ACTIONS(1379), - [anon_sym_NULL] = ACTIONS(1379), - [anon_sym_nullptr] = ACTIONS(1379), + [160] = { + [sym_else_clause] = STATE(190), + [sym_identifier] = ACTIONS(1147), + [aux_sym_preproc_include_token1] = ACTIONS(1147), + [aux_sym_preproc_def_token1] = ACTIONS(1147), + [aux_sym_preproc_if_token1] = ACTIONS(1147), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1147), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1147), + [sym_preproc_directive] = ACTIONS(1147), + [anon_sym_LPAREN2] = ACTIONS(1149), + [anon_sym_BANG] = ACTIONS(1149), + [anon_sym_TILDE] = ACTIONS(1149), + [anon_sym_DASH] = ACTIONS(1147), + [anon_sym_PLUS] = ACTIONS(1147), + [anon_sym_STAR] = ACTIONS(1149), + [anon_sym_AMP] = ACTIONS(1149), + [anon_sym_SEMI] = ACTIONS(1149), + [anon_sym___extension__] = ACTIONS(1147), + [anon_sym_typedef] = ACTIONS(1147), + [anon_sym_extern] = ACTIONS(1147), + [anon_sym___attribute__] = ACTIONS(1147), + [anon_sym___scanf] = ACTIONS(1147), + [anon_sym___printf] = ACTIONS(1147), + [anon_sym___read_mostly] = ACTIONS(1147), + [anon_sym___must_hold] = ACTIONS(1147), + [anon_sym___ro_after_init] = ACTIONS(1147), + [anon_sym___noreturn] = ACTIONS(1147), + [anon_sym___cold] = ACTIONS(1147), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1149), + [anon_sym___declspec] = ACTIONS(1147), + [anon_sym___init] = ACTIONS(1147), + [anon_sym___exit] = ACTIONS(1147), + [anon_sym___cdecl] = ACTIONS(1147), + [anon_sym___clrcall] = ACTIONS(1147), + [anon_sym___stdcall] = ACTIONS(1147), + [anon_sym___fastcall] = ACTIONS(1147), + [anon_sym___thiscall] = ACTIONS(1147), + [anon_sym___vectorcall] = ACTIONS(1147), + [anon_sym_LBRACE] = ACTIONS(1149), + [anon_sym_RBRACE] = ACTIONS(1149), + [anon_sym_signed] = ACTIONS(1147), + [anon_sym_unsigned] = ACTIONS(1147), + [anon_sym_long] = ACTIONS(1147), + [anon_sym_short] = ACTIONS(1147), + [anon_sym_static] = ACTIONS(1147), + [anon_sym_auto] = ACTIONS(1147), + [anon_sym_register] = ACTIONS(1147), + [anon_sym_inline] = ACTIONS(1147), + [anon_sym___inline] = ACTIONS(1147), + [anon_sym___inline__] = ACTIONS(1147), + [anon_sym___forceinline] = ACTIONS(1147), + [anon_sym_thread_local] = ACTIONS(1147), + [anon_sym___thread] = ACTIONS(1147), + [anon_sym_const] = ACTIONS(1147), + [anon_sym_constexpr] = ACTIONS(1147), + [anon_sym_volatile] = ACTIONS(1147), + [anon_sym_restrict] = ACTIONS(1147), + [anon_sym___restrict__] = ACTIONS(1147), + [anon_sym__Atomic] = ACTIONS(1147), + [anon_sym__Noreturn] = ACTIONS(1147), + [anon_sym_noreturn] = ACTIONS(1147), + [anon_sym_alignas] = ACTIONS(1147), + [anon_sym__Alignas] = ACTIONS(1147), + [sym_primitive_type] = ACTIONS(1147), + [anon_sym_enum] = ACTIONS(1147), + [anon_sym_struct] = ACTIONS(1147), + [anon_sym_union] = ACTIONS(1147), + [anon_sym_if] = ACTIONS(1147), + [anon_sym_else] = ACTIONS(1425), + [anon_sym_switch] = ACTIONS(1147), + [anon_sym_case] = ACTIONS(1147), + [anon_sym_default] = ACTIONS(1147), + [anon_sym_while] = ACTIONS(1147), + [anon_sym_do] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1147), + [anon_sym_return] = ACTIONS(1147), + [anon_sym_break] = ACTIONS(1147), + [anon_sym_continue] = ACTIONS(1147), + [anon_sym_goto] = ACTIONS(1147), + [anon_sym___try] = ACTIONS(1147), + [anon_sym___leave] = ACTIONS(1147), + [anon_sym_DASH_DASH] = ACTIONS(1149), + [anon_sym_PLUS_PLUS] = ACTIONS(1149), + [anon_sym_sizeof] = ACTIONS(1147), + [anon_sym___alignof__] = ACTIONS(1147), + [anon_sym___alignof] = ACTIONS(1147), + [anon_sym__alignof] = ACTIONS(1147), + [anon_sym_alignof] = ACTIONS(1147), + [anon_sym__Alignof] = ACTIONS(1147), + [anon_sym_offsetof] = ACTIONS(1147), + [anon_sym__Generic] = ACTIONS(1147), + [anon_sym_asm] = ACTIONS(1147), + [anon_sym___asm__] = ACTIONS(1147), + [sym_number_literal] = ACTIONS(1149), + [anon_sym_L_SQUOTE] = ACTIONS(1149), + [anon_sym_u_SQUOTE] = ACTIONS(1149), + [anon_sym_U_SQUOTE] = ACTIONS(1149), + [anon_sym_u8_SQUOTE] = ACTIONS(1149), + [anon_sym_SQUOTE] = ACTIONS(1149), + [anon_sym_L_DQUOTE] = ACTIONS(1149), + [anon_sym_u_DQUOTE] = ACTIONS(1149), + [anon_sym_U_DQUOTE] = ACTIONS(1149), + [anon_sym_u8_DQUOTE] = ACTIONS(1149), + [anon_sym_DQUOTE] = ACTIONS(1149), + [sym_true] = ACTIONS(1147), + [sym_false] = ACTIONS(1147), + [anon_sym_NULL] = ACTIONS(1147), + [anon_sym_nullptr] = ACTIONS(1147), [sym_comment] = ACTIONS(3), }, - [141] = { - [sym_identifier] = ACTIONS(1383), - [aux_sym_preproc_include_token1] = ACTIONS(1383), - [aux_sym_preproc_def_token1] = ACTIONS(1383), - [aux_sym_preproc_if_token1] = ACTIONS(1383), - [aux_sym_preproc_if_token2] = ACTIONS(1383), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1383), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1383), - [aux_sym_preproc_else_token1] = ACTIONS(1383), - [aux_sym_preproc_elif_token1] = ACTIONS(1383), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1383), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1383), - [sym_preproc_directive] = ACTIONS(1383), - [anon_sym_LPAREN2] = ACTIONS(1385), - [anon_sym_BANG] = ACTIONS(1385), - [anon_sym_TILDE] = ACTIONS(1385), - [anon_sym_DASH] = ACTIONS(1383), - [anon_sym_PLUS] = ACTIONS(1383), - [anon_sym_STAR] = ACTIONS(1385), - [anon_sym_AMP] = ACTIONS(1385), - [anon_sym_SEMI] = ACTIONS(1385), - [anon_sym___extension__] = ACTIONS(1383), - [anon_sym_typedef] = ACTIONS(1383), - [anon_sym_extern] = ACTIONS(1383), - [anon_sym___attribute__] = ACTIONS(1383), - [anon_sym___scanf] = ACTIONS(1383), - [anon_sym___printf] = ACTIONS(1383), - [anon_sym___read_mostly] = ACTIONS(1383), - [anon_sym___must_hold] = ACTIONS(1383), - [anon_sym___ro_after_init] = ACTIONS(1383), - [anon_sym___init] = ACTIONS(1383), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1385), - [anon_sym___declspec] = ACTIONS(1383), - [anon_sym___cdecl] = ACTIONS(1383), - [anon_sym___clrcall] = ACTIONS(1383), - [anon_sym___stdcall] = ACTIONS(1383), - [anon_sym___fastcall] = ACTIONS(1383), - [anon_sym___thiscall] = ACTIONS(1383), - [anon_sym___vectorcall] = ACTIONS(1383), - [anon_sym_LBRACE] = ACTIONS(1385), - [anon_sym_signed] = ACTIONS(1383), - [anon_sym_unsigned] = ACTIONS(1383), - [anon_sym_long] = ACTIONS(1383), - [anon_sym_short] = ACTIONS(1383), - [anon_sym_static] = ACTIONS(1383), - [anon_sym_auto] = ACTIONS(1383), - [anon_sym_register] = ACTIONS(1383), - [anon_sym_inline] = ACTIONS(1383), - [anon_sym___inline] = ACTIONS(1383), - [anon_sym___inline__] = ACTIONS(1383), - [anon_sym___forceinline] = ACTIONS(1383), - [anon_sym_thread_local] = ACTIONS(1383), - [anon_sym___thread] = ACTIONS(1383), - [anon_sym_const] = ACTIONS(1383), - [anon_sym_constexpr] = ACTIONS(1383), - [anon_sym_volatile] = ACTIONS(1383), - [anon_sym_restrict] = ACTIONS(1383), - [anon_sym___restrict__] = ACTIONS(1383), - [anon_sym__Atomic] = ACTIONS(1383), - [anon_sym__Noreturn] = ACTIONS(1383), - [anon_sym_noreturn] = ACTIONS(1383), - [anon_sym_alignas] = ACTIONS(1383), - [anon_sym__Alignas] = ACTIONS(1383), - [sym_primitive_type] = ACTIONS(1383), - [anon_sym_enum] = ACTIONS(1383), - [anon_sym_struct] = ACTIONS(1383), - [anon_sym_union] = ACTIONS(1383), - [anon_sym_if] = ACTIONS(1383), - [anon_sym_switch] = ACTIONS(1383), - [anon_sym_case] = ACTIONS(1383), - [anon_sym_default] = ACTIONS(1383), - [anon_sym_while] = ACTIONS(1383), - [anon_sym_do] = ACTIONS(1383), - [anon_sym_for] = ACTIONS(1383), - [anon_sym_return] = ACTIONS(1383), - [anon_sym_break] = ACTIONS(1383), - [anon_sym_continue] = ACTIONS(1383), - [anon_sym_goto] = ACTIONS(1383), - [anon_sym___try] = ACTIONS(1383), - [anon_sym___leave] = ACTIONS(1383), - [anon_sym_DASH_DASH] = ACTIONS(1385), - [anon_sym_PLUS_PLUS] = ACTIONS(1385), - [anon_sym_sizeof] = ACTIONS(1383), - [anon_sym___alignof__] = ACTIONS(1383), - [anon_sym___alignof] = ACTIONS(1383), - [anon_sym__alignof] = ACTIONS(1383), - [anon_sym_alignof] = ACTIONS(1383), - [anon_sym__Alignof] = ACTIONS(1383), - [anon_sym_offsetof] = ACTIONS(1383), - [anon_sym__Generic] = ACTIONS(1383), - [anon_sym_asm] = ACTIONS(1383), - [anon_sym___asm__] = ACTIONS(1383), - [sym_number_literal] = ACTIONS(1385), - [anon_sym_L_SQUOTE] = ACTIONS(1385), - [anon_sym_u_SQUOTE] = ACTIONS(1385), - [anon_sym_U_SQUOTE] = ACTIONS(1385), - [anon_sym_u8_SQUOTE] = ACTIONS(1385), - [anon_sym_SQUOTE] = ACTIONS(1385), - [anon_sym_L_DQUOTE] = ACTIONS(1385), - [anon_sym_u_DQUOTE] = ACTIONS(1385), - [anon_sym_U_DQUOTE] = ACTIONS(1385), - [anon_sym_u8_DQUOTE] = ACTIONS(1385), - [anon_sym_DQUOTE] = ACTIONS(1385), - [sym_true] = ACTIONS(1383), - [sym_false] = ACTIONS(1383), - [anon_sym_NULL] = ACTIONS(1383), - [anon_sym_nullptr] = ACTIONS(1383), + [161] = { + [sym_else_clause] = STATE(199), + [ts_builtin_sym_end] = ACTIONS(1149), + [sym_identifier] = ACTIONS(1147), + [aux_sym_preproc_include_token1] = ACTIONS(1147), + [aux_sym_preproc_def_token1] = ACTIONS(1147), + [aux_sym_preproc_if_token1] = ACTIONS(1147), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1147), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1147), + [sym_preproc_directive] = ACTIONS(1147), + [anon_sym_LPAREN2] = ACTIONS(1149), + [anon_sym_BANG] = ACTIONS(1149), + [anon_sym_TILDE] = ACTIONS(1149), + [anon_sym_DASH] = ACTIONS(1147), + [anon_sym_PLUS] = ACTIONS(1147), + [anon_sym_STAR] = ACTIONS(1149), + [anon_sym_AMP] = ACTIONS(1149), + [anon_sym_SEMI] = ACTIONS(1149), + [anon_sym___extension__] = ACTIONS(1147), + [anon_sym_typedef] = ACTIONS(1147), + [anon_sym_extern] = ACTIONS(1147), + [anon_sym___attribute__] = ACTIONS(1147), + [anon_sym___scanf] = ACTIONS(1147), + [anon_sym___printf] = ACTIONS(1147), + [anon_sym___read_mostly] = ACTIONS(1147), + [anon_sym___must_hold] = ACTIONS(1147), + [anon_sym___ro_after_init] = ACTIONS(1147), + [anon_sym___noreturn] = ACTIONS(1147), + [anon_sym___cold] = ACTIONS(1147), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1149), + [anon_sym___declspec] = ACTIONS(1147), + [anon_sym___init] = ACTIONS(1147), + [anon_sym___exit] = ACTIONS(1147), + [anon_sym___cdecl] = ACTIONS(1147), + [anon_sym___clrcall] = ACTIONS(1147), + [anon_sym___stdcall] = ACTIONS(1147), + [anon_sym___fastcall] = ACTIONS(1147), + [anon_sym___thiscall] = ACTIONS(1147), + [anon_sym___vectorcall] = ACTIONS(1147), + [anon_sym_LBRACE] = ACTIONS(1149), + [anon_sym_signed] = ACTIONS(1147), + [anon_sym_unsigned] = ACTIONS(1147), + [anon_sym_long] = ACTIONS(1147), + [anon_sym_short] = ACTIONS(1147), + [anon_sym_static] = ACTIONS(1147), + [anon_sym_auto] = ACTIONS(1147), + [anon_sym_register] = ACTIONS(1147), + [anon_sym_inline] = ACTIONS(1147), + [anon_sym___inline] = ACTIONS(1147), + [anon_sym___inline__] = ACTIONS(1147), + [anon_sym___forceinline] = ACTIONS(1147), + [anon_sym_thread_local] = ACTIONS(1147), + [anon_sym___thread] = ACTIONS(1147), + [anon_sym_const] = ACTIONS(1147), + [anon_sym_constexpr] = ACTIONS(1147), + [anon_sym_volatile] = ACTIONS(1147), + [anon_sym_restrict] = ACTIONS(1147), + [anon_sym___restrict__] = ACTIONS(1147), + [anon_sym__Atomic] = ACTIONS(1147), + [anon_sym__Noreturn] = ACTIONS(1147), + [anon_sym_noreturn] = ACTIONS(1147), + [anon_sym_alignas] = ACTIONS(1147), + [anon_sym__Alignas] = ACTIONS(1147), + [sym_primitive_type] = ACTIONS(1147), + [anon_sym_enum] = ACTIONS(1147), + [anon_sym_struct] = ACTIONS(1147), + [anon_sym_union] = ACTIONS(1147), + [anon_sym_if] = ACTIONS(1147), + [anon_sym_else] = ACTIONS(1427), + [anon_sym_switch] = ACTIONS(1147), + [anon_sym_case] = ACTIONS(1147), + [anon_sym_default] = ACTIONS(1147), + [anon_sym_while] = ACTIONS(1147), + [anon_sym_do] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1147), + [anon_sym_return] = ACTIONS(1147), + [anon_sym_break] = ACTIONS(1147), + [anon_sym_continue] = ACTIONS(1147), + [anon_sym_goto] = ACTIONS(1147), + [anon_sym___try] = ACTIONS(1147), + [anon_sym___leave] = ACTIONS(1147), + [anon_sym_DASH_DASH] = ACTIONS(1149), + [anon_sym_PLUS_PLUS] = ACTIONS(1149), + [anon_sym_sizeof] = ACTIONS(1147), + [anon_sym___alignof__] = ACTIONS(1147), + [anon_sym___alignof] = ACTIONS(1147), + [anon_sym__alignof] = ACTIONS(1147), + [anon_sym_alignof] = ACTIONS(1147), + [anon_sym__Alignof] = ACTIONS(1147), + [anon_sym_offsetof] = ACTIONS(1147), + [anon_sym__Generic] = ACTIONS(1147), + [anon_sym_asm] = ACTIONS(1147), + [anon_sym___asm__] = ACTIONS(1147), + [sym_number_literal] = ACTIONS(1149), + [anon_sym_L_SQUOTE] = ACTIONS(1149), + [anon_sym_u_SQUOTE] = ACTIONS(1149), + [anon_sym_U_SQUOTE] = ACTIONS(1149), + [anon_sym_u8_SQUOTE] = ACTIONS(1149), + [anon_sym_SQUOTE] = ACTIONS(1149), + [anon_sym_L_DQUOTE] = ACTIONS(1149), + [anon_sym_u_DQUOTE] = ACTIONS(1149), + [anon_sym_U_DQUOTE] = ACTIONS(1149), + [anon_sym_u8_DQUOTE] = ACTIONS(1149), + [anon_sym_DQUOTE] = ACTIONS(1149), + [sym_true] = ACTIONS(1147), + [sym_false] = ACTIONS(1147), + [anon_sym_NULL] = ACTIONS(1147), + [anon_sym_nullptr] = ACTIONS(1147), [sym_comment] = ACTIONS(3), }, - [142] = { - [sym_identifier] = ACTIONS(1387), - [aux_sym_preproc_include_token1] = ACTIONS(1387), - [aux_sym_preproc_def_token1] = ACTIONS(1387), - [aux_sym_preproc_if_token1] = ACTIONS(1387), - [aux_sym_preproc_if_token2] = ACTIONS(1387), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1387), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1387), - [aux_sym_preproc_else_token1] = ACTIONS(1387), - [aux_sym_preproc_elif_token1] = ACTIONS(1387), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1387), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1387), - [sym_preproc_directive] = ACTIONS(1387), - [anon_sym_LPAREN2] = ACTIONS(1389), - [anon_sym_BANG] = ACTIONS(1389), - [anon_sym_TILDE] = ACTIONS(1389), - [anon_sym_DASH] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(1387), - [anon_sym_STAR] = ACTIONS(1389), - [anon_sym_AMP] = ACTIONS(1389), - [anon_sym_SEMI] = ACTIONS(1389), - [anon_sym___extension__] = ACTIONS(1387), - [anon_sym_typedef] = ACTIONS(1387), - [anon_sym_extern] = ACTIONS(1387), - [anon_sym___attribute__] = ACTIONS(1387), - [anon_sym___scanf] = ACTIONS(1387), - [anon_sym___printf] = ACTIONS(1387), - [anon_sym___read_mostly] = ACTIONS(1387), - [anon_sym___must_hold] = ACTIONS(1387), - [anon_sym___ro_after_init] = ACTIONS(1387), - [anon_sym___init] = ACTIONS(1387), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1389), - [anon_sym___declspec] = ACTIONS(1387), - [anon_sym___cdecl] = ACTIONS(1387), - [anon_sym___clrcall] = ACTIONS(1387), - [anon_sym___stdcall] = ACTIONS(1387), - [anon_sym___fastcall] = ACTIONS(1387), - [anon_sym___thiscall] = ACTIONS(1387), - [anon_sym___vectorcall] = ACTIONS(1387), - [anon_sym_LBRACE] = ACTIONS(1389), - [anon_sym_signed] = ACTIONS(1387), - [anon_sym_unsigned] = ACTIONS(1387), - [anon_sym_long] = ACTIONS(1387), - [anon_sym_short] = ACTIONS(1387), - [anon_sym_static] = ACTIONS(1387), - [anon_sym_auto] = ACTIONS(1387), - [anon_sym_register] = ACTIONS(1387), - [anon_sym_inline] = ACTIONS(1387), - [anon_sym___inline] = ACTIONS(1387), - [anon_sym___inline__] = ACTIONS(1387), - [anon_sym___forceinline] = ACTIONS(1387), - [anon_sym_thread_local] = ACTIONS(1387), - [anon_sym___thread] = ACTIONS(1387), - [anon_sym_const] = ACTIONS(1387), - [anon_sym_constexpr] = ACTIONS(1387), - [anon_sym_volatile] = ACTIONS(1387), - [anon_sym_restrict] = ACTIONS(1387), - [anon_sym___restrict__] = ACTIONS(1387), - [anon_sym__Atomic] = ACTIONS(1387), - [anon_sym__Noreturn] = ACTIONS(1387), - [anon_sym_noreturn] = ACTIONS(1387), - [anon_sym_alignas] = ACTIONS(1387), - [anon_sym__Alignas] = ACTIONS(1387), - [sym_primitive_type] = ACTIONS(1387), - [anon_sym_enum] = ACTIONS(1387), - [anon_sym_struct] = ACTIONS(1387), - [anon_sym_union] = ACTIONS(1387), - [anon_sym_if] = ACTIONS(1387), - [anon_sym_switch] = ACTIONS(1387), - [anon_sym_case] = ACTIONS(1387), - [anon_sym_default] = ACTIONS(1387), - [anon_sym_while] = ACTIONS(1387), - [anon_sym_do] = ACTIONS(1387), - [anon_sym_for] = ACTIONS(1387), - [anon_sym_return] = ACTIONS(1387), - [anon_sym_break] = ACTIONS(1387), - [anon_sym_continue] = ACTIONS(1387), - [anon_sym_goto] = ACTIONS(1387), - [anon_sym___try] = ACTIONS(1387), - [anon_sym___leave] = ACTIONS(1387), - [anon_sym_DASH_DASH] = ACTIONS(1389), - [anon_sym_PLUS_PLUS] = ACTIONS(1389), - [anon_sym_sizeof] = ACTIONS(1387), - [anon_sym___alignof__] = ACTIONS(1387), - [anon_sym___alignof] = ACTIONS(1387), - [anon_sym__alignof] = ACTIONS(1387), - [anon_sym_alignof] = ACTIONS(1387), - [anon_sym__Alignof] = ACTIONS(1387), - [anon_sym_offsetof] = ACTIONS(1387), - [anon_sym__Generic] = ACTIONS(1387), - [anon_sym_asm] = ACTIONS(1387), - [anon_sym___asm__] = ACTIONS(1387), - [sym_number_literal] = ACTIONS(1389), - [anon_sym_L_SQUOTE] = ACTIONS(1389), - [anon_sym_u_SQUOTE] = ACTIONS(1389), - [anon_sym_U_SQUOTE] = ACTIONS(1389), - [anon_sym_u8_SQUOTE] = ACTIONS(1389), - [anon_sym_SQUOTE] = ACTIONS(1389), - [anon_sym_L_DQUOTE] = ACTIONS(1389), - [anon_sym_u_DQUOTE] = ACTIONS(1389), - [anon_sym_U_DQUOTE] = ACTIONS(1389), - [anon_sym_u8_DQUOTE] = ACTIONS(1389), - [anon_sym_DQUOTE] = ACTIONS(1389), - [sym_true] = ACTIONS(1387), - [sym_false] = ACTIONS(1387), - [anon_sym_NULL] = ACTIONS(1387), - [anon_sym_nullptr] = ACTIONS(1387), + [162] = { + [ts_builtin_sym_end] = ACTIONS(1263), + [sym_identifier] = ACTIONS(1261), + [aux_sym_preproc_include_token1] = ACTIONS(1261), + [aux_sym_preproc_def_token1] = ACTIONS(1261), + [aux_sym_preproc_if_token1] = ACTIONS(1261), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1261), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1261), + [sym_preproc_directive] = ACTIONS(1261), + [anon_sym_LPAREN2] = ACTIONS(1263), + [anon_sym_BANG] = ACTIONS(1263), + [anon_sym_TILDE] = ACTIONS(1263), + [anon_sym_DASH] = ACTIONS(1261), + [anon_sym_PLUS] = ACTIONS(1261), + [anon_sym_STAR] = ACTIONS(1263), + [anon_sym_AMP] = ACTIONS(1263), + [anon_sym_SEMI] = ACTIONS(1263), + [anon_sym___extension__] = ACTIONS(1261), + [anon_sym_typedef] = ACTIONS(1261), + [anon_sym_extern] = ACTIONS(1261), + [anon_sym___attribute__] = ACTIONS(1261), + [anon_sym___scanf] = ACTIONS(1261), + [anon_sym___printf] = ACTIONS(1261), + [anon_sym___read_mostly] = ACTIONS(1261), + [anon_sym___must_hold] = ACTIONS(1261), + [anon_sym___ro_after_init] = ACTIONS(1261), + [anon_sym___noreturn] = ACTIONS(1261), + [anon_sym___cold] = ACTIONS(1261), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1263), + [anon_sym___declspec] = ACTIONS(1261), + [anon_sym___init] = ACTIONS(1261), + [anon_sym___exit] = ACTIONS(1261), + [anon_sym___cdecl] = ACTIONS(1261), + [anon_sym___clrcall] = ACTIONS(1261), + [anon_sym___stdcall] = ACTIONS(1261), + [anon_sym___fastcall] = ACTIONS(1261), + [anon_sym___thiscall] = ACTIONS(1261), + [anon_sym___vectorcall] = ACTIONS(1261), + [anon_sym_LBRACE] = ACTIONS(1263), + [anon_sym_signed] = ACTIONS(1261), + [anon_sym_unsigned] = ACTIONS(1261), + [anon_sym_long] = ACTIONS(1261), + [anon_sym_short] = ACTIONS(1261), + [anon_sym_static] = ACTIONS(1261), + [anon_sym_auto] = ACTIONS(1261), + [anon_sym_register] = ACTIONS(1261), + [anon_sym_inline] = ACTIONS(1261), + [anon_sym___inline] = ACTIONS(1261), + [anon_sym___inline__] = ACTIONS(1261), + [anon_sym___forceinline] = ACTIONS(1261), + [anon_sym_thread_local] = ACTIONS(1261), + [anon_sym___thread] = ACTIONS(1261), + [anon_sym_const] = ACTIONS(1261), + [anon_sym_constexpr] = ACTIONS(1261), + [anon_sym_volatile] = ACTIONS(1261), + [anon_sym_restrict] = ACTIONS(1261), + [anon_sym___restrict__] = ACTIONS(1261), + [anon_sym__Atomic] = ACTIONS(1261), + [anon_sym__Noreturn] = ACTIONS(1261), + [anon_sym_noreturn] = ACTIONS(1261), + [anon_sym_alignas] = ACTIONS(1261), + [anon_sym__Alignas] = ACTIONS(1261), + [sym_primitive_type] = ACTIONS(1261), + [anon_sym_enum] = ACTIONS(1261), + [anon_sym_struct] = ACTIONS(1261), + [anon_sym_union] = ACTIONS(1261), + [anon_sym_if] = ACTIONS(1261), + [anon_sym_else] = ACTIONS(1261), + [anon_sym_switch] = ACTIONS(1261), + [anon_sym_case] = ACTIONS(1261), + [anon_sym_default] = ACTIONS(1261), + [anon_sym_while] = ACTIONS(1261), + [anon_sym_do] = ACTIONS(1261), + [anon_sym_for] = ACTIONS(1261), + [anon_sym_return] = ACTIONS(1261), + [anon_sym_break] = ACTIONS(1261), + [anon_sym_continue] = ACTIONS(1261), + [anon_sym_goto] = ACTIONS(1261), + [anon_sym___try] = ACTIONS(1261), + [anon_sym___leave] = ACTIONS(1261), + [anon_sym_DASH_DASH] = ACTIONS(1263), + [anon_sym_PLUS_PLUS] = ACTIONS(1263), + [anon_sym_sizeof] = ACTIONS(1261), + [anon_sym___alignof__] = ACTIONS(1261), + [anon_sym___alignof] = ACTIONS(1261), + [anon_sym__alignof] = ACTIONS(1261), + [anon_sym_alignof] = ACTIONS(1261), + [anon_sym__Alignof] = ACTIONS(1261), + [anon_sym_offsetof] = ACTIONS(1261), + [anon_sym__Generic] = ACTIONS(1261), + [anon_sym_asm] = ACTIONS(1261), + [anon_sym___asm__] = ACTIONS(1261), + [sym_number_literal] = ACTIONS(1263), + [anon_sym_L_SQUOTE] = ACTIONS(1263), + [anon_sym_u_SQUOTE] = ACTIONS(1263), + [anon_sym_U_SQUOTE] = ACTIONS(1263), + [anon_sym_u8_SQUOTE] = ACTIONS(1263), + [anon_sym_SQUOTE] = ACTIONS(1263), + [anon_sym_L_DQUOTE] = ACTIONS(1263), + [anon_sym_u_DQUOTE] = ACTIONS(1263), + [anon_sym_U_DQUOTE] = ACTIONS(1263), + [anon_sym_u8_DQUOTE] = ACTIONS(1263), + [anon_sym_DQUOTE] = ACTIONS(1263), + [sym_true] = ACTIONS(1261), + [sym_false] = ACTIONS(1261), + [anon_sym_NULL] = ACTIONS(1261), + [anon_sym_nullptr] = ACTIONS(1261), [sym_comment] = ACTIONS(3), }, - [143] = { - [sym_else_clause] = STATE(200), - [sym_identifier] = ACTIONS(1139), - [aux_sym_preproc_include_token1] = ACTIONS(1139), - [aux_sym_preproc_def_token1] = ACTIONS(1139), - [aux_sym_preproc_if_token1] = ACTIONS(1139), - [aux_sym_preproc_if_token2] = ACTIONS(1139), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1139), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1139), - [sym_preproc_directive] = ACTIONS(1139), - [anon_sym_LPAREN2] = ACTIONS(1141), - [anon_sym_BANG] = ACTIONS(1141), - [anon_sym_TILDE] = ACTIONS(1141), - [anon_sym_DASH] = ACTIONS(1139), - [anon_sym_PLUS] = ACTIONS(1139), - [anon_sym_STAR] = ACTIONS(1141), - [anon_sym_AMP] = ACTIONS(1141), - [anon_sym_SEMI] = ACTIONS(1141), - [anon_sym___extension__] = ACTIONS(1139), - [anon_sym_typedef] = ACTIONS(1139), - [anon_sym_extern] = ACTIONS(1139), - [anon_sym___attribute__] = ACTIONS(1139), - [anon_sym___scanf] = ACTIONS(1139), - [anon_sym___printf] = ACTIONS(1139), - [anon_sym___read_mostly] = ACTIONS(1139), - [anon_sym___must_hold] = ACTIONS(1139), - [anon_sym___ro_after_init] = ACTIONS(1139), - [anon_sym___init] = ACTIONS(1139), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1141), - [anon_sym___declspec] = ACTIONS(1139), - [anon_sym___cdecl] = ACTIONS(1139), - [anon_sym___clrcall] = ACTIONS(1139), - [anon_sym___stdcall] = ACTIONS(1139), - [anon_sym___fastcall] = ACTIONS(1139), - [anon_sym___thiscall] = ACTIONS(1139), - [anon_sym___vectorcall] = ACTIONS(1139), - [anon_sym_LBRACE] = ACTIONS(1141), - [anon_sym_signed] = ACTIONS(1139), - [anon_sym_unsigned] = ACTIONS(1139), - [anon_sym_long] = ACTIONS(1139), - [anon_sym_short] = ACTIONS(1139), - [anon_sym_static] = ACTIONS(1139), - [anon_sym_auto] = ACTIONS(1139), - [anon_sym_register] = ACTIONS(1139), - [anon_sym_inline] = ACTIONS(1139), - [anon_sym___inline] = ACTIONS(1139), - [anon_sym___inline__] = ACTIONS(1139), - [anon_sym___forceinline] = ACTIONS(1139), - [anon_sym_thread_local] = ACTIONS(1139), - [anon_sym___thread] = ACTIONS(1139), - [anon_sym_const] = ACTIONS(1139), - [anon_sym_constexpr] = ACTIONS(1139), - [anon_sym_volatile] = ACTIONS(1139), - [anon_sym_restrict] = ACTIONS(1139), - [anon_sym___restrict__] = ACTIONS(1139), - [anon_sym__Atomic] = ACTIONS(1139), - [anon_sym__Noreturn] = ACTIONS(1139), - [anon_sym_noreturn] = ACTIONS(1139), - [anon_sym_alignas] = ACTIONS(1139), - [anon_sym__Alignas] = ACTIONS(1139), - [sym_primitive_type] = ACTIONS(1139), - [anon_sym_enum] = ACTIONS(1139), - [anon_sym_struct] = ACTIONS(1139), - [anon_sym_union] = ACTIONS(1139), - [anon_sym_if] = ACTIONS(1139), - [anon_sym_else] = ACTIONS(1391), - [anon_sym_switch] = ACTIONS(1139), - [anon_sym_case] = ACTIONS(1139), - [anon_sym_default] = ACTIONS(1139), - [anon_sym_while] = ACTIONS(1139), - [anon_sym_do] = ACTIONS(1139), - [anon_sym_for] = ACTIONS(1139), - [anon_sym_return] = ACTIONS(1139), - [anon_sym_break] = ACTIONS(1139), - [anon_sym_continue] = ACTIONS(1139), - [anon_sym_goto] = ACTIONS(1139), - [anon_sym___try] = ACTIONS(1139), - [anon_sym___leave] = ACTIONS(1139), - [anon_sym_DASH_DASH] = ACTIONS(1141), - [anon_sym_PLUS_PLUS] = ACTIONS(1141), - [anon_sym_sizeof] = ACTIONS(1139), - [anon_sym___alignof__] = ACTIONS(1139), - [anon_sym___alignof] = ACTIONS(1139), - [anon_sym__alignof] = ACTIONS(1139), - [anon_sym_alignof] = ACTIONS(1139), - [anon_sym__Alignof] = ACTIONS(1139), - [anon_sym_offsetof] = ACTIONS(1139), - [anon_sym__Generic] = ACTIONS(1139), - [anon_sym_asm] = ACTIONS(1139), - [anon_sym___asm__] = ACTIONS(1139), - [sym_number_literal] = ACTIONS(1141), - [anon_sym_L_SQUOTE] = ACTIONS(1141), - [anon_sym_u_SQUOTE] = ACTIONS(1141), - [anon_sym_U_SQUOTE] = ACTIONS(1141), - [anon_sym_u8_SQUOTE] = ACTIONS(1141), - [anon_sym_SQUOTE] = ACTIONS(1141), - [anon_sym_L_DQUOTE] = ACTIONS(1141), - [anon_sym_u_DQUOTE] = ACTIONS(1141), - [anon_sym_U_DQUOTE] = ACTIONS(1141), - [anon_sym_u8_DQUOTE] = ACTIONS(1141), - [anon_sym_DQUOTE] = ACTIONS(1141), - [sym_true] = ACTIONS(1139), - [sym_false] = ACTIONS(1139), - [anon_sym_NULL] = ACTIONS(1139), - [anon_sym_nullptr] = ACTIONS(1139), + [163] = { + [ts_builtin_sym_end] = ACTIONS(1191), + [sym_identifier] = ACTIONS(1189), + [aux_sym_preproc_include_token1] = ACTIONS(1189), + [aux_sym_preproc_def_token1] = ACTIONS(1189), + [aux_sym_preproc_if_token1] = ACTIONS(1189), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1189), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1189), + [sym_preproc_directive] = ACTIONS(1189), + [anon_sym_LPAREN2] = ACTIONS(1191), + [anon_sym_BANG] = ACTIONS(1191), + [anon_sym_TILDE] = ACTIONS(1191), + [anon_sym_DASH] = ACTIONS(1189), + [anon_sym_PLUS] = ACTIONS(1189), + [anon_sym_STAR] = ACTIONS(1191), + [anon_sym_AMP] = ACTIONS(1191), + [anon_sym_SEMI] = ACTIONS(1191), + [anon_sym___extension__] = ACTIONS(1189), + [anon_sym_typedef] = ACTIONS(1189), + [anon_sym_extern] = ACTIONS(1189), + [anon_sym___attribute__] = ACTIONS(1189), + [anon_sym___scanf] = ACTIONS(1189), + [anon_sym___printf] = ACTIONS(1189), + [anon_sym___read_mostly] = ACTIONS(1189), + [anon_sym___must_hold] = ACTIONS(1189), + [anon_sym___ro_after_init] = ACTIONS(1189), + [anon_sym___noreturn] = ACTIONS(1189), + [anon_sym___cold] = ACTIONS(1189), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1191), + [anon_sym___declspec] = ACTIONS(1189), + [anon_sym___init] = ACTIONS(1189), + [anon_sym___exit] = ACTIONS(1189), + [anon_sym___cdecl] = ACTIONS(1189), + [anon_sym___clrcall] = ACTIONS(1189), + [anon_sym___stdcall] = ACTIONS(1189), + [anon_sym___fastcall] = ACTIONS(1189), + [anon_sym___thiscall] = ACTIONS(1189), + [anon_sym___vectorcall] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_signed] = ACTIONS(1189), + [anon_sym_unsigned] = ACTIONS(1189), + [anon_sym_long] = ACTIONS(1189), + [anon_sym_short] = ACTIONS(1189), + [anon_sym_static] = ACTIONS(1189), + [anon_sym_auto] = ACTIONS(1189), + [anon_sym_register] = ACTIONS(1189), + [anon_sym_inline] = ACTIONS(1189), + [anon_sym___inline] = ACTIONS(1189), + [anon_sym___inline__] = ACTIONS(1189), + [anon_sym___forceinline] = ACTIONS(1189), + [anon_sym_thread_local] = ACTIONS(1189), + [anon_sym___thread] = ACTIONS(1189), + [anon_sym_const] = ACTIONS(1189), + [anon_sym_constexpr] = ACTIONS(1189), + [anon_sym_volatile] = ACTIONS(1189), + [anon_sym_restrict] = ACTIONS(1189), + [anon_sym___restrict__] = ACTIONS(1189), + [anon_sym__Atomic] = ACTIONS(1189), + [anon_sym__Noreturn] = ACTIONS(1189), + [anon_sym_noreturn] = ACTIONS(1189), + [anon_sym_alignas] = ACTIONS(1189), + [anon_sym__Alignas] = ACTIONS(1189), + [sym_primitive_type] = ACTIONS(1189), + [anon_sym_enum] = ACTIONS(1189), + [anon_sym_struct] = ACTIONS(1189), + [anon_sym_union] = ACTIONS(1189), + [anon_sym_if] = ACTIONS(1189), + [anon_sym_else] = ACTIONS(1189), + [anon_sym_switch] = ACTIONS(1189), + [anon_sym_case] = ACTIONS(1189), + [anon_sym_default] = ACTIONS(1189), + [anon_sym_while] = ACTIONS(1189), + [anon_sym_do] = ACTIONS(1189), + [anon_sym_for] = ACTIONS(1189), + [anon_sym_return] = ACTIONS(1189), + [anon_sym_break] = ACTIONS(1189), + [anon_sym_continue] = ACTIONS(1189), + [anon_sym_goto] = ACTIONS(1189), + [anon_sym___try] = ACTIONS(1189), + [anon_sym___leave] = ACTIONS(1189), + [anon_sym_DASH_DASH] = ACTIONS(1191), + [anon_sym_PLUS_PLUS] = ACTIONS(1191), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym___alignof__] = ACTIONS(1189), + [anon_sym___alignof] = ACTIONS(1189), + [anon_sym__alignof] = ACTIONS(1189), + [anon_sym_alignof] = ACTIONS(1189), + [anon_sym__Alignof] = ACTIONS(1189), + [anon_sym_offsetof] = ACTIONS(1189), + [anon_sym__Generic] = ACTIONS(1189), + [anon_sym_asm] = ACTIONS(1189), + [anon_sym___asm__] = ACTIONS(1189), + [sym_number_literal] = ACTIONS(1191), + [anon_sym_L_SQUOTE] = ACTIONS(1191), + [anon_sym_u_SQUOTE] = ACTIONS(1191), + [anon_sym_U_SQUOTE] = ACTIONS(1191), + [anon_sym_u8_SQUOTE] = ACTIONS(1191), + [anon_sym_SQUOTE] = ACTIONS(1191), + [anon_sym_L_DQUOTE] = ACTIONS(1191), + [anon_sym_u_DQUOTE] = ACTIONS(1191), + [anon_sym_U_DQUOTE] = ACTIONS(1191), + [anon_sym_u8_DQUOTE] = ACTIONS(1191), + [anon_sym_DQUOTE] = ACTIONS(1191), + [sym_true] = ACTIONS(1189), + [sym_false] = ACTIONS(1189), + [anon_sym_NULL] = ACTIONS(1189), + [anon_sym_nullptr] = ACTIONS(1189), [sym_comment] = ACTIONS(3), }, - [144] = { - [sym_else_clause] = STATE(163), - [sym_identifier] = ACTIONS(1139), - [aux_sym_preproc_include_token1] = ACTIONS(1139), - [aux_sym_preproc_def_token1] = ACTIONS(1139), - [aux_sym_preproc_if_token1] = ACTIONS(1139), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1139), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1139), - [sym_preproc_directive] = ACTIONS(1139), - [anon_sym_LPAREN2] = ACTIONS(1141), - [anon_sym_BANG] = ACTIONS(1141), - [anon_sym_TILDE] = ACTIONS(1141), - [anon_sym_DASH] = ACTIONS(1139), - [anon_sym_PLUS] = ACTIONS(1139), - [anon_sym_STAR] = ACTIONS(1141), - [anon_sym_AMP] = ACTIONS(1141), - [anon_sym_SEMI] = ACTIONS(1141), - [anon_sym___extension__] = ACTIONS(1139), - [anon_sym_typedef] = ACTIONS(1139), - [anon_sym_extern] = ACTIONS(1139), - [anon_sym___attribute__] = ACTIONS(1139), - [anon_sym___scanf] = ACTIONS(1139), - [anon_sym___printf] = ACTIONS(1139), - [anon_sym___read_mostly] = ACTIONS(1139), - [anon_sym___must_hold] = ACTIONS(1139), - [anon_sym___ro_after_init] = ACTIONS(1139), - [anon_sym___init] = ACTIONS(1139), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1141), - [anon_sym___declspec] = ACTIONS(1139), - [anon_sym___cdecl] = ACTIONS(1139), - [anon_sym___clrcall] = ACTIONS(1139), - [anon_sym___stdcall] = ACTIONS(1139), - [anon_sym___fastcall] = ACTIONS(1139), - [anon_sym___thiscall] = ACTIONS(1139), - [anon_sym___vectorcall] = ACTIONS(1139), - [anon_sym_LBRACE] = ACTIONS(1141), - [anon_sym_RBRACE] = ACTIONS(1141), - [anon_sym_signed] = ACTIONS(1139), - [anon_sym_unsigned] = ACTIONS(1139), - [anon_sym_long] = ACTIONS(1139), - [anon_sym_short] = ACTIONS(1139), - [anon_sym_static] = ACTIONS(1139), - [anon_sym_auto] = ACTIONS(1139), - [anon_sym_register] = ACTIONS(1139), - [anon_sym_inline] = ACTIONS(1139), - [anon_sym___inline] = ACTIONS(1139), - [anon_sym___inline__] = ACTIONS(1139), - [anon_sym___forceinline] = ACTIONS(1139), - [anon_sym_thread_local] = ACTIONS(1139), - [anon_sym___thread] = ACTIONS(1139), - [anon_sym_const] = ACTIONS(1139), - [anon_sym_constexpr] = ACTIONS(1139), - [anon_sym_volatile] = ACTIONS(1139), - [anon_sym_restrict] = ACTIONS(1139), - [anon_sym___restrict__] = ACTIONS(1139), - [anon_sym__Atomic] = ACTIONS(1139), - [anon_sym__Noreturn] = ACTIONS(1139), - [anon_sym_noreturn] = ACTIONS(1139), - [anon_sym_alignas] = ACTIONS(1139), - [anon_sym__Alignas] = ACTIONS(1139), - [sym_primitive_type] = ACTIONS(1139), - [anon_sym_enum] = ACTIONS(1139), - [anon_sym_struct] = ACTIONS(1139), - [anon_sym_union] = ACTIONS(1139), - [anon_sym_if] = ACTIONS(1139), - [anon_sym_else] = ACTIONS(1393), - [anon_sym_switch] = ACTIONS(1139), - [anon_sym_case] = ACTIONS(1139), - [anon_sym_default] = ACTIONS(1139), - [anon_sym_while] = ACTIONS(1139), - [anon_sym_do] = ACTIONS(1139), - [anon_sym_for] = ACTIONS(1139), - [anon_sym_return] = ACTIONS(1139), - [anon_sym_break] = ACTIONS(1139), - [anon_sym_continue] = ACTIONS(1139), - [anon_sym_goto] = ACTIONS(1139), - [anon_sym___try] = ACTIONS(1139), - [anon_sym___leave] = ACTIONS(1139), - [anon_sym_DASH_DASH] = ACTIONS(1141), - [anon_sym_PLUS_PLUS] = ACTIONS(1141), - [anon_sym_sizeof] = ACTIONS(1139), - [anon_sym___alignof__] = ACTIONS(1139), - [anon_sym___alignof] = ACTIONS(1139), - [anon_sym__alignof] = ACTIONS(1139), - [anon_sym_alignof] = ACTIONS(1139), - [anon_sym__Alignof] = ACTIONS(1139), - [anon_sym_offsetof] = ACTIONS(1139), - [anon_sym__Generic] = ACTIONS(1139), - [anon_sym_asm] = ACTIONS(1139), - [anon_sym___asm__] = ACTIONS(1139), - [sym_number_literal] = ACTIONS(1141), - [anon_sym_L_SQUOTE] = ACTIONS(1141), - [anon_sym_u_SQUOTE] = ACTIONS(1141), - [anon_sym_U_SQUOTE] = ACTIONS(1141), - [anon_sym_u8_SQUOTE] = ACTIONS(1141), - [anon_sym_SQUOTE] = ACTIONS(1141), - [anon_sym_L_DQUOTE] = ACTIONS(1141), - [anon_sym_u_DQUOTE] = ACTIONS(1141), - [anon_sym_U_DQUOTE] = ACTIONS(1141), - [anon_sym_u8_DQUOTE] = ACTIONS(1141), - [anon_sym_DQUOTE] = ACTIONS(1141), - [sym_true] = ACTIONS(1139), - [sym_false] = ACTIONS(1139), - [anon_sym_NULL] = ACTIONS(1139), - [anon_sym_nullptr] = ACTIONS(1139), + [164] = { + [sym_identifier] = ACTIONS(1193), + [aux_sym_preproc_include_token1] = ACTIONS(1193), + [aux_sym_preproc_def_token1] = ACTIONS(1193), + [aux_sym_preproc_if_token1] = ACTIONS(1193), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1193), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1193), + [sym_preproc_directive] = ACTIONS(1193), + [anon_sym_LPAREN2] = ACTIONS(1195), + [anon_sym_BANG] = ACTIONS(1195), + [anon_sym_TILDE] = ACTIONS(1195), + [anon_sym_DASH] = ACTIONS(1193), + [anon_sym_PLUS] = ACTIONS(1193), + [anon_sym_STAR] = ACTIONS(1195), + [anon_sym_AMP] = ACTIONS(1195), + [anon_sym_SEMI] = ACTIONS(1195), + [anon_sym___extension__] = ACTIONS(1193), + [anon_sym_typedef] = ACTIONS(1193), + [anon_sym_extern] = ACTIONS(1193), + [anon_sym___attribute__] = ACTIONS(1193), + [anon_sym___scanf] = ACTIONS(1193), + [anon_sym___printf] = ACTIONS(1193), + [anon_sym___read_mostly] = ACTIONS(1193), + [anon_sym___must_hold] = ACTIONS(1193), + [anon_sym___ro_after_init] = ACTIONS(1193), + [anon_sym___noreturn] = ACTIONS(1193), + [anon_sym___cold] = ACTIONS(1193), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1195), + [anon_sym___declspec] = ACTIONS(1193), + [anon_sym___init] = ACTIONS(1193), + [anon_sym___exit] = ACTIONS(1193), + [anon_sym___cdecl] = ACTIONS(1193), + [anon_sym___clrcall] = ACTIONS(1193), + [anon_sym___stdcall] = ACTIONS(1193), + [anon_sym___fastcall] = ACTIONS(1193), + [anon_sym___thiscall] = ACTIONS(1193), + [anon_sym___vectorcall] = ACTIONS(1193), + [anon_sym_LBRACE] = ACTIONS(1195), + [anon_sym_RBRACE] = ACTIONS(1195), + [anon_sym_signed] = ACTIONS(1193), + [anon_sym_unsigned] = ACTIONS(1193), + [anon_sym_long] = ACTIONS(1193), + [anon_sym_short] = ACTIONS(1193), + [anon_sym_static] = ACTIONS(1193), + [anon_sym_auto] = ACTIONS(1193), + [anon_sym_register] = ACTIONS(1193), + [anon_sym_inline] = ACTIONS(1193), + [anon_sym___inline] = ACTIONS(1193), + [anon_sym___inline__] = ACTIONS(1193), + [anon_sym___forceinline] = ACTIONS(1193), + [anon_sym_thread_local] = ACTIONS(1193), + [anon_sym___thread] = ACTIONS(1193), + [anon_sym_const] = ACTIONS(1193), + [anon_sym_constexpr] = ACTIONS(1193), + [anon_sym_volatile] = ACTIONS(1193), + [anon_sym_restrict] = ACTIONS(1193), + [anon_sym___restrict__] = ACTIONS(1193), + [anon_sym__Atomic] = ACTIONS(1193), + [anon_sym__Noreturn] = ACTIONS(1193), + [anon_sym_noreturn] = ACTIONS(1193), + [anon_sym_alignas] = ACTIONS(1193), + [anon_sym__Alignas] = ACTIONS(1193), + [sym_primitive_type] = ACTIONS(1193), + [anon_sym_enum] = ACTIONS(1193), + [anon_sym_struct] = ACTIONS(1193), + [anon_sym_union] = ACTIONS(1193), + [anon_sym_if] = ACTIONS(1193), + [anon_sym_else] = ACTIONS(1193), + [anon_sym_switch] = ACTIONS(1193), + [anon_sym_case] = ACTIONS(1193), + [anon_sym_default] = ACTIONS(1193), + [anon_sym_while] = ACTIONS(1193), + [anon_sym_do] = ACTIONS(1193), + [anon_sym_for] = ACTIONS(1193), + [anon_sym_return] = ACTIONS(1193), + [anon_sym_break] = ACTIONS(1193), + [anon_sym_continue] = ACTIONS(1193), + [anon_sym_goto] = ACTIONS(1193), + [anon_sym___try] = ACTIONS(1193), + [anon_sym___leave] = ACTIONS(1193), + [anon_sym_DASH_DASH] = ACTIONS(1195), + [anon_sym_PLUS_PLUS] = ACTIONS(1195), + [anon_sym_sizeof] = ACTIONS(1193), + [anon_sym___alignof__] = ACTIONS(1193), + [anon_sym___alignof] = ACTIONS(1193), + [anon_sym__alignof] = ACTIONS(1193), + [anon_sym_alignof] = ACTIONS(1193), + [anon_sym__Alignof] = ACTIONS(1193), + [anon_sym_offsetof] = ACTIONS(1193), + [anon_sym__Generic] = ACTIONS(1193), + [anon_sym_asm] = ACTIONS(1193), + [anon_sym___asm__] = ACTIONS(1193), + [sym_number_literal] = ACTIONS(1195), + [anon_sym_L_SQUOTE] = ACTIONS(1195), + [anon_sym_u_SQUOTE] = ACTIONS(1195), + [anon_sym_U_SQUOTE] = ACTIONS(1195), + [anon_sym_u8_SQUOTE] = ACTIONS(1195), + [anon_sym_SQUOTE] = ACTIONS(1195), + [anon_sym_L_DQUOTE] = ACTIONS(1195), + [anon_sym_u_DQUOTE] = ACTIONS(1195), + [anon_sym_U_DQUOTE] = ACTIONS(1195), + [anon_sym_u8_DQUOTE] = ACTIONS(1195), + [anon_sym_DQUOTE] = ACTIONS(1195), + [sym_true] = ACTIONS(1193), + [sym_false] = ACTIONS(1193), + [anon_sym_NULL] = ACTIONS(1193), + [anon_sym_nullptr] = ACTIONS(1193), [sym_comment] = ACTIONS(3), }, - [145] = { - [sym_else_clause] = STATE(196), - [ts_builtin_sym_end] = ACTIONS(1141), - [sym_identifier] = ACTIONS(1139), - [aux_sym_preproc_include_token1] = ACTIONS(1139), - [aux_sym_preproc_def_token1] = ACTIONS(1139), - [aux_sym_preproc_if_token1] = ACTIONS(1139), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1139), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1139), - [sym_preproc_directive] = ACTIONS(1139), - [anon_sym_LPAREN2] = ACTIONS(1141), - [anon_sym_BANG] = ACTIONS(1141), - [anon_sym_TILDE] = ACTIONS(1141), - [anon_sym_DASH] = ACTIONS(1139), - [anon_sym_PLUS] = ACTIONS(1139), - [anon_sym_STAR] = ACTIONS(1141), - [anon_sym_AMP] = ACTIONS(1141), - [anon_sym_SEMI] = ACTIONS(1141), - [anon_sym___extension__] = ACTIONS(1139), - [anon_sym_typedef] = ACTIONS(1139), - [anon_sym_extern] = ACTIONS(1139), - [anon_sym___attribute__] = ACTIONS(1139), - [anon_sym___scanf] = ACTIONS(1139), - [anon_sym___printf] = ACTIONS(1139), - [anon_sym___read_mostly] = ACTIONS(1139), - [anon_sym___must_hold] = ACTIONS(1139), - [anon_sym___ro_after_init] = ACTIONS(1139), - [anon_sym___init] = ACTIONS(1139), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1141), - [anon_sym___declspec] = ACTIONS(1139), - [anon_sym___cdecl] = ACTIONS(1139), - [anon_sym___clrcall] = ACTIONS(1139), - [anon_sym___stdcall] = ACTIONS(1139), - [anon_sym___fastcall] = ACTIONS(1139), - [anon_sym___thiscall] = ACTIONS(1139), - [anon_sym___vectorcall] = ACTIONS(1139), - [anon_sym_LBRACE] = ACTIONS(1141), - [anon_sym_signed] = ACTIONS(1139), - [anon_sym_unsigned] = ACTIONS(1139), - [anon_sym_long] = ACTIONS(1139), - [anon_sym_short] = ACTIONS(1139), - [anon_sym_static] = ACTIONS(1139), - [anon_sym_auto] = ACTIONS(1139), - [anon_sym_register] = ACTIONS(1139), - [anon_sym_inline] = ACTIONS(1139), - [anon_sym___inline] = ACTIONS(1139), - [anon_sym___inline__] = ACTIONS(1139), - [anon_sym___forceinline] = ACTIONS(1139), - [anon_sym_thread_local] = ACTIONS(1139), - [anon_sym___thread] = ACTIONS(1139), - [anon_sym_const] = ACTIONS(1139), - [anon_sym_constexpr] = ACTIONS(1139), - [anon_sym_volatile] = ACTIONS(1139), - [anon_sym_restrict] = ACTIONS(1139), - [anon_sym___restrict__] = ACTIONS(1139), - [anon_sym__Atomic] = ACTIONS(1139), - [anon_sym__Noreturn] = ACTIONS(1139), - [anon_sym_noreturn] = ACTIONS(1139), - [anon_sym_alignas] = ACTIONS(1139), - [anon_sym__Alignas] = ACTIONS(1139), - [sym_primitive_type] = ACTIONS(1139), - [anon_sym_enum] = ACTIONS(1139), - [anon_sym_struct] = ACTIONS(1139), - [anon_sym_union] = ACTIONS(1139), - [anon_sym_if] = ACTIONS(1139), - [anon_sym_else] = ACTIONS(1395), - [anon_sym_switch] = ACTIONS(1139), - [anon_sym_case] = ACTIONS(1139), - [anon_sym_default] = ACTIONS(1139), - [anon_sym_while] = ACTIONS(1139), - [anon_sym_do] = ACTIONS(1139), - [anon_sym_for] = ACTIONS(1139), - [anon_sym_return] = ACTIONS(1139), - [anon_sym_break] = ACTIONS(1139), - [anon_sym_continue] = ACTIONS(1139), - [anon_sym_goto] = ACTIONS(1139), - [anon_sym___try] = ACTIONS(1139), - [anon_sym___leave] = ACTIONS(1139), - [anon_sym_DASH_DASH] = ACTIONS(1141), - [anon_sym_PLUS_PLUS] = ACTIONS(1141), - [anon_sym_sizeof] = ACTIONS(1139), - [anon_sym___alignof__] = ACTIONS(1139), - [anon_sym___alignof] = ACTIONS(1139), - [anon_sym__alignof] = ACTIONS(1139), - [anon_sym_alignof] = ACTIONS(1139), - [anon_sym__Alignof] = ACTIONS(1139), - [anon_sym_offsetof] = ACTIONS(1139), - [anon_sym__Generic] = ACTIONS(1139), - [anon_sym_asm] = ACTIONS(1139), - [anon_sym___asm__] = ACTIONS(1139), - [sym_number_literal] = ACTIONS(1141), - [anon_sym_L_SQUOTE] = ACTIONS(1141), - [anon_sym_u_SQUOTE] = ACTIONS(1141), - [anon_sym_U_SQUOTE] = ACTIONS(1141), - [anon_sym_u8_SQUOTE] = ACTIONS(1141), - [anon_sym_SQUOTE] = ACTIONS(1141), - [anon_sym_L_DQUOTE] = ACTIONS(1141), - [anon_sym_u_DQUOTE] = ACTIONS(1141), - [anon_sym_U_DQUOTE] = ACTIONS(1141), - [anon_sym_u8_DQUOTE] = ACTIONS(1141), - [anon_sym_DQUOTE] = ACTIONS(1141), - [sym_true] = ACTIONS(1139), - [sym_false] = ACTIONS(1139), - [anon_sym_NULL] = ACTIONS(1139), - [anon_sym_nullptr] = ACTIONS(1139), + [165] = { + [ts_builtin_sym_end] = ACTIONS(1247), + [sym_identifier] = ACTIONS(1245), + [aux_sym_preproc_include_token1] = ACTIONS(1245), + [aux_sym_preproc_def_token1] = ACTIONS(1245), + [aux_sym_preproc_if_token1] = ACTIONS(1245), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1245), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1245), + [sym_preproc_directive] = ACTIONS(1245), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(1247), + [anon_sym_TILDE] = ACTIONS(1247), + [anon_sym_DASH] = ACTIONS(1245), + [anon_sym_PLUS] = ACTIONS(1245), + [anon_sym_STAR] = ACTIONS(1247), + [anon_sym_AMP] = ACTIONS(1247), + [anon_sym_SEMI] = ACTIONS(1247), + [anon_sym___extension__] = ACTIONS(1245), + [anon_sym_typedef] = ACTIONS(1245), + [anon_sym_extern] = ACTIONS(1245), + [anon_sym___attribute__] = ACTIONS(1245), + [anon_sym___scanf] = ACTIONS(1245), + [anon_sym___printf] = ACTIONS(1245), + [anon_sym___read_mostly] = ACTIONS(1245), + [anon_sym___must_hold] = ACTIONS(1245), + [anon_sym___ro_after_init] = ACTIONS(1245), + [anon_sym___noreturn] = ACTIONS(1245), + [anon_sym___cold] = ACTIONS(1245), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1247), + [anon_sym___declspec] = ACTIONS(1245), + [anon_sym___init] = ACTIONS(1245), + [anon_sym___exit] = ACTIONS(1245), + [anon_sym___cdecl] = ACTIONS(1245), + [anon_sym___clrcall] = ACTIONS(1245), + [anon_sym___stdcall] = ACTIONS(1245), + [anon_sym___fastcall] = ACTIONS(1245), + [anon_sym___thiscall] = ACTIONS(1245), + [anon_sym___vectorcall] = ACTIONS(1245), + [anon_sym_LBRACE] = ACTIONS(1247), + [anon_sym_signed] = ACTIONS(1245), + [anon_sym_unsigned] = ACTIONS(1245), + [anon_sym_long] = ACTIONS(1245), + [anon_sym_short] = ACTIONS(1245), + [anon_sym_static] = ACTIONS(1245), + [anon_sym_auto] = ACTIONS(1245), + [anon_sym_register] = ACTIONS(1245), + [anon_sym_inline] = ACTIONS(1245), + [anon_sym___inline] = ACTIONS(1245), + [anon_sym___inline__] = ACTIONS(1245), + [anon_sym___forceinline] = ACTIONS(1245), + [anon_sym_thread_local] = ACTIONS(1245), + [anon_sym___thread] = ACTIONS(1245), + [anon_sym_const] = ACTIONS(1245), + [anon_sym_constexpr] = ACTIONS(1245), + [anon_sym_volatile] = ACTIONS(1245), + [anon_sym_restrict] = ACTIONS(1245), + [anon_sym___restrict__] = ACTIONS(1245), + [anon_sym__Atomic] = ACTIONS(1245), + [anon_sym__Noreturn] = ACTIONS(1245), + [anon_sym_noreturn] = ACTIONS(1245), + [anon_sym_alignas] = ACTIONS(1245), + [anon_sym__Alignas] = ACTIONS(1245), + [sym_primitive_type] = ACTIONS(1245), + [anon_sym_enum] = ACTIONS(1245), + [anon_sym_struct] = ACTIONS(1245), + [anon_sym_union] = ACTIONS(1245), + [anon_sym_if] = ACTIONS(1245), + [anon_sym_else] = ACTIONS(1245), + [anon_sym_switch] = ACTIONS(1245), + [anon_sym_case] = ACTIONS(1245), + [anon_sym_default] = ACTIONS(1245), + [anon_sym_while] = ACTIONS(1245), + [anon_sym_do] = ACTIONS(1245), + [anon_sym_for] = ACTIONS(1245), + [anon_sym_return] = ACTIONS(1245), + [anon_sym_break] = ACTIONS(1245), + [anon_sym_continue] = ACTIONS(1245), + [anon_sym_goto] = ACTIONS(1245), + [anon_sym___try] = ACTIONS(1245), + [anon_sym___leave] = ACTIONS(1245), + [anon_sym_DASH_DASH] = ACTIONS(1247), + [anon_sym_PLUS_PLUS] = ACTIONS(1247), + [anon_sym_sizeof] = ACTIONS(1245), + [anon_sym___alignof__] = ACTIONS(1245), + [anon_sym___alignof] = ACTIONS(1245), + [anon_sym__alignof] = ACTIONS(1245), + [anon_sym_alignof] = ACTIONS(1245), + [anon_sym__Alignof] = ACTIONS(1245), + [anon_sym_offsetof] = ACTIONS(1245), + [anon_sym__Generic] = ACTIONS(1245), + [anon_sym_asm] = ACTIONS(1245), + [anon_sym___asm__] = ACTIONS(1245), + [sym_number_literal] = ACTIONS(1247), + [anon_sym_L_SQUOTE] = ACTIONS(1247), + [anon_sym_u_SQUOTE] = ACTIONS(1247), + [anon_sym_U_SQUOTE] = ACTIONS(1247), + [anon_sym_u8_SQUOTE] = ACTIONS(1247), + [anon_sym_SQUOTE] = ACTIONS(1247), + [anon_sym_L_DQUOTE] = ACTIONS(1247), + [anon_sym_u_DQUOTE] = ACTIONS(1247), + [anon_sym_U_DQUOTE] = ACTIONS(1247), + [anon_sym_u8_DQUOTE] = ACTIONS(1247), + [anon_sym_DQUOTE] = ACTIONS(1247), + [sym_true] = ACTIONS(1245), + [sym_false] = ACTIONS(1245), + [anon_sym_NULL] = ACTIONS(1245), + [anon_sym_nullptr] = ACTIONS(1245), [sym_comment] = ACTIONS(3), }, - [146] = { - [sym_identifier] = ACTIONS(1253), - [aux_sym_preproc_include_token1] = ACTIONS(1253), - [aux_sym_preproc_def_token1] = ACTIONS(1253), - [aux_sym_preproc_if_token1] = ACTIONS(1253), - [aux_sym_preproc_if_token2] = ACTIONS(1253), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1253), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1253), - [sym_preproc_directive] = ACTIONS(1253), - [anon_sym_LPAREN2] = ACTIONS(1255), - [anon_sym_BANG] = ACTIONS(1255), - [anon_sym_TILDE] = ACTIONS(1255), - [anon_sym_DASH] = ACTIONS(1253), - [anon_sym_PLUS] = ACTIONS(1253), - [anon_sym_STAR] = ACTIONS(1255), - [anon_sym_AMP] = ACTIONS(1255), - [anon_sym_SEMI] = ACTIONS(1255), - [anon_sym___extension__] = ACTIONS(1253), - [anon_sym_typedef] = ACTIONS(1253), - [anon_sym_extern] = ACTIONS(1253), - [anon_sym___attribute__] = ACTIONS(1253), - [anon_sym___scanf] = ACTIONS(1253), - [anon_sym___printf] = ACTIONS(1253), - [anon_sym___read_mostly] = ACTIONS(1253), - [anon_sym___must_hold] = ACTIONS(1253), - [anon_sym___ro_after_init] = ACTIONS(1253), - [anon_sym___init] = ACTIONS(1253), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1255), - [anon_sym___declspec] = ACTIONS(1253), - [anon_sym___cdecl] = ACTIONS(1253), - [anon_sym___clrcall] = ACTIONS(1253), - [anon_sym___stdcall] = ACTIONS(1253), - [anon_sym___fastcall] = ACTIONS(1253), - [anon_sym___thiscall] = ACTIONS(1253), - [anon_sym___vectorcall] = ACTIONS(1253), - [anon_sym_LBRACE] = ACTIONS(1255), - [anon_sym_signed] = ACTIONS(1253), - [anon_sym_unsigned] = ACTIONS(1253), - [anon_sym_long] = ACTIONS(1253), - [anon_sym_short] = ACTIONS(1253), - [anon_sym_static] = ACTIONS(1253), - [anon_sym_auto] = ACTIONS(1253), - [anon_sym_register] = ACTIONS(1253), - [anon_sym_inline] = ACTIONS(1253), - [anon_sym___inline] = ACTIONS(1253), - [anon_sym___inline__] = ACTIONS(1253), - [anon_sym___forceinline] = ACTIONS(1253), - [anon_sym_thread_local] = ACTIONS(1253), - [anon_sym___thread] = ACTIONS(1253), - [anon_sym_const] = ACTIONS(1253), - [anon_sym_constexpr] = ACTIONS(1253), - [anon_sym_volatile] = ACTIONS(1253), - [anon_sym_restrict] = ACTIONS(1253), - [anon_sym___restrict__] = ACTIONS(1253), - [anon_sym__Atomic] = ACTIONS(1253), - [anon_sym__Noreturn] = ACTIONS(1253), - [anon_sym_noreturn] = ACTIONS(1253), - [anon_sym_alignas] = ACTIONS(1253), - [anon_sym__Alignas] = ACTIONS(1253), - [sym_primitive_type] = ACTIONS(1253), - [anon_sym_enum] = ACTIONS(1253), - [anon_sym_struct] = ACTIONS(1253), - [anon_sym_union] = ACTIONS(1253), - [anon_sym_if] = ACTIONS(1253), - [anon_sym_else] = ACTIONS(1253), - [anon_sym_switch] = ACTIONS(1253), - [anon_sym_case] = ACTIONS(1253), - [anon_sym_default] = ACTIONS(1253), - [anon_sym_while] = ACTIONS(1253), - [anon_sym_do] = ACTIONS(1253), - [anon_sym_for] = ACTIONS(1253), - [anon_sym_return] = ACTIONS(1253), - [anon_sym_break] = ACTIONS(1253), - [anon_sym_continue] = ACTIONS(1253), - [anon_sym_goto] = ACTIONS(1253), - [anon_sym___try] = ACTIONS(1253), - [anon_sym___leave] = ACTIONS(1253), - [anon_sym_DASH_DASH] = ACTIONS(1255), - [anon_sym_PLUS_PLUS] = ACTIONS(1255), - [anon_sym_sizeof] = ACTIONS(1253), - [anon_sym___alignof__] = ACTIONS(1253), - [anon_sym___alignof] = ACTIONS(1253), - [anon_sym__alignof] = ACTIONS(1253), - [anon_sym_alignof] = ACTIONS(1253), - [anon_sym__Alignof] = ACTIONS(1253), - [anon_sym_offsetof] = ACTIONS(1253), - [anon_sym__Generic] = ACTIONS(1253), - [anon_sym_asm] = ACTIONS(1253), - [anon_sym___asm__] = ACTIONS(1253), - [sym_number_literal] = ACTIONS(1255), - [anon_sym_L_SQUOTE] = ACTIONS(1255), - [anon_sym_u_SQUOTE] = ACTIONS(1255), - [anon_sym_U_SQUOTE] = ACTIONS(1255), - [anon_sym_u8_SQUOTE] = ACTIONS(1255), - [anon_sym_SQUOTE] = ACTIONS(1255), - [anon_sym_L_DQUOTE] = ACTIONS(1255), - [anon_sym_u_DQUOTE] = ACTIONS(1255), - [anon_sym_U_DQUOTE] = ACTIONS(1255), - [anon_sym_u8_DQUOTE] = ACTIONS(1255), - [anon_sym_DQUOTE] = ACTIONS(1255), - [sym_true] = ACTIONS(1253), - [sym_false] = ACTIONS(1253), - [anon_sym_NULL] = ACTIONS(1253), - [anon_sym_nullptr] = ACTIONS(1253), + [166] = { + [ts_builtin_sym_end] = ACTIONS(1259), + [sym_identifier] = ACTIONS(1257), + [aux_sym_preproc_include_token1] = ACTIONS(1257), + [aux_sym_preproc_def_token1] = ACTIONS(1257), + [aux_sym_preproc_if_token1] = ACTIONS(1257), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1257), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1257), + [sym_preproc_directive] = ACTIONS(1257), + [anon_sym_LPAREN2] = ACTIONS(1259), + [anon_sym_BANG] = ACTIONS(1259), + [anon_sym_TILDE] = ACTIONS(1259), + [anon_sym_DASH] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(1257), + [anon_sym_STAR] = ACTIONS(1259), + [anon_sym_AMP] = ACTIONS(1259), + [anon_sym_SEMI] = ACTIONS(1259), + [anon_sym___extension__] = ACTIONS(1257), + [anon_sym_typedef] = ACTIONS(1257), + [anon_sym_extern] = ACTIONS(1257), + [anon_sym___attribute__] = ACTIONS(1257), + [anon_sym___scanf] = ACTIONS(1257), + [anon_sym___printf] = ACTIONS(1257), + [anon_sym___read_mostly] = ACTIONS(1257), + [anon_sym___must_hold] = ACTIONS(1257), + [anon_sym___ro_after_init] = ACTIONS(1257), + [anon_sym___noreturn] = ACTIONS(1257), + [anon_sym___cold] = ACTIONS(1257), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1259), + [anon_sym___declspec] = ACTIONS(1257), + [anon_sym___init] = ACTIONS(1257), + [anon_sym___exit] = ACTIONS(1257), + [anon_sym___cdecl] = ACTIONS(1257), + [anon_sym___clrcall] = ACTIONS(1257), + [anon_sym___stdcall] = ACTIONS(1257), + [anon_sym___fastcall] = ACTIONS(1257), + [anon_sym___thiscall] = ACTIONS(1257), + [anon_sym___vectorcall] = ACTIONS(1257), + [anon_sym_LBRACE] = ACTIONS(1259), + [anon_sym_signed] = ACTIONS(1257), + [anon_sym_unsigned] = ACTIONS(1257), + [anon_sym_long] = ACTIONS(1257), + [anon_sym_short] = ACTIONS(1257), + [anon_sym_static] = ACTIONS(1257), + [anon_sym_auto] = ACTIONS(1257), + [anon_sym_register] = ACTIONS(1257), + [anon_sym_inline] = ACTIONS(1257), + [anon_sym___inline] = ACTIONS(1257), + [anon_sym___inline__] = ACTIONS(1257), + [anon_sym___forceinline] = ACTIONS(1257), + [anon_sym_thread_local] = ACTIONS(1257), + [anon_sym___thread] = ACTIONS(1257), + [anon_sym_const] = ACTIONS(1257), + [anon_sym_constexpr] = ACTIONS(1257), + [anon_sym_volatile] = ACTIONS(1257), + [anon_sym_restrict] = ACTIONS(1257), + [anon_sym___restrict__] = ACTIONS(1257), + [anon_sym__Atomic] = ACTIONS(1257), + [anon_sym__Noreturn] = ACTIONS(1257), + [anon_sym_noreturn] = ACTIONS(1257), + [anon_sym_alignas] = ACTIONS(1257), + [anon_sym__Alignas] = ACTIONS(1257), + [sym_primitive_type] = ACTIONS(1257), + [anon_sym_enum] = ACTIONS(1257), + [anon_sym_struct] = ACTIONS(1257), + [anon_sym_union] = ACTIONS(1257), + [anon_sym_if] = ACTIONS(1257), + [anon_sym_else] = ACTIONS(1257), + [anon_sym_switch] = ACTIONS(1257), + [anon_sym_case] = ACTIONS(1257), + [anon_sym_default] = ACTIONS(1257), + [anon_sym_while] = ACTIONS(1257), + [anon_sym_do] = ACTIONS(1257), + [anon_sym_for] = ACTIONS(1257), + [anon_sym_return] = ACTIONS(1257), + [anon_sym_break] = ACTIONS(1257), + [anon_sym_continue] = ACTIONS(1257), + [anon_sym_goto] = ACTIONS(1257), + [anon_sym___try] = ACTIONS(1257), + [anon_sym___leave] = ACTIONS(1257), + [anon_sym_DASH_DASH] = ACTIONS(1259), + [anon_sym_PLUS_PLUS] = ACTIONS(1259), + [anon_sym_sizeof] = ACTIONS(1257), + [anon_sym___alignof__] = ACTIONS(1257), + [anon_sym___alignof] = ACTIONS(1257), + [anon_sym__alignof] = ACTIONS(1257), + [anon_sym_alignof] = ACTIONS(1257), + [anon_sym__Alignof] = ACTIONS(1257), + [anon_sym_offsetof] = ACTIONS(1257), + [anon_sym__Generic] = ACTIONS(1257), + [anon_sym_asm] = ACTIONS(1257), + [anon_sym___asm__] = ACTIONS(1257), + [sym_number_literal] = ACTIONS(1259), + [anon_sym_L_SQUOTE] = ACTIONS(1259), + [anon_sym_u_SQUOTE] = ACTIONS(1259), + [anon_sym_U_SQUOTE] = ACTIONS(1259), + [anon_sym_u8_SQUOTE] = ACTIONS(1259), + [anon_sym_SQUOTE] = ACTIONS(1259), + [anon_sym_L_DQUOTE] = ACTIONS(1259), + [anon_sym_u_DQUOTE] = ACTIONS(1259), + [anon_sym_U_DQUOTE] = ACTIONS(1259), + [anon_sym_u8_DQUOTE] = ACTIONS(1259), + [anon_sym_DQUOTE] = ACTIONS(1259), + [sym_true] = ACTIONS(1257), + [sym_false] = ACTIONS(1257), + [anon_sym_NULL] = ACTIONS(1257), + [anon_sym_nullptr] = ACTIONS(1257), [sym_comment] = ACTIONS(3), }, - [147] = { - [sym_identifier] = ACTIONS(1145), - [aux_sym_preproc_include_token1] = ACTIONS(1145), - [aux_sym_preproc_def_token1] = ACTIONS(1145), - [aux_sym_preproc_if_token1] = ACTIONS(1145), - [aux_sym_preproc_if_token2] = ACTIONS(1145), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1145), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1145), - [sym_preproc_directive] = ACTIONS(1145), - [anon_sym_LPAREN2] = ACTIONS(1147), - [anon_sym_BANG] = ACTIONS(1147), - [anon_sym_TILDE] = ACTIONS(1147), - [anon_sym_DASH] = ACTIONS(1145), - [anon_sym_PLUS] = ACTIONS(1145), - [anon_sym_STAR] = ACTIONS(1147), - [anon_sym_AMP] = ACTIONS(1147), - [anon_sym_SEMI] = ACTIONS(1147), - [anon_sym___extension__] = ACTIONS(1145), - [anon_sym_typedef] = ACTIONS(1145), - [anon_sym_extern] = ACTIONS(1145), - [anon_sym___attribute__] = ACTIONS(1145), - [anon_sym___scanf] = ACTIONS(1145), - [anon_sym___printf] = ACTIONS(1145), - [anon_sym___read_mostly] = ACTIONS(1145), - [anon_sym___must_hold] = ACTIONS(1145), - [anon_sym___ro_after_init] = ACTIONS(1145), - [anon_sym___init] = ACTIONS(1145), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1147), - [anon_sym___declspec] = ACTIONS(1145), - [anon_sym___cdecl] = ACTIONS(1145), - [anon_sym___clrcall] = ACTIONS(1145), - [anon_sym___stdcall] = ACTIONS(1145), - [anon_sym___fastcall] = ACTIONS(1145), - [anon_sym___thiscall] = ACTIONS(1145), - [anon_sym___vectorcall] = ACTIONS(1145), - [anon_sym_LBRACE] = ACTIONS(1147), - [anon_sym_signed] = ACTIONS(1145), - [anon_sym_unsigned] = ACTIONS(1145), - [anon_sym_long] = ACTIONS(1145), - [anon_sym_short] = ACTIONS(1145), - [anon_sym_static] = ACTIONS(1145), - [anon_sym_auto] = ACTIONS(1145), - [anon_sym_register] = ACTIONS(1145), - [anon_sym_inline] = ACTIONS(1145), - [anon_sym___inline] = ACTIONS(1145), - [anon_sym___inline__] = ACTIONS(1145), - [anon_sym___forceinline] = ACTIONS(1145), - [anon_sym_thread_local] = ACTIONS(1145), - [anon_sym___thread] = ACTIONS(1145), - [anon_sym_const] = ACTIONS(1145), - [anon_sym_constexpr] = ACTIONS(1145), - [anon_sym_volatile] = ACTIONS(1145), - [anon_sym_restrict] = ACTIONS(1145), - [anon_sym___restrict__] = ACTIONS(1145), - [anon_sym__Atomic] = ACTIONS(1145), - [anon_sym__Noreturn] = ACTIONS(1145), - [anon_sym_noreturn] = ACTIONS(1145), - [anon_sym_alignas] = ACTIONS(1145), - [anon_sym__Alignas] = ACTIONS(1145), - [sym_primitive_type] = ACTIONS(1145), - [anon_sym_enum] = ACTIONS(1145), - [anon_sym_struct] = ACTIONS(1145), - [anon_sym_union] = ACTIONS(1145), - [anon_sym_if] = ACTIONS(1145), - [anon_sym_else] = ACTIONS(1145), - [anon_sym_switch] = ACTIONS(1145), - [anon_sym_case] = ACTIONS(1145), - [anon_sym_default] = ACTIONS(1145), - [anon_sym_while] = ACTIONS(1145), - [anon_sym_do] = ACTIONS(1145), - [anon_sym_for] = ACTIONS(1145), - [anon_sym_return] = ACTIONS(1145), - [anon_sym_break] = ACTIONS(1145), - [anon_sym_continue] = ACTIONS(1145), - [anon_sym_goto] = ACTIONS(1145), - [anon_sym___try] = ACTIONS(1145), - [anon_sym___leave] = ACTIONS(1145), - [anon_sym_DASH_DASH] = ACTIONS(1147), - [anon_sym_PLUS_PLUS] = ACTIONS(1147), - [anon_sym_sizeof] = ACTIONS(1145), - [anon_sym___alignof__] = ACTIONS(1145), - [anon_sym___alignof] = ACTIONS(1145), - [anon_sym__alignof] = ACTIONS(1145), - [anon_sym_alignof] = ACTIONS(1145), - [anon_sym__Alignof] = ACTIONS(1145), - [anon_sym_offsetof] = ACTIONS(1145), - [anon_sym__Generic] = ACTIONS(1145), - [anon_sym_asm] = ACTIONS(1145), - [anon_sym___asm__] = ACTIONS(1145), - [sym_number_literal] = ACTIONS(1147), - [anon_sym_L_SQUOTE] = ACTIONS(1147), - [anon_sym_u_SQUOTE] = ACTIONS(1147), - [anon_sym_U_SQUOTE] = ACTIONS(1147), - [anon_sym_u8_SQUOTE] = ACTIONS(1147), - [anon_sym_SQUOTE] = ACTIONS(1147), - [anon_sym_L_DQUOTE] = ACTIONS(1147), - [anon_sym_u_DQUOTE] = ACTIONS(1147), - [anon_sym_U_DQUOTE] = ACTIONS(1147), - [anon_sym_u8_DQUOTE] = ACTIONS(1147), - [anon_sym_DQUOTE] = ACTIONS(1147), - [sym_true] = ACTIONS(1145), - [sym_false] = ACTIONS(1145), - [anon_sym_NULL] = ACTIONS(1145), - [anon_sym_nullptr] = ACTIONS(1145), + [167] = { + [ts_builtin_sym_end] = ACTIONS(1275), + [sym_identifier] = ACTIONS(1273), + [aux_sym_preproc_include_token1] = ACTIONS(1273), + [aux_sym_preproc_def_token1] = ACTIONS(1273), + [aux_sym_preproc_if_token1] = ACTIONS(1273), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1273), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1273), + [sym_preproc_directive] = ACTIONS(1273), + [anon_sym_LPAREN2] = ACTIONS(1275), + [anon_sym_BANG] = ACTIONS(1275), + [anon_sym_TILDE] = ACTIONS(1275), + [anon_sym_DASH] = ACTIONS(1273), + [anon_sym_PLUS] = ACTIONS(1273), + [anon_sym_STAR] = ACTIONS(1275), + [anon_sym_AMP] = ACTIONS(1275), + [anon_sym_SEMI] = ACTIONS(1275), + [anon_sym___extension__] = ACTIONS(1273), + [anon_sym_typedef] = ACTIONS(1273), + [anon_sym_extern] = ACTIONS(1273), + [anon_sym___attribute__] = ACTIONS(1273), + [anon_sym___scanf] = ACTIONS(1273), + [anon_sym___printf] = ACTIONS(1273), + [anon_sym___read_mostly] = ACTIONS(1273), + [anon_sym___must_hold] = ACTIONS(1273), + [anon_sym___ro_after_init] = ACTIONS(1273), + [anon_sym___noreturn] = ACTIONS(1273), + [anon_sym___cold] = ACTIONS(1273), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1275), + [anon_sym___declspec] = ACTIONS(1273), + [anon_sym___init] = ACTIONS(1273), + [anon_sym___exit] = ACTIONS(1273), + [anon_sym___cdecl] = ACTIONS(1273), + [anon_sym___clrcall] = ACTIONS(1273), + [anon_sym___stdcall] = ACTIONS(1273), + [anon_sym___fastcall] = ACTIONS(1273), + [anon_sym___thiscall] = ACTIONS(1273), + [anon_sym___vectorcall] = ACTIONS(1273), + [anon_sym_LBRACE] = ACTIONS(1275), + [anon_sym_signed] = ACTIONS(1273), + [anon_sym_unsigned] = ACTIONS(1273), + [anon_sym_long] = ACTIONS(1273), + [anon_sym_short] = ACTIONS(1273), + [anon_sym_static] = ACTIONS(1273), + [anon_sym_auto] = ACTIONS(1273), + [anon_sym_register] = ACTIONS(1273), + [anon_sym_inline] = ACTIONS(1273), + [anon_sym___inline] = ACTIONS(1273), + [anon_sym___inline__] = ACTIONS(1273), + [anon_sym___forceinline] = ACTIONS(1273), + [anon_sym_thread_local] = ACTIONS(1273), + [anon_sym___thread] = ACTIONS(1273), + [anon_sym_const] = ACTIONS(1273), + [anon_sym_constexpr] = ACTIONS(1273), + [anon_sym_volatile] = ACTIONS(1273), + [anon_sym_restrict] = ACTIONS(1273), + [anon_sym___restrict__] = ACTIONS(1273), + [anon_sym__Atomic] = ACTIONS(1273), + [anon_sym__Noreturn] = ACTIONS(1273), + [anon_sym_noreturn] = ACTIONS(1273), + [anon_sym_alignas] = ACTIONS(1273), + [anon_sym__Alignas] = ACTIONS(1273), + [sym_primitive_type] = ACTIONS(1273), + [anon_sym_enum] = ACTIONS(1273), + [anon_sym_struct] = ACTIONS(1273), + [anon_sym_union] = ACTIONS(1273), + [anon_sym_if] = ACTIONS(1273), + [anon_sym_else] = ACTIONS(1273), + [anon_sym_switch] = ACTIONS(1273), + [anon_sym_case] = ACTIONS(1273), + [anon_sym_default] = ACTIONS(1273), + [anon_sym_while] = ACTIONS(1273), + [anon_sym_do] = ACTIONS(1273), + [anon_sym_for] = ACTIONS(1273), + [anon_sym_return] = ACTIONS(1273), + [anon_sym_break] = ACTIONS(1273), + [anon_sym_continue] = ACTIONS(1273), + [anon_sym_goto] = ACTIONS(1273), + [anon_sym___try] = ACTIONS(1273), + [anon_sym___leave] = ACTIONS(1273), + [anon_sym_DASH_DASH] = ACTIONS(1275), + [anon_sym_PLUS_PLUS] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1273), + [anon_sym___alignof__] = ACTIONS(1273), + [anon_sym___alignof] = ACTIONS(1273), + [anon_sym__alignof] = ACTIONS(1273), + [anon_sym_alignof] = ACTIONS(1273), + [anon_sym__Alignof] = ACTIONS(1273), + [anon_sym_offsetof] = ACTIONS(1273), + [anon_sym__Generic] = ACTIONS(1273), + [anon_sym_asm] = ACTIONS(1273), + [anon_sym___asm__] = ACTIONS(1273), + [sym_number_literal] = ACTIONS(1275), + [anon_sym_L_SQUOTE] = ACTIONS(1275), + [anon_sym_u_SQUOTE] = ACTIONS(1275), + [anon_sym_U_SQUOTE] = ACTIONS(1275), + [anon_sym_u8_SQUOTE] = ACTIONS(1275), + [anon_sym_SQUOTE] = ACTIONS(1275), + [anon_sym_L_DQUOTE] = ACTIONS(1275), + [anon_sym_u_DQUOTE] = ACTIONS(1275), + [anon_sym_U_DQUOTE] = ACTIONS(1275), + [anon_sym_u8_DQUOTE] = ACTIONS(1275), + [anon_sym_DQUOTE] = ACTIONS(1275), + [sym_true] = ACTIONS(1273), + [sym_false] = ACTIONS(1273), + [anon_sym_NULL] = ACTIONS(1273), + [anon_sym_nullptr] = ACTIONS(1273), [sym_comment] = ACTIONS(3), }, - [148] = { - [sym_identifier] = ACTIONS(1201), - [aux_sym_preproc_include_token1] = ACTIONS(1201), - [aux_sym_preproc_def_token1] = ACTIONS(1201), - [aux_sym_preproc_if_token1] = ACTIONS(1201), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1201), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1201), - [sym_preproc_directive] = ACTIONS(1201), - [anon_sym_LPAREN2] = ACTIONS(1203), - [anon_sym_BANG] = ACTIONS(1203), - [anon_sym_TILDE] = ACTIONS(1203), - [anon_sym_DASH] = ACTIONS(1201), - [anon_sym_PLUS] = ACTIONS(1201), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_AMP] = ACTIONS(1203), - [anon_sym_SEMI] = ACTIONS(1203), - [anon_sym___extension__] = ACTIONS(1201), - [anon_sym_typedef] = ACTIONS(1201), - [anon_sym_extern] = ACTIONS(1201), - [anon_sym___attribute__] = ACTIONS(1201), - [anon_sym___scanf] = ACTIONS(1201), - [anon_sym___printf] = ACTIONS(1201), - [anon_sym___read_mostly] = ACTIONS(1201), - [anon_sym___must_hold] = ACTIONS(1201), - [anon_sym___ro_after_init] = ACTIONS(1201), - [anon_sym___init] = ACTIONS(1201), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1203), - [anon_sym___declspec] = ACTIONS(1201), - [anon_sym___cdecl] = ACTIONS(1201), - [anon_sym___clrcall] = ACTIONS(1201), - [anon_sym___stdcall] = ACTIONS(1201), - [anon_sym___fastcall] = ACTIONS(1201), - [anon_sym___thiscall] = ACTIONS(1201), - [anon_sym___vectorcall] = ACTIONS(1201), - [anon_sym_LBRACE] = ACTIONS(1203), - [anon_sym_RBRACE] = ACTIONS(1203), - [anon_sym_signed] = ACTIONS(1201), - [anon_sym_unsigned] = ACTIONS(1201), - [anon_sym_long] = ACTIONS(1201), - [anon_sym_short] = ACTIONS(1201), - [anon_sym_static] = ACTIONS(1201), - [anon_sym_auto] = ACTIONS(1201), - [anon_sym_register] = ACTIONS(1201), - [anon_sym_inline] = ACTIONS(1201), - [anon_sym___inline] = ACTIONS(1201), - [anon_sym___inline__] = ACTIONS(1201), - [anon_sym___forceinline] = ACTIONS(1201), - [anon_sym_thread_local] = ACTIONS(1201), - [anon_sym___thread] = ACTIONS(1201), - [anon_sym_const] = ACTIONS(1201), - [anon_sym_constexpr] = ACTIONS(1201), - [anon_sym_volatile] = ACTIONS(1201), - [anon_sym_restrict] = ACTIONS(1201), - [anon_sym___restrict__] = ACTIONS(1201), - [anon_sym__Atomic] = ACTIONS(1201), - [anon_sym__Noreturn] = ACTIONS(1201), - [anon_sym_noreturn] = ACTIONS(1201), - [anon_sym_alignas] = ACTIONS(1201), - [anon_sym__Alignas] = ACTIONS(1201), - [sym_primitive_type] = ACTIONS(1201), - [anon_sym_enum] = ACTIONS(1201), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_union] = ACTIONS(1201), - [anon_sym_if] = ACTIONS(1201), - [anon_sym_else] = ACTIONS(1201), - [anon_sym_switch] = ACTIONS(1201), - [anon_sym_case] = ACTIONS(1201), - [anon_sym_default] = ACTIONS(1201), - [anon_sym_while] = ACTIONS(1201), - [anon_sym_do] = ACTIONS(1201), - [anon_sym_for] = ACTIONS(1201), - [anon_sym_return] = ACTIONS(1201), - [anon_sym_break] = ACTIONS(1201), - [anon_sym_continue] = ACTIONS(1201), - [anon_sym_goto] = ACTIONS(1201), - [anon_sym___try] = ACTIONS(1201), - [anon_sym___leave] = ACTIONS(1201), - [anon_sym_DASH_DASH] = ACTIONS(1203), - [anon_sym_PLUS_PLUS] = ACTIONS(1203), - [anon_sym_sizeof] = ACTIONS(1201), - [anon_sym___alignof__] = ACTIONS(1201), - [anon_sym___alignof] = ACTIONS(1201), - [anon_sym__alignof] = ACTIONS(1201), - [anon_sym_alignof] = ACTIONS(1201), - [anon_sym__Alignof] = ACTIONS(1201), - [anon_sym_offsetof] = ACTIONS(1201), - [anon_sym__Generic] = ACTIONS(1201), - [anon_sym_asm] = ACTIONS(1201), - [anon_sym___asm__] = ACTIONS(1201), - [sym_number_literal] = ACTIONS(1203), - [anon_sym_L_SQUOTE] = ACTIONS(1203), - [anon_sym_u_SQUOTE] = ACTIONS(1203), - [anon_sym_U_SQUOTE] = ACTIONS(1203), - [anon_sym_u8_SQUOTE] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1203), - [anon_sym_L_DQUOTE] = ACTIONS(1203), - [anon_sym_u_DQUOTE] = ACTIONS(1203), - [anon_sym_U_DQUOTE] = ACTIONS(1203), - [anon_sym_u8_DQUOTE] = ACTIONS(1203), - [anon_sym_DQUOTE] = ACTIONS(1203), - [sym_true] = ACTIONS(1201), - [sym_false] = ACTIONS(1201), - [anon_sym_NULL] = ACTIONS(1201), - [anon_sym_nullptr] = ACTIONS(1201), + [168] = { + [sym_identifier] = ACTIONS(1217), + [aux_sym_preproc_include_token1] = ACTIONS(1217), + [aux_sym_preproc_def_token1] = ACTIONS(1217), + [aux_sym_preproc_if_token1] = ACTIONS(1217), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1217), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1217), + [sym_preproc_directive] = ACTIONS(1217), + [anon_sym_LPAREN2] = ACTIONS(1219), + [anon_sym_BANG] = ACTIONS(1219), + [anon_sym_TILDE] = ACTIONS(1219), + [anon_sym_DASH] = ACTIONS(1217), + [anon_sym_PLUS] = ACTIONS(1217), + [anon_sym_STAR] = ACTIONS(1219), + [anon_sym_AMP] = ACTIONS(1219), + [anon_sym_SEMI] = ACTIONS(1219), + [anon_sym___extension__] = ACTIONS(1217), + [anon_sym_typedef] = ACTIONS(1217), + [anon_sym_extern] = ACTIONS(1217), + [anon_sym___attribute__] = ACTIONS(1217), + [anon_sym___scanf] = ACTIONS(1217), + [anon_sym___printf] = ACTIONS(1217), + [anon_sym___read_mostly] = ACTIONS(1217), + [anon_sym___must_hold] = ACTIONS(1217), + [anon_sym___ro_after_init] = ACTIONS(1217), + [anon_sym___noreturn] = ACTIONS(1217), + [anon_sym___cold] = ACTIONS(1217), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1219), + [anon_sym___declspec] = ACTIONS(1217), + [anon_sym___init] = ACTIONS(1217), + [anon_sym___exit] = ACTIONS(1217), + [anon_sym___cdecl] = ACTIONS(1217), + [anon_sym___clrcall] = ACTIONS(1217), + [anon_sym___stdcall] = ACTIONS(1217), + [anon_sym___fastcall] = ACTIONS(1217), + [anon_sym___thiscall] = ACTIONS(1217), + [anon_sym___vectorcall] = ACTIONS(1217), + [anon_sym_LBRACE] = ACTIONS(1219), + [anon_sym_RBRACE] = ACTIONS(1219), + [anon_sym_signed] = ACTIONS(1217), + [anon_sym_unsigned] = ACTIONS(1217), + [anon_sym_long] = ACTIONS(1217), + [anon_sym_short] = ACTIONS(1217), + [anon_sym_static] = ACTIONS(1217), + [anon_sym_auto] = ACTIONS(1217), + [anon_sym_register] = ACTIONS(1217), + [anon_sym_inline] = ACTIONS(1217), + [anon_sym___inline] = ACTIONS(1217), + [anon_sym___inline__] = ACTIONS(1217), + [anon_sym___forceinline] = ACTIONS(1217), + [anon_sym_thread_local] = ACTIONS(1217), + [anon_sym___thread] = ACTIONS(1217), + [anon_sym_const] = ACTIONS(1217), + [anon_sym_constexpr] = ACTIONS(1217), + [anon_sym_volatile] = ACTIONS(1217), + [anon_sym_restrict] = ACTIONS(1217), + [anon_sym___restrict__] = ACTIONS(1217), + [anon_sym__Atomic] = ACTIONS(1217), + [anon_sym__Noreturn] = ACTIONS(1217), + [anon_sym_noreturn] = ACTIONS(1217), + [anon_sym_alignas] = ACTIONS(1217), + [anon_sym__Alignas] = ACTIONS(1217), + [sym_primitive_type] = ACTIONS(1217), + [anon_sym_enum] = ACTIONS(1217), + [anon_sym_struct] = ACTIONS(1217), + [anon_sym_union] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1217), + [anon_sym_else] = ACTIONS(1217), + [anon_sym_switch] = ACTIONS(1217), + [anon_sym_case] = ACTIONS(1217), + [anon_sym_default] = ACTIONS(1217), + [anon_sym_while] = ACTIONS(1217), + [anon_sym_do] = ACTIONS(1217), + [anon_sym_for] = ACTIONS(1217), + [anon_sym_return] = ACTIONS(1217), + [anon_sym_break] = ACTIONS(1217), + [anon_sym_continue] = ACTIONS(1217), + [anon_sym_goto] = ACTIONS(1217), + [anon_sym___try] = ACTIONS(1217), + [anon_sym___leave] = ACTIONS(1217), + [anon_sym_DASH_DASH] = ACTIONS(1219), + [anon_sym_PLUS_PLUS] = ACTIONS(1219), + [anon_sym_sizeof] = ACTIONS(1217), + [anon_sym___alignof__] = ACTIONS(1217), + [anon_sym___alignof] = ACTIONS(1217), + [anon_sym__alignof] = ACTIONS(1217), + [anon_sym_alignof] = ACTIONS(1217), + [anon_sym__Alignof] = ACTIONS(1217), + [anon_sym_offsetof] = ACTIONS(1217), + [anon_sym__Generic] = ACTIONS(1217), + [anon_sym_asm] = ACTIONS(1217), + [anon_sym___asm__] = ACTIONS(1217), + [sym_number_literal] = ACTIONS(1219), + [anon_sym_L_SQUOTE] = ACTIONS(1219), + [anon_sym_u_SQUOTE] = ACTIONS(1219), + [anon_sym_U_SQUOTE] = ACTIONS(1219), + [anon_sym_u8_SQUOTE] = ACTIONS(1219), + [anon_sym_SQUOTE] = ACTIONS(1219), + [anon_sym_L_DQUOTE] = ACTIONS(1219), + [anon_sym_u_DQUOTE] = ACTIONS(1219), + [anon_sym_U_DQUOTE] = ACTIONS(1219), + [anon_sym_u8_DQUOTE] = ACTIONS(1219), + [anon_sym_DQUOTE] = ACTIONS(1219), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [anon_sym_NULL] = ACTIONS(1217), + [anon_sym_nullptr] = ACTIONS(1217), [sym_comment] = ACTIONS(3), }, - [149] = { + [169] = { + [ts_builtin_sym_end] = ACTIONS(1227), [sym_identifier] = ACTIONS(1225), [aux_sym_preproc_include_token1] = ACTIONS(1225), [aux_sym_preproc_def_token1] = ACTIONS(1225), @@ -32606,9 +35948,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___read_mostly] = ACTIONS(1225), [anon_sym___must_hold] = ACTIONS(1225), [anon_sym___ro_after_init] = ACTIONS(1225), - [anon_sym___init] = ACTIONS(1225), + [anon_sym___noreturn] = ACTIONS(1225), + [anon_sym___cold] = ACTIONS(1225), [anon_sym_LBRACK_LBRACK] = ACTIONS(1227), [anon_sym___declspec] = ACTIONS(1225), + [anon_sym___init] = ACTIONS(1225), + [anon_sym___exit] = ACTIONS(1225), [anon_sym___cdecl] = ACTIONS(1225), [anon_sym___clrcall] = ACTIONS(1225), [anon_sym___stdcall] = ACTIONS(1225), @@ -32616,7 +35961,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(1225), [anon_sym___vectorcall] = ACTIONS(1225), [anon_sym_LBRACE] = ACTIONS(1227), - [anon_sym_RBRACE] = ACTIONS(1227), [anon_sym_signed] = ACTIONS(1225), [anon_sym_unsigned] = ACTIONS(1225), [anon_sym_long] = ACTIONS(1225), @@ -32687,1703 +36031,1206 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1225), [sym_comment] = ACTIONS(3), }, - [150] = { - [ts_builtin_sym_end] = ACTIONS(1171), - [sym_identifier] = ACTIONS(1169), - [aux_sym_preproc_include_token1] = ACTIONS(1169), - [aux_sym_preproc_def_token1] = ACTIONS(1169), - [aux_sym_preproc_if_token1] = ACTIONS(1169), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1169), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1169), - [sym_preproc_directive] = ACTIONS(1169), - [anon_sym_LPAREN2] = ACTIONS(1171), - [anon_sym_BANG] = ACTIONS(1171), - [anon_sym_TILDE] = ACTIONS(1171), - [anon_sym_DASH] = ACTIONS(1169), - [anon_sym_PLUS] = ACTIONS(1169), - [anon_sym_STAR] = ACTIONS(1171), - [anon_sym_AMP] = ACTIONS(1171), - [anon_sym_SEMI] = ACTIONS(1171), - [anon_sym___extension__] = ACTIONS(1169), - [anon_sym_typedef] = ACTIONS(1169), - [anon_sym_extern] = ACTIONS(1169), - [anon_sym___attribute__] = ACTIONS(1169), - [anon_sym___scanf] = ACTIONS(1169), - [anon_sym___printf] = ACTIONS(1169), - [anon_sym___read_mostly] = ACTIONS(1169), - [anon_sym___must_hold] = ACTIONS(1169), - [anon_sym___ro_after_init] = ACTIONS(1169), - [anon_sym___init] = ACTIONS(1169), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1171), - [anon_sym___declspec] = ACTIONS(1169), - [anon_sym___cdecl] = ACTIONS(1169), - [anon_sym___clrcall] = ACTIONS(1169), - [anon_sym___stdcall] = ACTIONS(1169), - [anon_sym___fastcall] = ACTIONS(1169), - [anon_sym___thiscall] = ACTIONS(1169), - [anon_sym___vectorcall] = ACTIONS(1169), - [anon_sym_LBRACE] = ACTIONS(1171), - [anon_sym_signed] = ACTIONS(1169), - [anon_sym_unsigned] = ACTIONS(1169), - [anon_sym_long] = ACTIONS(1169), - [anon_sym_short] = ACTIONS(1169), - [anon_sym_static] = ACTIONS(1169), - [anon_sym_auto] = ACTIONS(1169), - [anon_sym_register] = ACTIONS(1169), - [anon_sym_inline] = ACTIONS(1169), - [anon_sym___inline] = ACTIONS(1169), - [anon_sym___inline__] = ACTIONS(1169), - [anon_sym___forceinline] = ACTIONS(1169), - [anon_sym_thread_local] = ACTIONS(1169), - [anon_sym___thread] = ACTIONS(1169), - [anon_sym_const] = ACTIONS(1169), - [anon_sym_constexpr] = ACTIONS(1169), - [anon_sym_volatile] = ACTIONS(1169), - [anon_sym_restrict] = ACTIONS(1169), - [anon_sym___restrict__] = ACTIONS(1169), - [anon_sym__Atomic] = ACTIONS(1169), - [anon_sym__Noreturn] = ACTIONS(1169), - [anon_sym_noreturn] = ACTIONS(1169), - [anon_sym_alignas] = ACTIONS(1169), - [anon_sym__Alignas] = ACTIONS(1169), - [sym_primitive_type] = ACTIONS(1169), - [anon_sym_enum] = ACTIONS(1169), - [anon_sym_struct] = ACTIONS(1169), - [anon_sym_union] = ACTIONS(1169), - [anon_sym_if] = ACTIONS(1169), - [anon_sym_else] = ACTIONS(1169), - [anon_sym_switch] = ACTIONS(1169), - [anon_sym_case] = ACTIONS(1169), - [anon_sym_default] = ACTIONS(1169), - [anon_sym_while] = ACTIONS(1169), - [anon_sym_do] = ACTIONS(1169), - [anon_sym_for] = ACTIONS(1169), - [anon_sym_return] = ACTIONS(1169), - [anon_sym_break] = ACTIONS(1169), - [anon_sym_continue] = ACTIONS(1169), - [anon_sym_goto] = ACTIONS(1169), - [anon_sym___try] = ACTIONS(1169), - [anon_sym___leave] = ACTIONS(1169), - [anon_sym_DASH_DASH] = ACTIONS(1171), - [anon_sym_PLUS_PLUS] = ACTIONS(1171), - [anon_sym_sizeof] = ACTIONS(1169), - [anon_sym___alignof__] = ACTIONS(1169), - [anon_sym___alignof] = ACTIONS(1169), - [anon_sym__alignof] = ACTIONS(1169), - [anon_sym_alignof] = ACTIONS(1169), - [anon_sym__Alignof] = ACTIONS(1169), - [anon_sym_offsetof] = ACTIONS(1169), - [anon_sym__Generic] = ACTIONS(1169), - [anon_sym_asm] = ACTIONS(1169), - [anon_sym___asm__] = ACTIONS(1169), - [sym_number_literal] = ACTIONS(1171), - [anon_sym_L_SQUOTE] = ACTIONS(1171), - [anon_sym_u_SQUOTE] = ACTIONS(1171), - [anon_sym_U_SQUOTE] = ACTIONS(1171), - [anon_sym_u8_SQUOTE] = ACTIONS(1171), - [anon_sym_SQUOTE] = ACTIONS(1171), - [anon_sym_L_DQUOTE] = ACTIONS(1171), - [anon_sym_u_DQUOTE] = ACTIONS(1171), - [anon_sym_U_DQUOTE] = ACTIONS(1171), - [anon_sym_u8_DQUOTE] = ACTIONS(1171), - [anon_sym_DQUOTE] = ACTIONS(1171), - [sym_true] = ACTIONS(1169), - [sym_false] = ACTIONS(1169), - [anon_sym_NULL] = ACTIONS(1169), - [anon_sym_nullptr] = ACTIONS(1169), - [sym_comment] = ACTIONS(3), - }, - [151] = { - [ts_builtin_sym_end] = ACTIONS(1247), - [sym_identifier] = ACTIONS(1245), - [aux_sym_preproc_include_token1] = ACTIONS(1245), - [aux_sym_preproc_def_token1] = ACTIONS(1245), - [aux_sym_preproc_if_token1] = ACTIONS(1245), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1245), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1245), - [sym_preproc_directive] = ACTIONS(1245), - [anon_sym_LPAREN2] = ACTIONS(1247), - [anon_sym_BANG] = ACTIONS(1247), - [anon_sym_TILDE] = ACTIONS(1247), - [anon_sym_DASH] = ACTIONS(1245), - [anon_sym_PLUS] = ACTIONS(1245), - [anon_sym_STAR] = ACTIONS(1247), - [anon_sym_AMP] = ACTIONS(1247), - [anon_sym_SEMI] = ACTIONS(1247), - [anon_sym___extension__] = ACTIONS(1245), - [anon_sym_typedef] = ACTIONS(1245), - [anon_sym_extern] = ACTIONS(1245), - [anon_sym___attribute__] = ACTIONS(1245), - [anon_sym___scanf] = ACTIONS(1245), - [anon_sym___printf] = ACTIONS(1245), - [anon_sym___read_mostly] = ACTIONS(1245), - [anon_sym___must_hold] = ACTIONS(1245), - [anon_sym___ro_after_init] = ACTIONS(1245), - [anon_sym___init] = ACTIONS(1245), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1247), - [anon_sym___declspec] = ACTIONS(1245), - [anon_sym___cdecl] = ACTIONS(1245), - [anon_sym___clrcall] = ACTIONS(1245), - [anon_sym___stdcall] = ACTIONS(1245), - [anon_sym___fastcall] = ACTIONS(1245), - [anon_sym___thiscall] = ACTIONS(1245), - [anon_sym___vectorcall] = ACTIONS(1245), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_signed] = ACTIONS(1245), - [anon_sym_unsigned] = ACTIONS(1245), - [anon_sym_long] = ACTIONS(1245), - [anon_sym_short] = ACTIONS(1245), - [anon_sym_static] = ACTIONS(1245), - [anon_sym_auto] = ACTIONS(1245), - [anon_sym_register] = ACTIONS(1245), - [anon_sym_inline] = ACTIONS(1245), - [anon_sym___inline] = ACTIONS(1245), - [anon_sym___inline__] = ACTIONS(1245), - [anon_sym___forceinline] = ACTIONS(1245), - [anon_sym_thread_local] = ACTIONS(1245), - [anon_sym___thread] = ACTIONS(1245), - [anon_sym_const] = ACTIONS(1245), - [anon_sym_constexpr] = ACTIONS(1245), - [anon_sym_volatile] = ACTIONS(1245), - [anon_sym_restrict] = ACTIONS(1245), - [anon_sym___restrict__] = ACTIONS(1245), - [anon_sym__Atomic] = ACTIONS(1245), - [anon_sym__Noreturn] = ACTIONS(1245), - [anon_sym_noreturn] = ACTIONS(1245), - [anon_sym_alignas] = ACTIONS(1245), - [anon_sym__Alignas] = ACTIONS(1245), - [sym_primitive_type] = ACTIONS(1245), - [anon_sym_enum] = ACTIONS(1245), - [anon_sym_struct] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1245), - [anon_sym_if] = ACTIONS(1245), - [anon_sym_else] = ACTIONS(1245), - [anon_sym_switch] = ACTIONS(1245), - [anon_sym_case] = ACTIONS(1245), - [anon_sym_default] = ACTIONS(1245), - [anon_sym_while] = ACTIONS(1245), - [anon_sym_do] = ACTIONS(1245), - [anon_sym_for] = ACTIONS(1245), - [anon_sym_return] = ACTIONS(1245), - [anon_sym_break] = ACTIONS(1245), - [anon_sym_continue] = ACTIONS(1245), - [anon_sym_goto] = ACTIONS(1245), - [anon_sym___try] = ACTIONS(1245), - [anon_sym___leave] = ACTIONS(1245), - [anon_sym_DASH_DASH] = ACTIONS(1247), - [anon_sym_PLUS_PLUS] = ACTIONS(1247), - [anon_sym_sizeof] = ACTIONS(1245), - [anon_sym___alignof__] = ACTIONS(1245), - [anon_sym___alignof] = ACTIONS(1245), - [anon_sym__alignof] = ACTIONS(1245), - [anon_sym_alignof] = ACTIONS(1245), - [anon_sym__Alignof] = ACTIONS(1245), - [anon_sym_offsetof] = ACTIONS(1245), - [anon_sym__Generic] = ACTIONS(1245), - [anon_sym_asm] = ACTIONS(1245), - [anon_sym___asm__] = ACTIONS(1245), - [sym_number_literal] = ACTIONS(1247), - [anon_sym_L_SQUOTE] = ACTIONS(1247), - [anon_sym_u_SQUOTE] = ACTIONS(1247), - [anon_sym_U_SQUOTE] = ACTIONS(1247), - [anon_sym_u8_SQUOTE] = ACTIONS(1247), - [anon_sym_SQUOTE] = ACTIONS(1247), - [anon_sym_L_DQUOTE] = ACTIONS(1247), - [anon_sym_u_DQUOTE] = ACTIONS(1247), - [anon_sym_U_DQUOTE] = ACTIONS(1247), - [anon_sym_u8_DQUOTE] = ACTIONS(1247), - [anon_sym_DQUOTE] = ACTIONS(1247), - [sym_true] = ACTIONS(1245), - [sym_false] = ACTIONS(1245), - [anon_sym_NULL] = ACTIONS(1245), - [anon_sym_nullptr] = ACTIONS(1245), - [sym_comment] = ACTIONS(3), - }, - [152] = { - [ts_builtin_sym_end] = ACTIONS(1183), - [sym_identifier] = ACTIONS(1181), - [aux_sym_preproc_include_token1] = ACTIONS(1181), - [aux_sym_preproc_def_token1] = ACTIONS(1181), - [aux_sym_preproc_if_token1] = ACTIONS(1181), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1181), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1181), - [sym_preproc_directive] = ACTIONS(1181), - [anon_sym_LPAREN2] = ACTIONS(1183), - [anon_sym_BANG] = ACTIONS(1183), - [anon_sym_TILDE] = ACTIONS(1183), - [anon_sym_DASH] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1181), - [anon_sym_STAR] = ACTIONS(1183), - [anon_sym_AMP] = ACTIONS(1183), - [anon_sym_SEMI] = ACTIONS(1183), - [anon_sym___extension__] = ACTIONS(1181), - [anon_sym_typedef] = ACTIONS(1181), - [anon_sym_extern] = ACTIONS(1181), - [anon_sym___attribute__] = ACTIONS(1181), - [anon_sym___scanf] = ACTIONS(1181), - [anon_sym___printf] = ACTIONS(1181), - [anon_sym___read_mostly] = ACTIONS(1181), - [anon_sym___must_hold] = ACTIONS(1181), - [anon_sym___ro_after_init] = ACTIONS(1181), - [anon_sym___init] = ACTIONS(1181), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1183), - [anon_sym___declspec] = ACTIONS(1181), - [anon_sym___cdecl] = ACTIONS(1181), - [anon_sym___clrcall] = ACTIONS(1181), - [anon_sym___stdcall] = ACTIONS(1181), - [anon_sym___fastcall] = ACTIONS(1181), - [anon_sym___thiscall] = ACTIONS(1181), - [anon_sym___vectorcall] = ACTIONS(1181), - [anon_sym_LBRACE] = ACTIONS(1183), - [anon_sym_signed] = ACTIONS(1181), - [anon_sym_unsigned] = ACTIONS(1181), - [anon_sym_long] = ACTIONS(1181), - [anon_sym_short] = ACTIONS(1181), - [anon_sym_static] = ACTIONS(1181), - [anon_sym_auto] = ACTIONS(1181), - [anon_sym_register] = ACTIONS(1181), - [anon_sym_inline] = ACTIONS(1181), - [anon_sym___inline] = ACTIONS(1181), - [anon_sym___inline__] = ACTIONS(1181), - [anon_sym___forceinline] = ACTIONS(1181), - [anon_sym_thread_local] = ACTIONS(1181), - [anon_sym___thread] = ACTIONS(1181), - [anon_sym_const] = ACTIONS(1181), - [anon_sym_constexpr] = ACTIONS(1181), - [anon_sym_volatile] = ACTIONS(1181), - [anon_sym_restrict] = ACTIONS(1181), - [anon_sym___restrict__] = ACTIONS(1181), - [anon_sym__Atomic] = ACTIONS(1181), - [anon_sym__Noreturn] = ACTIONS(1181), - [anon_sym_noreturn] = ACTIONS(1181), - [anon_sym_alignas] = ACTIONS(1181), - [anon_sym__Alignas] = ACTIONS(1181), - [sym_primitive_type] = ACTIONS(1181), - [anon_sym_enum] = ACTIONS(1181), - [anon_sym_struct] = ACTIONS(1181), - [anon_sym_union] = ACTIONS(1181), - [anon_sym_if] = ACTIONS(1181), - [anon_sym_else] = ACTIONS(1181), - [anon_sym_switch] = ACTIONS(1181), - [anon_sym_case] = ACTIONS(1181), - [anon_sym_default] = ACTIONS(1181), - [anon_sym_while] = ACTIONS(1181), - [anon_sym_do] = ACTIONS(1181), - [anon_sym_for] = ACTIONS(1181), - [anon_sym_return] = ACTIONS(1181), - [anon_sym_break] = ACTIONS(1181), - [anon_sym_continue] = ACTIONS(1181), - [anon_sym_goto] = ACTIONS(1181), - [anon_sym___try] = ACTIONS(1181), - [anon_sym___leave] = ACTIONS(1181), - [anon_sym_DASH_DASH] = ACTIONS(1183), - [anon_sym_PLUS_PLUS] = ACTIONS(1183), - [anon_sym_sizeof] = ACTIONS(1181), - [anon_sym___alignof__] = ACTIONS(1181), - [anon_sym___alignof] = ACTIONS(1181), - [anon_sym__alignof] = ACTIONS(1181), - [anon_sym_alignof] = ACTIONS(1181), - [anon_sym__Alignof] = ACTIONS(1181), - [anon_sym_offsetof] = ACTIONS(1181), - [anon_sym__Generic] = ACTIONS(1181), - [anon_sym_asm] = ACTIONS(1181), - [anon_sym___asm__] = ACTIONS(1181), - [sym_number_literal] = ACTIONS(1183), - [anon_sym_L_SQUOTE] = ACTIONS(1183), - [anon_sym_u_SQUOTE] = ACTIONS(1183), - [anon_sym_U_SQUOTE] = ACTIONS(1183), - [anon_sym_u8_SQUOTE] = ACTIONS(1183), - [anon_sym_SQUOTE] = ACTIONS(1183), - [anon_sym_L_DQUOTE] = ACTIONS(1183), - [anon_sym_u_DQUOTE] = ACTIONS(1183), - [anon_sym_U_DQUOTE] = ACTIONS(1183), - [anon_sym_u8_DQUOTE] = ACTIONS(1183), - [anon_sym_DQUOTE] = ACTIONS(1183), - [sym_true] = ACTIONS(1181), - [sym_false] = ACTIONS(1181), - [anon_sym_NULL] = ACTIONS(1181), - [anon_sym_nullptr] = ACTIONS(1181), - [sym_comment] = ACTIONS(3), - }, - [153] = { - [ts_builtin_sym_end] = ACTIONS(1207), - [sym_identifier] = ACTIONS(1205), - [aux_sym_preproc_include_token1] = ACTIONS(1205), - [aux_sym_preproc_def_token1] = ACTIONS(1205), - [aux_sym_preproc_if_token1] = ACTIONS(1205), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1205), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1205), - [sym_preproc_directive] = ACTIONS(1205), - [anon_sym_LPAREN2] = ACTIONS(1207), - [anon_sym_BANG] = ACTIONS(1207), - [anon_sym_TILDE] = ACTIONS(1207), - [anon_sym_DASH] = ACTIONS(1205), - [anon_sym_PLUS] = ACTIONS(1205), - [anon_sym_STAR] = ACTIONS(1207), - [anon_sym_AMP] = ACTIONS(1207), - [anon_sym_SEMI] = ACTIONS(1207), - [anon_sym___extension__] = ACTIONS(1205), - [anon_sym_typedef] = ACTIONS(1205), - [anon_sym_extern] = ACTIONS(1205), - [anon_sym___attribute__] = ACTIONS(1205), - [anon_sym___scanf] = ACTIONS(1205), - [anon_sym___printf] = ACTIONS(1205), - [anon_sym___read_mostly] = ACTIONS(1205), - [anon_sym___must_hold] = ACTIONS(1205), - [anon_sym___ro_after_init] = ACTIONS(1205), - [anon_sym___init] = ACTIONS(1205), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1207), - [anon_sym___declspec] = ACTIONS(1205), - [anon_sym___cdecl] = ACTIONS(1205), - [anon_sym___clrcall] = ACTIONS(1205), - [anon_sym___stdcall] = ACTIONS(1205), - [anon_sym___fastcall] = ACTIONS(1205), - [anon_sym___thiscall] = ACTIONS(1205), - [anon_sym___vectorcall] = ACTIONS(1205), - [anon_sym_LBRACE] = ACTIONS(1207), - [anon_sym_signed] = ACTIONS(1205), - [anon_sym_unsigned] = ACTIONS(1205), - [anon_sym_long] = ACTIONS(1205), - [anon_sym_short] = ACTIONS(1205), - [anon_sym_static] = ACTIONS(1205), - [anon_sym_auto] = ACTIONS(1205), - [anon_sym_register] = ACTIONS(1205), - [anon_sym_inline] = ACTIONS(1205), - [anon_sym___inline] = ACTIONS(1205), - [anon_sym___inline__] = ACTIONS(1205), - [anon_sym___forceinline] = ACTIONS(1205), - [anon_sym_thread_local] = ACTIONS(1205), - [anon_sym___thread] = ACTIONS(1205), - [anon_sym_const] = ACTIONS(1205), - [anon_sym_constexpr] = ACTIONS(1205), - [anon_sym_volatile] = ACTIONS(1205), - [anon_sym_restrict] = ACTIONS(1205), - [anon_sym___restrict__] = ACTIONS(1205), - [anon_sym__Atomic] = ACTIONS(1205), - [anon_sym__Noreturn] = ACTIONS(1205), - [anon_sym_noreturn] = ACTIONS(1205), - [anon_sym_alignas] = ACTIONS(1205), - [anon_sym__Alignas] = ACTIONS(1205), - [sym_primitive_type] = ACTIONS(1205), - [anon_sym_enum] = ACTIONS(1205), - [anon_sym_struct] = ACTIONS(1205), - [anon_sym_union] = ACTIONS(1205), - [anon_sym_if] = ACTIONS(1205), - [anon_sym_else] = ACTIONS(1205), - [anon_sym_switch] = ACTIONS(1205), - [anon_sym_case] = ACTIONS(1205), - [anon_sym_default] = ACTIONS(1205), - [anon_sym_while] = ACTIONS(1205), - [anon_sym_do] = ACTIONS(1205), - [anon_sym_for] = ACTIONS(1205), - [anon_sym_return] = ACTIONS(1205), - [anon_sym_break] = ACTIONS(1205), - [anon_sym_continue] = ACTIONS(1205), - [anon_sym_goto] = ACTIONS(1205), - [anon_sym___try] = ACTIONS(1205), - [anon_sym___leave] = ACTIONS(1205), - [anon_sym_DASH_DASH] = ACTIONS(1207), - [anon_sym_PLUS_PLUS] = ACTIONS(1207), - [anon_sym_sizeof] = ACTIONS(1205), - [anon_sym___alignof__] = ACTIONS(1205), - [anon_sym___alignof] = ACTIONS(1205), - [anon_sym__alignof] = ACTIONS(1205), - [anon_sym_alignof] = ACTIONS(1205), - [anon_sym__Alignof] = ACTIONS(1205), - [anon_sym_offsetof] = ACTIONS(1205), - [anon_sym__Generic] = ACTIONS(1205), - [anon_sym_asm] = ACTIONS(1205), - [anon_sym___asm__] = ACTIONS(1205), - [sym_number_literal] = ACTIONS(1207), - [anon_sym_L_SQUOTE] = ACTIONS(1207), - [anon_sym_u_SQUOTE] = ACTIONS(1207), - [anon_sym_U_SQUOTE] = ACTIONS(1207), - [anon_sym_u8_SQUOTE] = ACTIONS(1207), - [anon_sym_SQUOTE] = ACTIONS(1207), - [anon_sym_L_DQUOTE] = ACTIONS(1207), - [anon_sym_u_DQUOTE] = ACTIONS(1207), - [anon_sym_U_DQUOTE] = ACTIONS(1207), - [anon_sym_u8_DQUOTE] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1207), - [sym_true] = ACTIONS(1205), - [sym_false] = ACTIONS(1205), - [anon_sym_NULL] = ACTIONS(1205), - [anon_sym_nullptr] = ACTIONS(1205), - [sym_comment] = ACTIONS(3), - }, - [154] = { - [sym_identifier] = ACTIONS(1145), - [aux_sym_preproc_include_token1] = ACTIONS(1145), - [aux_sym_preproc_def_token1] = ACTIONS(1145), - [aux_sym_preproc_if_token1] = ACTIONS(1145), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1145), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1145), - [sym_preproc_directive] = ACTIONS(1145), - [anon_sym_LPAREN2] = ACTIONS(1147), - [anon_sym_BANG] = ACTIONS(1147), - [anon_sym_TILDE] = ACTIONS(1147), - [anon_sym_DASH] = ACTIONS(1145), - [anon_sym_PLUS] = ACTIONS(1145), - [anon_sym_STAR] = ACTIONS(1147), - [anon_sym_AMP] = ACTIONS(1147), - [anon_sym_SEMI] = ACTIONS(1147), - [anon_sym___extension__] = ACTIONS(1145), - [anon_sym_typedef] = ACTIONS(1145), - [anon_sym_extern] = ACTIONS(1145), - [anon_sym___attribute__] = ACTIONS(1145), - [anon_sym___scanf] = ACTIONS(1145), - [anon_sym___printf] = ACTIONS(1145), - [anon_sym___read_mostly] = ACTIONS(1145), - [anon_sym___must_hold] = ACTIONS(1145), - [anon_sym___ro_after_init] = ACTIONS(1145), - [anon_sym___init] = ACTIONS(1145), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1147), - [anon_sym___declspec] = ACTIONS(1145), - [anon_sym___cdecl] = ACTIONS(1145), - [anon_sym___clrcall] = ACTIONS(1145), - [anon_sym___stdcall] = ACTIONS(1145), - [anon_sym___fastcall] = ACTIONS(1145), - [anon_sym___thiscall] = ACTIONS(1145), - [anon_sym___vectorcall] = ACTIONS(1145), - [anon_sym_LBRACE] = ACTIONS(1147), - [anon_sym_RBRACE] = ACTIONS(1147), - [anon_sym_signed] = ACTIONS(1145), - [anon_sym_unsigned] = ACTIONS(1145), - [anon_sym_long] = ACTIONS(1145), - [anon_sym_short] = ACTIONS(1145), - [anon_sym_static] = ACTIONS(1145), - [anon_sym_auto] = ACTIONS(1145), - [anon_sym_register] = ACTIONS(1145), - [anon_sym_inline] = ACTIONS(1145), - [anon_sym___inline] = ACTIONS(1145), - [anon_sym___inline__] = ACTIONS(1145), - [anon_sym___forceinline] = ACTIONS(1145), - [anon_sym_thread_local] = ACTIONS(1145), - [anon_sym___thread] = ACTIONS(1145), - [anon_sym_const] = ACTIONS(1145), - [anon_sym_constexpr] = ACTIONS(1145), - [anon_sym_volatile] = ACTIONS(1145), - [anon_sym_restrict] = ACTIONS(1145), - [anon_sym___restrict__] = ACTIONS(1145), - [anon_sym__Atomic] = ACTIONS(1145), - [anon_sym__Noreturn] = ACTIONS(1145), - [anon_sym_noreturn] = ACTIONS(1145), - [anon_sym_alignas] = ACTIONS(1145), - [anon_sym__Alignas] = ACTIONS(1145), - [sym_primitive_type] = ACTIONS(1145), - [anon_sym_enum] = ACTIONS(1145), - [anon_sym_struct] = ACTIONS(1145), - [anon_sym_union] = ACTIONS(1145), - [anon_sym_if] = ACTIONS(1145), - [anon_sym_else] = ACTIONS(1145), - [anon_sym_switch] = ACTIONS(1145), - [anon_sym_case] = ACTIONS(1145), - [anon_sym_default] = ACTIONS(1145), - [anon_sym_while] = ACTIONS(1145), - [anon_sym_do] = ACTIONS(1145), - [anon_sym_for] = ACTIONS(1145), - [anon_sym_return] = ACTIONS(1145), - [anon_sym_break] = ACTIONS(1145), - [anon_sym_continue] = ACTIONS(1145), - [anon_sym_goto] = ACTIONS(1145), - [anon_sym___try] = ACTIONS(1145), - [anon_sym___leave] = ACTIONS(1145), - [anon_sym_DASH_DASH] = ACTIONS(1147), - [anon_sym_PLUS_PLUS] = ACTIONS(1147), - [anon_sym_sizeof] = ACTIONS(1145), - [anon_sym___alignof__] = ACTIONS(1145), - [anon_sym___alignof] = ACTIONS(1145), - [anon_sym__alignof] = ACTIONS(1145), - [anon_sym_alignof] = ACTIONS(1145), - [anon_sym__Alignof] = ACTIONS(1145), - [anon_sym_offsetof] = ACTIONS(1145), - [anon_sym__Generic] = ACTIONS(1145), - [anon_sym_asm] = ACTIONS(1145), - [anon_sym___asm__] = ACTIONS(1145), - [sym_number_literal] = ACTIONS(1147), - [anon_sym_L_SQUOTE] = ACTIONS(1147), - [anon_sym_u_SQUOTE] = ACTIONS(1147), - [anon_sym_U_SQUOTE] = ACTIONS(1147), - [anon_sym_u8_SQUOTE] = ACTIONS(1147), - [anon_sym_SQUOTE] = ACTIONS(1147), - [anon_sym_L_DQUOTE] = ACTIONS(1147), - [anon_sym_u_DQUOTE] = ACTIONS(1147), - [anon_sym_U_DQUOTE] = ACTIONS(1147), - [anon_sym_u8_DQUOTE] = ACTIONS(1147), - [anon_sym_DQUOTE] = ACTIONS(1147), - [sym_true] = ACTIONS(1145), - [sym_false] = ACTIONS(1145), - [anon_sym_NULL] = ACTIONS(1145), - [anon_sym_nullptr] = ACTIONS(1145), - [sym_comment] = ACTIONS(3), - }, - [155] = { - [ts_builtin_sym_end] = ACTIONS(1183), - [sym_identifier] = ACTIONS(1181), - [aux_sym_preproc_include_token1] = ACTIONS(1181), - [aux_sym_preproc_def_token1] = ACTIONS(1181), - [aux_sym_preproc_if_token1] = ACTIONS(1181), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1181), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1181), - [sym_preproc_directive] = ACTIONS(1181), - [anon_sym_LPAREN2] = ACTIONS(1183), - [anon_sym_BANG] = ACTIONS(1183), - [anon_sym_TILDE] = ACTIONS(1183), - [anon_sym_DASH] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1181), - [anon_sym_STAR] = ACTIONS(1183), - [anon_sym_AMP] = ACTIONS(1183), - [anon_sym_SEMI] = ACTIONS(1183), - [anon_sym___extension__] = ACTIONS(1181), - [anon_sym_typedef] = ACTIONS(1181), - [anon_sym_extern] = ACTIONS(1181), - [anon_sym___attribute__] = ACTIONS(1181), - [anon_sym___scanf] = ACTIONS(1181), - [anon_sym___printf] = ACTIONS(1181), - [anon_sym___read_mostly] = ACTIONS(1181), - [anon_sym___must_hold] = ACTIONS(1181), - [anon_sym___ro_after_init] = ACTIONS(1181), - [anon_sym___init] = ACTIONS(1181), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1183), - [anon_sym___declspec] = ACTIONS(1181), - [anon_sym___cdecl] = ACTIONS(1181), - [anon_sym___clrcall] = ACTIONS(1181), - [anon_sym___stdcall] = ACTIONS(1181), - [anon_sym___fastcall] = ACTIONS(1181), - [anon_sym___thiscall] = ACTIONS(1181), - [anon_sym___vectorcall] = ACTIONS(1181), - [anon_sym_LBRACE] = ACTIONS(1183), - [anon_sym_signed] = ACTIONS(1181), - [anon_sym_unsigned] = ACTIONS(1181), - [anon_sym_long] = ACTIONS(1181), - [anon_sym_short] = ACTIONS(1181), - [anon_sym_static] = ACTIONS(1181), - [anon_sym_auto] = ACTIONS(1181), - [anon_sym_register] = ACTIONS(1181), - [anon_sym_inline] = ACTIONS(1181), - [anon_sym___inline] = ACTIONS(1181), - [anon_sym___inline__] = ACTIONS(1181), - [anon_sym___forceinline] = ACTIONS(1181), - [anon_sym_thread_local] = ACTIONS(1181), - [anon_sym___thread] = ACTIONS(1181), - [anon_sym_const] = ACTIONS(1181), - [anon_sym_constexpr] = ACTIONS(1181), - [anon_sym_volatile] = ACTIONS(1181), - [anon_sym_restrict] = ACTIONS(1181), - [anon_sym___restrict__] = ACTIONS(1181), - [anon_sym__Atomic] = ACTIONS(1181), - [anon_sym__Noreturn] = ACTIONS(1181), - [anon_sym_noreturn] = ACTIONS(1181), - [anon_sym_alignas] = ACTIONS(1181), - [anon_sym__Alignas] = ACTIONS(1181), - [sym_primitive_type] = ACTIONS(1181), - [anon_sym_enum] = ACTIONS(1181), - [anon_sym_struct] = ACTIONS(1181), - [anon_sym_union] = ACTIONS(1181), - [anon_sym_if] = ACTIONS(1181), - [anon_sym_else] = ACTIONS(1181), - [anon_sym_switch] = ACTIONS(1181), - [anon_sym_case] = ACTIONS(1181), - [anon_sym_default] = ACTIONS(1181), - [anon_sym_while] = ACTIONS(1181), - [anon_sym_do] = ACTIONS(1181), - [anon_sym_for] = ACTIONS(1181), - [anon_sym_return] = ACTIONS(1181), - [anon_sym_break] = ACTIONS(1181), - [anon_sym_continue] = ACTIONS(1181), - [anon_sym_goto] = ACTIONS(1181), - [anon_sym___try] = ACTIONS(1181), - [anon_sym___leave] = ACTIONS(1181), - [anon_sym_DASH_DASH] = ACTIONS(1183), - [anon_sym_PLUS_PLUS] = ACTIONS(1183), - [anon_sym_sizeof] = ACTIONS(1181), - [anon_sym___alignof__] = ACTIONS(1181), - [anon_sym___alignof] = ACTIONS(1181), - [anon_sym__alignof] = ACTIONS(1181), - [anon_sym_alignof] = ACTIONS(1181), - [anon_sym__Alignof] = ACTIONS(1181), - [anon_sym_offsetof] = ACTIONS(1181), - [anon_sym__Generic] = ACTIONS(1181), - [anon_sym_asm] = ACTIONS(1181), - [anon_sym___asm__] = ACTIONS(1181), - [sym_number_literal] = ACTIONS(1183), - [anon_sym_L_SQUOTE] = ACTIONS(1183), - [anon_sym_u_SQUOTE] = ACTIONS(1183), - [anon_sym_U_SQUOTE] = ACTIONS(1183), - [anon_sym_u8_SQUOTE] = ACTIONS(1183), - [anon_sym_SQUOTE] = ACTIONS(1183), - [anon_sym_L_DQUOTE] = ACTIONS(1183), - [anon_sym_u_DQUOTE] = ACTIONS(1183), - [anon_sym_U_DQUOTE] = ACTIONS(1183), - [anon_sym_u8_DQUOTE] = ACTIONS(1183), - [anon_sym_DQUOTE] = ACTIONS(1183), - [sym_true] = ACTIONS(1181), - [sym_false] = ACTIONS(1181), - [anon_sym_NULL] = ACTIONS(1181), - [anon_sym_nullptr] = ACTIONS(1181), - [sym_comment] = ACTIONS(3), - }, - [156] = { - [ts_builtin_sym_end] = ACTIONS(1211), - [sym_identifier] = ACTIONS(1209), - [aux_sym_preproc_include_token1] = ACTIONS(1209), - [aux_sym_preproc_def_token1] = ACTIONS(1209), - [aux_sym_preproc_if_token1] = ACTIONS(1209), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1209), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1209), - [sym_preproc_directive] = ACTIONS(1209), - [anon_sym_LPAREN2] = ACTIONS(1211), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_TILDE] = ACTIONS(1211), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_PLUS] = ACTIONS(1209), - [anon_sym_STAR] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1211), - [anon_sym_SEMI] = ACTIONS(1211), - [anon_sym___extension__] = ACTIONS(1209), - [anon_sym_typedef] = ACTIONS(1209), - [anon_sym_extern] = ACTIONS(1209), - [anon_sym___attribute__] = ACTIONS(1209), - [anon_sym___scanf] = ACTIONS(1209), - [anon_sym___printf] = ACTIONS(1209), - [anon_sym___read_mostly] = ACTIONS(1209), - [anon_sym___must_hold] = ACTIONS(1209), - [anon_sym___ro_after_init] = ACTIONS(1209), - [anon_sym___init] = ACTIONS(1209), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1211), - [anon_sym___declspec] = ACTIONS(1209), - [anon_sym___cdecl] = ACTIONS(1209), - [anon_sym___clrcall] = ACTIONS(1209), - [anon_sym___stdcall] = ACTIONS(1209), - [anon_sym___fastcall] = ACTIONS(1209), - [anon_sym___thiscall] = ACTIONS(1209), - [anon_sym___vectorcall] = ACTIONS(1209), - [anon_sym_LBRACE] = ACTIONS(1211), - [anon_sym_signed] = ACTIONS(1209), - [anon_sym_unsigned] = ACTIONS(1209), - [anon_sym_long] = ACTIONS(1209), - [anon_sym_short] = ACTIONS(1209), - [anon_sym_static] = ACTIONS(1209), - [anon_sym_auto] = ACTIONS(1209), - [anon_sym_register] = ACTIONS(1209), - [anon_sym_inline] = ACTIONS(1209), - [anon_sym___inline] = ACTIONS(1209), - [anon_sym___inline__] = ACTIONS(1209), - [anon_sym___forceinline] = ACTIONS(1209), - [anon_sym_thread_local] = ACTIONS(1209), - [anon_sym___thread] = ACTIONS(1209), - [anon_sym_const] = ACTIONS(1209), - [anon_sym_constexpr] = ACTIONS(1209), - [anon_sym_volatile] = ACTIONS(1209), - [anon_sym_restrict] = ACTIONS(1209), - [anon_sym___restrict__] = ACTIONS(1209), - [anon_sym__Atomic] = ACTIONS(1209), - [anon_sym__Noreturn] = ACTIONS(1209), - [anon_sym_noreturn] = ACTIONS(1209), - [anon_sym_alignas] = ACTIONS(1209), - [anon_sym__Alignas] = ACTIONS(1209), - [sym_primitive_type] = ACTIONS(1209), - [anon_sym_enum] = ACTIONS(1209), - [anon_sym_struct] = ACTIONS(1209), - [anon_sym_union] = ACTIONS(1209), - [anon_sym_if] = ACTIONS(1209), - [anon_sym_else] = ACTIONS(1209), - [anon_sym_switch] = ACTIONS(1209), - [anon_sym_case] = ACTIONS(1209), - [anon_sym_default] = ACTIONS(1209), - [anon_sym_while] = ACTIONS(1209), - [anon_sym_do] = ACTIONS(1209), - [anon_sym_for] = ACTIONS(1209), - [anon_sym_return] = ACTIONS(1209), - [anon_sym_break] = ACTIONS(1209), - [anon_sym_continue] = ACTIONS(1209), - [anon_sym_goto] = ACTIONS(1209), - [anon_sym___try] = ACTIONS(1209), - [anon_sym___leave] = ACTIONS(1209), - [anon_sym_DASH_DASH] = ACTIONS(1211), - [anon_sym_PLUS_PLUS] = ACTIONS(1211), - [anon_sym_sizeof] = ACTIONS(1209), - [anon_sym___alignof__] = ACTIONS(1209), - [anon_sym___alignof] = ACTIONS(1209), - [anon_sym__alignof] = ACTIONS(1209), - [anon_sym_alignof] = ACTIONS(1209), - [anon_sym__Alignof] = ACTIONS(1209), - [anon_sym_offsetof] = ACTIONS(1209), - [anon_sym__Generic] = ACTIONS(1209), - [anon_sym_asm] = ACTIONS(1209), - [anon_sym___asm__] = ACTIONS(1209), - [sym_number_literal] = ACTIONS(1211), - [anon_sym_L_SQUOTE] = ACTIONS(1211), - [anon_sym_u_SQUOTE] = ACTIONS(1211), - [anon_sym_U_SQUOTE] = ACTIONS(1211), - [anon_sym_u8_SQUOTE] = ACTIONS(1211), - [anon_sym_SQUOTE] = ACTIONS(1211), - [anon_sym_L_DQUOTE] = ACTIONS(1211), - [anon_sym_u_DQUOTE] = ACTIONS(1211), - [anon_sym_U_DQUOTE] = ACTIONS(1211), - [anon_sym_u8_DQUOTE] = ACTIONS(1211), - [anon_sym_DQUOTE] = ACTIONS(1211), - [sym_true] = ACTIONS(1209), - [sym_false] = ACTIONS(1209), - [anon_sym_NULL] = ACTIONS(1209), - [anon_sym_nullptr] = ACTIONS(1209), - [sym_comment] = ACTIONS(3), - }, - [157] = { - [ts_builtin_sym_end] = ACTIONS(1215), - [sym_identifier] = ACTIONS(1213), - [aux_sym_preproc_include_token1] = ACTIONS(1213), - [aux_sym_preproc_def_token1] = ACTIONS(1213), - [aux_sym_preproc_if_token1] = ACTIONS(1213), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1213), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1213), - [sym_preproc_directive] = ACTIONS(1213), - [anon_sym_LPAREN2] = ACTIONS(1215), - [anon_sym_BANG] = ACTIONS(1215), - [anon_sym_TILDE] = ACTIONS(1215), - [anon_sym_DASH] = ACTIONS(1213), - [anon_sym_PLUS] = ACTIONS(1213), - [anon_sym_STAR] = ACTIONS(1215), - [anon_sym_AMP] = ACTIONS(1215), - [anon_sym_SEMI] = ACTIONS(1215), - [anon_sym___extension__] = ACTIONS(1213), - [anon_sym_typedef] = ACTIONS(1213), - [anon_sym_extern] = ACTIONS(1213), - [anon_sym___attribute__] = ACTIONS(1213), - [anon_sym___scanf] = ACTIONS(1213), - [anon_sym___printf] = ACTIONS(1213), - [anon_sym___read_mostly] = ACTIONS(1213), - [anon_sym___must_hold] = ACTIONS(1213), - [anon_sym___ro_after_init] = ACTIONS(1213), - [anon_sym___init] = ACTIONS(1213), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1215), - [anon_sym___declspec] = ACTIONS(1213), - [anon_sym___cdecl] = ACTIONS(1213), - [anon_sym___clrcall] = ACTIONS(1213), - [anon_sym___stdcall] = ACTIONS(1213), - [anon_sym___fastcall] = ACTIONS(1213), - [anon_sym___thiscall] = ACTIONS(1213), - [anon_sym___vectorcall] = ACTIONS(1213), - [anon_sym_LBRACE] = ACTIONS(1215), - [anon_sym_signed] = ACTIONS(1213), - [anon_sym_unsigned] = ACTIONS(1213), - [anon_sym_long] = ACTIONS(1213), - [anon_sym_short] = ACTIONS(1213), - [anon_sym_static] = ACTIONS(1213), - [anon_sym_auto] = ACTIONS(1213), - [anon_sym_register] = ACTIONS(1213), - [anon_sym_inline] = ACTIONS(1213), - [anon_sym___inline] = ACTIONS(1213), - [anon_sym___inline__] = ACTIONS(1213), - [anon_sym___forceinline] = ACTIONS(1213), - [anon_sym_thread_local] = ACTIONS(1213), - [anon_sym___thread] = ACTIONS(1213), - [anon_sym_const] = ACTIONS(1213), - [anon_sym_constexpr] = ACTIONS(1213), - [anon_sym_volatile] = ACTIONS(1213), - [anon_sym_restrict] = ACTIONS(1213), - [anon_sym___restrict__] = ACTIONS(1213), - [anon_sym__Atomic] = ACTIONS(1213), - [anon_sym__Noreturn] = ACTIONS(1213), - [anon_sym_noreturn] = ACTIONS(1213), - [anon_sym_alignas] = ACTIONS(1213), - [anon_sym__Alignas] = ACTIONS(1213), - [sym_primitive_type] = ACTIONS(1213), - [anon_sym_enum] = ACTIONS(1213), - [anon_sym_struct] = ACTIONS(1213), - [anon_sym_union] = ACTIONS(1213), - [anon_sym_if] = ACTIONS(1213), - [anon_sym_else] = ACTIONS(1213), - [anon_sym_switch] = ACTIONS(1213), - [anon_sym_case] = ACTIONS(1213), - [anon_sym_default] = ACTIONS(1213), - [anon_sym_while] = ACTIONS(1213), - [anon_sym_do] = ACTIONS(1213), - [anon_sym_for] = ACTIONS(1213), - [anon_sym_return] = ACTIONS(1213), - [anon_sym_break] = ACTIONS(1213), - [anon_sym_continue] = ACTIONS(1213), - [anon_sym_goto] = ACTIONS(1213), - [anon_sym___try] = ACTIONS(1213), - [anon_sym___leave] = ACTIONS(1213), - [anon_sym_DASH_DASH] = ACTIONS(1215), - [anon_sym_PLUS_PLUS] = ACTIONS(1215), - [anon_sym_sizeof] = ACTIONS(1213), - [anon_sym___alignof__] = ACTIONS(1213), - [anon_sym___alignof] = ACTIONS(1213), - [anon_sym__alignof] = ACTIONS(1213), - [anon_sym_alignof] = ACTIONS(1213), - [anon_sym__Alignof] = ACTIONS(1213), - [anon_sym_offsetof] = ACTIONS(1213), - [anon_sym__Generic] = ACTIONS(1213), - [anon_sym_asm] = ACTIONS(1213), - [anon_sym___asm__] = ACTIONS(1213), - [sym_number_literal] = ACTIONS(1215), - [anon_sym_L_SQUOTE] = ACTIONS(1215), - [anon_sym_u_SQUOTE] = ACTIONS(1215), - [anon_sym_U_SQUOTE] = ACTIONS(1215), - [anon_sym_u8_SQUOTE] = ACTIONS(1215), - [anon_sym_SQUOTE] = ACTIONS(1215), - [anon_sym_L_DQUOTE] = ACTIONS(1215), - [anon_sym_u_DQUOTE] = ACTIONS(1215), - [anon_sym_U_DQUOTE] = ACTIONS(1215), - [anon_sym_u8_DQUOTE] = ACTIONS(1215), - [anon_sym_DQUOTE] = ACTIONS(1215), - [sym_true] = ACTIONS(1213), - [sym_false] = ACTIONS(1213), - [anon_sym_NULL] = ACTIONS(1213), - [anon_sym_nullptr] = ACTIONS(1213), + [170] = { + [sym_identifier] = ACTIONS(1273), + [aux_sym_preproc_include_token1] = ACTIONS(1273), + [aux_sym_preproc_def_token1] = ACTIONS(1273), + [aux_sym_preproc_if_token1] = ACTIONS(1273), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1273), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1273), + [sym_preproc_directive] = ACTIONS(1273), + [anon_sym_LPAREN2] = ACTIONS(1275), + [anon_sym_BANG] = ACTIONS(1275), + [anon_sym_TILDE] = ACTIONS(1275), + [anon_sym_DASH] = ACTIONS(1273), + [anon_sym_PLUS] = ACTIONS(1273), + [anon_sym_STAR] = ACTIONS(1275), + [anon_sym_AMP] = ACTIONS(1275), + [anon_sym_SEMI] = ACTIONS(1275), + [anon_sym___extension__] = ACTIONS(1273), + [anon_sym_typedef] = ACTIONS(1273), + [anon_sym_extern] = ACTIONS(1273), + [anon_sym___attribute__] = ACTIONS(1273), + [anon_sym___scanf] = ACTIONS(1273), + [anon_sym___printf] = ACTIONS(1273), + [anon_sym___read_mostly] = ACTIONS(1273), + [anon_sym___must_hold] = ACTIONS(1273), + [anon_sym___ro_after_init] = ACTIONS(1273), + [anon_sym___noreturn] = ACTIONS(1273), + [anon_sym___cold] = ACTIONS(1273), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1275), + [anon_sym___declspec] = ACTIONS(1273), + [anon_sym___init] = ACTIONS(1273), + [anon_sym___exit] = ACTIONS(1273), + [anon_sym___cdecl] = ACTIONS(1273), + [anon_sym___clrcall] = ACTIONS(1273), + [anon_sym___stdcall] = ACTIONS(1273), + [anon_sym___fastcall] = ACTIONS(1273), + [anon_sym___thiscall] = ACTIONS(1273), + [anon_sym___vectorcall] = ACTIONS(1273), + [anon_sym_LBRACE] = ACTIONS(1275), + [anon_sym_RBRACE] = ACTIONS(1275), + [anon_sym_signed] = ACTIONS(1273), + [anon_sym_unsigned] = ACTIONS(1273), + [anon_sym_long] = ACTIONS(1273), + [anon_sym_short] = ACTIONS(1273), + [anon_sym_static] = ACTIONS(1273), + [anon_sym_auto] = ACTIONS(1273), + [anon_sym_register] = ACTIONS(1273), + [anon_sym_inline] = ACTIONS(1273), + [anon_sym___inline] = ACTIONS(1273), + [anon_sym___inline__] = ACTIONS(1273), + [anon_sym___forceinline] = ACTIONS(1273), + [anon_sym_thread_local] = ACTIONS(1273), + [anon_sym___thread] = ACTIONS(1273), + [anon_sym_const] = ACTIONS(1273), + [anon_sym_constexpr] = ACTIONS(1273), + [anon_sym_volatile] = ACTIONS(1273), + [anon_sym_restrict] = ACTIONS(1273), + [anon_sym___restrict__] = ACTIONS(1273), + [anon_sym__Atomic] = ACTIONS(1273), + [anon_sym__Noreturn] = ACTIONS(1273), + [anon_sym_noreturn] = ACTIONS(1273), + [anon_sym_alignas] = ACTIONS(1273), + [anon_sym__Alignas] = ACTIONS(1273), + [sym_primitive_type] = ACTIONS(1273), + [anon_sym_enum] = ACTIONS(1273), + [anon_sym_struct] = ACTIONS(1273), + [anon_sym_union] = ACTIONS(1273), + [anon_sym_if] = ACTIONS(1273), + [anon_sym_else] = ACTIONS(1273), + [anon_sym_switch] = ACTIONS(1273), + [anon_sym_case] = ACTIONS(1273), + [anon_sym_default] = ACTIONS(1273), + [anon_sym_while] = ACTIONS(1273), + [anon_sym_do] = ACTIONS(1273), + [anon_sym_for] = ACTIONS(1273), + [anon_sym_return] = ACTIONS(1273), + [anon_sym_break] = ACTIONS(1273), + [anon_sym_continue] = ACTIONS(1273), + [anon_sym_goto] = ACTIONS(1273), + [anon_sym___try] = ACTIONS(1273), + [anon_sym___leave] = ACTIONS(1273), + [anon_sym_DASH_DASH] = ACTIONS(1275), + [anon_sym_PLUS_PLUS] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1273), + [anon_sym___alignof__] = ACTIONS(1273), + [anon_sym___alignof] = ACTIONS(1273), + [anon_sym__alignof] = ACTIONS(1273), + [anon_sym_alignof] = ACTIONS(1273), + [anon_sym__Alignof] = ACTIONS(1273), + [anon_sym_offsetof] = ACTIONS(1273), + [anon_sym__Generic] = ACTIONS(1273), + [anon_sym_asm] = ACTIONS(1273), + [anon_sym___asm__] = ACTIONS(1273), + [sym_number_literal] = ACTIONS(1275), + [anon_sym_L_SQUOTE] = ACTIONS(1275), + [anon_sym_u_SQUOTE] = ACTIONS(1275), + [anon_sym_U_SQUOTE] = ACTIONS(1275), + [anon_sym_u8_SQUOTE] = ACTIONS(1275), + [anon_sym_SQUOTE] = ACTIONS(1275), + [anon_sym_L_DQUOTE] = ACTIONS(1275), + [anon_sym_u_DQUOTE] = ACTIONS(1275), + [anon_sym_U_DQUOTE] = ACTIONS(1275), + [anon_sym_u8_DQUOTE] = ACTIONS(1275), + [anon_sym_DQUOTE] = ACTIONS(1275), + [sym_true] = ACTIONS(1273), + [sym_false] = ACTIONS(1273), + [anon_sym_NULL] = ACTIONS(1273), + [anon_sym_nullptr] = ACTIONS(1273), [sym_comment] = ACTIONS(3), }, - [158] = { - [sym_identifier] = ACTIONS(1181), - [aux_sym_preproc_include_token1] = ACTIONS(1181), - [aux_sym_preproc_def_token1] = ACTIONS(1181), - [aux_sym_preproc_if_token1] = ACTIONS(1181), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1181), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1181), - [sym_preproc_directive] = ACTIONS(1181), - [anon_sym_LPAREN2] = ACTIONS(1183), - [anon_sym_BANG] = ACTIONS(1183), - [anon_sym_TILDE] = ACTIONS(1183), - [anon_sym_DASH] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1181), - [anon_sym_STAR] = ACTIONS(1183), - [anon_sym_AMP] = ACTIONS(1183), - [anon_sym_SEMI] = ACTIONS(1183), - [anon_sym___extension__] = ACTIONS(1181), - [anon_sym_typedef] = ACTIONS(1181), - [anon_sym_extern] = ACTIONS(1181), - [anon_sym___attribute__] = ACTIONS(1181), - [anon_sym___scanf] = ACTIONS(1181), - [anon_sym___printf] = ACTIONS(1181), - [anon_sym___read_mostly] = ACTIONS(1181), - [anon_sym___must_hold] = ACTIONS(1181), - [anon_sym___ro_after_init] = ACTIONS(1181), - [anon_sym___init] = ACTIONS(1181), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1183), - [anon_sym___declspec] = ACTIONS(1181), - [anon_sym___cdecl] = ACTIONS(1181), - [anon_sym___clrcall] = ACTIONS(1181), - [anon_sym___stdcall] = ACTIONS(1181), - [anon_sym___fastcall] = ACTIONS(1181), - [anon_sym___thiscall] = ACTIONS(1181), - [anon_sym___vectorcall] = ACTIONS(1181), - [anon_sym_LBRACE] = ACTIONS(1183), - [anon_sym_RBRACE] = ACTIONS(1183), - [anon_sym_signed] = ACTIONS(1181), - [anon_sym_unsigned] = ACTIONS(1181), - [anon_sym_long] = ACTIONS(1181), - [anon_sym_short] = ACTIONS(1181), - [anon_sym_static] = ACTIONS(1181), - [anon_sym_auto] = ACTIONS(1181), - [anon_sym_register] = ACTIONS(1181), - [anon_sym_inline] = ACTIONS(1181), - [anon_sym___inline] = ACTIONS(1181), - [anon_sym___inline__] = ACTIONS(1181), - [anon_sym___forceinline] = ACTIONS(1181), - [anon_sym_thread_local] = ACTIONS(1181), - [anon_sym___thread] = ACTIONS(1181), - [anon_sym_const] = ACTIONS(1181), - [anon_sym_constexpr] = ACTIONS(1181), - [anon_sym_volatile] = ACTIONS(1181), - [anon_sym_restrict] = ACTIONS(1181), - [anon_sym___restrict__] = ACTIONS(1181), - [anon_sym__Atomic] = ACTIONS(1181), - [anon_sym__Noreturn] = ACTIONS(1181), - [anon_sym_noreturn] = ACTIONS(1181), - [anon_sym_alignas] = ACTIONS(1181), - [anon_sym__Alignas] = ACTIONS(1181), - [sym_primitive_type] = ACTIONS(1181), - [anon_sym_enum] = ACTIONS(1181), - [anon_sym_struct] = ACTIONS(1181), - [anon_sym_union] = ACTIONS(1181), - [anon_sym_if] = ACTIONS(1181), - [anon_sym_else] = ACTIONS(1181), - [anon_sym_switch] = ACTIONS(1181), - [anon_sym_case] = ACTIONS(1181), - [anon_sym_default] = ACTIONS(1181), - [anon_sym_while] = ACTIONS(1181), - [anon_sym_do] = ACTIONS(1181), - [anon_sym_for] = ACTIONS(1181), - [anon_sym_return] = ACTIONS(1181), - [anon_sym_break] = ACTIONS(1181), - [anon_sym_continue] = ACTIONS(1181), - [anon_sym_goto] = ACTIONS(1181), - [anon_sym___try] = ACTIONS(1181), - [anon_sym___leave] = ACTIONS(1181), - [anon_sym_DASH_DASH] = ACTIONS(1183), - [anon_sym_PLUS_PLUS] = ACTIONS(1183), - [anon_sym_sizeof] = ACTIONS(1181), - [anon_sym___alignof__] = ACTIONS(1181), - [anon_sym___alignof] = ACTIONS(1181), - [anon_sym__alignof] = ACTIONS(1181), - [anon_sym_alignof] = ACTIONS(1181), - [anon_sym__Alignof] = ACTIONS(1181), - [anon_sym_offsetof] = ACTIONS(1181), - [anon_sym__Generic] = ACTIONS(1181), - [anon_sym_asm] = ACTIONS(1181), - [anon_sym___asm__] = ACTIONS(1181), - [sym_number_literal] = ACTIONS(1183), - [anon_sym_L_SQUOTE] = ACTIONS(1183), - [anon_sym_u_SQUOTE] = ACTIONS(1183), - [anon_sym_U_SQUOTE] = ACTIONS(1183), - [anon_sym_u8_SQUOTE] = ACTIONS(1183), - [anon_sym_SQUOTE] = ACTIONS(1183), - [anon_sym_L_DQUOTE] = ACTIONS(1183), - [anon_sym_u_DQUOTE] = ACTIONS(1183), - [anon_sym_U_DQUOTE] = ACTIONS(1183), - [anon_sym_u8_DQUOTE] = ACTIONS(1183), - [anon_sym_DQUOTE] = ACTIONS(1183), - [sym_true] = ACTIONS(1181), - [sym_false] = ACTIONS(1181), - [anon_sym_NULL] = ACTIONS(1181), - [anon_sym_nullptr] = ACTIONS(1181), + [171] = { + [sym_identifier] = ACTIONS(1193), + [aux_sym_preproc_include_token1] = ACTIONS(1193), + [aux_sym_preproc_def_token1] = ACTIONS(1193), + [aux_sym_preproc_if_token1] = ACTIONS(1193), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1193), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1193), + [sym_preproc_directive] = ACTIONS(1193), + [anon_sym_LPAREN2] = ACTIONS(1195), + [anon_sym_BANG] = ACTIONS(1195), + [anon_sym_TILDE] = ACTIONS(1195), + [anon_sym_DASH] = ACTIONS(1193), + [anon_sym_PLUS] = ACTIONS(1193), + [anon_sym_STAR] = ACTIONS(1195), + [anon_sym_AMP] = ACTIONS(1195), + [anon_sym_SEMI] = ACTIONS(1195), + [anon_sym___extension__] = ACTIONS(1193), + [anon_sym_typedef] = ACTIONS(1193), + [anon_sym_extern] = ACTIONS(1193), + [anon_sym___attribute__] = ACTIONS(1193), + [anon_sym___scanf] = ACTIONS(1193), + [anon_sym___printf] = ACTIONS(1193), + [anon_sym___read_mostly] = ACTIONS(1193), + [anon_sym___must_hold] = ACTIONS(1193), + [anon_sym___ro_after_init] = ACTIONS(1193), + [anon_sym___noreturn] = ACTIONS(1193), + [anon_sym___cold] = ACTIONS(1193), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1195), + [anon_sym___declspec] = ACTIONS(1193), + [anon_sym___init] = ACTIONS(1193), + [anon_sym___exit] = ACTIONS(1193), + [anon_sym___cdecl] = ACTIONS(1193), + [anon_sym___clrcall] = ACTIONS(1193), + [anon_sym___stdcall] = ACTIONS(1193), + [anon_sym___fastcall] = ACTIONS(1193), + [anon_sym___thiscall] = ACTIONS(1193), + [anon_sym___vectorcall] = ACTIONS(1193), + [anon_sym_LBRACE] = ACTIONS(1195), + [anon_sym_RBRACE] = ACTIONS(1195), + [anon_sym_signed] = ACTIONS(1193), + [anon_sym_unsigned] = ACTIONS(1193), + [anon_sym_long] = ACTIONS(1193), + [anon_sym_short] = ACTIONS(1193), + [anon_sym_static] = ACTIONS(1193), + [anon_sym_auto] = ACTIONS(1193), + [anon_sym_register] = ACTIONS(1193), + [anon_sym_inline] = ACTIONS(1193), + [anon_sym___inline] = ACTIONS(1193), + [anon_sym___inline__] = ACTIONS(1193), + [anon_sym___forceinline] = ACTIONS(1193), + [anon_sym_thread_local] = ACTIONS(1193), + [anon_sym___thread] = ACTIONS(1193), + [anon_sym_const] = ACTIONS(1193), + [anon_sym_constexpr] = ACTIONS(1193), + [anon_sym_volatile] = ACTIONS(1193), + [anon_sym_restrict] = ACTIONS(1193), + [anon_sym___restrict__] = ACTIONS(1193), + [anon_sym__Atomic] = ACTIONS(1193), + [anon_sym__Noreturn] = ACTIONS(1193), + [anon_sym_noreturn] = ACTIONS(1193), + [anon_sym_alignas] = ACTIONS(1193), + [anon_sym__Alignas] = ACTIONS(1193), + [sym_primitive_type] = ACTIONS(1193), + [anon_sym_enum] = ACTIONS(1193), + [anon_sym_struct] = ACTIONS(1193), + [anon_sym_union] = ACTIONS(1193), + [anon_sym_if] = ACTIONS(1193), + [anon_sym_else] = ACTIONS(1193), + [anon_sym_switch] = ACTIONS(1193), + [anon_sym_case] = ACTIONS(1193), + [anon_sym_default] = ACTIONS(1193), + [anon_sym_while] = ACTIONS(1193), + [anon_sym_do] = ACTIONS(1193), + [anon_sym_for] = ACTIONS(1193), + [anon_sym_return] = ACTIONS(1193), + [anon_sym_break] = ACTIONS(1193), + [anon_sym_continue] = ACTIONS(1193), + [anon_sym_goto] = ACTIONS(1193), + [anon_sym___try] = ACTIONS(1193), + [anon_sym___leave] = ACTIONS(1193), + [anon_sym_DASH_DASH] = ACTIONS(1195), + [anon_sym_PLUS_PLUS] = ACTIONS(1195), + [anon_sym_sizeof] = ACTIONS(1193), + [anon_sym___alignof__] = ACTIONS(1193), + [anon_sym___alignof] = ACTIONS(1193), + [anon_sym__alignof] = ACTIONS(1193), + [anon_sym_alignof] = ACTIONS(1193), + [anon_sym__Alignof] = ACTIONS(1193), + [anon_sym_offsetof] = ACTIONS(1193), + [anon_sym__Generic] = ACTIONS(1193), + [anon_sym_asm] = ACTIONS(1193), + [anon_sym___asm__] = ACTIONS(1193), + [sym_number_literal] = ACTIONS(1195), + [anon_sym_L_SQUOTE] = ACTIONS(1195), + [anon_sym_u_SQUOTE] = ACTIONS(1195), + [anon_sym_U_SQUOTE] = ACTIONS(1195), + [anon_sym_u8_SQUOTE] = ACTIONS(1195), + [anon_sym_SQUOTE] = ACTIONS(1195), + [anon_sym_L_DQUOTE] = ACTIONS(1195), + [anon_sym_u_DQUOTE] = ACTIONS(1195), + [anon_sym_U_DQUOTE] = ACTIONS(1195), + [anon_sym_u8_DQUOTE] = ACTIONS(1195), + [anon_sym_DQUOTE] = ACTIONS(1195), + [sym_true] = ACTIONS(1193), + [sym_false] = ACTIONS(1193), + [anon_sym_NULL] = ACTIONS(1193), + [anon_sym_nullptr] = ACTIONS(1193), [sym_comment] = ACTIONS(3), }, - [159] = { - [sym_identifier] = ACTIONS(1181), - [aux_sym_preproc_include_token1] = ACTIONS(1181), - [aux_sym_preproc_def_token1] = ACTIONS(1181), - [aux_sym_preproc_if_token1] = ACTIONS(1181), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1181), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1181), - [sym_preproc_directive] = ACTIONS(1181), - [anon_sym_LPAREN2] = ACTIONS(1183), - [anon_sym_BANG] = ACTIONS(1183), - [anon_sym_TILDE] = ACTIONS(1183), - [anon_sym_DASH] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1181), - [anon_sym_STAR] = ACTIONS(1183), - [anon_sym_AMP] = ACTIONS(1183), - [anon_sym_SEMI] = ACTIONS(1183), - [anon_sym___extension__] = ACTIONS(1181), - [anon_sym_typedef] = ACTIONS(1181), - [anon_sym_extern] = ACTIONS(1181), - [anon_sym___attribute__] = ACTIONS(1181), - [anon_sym___scanf] = ACTIONS(1181), - [anon_sym___printf] = ACTIONS(1181), - [anon_sym___read_mostly] = ACTIONS(1181), - [anon_sym___must_hold] = ACTIONS(1181), - [anon_sym___ro_after_init] = ACTIONS(1181), - [anon_sym___init] = ACTIONS(1181), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1183), - [anon_sym___declspec] = ACTIONS(1181), - [anon_sym___cdecl] = ACTIONS(1181), - [anon_sym___clrcall] = ACTIONS(1181), - [anon_sym___stdcall] = ACTIONS(1181), - [anon_sym___fastcall] = ACTIONS(1181), - [anon_sym___thiscall] = ACTIONS(1181), - [anon_sym___vectorcall] = ACTIONS(1181), - [anon_sym_LBRACE] = ACTIONS(1183), - [anon_sym_RBRACE] = ACTIONS(1183), - [anon_sym_signed] = ACTIONS(1181), - [anon_sym_unsigned] = ACTIONS(1181), - [anon_sym_long] = ACTIONS(1181), - [anon_sym_short] = ACTIONS(1181), - [anon_sym_static] = ACTIONS(1181), - [anon_sym_auto] = ACTIONS(1181), - [anon_sym_register] = ACTIONS(1181), - [anon_sym_inline] = ACTIONS(1181), - [anon_sym___inline] = ACTIONS(1181), - [anon_sym___inline__] = ACTIONS(1181), - [anon_sym___forceinline] = ACTIONS(1181), - [anon_sym_thread_local] = ACTIONS(1181), - [anon_sym___thread] = ACTIONS(1181), - [anon_sym_const] = ACTIONS(1181), - [anon_sym_constexpr] = ACTIONS(1181), - [anon_sym_volatile] = ACTIONS(1181), - [anon_sym_restrict] = ACTIONS(1181), - [anon_sym___restrict__] = ACTIONS(1181), - [anon_sym__Atomic] = ACTIONS(1181), - [anon_sym__Noreturn] = ACTIONS(1181), - [anon_sym_noreturn] = ACTIONS(1181), - [anon_sym_alignas] = ACTIONS(1181), - [anon_sym__Alignas] = ACTIONS(1181), - [sym_primitive_type] = ACTIONS(1181), - [anon_sym_enum] = ACTIONS(1181), - [anon_sym_struct] = ACTIONS(1181), - [anon_sym_union] = ACTIONS(1181), - [anon_sym_if] = ACTIONS(1181), - [anon_sym_else] = ACTIONS(1181), - [anon_sym_switch] = ACTIONS(1181), - [anon_sym_case] = ACTIONS(1181), - [anon_sym_default] = ACTIONS(1181), - [anon_sym_while] = ACTIONS(1181), - [anon_sym_do] = ACTIONS(1181), - [anon_sym_for] = ACTIONS(1181), - [anon_sym_return] = ACTIONS(1181), - [anon_sym_break] = ACTIONS(1181), - [anon_sym_continue] = ACTIONS(1181), - [anon_sym_goto] = ACTIONS(1181), - [anon_sym___try] = ACTIONS(1181), - [anon_sym___leave] = ACTIONS(1181), - [anon_sym_DASH_DASH] = ACTIONS(1183), - [anon_sym_PLUS_PLUS] = ACTIONS(1183), - [anon_sym_sizeof] = ACTIONS(1181), - [anon_sym___alignof__] = ACTIONS(1181), - [anon_sym___alignof] = ACTIONS(1181), - [anon_sym__alignof] = ACTIONS(1181), - [anon_sym_alignof] = ACTIONS(1181), - [anon_sym__Alignof] = ACTIONS(1181), - [anon_sym_offsetof] = ACTIONS(1181), - [anon_sym__Generic] = ACTIONS(1181), - [anon_sym_asm] = ACTIONS(1181), - [anon_sym___asm__] = ACTIONS(1181), - [sym_number_literal] = ACTIONS(1183), - [anon_sym_L_SQUOTE] = ACTIONS(1183), - [anon_sym_u_SQUOTE] = ACTIONS(1183), - [anon_sym_U_SQUOTE] = ACTIONS(1183), - [anon_sym_u8_SQUOTE] = ACTIONS(1183), - [anon_sym_SQUOTE] = ACTIONS(1183), - [anon_sym_L_DQUOTE] = ACTIONS(1183), - [anon_sym_u_DQUOTE] = ACTIONS(1183), - [anon_sym_U_DQUOTE] = ACTIONS(1183), - [anon_sym_u8_DQUOTE] = ACTIONS(1183), - [anon_sym_DQUOTE] = ACTIONS(1183), - [sym_true] = ACTIONS(1181), - [sym_false] = ACTIONS(1181), - [anon_sym_NULL] = ACTIONS(1181), - [anon_sym_nullptr] = ACTIONS(1181), + [172] = { + [sym_identifier] = ACTIONS(1197), + [aux_sym_preproc_include_token1] = ACTIONS(1197), + [aux_sym_preproc_def_token1] = ACTIONS(1197), + [aux_sym_preproc_if_token1] = ACTIONS(1197), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1197), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1197), + [sym_preproc_directive] = ACTIONS(1197), + [anon_sym_LPAREN2] = ACTIONS(1199), + [anon_sym_BANG] = ACTIONS(1199), + [anon_sym_TILDE] = ACTIONS(1199), + [anon_sym_DASH] = ACTIONS(1197), + [anon_sym_PLUS] = ACTIONS(1197), + [anon_sym_STAR] = ACTIONS(1199), + [anon_sym_AMP] = ACTIONS(1199), + [anon_sym_SEMI] = ACTIONS(1199), + [anon_sym___extension__] = ACTIONS(1197), + [anon_sym_typedef] = ACTIONS(1197), + [anon_sym_extern] = ACTIONS(1197), + [anon_sym___attribute__] = ACTIONS(1197), + [anon_sym___scanf] = ACTIONS(1197), + [anon_sym___printf] = ACTIONS(1197), + [anon_sym___read_mostly] = ACTIONS(1197), + [anon_sym___must_hold] = ACTIONS(1197), + [anon_sym___ro_after_init] = ACTIONS(1197), + [anon_sym___noreturn] = ACTIONS(1197), + [anon_sym___cold] = ACTIONS(1197), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1199), + [anon_sym___declspec] = ACTIONS(1197), + [anon_sym___init] = ACTIONS(1197), + [anon_sym___exit] = ACTIONS(1197), + [anon_sym___cdecl] = ACTIONS(1197), + [anon_sym___clrcall] = ACTIONS(1197), + [anon_sym___stdcall] = ACTIONS(1197), + [anon_sym___fastcall] = ACTIONS(1197), + [anon_sym___thiscall] = ACTIONS(1197), + [anon_sym___vectorcall] = ACTIONS(1197), + [anon_sym_LBRACE] = ACTIONS(1199), + [anon_sym_RBRACE] = ACTIONS(1199), + [anon_sym_signed] = ACTIONS(1197), + [anon_sym_unsigned] = ACTIONS(1197), + [anon_sym_long] = ACTIONS(1197), + [anon_sym_short] = ACTIONS(1197), + [anon_sym_static] = ACTIONS(1197), + [anon_sym_auto] = ACTIONS(1197), + [anon_sym_register] = ACTIONS(1197), + [anon_sym_inline] = ACTIONS(1197), + [anon_sym___inline] = ACTIONS(1197), + [anon_sym___inline__] = ACTIONS(1197), + [anon_sym___forceinline] = ACTIONS(1197), + [anon_sym_thread_local] = ACTIONS(1197), + [anon_sym___thread] = ACTIONS(1197), + [anon_sym_const] = ACTIONS(1197), + [anon_sym_constexpr] = ACTIONS(1197), + [anon_sym_volatile] = ACTIONS(1197), + [anon_sym_restrict] = ACTIONS(1197), + [anon_sym___restrict__] = ACTIONS(1197), + [anon_sym__Atomic] = ACTIONS(1197), + [anon_sym__Noreturn] = ACTIONS(1197), + [anon_sym_noreturn] = ACTIONS(1197), + [anon_sym_alignas] = ACTIONS(1197), + [anon_sym__Alignas] = ACTIONS(1197), + [sym_primitive_type] = ACTIONS(1197), + [anon_sym_enum] = ACTIONS(1197), + [anon_sym_struct] = ACTIONS(1197), + [anon_sym_union] = ACTIONS(1197), + [anon_sym_if] = ACTIONS(1197), + [anon_sym_else] = ACTIONS(1197), + [anon_sym_switch] = ACTIONS(1197), + [anon_sym_case] = ACTIONS(1197), + [anon_sym_default] = ACTIONS(1197), + [anon_sym_while] = ACTIONS(1197), + [anon_sym_do] = ACTIONS(1197), + [anon_sym_for] = ACTIONS(1197), + [anon_sym_return] = ACTIONS(1197), + [anon_sym_break] = ACTIONS(1197), + [anon_sym_continue] = ACTIONS(1197), + [anon_sym_goto] = ACTIONS(1197), + [anon_sym___try] = ACTIONS(1197), + [anon_sym___leave] = ACTIONS(1197), + [anon_sym_DASH_DASH] = ACTIONS(1199), + [anon_sym_PLUS_PLUS] = ACTIONS(1199), + [anon_sym_sizeof] = ACTIONS(1197), + [anon_sym___alignof__] = ACTIONS(1197), + [anon_sym___alignof] = ACTIONS(1197), + [anon_sym__alignof] = ACTIONS(1197), + [anon_sym_alignof] = ACTIONS(1197), + [anon_sym__Alignof] = ACTIONS(1197), + [anon_sym_offsetof] = ACTIONS(1197), + [anon_sym__Generic] = ACTIONS(1197), + [anon_sym_asm] = ACTIONS(1197), + [anon_sym___asm__] = ACTIONS(1197), + [sym_number_literal] = ACTIONS(1199), + [anon_sym_L_SQUOTE] = ACTIONS(1199), + [anon_sym_u_SQUOTE] = ACTIONS(1199), + [anon_sym_U_SQUOTE] = ACTIONS(1199), + [anon_sym_u8_SQUOTE] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1199), + [anon_sym_L_DQUOTE] = ACTIONS(1199), + [anon_sym_u_DQUOTE] = ACTIONS(1199), + [anon_sym_U_DQUOTE] = ACTIONS(1199), + [anon_sym_u8_DQUOTE] = ACTIONS(1199), + [anon_sym_DQUOTE] = ACTIONS(1199), + [sym_true] = ACTIONS(1197), + [sym_false] = ACTIONS(1197), + [anon_sym_NULL] = ACTIONS(1197), + [anon_sym_nullptr] = ACTIONS(1197), [sym_comment] = ACTIONS(3), }, - [160] = { - [ts_builtin_sym_end] = ACTIONS(1239), - [sym_identifier] = ACTIONS(1237), - [aux_sym_preproc_include_token1] = ACTIONS(1237), - [aux_sym_preproc_def_token1] = ACTIONS(1237), - [aux_sym_preproc_if_token1] = ACTIONS(1237), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1237), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1237), - [sym_preproc_directive] = ACTIONS(1237), - [anon_sym_LPAREN2] = ACTIONS(1239), - [anon_sym_BANG] = ACTIONS(1239), - [anon_sym_TILDE] = ACTIONS(1239), - [anon_sym_DASH] = ACTIONS(1237), - [anon_sym_PLUS] = ACTIONS(1237), - [anon_sym_STAR] = ACTIONS(1239), - [anon_sym_AMP] = ACTIONS(1239), - [anon_sym_SEMI] = ACTIONS(1239), - [anon_sym___extension__] = ACTIONS(1237), - [anon_sym_typedef] = ACTIONS(1237), - [anon_sym_extern] = ACTIONS(1237), - [anon_sym___attribute__] = ACTIONS(1237), - [anon_sym___scanf] = ACTIONS(1237), - [anon_sym___printf] = ACTIONS(1237), - [anon_sym___read_mostly] = ACTIONS(1237), - [anon_sym___must_hold] = ACTIONS(1237), - [anon_sym___ro_after_init] = ACTIONS(1237), - [anon_sym___init] = ACTIONS(1237), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1239), - [anon_sym___declspec] = ACTIONS(1237), - [anon_sym___cdecl] = ACTIONS(1237), - [anon_sym___clrcall] = ACTIONS(1237), - [anon_sym___stdcall] = ACTIONS(1237), - [anon_sym___fastcall] = ACTIONS(1237), - [anon_sym___thiscall] = ACTIONS(1237), - [anon_sym___vectorcall] = ACTIONS(1237), - [anon_sym_LBRACE] = ACTIONS(1239), - [anon_sym_signed] = ACTIONS(1237), - [anon_sym_unsigned] = ACTIONS(1237), - [anon_sym_long] = ACTIONS(1237), - [anon_sym_short] = ACTIONS(1237), - [anon_sym_static] = ACTIONS(1237), - [anon_sym_auto] = ACTIONS(1237), - [anon_sym_register] = ACTIONS(1237), - [anon_sym_inline] = ACTIONS(1237), - [anon_sym___inline] = ACTIONS(1237), - [anon_sym___inline__] = ACTIONS(1237), - [anon_sym___forceinline] = ACTIONS(1237), - [anon_sym_thread_local] = ACTIONS(1237), - [anon_sym___thread] = ACTIONS(1237), - [anon_sym_const] = ACTIONS(1237), - [anon_sym_constexpr] = ACTIONS(1237), - [anon_sym_volatile] = ACTIONS(1237), - [anon_sym_restrict] = ACTIONS(1237), - [anon_sym___restrict__] = ACTIONS(1237), - [anon_sym__Atomic] = ACTIONS(1237), - [anon_sym__Noreturn] = ACTIONS(1237), - [anon_sym_noreturn] = ACTIONS(1237), - [anon_sym_alignas] = ACTIONS(1237), - [anon_sym__Alignas] = ACTIONS(1237), - [sym_primitive_type] = ACTIONS(1237), - [anon_sym_enum] = ACTIONS(1237), - [anon_sym_struct] = ACTIONS(1237), - [anon_sym_union] = ACTIONS(1237), - [anon_sym_if] = ACTIONS(1237), - [anon_sym_else] = ACTIONS(1237), - [anon_sym_switch] = ACTIONS(1237), - [anon_sym_case] = ACTIONS(1237), - [anon_sym_default] = ACTIONS(1237), - [anon_sym_while] = ACTIONS(1237), - [anon_sym_do] = ACTIONS(1237), - [anon_sym_for] = ACTIONS(1237), - [anon_sym_return] = ACTIONS(1237), - [anon_sym_break] = ACTIONS(1237), - [anon_sym_continue] = ACTIONS(1237), - [anon_sym_goto] = ACTIONS(1237), - [anon_sym___try] = ACTIONS(1237), - [anon_sym___leave] = ACTIONS(1237), - [anon_sym_DASH_DASH] = ACTIONS(1239), - [anon_sym_PLUS_PLUS] = ACTIONS(1239), - [anon_sym_sizeof] = ACTIONS(1237), - [anon_sym___alignof__] = ACTIONS(1237), - [anon_sym___alignof] = ACTIONS(1237), - [anon_sym__alignof] = ACTIONS(1237), - [anon_sym_alignof] = ACTIONS(1237), - [anon_sym__Alignof] = ACTIONS(1237), - [anon_sym_offsetof] = ACTIONS(1237), - [anon_sym__Generic] = ACTIONS(1237), - [anon_sym_asm] = ACTIONS(1237), - [anon_sym___asm__] = ACTIONS(1237), - [sym_number_literal] = ACTIONS(1239), - [anon_sym_L_SQUOTE] = ACTIONS(1239), - [anon_sym_u_SQUOTE] = ACTIONS(1239), - [anon_sym_U_SQUOTE] = ACTIONS(1239), - [anon_sym_u8_SQUOTE] = ACTIONS(1239), - [anon_sym_SQUOTE] = ACTIONS(1239), - [anon_sym_L_DQUOTE] = ACTIONS(1239), - [anon_sym_u_DQUOTE] = ACTIONS(1239), - [anon_sym_U_DQUOTE] = ACTIONS(1239), - [anon_sym_u8_DQUOTE] = ACTIONS(1239), - [anon_sym_DQUOTE] = ACTIONS(1239), - [sym_true] = ACTIONS(1237), - [sym_false] = ACTIONS(1237), - [anon_sym_NULL] = ACTIONS(1237), - [anon_sym_nullptr] = ACTIONS(1237), + [173] = { + [sym_identifier] = ACTIONS(1153), + [aux_sym_preproc_include_token1] = ACTIONS(1153), + [aux_sym_preproc_def_token1] = ACTIONS(1153), + [aux_sym_preproc_if_token1] = ACTIONS(1153), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1153), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1153), + [sym_preproc_directive] = ACTIONS(1153), + [anon_sym_LPAREN2] = ACTIONS(1155), + [anon_sym_BANG] = ACTIONS(1155), + [anon_sym_TILDE] = ACTIONS(1155), + [anon_sym_DASH] = ACTIONS(1153), + [anon_sym_PLUS] = ACTIONS(1153), + [anon_sym_STAR] = ACTIONS(1155), + [anon_sym_AMP] = ACTIONS(1155), + [anon_sym_SEMI] = ACTIONS(1155), + [anon_sym___extension__] = ACTIONS(1153), + [anon_sym_typedef] = ACTIONS(1153), + [anon_sym_extern] = ACTIONS(1153), + [anon_sym___attribute__] = ACTIONS(1153), + [anon_sym___scanf] = ACTIONS(1153), + [anon_sym___printf] = ACTIONS(1153), + [anon_sym___read_mostly] = ACTIONS(1153), + [anon_sym___must_hold] = ACTIONS(1153), + [anon_sym___ro_after_init] = ACTIONS(1153), + [anon_sym___noreturn] = ACTIONS(1153), + [anon_sym___cold] = ACTIONS(1153), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1155), + [anon_sym___declspec] = ACTIONS(1153), + [anon_sym___init] = ACTIONS(1153), + [anon_sym___exit] = ACTIONS(1153), + [anon_sym___cdecl] = ACTIONS(1153), + [anon_sym___clrcall] = ACTIONS(1153), + [anon_sym___stdcall] = ACTIONS(1153), + [anon_sym___fastcall] = ACTIONS(1153), + [anon_sym___thiscall] = ACTIONS(1153), + [anon_sym___vectorcall] = ACTIONS(1153), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_RBRACE] = ACTIONS(1155), + [anon_sym_signed] = ACTIONS(1153), + [anon_sym_unsigned] = ACTIONS(1153), + [anon_sym_long] = ACTIONS(1153), + [anon_sym_short] = ACTIONS(1153), + [anon_sym_static] = ACTIONS(1153), + [anon_sym_auto] = ACTIONS(1153), + [anon_sym_register] = ACTIONS(1153), + [anon_sym_inline] = ACTIONS(1153), + [anon_sym___inline] = ACTIONS(1153), + [anon_sym___inline__] = ACTIONS(1153), + [anon_sym___forceinline] = ACTIONS(1153), + [anon_sym_thread_local] = ACTIONS(1153), + [anon_sym___thread] = ACTIONS(1153), + [anon_sym_const] = ACTIONS(1153), + [anon_sym_constexpr] = ACTIONS(1153), + [anon_sym_volatile] = ACTIONS(1153), + [anon_sym_restrict] = ACTIONS(1153), + [anon_sym___restrict__] = ACTIONS(1153), + [anon_sym__Atomic] = ACTIONS(1153), + [anon_sym__Noreturn] = ACTIONS(1153), + [anon_sym_noreturn] = ACTIONS(1153), + [anon_sym_alignas] = ACTIONS(1153), + [anon_sym__Alignas] = ACTIONS(1153), + [sym_primitive_type] = ACTIONS(1153), + [anon_sym_enum] = ACTIONS(1153), + [anon_sym_struct] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1153), + [anon_sym_if] = ACTIONS(1153), + [anon_sym_else] = ACTIONS(1153), + [anon_sym_switch] = ACTIONS(1153), + [anon_sym_case] = ACTIONS(1153), + [anon_sym_default] = ACTIONS(1153), + [anon_sym_while] = ACTIONS(1153), + [anon_sym_do] = ACTIONS(1153), + [anon_sym_for] = ACTIONS(1153), + [anon_sym_return] = ACTIONS(1153), + [anon_sym_break] = ACTIONS(1153), + [anon_sym_continue] = ACTIONS(1153), + [anon_sym_goto] = ACTIONS(1153), + [anon_sym___try] = ACTIONS(1153), + [anon_sym___leave] = ACTIONS(1153), + [anon_sym_DASH_DASH] = ACTIONS(1155), + [anon_sym_PLUS_PLUS] = ACTIONS(1155), + [anon_sym_sizeof] = ACTIONS(1153), + [anon_sym___alignof__] = ACTIONS(1153), + [anon_sym___alignof] = ACTIONS(1153), + [anon_sym__alignof] = ACTIONS(1153), + [anon_sym_alignof] = ACTIONS(1153), + [anon_sym__Alignof] = ACTIONS(1153), + [anon_sym_offsetof] = ACTIONS(1153), + [anon_sym__Generic] = ACTIONS(1153), + [anon_sym_asm] = ACTIONS(1153), + [anon_sym___asm__] = ACTIONS(1153), + [sym_number_literal] = ACTIONS(1155), + [anon_sym_L_SQUOTE] = ACTIONS(1155), + [anon_sym_u_SQUOTE] = ACTIONS(1155), + [anon_sym_U_SQUOTE] = ACTIONS(1155), + [anon_sym_u8_SQUOTE] = ACTIONS(1155), + [anon_sym_SQUOTE] = ACTIONS(1155), + [anon_sym_L_DQUOTE] = ACTIONS(1155), + [anon_sym_u_DQUOTE] = ACTIONS(1155), + [anon_sym_U_DQUOTE] = ACTIONS(1155), + [anon_sym_u8_DQUOTE] = ACTIONS(1155), + [anon_sym_DQUOTE] = ACTIONS(1155), + [sym_true] = ACTIONS(1153), + [sym_false] = ACTIONS(1153), + [anon_sym_NULL] = ACTIONS(1153), + [anon_sym_nullptr] = ACTIONS(1153), [sym_comment] = ACTIONS(3), }, - [161] = { - [sym_identifier] = ACTIONS(1245), - [aux_sym_preproc_include_token1] = ACTIONS(1245), - [aux_sym_preproc_def_token1] = ACTIONS(1245), - [aux_sym_preproc_if_token1] = ACTIONS(1245), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1245), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1245), - [sym_preproc_directive] = ACTIONS(1245), - [anon_sym_LPAREN2] = ACTIONS(1247), - [anon_sym_BANG] = ACTIONS(1247), - [anon_sym_TILDE] = ACTIONS(1247), - [anon_sym_DASH] = ACTIONS(1245), - [anon_sym_PLUS] = ACTIONS(1245), - [anon_sym_STAR] = ACTIONS(1247), - [anon_sym_AMP] = ACTIONS(1247), - [anon_sym_SEMI] = ACTIONS(1247), - [anon_sym___extension__] = ACTIONS(1245), - [anon_sym_typedef] = ACTIONS(1245), - [anon_sym_extern] = ACTIONS(1245), - [anon_sym___attribute__] = ACTIONS(1245), - [anon_sym___scanf] = ACTIONS(1245), - [anon_sym___printf] = ACTIONS(1245), - [anon_sym___read_mostly] = ACTIONS(1245), - [anon_sym___must_hold] = ACTIONS(1245), - [anon_sym___ro_after_init] = ACTIONS(1245), - [anon_sym___init] = ACTIONS(1245), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1247), - [anon_sym___declspec] = ACTIONS(1245), - [anon_sym___cdecl] = ACTIONS(1245), - [anon_sym___clrcall] = ACTIONS(1245), - [anon_sym___stdcall] = ACTIONS(1245), - [anon_sym___fastcall] = ACTIONS(1245), - [anon_sym___thiscall] = ACTIONS(1245), - [anon_sym___vectorcall] = ACTIONS(1245), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_RBRACE] = ACTIONS(1247), - [anon_sym_signed] = ACTIONS(1245), - [anon_sym_unsigned] = ACTIONS(1245), - [anon_sym_long] = ACTIONS(1245), - [anon_sym_short] = ACTIONS(1245), - [anon_sym_static] = ACTIONS(1245), - [anon_sym_auto] = ACTIONS(1245), - [anon_sym_register] = ACTIONS(1245), - [anon_sym_inline] = ACTIONS(1245), - [anon_sym___inline] = ACTIONS(1245), - [anon_sym___inline__] = ACTIONS(1245), - [anon_sym___forceinline] = ACTIONS(1245), - [anon_sym_thread_local] = ACTIONS(1245), - [anon_sym___thread] = ACTIONS(1245), - [anon_sym_const] = ACTIONS(1245), - [anon_sym_constexpr] = ACTIONS(1245), - [anon_sym_volatile] = ACTIONS(1245), - [anon_sym_restrict] = ACTIONS(1245), - [anon_sym___restrict__] = ACTIONS(1245), - [anon_sym__Atomic] = ACTIONS(1245), - [anon_sym__Noreturn] = ACTIONS(1245), - [anon_sym_noreturn] = ACTIONS(1245), - [anon_sym_alignas] = ACTIONS(1245), - [anon_sym__Alignas] = ACTIONS(1245), - [sym_primitive_type] = ACTIONS(1245), - [anon_sym_enum] = ACTIONS(1245), - [anon_sym_struct] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1245), - [anon_sym_if] = ACTIONS(1245), - [anon_sym_else] = ACTIONS(1245), - [anon_sym_switch] = ACTIONS(1245), - [anon_sym_case] = ACTIONS(1245), - [anon_sym_default] = ACTIONS(1245), - [anon_sym_while] = ACTIONS(1245), - [anon_sym_do] = ACTIONS(1245), - [anon_sym_for] = ACTIONS(1245), - [anon_sym_return] = ACTIONS(1245), - [anon_sym_break] = ACTIONS(1245), - [anon_sym_continue] = ACTIONS(1245), - [anon_sym_goto] = ACTIONS(1245), - [anon_sym___try] = ACTIONS(1245), - [anon_sym___leave] = ACTIONS(1245), - [anon_sym_DASH_DASH] = ACTIONS(1247), - [anon_sym_PLUS_PLUS] = ACTIONS(1247), - [anon_sym_sizeof] = ACTIONS(1245), - [anon_sym___alignof__] = ACTIONS(1245), - [anon_sym___alignof] = ACTIONS(1245), - [anon_sym__alignof] = ACTIONS(1245), - [anon_sym_alignof] = ACTIONS(1245), - [anon_sym__Alignof] = ACTIONS(1245), - [anon_sym_offsetof] = ACTIONS(1245), - [anon_sym__Generic] = ACTIONS(1245), - [anon_sym_asm] = ACTIONS(1245), - [anon_sym___asm__] = ACTIONS(1245), - [sym_number_literal] = ACTIONS(1247), - [anon_sym_L_SQUOTE] = ACTIONS(1247), - [anon_sym_u_SQUOTE] = ACTIONS(1247), - [anon_sym_U_SQUOTE] = ACTIONS(1247), - [anon_sym_u8_SQUOTE] = ACTIONS(1247), - [anon_sym_SQUOTE] = ACTIONS(1247), - [anon_sym_L_DQUOTE] = ACTIONS(1247), - [anon_sym_u_DQUOTE] = ACTIONS(1247), - [anon_sym_U_DQUOTE] = ACTIONS(1247), - [anon_sym_u8_DQUOTE] = ACTIONS(1247), - [anon_sym_DQUOTE] = ACTIONS(1247), - [sym_true] = ACTIONS(1245), - [sym_false] = ACTIONS(1245), - [anon_sym_NULL] = ACTIONS(1245), - [anon_sym_nullptr] = ACTIONS(1245), + [174] = { + [sym_identifier] = ACTIONS(1153), + [aux_sym_preproc_include_token1] = ACTIONS(1153), + [aux_sym_preproc_def_token1] = ACTIONS(1153), + [aux_sym_preproc_if_token1] = ACTIONS(1153), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1153), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1153), + [sym_preproc_directive] = ACTIONS(1153), + [anon_sym_LPAREN2] = ACTIONS(1155), + [anon_sym_BANG] = ACTIONS(1155), + [anon_sym_TILDE] = ACTIONS(1155), + [anon_sym_DASH] = ACTIONS(1153), + [anon_sym_PLUS] = ACTIONS(1153), + [anon_sym_STAR] = ACTIONS(1155), + [anon_sym_AMP] = ACTIONS(1155), + [anon_sym_SEMI] = ACTIONS(1155), + [anon_sym___extension__] = ACTIONS(1153), + [anon_sym_typedef] = ACTIONS(1153), + [anon_sym_extern] = ACTIONS(1153), + [anon_sym___attribute__] = ACTIONS(1153), + [anon_sym___scanf] = ACTIONS(1153), + [anon_sym___printf] = ACTIONS(1153), + [anon_sym___read_mostly] = ACTIONS(1153), + [anon_sym___must_hold] = ACTIONS(1153), + [anon_sym___ro_after_init] = ACTIONS(1153), + [anon_sym___noreturn] = ACTIONS(1153), + [anon_sym___cold] = ACTIONS(1153), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1155), + [anon_sym___declspec] = ACTIONS(1153), + [anon_sym___init] = ACTIONS(1153), + [anon_sym___exit] = ACTIONS(1153), + [anon_sym___cdecl] = ACTIONS(1153), + [anon_sym___clrcall] = ACTIONS(1153), + [anon_sym___stdcall] = ACTIONS(1153), + [anon_sym___fastcall] = ACTIONS(1153), + [anon_sym___thiscall] = ACTIONS(1153), + [anon_sym___vectorcall] = ACTIONS(1153), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_RBRACE] = ACTIONS(1155), + [anon_sym_signed] = ACTIONS(1153), + [anon_sym_unsigned] = ACTIONS(1153), + [anon_sym_long] = ACTIONS(1153), + [anon_sym_short] = ACTIONS(1153), + [anon_sym_static] = ACTIONS(1153), + [anon_sym_auto] = ACTIONS(1153), + [anon_sym_register] = ACTIONS(1153), + [anon_sym_inline] = ACTIONS(1153), + [anon_sym___inline] = ACTIONS(1153), + [anon_sym___inline__] = ACTIONS(1153), + [anon_sym___forceinline] = ACTIONS(1153), + [anon_sym_thread_local] = ACTIONS(1153), + [anon_sym___thread] = ACTIONS(1153), + [anon_sym_const] = ACTIONS(1153), + [anon_sym_constexpr] = ACTIONS(1153), + [anon_sym_volatile] = ACTIONS(1153), + [anon_sym_restrict] = ACTIONS(1153), + [anon_sym___restrict__] = ACTIONS(1153), + [anon_sym__Atomic] = ACTIONS(1153), + [anon_sym__Noreturn] = ACTIONS(1153), + [anon_sym_noreturn] = ACTIONS(1153), + [anon_sym_alignas] = ACTIONS(1153), + [anon_sym__Alignas] = ACTIONS(1153), + [sym_primitive_type] = ACTIONS(1153), + [anon_sym_enum] = ACTIONS(1153), + [anon_sym_struct] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1153), + [anon_sym_if] = ACTIONS(1153), + [anon_sym_else] = ACTIONS(1153), + [anon_sym_switch] = ACTIONS(1153), + [anon_sym_case] = ACTIONS(1153), + [anon_sym_default] = ACTIONS(1153), + [anon_sym_while] = ACTIONS(1153), + [anon_sym_do] = ACTIONS(1153), + [anon_sym_for] = ACTIONS(1153), + [anon_sym_return] = ACTIONS(1153), + [anon_sym_break] = ACTIONS(1153), + [anon_sym_continue] = ACTIONS(1153), + [anon_sym_goto] = ACTIONS(1153), + [anon_sym___try] = ACTIONS(1153), + [anon_sym___leave] = ACTIONS(1153), + [anon_sym_DASH_DASH] = ACTIONS(1155), + [anon_sym_PLUS_PLUS] = ACTIONS(1155), + [anon_sym_sizeof] = ACTIONS(1153), + [anon_sym___alignof__] = ACTIONS(1153), + [anon_sym___alignof] = ACTIONS(1153), + [anon_sym__alignof] = ACTIONS(1153), + [anon_sym_alignof] = ACTIONS(1153), + [anon_sym__Alignof] = ACTIONS(1153), + [anon_sym_offsetof] = ACTIONS(1153), + [anon_sym__Generic] = ACTIONS(1153), + [anon_sym_asm] = ACTIONS(1153), + [anon_sym___asm__] = ACTIONS(1153), + [sym_number_literal] = ACTIONS(1155), + [anon_sym_L_SQUOTE] = ACTIONS(1155), + [anon_sym_u_SQUOTE] = ACTIONS(1155), + [anon_sym_U_SQUOTE] = ACTIONS(1155), + [anon_sym_u8_SQUOTE] = ACTIONS(1155), + [anon_sym_SQUOTE] = ACTIONS(1155), + [anon_sym_L_DQUOTE] = ACTIONS(1155), + [anon_sym_u_DQUOTE] = ACTIONS(1155), + [anon_sym_U_DQUOTE] = ACTIONS(1155), + [anon_sym_u8_DQUOTE] = ACTIONS(1155), + [anon_sym_DQUOTE] = ACTIONS(1155), + [sym_true] = ACTIONS(1153), + [sym_false] = ACTIONS(1153), + [anon_sym_NULL] = ACTIONS(1153), + [anon_sym_nullptr] = ACTIONS(1153), [sym_comment] = ACTIONS(3), }, - [162] = { - [sym_identifier] = ACTIONS(1245), - [aux_sym_preproc_include_token1] = ACTIONS(1245), - [aux_sym_preproc_def_token1] = ACTIONS(1245), - [aux_sym_preproc_if_token1] = ACTIONS(1245), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1245), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1245), - [sym_preproc_directive] = ACTIONS(1245), - [anon_sym_LPAREN2] = ACTIONS(1247), - [anon_sym_BANG] = ACTIONS(1247), - [anon_sym_TILDE] = ACTIONS(1247), - [anon_sym_DASH] = ACTIONS(1245), - [anon_sym_PLUS] = ACTIONS(1245), - [anon_sym_STAR] = ACTIONS(1247), - [anon_sym_AMP] = ACTIONS(1247), - [anon_sym_SEMI] = ACTIONS(1247), - [anon_sym___extension__] = ACTIONS(1245), - [anon_sym_typedef] = ACTIONS(1245), - [anon_sym_extern] = ACTIONS(1245), - [anon_sym___attribute__] = ACTIONS(1245), - [anon_sym___scanf] = ACTIONS(1245), - [anon_sym___printf] = ACTIONS(1245), - [anon_sym___read_mostly] = ACTIONS(1245), - [anon_sym___must_hold] = ACTIONS(1245), - [anon_sym___ro_after_init] = ACTIONS(1245), - [anon_sym___init] = ACTIONS(1245), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1247), - [anon_sym___declspec] = ACTIONS(1245), - [anon_sym___cdecl] = ACTIONS(1245), - [anon_sym___clrcall] = ACTIONS(1245), - [anon_sym___stdcall] = ACTIONS(1245), - [anon_sym___fastcall] = ACTIONS(1245), - [anon_sym___thiscall] = ACTIONS(1245), - [anon_sym___vectorcall] = ACTIONS(1245), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_RBRACE] = ACTIONS(1247), - [anon_sym_signed] = ACTIONS(1245), - [anon_sym_unsigned] = ACTIONS(1245), - [anon_sym_long] = ACTIONS(1245), - [anon_sym_short] = ACTIONS(1245), - [anon_sym_static] = ACTIONS(1245), - [anon_sym_auto] = ACTIONS(1245), - [anon_sym_register] = ACTIONS(1245), - [anon_sym_inline] = ACTIONS(1245), - [anon_sym___inline] = ACTIONS(1245), - [anon_sym___inline__] = ACTIONS(1245), - [anon_sym___forceinline] = ACTIONS(1245), - [anon_sym_thread_local] = ACTIONS(1245), - [anon_sym___thread] = ACTIONS(1245), - [anon_sym_const] = ACTIONS(1245), - [anon_sym_constexpr] = ACTIONS(1245), - [anon_sym_volatile] = ACTIONS(1245), - [anon_sym_restrict] = ACTIONS(1245), - [anon_sym___restrict__] = ACTIONS(1245), - [anon_sym__Atomic] = ACTIONS(1245), - [anon_sym__Noreturn] = ACTIONS(1245), - [anon_sym_noreturn] = ACTIONS(1245), - [anon_sym_alignas] = ACTIONS(1245), - [anon_sym__Alignas] = ACTIONS(1245), - [sym_primitive_type] = ACTIONS(1245), - [anon_sym_enum] = ACTIONS(1245), - [anon_sym_struct] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1245), - [anon_sym_if] = ACTIONS(1245), - [anon_sym_else] = ACTIONS(1245), - [anon_sym_switch] = ACTIONS(1245), - [anon_sym_case] = ACTIONS(1245), - [anon_sym_default] = ACTIONS(1245), - [anon_sym_while] = ACTIONS(1245), - [anon_sym_do] = ACTIONS(1245), - [anon_sym_for] = ACTIONS(1245), - [anon_sym_return] = ACTIONS(1245), - [anon_sym_break] = ACTIONS(1245), - [anon_sym_continue] = ACTIONS(1245), - [anon_sym_goto] = ACTIONS(1245), - [anon_sym___try] = ACTIONS(1245), - [anon_sym___leave] = ACTIONS(1245), - [anon_sym_DASH_DASH] = ACTIONS(1247), - [anon_sym_PLUS_PLUS] = ACTIONS(1247), - [anon_sym_sizeof] = ACTIONS(1245), - [anon_sym___alignof__] = ACTIONS(1245), - [anon_sym___alignof] = ACTIONS(1245), - [anon_sym__alignof] = ACTIONS(1245), - [anon_sym_alignof] = ACTIONS(1245), - [anon_sym__Alignof] = ACTIONS(1245), - [anon_sym_offsetof] = ACTIONS(1245), - [anon_sym__Generic] = ACTIONS(1245), - [anon_sym_asm] = ACTIONS(1245), - [anon_sym___asm__] = ACTIONS(1245), - [sym_number_literal] = ACTIONS(1247), - [anon_sym_L_SQUOTE] = ACTIONS(1247), - [anon_sym_u_SQUOTE] = ACTIONS(1247), - [anon_sym_U_SQUOTE] = ACTIONS(1247), - [anon_sym_u8_SQUOTE] = ACTIONS(1247), - [anon_sym_SQUOTE] = ACTIONS(1247), - [anon_sym_L_DQUOTE] = ACTIONS(1247), - [anon_sym_u_DQUOTE] = ACTIONS(1247), - [anon_sym_U_DQUOTE] = ACTIONS(1247), - [anon_sym_u8_DQUOTE] = ACTIONS(1247), - [anon_sym_DQUOTE] = ACTIONS(1247), - [sym_true] = ACTIONS(1245), - [sym_false] = ACTIONS(1245), - [anon_sym_NULL] = ACTIONS(1245), - [anon_sym_nullptr] = ACTIONS(1245), + [175] = { + [sym_identifier] = ACTIONS(1253), + [aux_sym_preproc_include_token1] = ACTIONS(1253), + [aux_sym_preproc_def_token1] = ACTIONS(1253), + [aux_sym_preproc_if_token1] = ACTIONS(1253), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1253), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1253), + [sym_preproc_directive] = ACTIONS(1253), + [anon_sym_LPAREN2] = ACTIONS(1255), + [anon_sym_BANG] = ACTIONS(1255), + [anon_sym_TILDE] = ACTIONS(1255), + [anon_sym_DASH] = ACTIONS(1253), + [anon_sym_PLUS] = ACTIONS(1253), + [anon_sym_STAR] = ACTIONS(1255), + [anon_sym_AMP] = ACTIONS(1255), + [anon_sym_SEMI] = ACTIONS(1255), + [anon_sym___extension__] = ACTIONS(1253), + [anon_sym_typedef] = ACTIONS(1253), + [anon_sym_extern] = ACTIONS(1253), + [anon_sym___attribute__] = ACTIONS(1253), + [anon_sym___scanf] = ACTIONS(1253), + [anon_sym___printf] = ACTIONS(1253), + [anon_sym___read_mostly] = ACTIONS(1253), + [anon_sym___must_hold] = ACTIONS(1253), + [anon_sym___ro_after_init] = ACTIONS(1253), + [anon_sym___noreturn] = ACTIONS(1253), + [anon_sym___cold] = ACTIONS(1253), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1255), + [anon_sym___declspec] = ACTIONS(1253), + [anon_sym___init] = ACTIONS(1253), + [anon_sym___exit] = ACTIONS(1253), + [anon_sym___cdecl] = ACTIONS(1253), + [anon_sym___clrcall] = ACTIONS(1253), + [anon_sym___stdcall] = ACTIONS(1253), + [anon_sym___fastcall] = ACTIONS(1253), + [anon_sym___thiscall] = ACTIONS(1253), + [anon_sym___vectorcall] = ACTIONS(1253), + [anon_sym_LBRACE] = ACTIONS(1255), + [anon_sym_RBRACE] = ACTIONS(1255), + [anon_sym_signed] = ACTIONS(1253), + [anon_sym_unsigned] = ACTIONS(1253), + [anon_sym_long] = ACTIONS(1253), + [anon_sym_short] = ACTIONS(1253), + [anon_sym_static] = ACTIONS(1253), + [anon_sym_auto] = ACTIONS(1253), + [anon_sym_register] = ACTIONS(1253), + [anon_sym_inline] = ACTIONS(1253), + [anon_sym___inline] = ACTIONS(1253), + [anon_sym___inline__] = ACTIONS(1253), + [anon_sym___forceinline] = ACTIONS(1253), + [anon_sym_thread_local] = ACTIONS(1253), + [anon_sym___thread] = ACTIONS(1253), + [anon_sym_const] = ACTIONS(1253), + [anon_sym_constexpr] = ACTIONS(1253), + [anon_sym_volatile] = ACTIONS(1253), + [anon_sym_restrict] = ACTIONS(1253), + [anon_sym___restrict__] = ACTIONS(1253), + [anon_sym__Atomic] = ACTIONS(1253), + [anon_sym__Noreturn] = ACTIONS(1253), + [anon_sym_noreturn] = ACTIONS(1253), + [anon_sym_alignas] = ACTIONS(1253), + [anon_sym__Alignas] = ACTIONS(1253), + [sym_primitive_type] = ACTIONS(1253), + [anon_sym_enum] = ACTIONS(1253), + [anon_sym_struct] = ACTIONS(1253), + [anon_sym_union] = ACTIONS(1253), + [anon_sym_if] = ACTIONS(1253), + [anon_sym_else] = ACTIONS(1253), + [anon_sym_switch] = ACTIONS(1253), + [anon_sym_case] = ACTIONS(1253), + [anon_sym_default] = ACTIONS(1253), + [anon_sym_while] = ACTIONS(1253), + [anon_sym_do] = ACTIONS(1253), + [anon_sym_for] = ACTIONS(1253), + [anon_sym_return] = ACTIONS(1253), + [anon_sym_break] = ACTIONS(1253), + [anon_sym_continue] = ACTIONS(1253), + [anon_sym_goto] = ACTIONS(1253), + [anon_sym___try] = ACTIONS(1253), + [anon_sym___leave] = ACTIONS(1253), + [anon_sym_DASH_DASH] = ACTIONS(1255), + [anon_sym_PLUS_PLUS] = ACTIONS(1255), + [anon_sym_sizeof] = ACTIONS(1253), + [anon_sym___alignof__] = ACTIONS(1253), + [anon_sym___alignof] = ACTIONS(1253), + [anon_sym__alignof] = ACTIONS(1253), + [anon_sym_alignof] = ACTIONS(1253), + [anon_sym__Alignof] = ACTIONS(1253), + [anon_sym_offsetof] = ACTIONS(1253), + [anon_sym__Generic] = ACTIONS(1253), + [anon_sym_asm] = ACTIONS(1253), + [anon_sym___asm__] = ACTIONS(1253), + [sym_number_literal] = ACTIONS(1255), + [anon_sym_L_SQUOTE] = ACTIONS(1255), + [anon_sym_u_SQUOTE] = ACTIONS(1255), + [anon_sym_U_SQUOTE] = ACTIONS(1255), + [anon_sym_u8_SQUOTE] = ACTIONS(1255), + [anon_sym_SQUOTE] = ACTIONS(1255), + [anon_sym_L_DQUOTE] = ACTIONS(1255), + [anon_sym_u_DQUOTE] = ACTIONS(1255), + [anon_sym_U_DQUOTE] = ACTIONS(1255), + [anon_sym_u8_DQUOTE] = ACTIONS(1255), + [anon_sym_DQUOTE] = ACTIONS(1255), + [sym_true] = ACTIONS(1253), + [sym_false] = ACTIONS(1253), + [anon_sym_NULL] = ACTIONS(1253), + [anon_sym_nullptr] = ACTIONS(1253), + [sym_comment] = ACTIONS(3), + }, + [176] = { + [sym_identifier] = ACTIONS(1153), + [aux_sym_preproc_include_token1] = ACTIONS(1153), + [aux_sym_preproc_def_token1] = ACTIONS(1153), + [aux_sym_preproc_if_token1] = ACTIONS(1153), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1153), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1153), + [sym_preproc_directive] = ACTIONS(1153), + [anon_sym_LPAREN2] = ACTIONS(1155), + [anon_sym_BANG] = ACTIONS(1155), + [anon_sym_TILDE] = ACTIONS(1155), + [anon_sym_DASH] = ACTIONS(1153), + [anon_sym_PLUS] = ACTIONS(1153), + [anon_sym_STAR] = ACTIONS(1155), + [anon_sym_AMP] = ACTIONS(1155), + [anon_sym_SEMI] = ACTIONS(1155), + [anon_sym___extension__] = ACTIONS(1153), + [anon_sym_typedef] = ACTIONS(1153), + [anon_sym_extern] = ACTIONS(1153), + [anon_sym___attribute__] = ACTIONS(1153), + [anon_sym___scanf] = ACTIONS(1153), + [anon_sym___printf] = ACTIONS(1153), + [anon_sym___read_mostly] = ACTIONS(1153), + [anon_sym___must_hold] = ACTIONS(1153), + [anon_sym___ro_after_init] = ACTIONS(1153), + [anon_sym___noreturn] = ACTIONS(1153), + [anon_sym___cold] = ACTIONS(1153), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1155), + [anon_sym___declspec] = ACTIONS(1153), + [anon_sym___init] = ACTIONS(1153), + [anon_sym___exit] = ACTIONS(1153), + [anon_sym___cdecl] = ACTIONS(1153), + [anon_sym___clrcall] = ACTIONS(1153), + [anon_sym___stdcall] = ACTIONS(1153), + [anon_sym___fastcall] = ACTIONS(1153), + [anon_sym___thiscall] = ACTIONS(1153), + [anon_sym___vectorcall] = ACTIONS(1153), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_RBRACE] = ACTIONS(1155), + [anon_sym_signed] = ACTIONS(1153), + [anon_sym_unsigned] = ACTIONS(1153), + [anon_sym_long] = ACTIONS(1153), + [anon_sym_short] = ACTIONS(1153), + [anon_sym_static] = ACTIONS(1153), + [anon_sym_auto] = ACTIONS(1153), + [anon_sym_register] = ACTIONS(1153), + [anon_sym_inline] = ACTIONS(1153), + [anon_sym___inline] = ACTIONS(1153), + [anon_sym___inline__] = ACTIONS(1153), + [anon_sym___forceinline] = ACTIONS(1153), + [anon_sym_thread_local] = ACTIONS(1153), + [anon_sym___thread] = ACTIONS(1153), + [anon_sym_const] = ACTIONS(1153), + [anon_sym_constexpr] = ACTIONS(1153), + [anon_sym_volatile] = ACTIONS(1153), + [anon_sym_restrict] = ACTIONS(1153), + [anon_sym___restrict__] = ACTIONS(1153), + [anon_sym__Atomic] = ACTIONS(1153), + [anon_sym__Noreturn] = ACTIONS(1153), + [anon_sym_noreturn] = ACTIONS(1153), + [anon_sym_alignas] = ACTIONS(1153), + [anon_sym__Alignas] = ACTIONS(1153), + [sym_primitive_type] = ACTIONS(1153), + [anon_sym_enum] = ACTIONS(1153), + [anon_sym_struct] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1153), + [anon_sym_if] = ACTIONS(1153), + [anon_sym_else] = ACTIONS(1153), + [anon_sym_switch] = ACTIONS(1153), + [anon_sym_case] = ACTIONS(1153), + [anon_sym_default] = ACTIONS(1153), + [anon_sym_while] = ACTIONS(1153), + [anon_sym_do] = ACTIONS(1153), + [anon_sym_for] = ACTIONS(1153), + [anon_sym_return] = ACTIONS(1153), + [anon_sym_break] = ACTIONS(1153), + [anon_sym_continue] = ACTIONS(1153), + [anon_sym_goto] = ACTIONS(1153), + [anon_sym___try] = ACTIONS(1153), + [anon_sym___leave] = ACTIONS(1153), + [anon_sym_DASH_DASH] = ACTIONS(1155), + [anon_sym_PLUS_PLUS] = ACTIONS(1155), + [anon_sym_sizeof] = ACTIONS(1153), + [anon_sym___alignof__] = ACTIONS(1153), + [anon_sym___alignof] = ACTIONS(1153), + [anon_sym__alignof] = ACTIONS(1153), + [anon_sym_alignof] = ACTIONS(1153), + [anon_sym__Alignof] = ACTIONS(1153), + [anon_sym_offsetof] = ACTIONS(1153), + [anon_sym__Generic] = ACTIONS(1153), + [anon_sym_asm] = ACTIONS(1153), + [anon_sym___asm__] = ACTIONS(1153), + [sym_number_literal] = ACTIONS(1155), + [anon_sym_L_SQUOTE] = ACTIONS(1155), + [anon_sym_u_SQUOTE] = ACTIONS(1155), + [anon_sym_U_SQUOTE] = ACTIONS(1155), + [anon_sym_u8_SQUOTE] = ACTIONS(1155), + [anon_sym_SQUOTE] = ACTIONS(1155), + [anon_sym_L_DQUOTE] = ACTIONS(1155), + [anon_sym_u_DQUOTE] = ACTIONS(1155), + [anon_sym_U_DQUOTE] = ACTIONS(1155), + [anon_sym_u8_DQUOTE] = ACTIONS(1155), + [anon_sym_DQUOTE] = ACTIONS(1155), + [sym_true] = ACTIONS(1153), + [sym_false] = ACTIONS(1153), + [anon_sym_NULL] = ACTIONS(1153), + [anon_sym_nullptr] = ACTIONS(1153), + [sym_comment] = ACTIONS(3), + }, + [177] = { + [sym_identifier] = ACTIONS(1197), + [aux_sym_preproc_include_token1] = ACTIONS(1197), + [aux_sym_preproc_def_token1] = ACTIONS(1197), + [aux_sym_preproc_if_token1] = ACTIONS(1197), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1197), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1197), + [sym_preproc_directive] = ACTIONS(1197), + [anon_sym_LPAREN2] = ACTIONS(1199), + [anon_sym_BANG] = ACTIONS(1199), + [anon_sym_TILDE] = ACTIONS(1199), + [anon_sym_DASH] = ACTIONS(1197), + [anon_sym_PLUS] = ACTIONS(1197), + [anon_sym_STAR] = ACTIONS(1199), + [anon_sym_AMP] = ACTIONS(1199), + [anon_sym_SEMI] = ACTIONS(1199), + [anon_sym___extension__] = ACTIONS(1197), + [anon_sym_typedef] = ACTIONS(1197), + [anon_sym_extern] = ACTIONS(1197), + [anon_sym___attribute__] = ACTIONS(1197), + [anon_sym___scanf] = ACTIONS(1197), + [anon_sym___printf] = ACTIONS(1197), + [anon_sym___read_mostly] = ACTIONS(1197), + [anon_sym___must_hold] = ACTIONS(1197), + [anon_sym___ro_after_init] = ACTIONS(1197), + [anon_sym___noreturn] = ACTIONS(1197), + [anon_sym___cold] = ACTIONS(1197), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1199), + [anon_sym___declspec] = ACTIONS(1197), + [anon_sym___init] = ACTIONS(1197), + [anon_sym___exit] = ACTIONS(1197), + [anon_sym___cdecl] = ACTIONS(1197), + [anon_sym___clrcall] = ACTIONS(1197), + [anon_sym___stdcall] = ACTIONS(1197), + [anon_sym___fastcall] = ACTIONS(1197), + [anon_sym___thiscall] = ACTIONS(1197), + [anon_sym___vectorcall] = ACTIONS(1197), + [anon_sym_LBRACE] = ACTIONS(1199), + [anon_sym_RBRACE] = ACTIONS(1199), + [anon_sym_signed] = ACTIONS(1197), + [anon_sym_unsigned] = ACTIONS(1197), + [anon_sym_long] = ACTIONS(1197), + [anon_sym_short] = ACTIONS(1197), + [anon_sym_static] = ACTIONS(1197), + [anon_sym_auto] = ACTIONS(1197), + [anon_sym_register] = ACTIONS(1197), + [anon_sym_inline] = ACTIONS(1197), + [anon_sym___inline] = ACTIONS(1197), + [anon_sym___inline__] = ACTIONS(1197), + [anon_sym___forceinline] = ACTIONS(1197), + [anon_sym_thread_local] = ACTIONS(1197), + [anon_sym___thread] = ACTIONS(1197), + [anon_sym_const] = ACTIONS(1197), + [anon_sym_constexpr] = ACTIONS(1197), + [anon_sym_volatile] = ACTIONS(1197), + [anon_sym_restrict] = ACTIONS(1197), + [anon_sym___restrict__] = ACTIONS(1197), + [anon_sym__Atomic] = ACTIONS(1197), + [anon_sym__Noreturn] = ACTIONS(1197), + [anon_sym_noreturn] = ACTIONS(1197), + [anon_sym_alignas] = ACTIONS(1197), + [anon_sym__Alignas] = ACTIONS(1197), + [sym_primitive_type] = ACTIONS(1197), + [anon_sym_enum] = ACTIONS(1197), + [anon_sym_struct] = ACTIONS(1197), + [anon_sym_union] = ACTIONS(1197), + [anon_sym_if] = ACTIONS(1197), + [anon_sym_else] = ACTIONS(1197), + [anon_sym_switch] = ACTIONS(1197), + [anon_sym_case] = ACTIONS(1197), + [anon_sym_default] = ACTIONS(1197), + [anon_sym_while] = ACTIONS(1197), + [anon_sym_do] = ACTIONS(1197), + [anon_sym_for] = ACTIONS(1197), + [anon_sym_return] = ACTIONS(1197), + [anon_sym_break] = ACTIONS(1197), + [anon_sym_continue] = ACTIONS(1197), + [anon_sym_goto] = ACTIONS(1197), + [anon_sym___try] = ACTIONS(1197), + [anon_sym___leave] = ACTIONS(1197), + [anon_sym_DASH_DASH] = ACTIONS(1199), + [anon_sym_PLUS_PLUS] = ACTIONS(1199), + [anon_sym_sizeof] = ACTIONS(1197), + [anon_sym___alignof__] = ACTIONS(1197), + [anon_sym___alignof] = ACTIONS(1197), + [anon_sym__alignof] = ACTIONS(1197), + [anon_sym_alignof] = ACTIONS(1197), + [anon_sym__Alignof] = ACTIONS(1197), + [anon_sym_offsetof] = ACTIONS(1197), + [anon_sym__Generic] = ACTIONS(1197), + [anon_sym_asm] = ACTIONS(1197), + [anon_sym___asm__] = ACTIONS(1197), + [sym_number_literal] = ACTIONS(1199), + [anon_sym_L_SQUOTE] = ACTIONS(1199), + [anon_sym_u_SQUOTE] = ACTIONS(1199), + [anon_sym_U_SQUOTE] = ACTIONS(1199), + [anon_sym_u8_SQUOTE] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1199), + [anon_sym_L_DQUOTE] = ACTIONS(1199), + [anon_sym_u_DQUOTE] = ACTIONS(1199), + [anon_sym_U_DQUOTE] = ACTIONS(1199), + [anon_sym_u8_DQUOTE] = ACTIONS(1199), + [anon_sym_DQUOTE] = ACTIONS(1199), + [sym_true] = ACTIONS(1197), + [sym_false] = ACTIONS(1197), + [anon_sym_NULL] = ACTIONS(1197), + [anon_sym_nullptr] = ACTIONS(1197), [sym_comment] = ACTIONS(3), }, - [163] = { - [sym_identifier] = ACTIONS(1261), - [aux_sym_preproc_include_token1] = ACTIONS(1261), - [aux_sym_preproc_def_token1] = ACTIONS(1261), - [aux_sym_preproc_if_token1] = ACTIONS(1261), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1261), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1261), - [sym_preproc_directive] = ACTIONS(1261), - [anon_sym_LPAREN2] = ACTIONS(1263), - [anon_sym_BANG] = ACTIONS(1263), - [anon_sym_TILDE] = ACTIONS(1263), - [anon_sym_DASH] = ACTIONS(1261), - [anon_sym_PLUS] = ACTIONS(1261), - [anon_sym_STAR] = ACTIONS(1263), - [anon_sym_AMP] = ACTIONS(1263), - [anon_sym_SEMI] = ACTIONS(1263), - [anon_sym___extension__] = ACTIONS(1261), - [anon_sym_typedef] = ACTIONS(1261), - [anon_sym_extern] = ACTIONS(1261), - [anon_sym___attribute__] = ACTIONS(1261), - [anon_sym___scanf] = ACTIONS(1261), - [anon_sym___printf] = ACTIONS(1261), - [anon_sym___read_mostly] = ACTIONS(1261), - [anon_sym___must_hold] = ACTIONS(1261), - [anon_sym___ro_after_init] = ACTIONS(1261), - [anon_sym___init] = ACTIONS(1261), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1263), - [anon_sym___declspec] = ACTIONS(1261), - [anon_sym___cdecl] = ACTIONS(1261), - [anon_sym___clrcall] = ACTIONS(1261), - [anon_sym___stdcall] = ACTIONS(1261), - [anon_sym___fastcall] = ACTIONS(1261), - [anon_sym___thiscall] = ACTIONS(1261), - [anon_sym___vectorcall] = ACTIONS(1261), - [anon_sym_LBRACE] = ACTIONS(1263), - [anon_sym_RBRACE] = ACTIONS(1263), - [anon_sym_signed] = ACTIONS(1261), - [anon_sym_unsigned] = ACTIONS(1261), - [anon_sym_long] = ACTIONS(1261), - [anon_sym_short] = ACTIONS(1261), - [anon_sym_static] = ACTIONS(1261), - [anon_sym_auto] = ACTIONS(1261), - [anon_sym_register] = ACTIONS(1261), - [anon_sym_inline] = ACTIONS(1261), - [anon_sym___inline] = ACTIONS(1261), - [anon_sym___inline__] = ACTIONS(1261), - [anon_sym___forceinline] = ACTIONS(1261), - [anon_sym_thread_local] = ACTIONS(1261), - [anon_sym___thread] = ACTIONS(1261), - [anon_sym_const] = ACTIONS(1261), - [anon_sym_constexpr] = ACTIONS(1261), - [anon_sym_volatile] = ACTIONS(1261), - [anon_sym_restrict] = ACTIONS(1261), - [anon_sym___restrict__] = ACTIONS(1261), - [anon_sym__Atomic] = ACTIONS(1261), - [anon_sym__Noreturn] = ACTIONS(1261), - [anon_sym_noreturn] = ACTIONS(1261), - [anon_sym_alignas] = ACTIONS(1261), - [anon_sym__Alignas] = ACTIONS(1261), - [sym_primitive_type] = ACTIONS(1261), - [anon_sym_enum] = ACTIONS(1261), - [anon_sym_struct] = ACTIONS(1261), - [anon_sym_union] = ACTIONS(1261), - [anon_sym_if] = ACTIONS(1261), - [anon_sym_else] = ACTIONS(1261), - [anon_sym_switch] = ACTIONS(1261), - [anon_sym_case] = ACTIONS(1261), - [anon_sym_default] = ACTIONS(1261), - [anon_sym_while] = ACTIONS(1261), - [anon_sym_do] = ACTIONS(1261), - [anon_sym_for] = ACTIONS(1261), - [anon_sym_return] = ACTIONS(1261), - [anon_sym_break] = ACTIONS(1261), - [anon_sym_continue] = ACTIONS(1261), - [anon_sym_goto] = ACTIONS(1261), - [anon_sym___try] = ACTIONS(1261), - [anon_sym___leave] = ACTIONS(1261), - [anon_sym_DASH_DASH] = ACTIONS(1263), - [anon_sym_PLUS_PLUS] = ACTIONS(1263), - [anon_sym_sizeof] = ACTIONS(1261), - [anon_sym___alignof__] = ACTIONS(1261), - [anon_sym___alignof] = ACTIONS(1261), - [anon_sym__alignof] = ACTIONS(1261), - [anon_sym_alignof] = ACTIONS(1261), - [anon_sym__Alignof] = ACTIONS(1261), - [anon_sym_offsetof] = ACTIONS(1261), - [anon_sym__Generic] = ACTIONS(1261), - [anon_sym_asm] = ACTIONS(1261), - [anon_sym___asm__] = ACTIONS(1261), - [sym_number_literal] = ACTIONS(1263), - [anon_sym_L_SQUOTE] = ACTIONS(1263), - [anon_sym_u_SQUOTE] = ACTIONS(1263), - [anon_sym_U_SQUOTE] = ACTIONS(1263), - [anon_sym_u8_SQUOTE] = ACTIONS(1263), - [anon_sym_SQUOTE] = ACTIONS(1263), - [anon_sym_L_DQUOTE] = ACTIONS(1263), - [anon_sym_u_DQUOTE] = ACTIONS(1263), - [anon_sym_U_DQUOTE] = ACTIONS(1263), - [anon_sym_u8_DQUOTE] = ACTIONS(1263), - [anon_sym_DQUOTE] = ACTIONS(1263), - [sym_true] = ACTIONS(1261), - [sym_false] = ACTIONS(1261), - [anon_sym_NULL] = ACTIONS(1261), - [anon_sym_nullptr] = ACTIONS(1261), + [178] = { + [ts_builtin_sym_end] = ACTIONS(1219), + [sym_identifier] = ACTIONS(1217), + [aux_sym_preproc_include_token1] = ACTIONS(1217), + [aux_sym_preproc_def_token1] = ACTIONS(1217), + [aux_sym_preproc_if_token1] = ACTIONS(1217), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1217), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1217), + [sym_preproc_directive] = ACTIONS(1217), + [anon_sym_LPAREN2] = ACTIONS(1219), + [anon_sym_BANG] = ACTIONS(1219), + [anon_sym_TILDE] = ACTIONS(1219), + [anon_sym_DASH] = ACTIONS(1217), + [anon_sym_PLUS] = ACTIONS(1217), + [anon_sym_STAR] = ACTIONS(1219), + [anon_sym_AMP] = ACTIONS(1219), + [anon_sym_SEMI] = ACTIONS(1219), + [anon_sym___extension__] = ACTIONS(1217), + [anon_sym_typedef] = ACTIONS(1217), + [anon_sym_extern] = ACTIONS(1217), + [anon_sym___attribute__] = ACTIONS(1217), + [anon_sym___scanf] = ACTIONS(1217), + [anon_sym___printf] = ACTIONS(1217), + [anon_sym___read_mostly] = ACTIONS(1217), + [anon_sym___must_hold] = ACTIONS(1217), + [anon_sym___ro_after_init] = ACTIONS(1217), + [anon_sym___noreturn] = ACTIONS(1217), + [anon_sym___cold] = ACTIONS(1217), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1219), + [anon_sym___declspec] = ACTIONS(1217), + [anon_sym___init] = ACTIONS(1217), + [anon_sym___exit] = ACTIONS(1217), + [anon_sym___cdecl] = ACTIONS(1217), + [anon_sym___clrcall] = ACTIONS(1217), + [anon_sym___stdcall] = ACTIONS(1217), + [anon_sym___fastcall] = ACTIONS(1217), + [anon_sym___thiscall] = ACTIONS(1217), + [anon_sym___vectorcall] = ACTIONS(1217), + [anon_sym_LBRACE] = ACTIONS(1219), + [anon_sym_signed] = ACTIONS(1217), + [anon_sym_unsigned] = ACTIONS(1217), + [anon_sym_long] = ACTIONS(1217), + [anon_sym_short] = ACTIONS(1217), + [anon_sym_static] = ACTIONS(1217), + [anon_sym_auto] = ACTIONS(1217), + [anon_sym_register] = ACTIONS(1217), + [anon_sym_inline] = ACTIONS(1217), + [anon_sym___inline] = ACTIONS(1217), + [anon_sym___inline__] = ACTIONS(1217), + [anon_sym___forceinline] = ACTIONS(1217), + [anon_sym_thread_local] = ACTIONS(1217), + [anon_sym___thread] = ACTIONS(1217), + [anon_sym_const] = ACTIONS(1217), + [anon_sym_constexpr] = ACTIONS(1217), + [anon_sym_volatile] = ACTIONS(1217), + [anon_sym_restrict] = ACTIONS(1217), + [anon_sym___restrict__] = ACTIONS(1217), + [anon_sym__Atomic] = ACTIONS(1217), + [anon_sym__Noreturn] = ACTIONS(1217), + [anon_sym_noreturn] = ACTIONS(1217), + [anon_sym_alignas] = ACTIONS(1217), + [anon_sym__Alignas] = ACTIONS(1217), + [sym_primitive_type] = ACTIONS(1217), + [anon_sym_enum] = ACTIONS(1217), + [anon_sym_struct] = ACTIONS(1217), + [anon_sym_union] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1217), + [anon_sym_else] = ACTIONS(1217), + [anon_sym_switch] = ACTIONS(1217), + [anon_sym_case] = ACTIONS(1217), + [anon_sym_default] = ACTIONS(1217), + [anon_sym_while] = ACTIONS(1217), + [anon_sym_do] = ACTIONS(1217), + [anon_sym_for] = ACTIONS(1217), + [anon_sym_return] = ACTIONS(1217), + [anon_sym_break] = ACTIONS(1217), + [anon_sym_continue] = ACTIONS(1217), + [anon_sym_goto] = ACTIONS(1217), + [anon_sym___try] = ACTIONS(1217), + [anon_sym___leave] = ACTIONS(1217), + [anon_sym_DASH_DASH] = ACTIONS(1219), + [anon_sym_PLUS_PLUS] = ACTIONS(1219), + [anon_sym_sizeof] = ACTIONS(1217), + [anon_sym___alignof__] = ACTIONS(1217), + [anon_sym___alignof] = ACTIONS(1217), + [anon_sym__alignof] = ACTIONS(1217), + [anon_sym_alignof] = ACTIONS(1217), + [anon_sym__Alignof] = ACTIONS(1217), + [anon_sym_offsetof] = ACTIONS(1217), + [anon_sym__Generic] = ACTIONS(1217), + [anon_sym_asm] = ACTIONS(1217), + [anon_sym___asm__] = ACTIONS(1217), + [sym_number_literal] = ACTIONS(1219), + [anon_sym_L_SQUOTE] = ACTIONS(1219), + [anon_sym_u_SQUOTE] = ACTIONS(1219), + [anon_sym_U_SQUOTE] = ACTIONS(1219), + [anon_sym_u8_SQUOTE] = ACTIONS(1219), + [anon_sym_SQUOTE] = ACTIONS(1219), + [anon_sym_L_DQUOTE] = ACTIONS(1219), + [anon_sym_u_DQUOTE] = ACTIONS(1219), + [anon_sym_U_DQUOTE] = ACTIONS(1219), + [anon_sym_u8_DQUOTE] = ACTIONS(1219), + [anon_sym_DQUOTE] = ACTIONS(1219), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [anon_sym_NULL] = ACTIONS(1217), + [anon_sym_nullptr] = ACTIONS(1217), [sym_comment] = ACTIONS(3), }, - [164] = { - [ts_builtin_sym_end] = ACTIONS(1147), - [sym_identifier] = ACTIONS(1145), - [aux_sym_preproc_include_token1] = ACTIONS(1145), - [aux_sym_preproc_def_token1] = ACTIONS(1145), - [aux_sym_preproc_if_token1] = ACTIONS(1145), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1145), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1145), - [sym_preproc_directive] = ACTIONS(1145), - [anon_sym_LPAREN2] = ACTIONS(1147), - [anon_sym_BANG] = ACTIONS(1147), - [anon_sym_TILDE] = ACTIONS(1147), - [anon_sym_DASH] = ACTIONS(1145), - [anon_sym_PLUS] = ACTIONS(1145), - [anon_sym_STAR] = ACTIONS(1147), - [anon_sym_AMP] = ACTIONS(1147), - [anon_sym_SEMI] = ACTIONS(1147), - [anon_sym___extension__] = ACTIONS(1145), - [anon_sym_typedef] = ACTIONS(1145), - [anon_sym_extern] = ACTIONS(1145), - [anon_sym___attribute__] = ACTIONS(1145), - [anon_sym___scanf] = ACTIONS(1145), - [anon_sym___printf] = ACTIONS(1145), - [anon_sym___read_mostly] = ACTIONS(1145), - [anon_sym___must_hold] = ACTIONS(1145), - [anon_sym___ro_after_init] = ACTIONS(1145), - [anon_sym___init] = ACTIONS(1145), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1147), - [anon_sym___declspec] = ACTIONS(1145), - [anon_sym___cdecl] = ACTIONS(1145), - [anon_sym___clrcall] = ACTIONS(1145), - [anon_sym___stdcall] = ACTIONS(1145), - [anon_sym___fastcall] = ACTIONS(1145), - [anon_sym___thiscall] = ACTIONS(1145), - [anon_sym___vectorcall] = ACTIONS(1145), - [anon_sym_LBRACE] = ACTIONS(1147), - [anon_sym_signed] = ACTIONS(1145), - [anon_sym_unsigned] = ACTIONS(1145), - [anon_sym_long] = ACTIONS(1145), - [anon_sym_short] = ACTIONS(1145), - [anon_sym_static] = ACTIONS(1145), - [anon_sym_auto] = ACTIONS(1145), - [anon_sym_register] = ACTIONS(1145), - [anon_sym_inline] = ACTIONS(1145), - [anon_sym___inline] = ACTIONS(1145), - [anon_sym___inline__] = ACTIONS(1145), - [anon_sym___forceinline] = ACTIONS(1145), - [anon_sym_thread_local] = ACTIONS(1145), - [anon_sym___thread] = ACTIONS(1145), - [anon_sym_const] = ACTIONS(1145), - [anon_sym_constexpr] = ACTIONS(1145), - [anon_sym_volatile] = ACTIONS(1145), - [anon_sym_restrict] = ACTIONS(1145), - [anon_sym___restrict__] = ACTIONS(1145), - [anon_sym__Atomic] = ACTIONS(1145), - [anon_sym__Noreturn] = ACTIONS(1145), - [anon_sym_noreturn] = ACTIONS(1145), - [anon_sym_alignas] = ACTIONS(1145), - [anon_sym__Alignas] = ACTIONS(1145), - [sym_primitive_type] = ACTIONS(1145), - [anon_sym_enum] = ACTIONS(1145), - [anon_sym_struct] = ACTIONS(1145), - [anon_sym_union] = ACTIONS(1145), - [anon_sym_if] = ACTIONS(1145), - [anon_sym_else] = ACTIONS(1145), - [anon_sym_switch] = ACTIONS(1145), - [anon_sym_case] = ACTIONS(1145), - [anon_sym_default] = ACTIONS(1145), - [anon_sym_while] = ACTIONS(1145), - [anon_sym_do] = ACTIONS(1145), - [anon_sym_for] = ACTIONS(1145), - [anon_sym_return] = ACTIONS(1145), - [anon_sym_break] = ACTIONS(1145), - [anon_sym_continue] = ACTIONS(1145), - [anon_sym_goto] = ACTIONS(1145), - [anon_sym___try] = ACTIONS(1145), - [anon_sym___leave] = ACTIONS(1145), - [anon_sym_DASH_DASH] = ACTIONS(1147), - [anon_sym_PLUS_PLUS] = ACTIONS(1147), - [anon_sym_sizeof] = ACTIONS(1145), - [anon_sym___alignof__] = ACTIONS(1145), - [anon_sym___alignof] = ACTIONS(1145), - [anon_sym__alignof] = ACTIONS(1145), - [anon_sym_alignof] = ACTIONS(1145), - [anon_sym__Alignof] = ACTIONS(1145), - [anon_sym_offsetof] = ACTIONS(1145), - [anon_sym__Generic] = ACTIONS(1145), - [anon_sym_asm] = ACTIONS(1145), - [anon_sym___asm__] = ACTIONS(1145), - [sym_number_literal] = ACTIONS(1147), - [anon_sym_L_SQUOTE] = ACTIONS(1147), - [anon_sym_u_SQUOTE] = ACTIONS(1147), - [anon_sym_U_SQUOTE] = ACTIONS(1147), - [anon_sym_u8_SQUOTE] = ACTIONS(1147), - [anon_sym_SQUOTE] = ACTIONS(1147), - [anon_sym_L_DQUOTE] = ACTIONS(1147), - [anon_sym_u_DQUOTE] = ACTIONS(1147), - [anon_sym_U_DQUOTE] = ACTIONS(1147), - [anon_sym_u8_DQUOTE] = ACTIONS(1147), - [anon_sym_DQUOTE] = ACTIONS(1147), - [sym_true] = ACTIONS(1145), - [sym_false] = ACTIONS(1145), - [anon_sym_NULL] = ACTIONS(1145), - [anon_sym_nullptr] = ACTIONS(1145), + [179] = { + [sym_identifier] = ACTIONS(1221), + [aux_sym_preproc_include_token1] = ACTIONS(1221), + [aux_sym_preproc_def_token1] = ACTIONS(1221), + [aux_sym_preproc_if_token1] = ACTIONS(1221), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1221), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1221), + [sym_preproc_directive] = ACTIONS(1221), + [anon_sym_LPAREN2] = ACTIONS(1223), + [anon_sym_BANG] = ACTIONS(1223), + [anon_sym_TILDE] = ACTIONS(1223), + [anon_sym_DASH] = ACTIONS(1221), + [anon_sym_PLUS] = ACTIONS(1221), + [anon_sym_STAR] = ACTIONS(1223), + [anon_sym_AMP] = ACTIONS(1223), + [anon_sym_SEMI] = ACTIONS(1223), + [anon_sym___extension__] = ACTIONS(1221), + [anon_sym_typedef] = ACTIONS(1221), + [anon_sym_extern] = ACTIONS(1221), + [anon_sym___attribute__] = ACTIONS(1221), + [anon_sym___scanf] = ACTIONS(1221), + [anon_sym___printf] = ACTIONS(1221), + [anon_sym___read_mostly] = ACTIONS(1221), + [anon_sym___must_hold] = ACTIONS(1221), + [anon_sym___ro_after_init] = ACTIONS(1221), + [anon_sym___noreturn] = ACTIONS(1221), + [anon_sym___cold] = ACTIONS(1221), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1223), + [anon_sym___declspec] = ACTIONS(1221), + [anon_sym___init] = ACTIONS(1221), + [anon_sym___exit] = ACTIONS(1221), + [anon_sym___cdecl] = ACTIONS(1221), + [anon_sym___clrcall] = ACTIONS(1221), + [anon_sym___stdcall] = ACTIONS(1221), + [anon_sym___fastcall] = ACTIONS(1221), + [anon_sym___thiscall] = ACTIONS(1221), + [anon_sym___vectorcall] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_RBRACE] = ACTIONS(1223), + [anon_sym_signed] = ACTIONS(1221), + [anon_sym_unsigned] = ACTIONS(1221), + [anon_sym_long] = ACTIONS(1221), + [anon_sym_short] = ACTIONS(1221), + [anon_sym_static] = ACTIONS(1221), + [anon_sym_auto] = ACTIONS(1221), + [anon_sym_register] = ACTIONS(1221), + [anon_sym_inline] = ACTIONS(1221), + [anon_sym___inline] = ACTIONS(1221), + [anon_sym___inline__] = ACTIONS(1221), + [anon_sym___forceinline] = ACTIONS(1221), + [anon_sym_thread_local] = ACTIONS(1221), + [anon_sym___thread] = ACTIONS(1221), + [anon_sym_const] = ACTIONS(1221), + [anon_sym_constexpr] = ACTIONS(1221), + [anon_sym_volatile] = ACTIONS(1221), + [anon_sym_restrict] = ACTIONS(1221), + [anon_sym___restrict__] = ACTIONS(1221), + [anon_sym__Atomic] = ACTIONS(1221), + [anon_sym__Noreturn] = ACTIONS(1221), + [anon_sym_noreturn] = ACTIONS(1221), + [anon_sym_alignas] = ACTIONS(1221), + [anon_sym__Alignas] = ACTIONS(1221), + [sym_primitive_type] = ACTIONS(1221), + [anon_sym_enum] = ACTIONS(1221), + [anon_sym_struct] = ACTIONS(1221), + [anon_sym_union] = ACTIONS(1221), + [anon_sym_if] = ACTIONS(1221), + [anon_sym_else] = ACTIONS(1221), + [anon_sym_switch] = ACTIONS(1221), + [anon_sym_case] = ACTIONS(1221), + [anon_sym_default] = ACTIONS(1221), + [anon_sym_while] = ACTIONS(1221), + [anon_sym_do] = ACTIONS(1221), + [anon_sym_for] = ACTIONS(1221), + [anon_sym_return] = ACTIONS(1221), + [anon_sym_break] = ACTIONS(1221), + [anon_sym_continue] = ACTIONS(1221), + [anon_sym_goto] = ACTIONS(1221), + [anon_sym___try] = ACTIONS(1221), + [anon_sym___leave] = ACTIONS(1221), + [anon_sym_DASH_DASH] = ACTIONS(1223), + [anon_sym_PLUS_PLUS] = ACTIONS(1223), + [anon_sym_sizeof] = ACTIONS(1221), + [anon_sym___alignof__] = ACTIONS(1221), + [anon_sym___alignof] = ACTIONS(1221), + [anon_sym__alignof] = ACTIONS(1221), + [anon_sym_alignof] = ACTIONS(1221), + [anon_sym__Alignof] = ACTIONS(1221), + [anon_sym_offsetof] = ACTIONS(1221), + [anon_sym__Generic] = ACTIONS(1221), + [anon_sym_asm] = ACTIONS(1221), + [anon_sym___asm__] = ACTIONS(1221), + [sym_number_literal] = ACTIONS(1223), + [anon_sym_L_SQUOTE] = ACTIONS(1223), + [anon_sym_u_SQUOTE] = ACTIONS(1223), + [anon_sym_U_SQUOTE] = ACTIONS(1223), + [anon_sym_u8_SQUOTE] = ACTIONS(1223), + [anon_sym_SQUOTE] = ACTIONS(1223), + [anon_sym_L_DQUOTE] = ACTIONS(1223), + [anon_sym_u_DQUOTE] = ACTIONS(1223), + [anon_sym_U_DQUOTE] = ACTIONS(1223), + [anon_sym_u8_DQUOTE] = ACTIONS(1223), + [anon_sym_DQUOTE] = ACTIONS(1223), + [sym_true] = ACTIONS(1221), + [sym_false] = ACTIONS(1221), + [anon_sym_NULL] = ACTIONS(1221), + [anon_sym_nullptr] = ACTIONS(1221), [sym_comment] = ACTIONS(3), }, - [165] = { - [sym_identifier] = ACTIONS(1237), - [aux_sym_preproc_include_token1] = ACTIONS(1237), - [aux_sym_preproc_def_token1] = ACTIONS(1237), - [aux_sym_preproc_if_token1] = ACTIONS(1237), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1237), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1237), - [sym_preproc_directive] = ACTIONS(1237), - [anon_sym_LPAREN2] = ACTIONS(1239), - [anon_sym_BANG] = ACTIONS(1239), - [anon_sym_TILDE] = ACTIONS(1239), - [anon_sym_DASH] = ACTIONS(1237), - [anon_sym_PLUS] = ACTIONS(1237), - [anon_sym_STAR] = ACTIONS(1239), - [anon_sym_AMP] = ACTIONS(1239), - [anon_sym_SEMI] = ACTIONS(1239), - [anon_sym___extension__] = ACTIONS(1237), - [anon_sym_typedef] = ACTIONS(1237), - [anon_sym_extern] = ACTIONS(1237), - [anon_sym___attribute__] = ACTIONS(1237), - [anon_sym___scanf] = ACTIONS(1237), - [anon_sym___printf] = ACTIONS(1237), - [anon_sym___read_mostly] = ACTIONS(1237), - [anon_sym___must_hold] = ACTIONS(1237), - [anon_sym___ro_after_init] = ACTIONS(1237), - [anon_sym___init] = ACTIONS(1237), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1239), - [anon_sym___declspec] = ACTIONS(1237), - [anon_sym___cdecl] = ACTIONS(1237), - [anon_sym___clrcall] = ACTIONS(1237), - [anon_sym___stdcall] = ACTIONS(1237), - [anon_sym___fastcall] = ACTIONS(1237), - [anon_sym___thiscall] = ACTIONS(1237), - [anon_sym___vectorcall] = ACTIONS(1237), - [anon_sym_LBRACE] = ACTIONS(1239), - [anon_sym_RBRACE] = ACTIONS(1239), - [anon_sym_signed] = ACTIONS(1237), - [anon_sym_unsigned] = ACTIONS(1237), - [anon_sym_long] = ACTIONS(1237), - [anon_sym_short] = ACTIONS(1237), - [anon_sym_static] = ACTIONS(1237), - [anon_sym_auto] = ACTIONS(1237), - [anon_sym_register] = ACTIONS(1237), - [anon_sym_inline] = ACTIONS(1237), - [anon_sym___inline] = ACTIONS(1237), - [anon_sym___inline__] = ACTIONS(1237), - [anon_sym___forceinline] = ACTIONS(1237), - [anon_sym_thread_local] = ACTIONS(1237), - [anon_sym___thread] = ACTIONS(1237), - [anon_sym_const] = ACTIONS(1237), - [anon_sym_constexpr] = ACTIONS(1237), - [anon_sym_volatile] = ACTIONS(1237), - [anon_sym_restrict] = ACTIONS(1237), - [anon_sym___restrict__] = ACTIONS(1237), - [anon_sym__Atomic] = ACTIONS(1237), - [anon_sym__Noreturn] = ACTIONS(1237), - [anon_sym_noreturn] = ACTIONS(1237), - [anon_sym_alignas] = ACTIONS(1237), - [anon_sym__Alignas] = ACTIONS(1237), - [sym_primitive_type] = ACTIONS(1237), - [anon_sym_enum] = ACTIONS(1237), - [anon_sym_struct] = ACTIONS(1237), - [anon_sym_union] = ACTIONS(1237), - [anon_sym_if] = ACTIONS(1237), - [anon_sym_else] = ACTIONS(1237), - [anon_sym_switch] = ACTIONS(1237), - [anon_sym_case] = ACTIONS(1237), - [anon_sym_default] = ACTIONS(1237), - [anon_sym_while] = ACTIONS(1237), - [anon_sym_do] = ACTIONS(1237), - [anon_sym_for] = ACTIONS(1237), - [anon_sym_return] = ACTIONS(1237), - [anon_sym_break] = ACTIONS(1237), - [anon_sym_continue] = ACTIONS(1237), - [anon_sym_goto] = ACTIONS(1237), - [anon_sym___try] = ACTIONS(1237), - [anon_sym___leave] = ACTIONS(1237), - [anon_sym_DASH_DASH] = ACTIONS(1239), - [anon_sym_PLUS_PLUS] = ACTIONS(1239), - [anon_sym_sizeof] = ACTIONS(1237), - [anon_sym___alignof__] = ACTIONS(1237), - [anon_sym___alignof] = ACTIONS(1237), - [anon_sym__alignof] = ACTIONS(1237), - [anon_sym_alignof] = ACTIONS(1237), - [anon_sym__Alignof] = ACTIONS(1237), - [anon_sym_offsetof] = ACTIONS(1237), - [anon_sym__Generic] = ACTIONS(1237), - [anon_sym_asm] = ACTIONS(1237), - [anon_sym___asm__] = ACTIONS(1237), - [sym_number_literal] = ACTIONS(1239), - [anon_sym_L_SQUOTE] = ACTIONS(1239), - [anon_sym_u_SQUOTE] = ACTIONS(1239), - [anon_sym_U_SQUOTE] = ACTIONS(1239), - [anon_sym_u8_SQUOTE] = ACTIONS(1239), - [anon_sym_SQUOTE] = ACTIONS(1239), - [anon_sym_L_DQUOTE] = ACTIONS(1239), - [anon_sym_u_DQUOTE] = ACTIONS(1239), - [anon_sym_U_DQUOTE] = ACTIONS(1239), - [anon_sym_u8_DQUOTE] = ACTIONS(1239), - [anon_sym_DQUOTE] = ACTIONS(1239), - [sym_true] = ACTIONS(1237), - [sym_false] = ACTIONS(1237), - [anon_sym_NULL] = ACTIONS(1237), - [anon_sym_nullptr] = ACTIONS(1237), + [180] = { + [ts_builtin_sym_end] = ACTIONS(1159), + [sym_identifier] = ACTIONS(1157), + [aux_sym_preproc_include_token1] = ACTIONS(1157), + [aux_sym_preproc_def_token1] = ACTIONS(1157), + [aux_sym_preproc_if_token1] = ACTIONS(1157), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1157), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1157), + [sym_preproc_directive] = ACTIONS(1157), + [anon_sym_LPAREN2] = ACTIONS(1159), + [anon_sym_BANG] = ACTIONS(1159), + [anon_sym_TILDE] = ACTIONS(1159), + [anon_sym_DASH] = ACTIONS(1157), + [anon_sym_PLUS] = ACTIONS(1157), + [anon_sym_STAR] = ACTIONS(1159), + [anon_sym_AMP] = ACTIONS(1159), + [anon_sym_SEMI] = ACTIONS(1159), + [anon_sym___extension__] = ACTIONS(1157), + [anon_sym_typedef] = ACTIONS(1157), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym___attribute__] = ACTIONS(1157), + [anon_sym___scanf] = ACTIONS(1157), + [anon_sym___printf] = ACTIONS(1157), + [anon_sym___read_mostly] = ACTIONS(1157), + [anon_sym___must_hold] = ACTIONS(1157), + [anon_sym___ro_after_init] = ACTIONS(1157), + [anon_sym___noreturn] = ACTIONS(1157), + [anon_sym___cold] = ACTIONS(1157), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1159), + [anon_sym___declspec] = ACTIONS(1157), + [anon_sym___init] = ACTIONS(1157), + [anon_sym___exit] = ACTIONS(1157), + [anon_sym___cdecl] = ACTIONS(1157), + [anon_sym___clrcall] = ACTIONS(1157), + [anon_sym___stdcall] = ACTIONS(1157), + [anon_sym___fastcall] = ACTIONS(1157), + [anon_sym___thiscall] = ACTIONS(1157), + [anon_sym___vectorcall] = ACTIONS(1157), + [anon_sym_LBRACE] = ACTIONS(1159), + [anon_sym_signed] = ACTIONS(1157), + [anon_sym_unsigned] = ACTIONS(1157), + [anon_sym_long] = ACTIONS(1157), + [anon_sym_short] = ACTIONS(1157), + [anon_sym_static] = ACTIONS(1157), + [anon_sym_auto] = ACTIONS(1157), + [anon_sym_register] = ACTIONS(1157), + [anon_sym_inline] = ACTIONS(1157), + [anon_sym___inline] = ACTIONS(1157), + [anon_sym___inline__] = ACTIONS(1157), + [anon_sym___forceinline] = ACTIONS(1157), + [anon_sym_thread_local] = ACTIONS(1157), + [anon_sym___thread] = ACTIONS(1157), + [anon_sym_const] = ACTIONS(1157), + [anon_sym_constexpr] = ACTIONS(1157), + [anon_sym_volatile] = ACTIONS(1157), + [anon_sym_restrict] = ACTIONS(1157), + [anon_sym___restrict__] = ACTIONS(1157), + [anon_sym__Atomic] = ACTIONS(1157), + [anon_sym__Noreturn] = ACTIONS(1157), + [anon_sym_noreturn] = ACTIONS(1157), + [anon_sym_alignas] = ACTIONS(1157), + [anon_sym__Alignas] = ACTIONS(1157), + [sym_primitive_type] = ACTIONS(1157), + [anon_sym_enum] = ACTIONS(1157), + [anon_sym_struct] = ACTIONS(1157), + [anon_sym_union] = ACTIONS(1157), + [anon_sym_if] = ACTIONS(1157), + [anon_sym_else] = ACTIONS(1157), + [anon_sym_switch] = ACTIONS(1157), + [anon_sym_case] = ACTIONS(1157), + [anon_sym_default] = ACTIONS(1157), + [anon_sym_while] = ACTIONS(1157), + [anon_sym_do] = ACTIONS(1157), + [anon_sym_for] = ACTIONS(1157), + [anon_sym_return] = ACTIONS(1157), + [anon_sym_break] = ACTIONS(1157), + [anon_sym_continue] = ACTIONS(1157), + [anon_sym_goto] = ACTIONS(1157), + [anon_sym___try] = ACTIONS(1157), + [anon_sym___leave] = ACTIONS(1157), + [anon_sym_DASH_DASH] = ACTIONS(1159), + [anon_sym_PLUS_PLUS] = ACTIONS(1159), + [anon_sym_sizeof] = ACTIONS(1157), + [anon_sym___alignof__] = ACTIONS(1157), + [anon_sym___alignof] = ACTIONS(1157), + [anon_sym__alignof] = ACTIONS(1157), + [anon_sym_alignof] = ACTIONS(1157), + [anon_sym__Alignof] = ACTIONS(1157), + [anon_sym_offsetof] = ACTIONS(1157), + [anon_sym__Generic] = ACTIONS(1157), + [anon_sym_asm] = ACTIONS(1157), + [anon_sym___asm__] = ACTIONS(1157), + [sym_number_literal] = ACTIONS(1159), + [anon_sym_L_SQUOTE] = ACTIONS(1159), + [anon_sym_u_SQUOTE] = ACTIONS(1159), + [anon_sym_U_SQUOTE] = ACTIONS(1159), + [anon_sym_u8_SQUOTE] = ACTIONS(1159), + [anon_sym_SQUOTE] = ACTIONS(1159), + [anon_sym_L_DQUOTE] = ACTIONS(1159), + [anon_sym_u_DQUOTE] = ACTIONS(1159), + [anon_sym_U_DQUOTE] = ACTIONS(1159), + [anon_sym_u8_DQUOTE] = ACTIONS(1159), + [anon_sym_DQUOTE] = ACTIONS(1159), + [sym_true] = ACTIONS(1157), + [sym_false] = ACTIONS(1157), + [anon_sym_NULL] = ACTIONS(1157), + [anon_sym_nullptr] = ACTIONS(1157), [sym_comment] = ACTIONS(3), }, - [166] = { + [181] = { [sym_identifier] = ACTIONS(1229), [aux_sym_preproc_include_token1] = ACTIONS(1229), [aux_sym_preproc_def_token1] = ACTIONS(1229), @@ -34408,9 +37255,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___read_mostly] = ACTIONS(1229), [anon_sym___must_hold] = ACTIONS(1229), [anon_sym___ro_after_init] = ACTIONS(1229), - [anon_sym___init] = ACTIONS(1229), + [anon_sym___noreturn] = ACTIONS(1229), + [anon_sym___cold] = ACTIONS(1229), [anon_sym_LBRACK_LBRACK] = ACTIONS(1231), [anon_sym___declspec] = ACTIONS(1229), + [anon_sym___init] = ACTIONS(1229), + [anon_sym___exit] = ACTIONS(1229), [anon_sym___cdecl] = ACTIONS(1229), [anon_sym___clrcall] = ACTIONS(1229), [anon_sym___stdcall] = ACTIONS(1229), @@ -34489,219 +37339,443 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1229), [sym_comment] = ACTIONS(3), }, - [167] = { - [sym_identifier] = ACTIONS(1169), - [aux_sym_preproc_include_token1] = ACTIONS(1169), - [aux_sym_preproc_def_token1] = ACTIONS(1169), - [aux_sym_preproc_if_token1] = ACTIONS(1169), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1169), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1169), - [sym_preproc_directive] = ACTIONS(1169), - [anon_sym_LPAREN2] = ACTIONS(1171), - [anon_sym_BANG] = ACTIONS(1171), - [anon_sym_TILDE] = ACTIONS(1171), - [anon_sym_DASH] = ACTIONS(1169), - [anon_sym_PLUS] = ACTIONS(1169), - [anon_sym_STAR] = ACTIONS(1171), - [anon_sym_AMP] = ACTIONS(1171), - [anon_sym_SEMI] = ACTIONS(1171), - [anon_sym___extension__] = ACTIONS(1169), - [anon_sym_typedef] = ACTIONS(1169), - [anon_sym_extern] = ACTIONS(1169), - [anon_sym___attribute__] = ACTIONS(1169), - [anon_sym___scanf] = ACTIONS(1169), - [anon_sym___printf] = ACTIONS(1169), - [anon_sym___read_mostly] = ACTIONS(1169), - [anon_sym___must_hold] = ACTIONS(1169), - [anon_sym___ro_after_init] = ACTIONS(1169), - [anon_sym___init] = ACTIONS(1169), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1171), - [anon_sym___declspec] = ACTIONS(1169), - [anon_sym___cdecl] = ACTIONS(1169), - [anon_sym___clrcall] = ACTIONS(1169), - [anon_sym___stdcall] = ACTIONS(1169), - [anon_sym___fastcall] = ACTIONS(1169), - [anon_sym___thiscall] = ACTIONS(1169), - [anon_sym___vectorcall] = ACTIONS(1169), - [anon_sym_LBRACE] = ACTIONS(1171), - [anon_sym_RBRACE] = ACTIONS(1171), - [anon_sym_signed] = ACTIONS(1169), - [anon_sym_unsigned] = ACTIONS(1169), - [anon_sym_long] = ACTIONS(1169), - [anon_sym_short] = ACTIONS(1169), - [anon_sym_static] = ACTIONS(1169), - [anon_sym_auto] = ACTIONS(1169), - [anon_sym_register] = ACTIONS(1169), - [anon_sym_inline] = ACTIONS(1169), - [anon_sym___inline] = ACTIONS(1169), - [anon_sym___inline__] = ACTIONS(1169), - [anon_sym___forceinline] = ACTIONS(1169), - [anon_sym_thread_local] = ACTIONS(1169), - [anon_sym___thread] = ACTIONS(1169), - [anon_sym_const] = ACTIONS(1169), - [anon_sym_constexpr] = ACTIONS(1169), - [anon_sym_volatile] = ACTIONS(1169), - [anon_sym_restrict] = ACTIONS(1169), - [anon_sym___restrict__] = ACTIONS(1169), - [anon_sym__Atomic] = ACTIONS(1169), - [anon_sym__Noreturn] = ACTIONS(1169), - [anon_sym_noreturn] = ACTIONS(1169), - [anon_sym_alignas] = ACTIONS(1169), - [anon_sym__Alignas] = ACTIONS(1169), - [sym_primitive_type] = ACTIONS(1169), - [anon_sym_enum] = ACTIONS(1169), - [anon_sym_struct] = ACTIONS(1169), - [anon_sym_union] = ACTIONS(1169), - [anon_sym_if] = ACTIONS(1169), - [anon_sym_else] = ACTIONS(1169), - [anon_sym_switch] = ACTIONS(1169), - [anon_sym_case] = ACTIONS(1169), - [anon_sym_default] = ACTIONS(1169), - [anon_sym_while] = ACTIONS(1169), - [anon_sym_do] = ACTIONS(1169), - [anon_sym_for] = ACTIONS(1169), - [anon_sym_return] = ACTIONS(1169), - [anon_sym_break] = ACTIONS(1169), - [anon_sym_continue] = ACTIONS(1169), - [anon_sym_goto] = ACTIONS(1169), - [anon_sym___try] = ACTIONS(1169), - [anon_sym___leave] = ACTIONS(1169), - [anon_sym_DASH_DASH] = ACTIONS(1171), - [anon_sym_PLUS_PLUS] = ACTIONS(1171), - [anon_sym_sizeof] = ACTIONS(1169), - [anon_sym___alignof__] = ACTIONS(1169), - [anon_sym___alignof] = ACTIONS(1169), - [anon_sym__alignof] = ACTIONS(1169), - [anon_sym_alignof] = ACTIONS(1169), - [anon_sym__Alignof] = ACTIONS(1169), - [anon_sym_offsetof] = ACTIONS(1169), - [anon_sym__Generic] = ACTIONS(1169), - [anon_sym_asm] = ACTIONS(1169), - [anon_sym___asm__] = ACTIONS(1169), - [sym_number_literal] = ACTIONS(1171), - [anon_sym_L_SQUOTE] = ACTIONS(1171), - [anon_sym_u_SQUOTE] = ACTIONS(1171), - [anon_sym_U_SQUOTE] = ACTIONS(1171), - [anon_sym_u8_SQUOTE] = ACTIONS(1171), - [anon_sym_SQUOTE] = ACTIONS(1171), - [anon_sym_L_DQUOTE] = ACTIONS(1171), - [anon_sym_u_DQUOTE] = ACTIONS(1171), - [anon_sym_U_DQUOTE] = ACTIONS(1171), - [anon_sym_u8_DQUOTE] = ACTIONS(1171), - [anon_sym_DQUOTE] = ACTIONS(1171), - [sym_true] = ACTIONS(1169), - [sym_false] = ACTIONS(1169), - [anon_sym_NULL] = ACTIONS(1169), - [anon_sym_nullptr] = ACTIONS(1169), + [182] = { + [sym_identifier] = ACTIONS(1245), + [aux_sym_preproc_include_token1] = ACTIONS(1245), + [aux_sym_preproc_def_token1] = ACTIONS(1245), + [aux_sym_preproc_if_token1] = ACTIONS(1245), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1245), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1245), + [sym_preproc_directive] = ACTIONS(1245), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(1247), + [anon_sym_TILDE] = ACTIONS(1247), + [anon_sym_DASH] = ACTIONS(1245), + [anon_sym_PLUS] = ACTIONS(1245), + [anon_sym_STAR] = ACTIONS(1247), + [anon_sym_AMP] = ACTIONS(1247), + [anon_sym_SEMI] = ACTIONS(1247), + [anon_sym___extension__] = ACTIONS(1245), + [anon_sym_typedef] = ACTIONS(1245), + [anon_sym_extern] = ACTIONS(1245), + [anon_sym___attribute__] = ACTIONS(1245), + [anon_sym___scanf] = ACTIONS(1245), + [anon_sym___printf] = ACTIONS(1245), + [anon_sym___read_mostly] = ACTIONS(1245), + [anon_sym___must_hold] = ACTIONS(1245), + [anon_sym___ro_after_init] = ACTIONS(1245), + [anon_sym___noreturn] = ACTIONS(1245), + [anon_sym___cold] = ACTIONS(1245), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1247), + [anon_sym___declspec] = ACTIONS(1245), + [anon_sym___init] = ACTIONS(1245), + [anon_sym___exit] = ACTIONS(1245), + [anon_sym___cdecl] = ACTIONS(1245), + [anon_sym___clrcall] = ACTIONS(1245), + [anon_sym___stdcall] = ACTIONS(1245), + [anon_sym___fastcall] = ACTIONS(1245), + [anon_sym___thiscall] = ACTIONS(1245), + [anon_sym___vectorcall] = ACTIONS(1245), + [anon_sym_LBRACE] = ACTIONS(1247), + [anon_sym_RBRACE] = ACTIONS(1247), + [anon_sym_signed] = ACTIONS(1245), + [anon_sym_unsigned] = ACTIONS(1245), + [anon_sym_long] = ACTIONS(1245), + [anon_sym_short] = ACTIONS(1245), + [anon_sym_static] = ACTIONS(1245), + [anon_sym_auto] = ACTIONS(1245), + [anon_sym_register] = ACTIONS(1245), + [anon_sym_inline] = ACTIONS(1245), + [anon_sym___inline] = ACTIONS(1245), + [anon_sym___inline__] = ACTIONS(1245), + [anon_sym___forceinline] = ACTIONS(1245), + [anon_sym_thread_local] = ACTIONS(1245), + [anon_sym___thread] = ACTIONS(1245), + [anon_sym_const] = ACTIONS(1245), + [anon_sym_constexpr] = ACTIONS(1245), + [anon_sym_volatile] = ACTIONS(1245), + [anon_sym_restrict] = ACTIONS(1245), + [anon_sym___restrict__] = ACTIONS(1245), + [anon_sym__Atomic] = ACTIONS(1245), + [anon_sym__Noreturn] = ACTIONS(1245), + [anon_sym_noreturn] = ACTIONS(1245), + [anon_sym_alignas] = ACTIONS(1245), + [anon_sym__Alignas] = ACTIONS(1245), + [sym_primitive_type] = ACTIONS(1245), + [anon_sym_enum] = ACTIONS(1245), + [anon_sym_struct] = ACTIONS(1245), + [anon_sym_union] = ACTIONS(1245), + [anon_sym_if] = ACTIONS(1245), + [anon_sym_else] = ACTIONS(1245), + [anon_sym_switch] = ACTIONS(1245), + [anon_sym_case] = ACTIONS(1245), + [anon_sym_default] = ACTIONS(1245), + [anon_sym_while] = ACTIONS(1245), + [anon_sym_do] = ACTIONS(1245), + [anon_sym_for] = ACTIONS(1245), + [anon_sym_return] = ACTIONS(1245), + [anon_sym_break] = ACTIONS(1245), + [anon_sym_continue] = ACTIONS(1245), + [anon_sym_goto] = ACTIONS(1245), + [anon_sym___try] = ACTIONS(1245), + [anon_sym___leave] = ACTIONS(1245), + [anon_sym_DASH_DASH] = ACTIONS(1247), + [anon_sym_PLUS_PLUS] = ACTIONS(1247), + [anon_sym_sizeof] = ACTIONS(1245), + [anon_sym___alignof__] = ACTIONS(1245), + [anon_sym___alignof] = ACTIONS(1245), + [anon_sym__alignof] = ACTIONS(1245), + [anon_sym_alignof] = ACTIONS(1245), + [anon_sym__Alignof] = ACTIONS(1245), + [anon_sym_offsetof] = ACTIONS(1245), + [anon_sym__Generic] = ACTIONS(1245), + [anon_sym_asm] = ACTIONS(1245), + [anon_sym___asm__] = ACTIONS(1245), + [sym_number_literal] = ACTIONS(1247), + [anon_sym_L_SQUOTE] = ACTIONS(1247), + [anon_sym_u_SQUOTE] = ACTIONS(1247), + [anon_sym_U_SQUOTE] = ACTIONS(1247), + [anon_sym_u8_SQUOTE] = ACTIONS(1247), + [anon_sym_SQUOTE] = ACTIONS(1247), + [anon_sym_L_DQUOTE] = ACTIONS(1247), + [anon_sym_u_DQUOTE] = ACTIONS(1247), + [anon_sym_U_DQUOTE] = ACTIONS(1247), + [anon_sym_u8_DQUOTE] = ACTIONS(1247), + [anon_sym_DQUOTE] = ACTIONS(1247), + [sym_true] = ACTIONS(1245), + [sym_false] = ACTIONS(1245), + [anon_sym_NULL] = ACTIONS(1245), + [anon_sym_nullptr] = ACTIONS(1245), [sym_comment] = ACTIONS(3), }, - [168] = { - [sym_identifier] = ACTIONS(1173), - [aux_sym_preproc_include_token1] = ACTIONS(1173), - [aux_sym_preproc_def_token1] = ACTIONS(1173), - [aux_sym_preproc_if_token1] = ACTIONS(1173), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1173), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1173), - [sym_preproc_directive] = ACTIONS(1173), - [anon_sym_LPAREN2] = ACTIONS(1175), - [anon_sym_BANG] = ACTIONS(1175), - [anon_sym_TILDE] = ACTIONS(1175), - [anon_sym_DASH] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1173), - [anon_sym_STAR] = ACTIONS(1175), - [anon_sym_AMP] = ACTIONS(1175), - [anon_sym_SEMI] = ACTIONS(1175), - [anon_sym___extension__] = ACTIONS(1173), - [anon_sym_typedef] = ACTIONS(1173), - [anon_sym_extern] = ACTIONS(1173), - [anon_sym___attribute__] = ACTIONS(1173), - [anon_sym___scanf] = ACTIONS(1173), - [anon_sym___printf] = ACTIONS(1173), - [anon_sym___read_mostly] = ACTIONS(1173), - [anon_sym___must_hold] = ACTIONS(1173), - [anon_sym___ro_after_init] = ACTIONS(1173), - [anon_sym___init] = ACTIONS(1173), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1175), - [anon_sym___declspec] = ACTIONS(1173), - [anon_sym___cdecl] = ACTIONS(1173), - [anon_sym___clrcall] = ACTIONS(1173), - [anon_sym___stdcall] = ACTIONS(1173), - [anon_sym___fastcall] = ACTIONS(1173), - [anon_sym___thiscall] = ACTIONS(1173), - [anon_sym___vectorcall] = ACTIONS(1173), - [anon_sym_LBRACE] = ACTIONS(1175), - [anon_sym_RBRACE] = ACTIONS(1175), - [anon_sym_signed] = ACTIONS(1173), - [anon_sym_unsigned] = ACTIONS(1173), - [anon_sym_long] = ACTIONS(1173), - [anon_sym_short] = ACTIONS(1173), - [anon_sym_static] = ACTIONS(1173), - [anon_sym_auto] = ACTIONS(1173), - [anon_sym_register] = ACTIONS(1173), - [anon_sym_inline] = ACTIONS(1173), - [anon_sym___inline] = ACTIONS(1173), - [anon_sym___inline__] = ACTIONS(1173), - [anon_sym___forceinline] = ACTIONS(1173), - [anon_sym_thread_local] = ACTIONS(1173), - [anon_sym___thread] = ACTIONS(1173), - [anon_sym_const] = ACTIONS(1173), - [anon_sym_constexpr] = ACTIONS(1173), - [anon_sym_volatile] = ACTIONS(1173), - [anon_sym_restrict] = ACTIONS(1173), - [anon_sym___restrict__] = ACTIONS(1173), - [anon_sym__Atomic] = ACTIONS(1173), - [anon_sym__Noreturn] = ACTIONS(1173), - [anon_sym_noreturn] = ACTIONS(1173), - [anon_sym_alignas] = ACTIONS(1173), - [anon_sym__Alignas] = ACTIONS(1173), - [sym_primitive_type] = ACTIONS(1173), - [anon_sym_enum] = ACTIONS(1173), - [anon_sym_struct] = ACTIONS(1173), - [anon_sym_union] = ACTIONS(1173), - [anon_sym_if] = ACTIONS(1173), - [anon_sym_else] = ACTIONS(1173), - [anon_sym_switch] = ACTIONS(1173), - [anon_sym_case] = ACTIONS(1173), - [anon_sym_default] = ACTIONS(1173), - [anon_sym_while] = ACTIONS(1173), - [anon_sym_do] = ACTIONS(1173), - [anon_sym_for] = ACTIONS(1173), - [anon_sym_return] = ACTIONS(1173), - [anon_sym_break] = ACTIONS(1173), - [anon_sym_continue] = ACTIONS(1173), - [anon_sym_goto] = ACTIONS(1173), - [anon_sym___try] = ACTIONS(1173), - [anon_sym___leave] = ACTIONS(1173), - [anon_sym_DASH_DASH] = ACTIONS(1175), - [anon_sym_PLUS_PLUS] = ACTIONS(1175), - [anon_sym_sizeof] = ACTIONS(1173), - [anon_sym___alignof__] = ACTIONS(1173), - [anon_sym___alignof] = ACTIONS(1173), - [anon_sym__alignof] = ACTIONS(1173), - [anon_sym_alignof] = ACTIONS(1173), - [anon_sym__Alignof] = ACTIONS(1173), - [anon_sym_offsetof] = ACTIONS(1173), - [anon_sym__Generic] = ACTIONS(1173), - [anon_sym_asm] = ACTIONS(1173), - [anon_sym___asm__] = ACTIONS(1173), - [sym_number_literal] = ACTIONS(1175), - [anon_sym_L_SQUOTE] = ACTIONS(1175), - [anon_sym_u_SQUOTE] = ACTIONS(1175), - [anon_sym_U_SQUOTE] = ACTIONS(1175), - [anon_sym_u8_SQUOTE] = ACTIONS(1175), - [anon_sym_SQUOTE] = ACTIONS(1175), - [anon_sym_L_DQUOTE] = ACTIONS(1175), - [anon_sym_u_DQUOTE] = ACTIONS(1175), - [anon_sym_U_DQUOTE] = ACTIONS(1175), - [anon_sym_u8_DQUOTE] = ACTIONS(1175), - [anon_sym_DQUOTE] = ACTIONS(1175), - [sym_true] = ACTIONS(1173), - [sym_false] = ACTIONS(1173), - [anon_sym_NULL] = ACTIONS(1173), - [anon_sym_nullptr] = ACTIONS(1173), + [183] = { + [sym_identifier] = ACTIONS(1257), + [aux_sym_preproc_include_token1] = ACTIONS(1257), + [aux_sym_preproc_def_token1] = ACTIONS(1257), + [aux_sym_preproc_if_token1] = ACTIONS(1257), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1257), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1257), + [sym_preproc_directive] = ACTIONS(1257), + [anon_sym_LPAREN2] = ACTIONS(1259), + [anon_sym_BANG] = ACTIONS(1259), + [anon_sym_TILDE] = ACTIONS(1259), + [anon_sym_DASH] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(1257), + [anon_sym_STAR] = ACTIONS(1259), + [anon_sym_AMP] = ACTIONS(1259), + [anon_sym_SEMI] = ACTIONS(1259), + [anon_sym___extension__] = ACTIONS(1257), + [anon_sym_typedef] = ACTIONS(1257), + [anon_sym_extern] = ACTIONS(1257), + [anon_sym___attribute__] = ACTIONS(1257), + [anon_sym___scanf] = ACTIONS(1257), + [anon_sym___printf] = ACTIONS(1257), + [anon_sym___read_mostly] = ACTIONS(1257), + [anon_sym___must_hold] = ACTIONS(1257), + [anon_sym___ro_after_init] = ACTIONS(1257), + [anon_sym___noreturn] = ACTIONS(1257), + [anon_sym___cold] = ACTIONS(1257), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1259), + [anon_sym___declspec] = ACTIONS(1257), + [anon_sym___init] = ACTIONS(1257), + [anon_sym___exit] = ACTIONS(1257), + [anon_sym___cdecl] = ACTIONS(1257), + [anon_sym___clrcall] = ACTIONS(1257), + [anon_sym___stdcall] = ACTIONS(1257), + [anon_sym___fastcall] = ACTIONS(1257), + [anon_sym___thiscall] = ACTIONS(1257), + [anon_sym___vectorcall] = ACTIONS(1257), + [anon_sym_LBRACE] = ACTIONS(1259), + [anon_sym_RBRACE] = ACTIONS(1259), + [anon_sym_signed] = ACTIONS(1257), + [anon_sym_unsigned] = ACTIONS(1257), + [anon_sym_long] = ACTIONS(1257), + [anon_sym_short] = ACTIONS(1257), + [anon_sym_static] = ACTIONS(1257), + [anon_sym_auto] = ACTIONS(1257), + [anon_sym_register] = ACTIONS(1257), + [anon_sym_inline] = ACTIONS(1257), + [anon_sym___inline] = ACTIONS(1257), + [anon_sym___inline__] = ACTIONS(1257), + [anon_sym___forceinline] = ACTIONS(1257), + [anon_sym_thread_local] = ACTIONS(1257), + [anon_sym___thread] = ACTIONS(1257), + [anon_sym_const] = ACTIONS(1257), + [anon_sym_constexpr] = ACTIONS(1257), + [anon_sym_volatile] = ACTIONS(1257), + [anon_sym_restrict] = ACTIONS(1257), + [anon_sym___restrict__] = ACTIONS(1257), + [anon_sym__Atomic] = ACTIONS(1257), + [anon_sym__Noreturn] = ACTIONS(1257), + [anon_sym_noreturn] = ACTIONS(1257), + [anon_sym_alignas] = ACTIONS(1257), + [anon_sym__Alignas] = ACTIONS(1257), + [sym_primitive_type] = ACTIONS(1257), + [anon_sym_enum] = ACTIONS(1257), + [anon_sym_struct] = ACTIONS(1257), + [anon_sym_union] = ACTIONS(1257), + [anon_sym_if] = ACTIONS(1257), + [anon_sym_else] = ACTIONS(1257), + [anon_sym_switch] = ACTIONS(1257), + [anon_sym_case] = ACTIONS(1257), + [anon_sym_default] = ACTIONS(1257), + [anon_sym_while] = ACTIONS(1257), + [anon_sym_do] = ACTIONS(1257), + [anon_sym_for] = ACTIONS(1257), + [anon_sym_return] = ACTIONS(1257), + [anon_sym_break] = ACTIONS(1257), + [anon_sym_continue] = ACTIONS(1257), + [anon_sym_goto] = ACTIONS(1257), + [anon_sym___try] = ACTIONS(1257), + [anon_sym___leave] = ACTIONS(1257), + [anon_sym_DASH_DASH] = ACTIONS(1259), + [anon_sym_PLUS_PLUS] = ACTIONS(1259), + [anon_sym_sizeof] = ACTIONS(1257), + [anon_sym___alignof__] = ACTIONS(1257), + [anon_sym___alignof] = ACTIONS(1257), + [anon_sym__alignof] = ACTIONS(1257), + [anon_sym_alignof] = ACTIONS(1257), + [anon_sym__Alignof] = ACTIONS(1257), + [anon_sym_offsetof] = ACTIONS(1257), + [anon_sym__Generic] = ACTIONS(1257), + [anon_sym_asm] = ACTIONS(1257), + [anon_sym___asm__] = ACTIONS(1257), + [sym_number_literal] = ACTIONS(1259), + [anon_sym_L_SQUOTE] = ACTIONS(1259), + [anon_sym_u_SQUOTE] = ACTIONS(1259), + [anon_sym_U_SQUOTE] = ACTIONS(1259), + [anon_sym_u8_SQUOTE] = ACTIONS(1259), + [anon_sym_SQUOTE] = ACTIONS(1259), + [anon_sym_L_DQUOTE] = ACTIONS(1259), + [anon_sym_u_DQUOTE] = ACTIONS(1259), + [anon_sym_U_DQUOTE] = ACTIONS(1259), + [anon_sym_u8_DQUOTE] = ACTIONS(1259), + [anon_sym_DQUOTE] = ACTIONS(1259), + [sym_true] = ACTIONS(1257), + [sym_false] = ACTIONS(1257), + [anon_sym_NULL] = ACTIONS(1257), + [anon_sym_nullptr] = ACTIONS(1257), + [sym_comment] = ACTIONS(3), + }, + [184] = { + [ts_builtin_sym_end] = ACTIONS(1251), + [sym_identifier] = ACTIONS(1249), + [aux_sym_preproc_include_token1] = ACTIONS(1249), + [aux_sym_preproc_def_token1] = ACTIONS(1249), + [aux_sym_preproc_if_token1] = ACTIONS(1249), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1249), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1249), + [sym_preproc_directive] = ACTIONS(1249), + [anon_sym_LPAREN2] = ACTIONS(1251), + [anon_sym_BANG] = ACTIONS(1251), + [anon_sym_TILDE] = ACTIONS(1251), + [anon_sym_DASH] = ACTIONS(1249), + [anon_sym_PLUS] = ACTIONS(1249), + [anon_sym_STAR] = ACTIONS(1251), + [anon_sym_AMP] = ACTIONS(1251), + [anon_sym_SEMI] = ACTIONS(1251), + [anon_sym___extension__] = ACTIONS(1249), + [anon_sym_typedef] = ACTIONS(1249), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym___attribute__] = ACTIONS(1249), + [anon_sym___scanf] = ACTIONS(1249), + [anon_sym___printf] = ACTIONS(1249), + [anon_sym___read_mostly] = ACTIONS(1249), + [anon_sym___must_hold] = ACTIONS(1249), + [anon_sym___ro_after_init] = ACTIONS(1249), + [anon_sym___noreturn] = ACTIONS(1249), + [anon_sym___cold] = ACTIONS(1249), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1251), + [anon_sym___declspec] = ACTIONS(1249), + [anon_sym___init] = ACTIONS(1249), + [anon_sym___exit] = ACTIONS(1249), + [anon_sym___cdecl] = ACTIONS(1249), + [anon_sym___clrcall] = ACTIONS(1249), + [anon_sym___stdcall] = ACTIONS(1249), + [anon_sym___fastcall] = ACTIONS(1249), + [anon_sym___thiscall] = ACTIONS(1249), + [anon_sym___vectorcall] = ACTIONS(1249), + [anon_sym_LBRACE] = ACTIONS(1251), + [anon_sym_signed] = ACTIONS(1249), + [anon_sym_unsigned] = ACTIONS(1249), + [anon_sym_long] = ACTIONS(1249), + [anon_sym_short] = ACTIONS(1249), + [anon_sym_static] = ACTIONS(1249), + [anon_sym_auto] = ACTIONS(1249), + [anon_sym_register] = ACTIONS(1249), + [anon_sym_inline] = ACTIONS(1249), + [anon_sym___inline] = ACTIONS(1249), + [anon_sym___inline__] = ACTIONS(1249), + [anon_sym___forceinline] = ACTIONS(1249), + [anon_sym_thread_local] = ACTIONS(1249), + [anon_sym___thread] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), + [anon_sym_constexpr] = ACTIONS(1249), + [anon_sym_volatile] = ACTIONS(1249), + [anon_sym_restrict] = ACTIONS(1249), + [anon_sym___restrict__] = ACTIONS(1249), + [anon_sym__Atomic] = ACTIONS(1249), + [anon_sym__Noreturn] = ACTIONS(1249), + [anon_sym_noreturn] = ACTIONS(1249), + [anon_sym_alignas] = ACTIONS(1249), + [anon_sym__Alignas] = ACTIONS(1249), + [sym_primitive_type] = ACTIONS(1249), + [anon_sym_enum] = ACTIONS(1249), + [anon_sym_struct] = ACTIONS(1249), + [anon_sym_union] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1249), + [anon_sym_else] = ACTIONS(1249), + [anon_sym_switch] = ACTIONS(1249), + [anon_sym_case] = ACTIONS(1249), + [anon_sym_default] = ACTIONS(1249), + [anon_sym_while] = ACTIONS(1249), + [anon_sym_do] = ACTIONS(1249), + [anon_sym_for] = ACTIONS(1249), + [anon_sym_return] = ACTIONS(1249), + [anon_sym_break] = ACTIONS(1249), + [anon_sym_continue] = ACTIONS(1249), + [anon_sym_goto] = ACTIONS(1249), + [anon_sym___try] = ACTIONS(1249), + [anon_sym___leave] = ACTIONS(1249), + [anon_sym_DASH_DASH] = ACTIONS(1251), + [anon_sym_PLUS_PLUS] = ACTIONS(1251), + [anon_sym_sizeof] = ACTIONS(1249), + [anon_sym___alignof__] = ACTIONS(1249), + [anon_sym___alignof] = ACTIONS(1249), + [anon_sym__alignof] = ACTIONS(1249), + [anon_sym_alignof] = ACTIONS(1249), + [anon_sym__Alignof] = ACTIONS(1249), + [anon_sym_offsetof] = ACTIONS(1249), + [anon_sym__Generic] = ACTIONS(1249), + [anon_sym_asm] = ACTIONS(1249), + [anon_sym___asm__] = ACTIONS(1249), + [sym_number_literal] = ACTIONS(1251), + [anon_sym_L_SQUOTE] = ACTIONS(1251), + [anon_sym_u_SQUOTE] = ACTIONS(1251), + [anon_sym_U_SQUOTE] = ACTIONS(1251), + [anon_sym_u8_SQUOTE] = ACTIONS(1251), + [anon_sym_SQUOTE] = ACTIONS(1251), + [anon_sym_L_DQUOTE] = ACTIONS(1251), + [anon_sym_u_DQUOTE] = ACTIONS(1251), + [anon_sym_U_DQUOTE] = ACTIONS(1251), + [anon_sym_u8_DQUOTE] = ACTIONS(1251), + [anon_sym_DQUOTE] = ACTIONS(1251), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [anon_sym_NULL] = ACTIONS(1249), + [anon_sym_nullptr] = ACTIONS(1249), [sym_comment] = ACTIONS(3), }, - [169] = { + [185] = { + [ts_builtin_sym_end] = ACTIONS(1227), + [sym_identifier] = ACTIONS(1225), + [aux_sym_preproc_include_token1] = ACTIONS(1225), + [aux_sym_preproc_def_token1] = ACTIONS(1225), + [aux_sym_preproc_if_token1] = ACTIONS(1225), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1225), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1225), + [sym_preproc_directive] = ACTIONS(1225), + [anon_sym_LPAREN2] = ACTIONS(1227), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_TILDE] = ACTIONS(1227), + [anon_sym_DASH] = ACTIONS(1225), + [anon_sym_PLUS] = ACTIONS(1225), + [anon_sym_STAR] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(1227), + [anon_sym_SEMI] = ACTIONS(1227), + [anon_sym___extension__] = ACTIONS(1225), + [anon_sym_typedef] = ACTIONS(1225), + [anon_sym_extern] = ACTIONS(1225), + [anon_sym___attribute__] = ACTIONS(1225), + [anon_sym___scanf] = ACTIONS(1225), + [anon_sym___printf] = ACTIONS(1225), + [anon_sym___read_mostly] = ACTIONS(1225), + [anon_sym___must_hold] = ACTIONS(1225), + [anon_sym___ro_after_init] = ACTIONS(1225), + [anon_sym___noreturn] = ACTIONS(1225), + [anon_sym___cold] = ACTIONS(1225), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1227), + [anon_sym___declspec] = ACTIONS(1225), + [anon_sym___init] = ACTIONS(1225), + [anon_sym___exit] = ACTIONS(1225), + [anon_sym___cdecl] = ACTIONS(1225), + [anon_sym___clrcall] = ACTIONS(1225), + [anon_sym___stdcall] = ACTIONS(1225), + [anon_sym___fastcall] = ACTIONS(1225), + [anon_sym___thiscall] = ACTIONS(1225), + [anon_sym___vectorcall] = ACTIONS(1225), + [anon_sym_LBRACE] = ACTIONS(1227), + [anon_sym_signed] = ACTIONS(1225), + [anon_sym_unsigned] = ACTIONS(1225), + [anon_sym_long] = ACTIONS(1225), + [anon_sym_short] = ACTIONS(1225), + [anon_sym_static] = ACTIONS(1225), + [anon_sym_auto] = ACTIONS(1225), + [anon_sym_register] = ACTIONS(1225), + [anon_sym_inline] = ACTIONS(1225), + [anon_sym___inline] = ACTIONS(1225), + [anon_sym___inline__] = ACTIONS(1225), + [anon_sym___forceinline] = ACTIONS(1225), + [anon_sym_thread_local] = ACTIONS(1225), + [anon_sym___thread] = ACTIONS(1225), + [anon_sym_const] = ACTIONS(1225), + [anon_sym_constexpr] = ACTIONS(1225), + [anon_sym_volatile] = ACTIONS(1225), + [anon_sym_restrict] = ACTIONS(1225), + [anon_sym___restrict__] = ACTIONS(1225), + [anon_sym__Atomic] = ACTIONS(1225), + [anon_sym__Noreturn] = ACTIONS(1225), + [anon_sym_noreturn] = ACTIONS(1225), + [anon_sym_alignas] = ACTIONS(1225), + [anon_sym__Alignas] = ACTIONS(1225), + [sym_primitive_type] = ACTIONS(1225), + [anon_sym_enum] = ACTIONS(1225), + [anon_sym_struct] = ACTIONS(1225), + [anon_sym_union] = ACTIONS(1225), + [anon_sym_if] = ACTIONS(1225), + [anon_sym_else] = ACTIONS(1225), + [anon_sym_switch] = ACTIONS(1225), + [anon_sym_case] = ACTIONS(1225), + [anon_sym_default] = ACTIONS(1225), + [anon_sym_while] = ACTIONS(1225), + [anon_sym_do] = ACTIONS(1225), + [anon_sym_for] = ACTIONS(1225), + [anon_sym_return] = ACTIONS(1225), + [anon_sym_break] = ACTIONS(1225), + [anon_sym_continue] = ACTIONS(1225), + [anon_sym_goto] = ACTIONS(1225), + [anon_sym___try] = ACTIONS(1225), + [anon_sym___leave] = ACTIONS(1225), + [anon_sym_DASH_DASH] = ACTIONS(1227), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_sizeof] = ACTIONS(1225), + [anon_sym___alignof__] = ACTIONS(1225), + [anon_sym___alignof] = ACTIONS(1225), + [anon_sym__alignof] = ACTIONS(1225), + [anon_sym_alignof] = ACTIONS(1225), + [anon_sym__Alignof] = ACTIONS(1225), + [anon_sym_offsetof] = ACTIONS(1225), + [anon_sym__Generic] = ACTIONS(1225), + [anon_sym_asm] = ACTIONS(1225), + [anon_sym___asm__] = ACTIONS(1225), + [sym_number_literal] = ACTIONS(1227), + [anon_sym_L_SQUOTE] = ACTIONS(1227), + [anon_sym_u_SQUOTE] = ACTIONS(1227), + [anon_sym_U_SQUOTE] = ACTIONS(1227), + [anon_sym_u8_SQUOTE] = ACTIONS(1227), + [anon_sym_SQUOTE] = ACTIONS(1227), + [anon_sym_L_DQUOTE] = ACTIONS(1227), + [anon_sym_u_DQUOTE] = ACTIONS(1227), + [anon_sym_U_DQUOTE] = ACTIONS(1227), + [anon_sym_u8_DQUOTE] = ACTIONS(1227), + [anon_sym_DQUOTE] = ACTIONS(1227), + [sym_true] = ACTIONS(1225), + [sym_false] = ACTIONS(1225), + [anon_sym_NULL] = ACTIONS(1225), + [anon_sym_nullptr] = ACTIONS(1225), + [sym_comment] = ACTIONS(3), + }, + [186] = { [sym_identifier] = ACTIONS(1241), [aux_sym_preproc_include_token1] = ACTIONS(1241), [aux_sym_preproc_def_token1] = ACTIONS(1241), @@ -34726,9 +37800,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___read_mostly] = ACTIONS(1241), [anon_sym___must_hold] = ACTIONS(1241), [anon_sym___ro_after_init] = ACTIONS(1241), - [anon_sym___init] = ACTIONS(1241), + [anon_sym___noreturn] = ACTIONS(1241), + [anon_sym___cold] = ACTIONS(1241), [anon_sym_LBRACK_LBRACK] = ACTIONS(1243), [anon_sym___declspec] = ACTIONS(1241), + [anon_sym___init] = ACTIONS(1241), + [anon_sym___exit] = ACTIONS(1241), [anon_sym___cdecl] = ACTIONS(1241), [anon_sym___clrcall] = ACTIONS(1241), [anon_sym___stdcall] = ACTIONS(1241), @@ -34774,363 +37851,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(1241), [anon_sym_return] = ACTIONS(1241), [anon_sym_break] = ACTIONS(1241), - [anon_sym_continue] = ACTIONS(1241), - [anon_sym_goto] = ACTIONS(1241), - [anon_sym___try] = ACTIONS(1241), - [anon_sym___leave] = ACTIONS(1241), - [anon_sym_DASH_DASH] = ACTIONS(1243), - [anon_sym_PLUS_PLUS] = ACTIONS(1243), - [anon_sym_sizeof] = ACTIONS(1241), - [anon_sym___alignof__] = ACTIONS(1241), - [anon_sym___alignof] = ACTIONS(1241), - [anon_sym__alignof] = ACTIONS(1241), - [anon_sym_alignof] = ACTIONS(1241), - [anon_sym__Alignof] = ACTIONS(1241), - [anon_sym_offsetof] = ACTIONS(1241), - [anon_sym__Generic] = ACTIONS(1241), - [anon_sym_asm] = ACTIONS(1241), - [anon_sym___asm__] = ACTIONS(1241), - [sym_number_literal] = ACTIONS(1243), - [anon_sym_L_SQUOTE] = ACTIONS(1243), - [anon_sym_u_SQUOTE] = ACTIONS(1243), - [anon_sym_U_SQUOTE] = ACTIONS(1243), - [anon_sym_u8_SQUOTE] = ACTIONS(1243), - [anon_sym_SQUOTE] = ACTIONS(1243), - [anon_sym_L_DQUOTE] = ACTIONS(1243), - [anon_sym_u_DQUOTE] = ACTIONS(1243), - [anon_sym_U_DQUOTE] = ACTIONS(1243), - [anon_sym_u8_DQUOTE] = ACTIONS(1243), - [anon_sym_DQUOTE] = ACTIONS(1243), - [sym_true] = ACTIONS(1241), - [sym_false] = ACTIONS(1241), - [anon_sym_NULL] = ACTIONS(1241), - [anon_sym_nullptr] = ACTIONS(1241), - [sym_comment] = ACTIONS(3), - }, - [170] = { - [sym_identifier] = ACTIONS(1233), - [aux_sym_preproc_include_token1] = ACTIONS(1233), - [aux_sym_preproc_def_token1] = ACTIONS(1233), - [aux_sym_preproc_if_token1] = ACTIONS(1233), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1233), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1233), - [sym_preproc_directive] = ACTIONS(1233), - [anon_sym_LPAREN2] = ACTIONS(1235), - [anon_sym_BANG] = ACTIONS(1235), - [anon_sym_TILDE] = ACTIONS(1235), - [anon_sym_DASH] = ACTIONS(1233), - [anon_sym_PLUS] = ACTIONS(1233), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_AMP] = ACTIONS(1235), - [anon_sym_SEMI] = ACTIONS(1235), - [anon_sym___extension__] = ACTIONS(1233), - [anon_sym_typedef] = ACTIONS(1233), - [anon_sym_extern] = ACTIONS(1233), - [anon_sym___attribute__] = ACTIONS(1233), - [anon_sym___scanf] = ACTIONS(1233), - [anon_sym___printf] = ACTIONS(1233), - [anon_sym___read_mostly] = ACTIONS(1233), - [anon_sym___must_hold] = ACTIONS(1233), - [anon_sym___ro_after_init] = ACTIONS(1233), - [anon_sym___init] = ACTIONS(1233), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1235), - [anon_sym___declspec] = ACTIONS(1233), - [anon_sym___cdecl] = ACTIONS(1233), - [anon_sym___clrcall] = ACTIONS(1233), - [anon_sym___stdcall] = ACTIONS(1233), - [anon_sym___fastcall] = ACTIONS(1233), - [anon_sym___thiscall] = ACTIONS(1233), - [anon_sym___vectorcall] = ACTIONS(1233), - [anon_sym_LBRACE] = ACTIONS(1235), - [anon_sym_RBRACE] = ACTIONS(1235), - [anon_sym_signed] = ACTIONS(1233), - [anon_sym_unsigned] = ACTIONS(1233), - [anon_sym_long] = ACTIONS(1233), - [anon_sym_short] = ACTIONS(1233), - [anon_sym_static] = ACTIONS(1233), - [anon_sym_auto] = ACTIONS(1233), - [anon_sym_register] = ACTIONS(1233), - [anon_sym_inline] = ACTIONS(1233), - [anon_sym___inline] = ACTIONS(1233), - [anon_sym___inline__] = ACTIONS(1233), - [anon_sym___forceinline] = ACTIONS(1233), - [anon_sym_thread_local] = ACTIONS(1233), - [anon_sym___thread] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_constexpr] = ACTIONS(1233), - [anon_sym_volatile] = ACTIONS(1233), - [anon_sym_restrict] = ACTIONS(1233), - [anon_sym___restrict__] = ACTIONS(1233), - [anon_sym__Atomic] = ACTIONS(1233), - [anon_sym__Noreturn] = ACTIONS(1233), - [anon_sym_noreturn] = ACTIONS(1233), - [anon_sym_alignas] = ACTIONS(1233), - [anon_sym__Alignas] = ACTIONS(1233), - [sym_primitive_type] = ACTIONS(1233), - [anon_sym_enum] = ACTIONS(1233), - [anon_sym_struct] = ACTIONS(1233), - [anon_sym_union] = ACTIONS(1233), - [anon_sym_if] = ACTIONS(1233), - [anon_sym_else] = ACTIONS(1233), - [anon_sym_switch] = ACTIONS(1233), - [anon_sym_case] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1233), - [anon_sym_while] = ACTIONS(1233), - [anon_sym_do] = ACTIONS(1233), - [anon_sym_for] = ACTIONS(1233), - [anon_sym_return] = ACTIONS(1233), - [anon_sym_break] = ACTIONS(1233), - [anon_sym_continue] = ACTIONS(1233), - [anon_sym_goto] = ACTIONS(1233), - [anon_sym___try] = ACTIONS(1233), - [anon_sym___leave] = ACTIONS(1233), - [anon_sym_DASH_DASH] = ACTIONS(1235), - [anon_sym_PLUS_PLUS] = ACTIONS(1235), - [anon_sym_sizeof] = ACTIONS(1233), - [anon_sym___alignof__] = ACTIONS(1233), - [anon_sym___alignof] = ACTIONS(1233), - [anon_sym__alignof] = ACTIONS(1233), - [anon_sym_alignof] = ACTIONS(1233), - [anon_sym__Alignof] = ACTIONS(1233), - [anon_sym_offsetof] = ACTIONS(1233), - [anon_sym__Generic] = ACTIONS(1233), - [anon_sym_asm] = ACTIONS(1233), - [anon_sym___asm__] = ACTIONS(1233), - [sym_number_literal] = ACTIONS(1235), - [anon_sym_L_SQUOTE] = ACTIONS(1235), - [anon_sym_u_SQUOTE] = ACTIONS(1235), - [anon_sym_U_SQUOTE] = ACTIONS(1235), - [anon_sym_u8_SQUOTE] = ACTIONS(1235), - [anon_sym_SQUOTE] = ACTIONS(1235), - [anon_sym_L_DQUOTE] = ACTIONS(1235), - [anon_sym_u_DQUOTE] = ACTIONS(1235), - [anon_sym_U_DQUOTE] = ACTIONS(1235), - [anon_sym_u8_DQUOTE] = ACTIONS(1235), - [anon_sym_DQUOTE] = ACTIONS(1235), - [sym_true] = ACTIONS(1233), - [sym_false] = ACTIONS(1233), - [anon_sym_NULL] = ACTIONS(1233), - [anon_sym_nullptr] = ACTIONS(1233), - [sym_comment] = ACTIONS(3), - }, - [171] = { - [sym_identifier] = ACTIONS(1217), - [aux_sym_preproc_include_token1] = ACTIONS(1217), - [aux_sym_preproc_def_token1] = ACTIONS(1217), - [aux_sym_preproc_if_token1] = ACTIONS(1217), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1217), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1217), - [sym_preproc_directive] = ACTIONS(1217), - [anon_sym_LPAREN2] = ACTIONS(1219), - [anon_sym_BANG] = ACTIONS(1219), - [anon_sym_TILDE] = ACTIONS(1219), - [anon_sym_DASH] = ACTIONS(1217), - [anon_sym_PLUS] = ACTIONS(1217), - [anon_sym_STAR] = ACTIONS(1219), - [anon_sym_AMP] = ACTIONS(1219), - [anon_sym_SEMI] = ACTIONS(1219), - [anon_sym___extension__] = ACTIONS(1217), - [anon_sym_typedef] = ACTIONS(1217), - [anon_sym_extern] = ACTIONS(1217), - [anon_sym___attribute__] = ACTIONS(1217), - [anon_sym___scanf] = ACTIONS(1217), - [anon_sym___printf] = ACTIONS(1217), - [anon_sym___read_mostly] = ACTIONS(1217), - [anon_sym___must_hold] = ACTIONS(1217), - [anon_sym___ro_after_init] = ACTIONS(1217), - [anon_sym___init] = ACTIONS(1217), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1219), - [anon_sym___declspec] = ACTIONS(1217), - [anon_sym___cdecl] = ACTIONS(1217), - [anon_sym___clrcall] = ACTIONS(1217), - [anon_sym___stdcall] = ACTIONS(1217), - [anon_sym___fastcall] = ACTIONS(1217), - [anon_sym___thiscall] = ACTIONS(1217), - [anon_sym___vectorcall] = ACTIONS(1217), - [anon_sym_LBRACE] = ACTIONS(1219), - [anon_sym_RBRACE] = ACTIONS(1219), - [anon_sym_signed] = ACTIONS(1217), - [anon_sym_unsigned] = ACTIONS(1217), - [anon_sym_long] = ACTIONS(1217), - [anon_sym_short] = ACTIONS(1217), - [anon_sym_static] = ACTIONS(1217), - [anon_sym_auto] = ACTIONS(1217), - [anon_sym_register] = ACTIONS(1217), - [anon_sym_inline] = ACTIONS(1217), - [anon_sym___inline] = ACTIONS(1217), - [anon_sym___inline__] = ACTIONS(1217), - [anon_sym___forceinline] = ACTIONS(1217), - [anon_sym_thread_local] = ACTIONS(1217), - [anon_sym___thread] = ACTIONS(1217), - [anon_sym_const] = ACTIONS(1217), - [anon_sym_constexpr] = ACTIONS(1217), - [anon_sym_volatile] = ACTIONS(1217), - [anon_sym_restrict] = ACTIONS(1217), - [anon_sym___restrict__] = ACTIONS(1217), - [anon_sym__Atomic] = ACTIONS(1217), - [anon_sym__Noreturn] = ACTIONS(1217), - [anon_sym_noreturn] = ACTIONS(1217), - [anon_sym_alignas] = ACTIONS(1217), - [anon_sym__Alignas] = ACTIONS(1217), - [sym_primitive_type] = ACTIONS(1217), - [anon_sym_enum] = ACTIONS(1217), - [anon_sym_struct] = ACTIONS(1217), - [anon_sym_union] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1217), - [anon_sym_else] = ACTIONS(1217), - [anon_sym_switch] = ACTIONS(1217), - [anon_sym_case] = ACTIONS(1217), - [anon_sym_default] = ACTIONS(1217), - [anon_sym_while] = ACTIONS(1217), - [anon_sym_do] = ACTIONS(1217), - [anon_sym_for] = ACTIONS(1217), - [anon_sym_return] = ACTIONS(1217), - [anon_sym_break] = ACTIONS(1217), - [anon_sym_continue] = ACTIONS(1217), - [anon_sym_goto] = ACTIONS(1217), - [anon_sym___try] = ACTIONS(1217), - [anon_sym___leave] = ACTIONS(1217), - [anon_sym_DASH_DASH] = ACTIONS(1219), - [anon_sym_PLUS_PLUS] = ACTIONS(1219), - [anon_sym_sizeof] = ACTIONS(1217), - [anon_sym___alignof__] = ACTIONS(1217), - [anon_sym___alignof] = ACTIONS(1217), - [anon_sym__alignof] = ACTIONS(1217), - [anon_sym_alignof] = ACTIONS(1217), - [anon_sym__Alignof] = ACTIONS(1217), - [anon_sym_offsetof] = ACTIONS(1217), - [anon_sym__Generic] = ACTIONS(1217), - [anon_sym_asm] = ACTIONS(1217), - [anon_sym___asm__] = ACTIONS(1217), - [sym_number_literal] = ACTIONS(1219), - [anon_sym_L_SQUOTE] = ACTIONS(1219), - [anon_sym_u_SQUOTE] = ACTIONS(1219), - [anon_sym_U_SQUOTE] = ACTIONS(1219), - [anon_sym_u8_SQUOTE] = ACTIONS(1219), - [anon_sym_SQUOTE] = ACTIONS(1219), - [anon_sym_L_DQUOTE] = ACTIONS(1219), - [anon_sym_u_DQUOTE] = ACTIONS(1219), - [anon_sym_U_DQUOTE] = ACTIONS(1219), - [anon_sym_u8_DQUOTE] = ACTIONS(1219), - [anon_sym_DQUOTE] = ACTIONS(1219), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [anon_sym_NULL] = ACTIONS(1217), - [anon_sym_nullptr] = ACTIONS(1217), - [sym_comment] = ACTIONS(3), - }, - [172] = { - [sym_identifier] = ACTIONS(1193), - [aux_sym_preproc_include_token1] = ACTIONS(1193), - [aux_sym_preproc_def_token1] = ACTIONS(1193), - [aux_sym_preproc_if_token1] = ACTIONS(1193), - [aux_sym_preproc_if_token2] = ACTIONS(1193), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1193), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1193), - [sym_preproc_directive] = ACTIONS(1193), - [anon_sym_LPAREN2] = ACTIONS(1195), - [anon_sym_BANG] = ACTIONS(1195), - [anon_sym_TILDE] = ACTIONS(1195), - [anon_sym_DASH] = ACTIONS(1193), - [anon_sym_PLUS] = ACTIONS(1193), - [anon_sym_STAR] = ACTIONS(1195), - [anon_sym_AMP] = ACTIONS(1195), - [anon_sym_SEMI] = ACTIONS(1195), - [anon_sym___extension__] = ACTIONS(1193), - [anon_sym_typedef] = ACTIONS(1193), - [anon_sym_extern] = ACTIONS(1193), - [anon_sym___attribute__] = ACTIONS(1193), - [anon_sym___scanf] = ACTIONS(1193), - [anon_sym___printf] = ACTIONS(1193), - [anon_sym___read_mostly] = ACTIONS(1193), - [anon_sym___must_hold] = ACTIONS(1193), - [anon_sym___ro_after_init] = ACTIONS(1193), - [anon_sym___init] = ACTIONS(1193), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1195), - [anon_sym___declspec] = ACTIONS(1193), - [anon_sym___cdecl] = ACTIONS(1193), - [anon_sym___clrcall] = ACTIONS(1193), - [anon_sym___stdcall] = ACTIONS(1193), - [anon_sym___fastcall] = ACTIONS(1193), - [anon_sym___thiscall] = ACTIONS(1193), - [anon_sym___vectorcall] = ACTIONS(1193), - [anon_sym_LBRACE] = ACTIONS(1195), - [anon_sym_signed] = ACTIONS(1193), - [anon_sym_unsigned] = ACTIONS(1193), - [anon_sym_long] = ACTIONS(1193), - [anon_sym_short] = ACTIONS(1193), - [anon_sym_static] = ACTIONS(1193), - [anon_sym_auto] = ACTIONS(1193), - [anon_sym_register] = ACTIONS(1193), - [anon_sym_inline] = ACTIONS(1193), - [anon_sym___inline] = ACTIONS(1193), - [anon_sym___inline__] = ACTIONS(1193), - [anon_sym___forceinline] = ACTIONS(1193), - [anon_sym_thread_local] = ACTIONS(1193), - [anon_sym___thread] = ACTIONS(1193), - [anon_sym_const] = ACTIONS(1193), - [anon_sym_constexpr] = ACTIONS(1193), - [anon_sym_volatile] = ACTIONS(1193), - [anon_sym_restrict] = ACTIONS(1193), - [anon_sym___restrict__] = ACTIONS(1193), - [anon_sym__Atomic] = ACTIONS(1193), - [anon_sym__Noreturn] = ACTIONS(1193), - [anon_sym_noreturn] = ACTIONS(1193), - [anon_sym_alignas] = ACTIONS(1193), - [anon_sym__Alignas] = ACTIONS(1193), - [sym_primitive_type] = ACTIONS(1193), - [anon_sym_enum] = ACTIONS(1193), - [anon_sym_struct] = ACTIONS(1193), - [anon_sym_union] = ACTIONS(1193), - [anon_sym_if] = ACTIONS(1193), - [anon_sym_else] = ACTIONS(1193), - [anon_sym_switch] = ACTIONS(1193), - [anon_sym_case] = ACTIONS(1193), - [anon_sym_default] = ACTIONS(1193), - [anon_sym_while] = ACTIONS(1193), - [anon_sym_do] = ACTIONS(1193), - [anon_sym_for] = ACTIONS(1193), - [anon_sym_return] = ACTIONS(1193), - [anon_sym_break] = ACTIONS(1193), - [anon_sym_continue] = ACTIONS(1193), - [anon_sym_goto] = ACTIONS(1193), - [anon_sym___try] = ACTIONS(1193), - [anon_sym___leave] = ACTIONS(1193), - [anon_sym_DASH_DASH] = ACTIONS(1195), - [anon_sym_PLUS_PLUS] = ACTIONS(1195), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym___alignof__] = ACTIONS(1193), - [anon_sym___alignof] = ACTIONS(1193), - [anon_sym__alignof] = ACTIONS(1193), - [anon_sym_alignof] = ACTIONS(1193), - [anon_sym__Alignof] = ACTIONS(1193), - [anon_sym_offsetof] = ACTIONS(1193), - [anon_sym__Generic] = ACTIONS(1193), - [anon_sym_asm] = ACTIONS(1193), - [anon_sym___asm__] = ACTIONS(1193), - [sym_number_literal] = ACTIONS(1195), - [anon_sym_L_SQUOTE] = ACTIONS(1195), - [anon_sym_u_SQUOTE] = ACTIONS(1195), - [anon_sym_U_SQUOTE] = ACTIONS(1195), - [anon_sym_u8_SQUOTE] = ACTIONS(1195), - [anon_sym_SQUOTE] = ACTIONS(1195), - [anon_sym_L_DQUOTE] = ACTIONS(1195), - [anon_sym_u_DQUOTE] = ACTIONS(1195), - [anon_sym_U_DQUOTE] = ACTIONS(1195), - [anon_sym_u8_DQUOTE] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1195), - [sym_true] = ACTIONS(1193), - [sym_false] = ACTIONS(1193), - [anon_sym_NULL] = ACTIONS(1193), - [anon_sym_nullptr] = ACTIONS(1193), + [anon_sym_continue] = ACTIONS(1241), + [anon_sym_goto] = ACTIONS(1241), + [anon_sym___try] = ACTIONS(1241), + [anon_sym___leave] = ACTIONS(1241), + [anon_sym_DASH_DASH] = ACTIONS(1243), + [anon_sym_PLUS_PLUS] = ACTIONS(1243), + [anon_sym_sizeof] = ACTIONS(1241), + [anon_sym___alignof__] = ACTIONS(1241), + [anon_sym___alignof] = ACTIONS(1241), + [anon_sym__alignof] = ACTIONS(1241), + [anon_sym_alignof] = ACTIONS(1241), + [anon_sym__Alignof] = ACTIONS(1241), + [anon_sym_offsetof] = ACTIONS(1241), + [anon_sym__Generic] = ACTIONS(1241), + [anon_sym_asm] = ACTIONS(1241), + [anon_sym___asm__] = ACTIONS(1241), + [sym_number_literal] = ACTIONS(1243), + [anon_sym_L_SQUOTE] = ACTIONS(1243), + [anon_sym_u_SQUOTE] = ACTIONS(1243), + [anon_sym_U_SQUOTE] = ACTIONS(1243), + [anon_sym_u8_SQUOTE] = ACTIONS(1243), + [anon_sym_SQUOTE] = ACTIONS(1243), + [anon_sym_L_DQUOTE] = ACTIONS(1243), + [anon_sym_u_DQUOTE] = ACTIONS(1243), + [anon_sym_U_DQUOTE] = ACTIONS(1243), + [anon_sym_u8_DQUOTE] = ACTIONS(1243), + [anon_sym_DQUOTE] = ACTIONS(1243), + [sym_true] = ACTIONS(1241), + [sym_false] = ACTIONS(1241), + [anon_sym_NULL] = ACTIONS(1241), + [anon_sym_nullptr] = ACTIONS(1241), [sym_comment] = ACTIONS(3), }, - [173] = { + [187] = { [sym_identifier] = ACTIONS(1197), [aux_sym_preproc_include_token1] = ACTIONS(1197), [aux_sym_preproc_def_token1] = ACTIONS(1197), [aux_sym_preproc_if_token1] = ACTIONS(1197), - [aux_sym_preproc_if_token2] = ACTIONS(1197), [aux_sym_preproc_ifdef_token1] = ACTIONS(1197), [aux_sym_preproc_ifdef_token2] = ACTIONS(1197), [sym_preproc_directive] = ACTIONS(1197), @@ -35151,9 +37909,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___read_mostly] = ACTIONS(1197), [anon_sym___must_hold] = ACTIONS(1197), [anon_sym___ro_after_init] = ACTIONS(1197), - [anon_sym___init] = ACTIONS(1197), + [anon_sym___noreturn] = ACTIONS(1197), + [anon_sym___cold] = ACTIONS(1197), [anon_sym_LBRACK_LBRACK] = ACTIONS(1199), [anon_sym___declspec] = ACTIONS(1197), + [anon_sym___init] = ACTIONS(1197), + [anon_sym___exit] = ACTIONS(1197), [anon_sym___cdecl] = ACTIONS(1197), [anon_sym___clrcall] = ACTIONS(1197), [anon_sym___stdcall] = ACTIONS(1197), @@ -35161,6 +37922,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(1197), [anon_sym___vectorcall] = ACTIONS(1197), [anon_sym_LBRACE] = ACTIONS(1199), + [anon_sym_RBRACE] = ACTIONS(1199), [anon_sym_signed] = ACTIONS(1197), [anon_sym_unsigned] = ACTIONS(1197), [anon_sym_long] = ACTIONS(1197), @@ -35231,224 +37993,229 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1197), [sym_comment] = ACTIONS(3), }, - [174] = { - [sym_identifier] = ACTIONS(1201), - [aux_sym_preproc_include_token1] = ACTIONS(1201), - [aux_sym_preproc_def_token1] = ACTIONS(1201), - [aux_sym_preproc_if_token1] = ACTIONS(1201), - [aux_sym_preproc_if_token2] = ACTIONS(1201), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1201), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1201), - [sym_preproc_directive] = ACTIONS(1201), - [anon_sym_LPAREN2] = ACTIONS(1203), - [anon_sym_BANG] = ACTIONS(1203), - [anon_sym_TILDE] = ACTIONS(1203), - [anon_sym_DASH] = ACTIONS(1201), - [anon_sym_PLUS] = ACTIONS(1201), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_AMP] = ACTIONS(1203), - [anon_sym_SEMI] = ACTIONS(1203), - [anon_sym___extension__] = ACTIONS(1201), - [anon_sym_typedef] = ACTIONS(1201), - [anon_sym_extern] = ACTIONS(1201), - [anon_sym___attribute__] = ACTIONS(1201), - [anon_sym___scanf] = ACTIONS(1201), - [anon_sym___printf] = ACTIONS(1201), - [anon_sym___read_mostly] = ACTIONS(1201), - [anon_sym___must_hold] = ACTIONS(1201), - [anon_sym___ro_after_init] = ACTIONS(1201), - [anon_sym___init] = ACTIONS(1201), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1203), - [anon_sym___declspec] = ACTIONS(1201), - [anon_sym___cdecl] = ACTIONS(1201), - [anon_sym___clrcall] = ACTIONS(1201), - [anon_sym___stdcall] = ACTIONS(1201), - [anon_sym___fastcall] = ACTIONS(1201), - [anon_sym___thiscall] = ACTIONS(1201), - [anon_sym___vectorcall] = ACTIONS(1201), - [anon_sym_LBRACE] = ACTIONS(1203), - [anon_sym_signed] = ACTIONS(1201), - [anon_sym_unsigned] = ACTIONS(1201), - [anon_sym_long] = ACTIONS(1201), - [anon_sym_short] = ACTIONS(1201), - [anon_sym_static] = ACTIONS(1201), - [anon_sym_auto] = ACTIONS(1201), - [anon_sym_register] = ACTIONS(1201), - [anon_sym_inline] = ACTIONS(1201), - [anon_sym___inline] = ACTIONS(1201), - [anon_sym___inline__] = ACTIONS(1201), - [anon_sym___forceinline] = ACTIONS(1201), - [anon_sym_thread_local] = ACTIONS(1201), - [anon_sym___thread] = ACTIONS(1201), - [anon_sym_const] = ACTIONS(1201), - [anon_sym_constexpr] = ACTIONS(1201), - [anon_sym_volatile] = ACTIONS(1201), - [anon_sym_restrict] = ACTIONS(1201), - [anon_sym___restrict__] = ACTIONS(1201), - [anon_sym__Atomic] = ACTIONS(1201), - [anon_sym__Noreturn] = ACTIONS(1201), - [anon_sym_noreturn] = ACTIONS(1201), - [anon_sym_alignas] = ACTIONS(1201), - [anon_sym__Alignas] = ACTIONS(1201), - [sym_primitive_type] = ACTIONS(1201), - [anon_sym_enum] = ACTIONS(1201), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_union] = ACTIONS(1201), - [anon_sym_if] = ACTIONS(1201), - [anon_sym_else] = ACTIONS(1201), - [anon_sym_switch] = ACTIONS(1201), - [anon_sym_case] = ACTIONS(1201), - [anon_sym_default] = ACTIONS(1201), - [anon_sym_while] = ACTIONS(1201), - [anon_sym_do] = ACTIONS(1201), - [anon_sym_for] = ACTIONS(1201), - [anon_sym_return] = ACTIONS(1201), - [anon_sym_break] = ACTIONS(1201), - [anon_sym_continue] = ACTIONS(1201), - [anon_sym_goto] = ACTIONS(1201), - [anon_sym___try] = ACTIONS(1201), - [anon_sym___leave] = ACTIONS(1201), - [anon_sym_DASH_DASH] = ACTIONS(1203), - [anon_sym_PLUS_PLUS] = ACTIONS(1203), - [anon_sym_sizeof] = ACTIONS(1201), - [anon_sym___alignof__] = ACTIONS(1201), - [anon_sym___alignof] = ACTIONS(1201), - [anon_sym__alignof] = ACTIONS(1201), - [anon_sym_alignof] = ACTIONS(1201), - [anon_sym__Alignof] = ACTIONS(1201), - [anon_sym_offsetof] = ACTIONS(1201), - [anon_sym__Generic] = ACTIONS(1201), - [anon_sym_asm] = ACTIONS(1201), - [anon_sym___asm__] = ACTIONS(1201), - [sym_number_literal] = ACTIONS(1203), - [anon_sym_L_SQUOTE] = ACTIONS(1203), - [anon_sym_u_SQUOTE] = ACTIONS(1203), - [anon_sym_U_SQUOTE] = ACTIONS(1203), - [anon_sym_u8_SQUOTE] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1203), - [anon_sym_L_DQUOTE] = ACTIONS(1203), - [anon_sym_u_DQUOTE] = ACTIONS(1203), - [anon_sym_U_DQUOTE] = ACTIONS(1203), - [anon_sym_u8_DQUOTE] = ACTIONS(1203), - [anon_sym_DQUOTE] = ACTIONS(1203), - [sym_true] = ACTIONS(1201), - [sym_false] = ACTIONS(1201), - [anon_sym_NULL] = ACTIONS(1201), - [anon_sym_nullptr] = ACTIONS(1201), + [188] = { + [sym_identifier] = ACTIONS(1265), + [aux_sym_preproc_include_token1] = ACTIONS(1265), + [aux_sym_preproc_def_token1] = ACTIONS(1265), + [aux_sym_preproc_if_token1] = ACTIONS(1265), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1265), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1265), + [sym_preproc_directive] = ACTIONS(1265), + [anon_sym_LPAREN2] = ACTIONS(1267), + [anon_sym_BANG] = ACTIONS(1267), + [anon_sym_TILDE] = ACTIONS(1267), + [anon_sym_DASH] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1265), + [anon_sym_STAR] = ACTIONS(1267), + [anon_sym_AMP] = ACTIONS(1267), + [anon_sym_SEMI] = ACTIONS(1267), + [anon_sym___extension__] = ACTIONS(1265), + [anon_sym_typedef] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym___attribute__] = ACTIONS(1265), + [anon_sym___scanf] = ACTIONS(1265), + [anon_sym___printf] = ACTIONS(1265), + [anon_sym___read_mostly] = ACTIONS(1265), + [anon_sym___must_hold] = ACTIONS(1265), + [anon_sym___ro_after_init] = ACTIONS(1265), + [anon_sym___noreturn] = ACTIONS(1265), + [anon_sym___cold] = ACTIONS(1265), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1267), + [anon_sym___declspec] = ACTIONS(1265), + [anon_sym___init] = ACTIONS(1265), + [anon_sym___exit] = ACTIONS(1265), + [anon_sym___cdecl] = ACTIONS(1265), + [anon_sym___clrcall] = ACTIONS(1265), + [anon_sym___stdcall] = ACTIONS(1265), + [anon_sym___fastcall] = ACTIONS(1265), + [anon_sym___thiscall] = ACTIONS(1265), + [anon_sym___vectorcall] = ACTIONS(1265), + [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_RBRACE] = ACTIONS(1267), + [anon_sym_signed] = ACTIONS(1265), + [anon_sym_unsigned] = ACTIONS(1265), + [anon_sym_long] = ACTIONS(1265), + [anon_sym_short] = ACTIONS(1265), + [anon_sym_static] = ACTIONS(1265), + [anon_sym_auto] = ACTIONS(1265), + [anon_sym_register] = ACTIONS(1265), + [anon_sym_inline] = ACTIONS(1265), + [anon_sym___inline] = ACTIONS(1265), + [anon_sym___inline__] = ACTIONS(1265), + [anon_sym___forceinline] = ACTIONS(1265), + [anon_sym_thread_local] = ACTIONS(1265), + [anon_sym___thread] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), + [anon_sym_constexpr] = ACTIONS(1265), + [anon_sym_volatile] = ACTIONS(1265), + [anon_sym_restrict] = ACTIONS(1265), + [anon_sym___restrict__] = ACTIONS(1265), + [anon_sym__Atomic] = ACTIONS(1265), + [anon_sym__Noreturn] = ACTIONS(1265), + [anon_sym_noreturn] = ACTIONS(1265), + [anon_sym_alignas] = ACTIONS(1265), + [anon_sym__Alignas] = ACTIONS(1265), + [sym_primitive_type] = ACTIONS(1265), + [anon_sym_enum] = ACTIONS(1265), + [anon_sym_struct] = ACTIONS(1265), + [anon_sym_union] = ACTIONS(1265), + [anon_sym_if] = ACTIONS(1265), + [anon_sym_else] = ACTIONS(1265), + [anon_sym_switch] = ACTIONS(1265), + [anon_sym_case] = ACTIONS(1265), + [anon_sym_default] = ACTIONS(1265), + [anon_sym_while] = ACTIONS(1265), + [anon_sym_do] = ACTIONS(1265), + [anon_sym_for] = ACTIONS(1265), + [anon_sym_return] = ACTIONS(1265), + [anon_sym_break] = ACTIONS(1265), + [anon_sym_continue] = ACTIONS(1265), + [anon_sym_goto] = ACTIONS(1265), + [anon_sym___try] = ACTIONS(1265), + [anon_sym___leave] = ACTIONS(1265), + [anon_sym_DASH_DASH] = ACTIONS(1267), + [anon_sym_PLUS_PLUS] = ACTIONS(1267), + [anon_sym_sizeof] = ACTIONS(1265), + [anon_sym___alignof__] = ACTIONS(1265), + [anon_sym___alignof] = ACTIONS(1265), + [anon_sym__alignof] = ACTIONS(1265), + [anon_sym_alignof] = ACTIONS(1265), + [anon_sym__Alignof] = ACTIONS(1265), + [anon_sym_offsetof] = ACTIONS(1265), + [anon_sym__Generic] = ACTIONS(1265), + [anon_sym_asm] = ACTIONS(1265), + [anon_sym___asm__] = ACTIONS(1265), + [sym_number_literal] = ACTIONS(1267), + [anon_sym_L_SQUOTE] = ACTIONS(1267), + [anon_sym_u_SQUOTE] = ACTIONS(1267), + [anon_sym_U_SQUOTE] = ACTIONS(1267), + [anon_sym_u8_SQUOTE] = ACTIONS(1267), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_L_DQUOTE] = ACTIONS(1267), + [anon_sym_u_DQUOTE] = ACTIONS(1267), + [anon_sym_U_DQUOTE] = ACTIONS(1267), + [anon_sym_u8_DQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1267), + [sym_true] = ACTIONS(1265), + [sym_false] = ACTIONS(1265), + [anon_sym_NULL] = ACTIONS(1265), + [anon_sym_nullptr] = ACTIONS(1265), [sym_comment] = ACTIONS(3), }, - [175] = { - [sym_identifier] = ACTIONS(1185), - [aux_sym_preproc_include_token1] = ACTIONS(1185), - [aux_sym_preproc_def_token1] = ACTIONS(1185), - [aux_sym_preproc_if_token1] = ACTIONS(1185), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1185), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1185), - [sym_preproc_directive] = ACTIONS(1185), - [anon_sym_LPAREN2] = ACTIONS(1187), - [anon_sym_BANG] = ACTIONS(1187), - [anon_sym_TILDE] = ACTIONS(1187), - [anon_sym_DASH] = ACTIONS(1185), - [anon_sym_PLUS] = ACTIONS(1185), - [anon_sym_STAR] = ACTIONS(1187), - [anon_sym_AMP] = ACTIONS(1187), - [anon_sym_SEMI] = ACTIONS(1187), - [anon_sym___extension__] = ACTIONS(1185), - [anon_sym_typedef] = ACTIONS(1185), - [anon_sym_extern] = ACTIONS(1185), - [anon_sym___attribute__] = ACTIONS(1185), - [anon_sym___scanf] = ACTIONS(1185), - [anon_sym___printf] = ACTIONS(1185), - [anon_sym___read_mostly] = ACTIONS(1185), - [anon_sym___must_hold] = ACTIONS(1185), - [anon_sym___ro_after_init] = ACTIONS(1185), - [anon_sym___init] = ACTIONS(1185), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1187), - [anon_sym___declspec] = ACTIONS(1185), - [anon_sym___cdecl] = ACTIONS(1185), - [anon_sym___clrcall] = ACTIONS(1185), - [anon_sym___stdcall] = ACTIONS(1185), - [anon_sym___fastcall] = ACTIONS(1185), - [anon_sym___thiscall] = ACTIONS(1185), - [anon_sym___vectorcall] = ACTIONS(1185), - [anon_sym_LBRACE] = ACTIONS(1187), - [anon_sym_RBRACE] = ACTIONS(1187), - [anon_sym_signed] = ACTIONS(1185), - [anon_sym_unsigned] = ACTIONS(1185), - [anon_sym_long] = ACTIONS(1185), - [anon_sym_short] = ACTIONS(1185), - [anon_sym_static] = ACTIONS(1185), - [anon_sym_auto] = ACTIONS(1185), - [anon_sym_register] = ACTIONS(1185), - [anon_sym_inline] = ACTIONS(1185), - [anon_sym___inline] = ACTIONS(1185), - [anon_sym___inline__] = ACTIONS(1185), - [anon_sym___forceinline] = ACTIONS(1185), - [anon_sym_thread_local] = ACTIONS(1185), - [anon_sym___thread] = ACTIONS(1185), - [anon_sym_const] = ACTIONS(1185), - [anon_sym_constexpr] = ACTIONS(1185), - [anon_sym_volatile] = ACTIONS(1185), - [anon_sym_restrict] = ACTIONS(1185), - [anon_sym___restrict__] = ACTIONS(1185), - [anon_sym__Atomic] = ACTIONS(1185), - [anon_sym__Noreturn] = ACTIONS(1185), - [anon_sym_noreturn] = ACTIONS(1185), - [anon_sym_alignas] = ACTIONS(1185), - [anon_sym__Alignas] = ACTIONS(1185), - [sym_primitive_type] = ACTIONS(1185), - [anon_sym_enum] = ACTIONS(1185), - [anon_sym_struct] = ACTIONS(1185), - [anon_sym_union] = ACTIONS(1185), - [anon_sym_if] = ACTIONS(1185), - [anon_sym_else] = ACTIONS(1185), - [anon_sym_switch] = ACTIONS(1185), - [anon_sym_case] = ACTIONS(1185), - [anon_sym_default] = ACTIONS(1185), - [anon_sym_while] = ACTIONS(1185), - [anon_sym_do] = ACTIONS(1185), - [anon_sym_for] = ACTIONS(1185), - [anon_sym_return] = ACTIONS(1185), - [anon_sym_break] = ACTIONS(1185), - [anon_sym_continue] = ACTIONS(1185), - [anon_sym_goto] = ACTIONS(1185), - [anon_sym___try] = ACTIONS(1185), - [anon_sym___leave] = ACTIONS(1185), - [anon_sym_DASH_DASH] = ACTIONS(1187), - [anon_sym_PLUS_PLUS] = ACTIONS(1187), - [anon_sym_sizeof] = ACTIONS(1185), - [anon_sym___alignof__] = ACTIONS(1185), - [anon_sym___alignof] = ACTIONS(1185), - [anon_sym__alignof] = ACTIONS(1185), - [anon_sym_alignof] = ACTIONS(1185), - [anon_sym__Alignof] = ACTIONS(1185), - [anon_sym_offsetof] = ACTIONS(1185), - [anon_sym__Generic] = ACTIONS(1185), - [anon_sym_asm] = ACTIONS(1185), - [anon_sym___asm__] = ACTIONS(1185), - [sym_number_literal] = ACTIONS(1187), - [anon_sym_L_SQUOTE] = ACTIONS(1187), - [anon_sym_u_SQUOTE] = ACTIONS(1187), - [anon_sym_U_SQUOTE] = ACTIONS(1187), - [anon_sym_u8_SQUOTE] = ACTIONS(1187), - [anon_sym_SQUOTE] = ACTIONS(1187), - [anon_sym_L_DQUOTE] = ACTIONS(1187), - [anon_sym_u_DQUOTE] = ACTIONS(1187), - [anon_sym_U_DQUOTE] = ACTIONS(1187), - [anon_sym_u8_DQUOTE] = ACTIONS(1187), - [anon_sym_DQUOTE] = ACTIONS(1187), - [sym_true] = ACTIONS(1185), - [sym_false] = ACTIONS(1185), - [anon_sym_NULL] = ACTIONS(1185), - [anon_sym_nullptr] = ACTIONS(1185), + [189] = { + [ts_builtin_sym_end] = ACTIONS(1215), + [sym_identifier] = ACTIONS(1213), + [aux_sym_preproc_include_token1] = ACTIONS(1213), + [aux_sym_preproc_def_token1] = ACTIONS(1213), + [aux_sym_preproc_if_token1] = ACTIONS(1213), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1213), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1213), + [sym_preproc_directive] = ACTIONS(1213), + [anon_sym_LPAREN2] = ACTIONS(1215), + [anon_sym_BANG] = ACTIONS(1215), + [anon_sym_TILDE] = ACTIONS(1215), + [anon_sym_DASH] = ACTIONS(1213), + [anon_sym_PLUS] = ACTIONS(1213), + [anon_sym_STAR] = ACTIONS(1215), + [anon_sym_AMP] = ACTIONS(1215), + [anon_sym_SEMI] = ACTIONS(1215), + [anon_sym___extension__] = ACTIONS(1213), + [anon_sym_typedef] = ACTIONS(1213), + [anon_sym_extern] = ACTIONS(1213), + [anon_sym___attribute__] = ACTIONS(1213), + [anon_sym___scanf] = ACTIONS(1213), + [anon_sym___printf] = ACTIONS(1213), + [anon_sym___read_mostly] = ACTIONS(1213), + [anon_sym___must_hold] = ACTIONS(1213), + [anon_sym___ro_after_init] = ACTIONS(1213), + [anon_sym___noreturn] = ACTIONS(1213), + [anon_sym___cold] = ACTIONS(1213), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1215), + [anon_sym___declspec] = ACTIONS(1213), + [anon_sym___init] = ACTIONS(1213), + [anon_sym___exit] = ACTIONS(1213), + [anon_sym___cdecl] = ACTIONS(1213), + [anon_sym___clrcall] = ACTIONS(1213), + [anon_sym___stdcall] = ACTIONS(1213), + [anon_sym___fastcall] = ACTIONS(1213), + [anon_sym___thiscall] = ACTIONS(1213), + [anon_sym___vectorcall] = ACTIONS(1213), + [anon_sym_LBRACE] = ACTIONS(1215), + [anon_sym_signed] = ACTIONS(1213), + [anon_sym_unsigned] = ACTIONS(1213), + [anon_sym_long] = ACTIONS(1213), + [anon_sym_short] = ACTIONS(1213), + [anon_sym_static] = ACTIONS(1213), + [anon_sym_auto] = ACTIONS(1213), + [anon_sym_register] = ACTIONS(1213), + [anon_sym_inline] = ACTIONS(1213), + [anon_sym___inline] = ACTIONS(1213), + [anon_sym___inline__] = ACTIONS(1213), + [anon_sym___forceinline] = ACTIONS(1213), + [anon_sym_thread_local] = ACTIONS(1213), + [anon_sym___thread] = ACTIONS(1213), + [anon_sym_const] = ACTIONS(1213), + [anon_sym_constexpr] = ACTIONS(1213), + [anon_sym_volatile] = ACTIONS(1213), + [anon_sym_restrict] = ACTIONS(1213), + [anon_sym___restrict__] = ACTIONS(1213), + [anon_sym__Atomic] = ACTIONS(1213), + [anon_sym__Noreturn] = ACTIONS(1213), + [anon_sym_noreturn] = ACTIONS(1213), + [anon_sym_alignas] = ACTIONS(1213), + [anon_sym__Alignas] = ACTIONS(1213), + [sym_primitive_type] = ACTIONS(1213), + [anon_sym_enum] = ACTIONS(1213), + [anon_sym_struct] = ACTIONS(1213), + [anon_sym_union] = ACTIONS(1213), + [anon_sym_if] = ACTIONS(1213), + [anon_sym_else] = ACTIONS(1213), + [anon_sym_switch] = ACTIONS(1213), + [anon_sym_case] = ACTIONS(1213), + [anon_sym_default] = ACTIONS(1213), + [anon_sym_while] = ACTIONS(1213), + [anon_sym_do] = ACTIONS(1213), + [anon_sym_for] = ACTIONS(1213), + [anon_sym_return] = ACTIONS(1213), + [anon_sym_break] = ACTIONS(1213), + [anon_sym_continue] = ACTIONS(1213), + [anon_sym_goto] = ACTIONS(1213), + [anon_sym___try] = ACTIONS(1213), + [anon_sym___leave] = ACTIONS(1213), + [anon_sym_DASH_DASH] = ACTIONS(1215), + [anon_sym_PLUS_PLUS] = ACTIONS(1215), + [anon_sym_sizeof] = ACTIONS(1213), + [anon_sym___alignof__] = ACTIONS(1213), + [anon_sym___alignof] = ACTIONS(1213), + [anon_sym__alignof] = ACTIONS(1213), + [anon_sym_alignof] = ACTIONS(1213), + [anon_sym__Alignof] = ACTIONS(1213), + [anon_sym_offsetof] = ACTIONS(1213), + [anon_sym__Generic] = ACTIONS(1213), + [anon_sym_asm] = ACTIONS(1213), + [anon_sym___asm__] = ACTIONS(1213), + [sym_number_literal] = ACTIONS(1215), + [anon_sym_L_SQUOTE] = ACTIONS(1215), + [anon_sym_u_SQUOTE] = ACTIONS(1215), + [anon_sym_U_SQUOTE] = ACTIONS(1215), + [anon_sym_u8_SQUOTE] = ACTIONS(1215), + [anon_sym_SQUOTE] = ACTIONS(1215), + [anon_sym_L_DQUOTE] = ACTIONS(1215), + [anon_sym_u_DQUOTE] = ACTIONS(1215), + [anon_sym_U_DQUOTE] = ACTIONS(1215), + [anon_sym_u8_DQUOTE] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1215), + [sym_true] = ACTIONS(1213), + [sym_false] = ACTIONS(1213), + [anon_sym_NULL] = ACTIONS(1213), + [anon_sym_nullptr] = ACTIONS(1213), [sym_comment] = ACTIONS(3), }, - [176] = { + [190] = { [sym_identifier] = ACTIONS(1205), [aux_sym_preproc_include_token1] = ACTIONS(1205), [aux_sym_preproc_def_token1] = ACTIONS(1205), [aux_sym_preproc_if_token1] = ACTIONS(1205), - [aux_sym_preproc_if_token2] = ACTIONS(1205), [aux_sym_preproc_ifdef_token1] = ACTIONS(1205), [aux_sym_preproc_ifdef_token2] = ACTIONS(1205), [sym_preproc_directive] = ACTIONS(1205), @@ -35469,9 +38236,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___read_mostly] = ACTIONS(1205), [anon_sym___must_hold] = ACTIONS(1205), [anon_sym___ro_after_init] = ACTIONS(1205), - [anon_sym___init] = ACTIONS(1205), + [anon_sym___noreturn] = ACTIONS(1205), + [anon_sym___cold] = ACTIONS(1205), [anon_sym_LBRACK_LBRACK] = ACTIONS(1207), [anon_sym___declspec] = ACTIONS(1205), + [anon_sym___init] = ACTIONS(1205), + [anon_sym___exit] = ACTIONS(1205), [anon_sym___cdecl] = ACTIONS(1205), [anon_sym___clrcall] = ACTIONS(1205), [anon_sym___stdcall] = ACTIONS(1205), @@ -35479,6 +38249,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(1205), [anon_sym___vectorcall] = ACTIONS(1205), [anon_sym_LBRACE] = ACTIONS(1207), + [anon_sym_RBRACE] = ACTIONS(1207), [anon_sym_signed] = ACTIONS(1205), [anon_sym_unsigned] = ACTIONS(1205), [anon_sym_long] = ACTIONS(1205), @@ -35549,12 +38320,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1205), [sym_comment] = ACTIONS(3), }, - [177] = { + [191] = { + [ts_builtin_sym_end] = ACTIONS(1211), [sym_identifier] = ACTIONS(1209), [aux_sym_preproc_include_token1] = ACTIONS(1209), [aux_sym_preproc_def_token1] = ACTIONS(1209), [aux_sym_preproc_if_token1] = ACTIONS(1209), - [aux_sym_preproc_if_token2] = ACTIONS(1209), [aux_sym_preproc_ifdef_token1] = ACTIONS(1209), [aux_sym_preproc_ifdef_token2] = ACTIONS(1209), [sym_preproc_directive] = ACTIONS(1209), @@ -35575,9 +38346,338 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___read_mostly] = ACTIONS(1209), [anon_sym___must_hold] = ACTIONS(1209), [anon_sym___ro_after_init] = ACTIONS(1209), + [anon_sym___noreturn] = ACTIONS(1209), + [anon_sym___cold] = ACTIONS(1209), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1211), + [anon_sym___declspec] = ACTIONS(1209), [anon_sym___init] = ACTIONS(1209), + [anon_sym___exit] = ACTIONS(1209), + [anon_sym___cdecl] = ACTIONS(1209), + [anon_sym___clrcall] = ACTIONS(1209), + [anon_sym___stdcall] = ACTIONS(1209), + [anon_sym___fastcall] = ACTIONS(1209), + [anon_sym___thiscall] = ACTIONS(1209), + [anon_sym___vectorcall] = ACTIONS(1209), + [anon_sym_LBRACE] = ACTIONS(1211), + [anon_sym_signed] = ACTIONS(1209), + [anon_sym_unsigned] = ACTIONS(1209), + [anon_sym_long] = ACTIONS(1209), + [anon_sym_short] = ACTIONS(1209), + [anon_sym_static] = ACTIONS(1209), + [anon_sym_auto] = ACTIONS(1209), + [anon_sym_register] = ACTIONS(1209), + [anon_sym_inline] = ACTIONS(1209), + [anon_sym___inline] = ACTIONS(1209), + [anon_sym___inline__] = ACTIONS(1209), + [anon_sym___forceinline] = ACTIONS(1209), + [anon_sym_thread_local] = ACTIONS(1209), + [anon_sym___thread] = ACTIONS(1209), + [anon_sym_const] = ACTIONS(1209), + [anon_sym_constexpr] = ACTIONS(1209), + [anon_sym_volatile] = ACTIONS(1209), + [anon_sym_restrict] = ACTIONS(1209), + [anon_sym___restrict__] = ACTIONS(1209), + [anon_sym__Atomic] = ACTIONS(1209), + [anon_sym__Noreturn] = ACTIONS(1209), + [anon_sym_noreturn] = ACTIONS(1209), + [anon_sym_alignas] = ACTIONS(1209), + [anon_sym__Alignas] = ACTIONS(1209), + [sym_primitive_type] = ACTIONS(1209), + [anon_sym_enum] = ACTIONS(1209), + [anon_sym_struct] = ACTIONS(1209), + [anon_sym_union] = ACTIONS(1209), + [anon_sym_if] = ACTIONS(1209), + [anon_sym_else] = ACTIONS(1209), + [anon_sym_switch] = ACTIONS(1209), + [anon_sym_case] = ACTIONS(1209), + [anon_sym_default] = ACTIONS(1209), + [anon_sym_while] = ACTIONS(1209), + [anon_sym_do] = ACTIONS(1209), + [anon_sym_for] = ACTIONS(1209), + [anon_sym_return] = ACTIONS(1209), + [anon_sym_break] = ACTIONS(1209), + [anon_sym_continue] = ACTIONS(1209), + [anon_sym_goto] = ACTIONS(1209), + [anon_sym___try] = ACTIONS(1209), + [anon_sym___leave] = ACTIONS(1209), + [anon_sym_DASH_DASH] = ACTIONS(1211), + [anon_sym_PLUS_PLUS] = ACTIONS(1211), + [anon_sym_sizeof] = ACTIONS(1209), + [anon_sym___alignof__] = ACTIONS(1209), + [anon_sym___alignof] = ACTIONS(1209), + [anon_sym__alignof] = ACTIONS(1209), + [anon_sym_alignof] = ACTIONS(1209), + [anon_sym__Alignof] = ACTIONS(1209), + [anon_sym_offsetof] = ACTIONS(1209), + [anon_sym__Generic] = ACTIONS(1209), + [anon_sym_asm] = ACTIONS(1209), + [anon_sym___asm__] = ACTIONS(1209), + [sym_number_literal] = ACTIONS(1211), + [anon_sym_L_SQUOTE] = ACTIONS(1211), + [anon_sym_u_SQUOTE] = ACTIONS(1211), + [anon_sym_U_SQUOTE] = ACTIONS(1211), + [anon_sym_u8_SQUOTE] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(1211), + [anon_sym_L_DQUOTE] = ACTIONS(1211), + [anon_sym_u_DQUOTE] = ACTIONS(1211), + [anon_sym_U_DQUOTE] = ACTIONS(1211), + [anon_sym_u8_DQUOTE] = ACTIONS(1211), + [anon_sym_DQUOTE] = ACTIONS(1211), + [sym_true] = ACTIONS(1209), + [sym_false] = ACTIONS(1209), + [anon_sym_NULL] = ACTIONS(1209), + [anon_sym_nullptr] = ACTIONS(1209), + [sym_comment] = ACTIONS(3), + }, + [192] = { + [ts_builtin_sym_end] = ACTIONS(1155), + [sym_identifier] = ACTIONS(1153), + [aux_sym_preproc_include_token1] = ACTIONS(1153), + [aux_sym_preproc_def_token1] = ACTIONS(1153), + [aux_sym_preproc_if_token1] = ACTIONS(1153), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1153), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1153), + [sym_preproc_directive] = ACTIONS(1153), + [anon_sym_LPAREN2] = ACTIONS(1155), + [anon_sym_BANG] = ACTIONS(1155), + [anon_sym_TILDE] = ACTIONS(1155), + [anon_sym_DASH] = ACTIONS(1153), + [anon_sym_PLUS] = ACTIONS(1153), + [anon_sym_STAR] = ACTIONS(1155), + [anon_sym_AMP] = ACTIONS(1155), + [anon_sym_SEMI] = ACTIONS(1155), + [anon_sym___extension__] = ACTIONS(1153), + [anon_sym_typedef] = ACTIONS(1153), + [anon_sym_extern] = ACTIONS(1153), + [anon_sym___attribute__] = ACTIONS(1153), + [anon_sym___scanf] = ACTIONS(1153), + [anon_sym___printf] = ACTIONS(1153), + [anon_sym___read_mostly] = ACTIONS(1153), + [anon_sym___must_hold] = ACTIONS(1153), + [anon_sym___ro_after_init] = ACTIONS(1153), + [anon_sym___noreturn] = ACTIONS(1153), + [anon_sym___cold] = ACTIONS(1153), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1155), + [anon_sym___declspec] = ACTIONS(1153), + [anon_sym___init] = ACTIONS(1153), + [anon_sym___exit] = ACTIONS(1153), + [anon_sym___cdecl] = ACTIONS(1153), + [anon_sym___clrcall] = ACTIONS(1153), + [anon_sym___stdcall] = ACTIONS(1153), + [anon_sym___fastcall] = ACTIONS(1153), + [anon_sym___thiscall] = ACTIONS(1153), + [anon_sym___vectorcall] = ACTIONS(1153), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_signed] = ACTIONS(1153), + [anon_sym_unsigned] = ACTIONS(1153), + [anon_sym_long] = ACTIONS(1153), + [anon_sym_short] = ACTIONS(1153), + [anon_sym_static] = ACTIONS(1153), + [anon_sym_auto] = ACTIONS(1153), + [anon_sym_register] = ACTIONS(1153), + [anon_sym_inline] = ACTIONS(1153), + [anon_sym___inline] = ACTIONS(1153), + [anon_sym___inline__] = ACTIONS(1153), + [anon_sym___forceinline] = ACTIONS(1153), + [anon_sym_thread_local] = ACTIONS(1153), + [anon_sym___thread] = ACTIONS(1153), + [anon_sym_const] = ACTIONS(1153), + [anon_sym_constexpr] = ACTIONS(1153), + [anon_sym_volatile] = ACTIONS(1153), + [anon_sym_restrict] = ACTIONS(1153), + [anon_sym___restrict__] = ACTIONS(1153), + [anon_sym__Atomic] = ACTIONS(1153), + [anon_sym__Noreturn] = ACTIONS(1153), + [anon_sym_noreturn] = ACTIONS(1153), + [anon_sym_alignas] = ACTIONS(1153), + [anon_sym__Alignas] = ACTIONS(1153), + [sym_primitive_type] = ACTIONS(1153), + [anon_sym_enum] = ACTIONS(1153), + [anon_sym_struct] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1153), + [anon_sym_if] = ACTIONS(1153), + [anon_sym_else] = ACTIONS(1153), + [anon_sym_switch] = ACTIONS(1153), + [anon_sym_case] = ACTIONS(1153), + [anon_sym_default] = ACTIONS(1153), + [anon_sym_while] = ACTIONS(1153), + [anon_sym_do] = ACTIONS(1153), + [anon_sym_for] = ACTIONS(1153), + [anon_sym_return] = ACTIONS(1153), + [anon_sym_break] = ACTIONS(1153), + [anon_sym_continue] = ACTIONS(1153), + [anon_sym_goto] = ACTIONS(1153), + [anon_sym___try] = ACTIONS(1153), + [anon_sym___leave] = ACTIONS(1153), + [anon_sym_DASH_DASH] = ACTIONS(1155), + [anon_sym_PLUS_PLUS] = ACTIONS(1155), + [anon_sym_sizeof] = ACTIONS(1153), + [anon_sym___alignof__] = ACTIONS(1153), + [anon_sym___alignof] = ACTIONS(1153), + [anon_sym__alignof] = ACTIONS(1153), + [anon_sym_alignof] = ACTIONS(1153), + [anon_sym__Alignof] = ACTIONS(1153), + [anon_sym_offsetof] = ACTIONS(1153), + [anon_sym__Generic] = ACTIONS(1153), + [anon_sym_asm] = ACTIONS(1153), + [anon_sym___asm__] = ACTIONS(1153), + [sym_number_literal] = ACTIONS(1155), + [anon_sym_L_SQUOTE] = ACTIONS(1155), + [anon_sym_u_SQUOTE] = ACTIONS(1155), + [anon_sym_U_SQUOTE] = ACTIONS(1155), + [anon_sym_u8_SQUOTE] = ACTIONS(1155), + [anon_sym_SQUOTE] = ACTIONS(1155), + [anon_sym_L_DQUOTE] = ACTIONS(1155), + [anon_sym_u_DQUOTE] = ACTIONS(1155), + [anon_sym_U_DQUOTE] = ACTIONS(1155), + [anon_sym_u8_DQUOTE] = ACTIONS(1155), + [anon_sym_DQUOTE] = ACTIONS(1155), + [sym_true] = ACTIONS(1153), + [sym_false] = ACTIONS(1153), + [anon_sym_NULL] = ACTIONS(1153), + [anon_sym_nullptr] = ACTIONS(1153), + [sym_comment] = ACTIONS(3), + }, + [193] = { + [ts_builtin_sym_end] = ACTIONS(1155), + [sym_identifier] = ACTIONS(1153), + [aux_sym_preproc_include_token1] = ACTIONS(1153), + [aux_sym_preproc_def_token1] = ACTIONS(1153), + [aux_sym_preproc_if_token1] = ACTIONS(1153), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1153), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1153), + [sym_preproc_directive] = ACTIONS(1153), + [anon_sym_LPAREN2] = ACTIONS(1155), + [anon_sym_BANG] = ACTIONS(1155), + [anon_sym_TILDE] = ACTIONS(1155), + [anon_sym_DASH] = ACTIONS(1153), + [anon_sym_PLUS] = ACTIONS(1153), + [anon_sym_STAR] = ACTIONS(1155), + [anon_sym_AMP] = ACTIONS(1155), + [anon_sym_SEMI] = ACTIONS(1155), + [anon_sym___extension__] = ACTIONS(1153), + [anon_sym_typedef] = ACTIONS(1153), + [anon_sym_extern] = ACTIONS(1153), + [anon_sym___attribute__] = ACTIONS(1153), + [anon_sym___scanf] = ACTIONS(1153), + [anon_sym___printf] = ACTIONS(1153), + [anon_sym___read_mostly] = ACTIONS(1153), + [anon_sym___must_hold] = ACTIONS(1153), + [anon_sym___ro_after_init] = ACTIONS(1153), + [anon_sym___noreturn] = ACTIONS(1153), + [anon_sym___cold] = ACTIONS(1153), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1155), + [anon_sym___declspec] = ACTIONS(1153), + [anon_sym___init] = ACTIONS(1153), + [anon_sym___exit] = ACTIONS(1153), + [anon_sym___cdecl] = ACTIONS(1153), + [anon_sym___clrcall] = ACTIONS(1153), + [anon_sym___stdcall] = ACTIONS(1153), + [anon_sym___fastcall] = ACTIONS(1153), + [anon_sym___thiscall] = ACTIONS(1153), + [anon_sym___vectorcall] = ACTIONS(1153), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_signed] = ACTIONS(1153), + [anon_sym_unsigned] = ACTIONS(1153), + [anon_sym_long] = ACTIONS(1153), + [anon_sym_short] = ACTIONS(1153), + [anon_sym_static] = ACTIONS(1153), + [anon_sym_auto] = ACTIONS(1153), + [anon_sym_register] = ACTIONS(1153), + [anon_sym_inline] = ACTIONS(1153), + [anon_sym___inline] = ACTIONS(1153), + [anon_sym___inline__] = ACTIONS(1153), + [anon_sym___forceinline] = ACTIONS(1153), + [anon_sym_thread_local] = ACTIONS(1153), + [anon_sym___thread] = ACTIONS(1153), + [anon_sym_const] = ACTIONS(1153), + [anon_sym_constexpr] = ACTIONS(1153), + [anon_sym_volatile] = ACTIONS(1153), + [anon_sym_restrict] = ACTIONS(1153), + [anon_sym___restrict__] = ACTIONS(1153), + [anon_sym__Atomic] = ACTIONS(1153), + [anon_sym__Noreturn] = ACTIONS(1153), + [anon_sym_noreturn] = ACTIONS(1153), + [anon_sym_alignas] = ACTIONS(1153), + [anon_sym__Alignas] = ACTIONS(1153), + [sym_primitive_type] = ACTIONS(1153), + [anon_sym_enum] = ACTIONS(1153), + [anon_sym_struct] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1153), + [anon_sym_if] = ACTIONS(1153), + [anon_sym_else] = ACTIONS(1153), + [anon_sym_switch] = ACTIONS(1153), + [anon_sym_case] = ACTIONS(1153), + [anon_sym_default] = ACTIONS(1153), + [anon_sym_while] = ACTIONS(1153), + [anon_sym_do] = ACTIONS(1153), + [anon_sym_for] = ACTIONS(1153), + [anon_sym_return] = ACTIONS(1153), + [anon_sym_break] = ACTIONS(1153), + [anon_sym_continue] = ACTIONS(1153), + [anon_sym_goto] = ACTIONS(1153), + [anon_sym___try] = ACTIONS(1153), + [anon_sym___leave] = ACTIONS(1153), + [anon_sym_DASH_DASH] = ACTIONS(1155), + [anon_sym_PLUS_PLUS] = ACTIONS(1155), + [anon_sym_sizeof] = ACTIONS(1153), + [anon_sym___alignof__] = ACTIONS(1153), + [anon_sym___alignof] = ACTIONS(1153), + [anon_sym__alignof] = ACTIONS(1153), + [anon_sym_alignof] = ACTIONS(1153), + [anon_sym__Alignof] = ACTIONS(1153), + [anon_sym_offsetof] = ACTIONS(1153), + [anon_sym__Generic] = ACTIONS(1153), + [anon_sym_asm] = ACTIONS(1153), + [anon_sym___asm__] = ACTIONS(1153), + [sym_number_literal] = ACTIONS(1155), + [anon_sym_L_SQUOTE] = ACTIONS(1155), + [anon_sym_u_SQUOTE] = ACTIONS(1155), + [anon_sym_U_SQUOTE] = ACTIONS(1155), + [anon_sym_u8_SQUOTE] = ACTIONS(1155), + [anon_sym_SQUOTE] = ACTIONS(1155), + [anon_sym_L_DQUOTE] = ACTIONS(1155), + [anon_sym_u_DQUOTE] = ACTIONS(1155), + [anon_sym_U_DQUOTE] = ACTIONS(1155), + [anon_sym_u8_DQUOTE] = ACTIONS(1155), + [anon_sym_DQUOTE] = ACTIONS(1155), + [sym_true] = ACTIONS(1153), + [sym_false] = ACTIONS(1153), + [anon_sym_NULL] = ACTIONS(1153), + [anon_sym_nullptr] = ACTIONS(1153), + [sym_comment] = ACTIONS(3), + }, + [194] = { + [sym_identifier] = ACTIONS(1209), + [aux_sym_preproc_include_token1] = ACTIONS(1209), + [aux_sym_preproc_def_token1] = ACTIONS(1209), + [aux_sym_preproc_if_token1] = ACTIONS(1209), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1209), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1209), + [sym_preproc_directive] = ACTIONS(1209), + [anon_sym_LPAREN2] = ACTIONS(1211), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_TILDE] = ACTIONS(1211), + [anon_sym_DASH] = ACTIONS(1209), + [anon_sym_PLUS] = ACTIONS(1209), + [anon_sym_STAR] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(1211), + [anon_sym_SEMI] = ACTIONS(1211), + [anon_sym___extension__] = ACTIONS(1209), + [anon_sym_typedef] = ACTIONS(1209), + [anon_sym_extern] = ACTIONS(1209), + [anon_sym___attribute__] = ACTIONS(1209), + [anon_sym___scanf] = ACTIONS(1209), + [anon_sym___printf] = ACTIONS(1209), + [anon_sym___read_mostly] = ACTIONS(1209), + [anon_sym___must_hold] = ACTIONS(1209), + [anon_sym___ro_after_init] = ACTIONS(1209), + [anon_sym___noreturn] = ACTIONS(1209), + [anon_sym___cold] = ACTIONS(1209), [anon_sym_LBRACK_LBRACK] = ACTIONS(1211), [anon_sym___declspec] = ACTIONS(1209), + [anon_sym___init] = ACTIONS(1209), + [anon_sym___exit] = ACTIONS(1209), [anon_sym___cdecl] = ACTIONS(1209), [anon_sym___clrcall] = ACTIONS(1209), [anon_sym___stdcall] = ACTIONS(1209), @@ -35585,6 +38685,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(1209), [anon_sym___vectorcall] = ACTIONS(1209), [anon_sym_LBRACE] = ACTIONS(1211), + [anon_sym_RBRACE] = ACTIONS(1211), [anon_sym_signed] = ACTIONS(1209), [anon_sym_unsigned] = ACTIONS(1209), [anon_sym_long] = ACTIONS(1209), @@ -35655,12 +38756,338 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1209), [sym_comment] = ACTIONS(3), }, - [178] = { + [195] = { + [ts_builtin_sym_end] = ACTIONS(1255), + [sym_identifier] = ACTIONS(1253), + [aux_sym_preproc_include_token1] = ACTIONS(1253), + [aux_sym_preproc_def_token1] = ACTIONS(1253), + [aux_sym_preproc_if_token1] = ACTIONS(1253), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1253), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1253), + [sym_preproc_directive] = ACTIONS(1253), + [anon_sym_LPAREN2] = ACTIONS(1255), + [anon_sym_BANG] = ACTIONS(1255), + [anon_sym_TILDE] = ACTIONS(1255), + [anon_sym_DASH] = ACTIONS(1253), + [anon_sym_PLUS] = ACTIONS(1253), + [anon_sym_STAR] = ACTIONS(1255), + [anon_sym_AMP] = ACTIONS(1255), + [anon_sym_SEMI] = ACTIONS(1255), + [anon_sym___extension__] = ACTIONS(1253), + [anon_sym_typedef] = ACTIONS(1253), + [anon_sym_extern] = ACTIONS(1253), + [anon_sym___attribute__] = ACTIONS(1253), + [anon_sym___scanf] = ACTIONS(1253), + [anon_sym___printf] = ACTIONS(1253), + [anon_sym___read_mostly] = ACTIONS(1253), + [anon_sym___must_hold] = ACTIONS(1253), + [anon_sym___ro_after_init] = ACTIONS(1253), + [anon_sym___noreturn] = ACTIONS(1253), + [anon_sym___cold] = ACTIONS(1253), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1255), + [anon_sym___declspec] = ACTIONS(1253), + [anon_sym___init] = ACTIONS(1253), + [anon_sym___exit] = ACTIONS(1253), + [anon_sym___cdecl] = ACTIONS(1253), + [anon_sym___clrcall] = ACTIONS(1253), + [anon_sym___stdcall] = ACTIONS(1253), + [anon_sym___fastcall] = ACTIONS(1253), + [anon_sym___thiscall] = ACTIONS(1253), + [anon_sym___vectorcall] = ACTIONS(1253), + [anon_sym_LBRACE] = ACTIONS(1255), + [anon_sym_signed] = ACTIONS(1253), + [anon_sym_unsigned] = ACTIONS(1253), + [anon_sym_long] = ACTIONS(1253), + [anon_sym_short] = ACTIONS(1253), + [anon_sym_static] = ACTIONS(1253), + [anon_sym_auto] = ACTIONS(1253), + [anon_sym_register] = ACTIONS(1253), + [anon_sym_inline] = ACTIONS(1253), + [anon_sym___inline] = ACTIONS(1253), + [anon_sym___inline__] = ACTIONS(1253), + [anon_sym___forceinline] = ACTIONS(1253), + [anon_sym_thread_local] = ACTIONS(1253), + [anon_sym___thread] = ACTIONS(1253), + [anon_sym_const] = ACTIONS(1253), + [anon_sym_constexpr] = ACTIONS(1253), + [anon_sym_volatile] = ACTIONS(1253), + [anon_sym_restrict] = ACTIONS(1253), + [anon_sym___restrict__] = ACTIONS(1253), + [anon_sym__Atomic] = ACTIONS(1253), + [anon_sym__Noreturn] = ACTIONS(1253), + [anon_sym_noreturn] = ACTIONS(1253), + [anon_sym_alignas] = ACTIONS(1253), + [anon_sym__Alignas] = ACTIONS(1253), + [sym_primitive_type] = ACTIONS(1253), + [anon_sym_enum] = ACTIONS(1253), + [anon_sym_struct] = ACTIONS(1253), + [anon_sym_union] = ACTIONS(1253), + [anon_sym_if] = ACTIONS(1253), + [anon_sym_else] = ACTIONS(1253), + [anon_sym_switch] = ACTIONS(1253), + [anon_sym_case] = ACTIONS(1253), + [anon_sym_default] = ACTIONS(1253), + [anon_sym_while] = ACTIONS(1253), + [anon_sym_do] = ACTIONS(1253), + [anon_sym_for] = ACTIONS(1253), + [anon_sym_return] = ACTIONS(1253), + [anon_sym_break] = ACTIONS(1253), + [anon_sym_continue] = ACTIONS(1253), + [anon_sym_goto] = ACTIONS(1253), + [anon_sym___try] = ACTIONS(1253), + [anon_sym___leave] = ACTIONS(1253), + [anon_sym_DASH_DASH] = ACTIONS(1255), + [anon_sym_PLUS_PLUS] = ACTIONS(1255), + [anon_sym_sizeof] = ACTIONS(1253), + [anon_sym___alignof__] = ACTIONS(1253), + [anon_sym___alignof] = ACTIONS(1253), + [anon_sym__alignof] = ACTIONS(1253), + [anon_sym_alignof] = ACTIONS(1253), + [anon_sym__Alignof] = ACTIONS(1253), + [anon_sym_offsetof] = ACTIONS(1253), + [anon_sym__Generic] = ACTIONS(1253), + [anon_sym_asm] = ACTIONS(1253), + [anon_sym___asm__] = ACTIONS(1253), + [sym_number_literal] = ACTIONS(1255), + [anon_sym_L_SQUOTE] = ACTIONS(1255), + [anon_sym_u_SQUOTE] = ACTIONS(1255), + [anon_sym_U_SQUOTE] = ACTIONS(1255), + [anon_sym_u8_SQUOTE] = ACTIONS(1255), + [anon_sym_SQUOTE] = ACTIONS(1255), + [anon_sym_L_DQUOTE] = ACTIONS(1255), + [anon_sym_u_DQUOTE] = ACTIONS(1255), + [anon_sym_U_DQUOTE] = ACTIONS(1255), + [anon_sym_u8_DQUOTE] = ACTIONS(1255), + [anon_sym_DQUOTE] = ACTIONS(1255), + [sym_true] = ACTIONS(1253), + [sym_false] = ACTIONS(1253), + [anon_sym_NULL] = ACTIONS(1253), + [anon_sym_nullptr] = ACTIONS(1253), + [sym_comment] = ACTIONS(3), + }, + [196] = { + [ts_builtin_sym_end] = ACTIONS(1155), + [sym_identifier] = ACTIONS(1153), + [aux_sym_preproc_include_token1] = ACTIONS(1153), + [aux_sym_preproc_def_token1] = ACTIONS(1153), + [aux_sym_preproc_if_token1] = ACTIONS(1153), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1153), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1153), + [sym_preproc_directive] = ACTIONS(1153), + [anon_sym_LPAREN2] = ACTIONS(1155), + [anon_sym_BANG] = ACTIONS(1155), + [anon_sym_TILDE] = ACTIONS(1155), + [anon_sym_DASH] = ACTIONS(1153), + [anon_sym_PLUS] = ACTIONS(1153), + [anon_sym_STAR] = ACTIONS(1155), + [anon_sym_AMP] = ACTIONS(1155), + [anon_sym_SEMI] = ACTIONS(1155), + [anon_sym___extension__] = ACTIONS(1153), + [anon_sym_typedef] = ACTIONS(1153), + [anon_sym_extern] = ACTIONS(1153), + [anon_sym___attribute__] = ACTIONS(1153), + [anon_sym___scanf] = ACTIONS(1153), + [anon_sym___printf] = ACTIONS(1153), + [anon_sym___read_mostly] = ACTIONS(1153), + [anon_sym___must_hold] = ACTIONS(1153), + [anon_sym___ro_after_init] = ACTIONS(1153), + [anon_sym___noreturn] = ACTIONS(1153), + [anon_sym___cold] = ACTIONS(1153), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1155), + [anon_sym___declspec] = ACTIONS(1153), + [anon_sym___init] = ACTIONS(1153), + [anon_sym___exit] = ACTIONS(1153), + [anon_sym___cdecl] = ACTIONS(1153), + [anon_sym___clrcall] = ACTIONS(1153), + [anon_sym___stdcall] = ACTIONS(1153), + [anon_sym___fastcall] = ACTIONS(1153), + [anon_sym___thiscall] = ACTIONS(1153), + [anon_sym___vectorcall] = ACTIONS(1153), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_signed] = ACTIONS(1153), + [anon_sym_unsigned] = ACTIONS(1153), + [anon_sym_long] = ACTIONS(1153), + [anon_sym_short] = ACTIONS(1153), + [anon_sym_static] = ACTIONS(1153), + [anon_sym_auto] = ACTIONS(1153), + [anon_sym_register] = ACTIONS(1153), + [anon_sym_inline] = ACTIONS(1153), + [anon_sym___inline] = ACTIONS(1153), + [anon_sym___inline__] = ACTIONS(1153), + [anon_sym___forceinline] = ACTIONS(1153), + [anon_sym_thread_local] = ACTIONS(1153), + [anon_sym___thread] = ACTIONS(1153), + [anon_sym_const] = ACTIONS(1153), + [anon_sym_constexpr] = ACTIONS(1153), + [anon_sym_volatile] = ACTIONS(1153), + [anon_sym_restrict] = ACTIONS(1153), + [anon_sym___restrict__] = ACTIONS(1153), + [anon_sym__Atomic] = ACTIONS(1153), + [anon_sym__Noreturn] = ACTIONS(1153), + [anon_sym_noreturn] = ACTIONS(1153), + [anon_sym_alignas] = ACTIONS(1153), + [anon_sym__Alignas] = ACTIONS(1153), + [sym_primitive_type] = ACTIONS(1153), + [anon_sym_enum] = ACTIONS(1153), + [anon_sym_struct] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1153), + [anon_sym_if] = ACTIONS(1153), + [anon_sym_else] = ACTIONS(1153), + [anon_sym_switch] = ACTIONS(1153), + [anon_sym_case] = ACTIONS(1153), + [anon_sym_default] = ACTIONS(1153), + [anon_sym_while] = ACTIONS(1153), + [anon_sym_do] = ACTIONS(1153), + [anon_sym_for] = ACTIONS(1153), + [anon_sym_return] = ACTIONS(1153), + [anon_sym_break] = ACTIONS(1153), + [anon_sym_continue] = ACTIONS(1153), + [anon_sym_goto] = ACTIONS(1153), + [anon_sym___try] = ACTIONS(1153), + [anon_sym___leave] = ACTIONS(1153), + [anon_sym_DASH_DASH] = ACTIONS(1155), + [anon_sym_PLUS_PLUS] = ACTIONS(1155), + [anon_sym_sizeof] = ACTIONS(1153), + [anon_sym___alignof__] = ACTIONS(1153), + [anon_sym___alignof] = ACTIONS(1153), + [anon_sym__alignof] = ACTIONS(1153), + [anon_sym_alignof] = ACTIONS(1153), + [anon_sym__Alignof] = ACTIONS(1153), + [anon_sym_offsetof] = ACTIONS(1153), + [anon_sym__Generic] = ACTIONS(1153), + [anon_sym_asm] = ACTIONS(1153), + [anon_sym___asm__] = ACTIONS(1153), + [sym_number_literal] = ACTIONS(1155), + [anon_sym_L_SQUOTE] = ACTIONS(1155), + [anon_sym_u_SQUOTE] = ACTIONS(1155), + [anon_sym_U_SQUOTE] = ACTIONS(1155), + [anon_sym_u8_SQUOTE] = ACTIONS(1155), + [anon_sym_SQUOTE] = ACTIONS(1155), + [anon_sym_L_DQUOTE] = ACTIONS(1155), + [anon_sym_u_DQUOTE] = ACTIONS(1155), + [anon_sym_U_DQUOTE] = ACTIONS(1155), + [anon_sym_u8_DQUOTE] = ACTIONS(1155), + [anon_sym_DQUOTE] = ACTIONS(1155), + [sym_true] = ACTIONS(1153), + [sym_false] = ACTIONS(1153), + [anon_sym_NULL] = ACTIONS(1153), + [anon_sym_nullptr] = ACTIONS(1153), + [sym_comment] = ACTIONS(3), + }, + [197] = { + [ts_builtin_sym_end] = ACTIONS(1267), + [sym_identifier] = ACTIONS(1265), + [aux_sym_preproc_include_token1] = ACTIONS(1265), + [aux_sym_preproc_def_token1] = ACTIONS(1265), + [aux_sym_preproc_if_token1] = ACTIONS(1265), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1265), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1265), + [sym_preproc_directive] = ACTIONS(1265), + [anon_sym_LPAREN2] = ACTIONS(1267), + [anon_sym_BANG] = ACTIONS(1267), + [anon_sym_TILDE] = ACTIONS(1267), + [anon_sym_DASH] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1265), + [anon_sym_STAR] = ACTIONS(1267), + [anon_sym_AMP] = ACTIONS(1267), + [anon_sym_SEMI] = ACTIONS(1267), + [anon_sym___extension__] = ACTIONS(1265), + [anon_sym_typedef] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1265), + [anon_sym___attribute__] = ACTIONS(1265), + [anon_sym___scanf] = ACTIONS(1265), + [anon_sym___printf] = ACTIONS(1265), + [anon_sym___read_mostly] = ACTIONS(1265), + [anon_sym___must_hold] = ACTIONS(1265), + [anon_sym___ro_after_init] = ACTIONS(1265), + [anon_sym___noreturn] = ACTIONS(1265), + [anon_sym___cold] = ACTIONS(1265), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1267), + [anon_sym___declspec] = ACTIONS(1265), + [anon_sym___init] = ACTIONS(1265), + [anon_sym___exit] = ACTIONS(1265), + [anon_sym___cdecl] = ACTIONS(1265), + [anon_sym___clrcall] = ACTIONS(1265), + [anon_sym___stdcall] = ACTIONS(1265), + [anon_sym___fastcall] = ACTIONS(1265), + [anon_sym___thiscall] = ACTIONS(1265), + [anon_sym___vectorcall] = ACTIONS(1265), + [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_signed] = ACTIONS(1265), + [anon_sym_unsigned] = ACTIONS(1265), + [anon_sym_long] = ACTIONS(1265), + [anon_sym_short] = ACTIONS(1265), + [anon_sym_static] = ACTIONS(1265), + [anon_sym_auto] = ACTIONS(1265), + [anon_sym_register] = ACTIONS(1265), + [anon_sym_inline] = ACTIONS(1265), + [anon_sym___inline] = ACTIONS(1265), + [anon_sym___inline__] = ACTIONS(1265), + [anon_sym___forceinline] = ACTIONS(1265), + [anon_sym_thread_local] = ACTIONS(1265), + [anon_sym___thread] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), + [anon_sym_constexpr] = ACTIONS(1265), + [anon_sym_volatile] = ACTIONS(1265), + [anon_sym_restrict] = ACTIONS(1265), + [anon_sym___restrict__] = ACTIONS(1265), + [anon_sym__Atomic] = ACTIONS(1265), + [anon_sym__Noreturn] = ACTIONS(1265), + [anon_sym_noreturn] = ACTIONS(1265), + [anon_sym_alignas] = ACTIONS(1265), + [anon_sym__Alignas] = ACTIONS(1265), + [sym_primitive_type] = ACTIONS(1265), + [anon_sym_enum] = ACTIONS(1265), + [anon_sym_struct] = ACTIONS(1265), + [anon_sym_union] = ACTIONS(1265), + [anon_sym_if] = ACTIONS(1265), + [anon_sym_else] = ACTIONS(1265), + [anon_sym_switch] = ACTIONS(1265), + [anon_sym_case] = ACTIONS(1265), + [anon_sym_default] = ACTIONS(1265), + [anon_sym_while] = ACTIONS(1265), + [anon_sym_do] = ACTIONS(1265), + [anon_sym_for] = ACTIONS(1265), + [anon_sym_return] = ACTIONS(1265), + [anon_sym_break] = ACTIONS(1265), + [anon_sym_continue] = ACTIONS(1265), + [anon_sym_goto] = ACTIONS(1265), + [anon_sym___try] = ACTIONS(1265), + [anon_sym___leave] = ACTIONS(1265), + [anon_sym_DASH_DASH] = ACTIONS(1267), + [anon_sym_PLUS_PLUS] = ACTIONS(1267), + [anon_sym_sizeof] = ACTIONS(1265), + [anon_sym___alignof__] = ACTIONS(1265), + [anon_sym___alignof] = ACTIONS(1265), + [anon_sym__alignof] = ACTIONS(1265), + [anon_sym_alignof] = ACTIONS(1265), + [anon_sym__Alignof] = ACTIONS(1265), + [anon_sym_offsetof] = ACTIONS(1265), + [anon_sym__Generic] = ACTIONS(1265), + [anon_sym_asm] = ACTIONS(1265), + [anon_sym___asm__] = ACTIONS(1265), + [sym_number_literal] = ACTIONS(1267), + [anon_sym_L_SQUOTE] = ACTIONS(1267), + [anon_sym_u_SQUOTE] = ACTIONS(1267), + [anon_sym_U_SQUOTE] = ACTIONS(1267), + [anon_sym_u8_SQUOTE] = ACTIONS(1267), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_L_DQUOTE] = ACTIONS(1267), + [anon_sym_u_DQUOTE] = ACTIONS(1267), + [anon_sym_U_DQUOTE] = ACTIONS(1267), + [anon_sym_u8_DQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1267), + [sym_true] = ACTIONS(1265), + [sym_false] = ACTIONS(1265), + [anon_sym_NULL] = ACTIONS(1265), + [anon_sym_nullptr] = ACTIONS(1265), + [sym_comment] = ACTIONS(3), + }, + [198] = { [sym_identifier] = ACTIONS(1213), [aux_sym_preproc_include_token1] = ACTIONS(1213), [aux_sym_preproc_def_token1] = ACTIONS(1213), [aux_sym_preproc_if_token1] = ACTIONS(1213), - [aux_sym_preproc_if_token2] = ACTIONS(1213), [aux_sym_preproc_ifdef_token1] = ACTIONS(1213), [aux_sym_preproc_ifdef_token2] = ACTIONS(1213), [sym_preproc_directive] = ACTIONS(1213), @@ -35681,9 +39108,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___read_mostly] = ACTIONS(1213), [anon_sym___must_hold] = ACTIONS(1213), [anon_sym___ro_after_init] = ACTIONS(1213), - [anon_sym___init] = ACTIONS(1213), + [anon_sym___noreturn] = ACTIONS(1213), + [anon_sym___cold] = ACTIONS(1213), [anon_sym_LBRACK_LBRACK] = ACTIONS(1215), [anon_sym___declspec] = ACTIONS(1213), + [anon_sym___init] = ACTIONS(1213), + [anon_sym___exit] = ACTIONS(1213), [anon_sym___cdecl] = ACTIONS(1213), [anon_sym___clrcall] = ACTIONS(1213), [anon_sym___stdcall] = ACTIONS(1213), @@ -35691,6 +39121,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(1213), [anon_sym___vectorcall] = ACTIONS(1213), [anon_sym_LBRACE] = ACTIONS(1215), + [anon_sym_RBRACE] = ACTIONS(1215), [anon_sym_signed] = ACTIONS(1213), [anon_sym_unsigned] = ACTIONS(1213), [anon_sym_long] = ACTIONS(1213), @@ -35761,113 +39192,116 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1213), [sym_comment] = ACTIONS(3), }, - [179] = { - [sym_identifier] = ACTIONS(1221), - [aux_sym_preproc_include_token1] = ACTIONS(1221), - [aux_sym_preproc_def_token1] = ACTIONS(1221), - [aux_sym_preproc_if_token1] = ACTIONS(1221), - [aux_sym_preproc_if_token2] = ACTIONS(1221), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1221), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1221), - [sym_preproc_directive] = ACTIONS(1221), - [anon_sym_LPAREN2] = ACTIONS(1223), - [anon_sym_BANG] = ACTIONS(1223), - [anon_sym_TILDE] = ACTIONS(1223), - [anon_sym_DASH] = ACTIONS(1221), - [anon_sym_PLUS] = ACTIONS(1221), - [anon_sym_STAR] = ACTIONS(1223), - [anon_sym_AMP] = ACTIONS(1223), - [anon_sym_SEMI] = ACTIONS(1223), - [anon_sym___extension__] = ACTIONS(1221), - [anon_sym_typedef] = ACTIONS(1221), - [anon_sym_extern] = ACTIONS(1221), - [anon_sym___attribute__] = ACTIONS(1221), - [anon_sym___scanf] = ACTIONS(1221), - [anon_sym___printf] = ACTIONS(1221), - [anon_sym___read_mostly] = ACTIONS(1221), - [anon_sym___must_hold] = ACTIONS(1221), - [anon_sym___ro_after_init] = ACTIONS(1221), - [anon_sym___init] = ACTIONS(1221), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1223), - [anon_sym___declspec] = ACTIONS(1221), - [anon_sym___cdecl] = ACTIONS(1221), - [anon_sym___clrcall] = ACTIONS(1221), - [anon_sym___stdcall] = ACTIONS(1221), - [anon_sym___fastcall] = ACTIONS(1221), - [anon_sym___thiscall] = ACTIONS(1221), - [anon_sym___vectorcall] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_signed] = ACTIONS(1221), - [anon_sym_unsigned] = ACTIONS(1221), - [anon_sym_long] = ACTIONS(1221), - [anon_sym_short] = ACTIONS(1221), - [anon_sym_static] = ACTIONS(1221), - [anon_sym_auto] = ACTIONS(1221), - [anon_sym_register] = ACTIONS(1221), - [anon_sym_inline] = ACTIONS(1221), - [anon_sym___inline] = ACTIONS(1221), - [anon_sym___inline__] = ACTIONS(1221), - [anon_sym___forceinline] = ACTIONS(1221), - [anon_sym_thread_local] = ACTIONS(1221), - [anon_sym___thread] = ACTIONS(1221), - [anon_sym_const] = ACTIONS(1221), - [anon_sym_constexpr] = ACTIONS(1221), - [anon_sym_volatile] = ACTIONS(1221), - [anon_sym_restrict] = ACTIONS(1221), - [anon_sym___restrict__] = ACTIONS(1221), - [anon_sym__Atomic] = ACTIONS(1221), - [anon_sym__Noreturn] = ACTIONS(1221), - [anon_sym_noreturn] = ACTIONS(1221), - [anon_sym_alignas] = ACTIONS(1221), - [anon_sym__Alignas] = ACTIONS(1221), - [sym_primitive_type] = ACTIONS(1221), - [anon_sym_enum] = ACTIONS(1221), - [anon_sym_struct] = ACTIONS(1221), - [anon_sym_union] = ACTIONS(1221), - [anon_sym_if] = ACTIONS(1221), - [anon_sym_else] = ACTIONS(1221), - [anon_sym_switch] = ACTIONS(1221), - [anon_sym_case] = ACTIONS(1221), - [anon_sym_default] = ACTIONS(1221), - [anon_sym_while] = ACTIONS(1221), - [anon_sym_do] = ACTIONS(1221), - [anon_sym_for] = ACTIONS(1221), - [anon_sym_return] = ACTIONS(1221), - [anon_sym_break] = ACTIONS(1221), - [anon_sym_continue] = ACTIONS(1221), - [anon_sym_goto] = ACTIONS(1221), - [anon_sym___try] = ACTIONS(1221), - [anon_sym___leave] = ACTIONS(1221), - [anon_sym_DASH_DASH] = ACTIONS(1223), - [anon_sym_PLUS_PLUS] = ACTIONS(1223), - [anon_sym_sizeof] = ACTIONS(1221), - [anon_sym___alignof__] = ACTIONS(1221), - [anon_sym___alignof] = ACTIONS(1221), - [anon_sym__alignof] = ACTIONS(1221), - [anon_sym_alignof] = ACTIONS(1221), - [anon_sym__Alignof] = ACTIONS(1221), - [anon_sym_offsetof] = ACTIONS(1221), - [anon_sym__Generic] = ACTIONS(1221), - [anon_sym_asm] = ACTIONS(1221), - [anon_sym___asm__] = ACTIONS(1221), - [sym_number_literal] = ACTIONS(1223), - [anon_sym_L_SQUOTE] = ACTIONS(1223), - [anon_sym_u_SQUOTE] = ACTIONS(1223), - [anon_sym_U_SQUOTE] = ACTIONS(1223), - [anon_sym_u8_SQUOTE] = ACTIONS(1223), - [anon_sym_SQUOTE] = ACTIONS(1223), - [anon_sym_L_DQUOTE] = ACTIONS(1223), - [anon_sym_u_DQUOTE] = ACTIONS(1223), - [anon_sym_U_DQUOTE] = ACTIONS(1223), - [anon_sym_u8_DQUOTE] = ACTIONS(1223), - [anon_sym_DQUOTE] = ACTIONS(1223), - [sym_true] = ACTIONS(1221), - [sym_false] = ACTIONS(1221), - [anon_sym_NULL] = ACTIONS(1221), - [anon_sym_nullptr] = ACTIONS(1221), + [199] = { + [ts_builtin_sym_end] = ACTIONS(1207), + [sym_identifier] = ACTIONS(1205), + [aux_sym_preproc_include_token1] = ACTIONS(1205), + [aux_sym_preproc_def_token1] = ACTIONS(1205), + [aux_sym_preproc_if_token1] = ACTIONS(1205), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1205), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1205), + [sym_preproc_directive] = ACTIONS(1205), + [anon_sym_LPAREN2] = ACTIONS(1207), + [anon_sym_BANG] = ACTIONS(1207), + [anon_sym_TILDE] = ACTIONS(1207), + [anon_sym_DASH] = ACTIONS(1205), + [anon_sym_PLUS] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1207), + [anon_sym_AMP] = ACTIONS(1207), + [anon_sym_SEMI] = ACTIONS(1207), + [anon_sym___extension__] = ACTIONS(1205), + [anon_sym_typedef] = ACTIONS(1205), + [anon_sym_extern] = ACTIONS(1205), + [anon_sym___attribute__] = ACTIONS(1205), + [anon_sym___scanf] = ACTIONS(1205), + [anon_sym___printf] = ACTIONS(1205), + [anon_sym___read_mostly] = ACTIONS(1205), + [anon_sym___must_hold] = ACTIONS(1205), + [anon_sym___ro_after_init] = ACTIONS(1205), + [anon_sym___noreturn] = ACTIONS(1205), + [anon_sym___cold] = ACTIONS(1205), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1207), + [anon_sym___declspec] = ACTIONS(1205), + [anon_sym___init] = ACTIONS(1205), + [anon_sym___exit] = ACTIONS(1205), + [anon_sym___cdecl] = ACTIONS(1205), + [anon_sym___clrcall] = ACTIONS(1205), + [anon_sym___stdcall] = ACTIONS(1205), + [anon_sym___fastcall] = ACTIONS(1205), + [anon_sym___thiscall] = ACTIONS(1205), + [anon_sym___vectorcall] = ACTIONS(1205), + [anon_sym_LBRACE] = ACTIONS(1207), + [anon_sym_signed] = ACTIONS(1205), + [anon_sym_unsigned] = ACTIONS(1205), + [anon_sym_long] = ACTIONS(1205), + [anon_sym_short] = ACTIONS(1205), + [anon_sym_static] = ACTIONS(1205), + [anon_sym_auto] = ACTIONS(1205), + [anon_sym_register] = ACTIONS(1205), + [anon_sym_inline] = ACTIONS(1205), + [anon_sym___inline] = ACTIONS(1205), + [anon_sym___inline__] = ACTIONS(1205), + [anon_sym___forceinline] = ACTIONS(1205), + [anon_sym_thread_local] = ACTIONS(1205), + [anon_sym___thread] = ACTIONS(1205), + [anon_sym_const] = ACTIONS(1205), + [anon_sym_constexpr] = ACTIONS(1205), + [anon_sym_volatile] = ACTIONS(1205), + [anon_sym_restrict] = ACTIONS(1205), + [anon_sym___restrict__] = ACTIONS(1205), + [anon_sym__Atomic] = ACTIONS(1205), + [anon_sym__Noreturn] = ACTIONS(1205), + [anon_sym_noreturn] = ACTIONS(1205), + [anon_sym_alignas] = ACTIONS(1205), + [anon_sym__Alignas] = ACTIONS(1205), + [sym_primitive_type] = ACTIONS(1205), + [anon_sym_enum] = ACTIONS(1205), + [anon_sym_struct] = ACTIONS(1205), + [anon_sym_union] = ACTIONS(1205), + [anon_sym_if] = ACTIONS(1205), + [anon_sym_else] = ACTIONS(1205), + [anon_sym_switch] = ACTIONS(1205), + [anon_sym_case] = ACTIONS(1205), + [anon_sym_default] = ACTIONS(1205), + [anon_sym_while] = ACTIONS(1205), + [anon_sym_do] = ACTIONS(1205), + [anon_sym_for] = ACTIONS(1205), + [anon_sym_return] = ACTIONS(1205), + [anon_sym_break] = ACTIONS(1205), + [anon_sym_continue] = ACTIONS(1205), + [anon_sym_goto] = ACTIONS(1205), + [anon_sym___try] = ACTIONS(1205), + [anon_sym___leave] = ACTIONS(1205), + [anon_sym_DASH_DASH] = ACTIONS(1207), + [anon_sym_PLUS_PLUS] = ACTIONS(1207), + [anon_sym_sizeof] = ACTIONS(1205), + [anon_sym___alignof__] = ACTIONS(1205), + [anon_sym___alignof] = ACTIONS(1205), + [anon_sym__alignof] = ACTIONS(1205), + [anon_sym_alignof] = ACTIONS(1205), + [anon_sym__Alignof] = ACTIONS(1205), + [anon_sym_offsetof] = ACTIONS(1205), + [anon_sym__Generic] = ACTIONS(1205), + [anon_sym_asm] = ACTIONS(1205), + [anon_sym___asm__] = ACTIONS(1205), + [sym_number_literal] = ACTIONS(1207), + [anon_sym_L_SQUOTE] = ACTIONS(1207), + [anon_sym_u_SQUOTE] = ACTIONS(1207), + [anon_sym_U_SQUOTE] = ACTIONS(1207), + [anon_sym_u8_SQUOTE] = ACTIONS(1207), + [anon_sym_SQUOTE] = ACTIONS(1207), + [anon_sym_L_DQUOTE] = ACTIONS(1207), + [anon_sym_u_DQUOTE] = ACTIONS(1207), + [anon_sym_U_DQUOTE] = ACTIONS(1207), + [anon_sym_u8_DQUOTE] = ACTIONS(1207), + [anon_sym_DQUOTE] = ACTIONS(1207), + [sym_true] = ACTIONS(1205), + [sym_false] = ACTIONS(1205), + [anon_sym_NULL] = ACTIONS(1205), + [anon_sym_nullptr] = ACTIONS(1205), [sym_comment] = ACTIONS(3), }, - [180] = { + [200] = { [sym_identifier] = ACTIONS(1185), [aux_sym_preproc_include_token1] = ACTIONS(1185), [aux_sym_preproc_def_token1] = ACTIONS(1185), @@ -35892,9 +39326,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___read_mostly] = ACTIONS(1185), [anon_sym___must_hold] = ACTIONS(1185), [anon_sym___ro_after_init] = ACTIONS(1185), - [anon_sym___init] = ACTIONS(1185), + [anon_sym___noreturn] = ACTIONS(1185), + [anon_sym___cold] = ACTIONS(1185), [anon_sym_LBRACK_LBRACK] = ACTIONS(1187), [anon_sym___declspec] = ACTIONS(1185), + [anon_sym___init] = ACTIONS(1185), + [anon_sym___exit] = ACTIONS(1185), [anon_sym___cdecl] = ACTIONS(1185), [anon_sym___clrcall] = ACTIONS(1185), [anon_sym___stdcall] = ACTIONS(1185), @@ -35973,537 +39410,879 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1185), [sym_comment] = ACTIONS(3), }, - [181] = { - [sym_identifier] = ACTIONS(1177), - [aux_sym_preproc_include_token1] = ACTIONS(1177), - [aux_sym_preproc_def_token1] = ACTIONS(1177), - [aux_sym_preproc_if_token1] = ACTIONS(1177), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1177), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1177), - [sym_preproc_directive] = ACTIONS(1177), - [anon_sym_LPAREN2] = ACTIONS(1179), - [anon_sym_BANG] = ACTIONS(1179), - [anon_sym_TILDE] = ACTIONS(1179), - [anon_sym_DASH] = ACTIONS(1177), - [anon_sym_PLUS] = ACTIONS(1177), - [anon_sym_STAR] = ACTIONS(1179), - [anon_sym_AMP] = ACTIONS(1179), - [anon_sym_SEMI] = ACTIONS(1179), - [anon_sym___extension__] = ACTIONS(1177), - [anon_sym_typedef] = ACTIONS(1177), - [anon_sym_extern] = ACTIONS(1177), - [anon_sym___attribute__] = ACTIONS(1177), - [anon_sym___scanf] = ACTIONS(1177), - [anon_sym___printf] = ACTIONS(1177), - [anon_sym___read_mostly] = ACTIONS(1177), - [anon_sym___must_hold] = ACTIONS(1177), - [anon_sym___ro_after_init] = ACTIONS(1177), - [anon_sym___init] = ACTIONS(1177), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1179), - [anon_sym___declspec] = ACTIONS(1177), - [anon_sym___cdecl] = ACTIONS(1177), - [anon_sym___clrcall] = ACTIONS(1177), - [anon_sym___stdcall] = ACTIONS(1177), - [anon_sym___fastcall] = ACTIONS(1177), - [anon_sym___thiscall] = ACTIONS(1177), - [anon_sym___vectorcall] = ACTIONS(1177), - [anon_sym_LBRACE] = ACTIONS(1179), - [anon_sym_RBRACE] = ACTIONS(1179), - [anon_sym_signed] = ACTIONS(1177), - [anon_sym_unsigned] = ACTIONS(1177), - [anon_sym_long] = ACTIONS(1177), - [anon_sym_short] = ACTIONS(1177), - [anon_sym_static] = ACTIONS(1177), - [anon_sym_auto] = ACTIONS(1177), - [anon_sym_register] = ACTIONS(1177), - [anon_sym_inline] = ACTIONS(1177), - [anon_sym___inline] = ACTIONS(1177), - [anon_sym___inline__] = ACTIONS(1177), - [anon_sym___forceinline] = ACTIONS(1177), - [anon_sym_thread_local] = ACTIONS(1177), - [anon_sym___thread] = ACTIONS(1177), - [anon_sym_const] = ACTIONS(1177), - [anon_sym_constexpr] = ACTIONS(1177), - [anon_sym_volatile] = ACTIONS(1177), - [anon_sym_restrict] = ACTIONS(1177), - [anon_sym___restrict__] = ACTIONS(1177), - [anon_sym__Atomic] = ACTIONS(1177), - [anon_sym__Noreturn] = ACTIONS(1177), - [anon_sym_noreturn] = ACTIONS(1177), - [anon_sym_alignas] = ACTIONS(1177), - [anon_sym__Alignas] = ACTIONS(1177), - [sym_primitive_type] = ACTIONS(1177), - [anon_sym_enum] = ACTIONS(1177), - [anon_sym_struct] = ACTIONS(1177), - [anon_sym_union] = ACTIONS(1177), - [anon_sym_if] = ACTIONS(1177), - [anon_sym_else] = ACTIONS(1177), - [anon_sym_switch] = ACTIONS(1177), - [anon_sym_case] = ACTIONS(1177), - [anon_sym_default] = ACTIONS(1177), - [anon_sym_while] = ACTIONS(1177), - [anon_sym_do] = ACTIONS(1177), - [anon_sym_for] = ACTIONS(1177), - [anon_sym_return] = ACTIONS(1177), - [anon_sym_break] = ACTIONS(1177), - [anon_sym_continue] = ACTIONS(1177), - [anon_sym_goto] = ACTIONS(1177), - [anon_sym___try] = ACTIONS(1177), - [anon_sym___leave] = ACTIONS(1177), - [anon_sym_DASH_DASH] = ACTIONS(1179), - [anon_sym_PLUS_PLUS] = ACTIONS(1179), - [anon_sym_sizeof] = ACTIONS(1177), - [anon_sym___alignof__] = ACTIONS(1177), - [anon_sym___alignof] = ACTIONS(1177), - [anon_sym__alignof] = ACTIONS(1177), - [anon_sym_alignof] = ACTIONS(1177), - [anon_sym__Alignof] = ACTIONS(1177), - [anon_sym_offsetof] = ACTIONS(1177), - [anon_sym__Generic] = ACTIONS(1177), - [anon_sym_asm] = ACTIONS(1177), - [anon_sym___asm__] = ACTIONS(1177), - [sym_number_literal] = ACTIONS(1179), - [anon_sym_L_SQUOTE] = ACTIONS(1179), - [anon_sym_u_SQUOTE] = ACTIONS(1179), - [anon_sym_U_SQUOTE] = ACTIONS(1179), - [anon_sym_u8_SQUOTE] = ACTIONS(1179), - [anon_sym_SQUOTE] = ACTIONS(1179), - [anon_sym_L_DQUOTE] = ACTIONS(1179), - [anon_sym_u_DQUOTE] = ACTIONS(1179), - [anon_sym_U_DQUOTE] = ACTIONS(1179), - [anon_sym_u8_DQUOTE] = ACTIONS(1179), - [anon_sym_DQUOTE] = ACTIONS(1179), - [sym_true] = ACTIONS(1177), - [sym_false] = ACTIONS(1177), - [anon_sym_NULL] = ACTIONS(1177), - [anon_sym_nullptr] = ACTIONS(1177), + [201] = { + [ts_builtin_sym_end] = ACTIONS(1199), + [sym_identifier] = ACTIONS(1197), + [aux_sym_preproc_include_token1] = ACTIONS(1197), + [aux_sym_preproc_def_token1] = ACTIONS(1197), + [aux_sym_preproc_if_token1] = ACTIONS(1197), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1197), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1197), + [sym_preproc_directive] = ACTIONS(1197), + [anon_sym_LPAREN2] = ACTIONS(1199), + [anon_sym_BANG] = ACTIONS(1199), + [anon_sym_TILDE] = ACTIONS(1199), + [anon_sym_DASH] = ACTIONS(1197), + [anon_sym_PLUS] = ACTIONS(1197), + [anon_sym_STAR] = ACTIONS(1199), + [anon_sym_AMP] = ACTIONS(1199), + [anon_sym_SEMI] = ACTIONS(1199), + [anon_sym___extension__] = ACTIONS(1197), + [anon_sym_typedef] = ACTIONS(1197), + [anon_sym_extern] = ACTIONS(1197), + [anon_sym___attribute__] = ACTIONS(1197), + [anon_sym___scanf] = ACTIONS(1197), + [anon_sym___printf] = ACTIONS(1197), + [anon_sym___read_mostly] = ACTIONS(1197), + [anon_sym___must_hold] = ACTIONS(1197), + [anon_sym___ro_after_init] = ACTIONS(1197), + [anon_sym___noreturn] = ACTIONS(1197), + [anon_sym___cold] = ACTIONS(1197), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1199), + [anon_sym___declspec] = ACTIONS(1197), + [anon_sym___init] = ACTIONS(1197), + [anon_sym___exit] = ACTIONS(1197), + [anon_sym___cdecl] = ACTIONS(1197), + [anon_sym___clrcall] = ACTIONS(1197), + [anon_sym___stdcall] = ACTIONS(1197), + [anon_sym___fastcall] = ACTIONS(1197), + [anon_sym___thiscall] = ACTIONS(1197), + [anon_sym___vectorcall] = ACTIONS(1197), + [anon_sym_LBRACE] = ACTIONS(1199), + [anon_sym_signed] = ACTIONS(1197), + [anon_sym_unsigned] = ACTIONS(1197), + [anon_sym_long] = ACTIONS(1197), + [anon_sym_short] = ACTIONS(1197), + [anon_sym_static] = ACTIONS(1197), + [anon_sym_auto] = ACTIONS(1197), + [anon_sym_register] = ACTIONS(1197), + [anon_sym_inline] = ACTIONS(1197), + [anon_sym___inline] = ACTIONS(1197), + [anon_sym___inline__] = ACTIONS(1197), + [anon_sym___forceinline] = ACTIONS(1197), + [anon_sym_thread_local] = ACTIONS(1197), + [anon_sym___thread] = ACTIONS(1197), + [anon_sym_const] = ACTIONS(1197), + [anon_sym_constexpr] = ACTIONS(1197), + [anon_sym_volatile] = ACTIONS(1197), + [anon_sym_restrict] = ACTIONS(1197), + [anon_sym___restrict__] = ACTIONS(1197), + [anon_sym__Atomic] = ACTIONS(1197), + [anon_sym__Noreturn] = ACTIONS(1197), + [anon_sym_noreturn] = ACTIONS(1197), + [anon_sym_alignas] = ACTIONS(1197), + [anon_sym__Alignas] = ACTIONS(1197), + [sym_primitive_type] = ACTIONS(1197), + [anon_sym_enum] = ACTIONS(1197), + [anon_sym_struct] = ACTIONS(1197), + [anon_sym_union] = ACTIONS(1197), + [anon_sym_if] = ACTIONS(1197), + [anon_sym_else] = ACTIONS(1197), + [anon_sym_switch] = ACTIONS(1197), + [anon_sym_case] = ACTIONS(1197), + [anon_sym_default] = ACTIONS(1197), + [anon_sym_while] = ACTIONS(1197), + [anon_sym_do] = ACTIONS(1197), + [anon_sym_for] = ACTIONS(1197), + [anon_sym_return] = ACTIONS(1197), + [anon_sym_break] = ACTIONS(1197), + [anon_sym_continue] = ACTIONS(1197), + [anon_sym_goto] = ACTIONS(1197), + [anon_sym___try] = ACTIONS(1197), + [anon_sym___leave] = ACTIONS(1197), + [anon_sym_DASH_DASH] = ACTIONS(1199), + [anon_sym_PLUS_PLUS] = ACTIONS(1199), + [anon_sym_sizeof] = ACTIONS(1197), + [anon_sym___alignof__] = ACTIONS(1197), + [anon_sym___alignof] = ACTIONS(1197), + [anon_sym__alignof] = ACTIONS(1197), + [anon_sym_alignof] = ACTIONS(1197), + [anon_sym__Alignof] = ACTIONS(1197), + [anon_sym_offsetof] = ACTIONS(1197), + [anon_sym__Generic] = ACTIONS(1197), + [anon_sym_asm] = ACTIONS(1197), + [anon_sym___asm__] = ACTIONS(1197), + [sym_number_literal] = ACTIONS(1199), + [anon_sym_L_SQUOTE] = ACTIONS(1199), + [anon_sym_u_SQUOTE] = ACTIONS(1199), + [anon_sym_U_SQUOTE] = ACTIONS(1199), + [anon_sym_u8_SQUOTE] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1199), + [anon_sym_L_DQUOTE] = ACTIONS(1199), + [anon_sym_u_DQUOTE] = ACTIONS(1199), + [anon_sym_U_DQUOTE] = ACTIONS(1199), + [anon_sym_u8_DQUOTE] = ACTIONS(1199), + [anon_sym_DQUOTE] = ACTIONS(1199), + [sym_true] = ACTIONS(1197), + [sym_false] = ACTIONS(1197), + [anon_sym_NULL] = ACTIONS(1197), + [anon_sym_nullptr] = ACTIONS(1197), [sym_comment] = ACTIONS(3), }, - [182] = { - [sym_identifier] = ACTIONS(1249), - [aux_sym_preproc_include_token1] = ACTIONS(1249), - [aux_sym_preproc_def_token1] = ACTIONS(1249), - [aux_sym_preproc_if_token1] = ACTIONS(1249), - [aux_sym_preproc_if_token2] = ACTIONS(1249), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1249), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1249), - [sym_preproc_directive] = ACTIONS(1249), - [anon_sym_LPAREN2] = ACTIONS(1251), - [anon_sym_BANG] = ACTIONS(1251), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1249), - [anon_sym_STAR] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1251), - [anon_sym_SEMI] = ACTIONS(1251), - [anon_sym___extension__] = ACTIONS(1249), - [anon_sym_typedef] = ACTIONS(1249), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym___attribute__] = ACTIONS(1249), - [anon_sym___scanf] = ACTIONS(1249), - [anon_sym___printf] = ACTIONS(1249), - [anon_sym___read_mostly] = ACTIONS(1249), - [anon_sym___must_hold] = ACTIONS(1249), - [anon_sym___ro_after_init] = ACTIONS(1249), - [anon_sym___init] = ACTIONS(1249), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1251), - [anon_sym___declspec] = ACTIONS(1249), - [anon_sym___cdecl] = ACTIONS(1249), - [anon_sym___clrcall] = ACTIONS(1249), - [anon_sym___stdcall] = ACTIONS(1249), - [anon_sym___fastcall] = ACTIONS(1249), - [anon_sym___thiscall] = ACTIONS(1249), - [anon_sym___vectorcall] = ACTIONS(1249), - [anon_sym_LBRACE] = ACTIONS(1251), - [anon_sym_signed] = ACTIONS(1249), - [anon_sym_unsigned] = ACTIONS(1249), - [anon_sym_long] = ACTIONS(1249), - [anon_sym_short] = ACTIONS(1249), - [anon_sym_static] = ACTIONS(1249), - [anon_sym_auto] = ACTIONS(1249), - [anon_sym_register] = ACTIONS(1249), - [anon_sym_inline] = ACTIONS(1249), - [anon_sym___inline] = ACTIONS(1249), - [anon_sym___inline__] = ACTIONS(1249), - [anon_sym___forceinline] = ACTIONS(1249), - [anon_sym_thread_local] = ACTIONS(1249), - [anon_sym___thread] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_constexpr] = ACTIONS(1249), - [anon_sym_volatile] = ACTIONS(1249), - [anon_sym_restrict] = ACTIONS(1249), - [anon_sym___restrict__] = ACTIONS(1249), - [anon_sym__Atomic] = ACTIONS(1249), - [anon_sym__Noreturn] = ACTIONS(1249), - [anon_sym_noreturn] = ACTIONS(1249), - [anon_sym_alignas] = ACTIONS(1249), - [anon_sym__Alignas] = ACTIONS(1249), - [sym_primitive_type] = ACTIONS(1249), - [anon_sym_enum] = ACTIONS(1249), - [anon_sym_struct] = ACTIONS(1249), - [anon_sym_union] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1249), - [anon_sym_else] = ACTIONS(1249), - [anon_sym_switch] = ACTIONS(1249), - [anon_sym_case] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(1249), - [anon_sym_while] = ACTIONS(1249), - [anon_sym_do] = ACTIONS(1249), - [anon_sym_for] = ACTIONS(1249), - [anon_sym_return] = ACTIONS(1249), - [anon_sym_break] = ACTIONS(1249), - [anon_sym_continue] = ACTIONS(1249), - [anon_sym_goto] = ACTIONS(1249), - [anon_sym___try] = ACTIONS(1249), - [anon_sym___leave] = ACTIONS(1249), - [anon_sym_DASH_DASH] = ACTIONS(1251), - [anon_sym_PLUS_PLUS] = ACTIONS(1251), - [anon_sym_sizeof] = ACTIONS(1249), - [anon_sym___alignof__] = ACTIONS(1249), - [anon_sym___alignof] = ACTIONS(1249), - [anon_sym__alignof] = ACTIONS(1249), - [anon_sym_alignof] = ACTIONS(1249), - [anon_sym__Alignof] = ACTIONS(1249), - [anon_sym_offsetof] = ACTIONS(1249), - [anon_sym__Generic] = ACTIONS(1249), - [anon_sym_asm] = ACTIONS(1249), - [anon_sym___asm__] = ACTIONS(1249), - [sym_number_literal] = ACTIONS(1251), - [anon_sym_L_SQUOTE] = ACTIONS(1251), - [anon_sym_u_SQUOTE] = ACTIONS(1251), - [anon_sym_U_SQUOTE] = ACTIONS(1251), - [anon_sym_u8_SQUOTE] = ACTIONS(1251), - [anon_sym_SQUOTE] = ACTIONS(1251), - [anon_sym_L_DQUOTE] = ACTIONS(1251), - [anon_sym_u_DQUOTE] = ACTIONS(1251), - [anon_sym_U_DQUOTE] = ACTIONS(1251), - [anon_sym_u8_DQUOTE] = ACTIONS(1251), - [anon_sym_DQUOTE] = ACTIONS(1251), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [anon_sym_NULL] = ACTIONS(1249), - [anon_sym_nullptr] = ACTIONS(1249), + [202] = { + [ts_builtin_sym_end] = ACTIONS(1199), + [sym_identifier] = ACTIONS(1197), + [aux_sym_preproc_include_token1] = ACTIONS(1197), + [aux_sym_preproc_def_token1] = ACTIONS(1197), + [aux_sym_preproc_if_token1] = ACTIONS(1197), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1197), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1197), + [sym_preproc_directive] = ACTIONS(1197), + [anon_sym_LPAREN2] = ACTIONS(1199), + [anon_sym_BANG] = ACTIONS(1199), + [anon_sym_TILDE] = ACTIONS(1199), + [anon_sym_DASH] = ACTIONS(1197), + [anon_sym_PLUS] = ACTIONS(1197), + [anon_sym_STAR] = ACTIONS(1199), + [anon_sym_AMP] = ACTIONS(1199), + [anon_sym_SEMI] = ACTIONS(1199), + [anon_sym___extension__] = ACTIONS(1197), + [anon_sym_typedef] = ACTIONS(1197), + [anon_sym_extern] = ACTIONS(1197), + [anon_sym___attribute__] = ACTIONS(1197), + [anon_sym___scanf] = ACTIONS(1197), + [anon_sym___printf] = ACTIONS(1197), + [anon_sym___read_mostly] = ACTIONS(1197), + [anon_sym___must_hold] = ACTIONS(1197), + [anon_sym___ro_after_init] = ACTIONS(1197), + [anon_sym___noreturn] = ACTIONS(1197), + [anon_sym___cold] = ACTIONS(1197), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1199), + [anon_sym___declspec] = ACTIONS(1197), + [anon_sym___init] = ACTIONS(1197), + [anon_sym___exit] = ACTIONS(1197), + [anon_sym___cdecl] = ACTIONS(1197), + [anon_sym___clrcall] = ACTIONS(1197), + [anon_sym___stdcall] = ACTIONS(1197), + [anon_sym___fastcall] = ACTIONS(1197), + [anon_sym___thiscall] = ACTIONS(1197), + [anon_sym___vectorcall] = ACTIONS(1197), + [anon_sym_LBRACE] = ACTIONS(1199), + [anon_sym_signed] = ACTIONS(1197), + [anon_sym_unsigned] = ACTIONS(1197), + [anon_sym_long] = ACTIONS(1197), + [anon_sym_short] = ACTIONS(1197), + [anon_sym_static] = ACTIONS(1197), + [anon_sym_auto] = ACTIONS(1197), + [anon_sym_register] = ACTIONS(1197), + [anon_sym_inline] = ACTIONS(1197), + [anon_sym___inline] = ACTIONS(1197), + [anon_sym___inline__] = ACTIONS(1197), + [anon_sym___forceinline] = ACTIONS(1197), + [anon_sym_thread_local] = ACTIONS(1197), + [anon_sym___thread] = ACTIONS(1197), + [anon_sym_const] = ACTIONS(1197), + [anon_sym_constexpr] = ACTIONS(1197), + [anon_sym_volatile] = ACTIONS(1197), + [anon_sym_restrict] = ACTIONS(1197), + [anon_sym___restrict__] = ACTIONS(1197), + [anon_sym__Atomic] = ACTIONS(1197), + [anon_sym__Noreturn] = ACTIONS(1197), + [anon_sym_noreturn] = ACTIONS(1197), + [anon_sym_alignas] = ACTIONS(1197), + [anon_sym__Alignas] = ACTIONS(1197), + [sym_primitive_type] = ACTIONS(1197), + [anon_sym_enum] = ACTIONS(1197), + [anon_sym_struct] = ACTIONS(1197), + [anon_sym_union] = ACTIONS(1197), + [anon_sym_if] = ACTIONS(1197), + [anon_sym_else] = ACTIONS(1197), + [anon_sym_switch] = ACTIONS(1197), + [anon_sym_case] = ACTIONS(1197), + [anon_sym_default] = ACTIONS(1197), + [anon_sym_while] = ACTIONS(1197), + [anon_sym_do] = ACTIONS(1197), + [anon_sym_for] = ACTIONS(1197), + [anon_sym_return] = ACTIONS(1197), + [anon_sym_break] = ACTIONS(1197), + [anon_sym_continue] = ACTIONS(1197), + [anon_sym_goto] = ACTIONS(1197), + [anon_sym___try] = ACTIONS(1197), + [anon_sym___leave] = ACTIONS(1197), + [anon_sym_DASH_DASH] = ACTIONS(1199), + [anon_sym_PLUS_PLUS] = ACTIONS(1199), + [anon_sym_sizeof] = ACTIONS(1197), + [anon_sym___alignof__] = ACTIONS(1197), + [anon_sym___alignof] = ACTIONS(1197), + [anon_sym__alignof] = ACTIONS(1197), + [anon_sym_alignof] = ACTIONS(1197), + [anon_sym__Alignof] = ACTIONS(1197), + [anon_sym_offsetof] = ACTIONS(1197), + [anon_sym__Generic] = ACTIONS(1197), + [anon_sym_asm] = ACTIONS(1197), + [anon_sym___asm__] = ACTIONS(1197), + [sym_number_literal] = ACTIONS(1199), + [anon_sym_L_SQUOTE] = ACTIONS(1199), + [anon_sym_u_SQUOTE] = ACTIONS(1199), + [anon_sym_U_SQUOTE] = ACTIONS(1199), + [anon_sym_u8_SQUOTE] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1199), + [anon_sym_L_DQUOTE] = ACTIONS(1199), + [anon_sym_u_DQUOTE] = ACTIONS(1199), + [anon_sym_U_DQUOTE] = ACTIONS(1199), + [anon_sym_u8_DQUOTE] = ACTIONS(1199), + [anon_sym_DQUOTE] = ACTIONS(1199), + [sym_true] = ACTIONS(1197), + [sym_false] = ACTIONS(1197), + [anon_sym_NULL] = ACTIONS(1197), + [anon_sym_nullptr] = ACTIONS(1197), [sym_comment] = ACTIONS(3), }, - [183] = { - [sym_identifier] = ACTIONS(1169), - [aux_sym_preproc_include_token1] = ACTIONS(1169), - [aux_sym_preproc_def_token1] = ACTIONS(1169), - [aux_sym_preproc_if_token1] = ACTIONS(1169), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1169), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1169), - [sym_preproc_directive] = ACTIONS(1169), - [anon_sym_LPAREN2] = ACTIONS(1171), - [anon_sym_BANG] = ACTIONS(1171), - [anon_sym_TILDE] = ACTIONS(1171), - [anon_sym_DASH] = ACTIONS(1169), - [anon_sym_PLUS] = ACTIONS(1169), - [anon_sym_STAR] = ACTIONS(1171), - [anon_sym_AMP] = ACTIONS(1171), - [anon_sym_SEMI] = ACTIONS(1171), - [anon_sym___extension__] = ACTIONS(1169), - [anon_sym_typedef] = ACTIONS(1169), - [anon_sym_extern] = ACTIONS(1169), - [anon_sym___attribute__] = ACTIONS(1169), - [anon_sym___scanf] = ACTIONS(1169), - [anon_sym___printf] = ACTIONS(1169), - [anon_sym___read_mostly] = ACTIONS(1169), - [anon_sym___must_hold] = ACTIONS(1169), - [anon_sym___ro_after_init] = ACTIONS(1169), - [anon_sym___init] = ACTIONS(1169), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1171), - [anon_sym___declspec] = ACTIONS(1169), - [anon_sym___cdecl] = ACTIONS(1169), - [anon_sym___clrcall] = ACTIONS(1169), - [anon_sym___stdcall] = ACTIONS(1169), - [anon_sym___fastcall] = ACTIONS(1169), - [anon_sym___thiscall] = ACTIONS(1169), - [anon_sym___vectorcall] = ACTIONS(1169), - [anon_sym_LBRACE] = ACTIONS(1171), - [anon_sym_RBRACE] = ACTIONS(1171), - [anon_sym_signed] = ACTIONS(1169), - [anon_sym_unsigned] = ACTIONS(1169), - [anon_sym_long] = ACTIONS(1169), - [anon_sym_short] = ACTIONS(1169), - [anon_sym_static] = ACTIONS(1169), - [anon_sym_auto] = ACTIONS(1169), - [anon_sym_register] = ACTIONS(1169), - [anon_sym_inline] = ACTIONS(1169), - [anon_sym___inline] = ACTIONS(1169), - [anon_sym___inline__] = ACTIONS(1169), - [anon_sym___forceinline] = ACTIONS(1169), - [anon_sym_thread_local] = ACTIONS(1169), - [anon_sym___thread] = ACTIONS(1169), - [anon_sym_const] = ACTIONS(1169), - [anon_sym_constexpr] = ACTIONS(1169), - [anon_sym_volatile] = ACTIONS(1169), - [anon_sym_restrict] = ACTIONS(1169), - [anon_sym___restrict__] = ACTIONS(1169), - [anon_sym__Atomic] = ACTIONS(1169), - [anon_sym__Noreturn] = ACTIONS(1169), - [anon_sym_noreturn] = ACTIONS(1169), - [anon_sym_alignas] = ACTIONS(1169), - [anon_sym__Alignas] = ACTIONS(1169), - [sym_primitive_type] = ACTIONS(1169), - [anon_sym_enum] = ACTIONS(1169), - [anon_sym_struct] = ACTIONS(1169), - [anon_sym_union] = ACTIONS(1169), - [anon_sym_if] = ACTIONS(1169), - [anon_sym_else] = ACTIONS(1169), - [anon_sym_switch] = ACTIONS(1169), - [anon_sym_case] = ACTIONS(1169), - [anon_sym_default] = ACTIONS(1169), - [anon_sym_while] = ACTIONS(1169), - [anon_sym_do] = ACTIONS(1169), - [anon_sym_for] = ACTIONS(1169), - [anon_sym_return] = ACTIONS(1169), - [anon_sym_break] = ACTIONS(1169), - [anon_sym_continue] = ACTIONS(1169), - [anon_sym_goto] = ACTIONS(1169), - [anon_sym___try] = ACTIONS(1169), - [anon_sym___leave] = ACTIONS(1169), - [anon_sym_DASH_DASH] = ACTIONS(1171), - [anon_sym_PLUS_PLUS] = ACTIONS(1171), - [anon_sym_sizeof] = ACTIONS(1169), - [anon_sym___alignof__] = ACTIONS(1169), - [anon_sym___alignof] = ACTIONS(1169), - [anon_sym__alignof] = ACTIONS(1169), - [anon_sym_alignof] = ACTIONS(1169), - [anon_sym__Alignof] = ACTIONS(1169), - [anon_sym_offsetof] = ACTIONS(1169), - [anon_sym__Generic] = ACTIONS(1169), - [anon_sym_asm] = ACTIONS(1169), - [anon_sym___asm__] = ACTIONS(1169), - [sym_number_literal] = ACTIONS(1171), - [anon_sym_L_SQUOTE] = ACTIONS(1171), - [anon_sym_u_SQUOTE] = ACTIONS(1171), - [anon_sym_U_SQUOTE] = ACTIONS(1171), - [anon_sym_u8_SQUOTE] = ACTIONS(1171), - [anon_sym_SQUOTE] = ACTIONS(1171), - [anon_sym_L_DQUOTE] = ACTIONS(1171), - [anon_sym_u_DQUOTE] = ACTIONS(1171), - [anon_sym_U_DQUOTE] = ACTIONS(1171), - [anon_sym_u8_DQUOTE] = ACTIONS(1171), - [anon_sym_DQUOTE] = ACTIONS(1171), - [sym_true] = ACTIONS(1169), - [sym_false] = ACTIONS(1169), - [anon_sym_NULL] = ACTIONS(1169), - [anon_sym_nullptr] = ACTIONS(1169), + [203] = { + [sym_identifier] = ACTIONS(1217), + [aux_sym_preproc_include_token1] = ACTIONS(1217), + [aux_sym_preproc_def_token1] = ACTIONS(1217), + [aux_sym_preproc_if_token1] = ACTIONS(1217), + [aux_sym_preproc_if_token2] = ACTIONS(1217), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1217), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1217), + [sym_preproc_directive] = ACTIONS(1217), + [anon_sym_LPAREN2] = ACTIONS(1219), + [anon_sym_BANG] = ACTIONS(1219), + [anon_sym_TILDE] = ACTIONS(1219), + [anon_sym_DASH] = ACTIONS(1217), + [anon_sym_PLUS] = ACTIONS(1217), + [anon_sym_STAR] = ACTIONS(1219), + [anon_sym_AMP] = ACTIONS(1219), + [anon_sym_SEMI] = ACTIONS(1219), + [anon_sym___extension__] = ACTIONS(1217), + [anon_sym_typedef] = ACTIONS(1217), + [anon_sym_extern] = ACTIONS(1217), + [anon_sym___attribute__] = ACTIONS(1217), + [anon_sym___scanf] = ACTIONS(1217), + [anon_sym___printf] = ACTIONS(1217), + [anon_sym___read_mostly] = ACTIONS(1217), + [anon_sym___must_hold] = ACTIONS(1217), + [anon_sym___ro_after_init] = ACTIONS(1217), + [anon_sym___noreturn] = ACTIONS(1217), + [anon_sym___cold] = ACTIONS(1217), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1219), + [anon_sym___declspec] = ACTIONS(1217), + [anon_sym___init] = ACTIONS(1217), + [anon_sym___exit] = ACTIONS(1217), + [anon_sym___cdecl] = ACTIONS(1217), + [anon_sym___clrcall] = ACTIONS(1217), + [anon_sym___stdcall] = ACTIONS(1217), + [anon_sym___fastcall] = ACTIONS(1217), + [anon_sym___thiscall] = ACTIONS(1217), + [anon_sym___vectorcall] = ACTIONS(1217), + [anon_sym_LBRACE] = ACTIONS(1219), + [anon_sym_signed] = ACTIONS(1217), + [anon_sym_unsigned] = ACTIONS(1217), + [anon_sym_long] = ACTIONS(1217), + [anon_sym_short] = ACTIONS(1217), + [anon_sym_static] = ACTIONS(1217), + [anon_sym_auto] = ACTIONS(1217), + [anon_sym_register] = ACTIONS(1217), + [anon_sym_inline] = ACTIONS(1217), + [anon_sym___inline] = ACTIONS(1217), + [anon_sym___inline__] = ACTIONS(1217), + [anon_sym___forceinline] = ACTIONS(1217), + [anon_sym_thread_local] = ACTIONS(1217), + [anon_sym___thread] = ACTIONS(1217), + [anon_sym_const] = ACTIONS(1217), + [anon_sym_constexpr] = ACTIONS(1217), + [anon_sym_volatile] = ACTIONS(1217), + [anon_sym_restrict] = ACTIONS(1217), + [anon_sym___restrict__] = ACTIONS(1217), + [anon_sym__Atomic] = ACTIONS(1217), + [anon_sym__Noreturn] = ACTIONS(1217), + [anon_sym_noreturn] = ACTIONS(1217), + [anon_sym_alignas] = ACTIONS(1217), + [anon_sym__Alignas] = ACTIONS(1217), + [sym_primitive_type] = ACTIONS(1217), + [anon_sym_enum] = ACTIONS(1217), + [anon_sym_struct] = ACTIONS(1217), + [anon_sym_union] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1217), + [anon_sym_else] = ACTIONS(1217), + [anon_sym_switch] = ACTIONS(1217), + [anon_sym_case] = ACTIONS(1217), + [anon_sym_default] = ACTIONS(1217), + [anon_sym_while] = ACTIONS(1217), + [anon_sym_do] = ACTIONS(1217), + [anon_sym_for] = ACTIONS(1217), + [anon_sym_return] = ACTIONS(1217), + [anon_sym_break] = ACTIONS(1217), + [anon_sym_continue] = ACTIONS(1217), + [anon_sym_goto] = ACTIONS(1217), + [anon_sym___try] = ACTIONS(1217), + [anon_sym___leave] = ACTIONS(1217), + [anon_sym_DASH_DASH] = ACTIONS(1219), + [anon_sym_PLUS_PLUS] = ACTIONS(1219), + [anon_sym_sizeof] = ACTIONS(1217), + [anon_sym___alignof__] = ACTIONS(1217), + [anon_sym___alignof] = ACTIONS(1217), + [anon_sym__alignof] = ACTIONS(1217), + [anon_sym_alignof] = ACTIONS(1217), + [anon_sym__Alignof] = ACTIONS(1217), + [anon_sym_offsetof] = ACTIONS(1217), + [anon_sym__Generic] = ACTIONS(1217), + [anon_sym_asm] = ACTIONS(1217), + [anon_sym___asm__] = ACTIONS(1217), + [sym_number_literal] = ACTIONS(1219), + [anon_sym_L_SQUOTE] = ACTIONS(1219), + [anon_sym_u_SQUOTE] = ACTIONS(1219), + [anon_sym_U_SQUOTE] = ACTIONS(1219), + [anon_sym_u8_SQUOTE] = ACTIONS(1219), + [anon_sym_SQUOTE] = ACTIONS(1219), + [anon_sym_L_DQUOTE] = ACTIONS(1219), + [anon_sym_u_DQUOTE] = ACTIONS(1219), + [anon_sym_U_DQUOTE] = ACTIONS(1219), + [anon_sym_u8_DQUOTE] = ACTIONS(1219), + [anon_sym_DQUOTE] = ACTIONS(1219), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [anon_sym_NULL] = ACTIONS(1217), + [anon_sym_nullptr] = ACTIONS(1217), + [sym_comment] = ACTIONS(3), + }, + [204] = { + [sym_identifier] = ACTIONS(1221), + [aux_sym_preproc_include_token1] = ACTIONS(1221), + [aux_sym_preproc_def_token1] = ACTIONS(1221), + [aux_sym_preproc_if_token1] = ACTIONS(1221), + [aux_sym_preproc_if_token2] = ACTIONS(1221), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1221), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1221), + [sym_preproc_directive] = ACTIONS(1221), + [anon_sym_LPAREN2] = ACTIONS(1223), + [anon_sym_BANG] = ACTIONS(1223), + [anon_sym_TILDE] = ACTIONS(1223), + [anon_sym_DASH] = ACTIONS(1221), + [anon_sym_PLUS] = ACTIONS(1221), + [anon_sym_STAR] = ACTIONS(1223), + [anon_sym_AMP] = ACTIONS(1223), + [anon_sym_SEMI] = ACTIONS(1223), + [anon_sym___extension__] = ACTIONS(1221), + [anon_sym_typedef] = ACTIONS(1221), + [anon_sym_extern] = ACTIONS(1221), + [anon_sym___attribute__] = ACTIONS(1221), + [anon_sym___scanf] = ACTIONS(1221), + [anon_sym___printf] = ACTIONS(1221), + [anon_sym___read_mostly] = ACTIONS(1221), + [anon_sym___must_hold] = ACTIONS(1221), + [anon_sym___ro_after_init] = ACTIONS(1221), + [anon_sym___noreturn] = ACTIONS(1221), + [anon_sym___cold] = ACTIONS(1221), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1223), + [anon_sym___declspec] = ACTIONS(1221), + [anon_sym___init] = ACTIONS(1221), + [anon_sym___exit] = ACTIONS(1221), + [anon_sym___cdecl] = ACTIONS(1221), + [anon_sym___clrcall] = ACTIONS(1221), + [anon_sym___stdcall] = ACTIONS(1221), + [anon_sym___fastcall] = ACTIONS(1221), + [anon_sym___thiscall] = ACTIONS(1221), + [anon_sym___vectorcall] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_signed] = ACTIONS(1221), + [anon_sym_unsigned] = ACTIONS(1221), + [anon_sym_long] = ACTIONS(1221), + [anon_sym_short] = ACTIONS(1221), + [anon_sym_static] = ACTIONS(1221), + [anon_sym_auto] = ACTIONS(1221), + [anon_sym_register] = ACTIONS(1221), + [anon_sym_inline] = ACTIONS(1221), + [anon_sym___inline] = ACTIONS(1221), + [anon_sym___inline__] = ACTIONS(1221), + [anon_sym___forceinline] = ACTIONS(1221), + [anon_sym_thread_local] = ACTIONS(1221), + [anon_sym___thread] = ACTIONS(1221), + [anon_sym_const] = ACTIONS(1221), + [anon_sym_constexpr] = ACTIONS(1221), + [anon_sym_volatile] = ACTIONS(1221), + [anon_sym_restrict] = ACTIONS(1221), + [anon_sym___restrict__] = ACTIONS(1221), + [anon_sym__Atomic] = ACTIONS(1221), + [anon_sym__Noreturn] = ACTIONS(1221), + [anon_sym_noreturn] = ACTIONS(1221), + [anon_sym_alignas] = ACTIONS(1221), + [anon_sym__Alignas] = ACTIONS(1221), + [sym_primitive_type] = ACTIONS(1221), + [anon_sym_enum] = ACTIONS(1221), + [anon_sym_struct] = ACTIONS(1221), + [anon_sym_union] = ACTIONS(1221), + [anon_sym_if] = ACTIONS(1221), + [anon_sym_else] = ACTIONS(1221), + [anon_sym_switch] = ACTIONS(1221), + [anon_sym_case] = ACTIONS(1221), + [anon_sym_default] = ACTIONS(1221), + [anon_sym_while] = ACTIONS(1221), + [anon_sym_do] = ACTIONS(1221), + [anon_sym_for] = ACTIONS(1221), + [anon_sym_return] = ACTIONS(1221), + [anon_sym_break] = ACTIONS(1221), + [anon_sym_continue] = ACTIONS(1221), + [anon_sym_goto] = ACTIONS(1221), + [anon_sym___try] = ACTIONS(1221), + [anon_sym___leave] = ACTIONS(1221), + [anon_sym_DASH_DASH] = ACTIONS(1223), + [anon_sym_PLUS_PLUS] = ACTIONS(1223), + [anon_sym_sizeof] = ACTIONS(1221), + [anon_sym___alignof__] = ACTIONS(1221), + [anon_sym___alignof] = ACTIONS(1221), + [anon_sym__alignof] = ACTIONS(1221), + [anon_sym_alignof] = ACTIONS(1221), + [anon_sym__Alignof] = ACTIONS(1221), + [anon_sym_offsetof] = ACTIONS(1221), + [anon_sym__Generic] = ACTIONS(1221), + [anon_sym_asm] = ACTIONS(1221), + [anon_sym___asm__] = ACTIONS(1221), + [sym_number_literal] = ACTIONS(1223), + [anon_sym_L_SQUOTE] = ACTIONS(1223), + [anon_sym_u_SQUOTE] = ACTIONS(1223), + [anon_sym_U_SQUOTE] = ACTIONS(1223), + [anon_sym_u8_SQUOTE] = ACTIONS(1223), + [anon_sym_SQUOTE] = ACTIONS(1223), + [anon_sym_L_DQUOTE] = ACTIONS(1223), + [anon_sym_u_DQUOTE] = ACTIONS(1223), + [anon_sym_U_DQUOTE] = ACTIONS(1223), + [anon_sym_u8_DQUOTE] = ACTIONS(1223), + [anon_sym_DQUOTE] = ACTIONS(1223), + [sym_true] = ACTIONS(1221), + [sym_false] = ACTIONS(1221), + [anon_sym_NULL] = ACTIONS(1221), + [anon_sym_nullptr] = ACTIONS(1221), [sym_comment] = ACTIONS(3), }, - [184] = { - [sym_identifier] = ACTIONS(1155), - [aux_sym_preproc_include_token1] = ACTIONS(1155), - [aux_sym_preproc_def_token1] = ACTIONS(1155), - [aux_sym_preproc_if_token1] = ACTIONS(1155), - [aux_sym_preproc_if_token2] = ACTIONS(1155), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1155), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1155), - [sym_preproc_directive] = ACTIONS(1155), - [anon_sym_LPAREN2] = ACTIONS(1153), - [anon_sym_BANG] = ACTIONS(1153), - [anon_sym_TILDE] = ACTIONS(1153), - [anon_sym_DASH] = ACTIONS(1155), - [anon_sym_PLUS] = ACTIONS(1155), - [anon_sym_STAR] = ACTIONS(1153), - [anon_sym_AMP] = ACTIONS(1153), - [anon_sym_SEMI] = ACTIONS(1153), - [anon_sym___extension__] = ACTIONS(1155), - [anon_sym_typedef] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1155), - [anon_sym___attribute__] = ACTIONS(1155), - [anon_sym___scanf] = ACTIONS(1155), - [anon_sym___printf] = ACTIONS(1155), - [anon_sym___read_mostly] = ACTIONS(1155), - [anon_sym___must_hold] = ACTIONS(1155), - [anon_sym___ro_after_init] = ACTIONS(1155), - [anon_sym___init] = ACTIONS(1155), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1153), - [anon_sym___declspec] = ACTIONS(1155), - [anon_sym___cdecl] = ACTIONS(1155), - [anon_sym___clrcall] = ACTIONS(1155), - [anon_sym___stdcall] = ACTIONS(1155), - [anon_sym___fastcall] = ACTIONS(1155), - [anon_sym___thiscall] = ACTIONS(1155), - [anon_sym___vectorcall] = ACTIONS(1155), - [anon_sym_LBRACE] = ACTIONS(1153), - [anon_sym_signed] = ACTIONS(1155), - [anon_sym_unsigned] = ACTIONS(1155), - [anon_sym_long] = ACTIONS(1155), - [anon_sym_short] = ACTIONS(1155), - [anon_sym_static] = ACTIONS(1155), - [anon_sym_auto] = ACTIONS(1155), - [anon_sym_register] = ACTIONS(1155), - [anon_sym_inline] = ACTIONS(1155), - [anon_sym___inline] = ACTIONS(1155), - [anon_sym___inline__] = ACTIONS(1155), - [anon_sym___forceinline] = ACTIONS(1155), - [anon_sym_thread_local] = ACTIONS(1155), - [anon_sym___thread] = ACTIONS(1155), - [anon_sym_const] = ACTIONS(1155), - [anon_sym_constexpr] = ACTIONS(1155), - [anon_sym_volatile] = ACTIONS(1155), - [anon_sym_restrict] = ACTIONS(1155), - [anon_sym___restrict__] = ACTIONS(1155), - [anon_sym__Atomic] = ACTIONS(1155), - [anon_sym__Noreturn] = ACTIONS(1155), - [anon_sym_noreturn] = ACTIONS(1155), - [anon_sym_alignas] = ACTIONS(1155), - [anon_sym__Alignas] = ACTIONS(1155), - [sym_primitive_type] = ACTIONS(1155), - [anon_sym_enum] = ACTIONS(1155), - [anon_sym_struct] = ACTIONS(1155), - [anon_sym_union] = ACTIONS(1155), - [anon_sym_if] = ACTIONS(1155), - [anon_sym_else] = ACTIONS(1155), - [anon_sym_switch] = ACTIONS(1155), - [anon_sym_case] = ACTIONS(1155), - [anon_sym_default] = ACTIONS(1155), - [anon_sym_while] = ACTIONS(1155), - [anon_sym_do] = ACTIONS(1155), - [anon_sym_for] = ACTIONS(1155), - [anon_sym_return] = ACTIONS(1155), - [anon_sym_break] = ACTIONS(1155), - [anon_sym_continue] = ACTIONS(1155), - [anon_sym_goto] = ACTIONS(1155), - [anon_sym___try] = ACTIONS(1155), - [anon_sym___leave] = ACTIONS(1155), - [anon_sym_DASH_DASH] = ACTIONS(1153), - [anon_sym_PLUS_PLUS] = ACTIONS(1153), - [anon_sym_sizeof] = ACTIONS(1155), - [anon_sym___alignof__] = ACTIONS(1155), - [anon_sym___alignof] = ACTIONS(1155), - [anon_sym__alignof] = ACTIONS(1155), - [anon_sym_alignof] = ACTIONS(1155), - [anon_sym__Alignof] = ACTIONS(1155), - [anon_sym_offsetof] = ACTIONS(1155), - [anon_sym__Generic] = ACTIONS(1155), - [anon_sym_asm] = ACTIONS(1155), - [anon_sym___asm__] = ACTIONS(1155), - [sym_number_literal] = ACTIONS(1153), - [anon_sym_L_SQUOTE] = ACTIONS(1153), - [anon_sym_u_SQUOTE] = ACTIONS(1153), - [anon_sym_U_SQUOTE] = ACTIONS(1153), - [anon_sym_u8_SQUOTE] = ACTIONS(1153), - [anon_sym_SQUOTE] = ACTIONS(1153), - [anon_sym_L_DQUOTE] = ACTIONS(1153), - [anon_sym_u_DQUOTE] = ACTIONS(1153), - [anon_sym_U_DQUOTE] = ACTIONS(1153), - [anon_sym_u8_DQUOTE] = ACTIONS(1153), - [anon_sym_DQUOTE] = ACTIONS(1153), - [sym_true] = ACTIONS(1155), - [sym_false] = ACTIONS(1155), - [anon_sym_NULL] = ACTIONS(1155), - [anon_sym_nullptr] = ACTIONS(1155), + [205] = { + [sym_identifier] = ACTIONS(1157), + [aux_sym_preproc_include_token1] = ACTIONS(1157), + [aux_sym_preproc_def_token1] = ACTIONS(1157), + [aux_sym_preproc_if_token1] = ACTIONS(1157), + [aux_sym_preproc_if_token2] = ACTIONS(1157), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1157), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1157), + [sym_preproc_directive] = ACTIONS(1157), + [anon_sym_LPAREN2] = ACTIONS(1159), + [anon_sym_BANG] = ACTIONS(1159), + [anon_sym_TILDE] = ACTIONS(1159), + [anon_sym_DASH] = ACTIONS(1157), + [anon_sym_PLUS] = ACTIONS(1157), + [anon_sym_STAR] = ACTIONS(1159), + [anon_sym_AMP] = ACTIONS(1159), + [anon_sym_SEMI] = ACTIONS(1159), + [anon_sym___extension__] = ACTIONS(1157), + [anon_sym_typedef] = ACTIONS(1157), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym___attribute__] = ACTIONS(1157), + [anon_sym___scanf] = ACTIONS(1157), + [anon_sym___printf] = ACTIONS(1157), + [anon_sym___read_mostly] = ACTIONS(1157), + [anon_sym___must_hold] = ACTIONS(1157), + [anon_sym___ro_after_init] = ACTIONS(1157), + [anon_sym___noreturn] = ACTIONS(1157), + [anon_sym___cold] = ACTIONS(1157), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1159), + [anon_sym___declspec] = ACTIONS(1157), + [anon_sym___init] = ACTIONS(1157), + [anon_sym___exit] = ACTIONS(1157), + [anon_sym___cdecl] = ACTIONS(1157), + [anon_sym___clrcall] = ACTIONS(1157), + [anon_sym___stdcall] = ACTIONS(1157), + [anon_sym___fastcall] = ACTIONS(1157), + [anon_sym___thiscall] = ACTIONS(1157), + [anon_sym___vectorcall] = ACTIONS(1157), + [anon_sym_LBRACE] = ACTIONS(1159), + [anon_sym_signed] = ACTIONS(1157), + [anon_sym_unsigned] = ACTIONS(1157), + [anon_sym_long] = ACTIONS(1157), + [anon_sym_short] = ACTIONS(1157), + [anon_sym_static] = ACTIONS(1157), + [anon_sym_auto] = ACTIONS(1157), + [anon_sym_register] = ACTIONS(1157), + [anon_sym_inline] = ACTIONS(1157), + [anon_sym___inline] = ACTIONS(1157), + [anon_sym___inline__] = ACTIONS(1157), + [anon_sym___forceinline] = ACTIONS(1157), + [anon_sym_thread_local] = ACTIONS(1157), + [anon_sym___thread] = ACTIONS(1157), + [anon_sym_const] = ACTIONS(1157), + [anon_sym_constexpr] = ACTIONS(1157), + [anon_sym_volatile] = ACTIONS(1157), + [anon_sym_restrict] = ACTIONS(1157), + [anon_sym___restrict__] = ACTIONS(1157), + [anon_sym__Atomic] = ACTIONS(1157), + [anon_sym__Noreturn] = ACTIONS(1157), + [anon_sym_noreturn] = ACTIONS(1157), + [anon_sym_alignas] = ACTIONS(1157), + [anon_sym__Alignas] = ACTIONS(1157), + [sym_primitive_type] = ACTIONS(1157), + [anon_sym_enum] = ACTIONS(1157), + [anon_sym_struct] = ACTIONS(1157), + [anon_sym_union] = ACTIONS(1157), + [anon_sym_if] = ACTIONS(1157), + [anon_sym_else] = ACTIONS(1157), + [anon_sym_switch] = ACTIONS(1157), + [anon_sym_case] = ACTIONS(1157), + [anon_sym_default] = ACTIONS(1157), + [anon_sym_while] = ACTIONS(1157), + [anon_sym_do] = ACTIONS(1157), + [anon_sym_for] = ACTIONS(1157), + [anon_sym_return] = ACTIONS(1157), + [anon_sym_break] = ACTIONS(1157), + [anon_sym_continue] = ACTIONS(1157), + [anon_sym_goto] = ACTIONS(1157), + [anon_sym___try] = ACTIONS(1157), + [anon_sym___leave] = ACTIONS(1157), + [anon_sym_DASH_DASH] = ACTIONS(1159), + [anon_sym_PLUS_PLUS] = ACTIONS(1159), + [anon_sym_sizeof] = ACTIONS(1157), + [anon_sym___alignof__] = ACTIONS(1157), + [anon_sym___alignof] = ACTIONS(1157), + [anon_sym__alignof] = ACTIONS(1157), + [anon_sym_alignof] = ACTIONS(1157), + [anon_sym__Alignof] = ACTIONS(1157), + [anon_sym_offsetof] = ACTIONS(1157), + [anon_sym__Generic] = ACTIONS(1157), + [anon_sym_asm] = ACTIONS(1157), + [anon_sym___asm__] = ACTIONS(1157), + [sym_number_literal] = ACTIONS(1159), + [anon_sym_L_SQUOTE] = ACTIONS(1159), + [anon_sym_u_SQUOTE] = ACTIONS(1159), + [anon_sym_U_SQUOTE] = ACTIONS(1159), + [anon_sym_u8_SQUOTE] = ACTIONS(1159), + [anon_sym_SQUOTE] = ACTIONS(1159), + [anon_sym_L_DQUOTE] = ACTIONS(1159), + [anon_sym_u_DQUOTE] = ACTIONS(1159), + [anon_sym_U_DQUOTE] = ACTIONS(1159), + [anon_sym_u8_DQUOTE] = ACTIONS(1159), + [anon_sym_DQUOTE] = ACTIONS(1159), + [sym_true] = ACTIONS(1157), + [sym_false] = ACTIONS(1157), + [anon_sym_NULL] = ACTIONS(1157), + [anon_sym_nullptr] = ACTIONS(1157), [sym_comment] = ACTIONS(3), }, - [185] = { - [sym_identifier] = ACTIONS(1165), - [aux_sym_preproc_include_token1] = ACTIONS(1165), - [aux_sym_preproc_def_token1] = ACTIONS(1165), - [aux_sym_preproc_if_token1] = ACTIONS(1165), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1165), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1165), - [sym_preproc_directive] = ACTIONS(1165), - [anon_sym_LPAREN2] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1167), - [anon_sym_TILDE] = ACTIONS(1167), - [anon_sym_DASH] = ACTIONS(1165), - [anon_sym_PLUS] = ACTIONS(1165), - [anon_sym_STAR] = ACTIONS(1167), - [anon_sym_AMP] = ACTIONS(1167), - [anon_sym_SEMI] = ACTIONS(1167), - [anon_sym___extension__] = ACTIONS(1165), - [anon_sym_typedef] = ACTIONS(1165), - [anon_sym_extern] = ACTIONS(1165), - [anon_sym___attribute__] = ACTIONS(1165), - [anon_sym___scanf] = ACTIONS(1165), - [anon_sym___printf] = ACTIONS(1165), - [anon_sym___read_mostly] = ACTIONS(1165), - [anon_sym___must_hold] = ACTIONS(1165), - [anon_sym___ro_after_init] = ACTIONS(1165), - [anon_sym___init] = ACTIONS(1165), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1167), - [anon_sym___declspec] = ACTIONS(1165), - [anon_sym___cdecl] = ACTIONS(1165), - [anon_sym___clrcall] = ACTIONS(1165), - [anon_sym___stdcall] = ACTIONS(1165), - [anon_sym___fastcall] = ACTIONS(1165), - [anon_sym___thiscall] = ACTIONS(1165), - [anon_sym___vectorcall] = ACTIONS(1165), - [anon_sym_LBRACE] = ACTIONS(1167), - [anon_sym_RBRACE] = ACTIONS(1167), - [anon_sym_signed] = ACTIONS(1165), - [anon_sym_unsigned] = ACTIONS(1165), - [anon_sym_long] = ACTIONS(1165), - [anon_sym_short] = ACTIONS(1165), - [anon_sym_static] = ACTIONS(1165), - [anon_sym_auto] = ACTIONS(1165), - [anon_sym_register] = ACTIONS(1165), - [anon_sym_inline] = ACTIONS(1165), - [anon_sym___inline] = ACTIONS(1165), - [anon_sym___inline__] = ACTIONS(1165), - [anon_sym___forceinline] = ACTIONS(1165), - [anon_sym_thread_local] = ACTIONS(1165), - [anon_sym___thread] = ACTIONS(1165), - [anon_sym_const] = ACTIONS(1165), - [anon_sym_constexpr] = ACTIONS(1165), - [anon_sym_volatile] = ACTIONS(1165), - [anon_sym_restrict] = ACTIONS(1165), - [anon_sym___restrict__] = ACTIONS(1165), - [anon_sym__Atomic] = ACTIONS(1165), - [anon_sym__Noreturn] = ACTIONS(1165), - [anon_sym_noreturn] = ACTIONS(1165), - [anon_sym_alignas] = ACTIONS(1165), - [anon_sym__Alignas] = ACTIONS(1165), - [sym_primitive_type] = ACTIONS(1165), - [anon_sym_enum] = ACTIONS(1165), - [anon_sym_struct] = ACTIONS(1165), - [anon_sym_union] = ACTIONS(1165), - [anon_sym_if] = ACTIONS(1165), - [anon_sym_else] = ACTIONS(1165), - [anon_sym_switch] = ACTIONS(1165), - [anon_sym_case] = ACTIONS(1165), - [anon_sym_default] = ACTIONS(1165), - [anon_sym_while] = ACTIONS(1165), - [anon_sym_do] = ACTIONS(1165), - [anon_sym_for] = ACTIONS(1165), - [anon_sym_return] = ACTIONS(1165), - [anon_sym_break] = ACTIONS(1165), - [anon_sym_continue] = ACTIONS(1165), - [anon_sym_goto] = ACTIONS(1165), - [anon_sym___try] = ACTIONS(1165), - [anon_sym___leave] = ACTIONS(1165), - [anon_sym_DASH_DASH] = ACTIONS(1167), - [anon_sym_PLUS_PLUS] = ACTIONS(1167), - [anon_sym_sizeof] = ACTIONS(1165), - [anon_sym___alignof__] = ACTIONS(1165), - [anon_sym___alignof] = ACTIONS(1165), - [anon_sym__alignof] = ACTIONS(1165), - [anon_sym_alignof] = ACTIONS(1165), - [anon_sym__Alignof] = ACTIONS(1165), - [anon_sym_offsetof] = ACTIONS(1165), - [anon_sym__Generic] = ACTIONS(1165), - [anon_sym_asm] = ACTIONS(1165), - [anon_sym___asm__] = ACTIONS(1165), - [sym_number_literal] = ACTIONS(1167), - [anon_sym_L_SQUOTE] = ACTIONS(1167), - [anon_sym_u_SQUOTE] = ACTIONS(1167), - [anon_sym_U_SQUOTE] = ACTIONS(1167), - [anon_sym_u8_SQUOTE] = ACTIONS(1167), - [anon_sym_SQUOTE] = ACTIONS(1167), - [anon_sym_L_DQUOTE] = ACTIONS(1167), - [anon_sym_u_DQUOTE] = ACTIONS(1167), - [anon_sym_U_DQUOTE] = ACTIONS(1167), - [anon_sym_u8_DQUOTE] = ACTIONS(1167), - [anon_sym_DQUOTE] = ACTIONS(1167), - [sym_true] = ACTIONS(1165), - [sym_false] = ACTIONS(1165), - [anon_sym_NULL] = ACTIONS(1165), - [anon_sym_nullptr] = ACTIONS(1165), + [206] = { + [sym_identifier] = ACTIONS(1161), + [aux_sym_preproc_include_token1] = ACTIONS(1161), + [aux_sym_preproc_def_token1] = ACTIONS(1161), + [aux_sym_preproc_if_token1] = ACTIONS(1161), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1161), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1161), + [sym_preproc_directive] = ACTIONS(1161), + [anon_sym_LPAREN2] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1163), + [anon_sym_TILDE] = ACTIONS(1163), + [anon_sym_DASH] = ACTIONS(1161), + [anon_sym_PLUS] = ACTIONS(1161), + [anon_sym_STAR] = ACTIONS(1163), + [anon_sym_AMP] = ACTIONS(1163), + [anon_sym_SEMI] = ACTIONS(1163), + [anon_sym___extension__] = ACTIONS(1161), + [anon_sym_typedef] = ACTIONS(1161), + [anon_sym_extern] = ACTIONS(1161), + [anon_sym___attribute__] = ACTIONS(1161), + [anon_sym___scanf] = ACTIONS(1161), + [anon_sym___printf] = ACTIONS(1161), + [anon_sym___read_mostly] = ACTIONS(1161), + [anon_sym___must_hold] = ACTIONS(1161), + [anon_sym___ro_after_init] = ACTIONS(1161), + [anon_sym___noreturn] = ACTIONS(1161), + [anon_sym___cold] = ACTIONS(1161), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1163), + [anon_sym___declspec] = ACTIONS(1161), + [anon_sym___init] = ACTIONS(1161), + [anon_sym___exit] = ACTIONS(1161), + [anon_sym___cdecl] = ACTIONS(1161), + [anon_sym___clrcall] = ACTIONS(1161), + [anon_sym___stdcall] = ACTIONS(1161), + [anon_sym___fastcall] = ACTIONS(1161), + [anon_sym___thiscall] = ACTIONS(1161), + [anon_sym___vectorcall] = ACTIONS(1161), + [anon_sym_LBRACE] = ACTIONS(1163), + [anon_sym_RBRACE] = ACTIONS(1163), + [anon_sym_signed] = ACTIONS(1161), + [anon_sym_unsigned] = ACTIONS(1161), + [anon_sym_long] = ACTIONS(1161), + [anon_sym_short] = ACTIONS(1161), + [anon_sym_static] = ACTIONS(1161), + [anon_sym_auto] = ACTIONS(1161), + [anon_sym_register] = ACTIONS(1161), + [anon_sym_inline] = ACTIONS(1161), + [anon_sym___inline] = ACTIONS(1161), + [anon_sym___inline__] = ACTIONS(1161), + [anon_sym___forceinline] = ACTIONS(1161), + [anon_sym_thread_local] = ACTIONS(1161), + [anon_sym___thread] = ACTIONS(1161), + [anon_sym_const] = ACTIONS(1161), + [anon_sym_constexpr] = ACTIONS(1161), + [anon_sym_volatile] = ACTIONS(1161), + [anon_sym_restrict] = ACTIONS(1161), + [anon_sym___restrict__] = ACTIONS(1161), + [anon_sym__Atomic] = ACTIONS(1161), + [anon_sym__Noreturn] = ACTIONS(1161), + [anon_sym_noreturn] = ACTIONS(1161), + [anon_sym_alignas] = ACTIONS(1161), + [anon_sym__Alignas] = ACTIONS(1161), + [sym_primitive_type] = ACTIONS(1161), + [anon_sym_enum] = ACTIONS(1161), + [anon_sym_struct] = ACTIONS(1161), + [anon_sym_union] = ACTIONS(1161), + [anon_sym_if] = ACTIONS(1161), + [anon_sym_else] = ACTIONS(1161), + [anon_sym_switch] = ACTIONS(1161), + [anon_sym_case] = ACTIONS(1161), + [anon_sym_default] = ACTIONS(1161), + [anon_sym_while] = ACTIONS(1161), + [anon_sym_do] = ACTIONS(1161), + [anon_sym_for] = ACTIONS(1161), + [anon_sym_return] = ACTIONS(1161), + [anon_sym_break] = ACTIONS(1161), + [anon_sym_continue] = ACTIONS(1161), + [anon_sym_goto] = ACTIONS(1161), + [anon_sym___try] = ACTIONS(1161), + [anon_sym___leave] = ACTIONS(1161), + [anon_sym_DASH_DASH] = ACTIONS(1163), + [anon_sym_PLUS_PLUS] = ACTIONS(1163), + [anon_sym_sizeof] = ACTIONS(1161), + [anon_sym___alignof__] = ACTIONS(1161), + [anon_sym___alignof] = ACTIONS(1161), + [anon_sym__alignof] = ACTIONS(1161), + [anon_sym_alignof] = ACTIONS(1161), + [anon_sym__Alignof] = ACTIONS(1161), + [anon_sym_offsetof] = ACTIONS(1161), + [anon_sym__Generic] = ACTIONS(1161), + [anon_sym_asm] = ACTIONS(1161), + [anon_sym___asm__] = ACTIONS(1161), + [sym_number_literal] = ACTIONS(1163), + [anon_sym_L_SQUOTE] = ACTIONS(1163), + [anon_sym_u_SQUOTE] = ACTIONS(1163), + [anon_sym_U_SQUOTE] = ACTIONS(1163), + [anon_sym_u8_SQUOTE] = ACTIONS(1163), + [anon_sym_SQUOTE] = ACTIONS(1163), + [anon_sym_L_DQUOTE] = ACTIONS(1163), + [anon_sym_u_DQUOTE] = ACTIONS(1163), + [anon_sym_U_DQUOTE] = ACTIONS(1163), + [anon_sym_u8_DQUOTE] = ACTIONS(1163), + [anon_sym_DQUOTE] = ACTIONS(1163), + [sym_true] = ACTIONS(1161), + [sym_false] = ACTIONS(1161), + [anon_sym_NULL] = ACTIONS(1161), + [anon_sym_nullptr] = ACTIONS(1161), + [sym_comment] = ACTIONS(3), + }, + [207] = { + [sym_identifier] = ACTIONS(1229), + [aux_sym_preproc_include_token1] = ACTIONS(1229), + [aux_sym_preproc_def_token1] = ACTIONS(1229), + [aux_sym_preproc_if_token1] = ACTIONS(1229), + [aux_sym_preproc_if_token2] = ACTIONS(1229), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1229), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1229), + [sym_preproc_directive] = ACTIONS(1229), + [anon_sym_LPAREN2] = ACTIONS(1231), + [anon_sym_BANG] = ACTIONS(1231), + [anon_sym_TILDE] = ACTIONS(1231), + [anon_sym_DASH] = ACTIONS(1229), + [anon_sym_PLUS] = ACTIONS(1229), + [anon_sym_STAR] = ACTIONS(1231), + [anon_sym_AMP] = ACTIONS(1231), + [anon_sym_SEMI] = ACTIONS(1231), + [anon_sym___extension__] = ACTIONS(1229), + [anon_sym_typedef] = ACTIONS(1229), + [anon_sym_extern] = ACTIONS(1229), + [anon_sym___attribute__] = ACTIONS(1229), + [anon_sym___scanf] = ACTIONS(1229), + [anon_sym___printf] = ACTIONS(1229), + [anon_sym___read_mostly] = ACTIONS(1229), + [anon_sym___must_hold] = ACTIONS(1229), + [anon_sym___ro_after_init] = ACTIONS(1229), + [anon_sym___noreturn] = ACTIONS(1229), + [anon_sym___cold] = ACTIONS(1229), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1231), + [anon_sym___declspec] = ACTIONS(1229), + [anon_sym___init] = ACTIONS(1229), + [anon_sym___exit] = ACTIONS(1229), + [anon_sym___cdecl] = ACTIONS(1229), + [anon_sym___clrcall] = ACTIONS(1229), + [anon_sym___stdcall] = ACTIONS(1229), + [anon_sym___fastcall] = ACTIONS(1229), + [anon_sym___thiscall] = ACTIONS(1229), + [anon_sym___vectorcall] = ACTIONS(1229), + [anon_sym_LBRACE] = ACTIONS(1231), + [anon_sym_signed] = ACTIONS(1229), + [anon_sym_unsigned] = ACTIONS(1229), + [anon_sym_long] = ACTIONS(1229), + [anon_sym_short] = ACTIONS(1229), + [anon_sym_static] = ACTIONS(1229), + [anon_sym_auto] = ACTIONS(1229), + [anon_sym_register] = ACTIONS(1229), + [anon_sym_inline] = ACTIONS(1229), + [anon_sym___inline] = ACTIONS(1229), + [anon_sym___inline__] = ACTIONS(1229), + [anon_sym___forceinline] = ACTIONS(1229), + [anon_sym_thread_local] = ACTIONS(1229), + [anon_sym___thread] = ACTIONS(1229), + [anon_sym_const] = ACTIONS(1229), + [anon_sym_constexpr] = ACTIONS(1229), + [anon_sym_volatile] = ACTIONS(1229), + [anon_sym_restrict] = ACTIONS(1229), + [anon_sym___restrict__] = ACTIONS(1229), + [anon_sym__Atomic] = ACTIONS(1229), + [anon_sym__Noreturn] = ACTIONS(1229), + [anon_sym_noreturn] = ACTIONS(1229), + [anon_sym_alignas] = ACTIONS(1229), + [anon_sym__Alignas] = ACTIONS(1229), + [sym_primitive_type] = ACTIONS(1229), + [anon_sym_enum] = ACTIONS(1229), + [anon_sym_struct] = ACTIONS(1229), + [anon_sym_union] = ACTIONS(1229), + [anon_sym_if] = ACTIONS(1229), + [anon_sym_else] = ACTIONS(1229), + [anon_sym_switch] = ACTIONS(1229), + [anon_sym_case] = ACTIONS(1229), + [anon_sym_default] = ACTIONS(1229), + [anon_sym_while] = ACTIONS(1229), + [anon_sym_do] = ACTIONS(1229), + [anon_sym_for] = ACTIONS(1229), + [anon_sym_return] = ACTIONS(1229), + [anon_sym_break] = ACTIONS(1229), + [anon_sym_continue] = ACTIONS(1229), + [anon_sym_goto] = ACTIONS(1229), + [anon_sym___try] = ACTIONS(1229), + [anon_sym___leave] = ACTIONS(1229), + [anon_sym_DASH_DASH] = ACTIONS(1231), + [anon_sym_PLUS_PLUS] = ACTIONS(1231), + [anon_sym_sizeof] = ACTIONS(1229), + [anon_sym___alignof__] = ACTIONS(1229), + [anon_sym___alignof] = ACTIONS(1229), + [anon_sym__alignof] = ACTIONS(1229), + [anon_sym_alignof] = ACTIONS(1229), + [anon_sym__Alignof] = ACTIONS(1229), + [anon_sym_offsetof] = ACTIONS(1229), + [anon_sym__Generic] = ACTIONS(1229), + [anon_sym_asm] = ACTIONS(1229), + [anon_sym___asm__] = ACTIONS(1229), + [sym_number_literal] = ACTIONS(1231), + [anon_sym_L_SQUOTE] = ACTIONS(1231), + [anon_sym_u_SQUOTE] = ACTIONS(1231), + [anon_sym_U_SQUOTE] = ACTIONS(1231), + [anon_sym_u8_SQUOTE] = ACTIONS(1231), + [anon_sym_SQUOTE] = ACTIONS(1231), + [anon_sym_L_DQUOTE] = ACTIONS(1231), + [anon_sym_u_DQUOTE] = ACTIONS(1231), + [anon_sym_U_DQUOTE] = ACTIONS(1231), + [anon_sym_u8_DQUOTE] = ACTIONS(1231), + [anon_sym_DQUOTE] = ACTIONS(1231), + [sym_true] = ACTIONS(1229), + [sym_false] = ACTIONS(1229), + [anon_sym_NULL] = ACTIONS(1229), + [anon_sym_nullptr] = ACTIONS(1229), [sym_comment] = ACTIONS(3), }, - [186] = { + [208] = { + [sym_identifier] = ACTIONS(1245), + [aux_sym_preproc_include_token1] = ACTIONS(1245), + [aux_sym_preproc_def_token1] = ACTIONS(1245), + [aux_sym_preproc_if_token1] = ACTIONS(1245), + [aux_sym_preproc_if_token2] = ACTIONS(1245), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1245), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1245), + [sym_preproc_directive] = ACTIONS(1245), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(1247), + [anon_sym_TILDE] = ACTIONS(1247), + [anon_sym_DASH] = ACTIONS(1245), + [anon_sym_PLUS] = ACTIONS(1245), + [anon_sym_STAR] = ACTIONS(1247), + [anon_sym_AMP] = ACTIONS(1247), + [anon_sym_SEMI] = ACTIONS(1247), + [anon_sym___extension__] = ACTIONS(1245), + [anon_sym_typedef] = ACTIONS(1245), + [anon_sym_extern] = ACTIONS(1245), + [anon_sym___attribute__] = ACTIONS(1245), + [anon_sym___scanf] = ACTIONS(1245), + [anon_sym___printf] = ACTIONS(1245), + [anon_sym___read_mostly] = ACTIONS(1245), + [anon_sym___must_hold] = ACTIONS(1245), + [anon_sym___ro_after_init] = ACTIONS(1245), + [anon_sym___noreturn] = ACTIONS(1245), + [anon_sym___cold] = ACTIONS(1245), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1247), + [anon_sym___declspec] = ACTIONS(1245), + [anon_sym___init] = ACTIONS(1245), + [anon_sym___exit] = ACTIONS(1245), + [anon_sym___cdecl] = ACTIONS(1245), + [anon_sym___clrcall] = ACTIONS(1245), + [anon_sym___stdcall] = ACTIONS(1245), + [anon_sym___fastcall] = ACTIONS(1245), + [anon_sym___thiscall] = ACTIONS(1245), + [anon_sym___vectorcall] = ACTIONS(1245), + [anon_sym_LBRACE] = ACTIONS(1247), + [anon_sym_signed] = ACTIONS(1245), + [anon_sym_unsigned] = ACTIONS(1245), + [anon_sym_long] = ACTIONS(1245), + [anon_sym_short] = ACTIONS(1245), + [anon_sym_static] = ACTIONS(1245), + [anon_sym_auto] = ACTIONS(1245), + [anon_sym_register] = ACTIONS(1245), + [anon_sym_inline] = ACTIONS(1245), + [anon_sym___inline] = ACTIONS(1245), + [anon_sym___inline__] = ACTIONS(1245), + [anon_sym___forceinline] = ACTIONS(1245), + [anon_sym_thread_local] = ACTIONS(1245), + [anon_sym___thread] = ACTIONS(1245), + [anon_sym_const] = ACTIONS(1245), + [anon_sym_constexpr] = ACTIONS(1245), + [anon_sym_volatile] = ACTIONS(1245), + [anon_sym_restrict] = ACTIONS(1245), + [anon_sym___restrict__] = ACTIONS(1245), + [anon_sym__Atomic] = ACTIONS(1245), + [anon_sym__Noreturn] = ACTIONS(1245), + [anon_sym_noreturn] = ACTIONS(1245), + [anon_sym_alignas] = ACTIONS(1245), + [anon_sym__Alignas] = ACTIONS(1245), + [sym_primitive_type] = ACTIONS(1245), + [anon_sym_enum] = ACTIONS(1245), + [anon_sym_struct] = ACTIONS(1245), + [anon_sym_union] = ACTIONS(1245), + [anon_sym_if] = ACTIONS(1245), + [anon_sym_else] = ACTIONS(1245), + [anon_sym_switch] = ACTIONS(1245), + [anon_sym_case] = ACTIONS(1245), + [anon_sym_default] = ACTIONS(1245), + [anon_sym_while] = ACTIONS(1245), + [anon_sym_do] = ACTIONS(1245), + [anon_sym_for] = ACTIONS(1245), + [anon_sym_return] = ACTIONS(1245), + [anon_sym_break] = ACTIONS(1245), + [anon_sym_continue] = ACTIONS(1245), + [anon_sym_goto] = ACTIONS(1245), + [anon_sym___try] = ACTIONS(1245), + [anon_sym___leave] = ACTIONS(1245), + [anon_sym_DASH_DASH] = ACTIONS(1247), + [anon_sym_PLUS_PLUS] = ACTIONS(1247), + [anon_sym_sizeof] = ACTIONS(1245), + [anon_sym___alignof__] = ACTIONS(1245), + [anon_sym___alignof] = ACTIONS(1245), + [anon_sym__alignof] = ACTIONS(1245), + [anon_sym_alignof] = ACTIONS(1245), + [anon_sym__Alignof] = ACTIONS(1245), + [anon_sym_offsetof] = ACTIONS(1245), + [anon_sym__Generic] = ACTIONS(1245), + [anon_sym_asm] = ACTIONS(1245), + [anon_sym___asm__] = ACTIONS(1245), + [sym_number_literal] = ACTIONS(1247), + [anon_sym_L_SQUOTE] = ACTIONS(1247), + [anon_sym_u_SQUOTE] = ACTIONS(1247), + [anon_sym_U_SQUOTE] = ACTIONS(1247), + [anon_sym_u8_SQUOTE] = ACTIONS(1247), + [anon_sym_SQUOTE] = ACTIONS(1247), + [anon_sym_L_DQUOTE] = ACTIONS(1247), + [anon_sym_u_DQUOTE] = ACTIONS(1247), + [anon_sym_U_DQUOTE] = ACTIONS(1247), + [anon_sym_u8_DQUOTE] = ACTIONS(1247), + [anon_sym_DQUOTE] = ACTIONS(1247), + [sym_true] = ACTIONS(1245), + [sym_false] = ACTIONS(1245), + [anon_sym_NULL] = ACTIONS(1245), + [anon_sym_nullptr] = ACTIONS(1245), + [sym_comment] = ACTIONS(3), + }, + [209] = { [sym_identifier] = ACTIONS(1257), [aux_sym_preproc_include_token1] = ACTIONS(1257), [aux_sym_preproc_def_token1] = ACTIONS(1257), @@ -36529,9 +40308,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___read_mostly] = ACTIONS(1257), [anon_sym___must_hold] = ACTIONS(1257), [anon_sym___ro_after_init] = ACTIONS(1257), - [anon_sym___init] = ACTIONS(1257), + [anon_sym___noreturn] = ACTIONS(1257), + [anon_sym___cold] = ACTIONS(1257), [anon_sym_LBRACK_LBRACK] = ACTIONS(1259), [anon_sym___declspec] = ACTIONS(1257), + [anon_sym___init] = ACTIONS(1257), + [anon_sym___exit] = ACTIONS(1257), [anon_sym___cdecl] = ACTIONS(1257), [anon_sym___clrcall] = ACTIONS(1257), [anon_sym___stdcall] = ACTIONS(1257), @@ -36609,431 +40391,225 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1257), [sym_comment] = ACTIONS(3), }, - [187] = { - [sym_identifier] = ACTIONS(1149), - [aux_sym_preproc_include_token1] = ACTIONS(1149), - [aux_sym_preproc_def_token1] = ACTIONS(1149), - [aux_sym_preproc_if_token1] = ACTIONS(1149), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1149), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1149), - [sym_preproc_directive] = ACTIONS(1149), - [anon_sym_LPAREN2] = ACTIONS(1151), - [anon_sym_BANG] = ACTIONS(1151), - [anon_sym_TILDE] = ACTIONS(1151), - [anon_sym_DASH] = ACTIONS(1149), - [anon_sym_PLUS] = ACTIONS(1149), - [anon_sym_STAR] = ACTIONS(1151), - [anon_sym_AMP] = ACTIONS(1151), - [anon_sym_SEMI] = ACTIONS(1151), - [anon_sym___extension__] = ACTIONS(1149), - [anon_sym_typedef] = ACTIONS(1149), - [anon_sym_extern] = ACTIONS(1149), - [anon_sym___attribute__] = ACTIONS(1149), - [anon_sym___scanf] = ACTIONS(1149), - [anon_sym___printf] = ACTIONS(1149), - [anon_sym___read_mostly] = ACTIONS(1149), - [anon_sym___must_hold] = ACTIONS(1149), - [anon_sym___ro_after_init] = ACTIONS(1149), - [anon_sym___init] = ACTIONS(1149), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1151), - [anon_sym___declspec] = ACTIONS(1149), - [anon_sym___cdecl] = ACTIONS(1149), - [anon_sym___clrcall] = ACTIONS(1149), - [anon_sym___stdcall] = ACTIONS(1149), - [anon_sym___fastcall] = ACTIONS(1149), - [anon_sym___thiscall] = ACTIONS(1149), - [anon_sym___vectorcall] = ACTIONS(1149), - [anon_sym_LBRACE] = ACTIONS(1151), - [anon_sym_RBRACE] = ACTIONS(1151), - [anon_sym_signed] = ACTIONS(1149), - [anon_sym_unsigned] = ACTIONS(1149), - [anon_sym_long] = ACTIONS(1149), - [anon_sym_short] = ACTIONS(1149), - [anon_sym_static] = ACTIONS(1149), - [anon_sym_auto] = ACTIONS(1149), - [anon_sym_register] = ACTIONS(1149), - [anon_sym_inline] = ACTIONS(1149), - [anon_sym___inline] = ACTIONS(1149), - [anon_sym___inline__] = ACTIONS(1149), - [anon_sym___forceinline] = ACTIONS(1149), - [anon_sym_thread_local] = ACTIONS(1149), - [anon_sym___thread] = ACTIONS(1149), - [anon_sym_const] = ACTIONS(1149), - [anon_sym_constexpr] = ACTIONS(1149), - [anon_sym_volatile] = ACTIONS(1149), - [anon_sym_restrict] = ACTIONS(1149), - [anon_sym___restrict__] = ACTIONS(1149), - [anon_sym__Atomic] = ACTIONS(1149), - [anon_sym__Noreturn] = ACTIONS(1149), - [anon_sym_noreturn] = ACTIONS(1149), - [anon_sym_alignas] = ACTIONS(1149), - [anon_sym__Alignas] = ACTIONS(1149), - [sym_primitive_type] = ACTIONS(1149), - [anon_sym_enum] = ACTIONS(1149), - [anon_sym_struct] = ACTIONS(1149), - [anon_sym_union] = ACTIONS(1149), - [anon_sym_if] = ACTIONS(1149), - [anon_sym_else] = ACTIONS(1149), - [anon_sym_switch] = ACTIONS(1149), - [anon_sym_case] = ACTIONS(1149), - [anon_sym_default] = ACTIONS(1149), - [anon_sym_while] = ACTIONS(1149), - [anon_sym_do] = ACTIONS(1149), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_return] = ACTIONS(1149), - [anon_sym_break] = ACTIONS(1149), - [anon_sym_continue] = ACTIONS(1149), - [anon_sym_goto] = ACTIONS(1149), - [anon_sym___try] = ACTIONS(1149), - [anon_sym___leave] = ACTIONS(1149), - [anon_sym_DASH_DASH] = ACTIONS(1151), - [anon_sym_PLUS_PLUS] = ACTIONS(1151), - [anon_sym_sizeof] = ACTIONS(1149), - [anon_sym___alignof__] = ACTIONS(1149), - [anon_sym___alignof] = ACTIONS(1149), - [anon_sym__alignof] = ACTIONS(1149), - [anon_sym_alignof] = ACTIONS(1149), - [anon_sym__Alignof] = ACTIONS(1149), - [anon_sym_offsetof] = ACTIONS(1149), - [anon_sym__Generic] = ACTIONS(1149), - [anon_sym_asm] = ACTIONS(1149), - [anon_sym___asm__] = ACTIONS(1149), - [sym_number_literal] = ACTIONS(1151), - [anon_sym_L_SQUOTE] = ACTIONS(1151), - [anon_sym_u_SQUOTE] = ACTIONS(1151), - [anon_sym_U_SQUOTE] = ACTIONS(1151), - [anon_sym_u8_SQUOTE] = ACTIONS(1151), - [anon_sym_SQUOTE] = ACTIONS(1151), - [anon_sym_L_DQUOTE] = ACTIONS(1151), - [anon_sym_u_DQUOTE] = ACTIONS(1151), - [anon_sym_U_DQUOTE] = ACTIONS(1151), - [anon_sym_u8_DQUOTE] = ACTIONS(1151), - [anon_sym_DQUOTE] = ACTIONS(1151), - [sym_true] = ACTIONS(1149), - [sym_false] = ACTIONS(1149), - [anon_sym_NULL] = ACTIONS(1149), - [anon_sym_nullptr] = ACTIONS(1149), - [sym_comment] = ACTIONS(3), - }, - [188] = { - [sym_identifier] = ACTIONS(1269), - [aux_sym_preproc_include_token1] = ACTIONS(1269), - [aux_sym_preproc_def_token1] = ACTIONS(1269), - [aux_sym_preproc_if_token1] = ACTIONS(1269), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1269), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1269), - [sym_preproc_directive] = ACTIONS(1269), - [anon_sym_LPAREN2] = ACTIONS(1271), - [anon_sym_BANG] = ACTIONS(1271), - [anon_sym_TILDE] = ACTIONS(1271), - [anon_sym_DASH] = ACTIONS(1269), - [anon_sym_PLUS] = ACTIONS(1269), - [anon_sym_STAR] = ACTIONS(1271), - [anon_sym_AMP] = ACTIONS(1271), - [anon_sym_SEMI] = ACTIONS(1271), - [anon_sym___extension__] = ACTIONS(1269), - [anon_sym_typedef] = ACTIONS(1269), - [anon_sym_extern] = ACTIONS(1269), - [anon_sym___attribute__] = ACTIONS(1269), - [anon_sym___scanf] = ACTIONS(1269), - [anon_sym___printf] = ACTIONS(1269), - [anon_sym___read_mostly] = ACTIONS(1269), - [anon_sym___must_hold] = ACTIONS(1269), - [anon_sym___ro_after_init] = ACTIONS(1269), - [anon_sym___init] = ACTIONS(1269), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1271), - [anon_sym___declspec] = ACTIONS(1269), - [anon_sym___cdecl] = ACTIONS(1269), - [anon_sym___clrcall] = ACTIONS(1269), - [anon_sym___stdcall] = ACTIONS(1269), - [anon_sym___fastcall] = ACTIONS(1269), - [anon_sym___thiscall] = ACTIONS(1269), - [anon_sym___vectorcall] = ACTIONS(1269), - [anon_sym_LBRACE] = ACTIONS(1271), - [anon_sym_RBRACE] = ACTIONS(1271), - [anon_sym_signed] = ACTIONS(1269), - [anon_sym_unsigned] = ACTIONS(1269), - [anon_sym_long] = ACTIONS(1269), - [anon_sym_short] = ACTIONS(1269), - [anon_sym_static] = ACTIONS(1269), - [anon_sym_auto] = ACTIONS(1269), - [anon_sym_register] = ACTIONS(1269), - [anon_sym_inline] = ACTIONS(1269), - [anon_sym___inline] = ACTIONS(1269), - [anon_sym___inline__] = ACTIONS(1269), - [anon_sym___forceinline] = ACTIONS(1269), - [anon_sym_thread_local] = ACTIONS(1269), - [anon_sym___thread] = ACTIONS(1269), - [anon_sym_const] = ACTIONS(1269), - [anon_sym_constexpr] = ACTIONS(1269), - [anon_sym_volatile] = ACTIONS(1269), - [anon_sym_restrict] = ACTIONS(1269), - [anon_sym___restrict__] = ACTIONS(1269), - [anon_sym__Atomic] = ACTIONS(1269), - [anon_sym__Noreturn] = ACTIONS(1269), - [anon_sym_noreturn] = ACTIONS(1269), - [anon_sym_alignas] = ACTIONS(1269), - [anon_sym__Alignas] = ACTIONS(1269), - [sym_primitive_type] = ACTIONS(1269), - [anon_sym_enum] = ACTIONS(1269), - [anon_sym_struct] = ACTIONS(1269), - [anon_sym_union] = ACTIONS(1269), - [anon_sym_if] = ACTIONS(1269), - [anon_sym_else] = ACTIONS(1269), - [anon_sym_switch] = ACTIONS(1269), - [anon_sym_case] = ACTIONS(1269), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_while] = ACTIONS(1269), - [anon_sym_do] = ACTIONS(1269), - [anon_sym_for] = ACTIONS(1269), - [anon_sym_return] = ACTIONS(1269), - [anon_sym_break] = ACTIONS(1269), - [anon_sym_continue] = ACTIONS(1269), - [anon_sym_goto] = ACTIONS(1269), - [anon_sym___try] = ACTIONS(1269), - [anon_sym___leave] = ACTIONS(1269), - [anon_sym_DASH_DASH] = ACTIONS(1271), - [anon_sym_PLUS_PLUS] = ACTIONS(1271), - [anon_sym_sizeof] = ACTIONS(1269), - [anon_sym___alignof__] = ACTIONS(1269), - [anon_sym___alignof] = ACTIONS(1269), - [anon_sym__alignof] = ACTIONS(1269), - [anon_sym_alignof] = ACTIONS(1269), - [anon_sym__Alignof] = ACTIONS(1269), - [anon_sym_offsetof] = ACTIONS(1269), - [anon_sym__Generic] = ACTIONS(1269), - [anon_sym_asm] = ACTIONS(1269), - [anon_sym___asm__] = ACTIONS(1269), - [sym_number_literal] = ACTIONS(1271), - [anon_sym_L_SQUOTE] = ACTIONS(1271), - [anon_sym_u_SQUOTE] = ACTIONS(1271), - [anon_sym_U_SQUOTE] = ACTIONS(1271), - [anon_sym_u8_SQUOTE] = ACTIONS(1271), - [anon_sym_SQUOTE] = ACTIONS(1271), - [anon_sym_L_DQUOTE] = ACTIONS(1271), - [anon_sym_u_DQUOTE] = ACTIONS(1271), - [anon_sym_U_DQUOTE] = ACTIONS(1271), - [anon_sym_u8_DQUOTE] = ACTIONS(1271), - [anon_sym_DQUOTE] = ACTIONS(1271), - [sym_true] = ACTIONS(1269), - [sym_false] = ACTIONS(1269), - [anon_sym_NULL] = ACTIONS(1269), - [anon_sym_nullptr] = ACTIONS(1269), - [sym_comment] = ACTIONS(3), - }, - [189] = { - [sym_identifier] = ACTIONS(1265), - [aux_sym_preproc_include_token1] = ACTIONS(1265), - [aux_sym_preproc_def_token1] = ACTIONS(1265), - [aux_sym_preproc_if_token1] = ACTIONS(1265), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1265), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1265), - [sym_preproc_directive] = ACTIONS(1265), - [anon_sym_LPAREN2] = ACTIONS(1267), - [anon_sym_BANG] = ACTIONS(1267), - [anon_sym_TILDE] = ACTIONS(1267), - [anon_sym_DASH] = ACTIONS(1265), - [anon_sym_PLUS] = ACTIONS(1265), - [anon_sym_STAR] = ACTIONS(1267), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_SEMI] = ACTIONS(1267), - [anon_sym___extension__] = ACTIONS(1265), - [anon_sym_typedef] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym___attribute__] = ACTIONS(1265), - [anon_sym___scanf] = ACTIONS(1265), - [anon_sym___printf] = ACTIONS(1265), - [anon_sym___read_mostly] = ACTIONS(1265), - [anon_sym___must_hold] = ACTIONS(1265), - [anon_sym___ro_after_init] = ACTIONS(1265), - [anon_sym___init] = ACTIONS(1265), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1267), - [anon_sym___declspec] = ACTIONS(1265), - [anon_sym___cdecl] = ACTIONS(1265), - [anon_sym___clrcall] = ACTIONS(1265), - [anon_sym___stdcall] = ACTIONS(1265), - [anon_sym___fastcall] = ACTIONS(1265), - [anon_sym___thiscall] = ACTIONS(1265), - [anon_sym___vectorcall] = ACTIONS(1265), - [anon_sym_LBRACE] = ACTIONS(1267), - [anon_sym_RBRACE] = ACTIONS(1267), - [anon_sym_signed] = ACTIONS(1265), - [anon_sym_unsigned] = ACTIONS(1265), - [anon_sym_long] = ACTIONS(1265), - [anon_sym_short] = ACTIONS(1265), - [anon_sym_static] = ACTIONS(1265), - [anon_sym_auto] = ACTIONS(1265), - [anon_sym_register] = ACTIONS(1265), - [anon_sym_inline] = ACTIONS(1265), - [anon_sym___inline] = ACTIONS(1265), - [anon_sym___inline__] = ACTIONS(1265), - [anon_sym___forceinline] = ACTIONS(1265), - [anon_sym_thread_local] = ACTIONS(1265), - [anon_sym___thread] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_constexpr] = ACTIONS(1265), - [anon_sym_volatile] = ACTIONS(1265), - [anon_sym_restrict] = ACTIONS(1265), - [anon_sym___restrict__] = ACTIONS(1265), - [anon_sym__Atomic] = ACTIONS(1265), - [anon_sym__Noreturn] = ACTIONS(1265), - [anon_sym_noreturn] = ACTIONS(1265), - [anon_sym_alignas] = ACTIONS(1265), - [anon_sym__Alignas] = ACTIONS(1265), - [sym_primitive_type] = ACTIONS(1265), - [anon_sym_enum] = ACTIONS(1265), - [anon_sym_struct] = ACTIONS(1265), - [anon_sym_union] = ACTIONS(1265), - [anon_sym_if] = ACTIONS(1265), - [anon_sym_else] = ACTIONS(1265), - [anon_sym_switch] = ACTIONS(1265), - [anon_sym_case] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_while] = ACTIONS(1265), - [anon_sym_do] = ACTIONS(1265), - [anon_sym_for] = ACTIONS(1265), - [anon_sym_return] = ACTIONS(1265), - [anon_sym_break] = ACTIONS(1265), - [anon_sym_continue] = ACTIONS(1265), - [anon_sym_goto] = ACTIONS(1265), - [anon_sym___try] = ACTIONS(1265), - [anon_sym___leave] = ACTIONS(1265), - [anon_sym_DASH_DASH] = ACTIONS(1267), - [anon_sym_PLUS_PLUS] = ACTIONS(1267), - [anon_sym_sizeof] = ACTIONS(1265), - [anon_sym___alignof__] = ACTIONS(1265), - [anon_sym___alignof] = ACTIONS(1265), - [anon_sym__alignof] = ACTIONS(1265), - [anon_sym_alignof] = ACTIONS(1265), - [anon_sym__Alignof] = ACTIONS(1265), - [anon_sym_offsetof] = ACTIONS(1265), - [anon_sym__Generic] = ACTIONS(1265), - [anon_sym_asm] = ACTIONS(1265), - [anon_sym___asm__] = ACTIONS(1265), - [sym_number_literal] = ACTIONS(1267), - [anon_sym_L_SQUOTE] = ACTIONS(1267), - [anon_sym_u_SQUOTE] = ACTIONS(1267), - [anon_sym_U_SQUOTE] = ACTIONS(1267), - [anon_sym_u8_SQUOTE] = ACTIONS(1267), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_L_DQUOTE] = ACTIONS(1267), - [anon_sym_u_DQUOTE] = ACTIONS(1267), - [anon_sym_U_DQUOTE] = ACTIONS(1267), - [anon_sym_u8_DQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1267), - [sym_true] = ACTIONS(1265), - [sym_false] = ACTIONS(1265), - [anon_sym_NULL] = ACTIONS(1265), - [anon_sym_nullptr] = ACTIONS(1265), - [sym_comment] = ACTIONS(3), - }, - [190] = { - [ts_builtin_sym_end] = ACTIONS(1223), - [sym_identifier] = ACTIONS(1221), - [aux_sym_preproc_include_token1] = ACTIONS(1221), - [aux_sym_preproc_def_token1] = ACTIONS(1221), - [aux_sym_preproc_if_token1] = ACTIONS(1221), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1221), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1221), - [sym_preproc_directive] = ACTIONS(1221), - [anon_sym_LPAREN2] = ACTIONS(1223), - [anon_sym_BANG] = ACTIONS(1223), - [anon_sym_TILDE] = ACTIONS(1223), - [anon_sym_DASH] = ACTIONS(1221), - [anon_sym_PLUS] = ACTIONS(1221), - [anon_sym_STAR] = ACTIONS(1223), - [anon_sym_AMP] = ACTIONS(1223), - [anon_sym_SEMI] = ACTIONS(1223), - [anon_sym___extension__] = ACTIONS(1221), - [anon_sym_typedef] = ACTIONS(1221), - [anon_sym_extern] = ACTIONS(1221), - [anon_sym___attribute__] = ACTIONS(1221), - [anon_sym___scanf] = ACTIONS(1221), - [anon_sym___printf] = ACTIONS(1221), - [anon_sym___read_mostly] = ACTIONS(1221), - [anon_sym___must_hold] = ACTIONS(1221), - [anon_sym___ro_after_init] = ACTIONS(1221), - [anon_sym___init] = ACTIONS(1221), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1223), - [anon_sym___declspec] = ACTIONS(1221), - [anon_sym___cdecl] = ACTIONS(1221), - [anon_sym___clrcall] = ACTIONS(1221), - [anon_sym___stdcall] = ACTIONS(1221), - [anon_sym___fastcall] = ACTIONS(1221), - [anon_sym___thiscall] = ACTIONS(1221), - [anon_sym___vectorcall] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_signed] = ACTIONS(1221), - [anon_sym_unsigned] = ACTIONS(1221), - [anon_sym_long] = ACTIONS(1221), - [anon_sym_short] = ACTIONS(1221), - [anon_sym_static] = ACTIONS(1221), - [anon_sym_auto] = ACTIONS(1221), - [anon_sym_register] = ACTIONS(1221), - [anon_sym_inline] = ACTIONS(1221), - [anon_sym___inline] = ACTIONS(1221), - [anon_sym___inline__] = ACTIONS(1221), - [anon_sym___forceinline] = ACTIONS(1221), - [anon_sym_thread_local] = ACTIONS(1221), - [anon_sym___thread] = ACTIONS(1221), - [anon_sym_const] = ACTIONS(1221), - [anon_sym_constexpr] = ACTIONS(1221), - [anon_sym_volatile] = ACTIONS(1221), - [anon_sym_restrict] = ACTIONS(1221), - [anon_sym___restrict__] = ACTIONS(1221), - [anon_sym__Atomic] = ACTIONS(1221), - [anon_sym__Noreturn] = ACTIONS(1221), - [anon_sym_noreturn] = ACTIONS(1221), - [anon_sym_alignas] = ACTIONS(1221), - [anon_sym__Alignas] = ACTIONS(1221), - [sym_primitive_type] = ACTIONS(1221), - [anon_sym_enum] = ACTIONS(1221), - [anon_sym_struct] = ACTIONS(1221), - [anon_sym_union] = ACTIONS(1221), - [anon_sym_if] = ACTIONS(1221), - [anon_sym_else] = ACTIONS(1221), - [anon_sym_switch] = ACTIONS(1221), - [anon_sym_case] = ACTIONS(1221), - [anon_sym_default] = ACTIONS(1221), - [anon_sym_while] = ACTIONS(1221), - [anon_sym_do] = ACTIONS(1221), - [anon_sym_for] = ACTIONS(1221), - [anon_sym_return] = ACTIONS(1221), - [anon_sym_break] = ACTIONS(1221), - [anon_sym_continue] = ACTIONS(1221), - [anon_sym_goto] = ACTIONS(1221), - [anon_sym___try] = ACTIONS(1221), - [anon_sym___leave] = ACTIONS(1221), - [anon_sym_DASH_DASH] = ACTIONS(1223), - [anon_sym_PLUS_PLUS] = ACTIONS(1223), - [anon_sym_sizeof] = ACTIONS(1221), - [anon_sym___alignof__] = ACTIONS(1221), - [anon_sym___alignof] = ACTIONS(1221), - [anon_sym__alignof] = ACTIONS(1221), - [anon_sym_alignof] = ACTIONS(1221), - [anon_sym__Alignof] = ACTIONS(1221), - [anon_sym_offsetof] = ACTIONS(1221), - [anon_sym__Generic] = ACTIONS(1221), - [anon_sym_asm] = ACTIONS(1221), - [anon_sym___asm__] = ACTIONS(1221), - [sym_number_literal] = ACTIONS(1223), - [anon_sym_L_SQUOTE] = ACTIONS(1223), - [anon_sym_u_SQUOTE] = ACTIONS(1223), - [anon_sym_U_SQUOTE] = ACTIONS(1223), - [anon_sym_u8_SQUOTE] = ACTIONS(1223), - [anon_sym_SQUOTE] = ACTIONS(1223), - [anon_sym_L_DQUOTE] = ACTIONS(1223), - [anon_sym_u_DQUOTE] = ACTIONS(1223), - [anon_sym_U_DQUOTE] = ACTIONS(1223), - [anon_sym_u8_DQUOTE] = ACTIONS(1223), - [anon_sym_DQUOTE] = ACTIONS(1223), - [sym_true] = ACTIONS(1221), - [sym_false] = ACTIONS(1221), - [anon_sym_NULL] = ACTIONS(1221), - [anon_sym_nullptr] = ACTIONS(1221), + [210] = { + [sym_identifier] = ACTIONS(1189), + [aux_sym_preproc_include_token1] = ACTIONS(1189), + [aux_sym_preproc_def_token1] = ACTIONS(1189), + [aux_sym_preproc_if_token1] = ACTIONS(1189), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1189), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1189), + [sym_preproc_directive] = ACTIONS(1189), + [anon_sym_LPAREN2] = ACTIONS(1191), + [anon_sym_BANG] = ACTIONS(1191), + [anon_sym_TILDE] = ACTIONS(1191), + [anon_sym_DASH] = ACTIONS(1189), + [anon_sym_PLUS] = ACTIONS(1189), + [anon_sym_STAR] = ACTIONS(1191), + [anon_sym_AMP] = ACTIONS(1191), + [anon_sym_SEMI] = ACTIONS(1191), + [anon_sym___extension__] = ACTIONS(1189), + [anon_sym_typedef] = ACTIONS(1189), + [anon_sym_extern] = ACTIONS(1189), + [anon_sym___attribute__] = ACTIONS(1189), + [anon_sym___scanf] = ACTIONS(1189), + [anon_sym___printf] = ACTIONS(1189), + [anon_sym___read_mostly] = ACTIONS(1189), + [anon_sym___must_hold] = ACTIONS(1189), + [anon_sym___ro_after_init] = ACTIONS(1189), + [anon_sym___noreturn] = ACTIONS(1189), + [anon_sym___cold] = ACTIONS(1189), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1191), + [anon_sym___declspec] = ACTIONS(1189), + [anon_sym___init] = ACTIONS(1189), + [anon_sym___exit] = ACTIONS(1189), + [anon_sym___cdecl] = ACTIONS(1189), + [anon_sym___clrcall] = ACTIONS(1189), + [anon_sym___stdcall] = ACTIONS(1189), + [anon_sym___fastcall] = ACTIONS(1189), + [anon_sym___thiscall] = ACTIONS(1189), + [anon_sym___vectorcall] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_RBRACE] = ACTIONS(1191), + [anon_sym_signed] = ACTIONS(1189), + [anon_sym_unsigned] = ACTIONS(1189), + [anon_sym_long] = ACTIONS(1189), + [anon_sym_short] = ACTIONS(1189), + [anon_sym_static] = ACTIONS(1189), + [anon_sym_auto] = ACTIONS(1189), + [anon_sym_register] = ACTIONS(1189), + [anon_sym_inline] = ACTIONS(1189), + [anon_sym___inline] = ACTIONS(1189), + [anon_sym___inline__] = ACTIONS(1189), + [anon_sym___forceinline] = ACTIONS(1189), + [anon_sym_thread_local] = ACTIONS(1189), + [anon_sym___thread] = ACTIONS(1189), + [anon_sym_const] = ACTIONS(1189), + [anon_sym_constexpr] = ACTIONS(1189), + [anon_sym_volatile] = ACTIONS(1189), + [anon_sym_restrict] = ACTIONS(1189), + [anon_sym___restrict__] = ACTIONS(1189), + [anon_sym__Atomic] = ACTIONS(1189), + [anon_sym__Noreturn] = ACTIONS(1189), + [anon_sym_noreturn] = ACTIONS(1189), + [anon_sym_alignas] = ACTIONS(1189), + [anon_sym__Alignas] = ACTIONS(1189), + [sym_primitive_type] = ACTIONS(1189), + [anon_sym_enum] = ACTIONS(1189), + [anon_sym_struct] = ACTIONS(1189), + [anon_sym_union] = ACTIONS(1189), + [anon_sym_if] = ACTIONS(1189), + [anon_sym_else] = ACTIONS(1189), + [anon_sym_switch] = ACTIONS(1189), + [anon_sym_case] = ACTIONS(1189), + [anon_sym_default] = ACTIONS(1189), + [anon_sym_while] = ACTIONS(1189), + [anon_sym_do] = ACTIONS(1189), + [anon_sym_for] = ACTIONS(1189), + [anon_sym_return] = ACTIONS(1189), + [anon_sym_break] = ACTIONS(1189), + [anon_sym_continue] = ACTIONS(1189), + [anon_sym_goto] = ACTIONS(1189), + [anon_sym___try] = ACTIONS(1189), + [anon_sym___leave] = ACTIONS(1189), + [anon_sym_DASH_DASH] = ACTIONS(1191), + [anon_sym_PLUS_PLUS] = ACTIONS(1191), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym___alignof__] = ACTIONS(1189), + [anon_sym___alignof] = ACTIONS(1189), + [anon_sym__alignof] = ACTIONS(1189), + [anon_sym_alignof] = ACTIONS(1189), + [anon_sym__Alignof] = ACTIONS(1189), + [anon_sym_offsetof] = ACTIONS(1189), + [anon_sym__Generic] = ACTIONS(1189), + [anon_sym_asm] = ACTIONS(1189), + [anon_sym___asm__] = ACTIONS(1189), + [sym_number_literal] = ACTIONS(1191), + [anon_sym_L_SQUOTE] = ACTIONS(1191), + [anon_sym_u_SQUOTE] = ACTIONS(1191), + [anon_sym_U_SQUOTE] = ACTIONS(1191), + [anon_sym_u8_SQUOTE] = ACTIONS(1191), + [anon_sym_SQUOTE] = ACTIONS(1191), + [anon_sym_L_DQUOTE] = ACTIONS(1191), + [anon_sym_u_DQUOTE] = ACTIONS(1191), + [anon_sym_U_DQUOTE] = ACTIONS(1191), + [anon_sym_u8_DQUOTE] = ACTIONS(1191), + [anon_sym_DQUOTE] = ACTIONS(1191), + [sym_true] = ACTIONS(1189), + [sym_false] = ACTIONS(1189), + [anon_sym_NULL] = ACTIONS(1189), + [anon_sym_nullptr] = ACTIONS(1189), [sym_comment] = ACTIONS(3), }, - [191] = { + [211] = { + [sym_identifier] = ACTIONS(1161), + [aux_sym_preproc_include_token1] = ACTIONS(1161), + [aux_sym_preproc_def_token1] = ACTIONS(1161), + [aux_sym_preproc_if_token1] = ACTIONS(1161), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1161), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1161), + [sym_preproc_directive] = ACTIONS(1161), + [anon_sym_LPAREN2] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1163), + [anon_sym_TILDE] = ACTIONS(1163), + [anon_sym_DASH] = ACTIONS(1161), + [anon_sym_PLUS] = ACTIONS(1161), + [anon_sym_STAR] = ACTIONS(1163), + [anon_sym_AMP] = ACTIONS(1163), + [anon_sym_SEMI] = ACTIONS(1163), + [anon_sym___extension__] = ACTIONS(1161), + [anon_sym_typedef] = ACTIONS(1161), + [anon_sym_extern] = ACTIONS(1161), + [anon_sym___attribute__] = ACTIONS(1161), + [anon_sym___scanf] = ACTIONS(1161), + [anon_sym___printf] = ACTIONS(1161), + [anon_sym___read_mostly] = ACTIONS(1161), + [anon_sym___must_hold] = ACTIONS(1161), + [anon_sym___ro_after_init] = ACTIONS(1161), + [anon_sym___noreturn] = ACTIONS(1161), + [anon_sym___cold] = ACTIONS(1161), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1163), + [anon_sym___declspec] = ACTIONS(1161), + [anon_sym___init] = ACTIONS(1161), + [anon_sym___exit] = ACTIONS(1161), + [anon_sym___cdecl] = ACTIONS(1161), + [anon_sym___clrcall] = ACTIONS(1161), + [anon_sym___stdcall] = ACTIONS(1161), + [anon_sym___fastcall] = ACTIONS(1161), + [anon_sym___thiscall] = ACTIONS(1161), + [anon_sym___vectorcall] = ACTIONS(1161), + [anon_sym_LBRACE] = ACTIONS(1163), + [anon_sym_RBRACE] = ACTIONS(1163), + [anon_sym_signed] = ACTIONS(1161), + [anon_sym_unsigned] = ACTIONS(1161), + [anon_sym_long] = ACTIONS(1161), + [anon_sym_short] = ACTIONS(1161), + [anon_sym_static] = ACTIONS(1161), + [anon_sym_auto] = ACTIONS(1161), + [anon_sym_register] = ACTIONS(1161), + [anon_sym_inline] = ACTIONS(1161), + [anon_sym___inline] = ACTIONS(1161), + [anon_sym___inline__] = ACTIONS(1161), + [anon_sym___forceinline] = ACTIONS(1161), + [anon_sym_thread_local] = ACTIONS(1161), + [anon_sym___thread] = ACTIONS(1161), + [anon_sym_const] = ACTIONS(1161), + [anon_sym_constexpr] = ACTIONS(1161), + [anon_sym_volatile] = ACTIONS(1161), + [anon_sym_restrict] = ACTIONS(1161), + [anon_sym___restrict__] = ACTIONS(1161), + [anon_sym__Atomic] = ACTIONS(1161), + [anon_sym__Noreturn] = ACTIONS(1161), + [anon_sym_noreturn] = ACTIONS(1161), + [anon_sym_alignas] = ACTIONS(1161), + [anon_sym__Alignas] = ACTIONS(1161), + [sym_primitive_type] = ACTIONS(1161), + [anon_sym_enum] = ACTIONS(1161), + [anon_sym_struct] = ACTIONS(1161), + [anon_sym_union] = ACTIONS(1161), + [anon_sym_if] = ACTIONS(1161), + [anon_sym_else] = ACTIONS(1161), + [anon_sym_switch] = ACTIONS(1161), + [anon_sym_case] = ACTIONS(1161), + [anon_sym_default] = ACTIONS(1161), + [anon_sym_while] = ACTIONS(1161), + [anon_sym_do] = ACTIONS(1161), + [anon_sym_for] = ACTIONS(1161), + [anon_sym_return] = ACTIONS(1161), + [anon_sym_break] = ACTIONS(1161), + [anon_sym_continue] = ACTIONS(1161), + [anon_sym_goto] = ACTIONS(1161), + [anon_sym___try] = ACTIONS(1161), + [anon_sym___leave] = ACTIONS(1161), + [anon_sym_DASH_DASH] = ACTIONS(1163), + [anon_sym_PLUS_PLUS] = ACTIONS(1163), + [anon_sym_sizeof] = ACTIONS(1161), + [anon_sym___alignof__] = ACTIONS(1161), + [anon_sym___alignof] = ACTIONS(1161), + [anon_sym__alignof] = ACTIONS(1161), + [anon_sym_alignof] = ACTIONS(1161), + [anon_sym__Alignof] = ACTIONS(1161), + [anon_sym_offsetof] = ACTIONS(1161), + [anon_sym__Generic] = ACTIONS(1161), + [anon_sym_asm] = ACTIONS(1161), + [anon_sym___asm__] = ACTIONS(1161), + [sym_number_literal] = ACTIONS(1163), + [anon_sym_L_SQUOTE] = ACTIONS(1163), + [anon_sym_u_SQUOTE] = ACTIONS(1163), + [anon_sym_U_SQUOTE] = ACTIONS(1163), + [anon_sym_u8_SQUOTE] = ACTIONS(1163), + [anon_sym_SQUOTE] = ACTIONS(1163), + [anon_sym_L_DQUOTE] = ACTIONS(1163), + [anon_sym_u_DQUOTE] = ACTIONS(1163), + [anon_sym_U_DQUOTE] = ACTIONS(1163), + [anon_sym_u8_DQUOTE] = ACTIONS(1163), + [anon_sym_DQUOTE] = ACTIONS(1163), + [sym_true] = ACTIONS(1161), + [sym_false] = ACTIONS(1161), + [anon_sym_NULL] = ACTIONS(1161), + [anon_sym_nullptr] = ACTIONS(1161), + [sym_comment] = ACTIONS(3), + }, + [212] = { [sym_identifier] = ACTIONS(1265), [aux_sym_preproc_include_token1] = ACTIONS(1265), [aux_sym_preproc_def_token1] = ACTIONS(1265), @@ -37059,9 +40635,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___read_mostly] = ACTIONS(1265), [anon_sym___must_hold] = ACTIONS(1265), [anon_sym___ro_after_init] = ACTIONS(1265), - [anon_sym___init] = ACTIONS(1265), + [anon_sym___noreturn] = ACTIONS(1265), + [anon_sym___cold] = ACTIONS(1265), [anon_sym_LBRACK_LBRACK] = ACTIONS(1267), [anon_sym___declspec] = ACTIONS(1265), + [anon_sym___init] = ACTIONS(1265), + [anon_sym___exit] = ACTIONS(1265), [anon_sym___cdecl] = ACTIONS(1265), [anon_sym___clrcall] = ACTIONS(1265), [anon_sym___stdcall] = ACTIONS(1265), @@ -37139,436 +40718,884 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1265), [sym_comment] = ACTIONS(3), }, - [192] = { - [sym_identifier] = ACTIONS(1269), - [aux_sym_preproc_include_token1] = ACTIONS(1269), - [aux_sym_preproc_def_token1] = ACTIONS(1269), - [aux_sym_preproc_if_token1] = ACTIONS(1269), - [aux_sym_preproc_if_token2] = ACTIONS(1269), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1269), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1269), - [sym_preproc_directive] = ACTIONS(1269), - [anon_sym_LPAREN2] = ACTIONS(1271), - [anon_sym_BANG] = ACTIONS(1271), - [anon_sym_TILDE] = ACTIONS(1271), - [anon_sym_DASH] = ACTIONS(1269), - [anon_sym_PLUS] = ACTIONS(1269), - [anon_sym_STAR] = ACTIONS(1271), - [anon_sym_AMP] = ACTIONS(1271), - [anon_sym_SEMI] = ACTIONS(1271), - [anon_sym___extension__] = ACTIONS(1269), - [anon_sym_typedef] = ACTIONS(1269), - [anon_sym_extern] = ACTIONS(1269), - [anon_sym___attribute__] = ACTIONS(1269), - [anon_sym___scanf] = ACTIONS(1269), - [anon_sym___printf] = ACTIONS(1269), - [anon_sym___read_mostly] = ACTIONS(1269), - [anon_sym___must_hold] = ACTIONS(1269), - [anon_sym___ro_after_init] = ACTIONS(1269), - [anon_sym___init] = ACTIONS(1269), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1271), - [anon_sym___declspec] = ACTIONS(1269), - [anon_sym___cdecl] = ACTIONS(1269), - [anon_sym___clrcall] = ACTIONS(1269), - [anon_sym___stdcall] = ACTIONS(1269), - [anon_sym___fastcall] = ACTIONS(1269), - [anon_sym___thiscall] = ACTIONS(1269), - [anon_sym___vectorcall] = ACTIONS(1269), - [anon_sym_LBRACE] = ACTIONS(1271), - [anon_sym_signed] = ACTIONS(1269), - [anon_sym_unsigned] = ACTIONS(1269), - [anon_sym_long] = ACTIONS(1269), - [anon_sym_short] = ACTIONS(1269), - [anon_sym_static] = ACTIONS(1269), - [anon_sym_auto] = ACTIONS(1269), - [anon_sym_register] = ACTIONS(1269), - [anon_sym_inline] = ACTIONS(1269), - [anon_sym___inline] = ACTIONS(1269), - [anon_sym___inline__] = ACTIONS(1269), - [anon_sym___forceinline] = ACTIONS(1269), - [anon_sym_thread_local] = ACTIONS(1269), - [anon_sym___thread] = ACTIONS(1269), - [anon_sym_const] = ACTIONS(1269), - [anon_sym_constexpr] = ACTIONS(1269), - [anon_sym_volatile] = ACTIONS(1269), - [anon_sym_restrict] = ACTIONS(1269), - [anon_sym___restrict__] = ACTIONS(1269), - [anon_sym__Atomic] = ACTIONS(1269), - [anon_sym__Noreturn] = ACTIONS(1269), - [anon_sym_noreturn] = ACTIONS(1269), - [anon_sym_alignas] = ACTIONS(1269), - [anon_sym__Alignas] = ACTIONS(1269), - [sym_primitive_type] = ACTIONS(1269), - [anon_sym_enum] = ACTIONS(1269), - [anon_sym_struct] = ACTIONS(1269), - [anon_sym_union] = ACTIONS(1269), - [anon_sym_if] = ACTIONS(1269), - [anon_sym_else] = ACTIONS(1269), - [anon_sym_switch] = ACTIONS(1269), - [anon_sym_case] = ACTIONS(1269), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_while] = ACTIONS(1269), - [anon_sym_do] = ACTIONS(1269), - [anon_sym_for] = ACTIONS(1269), - [anon_sym_return] = ACTIONS(1269), - [anon_sym_break] = ACTIONS(1269), - [anon_sym_continue] = ACTIONS(1269), - [anon_sym_goto] = ACTIONS(1269), - [anon_sym___try] = ACTIONS(1269), - [anon_sym___leave] = ACTIONS(1269), - [anon_sym_DASH_DASH] = ACTIONS(1271), - [anon_sym_PLUS_PLUS] = ACTIONS(1271), - [anon_sym_sizeof] = ACTIONS(1269), - [anon_sym___alignof__] = ACTIONS(1269), - [anon_sym___alignof] = ACTIONS(1269), - [anon_sym__alignof] = ACTIONS(1269), - [anon_sym_alignof] = ACTIONS(1269), - [anon_sym__Alignof] = ACTIONS(1269), - [anon_sym_offsetof] = ACTIONS(1269), - [anon_sym__Generic] = ACTIONS(1269), - [anon_sym_asm] = ACTIONS(1269), - [anon_sym___asm__] = ACTIONS(1269), - [sym_number_literal] = ACTIONS(1271), - [anon_sym_L_SQUOTE] = ACTIONS(1271), - [anon_sym_u_SQUOTE] = ACTIONS(1271), - [anon_sym_U_SQUOTE] = ACTIONS(1271), - [anon_sym_u8_SQUOTE] = ACTIONS(1271), - [anon_sym_SQUOTE] = ACTIONS(1271), - [anon_sym_L_DQUOTE] = ACTIONS(1271), - [anon_sym_u_DQUOTE] = ACTIONS(1271), - [anon_sym_U_DQUOTE] = ACTIONS(1271), - [anon_sym_u8_DQUOTE] = ACTIONS(1271), - [anon_sym_DQUOTE] = ACTIONS(1271), - [sym_true] = ACTIONS(1269), - [sym_false] = ACTIONS(1269), - [anon_sym_NULL] = ACTIONS(1269), - [anon_sym_nullptr] = ACTIONS(1269), + [213] = { + [ts_builtin_sym_end] = ACTIONS(1199), + [sym_identifier] = ACTIONS(1197), + [aux_sym_preproc_include_token1] = ACTIONS(1197), + [aux_sym_preproc_def_token1] = ACTIONS(1197), + [aux_sym_preproc_if_token1] = ACTIONS(1197), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1197), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1197), + [sym_preproc_directive] = ACTIONS(1197), + [anon_sym_LPAREN2] = ACTIONS(1199), + [anon_sym_BANG] = ACTIONS(1199), + [anon_sym_TILDE] = ACTIONS(1199), + [anon_sym_DASH] = ACTIONS(1197), + [anon_sym_PLUS] = ACTIONS(1197), + [anon_sym_STAR] = ACTIONS(1199), + [anon_sym_AMP] = ACTIONS(1199), + [anon_sym_SEMI] = ACTIONS(1199), + [anon_sym___extension__] = ACTIONS(1197), + [anon_sym_typedef] = ACTIONS(1197), + [anon_sym_extern] = ACTIONS(1197), + [anon_sym___attribute__] = ACTIONS(1197), + [anon_sym___scanf] = ACTIONS(1197), + [anon_sym___printf] = ACTIONS(1197), + [anon_sym___read_mostly] = ACTIONS(1197), + [anon_sym___must_hold] = ACTIONS(1197), + [anon_sym___ro_after_init] = ACTIONS(1197), + [anon_sym___noreturn] = ACTIONS(1197), + [anon_sym___cold] = ACTIONS(1197), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1199), + [anon_sym___declspec] = ACTIONS(1197), + [anon_sym___init] = ACTIONS(1197), + [anon_sym___exit] = ACTIONS(1197), + [anon_sym___cdecl] = ACTIONS(1197), + [anon_sym___clrcall] = ACTIONS(1197), + [anon_sym___stdcall] = ACTIONS(1197), + [anon_sym___fastcall] = ACTIONS(1197), + [anon_sym___thiscall] = ACTIONS(1197), + [anon_sym___vectorcall] = ACTIONS(1197), + [anon_sym_LBRACE] = ACTIONS(1199), + [anon_sym_signed] = ACTIONS(1197), + [anon_sym_unsigned] = ACTIONS(1197), + [anon_sym_long] = ACTIONS(1197), + [anon_sym_short] = ACTIONS(1197), + [anon_sym_static] = ACTIONS(1197), + [anon_sym_auto] = ACTIONS(1197), + [anon_sym_register] = ACTIONS(1197), + [anon_sym_inline] = ACTIONS(1197), + [anon_sym___inline] = ACTIONS(1197), + [anon_sym___inline__] = ACTIONS(1197), + [anon_sym___forceinline] = ACTIONS(1197), + [anon_sym_thread_local] = ACTIONS(1197), + [anon_sym___thread] = ACTIONS(1197), + [anon_sym_const] = ACTIONS(1197), + [anon_sym_constexpr] = ACTIONS(1197), + [anon_sym_volatile] = ACTIONS(1197), + [anon_sym_restrict] = ACTIONS(1197), + [anon_sym___restrict__] = ACTIONS(1197), + [anon_sym__Atomic] = ACTIONS(1197), + [anon_sym__Noreturn] = ACTIONS(1197), + [anon_sym_noreturn] = ACTIONS(1197), + [anon_sym_alignas] = ACTIONS(1197), + [anon_sym__Alignas] = ACTIONS(1197), + [sym_primitive_type] = ACTIONS(1197), + [anon_sym_enum] = ACTIONS(1197), + [anon_sym_struct] = ACTIONS(1197), + [anon_sym_union] = ACTIONS(1197), + [anon_sym_if] = ACTIONS(1197), + [anon_sym_else] = ACTIONS(1197), + [anon_sym_switch] = ACTIONS(1197), + [anon_sym_case] = ACTIONS(1197), + [anon_sym_default] = ACTIONS(1197), + [anon_sym_while] = ACTIONS(1197), + [anon_sym_do] = ACTIONS(1197), + [anon_sym_for] = ACTIONS(1197), + [anon_sym_return] = ACTIONS(1197), + [anon_sym_break] = ACTIONS(1197), + [anon_sym_continue] = ACTIONS(1197), + [anon_sym_goto] = ACTIONS(1197), + [anon_sym___try] = ACTIONS(1197), + [anon_sym___leave] = ACTIONS(1197), + [anon_sym_DASH_DASH] = ACTIONS(1199), + [anon_sym_PLUS_PLUS] = ACTIONS(1199), + [anon_sym_sizeof] = ACTIONS(1197), + [anon_sym___alignof__] = ACTIONS(1197), + [anon_sym___alignof] = ACTIONS(1197), + [anon_sym__alignof] = ACTIONS(1197), + [anon_sym_alignof] = ACTIONS(1197), + [anon_sym__Alignof] = ACTIONS(1197), + [anon_sym_offsetof] = ACTIONS(1197), + [anon_sym__Generic] = ACTIONS(1197), + [anon_sym_asm] = ACTIONS(1197), + [anon_sym___asm__] = ACTIONS(1197), + [sym_number_literal] = ACTIONS(1199), + [anon_sym_L_SQUOTE] = ACTIONS(1199), + [anon_sym_u_SQUOTE] = ACTIONS(1199), + [anon_sym_U_SQUOTE] = ACTIONS(1199), + [anon_sym_u8_SQUOTE] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1199), + [anon_sym_L_DQUOTE] = ACTIONS(1199), + [anon_sym_u_DQUOTE] = ACTIONS(1199), + [anon_sym_U_DQUOTE] = ACTIONS(1199), + [anon_sym_u8_DQUOTE] = ACTIONS(1199), + [anon_sym_DQUOTE] = ACTIONS(1199), + [sym_true] = ACTIONS(1197), + [sym_false] = ACTIONS(1197), + [anon_sym_NULL] = ACTIONS(1197), + [anon_sym_nullptr] = ACTIONS(1197), + [sym_comment] = ACTIONS(3), + }, + [214] = { + [ts_builtin_sym_end] = ACTIONS(1231), + [sym_identifier] = ACTIONS(1229), + [aux_sym_preproc_include_token1] = ACTIONS(1229), + [aux_sym_preproc_def_token1] = ACTIONS(1229), + [aux_sym_preproc_if_token1] = ACTIONS(1229), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1229), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1229), + [sym_preproc_directive] = ACTIONS(1229), + [anon_sym_LPAREN2] = ACTIONS(1231), + [anon_sym_BANG] = ACTIONS(1231), + [anon_sym_TILDE] = ACTIONS(1231), + [anon_sym_DASH] = ACTIONS(1229), + [anon_sym_PLUS] = ACTIONS(1229), + [anon_sym_STAR] = ACTIONS(1231), + [anon_sym_AMP] = ACTIONS(1231), + [anon_sym_SEMI] = ACTIONS(1231), + [anon_sym___extension__] = ACTIONS(1229), + [anon_sym_typedef] = ACTIONS(1229), + [anon_sym_extern] = ACTIONS(1229), + [anon_sym___attribute__] = ACTIONS(1229), + [anon_sym___scanf] = ACTIONS(1229), + [anon_sym___printf] = ACTIONS(1229), + [anon_sym___read_mostly] = ACTIONS(1229), + [anon_sym___must_hold] = ACTIONS(1229), + [anon_sym___ro_after_init] = ACTIONS(1229), + [anon_sym___noreturn] = ACTIONS(1229), + [anon_sym___cold] = ACTIONS(1229), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1231), + [anon_sym___declspec] = ACTIONS(1229), + [anon_sym___init] = ACTIONS(1229), + [anon_sym___exit] = ACTIONS(1229), + [anon_sym___cdecl] = ACTIONS(1229), + [anon_sym___clrcall] = ACTIONS(1229), + [anon_sym___stdcall] = ACTIONS(1229), + [anon_sym___fastcall] = ACTIONS(1229), + [anon_sym___thiscall] = ACTIONS(1229), + [anon_sym___vectorcall] = ACTIONS(1229), + [anon_sym_LBRACE] = ACTIONS(1231), + [anon_sym_signed] = ACTIONS(1229), + [anon_sym_unsigned] = ACTIONS(1229), + [anon_sym_long] = ACTIONS(1229), + [anon_sym_short] = ACTIONS(1229), + [anon_sym_static] = ACTIONS(1229), + [anon_sym_auto] = ACTIONS(1229), + [anon_sym_register] = ACTIONS(1229), + [anon_sym_inline] = ACTIONS(1229), + [anon_sym___inline] = ACTIONS(1229), + [anon_sym___inline__] = ACTIONS(1229), + [anon_sym___forceinline] = ACTIONS(1229), + [anon_sym_thread_local] = ACTIONS(1229), + [anon_sym___thread] = ACTIONS(1229), + [anon_sym_const] = ACTIONS(1229), + [anon_sym_constexpr] = ACTIONS(1229), + [anon_sym_volatile] = ACTIONS(1229), + [anon_sym_restrict] = ACTIONS(1229), + [anon_sym___restrict__] = ACTIONS(1229), + [anon_sym__Atomic] = ACTIONS(1229), + [anon_sym__Noreturn] = ACTIONS(1229), + [anon_sym_noreturn] = ACTIONS(1229), + [anon_sym_alignas] = ACTIONS(1229), + [anon_sym__Alignas] = ACTIONS(1229), + [sym_primitive_type] = ACTIONS(1229), + [anon_sym_enum] = ACTIONS(1229), + [anon_sym_struct] = ACTIONS(1229), + [anon_sym_union] = ACTIONS(1229), + [anon_sym_if] = ACTIONS(1229), + [anon_sym_else] = ACTIONS(1229), + [anon_sym_switch] = ACTIONS(1229), + [anon_sym_case] = ACTIONS(1229), + [anon_sym_default] = ACTIONS(1229), + [anon_sym_while] = ACTIONS(1229), + [anon_sym_do] = ACTIONS(1229), + [anon_sym_for] = ACTIONS(1229), + [anon_sym_return] = ACTIONS(1229), + [anon_sym_break] = ACTIONS(1229), + [anon_sym_continue] = ACTIONS(1229), + [anon_sym_goto] = ACTIONS(1229), + [anon_sym___try] = ACTIONS(1229), + [anon_sym___leave] = ACTIONS(1229), + [anon_sym_DASH_DASH] = ACTIONS(1231), + [anon_sym_PLUS_PLUS] = ACTIONS(1231), + [anon_sym_sizeof] = ACTIONS(1229), + [anon_sym___alignof__] = ACTIONS(1229), + [anon_sym___alignof] = ACTIONS(1229), + [anon_sym__alignof] = ACTIONS(1229), + [anon_sym_alignof] = ACTIONS(1229), + [anon_sym__Alignof] = ACTIONS(1229), + [anon_sym_offsetof] = ACTIONS(1229), + [anon_sym__Generic] = ACTIONS(1229), + [anon_sym_asm] = ACTIONS(1229), + [anon_sym___asm__] = ACTIONS(1229), + [sym_number_literal] = ACTIONS(1231), + [anon_sym_L_SQUOTE] = ACTIONS(1231), + [anon_sym_u_SQUOTE] = ACTIONS(1231), + [anon_sym_U_SQUOTE] = ACTIONS(1231), + [anon_sym_u8_SQUOTE] = ACTIONS(1231), + [anon_sym_SQUOTE] = ACTIONS(1231), + [anon_sym_L_DQUOTE] = ACTIONS(1231), + [anon_sym_u_DQUOTE] = ACTIONS(1231), + [anon_sym_U_DQUOTE] = ACTIONS(1231), + [anon_sym_u8_DQUOTE] = ACTIONS(1231), + [anon_sym_DQUOTE] = ACTIONS(1231), + [sym_true] = ACTIONS(1229), + [sym_false] = ACTIONS(1229), + [anon_sym_NULL] = ACTIONS(1229), + [anon_sym_nullptr] = ACTIONS(1229), + [sym_comment] = ACTIONS(3), + }, + [215] = { + [ts_builtin_sym_end] = ACTIONS(1195), + [sym_identifier] = ACTIONS(1193), + [aux_sym_preproc_include_token1] = ACTIONS(1193), + [aux_sym_preproc_def_token1] = ACTIONS(1193), + [aux_sym_preproc_if_token1] = ACTIONS(1193), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1193), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1193), + [sym_preproc_directive] = ACTIONS(1193), + [anon_sym_LPAREN2] = ACTIONS(1195), + [anon_sym_BANG] = ACTIONS(1195), + [anon_sym_TILDE] = ACTIONS(1195), + [anon_sym_DASH] = ACTIONS(1193), + [anon_sym_PLUS] = ACTIONS(1193), + [anon_sym_STAR] = ACTIONS(1195), + [anon_sym_AMP] = ACTIONS(1195), + [anon_sym_SEMI] = ACTIONS(1195), + [anon_sym___extension__] = ACTIONS(1193), + [anon_sym_typedef] = ACTIONS(1193), + [anon_sym_extern] = ACTIONS(1193), + [anon_sym___attribute__] = ACTIONS(1193), + [anon_sym___scanf] = ACTIONS(1193), + [anon_sym___printf] = ACTIONS(1193), + [anon_sym___read_mostly] = ACTIONS(1193), + [anon_sym___must_hold] = ACTIONS(1193), + [anon_sym___ro_after_init] = ACTIONS(1193), + [anon_sym___noreturn] = ACTIONS(1193), + [anon_sym___cold] = ACTIONS(1193), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1195), + [anon_sym___declspec] = ACTIONS(1193), + [anon_sym___init] = ACTIONS(1193), + [anon_sym___exit] = ACTIONS(1193), + [anon_sym___cdecl] = ACTIONS(1193), + [anon_sym___clrcall] = ACTIONS(1193), + [anon_sym___stdcall] = ACTIONS(1193), + [anon_sym___fastcall] = ACTIONS(1193), + [anon_sym___thiscall] = ACTIONS(1193), + [anon_sym___vectorcall] = ACTIONS(1193), + [anon_sym_LBRACE] = ACTIONS(1195), + [anon_sym_signed] = ACTIONS(1193), + [anon_sym_unsigned] = ACTIONS(1193), + [anon_sym_long] = ACTIONS(1193), + [anon_sym_short] = ACTIONS(1193), + [anon_sym_static] = ACTIONS(1193), + [anon_sym_auto] = ACTIONS(1193), + [anon_sym_register] = ACTIONS(1193), + [anon_sym_inline] = ACTIONS(1193), + [anon_sym___inline] = ACTIONS(1193), + [anon_sym___inline__] = ACTIONS(1193), + [anon_sym___forceinline] = ACTIONS(1193), + [anon_sym_thread_local] = ACTIONS(1193), + [anon_sym___thread] = ACTIONS(1193), + [anon_sym_const] = ACTIONS(1193), + [anon_sym_constexpr] = ACTIONS(1193), + [anon_sym_volatile] = ACTIONS(1193), + [anon_sym_restrict] = ACTIONS(1193), + [anon_sym___restrict__] = ACTIONS(1193), + [anon_sym__Atomic] = ACTIONS(1193), + [anon_sym__Noreturn] = ACTIONS(1193), + [anon_sym_noreturn] = ACTIONS(1193), + [anon_sym_alignas] = ACTIONS(1193), + [anon_sym__Alignas] = ACTIONS(1193), + [sym_primitive_type] = ACTIONS(1193), + [anon_sym_enum] = ACTIONS(1193), + [anon_sym_struct] = ACTIONS(1193), + [anon_sym_union] = ACTIONS(1193), + [anon_sym_if] = ACTIONS(1193), + [anon_sym_else] = ACTIONS(1193), + [anon_sym_switch] = ACTIONS(1193), + [anon_sym_case] = ACTIONS(1193), + [anon_sym_default] = ACTIONS(1193), + [anon_sym_while] = ACTIONS(1193), + [anon_sym_do] = ACTIONS(1193), + [anon_sym_for] = ACTIONS(1193), + [anon_sym_return] = ACTIONS(1193), + [anon_sym_break] = ACTIONS(1193), + [anon_sym_continue] = ACTIONS(1193), + [anon_sym_goto] = ACTIONS(1193), + [anon_sym___try] = ACTIONS(1193), + [anon_sym___leave] = ACTIONS(1193), + [anon_sym_DASH_DASH] = ACTIONS(1195), + [anon_sym_PLUS_PLUS] = ACTIONS(1195), + [anon_sym_sizeof] = ACTIONS(1193), + [anon_sym___alignof__] = ACTIONS(1193), + [anon_sym___alignof] = ACTIONS(1193), + [anon_sym__alignof] = ACTIONS(1193), + [anon_sym_alignof] = ACTIONS(1193), + [anon_sym__Alignof] = ACTIONS(1193), + [anon_sym_offsetof] = ACTIONS(1193), + [anon_sym__Generic] = ACTIONS(1193), + [anon_sym_asm] = ACTIONS(1193), + [anon_sym___asm__] = ACTIONS(1193), + [sym_number_literal] = ACTIONS(1195), + [anon_sym_L_SQUOTE] = ACTIONS(1195), + [anon_sym_u_SQUOTE] = ACTIONS(1195), + [anon_sym_U_SQUOTE] = ACTIONS(1195), + [anon_sym_u8_SQUOTE] = ACTIONS(1195), + [anon_sym_SQUOTE] = ACTIONS(1195), + [anon_sym_L_DQUOTE] = ACTIONS(1195), + [anon_sym_u_DQUOTE] = ACTIONS(1195), + [anon_sym_U_DQUOTE] = ACTIONS(1195), + [anon_sym_u8_DQUOTE] = ACTIONS(1195), + [anon_sym_DQUOTE] = ACTIONS(1195), + [sym_true] = ACTIONS(1193), + [sym_false] = ACTIONS(1193), + [anon_sym_NULL] = ACTIONS(1193), + [anon_sym_nullptr] = ACTIONS(1193), [sym_comment] = ACTIONS(3), }, - [193] = { - [ts_builtin_sym_end] = ACTIONS(1227), - [sym_identifier] = ACTIONS(1225), - [aux_sym_preproc_include_token1] = ACTIONS(1225), - [aux_sym_preproc_def_token1] = ACTIONS(1225), - [aux_sym_preproc_if_token1] = ACTIONS(1225), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1225), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1225), - [sym_preproc_directive] = ACTIONS(1225), - [anon_sym_LPAREN2] = ACTIONS(1227), - [anon_sym_BANG] = ACTIONS(1227), - [anon_sym_TILDE] = ACTIONS(1227), - [anon_sym_DASH] = ACTIONS(1225), - [anon_sym_PLUS] = ACTIONS(1225), - [anon_sym_STAR] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(1227), - [anon_sym_SEMI] = ACTIONS(1227), - [anon_sym___extension__] = ACTIONS(1225), - [anon_sym_typedef] = ACTIONS(1225), - [anon_sym_extern] = ACTIONS(1225), - [anon_sym___attribute__] = ACTIONS(1225), - [anon_sym___scanf] = ACTIONS(1225), - [anon_sym___printf] = ACTIONS(1225), - [anon_sym___read_mostly] = ACTIONS(1225), - [anon_sym___must_hold] = ACTIONS(1225), - [anon_sym___ro_after_init] = ACTIONS(1225), - [anon_sym___init] = ACTIONS(1225), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1227), - [anon_sym___declspec] = ACTIONS(1225), - [anon_sym___cdecl] = ACTIONS(1225), - [anon_sym___clrcall] = ACTIONS(1225), - [anon_sym___stdcall] = ACTIONS(1225), - [anon_sym___fastcall] = ACTIONS(1225), - [anon_sym___thiscall] = ACTIONS(1225), - [anon_sym___vectorcall] = ACTIONS(1225), - [anon_sym_LBRACE] = ACTIONS(1227), - [anon_sym_signed] = ACTIONS(1225), - [anon_sym_unsigned] = ACTIONS(1225), - [anon_sym_long] = ACTIONS(1225), - [anon_sym_short] = ACTIONS(1225), - [anon_sym_static] = ACTIONS(1225), - [anon_sym_auto] = ACTIONS(1225), - [anon_sym_register] = ACTIONS(1225), - [anon_sym_inline] = ACTIONS(1225), - [anon_sym___inline] = ACTIONS(1225), - [anon_sym___inline__] = ACTIONS(1225), - [anon_sym___forceinline] = ACTIONS(1225), - [anon_sym_thread_local] = ACTIONS(1225), - [anon_sym___thread] = ACTIONS(1225), - [anon_sym_const] = ACTIONS(1225), - [anon_sym_constexpr] = ACTIONS(1225), - [anon_sym_volatile] = ACTIONS(1225), - [anon_sym_restrict] = ACTIONS(1225), - [anon_sym___restrict__] = ACTIONS(1225), - [anon_sym__Atomic] = ACTIONS(1225), - [anon_sym__Noreturn] = ACTIONS(1225), - [anon_sym_noreturn] = ACTIONS(1225), - [anon_sym_alignas] = ACTIONS(1225), - [anon_sym__Alignas] = ACTIONS(1225), - [sym_primitive_type] = ACTIONS(1225), - [anon_sym_enum] = ACTIONS(1225), - [anon_sym_struct] = ACTIONS(1225), - [anon_sym_union] = ACTIONS(1225), - [anon_sym_if] = ACTIONS(1225), - [anon_sym_else] = ACTIONS(1225), - [anon_sym_switch] = ACTIONS(1225), - [anon_sym_case] = ACTIONS(1225), - [anon_sym_default] = ACTIONS(1225), - [anon_sym_while] = ACTIONS(1225), - [anon_sym_do] = ACTIONS(1225), - [anon_sym_for] = ACTIONS(1225), - [anon_sym_return] = ACTIONS(1225), - [anon_sym_break] = ACTIONS(1225), - [anon_sym_continue] = ACTIONS(1225), - [anon_sym_goto] = ACTIONS(1225), - [anon_sym___try] = ACTIONS(1225), - [anon_sym___leave] = ACTIONS(1225), - [anon_sym_DASH_DASH] = ACTIONS(1227), - [anon_sym_PLUS_PLUS] = ACTIONS(1227), - [anon_sym_sizeof] = ACTIONS(1225), - [anon_sym___alignof__] = ACTIONS(1225), - [anon_sym___alignof] = ACTIONS(1225), - [anon_sym__alignof] = ACTIONS(1225), - [anon_sym_alignof] = ACTIONS(1225), - [anon_sym__Alignof] = ACTIONS(1225), - [anon_sym_offsetof] = ACTIONS(1225), - [anon_sym__Generic] = ACTIONS(1225), - [anon_sym_asm] = ACTIONS(1225), - [anon_sym___asm__] = ACTIONS(1225), - [sym_number_literal] = ACTIONS(1227), - [anon_sym_L_SQUOTE] = ACTIONS(1227), - [anon_sym_u_SQUOTE] = ACTIONS(1227), - [anon_sym_U_SQUOTE] = ACTIONS(1227), - [anon_sym_u8_SQUOTE] = ACTIONS(1227), - [anon_sym_SQUOTE] = ACTIONS(1227), - [anon_sym_L_DQUOTE] = ACTIONS(1227), - [anon_sym_u_DQUOTE] = ACTIONS(1227), - [anon_sym_U_DQUOTE] = ACTIONS(1227), - [anon_sym_u8_DQUOTE] = ACTIONS(1227), - [anon_sym_DQUOTE] = ACTIONS(1227), - [sym_true] = ACTIONS(1225), - [sym_false] = ACTIONS(1225), - [anon_sym_NULL] = ACTIONS(1225), - [anon_sym_nullptr] = ACTIONS(1225), + [216] = { + [sym_identifier] = ACTIONS(1281), + [aux_sym_preproc_include_token1] = ACTIONS(1281), + [aux_sym_preproc_def_token1] = ACTIONS(1281), + [aux_sym_preproc_if_token1] = ACTIONS(1281), + [aux_sym_preproc_if_token2] = ACTIONS(1281), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1281), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1281), + [sym_preproc_directive] = ACTIONS(1281), + [anon_sym_LPAREN2] = ACTIONS(1283), + [anon_sym_BANG] = ACTIONS(1283), + [anon_sym_TILDE] = ACTIONS(1283), + [anon_sym_DASH] = ACTIONS(1281), + [anon_sym_PLUS] = ACTIONS(1281), + [anon_sym_STAR] = ACTIONS(1283), + [anon_sym_AMP] = ACTIONS(1283), + [anon_sym_SEMI] = ACTIONS(1283), + [anon_sym___extension__] = ACTIONS(1281), + [anon_sym_typedef] = ACTIONS(1281), + [anon_sym_extern] = ACTIONS(1281), + [anon_sym___attribute__] = ACTIONS(1281), + [anon_sym___scanf] = ACTIONS(1281), + [anon_sym___printf] = ACTIONS(1281), + [anon_sym___read_mostly] = ACTIONS(1281), + [anon_sym___must_hold] = ACTIONS(1281), + [anon_sym___ro_after_init] = ACTIONS(1281), + [anon_sym___noreturn] = ACTIONS(1281), + [anon_sym___cold] = ACTIONS(1281), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1283), + [anon_sym___declspec] = ACTIONS(1281), + [anon_sym___init] = ACTIONS(1281), + [anon_sym___exit] = ACTIONS(1281), + [anon_sym___cdecl] = ACTIONS(1281), + [anon_sym___clrcall] = ACTIONS(1281), + [anon_sym___stdcall] = ACTIONS(1281), + [anon_sym___fastcall] = ACTIONS(1281), + [anon_sym___thiscall] = ACTIONS(1281), + [anon_sym___vectorcall] = ACTIONS(1281), + [anon_sym_LBRACE] = ACTIONS(1283), + [anon_sym_signed] = ACTIONS(1281), + [anon_sym_unsigned] = ACTIONS(1281), + [anon_sym_long] = ACTIONS(1281), + [anon_sym_short] = ACTIONS(1281), + [anon_sym_static] = ACTIONS(1281), + [anon_sym_auto] = ACTIONS(1281), + [anon_sym_register] = ACTIONS(1281), + [anon_sym_inline] = ACTIONS(1281), + [anon_sym___inline] = ACTIONS(1281), + [anon_sym___inline__] = ACTIONS(1281), + [anon_sym___forceinline] = ACTIONS(1281), + [anon_sym_thread_local] = ACTIONS(1281), + [anon_sym___thread] = ACTIONS(1281), + [anon_sym_const] = ACTIONS(1281), + [anon_sym_constexpr] = ACTIONS(1281), + [anon_sym_volatile] = ACTIONS(1281), + [anon_sym_restrict] = ACTIONS(1281), + [anon_sym___restrict__] = ACTIONS(1281), + [anon_sym__Atomic] = ACTIONS(1281), + [anon_sym__Noreturn] = ACTIONS(1281), + [anon_sym_noreturn] = ACTIONS(1281), + [anon_sym_alignas] = ACTIONS(1281), + [anon_sym__Alignas] = ACTIONS(1281), + [sym_primitive_type] = ACTIONS(1281), + [anon_sym_enum] = ACTIONS(1281), + [anon_sym_struct] = ACTIONS(1281), + [anon_sym_union] = ACTIONS(1281), + [anon_sym_if] = ACTIONS(1281), + [anon_sym_else] = ACTIONS(1281), + [anon_sym_switch] = ACTIONS(1281), + [anon_sym_case] = ACTIONS(1281), + [anon_sym_default] = ACTIONS(1281), + [anon_sym_while] = ACTIONS(1281), + [anon_sym_do] = ACTIONS(1281), + [anon_sym_for] = ACTIONS(1281), + [anon_sym_return] = ACTIONS(1281), + [anon_sym_break] = ACTIONS(1281), + [anon_sym_continue] = ACTIONS(1281), + [anon_sym_goto] = ACTIONS(1281), + [anon_sym___try] = ACTIONS(1281), + [anon_sym___leave] = ACTIONS(1281), + [anon_sym_DASH_DASH] = ACTIONS(1283), + [anon_sym_PLUS_PLUS] = ACTIONS(1283), + [anon_sym_sizeof] = ACTIONS(1281), + [anon_sym___alignof__] = ACTIONS(1281), + [anon_sym___alignof] = ACTIONS(1281), + [anon_sym__alignof] = ACTIONS(1281), + [anon_sym_alignof] = ACTIONS(1281), + [anon_sym__Alignof] = ACTIONS(1281), + [anon_sym_offsetof] = ACTIONS(1281), + [anon_sym__Generic] = ACTIONS(1281), + [anon_sym_asm] = ACTIONS(1281), + [anon_sym___asm__] = ACTIONS(1281), + [sym_number_literal] = ACTIONS(1283), + [anon_sym_L_SQUOTE] = ACTIONS(1283), + [anon_sym_u_SQUOTE] = ACTIONS(1283), + [anon_sym_U_SQUOTE] = ACTIONS(1283), + [anon_sym_u8_SQUOTE] = ACTIONS(1283), + [anon_sym_SQUOTE] = ACTIONS(1283), + [anon_sym_L_DQUOTE] = ACTIONS(1283), + [anon_sym_u_DQUOTE] = ACTIONS(1283), + [anon_sym_U_DQUOTE] = ACTIONS(1283), + [anon_sym_u8_DQUOTE] = ACTIONS(1283), + [anon_sym_DQUOTE] = ACTIONS(1283), + [sym_true] = ACTIONS(1281), + [sym_false] = ACTIONS(1281), + [anon_sym_NULL] = ACTIONS(1281), + [anon_sym_nullptr] = ACTIONS(1281), [sym_comment] = ACTIONS(3), }, - [194] = { - [sym_identifier] = ACTIONS(1149), - [aux_sym_preproc_include_token1] = ACTIONS(1149), - [aux_sym_preproc_def_token1] = ACTIONS(1149), - [aux_sym_preproc_if_token1] = ACTIONS(1149), - [aux_sym_preproc_if_token2] = ACTIONS(1149), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1149), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1149), - [sym_preproc_directive] = ACTIONS(1149), - [anon_sym_LPAREN2] = ACTIONS(1151), - [anon_sym_BANG] = ACTIONS(1151), - [anon_sym_TILDE] = ACTIONS(1151), - [anon_sym_DASH] = ACTIONS(1149), - [anon_sym_PLUS] = ACTIONS(1149), - [anon_sym_STAR] = ACTIONS(1151), - [anon_sym_AMP] = ACTIONS(1151), - [anon_sym_SEMI] = ACTIONS(1151), - [anon_sym___extension__] = ACTIONS(1149), - [anon_sym_typedef] = ACTIONS(1149), - [anon_sym_extern] = ACTIONS(1149), - [anon_sym___attribute__] = ACTIONS(1149), - [anon_sym___scanf] = ACTIONS(1149), - [anon_sym___printf] = ACTIONS(1149), - [anon_sym___read_mostly] = ACTIONS(1149), - [anon_sym___must_hold] = ACTIONS(1149), - [anon_sym___ro_after_init] = ACTIONS(1149), - [anon_sym___init] = ACTIONS(1149), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1151), - [anon_sym___declspec] = ACTIONS(1149), - [anon_sym___cdecl] = ACTIONS(1149), - [anon_sym___clrcall] = ACTIONS(1149), - [anon_sym___stdcall] = ACTIONS(1149), - [anon_sym___fastcall] = ACTIONS(1149), - [anon_sym___thiscall] = ACTIONS(1149), - [anon_sym___vectorcall] = ACTIONS(1149), - [anon_sym_LBRACE] = ACTIONS(1151), - [anon_sym_signed] = ACTIONS(1149), - [anon_sym_unsigned] = ACTIONS(1149), - [anon_sym_long] = ACTIONS(1149), - [anon_sym_short] = ACTIONS(1149), - [anon_sym_static] = ACTIONS(1149), - [anon_sym_auto] = ACTIONS(1149), - [anon_sym_register] = ACTIONS(1149), - [anon_sym_inline] = ACTIONS(1149), - [anon_sym___inline] = ACTIONS(1149), - [anon_sym___inline__] = ACTIONS(1149), - [anon_sym___forceinline] = ACTIONS(1149), - [anon_sym_thread_local] = ACTIONS(1149), - [anon_sym___thread] = ACTIONS(1149), - [anon_sym_const] = ACTIONS(1149), - [anon_sym_constexpr] = ACTIONS(1149), - [anon_sym_volatile] = ACTIONS(1149), - [anon_sym_restrict] = ACTIONS(1149), - [anon_sym___restrict__] = ACTIONS(1149), - [anon_sym__Atomic] = ACTIONS(1149), - [anon_sym__Noreturn] = ACTIONS(1149), - [anon_sym_noreturn] = ACTIONS(1149), - [anon_sym_alignas] = ACTIONS(1149), - [anon_sym__Alignas] = ACTIONS(1149), - [sym_primitive_type] = ACTIONS(1149), - [anon_sym_enum] = ACTIONS(1149), - [anon_sym_struct] = ACTIONS(1149), - [anon_sym_union] = ACTIONS(1149), - [anon_sym_if] = ACTIONS(1149), - [anon_sym_else] = ACTIONS(1149), - [anon_sym_switch] = ACTIONS(1149), - [anon_sym_case] = ACTIONS(1149), - [anon_sym_default] = ACTIONS(1149), - [anon_sym_while] = ACTIONS(1149), - [anon_sym_do] = ACTIONS(1149), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_return] = ACTIONS(1149), - [anon_sym_break] = ACTIONS(1149), - [anon_sym_continue] = ACTIONS(1149), - [anon_sym_goto] = ACTIONS(1149), - [anon_sym___try] = ACTIONS(1149), - [anon_sym___leave] = ACTIONS(1149), - [anon_sym_DASH_DASH] = ACTIONS(1151), - [anon_sym_PLUS_PLUS] = ACTIONS(1151), - [anon_sym_sizeof] = ACTIONS(1149), - [anon_sym___alignof__] = ACTIONS(1149), - [anon_sym___alignof] = ACTIONS(1149), - [anon_sym__alignof] = ACTIONS(1149), - [anon_sym_alignof] = ACTIONS(1149), - [anon_sym__Alignof] = ACTIONS(1149), - [anon_sym_offsetof] = ACTIONS(1149), - [anon_sym__Generic] = ACTIONS(1149), - [anon_sym_asm] = ACTIONS(1149), - [anon_sym___asm__] = ACTIONS(1149), - [sym_number_literal] = ACTIONS(1151), - [anon_sym_L_SQUOTE] = ACTIONS(1151), - [anon_sym_u_SQUOTE] = ACTIONS(1151), - [anon_sym_U_SQUOTE] = ACTIONS(1151), - [anon_sym_u8_SQUOTE] = ACTIONS(1151), - [anon_sym_SQUOTE] = ACTIONS(1151), - [anon_sym_L_DQUOTE] = ACTIONS(1151), - [anon_sym_u_DQUOTE] = ACTIONS(1151), - [anon_sym_U_DQUOTE] = ACTIONS(1151), - [anon_sym_u8_DQUOTE] = ACTIONS(1151), - [anon_sym_DQUOTE] = ACTIONS(1151), - [sym_true] = ACTIONS(1149), - [sym_false] = ACTIONS(1149), - [anon_sym_NULL] = ACTIONS(1149), - [anon_sym_nullptr] = ACTIONS(1149), + [217] = { + [sym_identifier] = ACTIONS(1285), + [aux_sym_preproc_include_token1] = ACTIONS(1285), + [aux_sym_preproc_def_token1] = ACTIONS(1285), + [aux_sym_preproc_if_token1] = ACTIONS(1285), + [aux_sym_preproc_if_token2] = ACTIONS(1285), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1285), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1285), + [sym_preproc_directive] = ACTIONS(1285), + [anon_sym_LPAREN2] = ACTIONS(1287), + [anon_sym_BANG] = ACTIONS(1287), + [anon_sym_TILDE] = ACTIONS(1287), + [anon_sym_DASH] = ACTIONS(1285), + [anon_sym_PLUS] = ACTIONS(1285), + [anon_sym_STAR] = ACTIONS(1287), + [anon_sym_AMP] = ACTIONS(1287), + [anon_sym_SEMI] = ACTIONS(1287), + [anon_sym___extension__] = ACTIONS(1285), + [anon_sym_typedef] = ACTIONS(1285), + [anon_sym_extern] = ACTIONS(1285), + [anon_sym___attribute__] = ACTIONS(1285), + [anon_sym___scanf] = ACTIONS(1285), + [anon_sym___printf] = ACTIONS(1285), + [anon_sym___read_mostly] = ACTIONS(1285), + [anon_sym___must_hold] = ACTIONS(1285), + [anon_sym___ro_after_init] = ACTIONS(1285), + [anon_sym___noreturn] = ACTIONS(1285), + [anon_sym___cold] = ACTIONS(1285), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1287), + [anon_sym___declspec] = ACTIONS(1285), + [anon_sym___init] = ACTIONS(1285), + [anon_sym___exit] = ACTIONS(1285), + [anon_sym___cdecl] = ACTIONS(1285), + [anon_sym___clrcall] = ACTIONS(1285), + [anon_sym___stdcall] = ACTIONS(1285), + [anon_sym___fastcall] = ACTIONS(1285), + [anon_sym___thiscall] = ACTIONS(1285), + [anon_sym___vectorcall] = ACTIONS(1285), + [anon_sym_LBRACE] = ACTIONS(1287), + [anon_sym_signed] = ACTIONS(1285), + [anon_sym_unsigned] = ACTIONS(1285), + [anon_sym_long] = ACTIONS(1285), + [anon_sym_short] = ACTIONS(1285), + [anon_sym_static] = ACTIONS(1285), + [anon_sym_auto] = ACTIONS(1285), + [anon_sym_register] = ACTIONS(1285), + [anon_sym_inline] = ACTIONS(1285), + [anon_sym___inline] = ACTIONS(1285), + [anon_sym___inline__] = ACTIONS(1285), + [anon_sym___forceinline] = ACTIONS(1285), + [anon_sym_thread_local] = ACTIONS(1285), + [anon_sym___thread] = ACTIONS(1285), + [anon_sym_const] = ACTIONS(1285), + [anon_sym_constexpr] = ACTIONS(1285), + [anon_sym_volatile] = ACTIONS(1285), + [anon_sym_restrict] = ACTIONS(1285), + [anon_sym___restrict__] = ACTIONS(1285), + [anon_sym__Atomic] = ACTIONS(1285), + [anon_sym__Noreturn] = ACTIONS(1285), + [anon_sym_noreturn] = ACTIONS(1285), + [anon_sym_alignas] = ACTIONS(1285), + [anon_sym__Alignas] = ACTIONS(1285), + [sym_primitive_type] = ACTIONS(1285), + [anon_sym_enum] = ACTIONS(1285), + [anon_sym_struct] = ACTIONS(1285), + [anon_sym_union] = ACTIONS(1285), + [anon_sym_if] = ACTIONS(1285), + [anon_sym_else] = ACTIONS(1285), + [anon_sym_switch] = ACTIONS(1285), + [anon_sym_case] = ACTIONS(1285), + [anon_sym_default] = ACTIONS(1285), + [anon_sym_while] = ACTIONS(1285), + [anon_sym_do] = ACTIONS(1285), + [anon_sym_for] = ACTIONS(1285), + [anon_sym_return] = ACTIONS(1285), + [anon_sym_break] = ACTIONS(1285), + [anon_sym_continue] = ACTIONS(1285), + [anon_sym_goto] = ACTIONS(1285), + [anon_sym___try] = ACTIONS(1285), + [anon_sym___leave] = ACTIONS(1285), + [anon_sym_DASH_DASH] = ACTIONS(1287), + [anon_sym_PLUS_PLUS] = ACTIONS(1287), + [anon_sym_sizeof] = ACTIONS(1285), + [anon_sym___alignof__] = ACTIONS(1285), + [anon_sym___alignof] = ACTIONS(1285), + [anon_sym__alignof] = ACTIONS(1285), + [anon_sym_alignof] = ACTIONS(1285), + [anon_sym__Alignof] = ACTIONS(1285), + [anon_sym_offsetof] = ACTIONS(1285), + [anon_sym__Generic] = ACTIONS(1285), + [anon_sym_asm] = ACTIONS(1285), + [anon_sym___asm__] = ACTIONS(1285), + [sym_number_literal] = ACTIONS(1287), + [anon_sym_L_SQUOTE] = ACTIONS(1287), + [anon_sym_u_SQUOTE] = ACTIONS(1287), + [anon_sym_U_SQUOTE] = ACTIONS(1287), + [anon_sym_u8_SQUOTE] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1287), + [anon_sym_L_DQUOTE] = ACTIONS(1287), + [anon_sym_u_DQUOTE] = ACTIONS(1287), + [anon_sym_U_DQUOTE] = ACTIONS(1287), + [anon_sym_u8_DQUOTE] = ACTIONS(1287), + [anon_sym_DQUOTE] = ACTIONS(1287), + [sym_true] = ACTIONS(1285), + [sym_false] = ACTIONS(1285), + [anon_sym_NULL] = ACTIONS(1285), + [anon_sym_nullptr] = ACTIONS(1285), [sym_comment] = ACTIONS(3), }, - [195] = { - [sym_identifier] = ACTIONS(1257), - [aux_sym_preproc_include_token1] = ACTIONS(1257), - [aux_sym_preproc_def_token1] = ACTIONS(1257), - [aux_sym_preproc_if_token1] = ACTIONS(1257), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1257), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1257), - [sym_preproc_directive] = ACTIONS(1257), - [anon_sym_LPAREN2] = ACTIONS(1259), - [anon_sym_BANG] = ACTIONS(1259), - [anon_sym_TILDE] = ACTIONS(1259), - [anon_sym_DASH] = ACTIONS(1257), - [anon_sym_PLUS] = ACTIONS(1257), - [anon_sym_STAR] = ACTIONS(1259), - [anon_sym_AMP] = ACTIONS(1259), - [anon_sym_SEMI] = ACTIONS(1259), - [anon_sym___extension__] = ACTIONS(1257), - [anon_sym_typedef] = ACTIONS(1257), - [anon_sym_extern] = ACTIONS(1257), - [anon_sym___attribute__] = ACTIONS(1257), - [anon_sym___scanf] = ACTIONS(1257), - [anon_sym___printf] = ACTIONS(1257), - [anon_sym___read_mostly] = ACTIONS(1257), - [anon_sym___must_hold] = ACTIONS(1257), - [anon_sym___ro_after_init] = ACTIONS(1257), - [anon_sym___init] = ACTIONS(1257), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1259), - [anon_sym___declspec] = ACTIONS(1257), - [anon_sym___cdecl] = ACTIONS(1257), - [anon_sym___clrcall] = ACTIONS(1257), - [anon_sym___stdcall] = ACTIONS(1257), - [anon_sym___fastcall] = ACTIONS(1257), - [anon_sym___thiscall] = ACTIONS(1257), - [anon_sym___vectorcall] = ACTIONS(1257), - [anon_sym_LBRACE] = ACTIONS(1259), - [anon_sym_RBRACE] = ACTIONS(1259), - [anon_sym_signed] = ACTIONS(1257), - [anon_sym_unsigned] = ACTIONS(1257), - [anon_sym_long] = ACTIONS(1257), - [anon_sym_short] = ACTIONS(1257), - [anon_sym_static] = ACTIONS(1257), - [anon_sym_auto] = ACTIONS(1257), - [anon_sym_register] = ACTIONS(1257), - [anon_sym_inline] = ACTIONS(1257), - [anon_sym___inline] = ACTIONS(1257), - [anon_sym___inline__] = ACTIONS(1257), - [anon_sym___forceinline] = ACTIONS(1257), - [anon_sym_thread_local] = ACTIONS(1257), - [anon_sym___thread] = ACTIONS(1257), - [anon_sym_const] = ACTIONS(1257), - [anon_sym_constexpr] = ACTIONS(1257), - [anon_sym_volatile] = ACTIONS(1257), - [anon_sym_restrict] = ACTIONS(1257), - [anon_sym___restrict__] = ACTIONS(1257), - [anon_sym__Atomic] = ACTIONS(1257), - [anon_sym__Noreturn] = ACTIONS(1257), - [anon_sym_noreturn] = ACTIONS(1257), - [anon_sym_alignas] = ACTIONS(1257), - [anon_sym__Alignas] = ACTIONS(1257), - [sym_primitive_type] = ACTIONS(1257), - [anon_sym_enum] = ACTIONS(1257), - [anon_sym_struct] = ACTIONS(1257), - [anon_sym_union] = ACTIONS(1257), - [anon_sym_if] = ACTIONS(1257), - [anon_sym_else] = ACTIONS(1257), - [anon_sym_switch] = ACTIONS(1257), - [anon_sym_case] = ACTIONS(1257), - [anon_sym_default] = ACTIONS(1257), - [anon_sym_while] = ACTIONS(1257), - [anon_sym_do] = ACTIONS(1257), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_return] = ACTIONS(1257), - [anon_sym_break] = ACTIONS(1257), - [anon_sym_continue] = ACTIONS(1257), - [anon_sym_goto] = ACTIONS(1257), - [anon_sym___try] = ACTIONS(1257), - [anon_sym___leave] = ACTIONS(1257), - [anon_sym_DASH_DASH] = ACTIONS(1259), - [anon_sym_PLUS_PLUS] = ACTIONS(1259), - [anon_sym_sizeof] = ACTIONS(1257), - [anon_sym___alignof__] = ACTIONS(1257), - [anon_sym___alignof] = ACTIONS(1257), - [anon_sym__alignof] = ACTIONS(1257), - [anon_sym_alignof] = ACTIONS(1257), - [anon_sym__Alignof] = ACTIONS(1257), - [anon_sym_offsetof] = ACTIONS(1257), - [anon_sym__Generic] = ACTIONS(1257), - [anon_sym_asm] = ACTIONS(1257), - [anon_sym___asm__] = ACTIONS(1257), - [sym_number_literal] = ACTIONS(1259), - [anon_sym_L_SQUOTE] = ACTIONS(1259), - [anon_sym_u_SQUOTE] = ACTIONS(1259), - [anon_sym_U_SQUOTE] = ACTIONS(1259), - [anon_sym_u8_SQUOTE] = ACTIONS(1259), - [anon_sym_SQUOTE] = ACTIONS(1259), - [anon_sym_L_DQUOTE] = ACTIONS(1259), - [anon_sym_u_DQUOTE] = ACTIONS(1259), - [anon_sym_U_DQUOTE] = ACTIONS(1259), - [anon_sym_u8_DQUOTE] = ACTIONS(1259), - [anon_sym_DQUOTE] = ACTIONS(1259), - [sym_true] = ACTIONS(1257), - [sym_false] = ACTIONS(1257), - [anon_sym_NULL] = ACTIONS(1257), - [anon_sym_nullptr] = ACTIONS(1257), + [218] = { + [sym_identifier] = ACTIONS(1203), + [aux_sym_preproc_include_token1] = ACTIONS(1203), + [aux_sym_preproc_def_token1] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1203), + [aux_sym_preproc_if_token2] = ACTIONS(1203), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1203), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1203), + [sym_preproc_directive] = ACTIONS(1203), + [anon_sym_LPAREN2] = ACTIONS(1201), + [anon_sym_BANG] = ACTIONS(1201), + [anon_sym_TILDE] = ACTIONS(1201), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_STAR] = ACTIONS(1201), + [anon_sym_AMP] = ACTIONS(1201), + [anon_sym_SEMI] = ACTIONS(1201), + [anon_sym___extension__] = ACTIONS(1203), + [anon_sym_typedef] = ACTIONS(1203), + [anon_sym_extern] = ACTIONS(1203), + [anon_sym___attribute__] = ACTIONS(1203), + [anon_sym___scanf] = ACTIONS(1203), + [anon_sym___printf] = ACTIONS(1203), + [anon_sym___read_mostly] = ACTIONS(1203), + [anon_sym___must_hold] = ACTIONS(1203), + [anon_sym___ro_after_init] = ACTIONS(1203), + [anon_sym___noreturn] = ACTIONS(1203), + [anon_sym___cold] = ACTIONS(1203), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1201), + [anon_sym___declspec] = ACTIONS(1203), + [anon_sym___init] = ACTIONS(1203), + [anon_sym___exit] = ACTIONS(1203), + [anon_sym___cdecl] = ACTIONS(1203), + [anon_sym___clrcall] = ACTIONS(1203), + [anon_sym___stdcall] = ACTIONS(1203), + [anon_sym___fastcall] = ACTIONS(1203), + [anon_sym___thiscall] = ACTIONS(1203), + [anon_sym___vectorcall] = ACTIONS(1203), + [anon_sym_LBRACE] = ACTIONS(1201), + [anon_sym_signed] = ACTIONS(1203), + [anon_sym_unsigned] = ACTIONS(1203), + [anon_sym_long] = ACTIONS(1203), + [anon_sym_short] = ACTIONS(1203), + [anon_sym_static] = ACTIONS(1203), + [anon_sym_auto] = ACTIONS(1203), + [anon_sym_register] = ACTIONS(1203), + [anon_sym_inline] = ACTIONS(1203), + [anon_sym___inline] = ACTIONS(1203), + [anon_sym___inline__] = ACTIONS(1203), + [anon_sym___forceinline] = ACTIONS(1203), + [anon_sym_thread_local] = ACTIONS(1203), + [anon_sym___thread] = ACTIONS(1203), + [anon_sym_const] = ACTIONS(1203), + [anon_sym_constexpr] = ACTIONS(1203), + [anon_sym_volatile] = ACTIONS(1203), + [anon_sym_restrict] = ACTIONS(1203), + [anon_sym___restrict__] = ACTIONS(1203), + [anon_sym__Atomic] = ACTIONS(1203), + [anon_sym__Noreturn] = ACTIONS(1203), + [anon_sym_noreturn] = ACTIONS(1203), + [anon_sym_alignas] = ACTIONS(1203), + [anon_sym__Alignas] = ACTIONS(1203), + [sym_primitive_type] = ACTIONS(1203), + [anon_sym_enum] = ACTIONS(1203), + [anon_sym_struct] = ACTIONS(1203), + [anon_sym_union] = ACTIONS(1203), + [anon_sym_if] = ACTIONS(1203), + [anon_sym_else] = ACTIONS(1203), + [anon_sym_switch] = ACTIONS(1203), + [anon_sym_case] = ACTIONS(1203), + [anon_sym_default] = ACTIONS(1203), + [anon_sym_while] = ACTIONS(1203), + [anon_sym_do] = ACTIONS(1203), + [anon_sym_for] = ACTIONS(1203), + [anon_sym_return] = ACTIONS(1203), + [anon_sym_break] = ACTIONS(1203), + [anon_sym_continue] = ACTIONS(1203), + [anon_sym_goto] = ACTIONS(1203), + [anon_sym___try] = ACTIONS(1203), + [anon_sym___leave] = ACTIONS(1203), + [anon_sym_DASH_DASH] = ACTIONS(1201), + [anon_sym_PLUS_PLUS] = ACTIONS(1201), + [anon_sym_sizeof] = ACTIONS(1203), + [anon_sym___alignof__] = ACTIONS(1203), + [anon_sym___alignof] = ACTIONS(1203), + [anon_sym__alignof] = ACTIONS(1203), + [anon_sym_alignof] = ACTIONS(1203), + [anon_sym__Alignof] = ACTIONS(1203), + [anon_sym_offsetof] = ACTIONS(1203), + [anon_sym__Generic] = ACTIONS(1203), + [anon_sym_asm] = ACTIONS(1203), + [anon_sym___asm__] = ACTIONS(1203), + [sym_number_literal] = ACTIONS(1201), + [anon_sym_L_SQUOTE] = ACTIONS(1201), + [anon_sym_u_SQUOTE] = ACTIONS(1201), + [anon_sym_U_SQUOTE] = ACTIONS(1201), + [anon_sym_u8_SQUOTE] = ACTIONS(1201), + [anon_sym_SQUOTE] = ACTIONS(1201), + [anon_sym_L_DQUOTE] = ACTIONS(1201), + [anon_sym_u_DQUOTE] = ACTIONS(1201), + [anon_sym_U_DQUOTE] = ACTIONS(1201), + [anon_sym_u8_DQUOTE] = ACTIONS(1201), + [anon_sym_DQUOTE] = ACTIONS(1201), + [sym_true] = ACTIONS(1203), + [sym_false] = ACTIONS(1203), + [anon_sym_NULL] = ACTIONS(1203), + [anon_sym_nullptr] = ACTIONS(1203), + [sym_comment] = ACTIONS(3), + }, + [219] = { + [ts_builtin_sym_end] = ACTIONS(1195), + [sym_identifier] = ACTIONS(1193), + [aux_sym_preproc_include_token1] = ACTIONS(1193), + [aux_sym_preproc_def_token1] = ACTIONS(1193), + [aux_sym_preproc_if_token1] = ACTIONS(1193), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1193), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1193), + [sym_preproc_directive] = ACTIONS(1193), + [anon_sym_LPAREN2] = ACTIONS(1195), + [anon_sym_BANG] = ACTIONS(1195), + [anon_sym_TILDE] = ACTIONS(1195), + [anon_sym_DASH] = ACTIONS(1193), + [anon_sym_PLUS] = ACTIONS(1193), + [anon_sym_STAR] = ACTIONS(1195), + [anon_sym_AMP] = ACTIONS(1195), + [anon_sym_SEMI] = ACTIONS(1195), + [anon_sym___extension__] = ACTIONS(1193), + [anon_sym_typedef] = ACTIONS(1193), + [anon_sym_extern] = ACTIONS(1193), + [anon_sym___attribute__] = ACTIONS(1193), + [anon_sym___scanf] = ACTIONS(1193), + [anon_sym___printf] = ACTIONS(1193), + [anon_sym___read_mostly] = ACTIONS(1193), + [anon_sym___must_hold] = ACTIONS(1193), + [anon_sym___ro_after_init] = ACTIONS(1193), + [anon_sym___noreturn] = ACTIONS(1193), + [anon_sym___cold] = ACTIONS(1193), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1195), + [anon_sym___declspec] = ACTIONS(1193), + [anon_sym___init] = ACTIONS(1193), + [anon_sym___exit] = ACTIONS(1193), + [anon_sym___cdecl] = ACTIONS(1193), + [anon_sym___clrcall] = ACTIONS(1193), + [anon_sym___stdcall] = ACTIONS(1193), + [anon_sym___fastcall] = ACTIONS(1193), + [anon_sym___thiscall] = ACTIONS(1193), + [anon_sym___vectorcall] = ACTIONS(1193), + [anon_sym_LBRACE] = ACTIONS(1195), + [anon_sym_signed] = ACTIONS(1193), + [anon_sym_unsigned] = ACTIONS(1193), + [anon_sym_long] = ACTIONS(1193), + [anon_sym_short] = ACTIONS(1193), + [anon_sym_static] = ACTIONS(1193), + [anon_sym_auto] = ACTIONS(1193), + [anon_sym_register] = ACTIONS(1193), + [anon_sym_inline] = ACTIONS(1193), + [anon_sym___inline] = ACTIONS(1193), + [anon_sym___inline__] = ACTIONS(1193), + [anon_sym___forceinline] = ACTIONS(1193), + [anon_sym_thread_local] = ACTIONS(1193), + [anon_sym___thread] = ACTIONS(1193), + [anon_sym_const] = ACTIONS(1193), + [anon_sym_constexpr] = ACTIONS(1193), + [anon_sym_volatile] = ACTIONS(1193), + [anon_sym_restrict] = ACTIONS(1193), + [anon_sym___restrict__] = ACTIONS(1193), + [anon_sym__Atomic] = ACTIONS(1193), + [anon_sym__Noreturn] = ACTIONS(1193), + [anon_sym_noreturn] = ACTIONS(1193), + [anon_sym_alignas] = ACTIONS(1193), + [anon_sym__Alignas] = ACTIONS(1193), + [sym_primitive_type] = ACTIONS(1193), + [anon_sym_enum] = ACTIONS(1193), + [anon_sym_struct] = ACTIONS(1193), + [anon_sym_union] = ACTIONS(1193), + [anon_sym_if] = ACTIONS(1193), + [anon_sym_else] = ACTIONS(1193), + [anon_sym_switch] = ACTIONS(1193), + [anon_sym_case] = ACTIONS(1193), + [anon_sym_default] = ACTIONS(1193), + [anon_sym_while] = ACTIONS(1193), + [anon_sym_do] = ACTIONS(1193), + [anon_sym_for] = ACTIONS(1193), + [anon_sym_return] = ACTIONS(1193), + [anon_sym_break] = ACTIONS(1193), + [anon_sym_continue] = ACTIONS(1193), + [anon_sym_goto] = ACTIONS(1193), + [anon_sym___try] = ACTIONS(1193), + [anon_sym___leave] = ACTIONS(1193), + [anon_sym_DASH_DASH] = ACTIONS(1195), + [anon_sym_PLUS_PLUS] = ACTIONS(1195), + [anon_sym_sizeof] = ACTIONS(1193), + [anon_sym___alignof__] = ACTIONS(1193), + [anon_sym___alignof] = ACTIONS(1193), + [anon_sym__alignof] = ACTIONS(1193), + [anon_sym_alignof] = ACTIONS(1193), + [anon_sym__Alignof] = ACTIONS(1193), + [anon_sym_offsetof] = ACTIONS(1193), + [anon_sym__Generic] = ACTIONS(1193), + [anon_sym_asm] = ACTIONS(1193), + [anon_sym___asm__] = ACTIONS(1193), + [sym_number_literal] = ACTIONS(1195), + [anon_sym_L_SQUOTE] = ACTIONS(1195), + [anon_sym_u_SQUOTE] = ACTIONS(1195), + [anon_sym_U_SQUOTE] = ACTIONS(1195), + [anon_sym_u8_SQUOTE] = ACTIONS(1195), + [anon_sym_SQUOTE] = ACTIONS(1195), + [anon_sym_L_DQUOTE] = ACTIONS(1195), + [anon_sym_u_DQUOTE] = ACTIONS(1195), + [anon_sym_U_DQUOTE] = ACTIONS(1195), + [anon_sym_u8_DQUOTE] = ACTIONS(1195), + [anon_sym_DQUOTE] = ACTIONS(1195), + [sym_true] = ACTIONS(1193), + [sym_false] = ACTIONS(1193), + [anon_sym_NULL] = ACTIONS(1193), + [anon_sym_nullptr] = ACTIONS(1193), [sym_comment] = ACTIONS(3), }, - [196] = { - [ts_builtin_sym_end] = ACTIONS(1263), + [220] = { + [sym_identifier] = ACTIONS(1165), + [aux_sym_preproc_include_token1] = ACTIONS(1165), + [aux_sym_preproc_def_token1] = ACTIONS(1165), + [aux_sym_preproc_if_token1] = ACTIONS(1165), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1165), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1165), + [sym_preproc_directive] = ACTIONS(1165), + [anon_sym_LPAREN2] = ACTIONS(1167), + [anon_sym_BANG] = ACTIONS(1167), + [anon_sym_TILDE] = ACTIONS(1167), + [anon_sym_DASH] = ACTIONS(1165), + [anon_sym_PLUS] = ACTIONS(1165), + [anon_sym_STAR] = ACTIONS(1167), + [anon_sym_AMP] = ACTIONS(1167), + [anon_sym_SEMI] = ACTIONS(1167), + [anon_sym___extension__] = ACTIONS(1165), + [anon_sym_typedef] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1165), + [anon_sym___attribute__] = ACTIONS(1165), + [anon_sym___scanf] = ACTIONS(1165), + [anon_sym___printf] = ACTIONS(1165), + [anon_sym___read_mostly] = ACTIONS(1165), + [anon_sym___must_hold] = ACTIONS(1165), + [anon_sym___ro_after_init] = ACTIONS(1165), + [anon_sym___noreturn] = ACTIONS(1165), + [anon_sym___cold] = ACTIONS(1165), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1167), + [anon_sym___declspec] = ACTIONS(1165), + [anon_sym___init] = ACTIONS(1165), + [anon_sym___exit] = ACTIONS(1165), + [anon_sym___cdecl] = ACTIONS(1165), + [anon_sym___clrcall] = ACTIONS(1165), + [anon_sym___stdcall] = ACTIONS(1165), + [anon_sym___fastcall] = ACTIONS(1165), + [anon_sym___thiscall] = ACTIONS(1165), + [anon_sym___vectorcall] = ACTIONS(1165), + [anon_sym_LBRACE] = ACTIONS(1167), + [anon_sym_RBRACE] = ACTIONS(1167), + [anon_sym_signed] = ACTIONS(1165), + [anon_sym_unsigned] = ACTIONS(1165), + [anon_sym_long] = ACTIONS(1165), + [anon_sym_short] = ACTIONS(1165), + [anon_sym_static] = ACTIONS(1165), + [anon_sym_auto] = ACTIONS(1165), + [anon_sym_register] = ACTIONS(1165), + [anon_sym_inline] = ACTIONS(1165), + [anon_sym___inline] = ACTIONS(1165), + [anon_sym___inline__] = ACTIONS(1165), + [anon_sym___forceinline] = ACTIONS(1165), + [anon_sym_thread_local] = ACTIONS(1165), + [anon_sym___thread] = ACTIONS(1165), + [anon_sym_const] = ACTIONS(1165), + [anon_sym_constexpr] = ACTIONS(1165), + [anon_sym_volatile] = ACTIONS(1165), + [anon_sym_restrict] = ACTIONS(1165), + [anon_sym___restrict__] = ACTIONS(1165), + [anon_sym__Atomic] = ACTIONS(1165), + [anon_sym__Noreturn] = ACTIONS(1165), + [anon_sym_noreturn] = ACTIONS(1165), + [anon_sym_alignas] = ACTIONS(1165), + [anon_sym__Alignas] = ACTIONS(1165), + [sym_primitive_type] = ACTIONS(1165), + [anon_sym_enum] = ACTIONS(1165), + [anon_sym_struct] = ACTIONS(1165), + [anon_sym_union] = ACTIONS(1165), + [anon_sym_if] = ACTIONS(1165), + [anon_sym_else] = ACTIONS(1165), + [anon_sym_switch] = ACTIONS(1165), + [anon_sym_case] = ACTIONS(1165), + [anon_sym_default] = ACTIONS(1165), + [anon_sym_while] = ACTIONS(1165), + [anon_sym_do] = ACTIONS(1165), + [anon_sym_for] = ACTIONS(1165), + [anon_sym_return] = ACTIONS(1165), + [anon_sym_break] = ACTIONS(1165), + [anon_sym_continue] = ACTIONS(1165), + [anon_sym_goto] = ACTIONS(1165), + [anon_sym___try] = ACTIONS(1165), + [anon_sym___leave] = ACTIONS(1165), + [anon_sym_DASH_DASH] = ACTIONS(1167), + [anon_sym_PLUS_PLUS] = ACTIONS(1167), + [anon_sym_sizeof] = ACTIONS(1165), + [anon_sym___alignof__] = ACTIONS(1165), + [anon_sym___alignof] = ACTIONS(1165), + [anon_sym__alignof] = ACTIONS(1165), + [anon_sym_alignof] = ACTIONS(1165), + [anon_sym__Alignof] = ACTIONS(1165), + [anon_sym_offsetof] = ACTIONS(1165), + [anon_sym__Generic] = ACTIONS(1165), + [anon_sym_asm] = ACTIONS(1165), + [anon_sym___asm__] = ACTIONS(1165), + [sym_number_literal] = ACTIONS(1167), + [anon_sym_L_SQUOTE] = ACTIONS(1167), + [anon_sym_u_SQUOTE] = ACTIONS(1167), + [anon_sym_U_SQUOTE] = ACTIONS(1167), + [anon_sym_u8_SQUOTE] = ACTIONS(1167), + [anon_sym_SQUOTE] = ACTIONS(1167), + [anon_sym_L_DQUOTE] = ACTIONS(1167), + [anon_sym_u_DQUOTE] = ACTIONS(1167), + [anon_sym_U_DQUOTE] = ACTIONS(1167), + [anon_sym_u8_DQUOTE] = ACTIONS(1167), + [anon_sym_DQUOTE] = ACTIONS(1167), + [sym_true] = ACTIONS(1165), + [sym_false] = ACTIONS(1165), + [anon_sym_NULL] = ACTIONS(1165), + [anon_sym_nullptr] = ACTIONS(1165), + [sym_comment] = ACTIONS(3), + }, + [221] = { [sym_identifier] = ACTIONS(1261), [aux_sym_preproc_include_token1] = ACTIONS(1261), [aux_sym_preproc_def_token1] = ACTIONS(1261), [aux_sym_preproc_if_token1] = ACTIONS(1261), + [aux_sym_preproc_if_token2] = ACTIONS(1261), [aux_sym_preproc_ifdef_token1] = ACTIONS(1261), [aux_sym_preproc_ifdef_token2] = ACTIONS(1261), [sym_preproc_directive] = ACTIONS(1261), @@ -37589,9 +41616,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___read_mostly] = ACTIONS(1261), [anon_sym___must_hold] = ACTIONS(1261), [anon_sym___ro_after_init] = ACTIONS(1261), - [anon_sym___init] = ACTIONS(1261), + [anon_sym___noreturn] = ACTIONS(1261), + [anon_sym___cold] = ACTIONS(1261), [anon_sym_LBRACK_LBRACK] = ACTIONS(1263), [anon_sym___declspec] = ACTIONS(1261), + [anon_sym___init] = ACTIONS(1261), + [anon_sym___exit] = ACTIONS(1261), [anon_sym___cdecl] = ACTIONS(1261), [anon_sym___clrcall] = ACTIONS(1261), [anon_sym___stdcall] = ACTIONS(1261), @@ -37669,223 +41699,557 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1261), [sym_comment] = ACTIONS(3), }, - [197] = { - [sym_identifier] = ACTIONS(1177), - [aux_sym_preproc_include_token1] = ACTIONS(1177), - [aux_sym_preproc_def_token1] = ACTIONS(1177), - [aux_sym_preproc_if_token1] = ACTIONS(1177), - [aux_sym_preproc_if_token2] = ACTIONS(1177), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1177), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1177), - [sym_preproc_directive] = ACTIONS(1177), - [anon_sym_LPAREN2] = ACTIONS(1179), - [anon_sym_BANG] = ACTIONS(1179), - [anon_sym_TILDE] = ACTIONS(1179), - [anon_sym_DASH] = ACTIONS(1177), - [anon_sym_PLUS] = ACTIONS(1177), - [anon_sym_STAR] = ACTIONS(1179), - [anon_sym_AMP] = ACTIONS(1179), - [anon_sym_SEMI] = ACTIONS(1179), - [anon_sym___extension__] = ACTIONS(1177), - [anon_sym_typedef] = ACTIONS(1177), - [anon_sym_extern] = ACTIONS(1177), - [anon_sym___attribute__] = ACTIONS(1177), - [anon_sym___scanf] = ACTIONS(1177), - [anon_sym___printf] = ACTIONS(1177), - [anon_sym___read_mostly] = ACTIONS(1177), - [anon_sym___must_hold] = ACTIONS(1177), - [anon_sym___ro_after_init] = ACTIONS(1177), - [anon_sym___init] = ACTIONS(1177), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1179), - [anon_sym___declspec] = ACTIONS(1177), - [anon_sym___cdecl] = ACTIONS(1177), - [anon_sym___clrcall] = ACTIONS(1177), - [anon_sym___stdcall] = ACTIONS(1177), - [anon_sym___fastcall] = ACTIONS(1177), - [anon_sym___thiscall] = ACTIONS(1177), - [anon_sym___vectorcall] = ACTIONS(1177), - [anon_sym_LBRACE] = ACTIONS(1179), - [anon_sym_signed] = ACTIONS(1177), - [anon_sym_unsigned] = ACTIONS(1177), - [anon_sym_long] = ACTIONS(1177), - [anon_sym_short] = ACTIONS(1177), - [anon_sym_static] = ACTIONS(1177), - [anon_sym_auto] = ACTIONS(1177), - [anon_sym_register] = ACTIONS(1177), - [anon_sym_inline] = ACTIONS(1177), - [anon_sym___inline] = ACTIONS(1177), - [anon_sym___inline__] = ACTIONS(1177), - [anon_sym___forceinline] = ACTIONS(1177), - [anon_sym_thread_local] = ACTIONS(1177), - [anon_sym___thread] = ACTIONS(1177), - [anon_sym_const] = ACTIONS(1177), - [anon_sym_constexpr] = ACTIONS(1177), - [anon_sym_volatile] = ACTIONS(1177), - [anon_sym_restrict] = ACTIONS(1177), - [anon_sym___restrict__] = ACTIONS(1177), - [anon_sym__Atomic] = ACTIONS(1177), - [anon_sym__Noreturn] = ACTIONS(1177), - [anon_sym_noreturn] = ACTIONS(1177), - [anon_sym_alignas] = ACTIONS(1177), - [anon_sym__Alignas] = ACTIONS(1177), - [sym_primitive_type] = ACTIONS(1177), - [anon_sym_enum] = ACTIONS(1177), - [anon_sym_struct] = ACTIONS(1177), - [anon_sym_union] = ACTIONS(1177), - [anon_sym_if] = ACTIONS(1177), - [anon_sym_else] = ACTIONS(1177), - [anon_sym_switch] = ACTIONS(1177), - [anon_sym_case] = ACTIONS(1177), - [anon_sym_default] = ACTIONS(1177), - [anon_sym_while] = ACTIONS(1177), - [anon_sym_do] = ACTIONS(1177), - [anon_sym_for] = ACTIONS(1177), - [anon_sym_return] = ACTIONS(1177), - [anon_sym_break] = ACTIONS(1177), - [anon_sym_continue] = ACTIONS(1177), - [anon_sym_goto] = ACTIONS(1177), - [anon_sym___try] = ACTIONS(1177), - [anon_sym___leave] = ACTIONS(1177), - [anon_sym_DASH_DASH] = ACTIONS(1179), - [anon_sym_PLUS_PLUS] = ACTIONS(1179), - [anon_sym_sizeof] = ACTIONS(1177), - [anon_sym___alignof__] = ACTIONS(1177), - [anon_sym___alignof] = ACTIONS(1177), - [anon_sym__alignof] = ACTIONS(1177), - [anon_sym_alignof] = ACTIONS(1177), - [anon_sym__Alignof] = ACTIONS(1177), - [anon_sym_offsetof] = ACTIONS(1177), - [anon_sym__Generic] = ACTIONS(1177), - [anon_sym_asm] = ACTIONS(1177), - [anon_sym___asm__] = ACTIONS(1177), - [sym_number_literal] = ACTIONS(1179), - [anon_sym_L_SQUOTE] = ACTIONS(1179), - [anon_sym_u_SQUOTE] = ACTIONS(1179), - [anon_sym_U_SQUOTE] = ACTIONS(1179), - [anon_sym_u8_SQUOTE] = ACTIONS(1179), - [anon_sym_SQUOTE] = ACTIONS(1179), - [anon_sym_L_DQUOTE] = ACTIONS(1179), - [anon_sym_u_DQUOTE] = ACTIONS(1179), - [anon_sym_U_DQUOTE] = ACTIONS(1179), - [anon_sym_u8_DQUOTE] = ACTIONS(1179), - [anon_sym_DQUOTE] = ACTIONS(1179), - [sym_true] = ACTIONS(1177), - [sym_false] = ACTIONS(1177), - [anon_sym_NULL] = ACTIONS(1177), - [anon_sym_nullptr] = ACTIONS(1177), + [222] = { + [sym_identifier] = ACTIONS(1165), + [aux_sym_preproc_include_token1] = ACTIONS(1165), + [aux_sym_preproc_def_token1] = ACTIONS(1165), + [aux_sym_preproc_if_token1] = ACTIONS(1165), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1165), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1165), + [sym_preproc_directive] = ACTIONS(1165), + [anon_sym_LPAREN2] = ACTIONS(1167), + [anon_sym_BANG] = ACTIONS(1167), + [anon_sym_TILDE] = ACTIONS(1167), + [anon_sym_DASH] = ACTIONS(1165), + [anon_sym_PLUS] = ACTIONS(1165), + [anon_sym_STAR] = ACTIONS(1167), + [anon_sym_AMP] = ACTIONS(1167), + [anon_sym_SEMI] = ACTIONS(1167), + [anon_sym___extension__] = ACTIONS(1165), + [anon_sym_typedef] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1165), + [anon_sym___attribute__] = ACTIONS(1165), + [anon_sym___scanf] = ACTIONS(1165), + [anon_sym___printf] = ACTIONS(1165), + [anon_sym___read_mostly] = ACTIONS(1165), + [anon_sym___must_hold] = ACTIONS(1165), + [anon_sym___ro_after_init] = ACTIONS(1165), + [anon_sym___noreturn] = ACTIONS(1165), + [anon_sym___cold] = ACTIONS(1165), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1167), + [anon_sym___declspec] = ACTIONS(1165), + [anon_sym___init] = ACTIONS(1165), + [anon_sym___exit] = ACTIONS(1165), + [anon_sym___cdecl] = ACTIONS(1165), + [anon_sym___clrcall] = ACTIONS(1165), + [anon_sym___stdcall] = ACTIONS(1165), + [anon_sym___fastcall] = ACTIONS(1165), + [anon_sym___thiscall] = ACTIONS(1165), + [anon_sym___vectorcall] = ACTIONS(1165), + [anon_sym_LBRACE] = ACTIONS(1167), + [anon_sym_RBRACE] = ACTIONS(1167), + [anon_sym_signed] = ACTIONS(1165), + [anon_sym_unsigned] = ACTIONS(1165), + [anon_sym_long] = ACTIONS(1165), + [anon_sym_short] = ACTIONS(1165), + [anon_sym_static] = ACTIONS(1165), + [anon_sym_auto] = ACTIONS(1165), + [anon_sym_register] = ACTIONS(1165), + [anon_sym_inline] = ACTIONS(1165), + [anon_sym___inline] = ACTIONS(1165), + [anon_sym___inline__] = ACTIONS(1165), + [anon_sym___forceinline] = ACTIONS(1165), + [anon_sym_thread_local] = ACTIONS(1165), + [anon_sym___thread] = ACTIONS(1165), + [anon_sym_const] = ACTIONS(1165), + [anon_sym_constexpr] = ACTIONS(1165), + [anon_sym_volatile] = ACTIONS(1165), + [anon_sym_restrict] = ACTIONS(1165), + [anon_sym___restrict__] = ACTIONS(1165), + [anon_sym__Atomic] = ACTIONS(1165), + [anon_sym__Noreturn] = ACTIONS(1165), + [anon_sym_noreturn] = ACTIONS(1165), + [anon_sym_alignas] = ACTIONS(1165), + [anon_sym__Alignas] = ACTIONS(1165), + [sym_primitive_type] = ACTIONS(1165), + [anon_sym_enum] = ACTIONS(1165), + [anon_sym_struct] = ACTIONS(1165), + [anon_sym_union] = ACTIONS(1165), + [anon_sym_if] = ACTIONS(1165), + [anon_sym_else] = ACTIONS(1165), + [anon_sym_switch] = ACTIONS(1165), + [anon_sym_case] = ACTIONS(1165), + [anon_sym_default] = ACTIONS(1165), + [anon_sym_while] = ACTIONS(1165), + [anon_sym_do] = ACTIONS(1165), + [anon_sym_for] = ACTIONS(1165), + [anon_sym_return] = ACTIONS(1165), + [anon_sym_break] = ACTIONS(1165), + [anon_sym_continue] = ACTIONS(1165), + [anon_sym_goto] = ACTIONS(1165), + [anon_sym___try] = ACTIONS(1165), + [anon_sym___leave] = ACTIONS(1165), + [anon_sym_DASH_DASH] = ACTIONS(1167), + [anon_sym_PLUS_PLUS] = ACTIONS(1167), + [anon_sym_sizeof] = ACTIONS(1165), + [anon_sym___alignof__] = ACTIONS(1165), + [anon_sym___alignof] = ACTIONS(1165), + [anon_sym__alignof] = ACTIONS(1165), + [anon_sym_alignof] = ACTIONS(1165), + [anon_sym__Alignof] = ACTIONS(1165), + [anon_sym_offsetof] = ACTIONS(1165), + [anon_sym__Generic] = ACTIONS(1165), + [anon_sym_asm] = ACTIONS(1165), + [anon_sym___asm__] = ACTIONS(1165), + [sym_number_literal] = ACTIONS(1167), + [anon_sym_L_SQUOTE] = ACTIONS(1167), + [anon_sym_u_SQUOTE] = ACTIONS(1167), + [anon_sym_U_SQUOTE] = ACTIONS(1167), + [anon_sym_u8_SQUOTE] = ACTIONS(1167), + [anon_sym_SQUOTE] = ACTIONS(1167), + [anon_sym_L_DQUOTE] = ACTIONS(1167), + [anon_sym_u_DQUOTE] = ACTIONS(1167), + [anon_sym_U_DQUOTE] = ACTIONS(1167), + [anon_sym_u8_DQUOTE] = ACTIONS(1167), + [anon_sym_DQUOTE] = ACTIONS(1167), + [sym_true] = ACTIONS(1165), + [sym_false] = ACTIONS(1165), + [anon_sym_NULL] = ACTIONS(1165), + [anon_sym_nullptr] = ACTIONS(1165), + [sym_comment] = ACTIONS(3), + }, + [223] = { + [ts_builtin_sym_end] = ACTIONS(1183), + [sym_identifier] = ACTIONS(1181), + [aux_sym_preproc_include_token1] = ACTIONS(1181), + [aux_sym_preproc_def_token1] = ACTIONS(1181), + [aux_sym_preproc_if_token1] = ACTIONS(1181), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1181), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1181), + [sym_preproc_directive] = ACTIONS(1181), + [anon_sym_LPAREN2] = ACTIONS(1183), + [anon_sym_BANG] = ACTIONS(1183), + [anon_sym_TILDE] = ACTIONS(1183), + [anon_sym_DASH] = ACTIONS(1181), + [anon_sym_PLUS] = ACTIONS(1181), + [anon_sym_STAR] = ACTIONS(1183), + [anon_sym_AMP] = ACTIONS(1183), + [anon_sym_SEMI] = ACTIONS(1183), + [anon_sym___extension__] = ACTIONS(1181), + [anon_sym_typedef] = ACTIONS(1181), + [anon_sym_extern] = ACTIONS(1181), + [anon_sym___attribute__] = ACTIONS(1181), + [anon_sym___scanf] = ACTIONS(1181), + [anon_sym___printf] = ACTIONS(1181), + [anon_sym___read_mostly] = ACTIONS(1181), + [anon_sym___must_hold] = ACTIONS(1181), + [anon_sym___ro_after_init] = ACTIONS(1181), + [anon_sym___noreturn] = ACTIONS(1181), + [anon_sym___cold] = ACTIONS(1181), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1183), + [anon_sym___declspec] = ACTIONS(1181), + [anon_sym___init] = ACTIONS(1181), + [anon_sym___exit] = ACTIONS(1181), + [anon_sym___cdecl] = ACTIONS(1181), + [anon_sym___clrcall] = ACTIONS(1181), + [anon_sym___stdcall] = ACTIONS(1181), + [anon_sym___fastcall] = ACTIONS(1181), + [anon_sym___thiscall] = ACTIONS(1181), + [anon_sym___vectorcall] = ACTIONS(1181), + [anon_sym_LBRACE] = ACTIONS(1183), + [anon_sym_signed] = ACTIONS(1181), + [anon_sym_unsigned] = ACTIONS(1181), + [anon_sym_long] = ACTIONS(1181), + [anon_sym_short] = ACTIONS(1181), + [anon_sym_static] = ACTIONS(1181), + [anon_sym_auto] = ACTIONS(1181), + [anon_sym_register] = ACTIONS(1181), + [anon_sym_inline] = ACTIONS(1181), + [anon_sym___inline] = ACTIONS(1181), + [anon_sym___inline__] = ACTIONS(1181), + [anon_sym___forceinline] = ACTIONS(1181), + [anon_sym_thread_local] = ACTIONS(1181), + [anon_sym___thread] = ACTIONS(1181), + [anon_sym_const] = ACTIONS(1181), + [anon_sym_constexpr] = ACTIONS(1181), + [anon_sym_volatile] = ACTIONS(1181), + [anon_sym_restrict] = ACTIONS(1181), + [anon_sym___restrict__] = ACTIONS(1181), + [anon_sym__Atomic] = ACTIONS(1181), + [anon_sym__Noreturn] = ACTIONS(1181), + [anon_sym_noreturn] = ACTIONS(1181), + [anon_sym_alignas] = ACTIONS(1181), + [anon_sym__Alignas] = ACTIONS(1181), + [sym_primitive_type] = ACTIONS(1181), + [anon_sym_enum] = ACTIONS(1181), + [anon_sym_struct] = ACTIONS(1181), + [anon_sym_union] = ACTIONS(1181), + [anon_sym_if] = ACTIONS(1181), + [anon_sym_else] = ACTIONS(1181), + [anon_sym_switch] = ACTIONS(1181), + [anon_sym_case] = ACTIONS(1181), + [anon_sym_default] = ACTIONS(1181), + [anon_sym_while] = ACTIONS(1181), + [anon_sym_do] = ACTIONS(1181), + [anon_sym_for] = ACTIONS(1181), + [anon_sym_return] = ACTIONS(1181), + [anon_sym_break] = ACTIONS(1181), + [anon_sym_continue] = ACTIONS(1181), + [anon_sym_goto] = ACTIONS(1181), + [anon_sym___try] = ACTIONS(1181), + [anon_sym___leave] = ACTIONS(1181), + [anon_sym_DASH_DASH] = ACTIONS(1183), + [anon_sym_PLUS_PLUS] = ACTIONS(1183), + [anon_sym_sizeof] = ACTIONS(1181), + [anon_sym___alignof__] = ACTIONS(1181), + [anon_sym___alignof] = ACTIONS(1181), + [anon_sym__alignof] = ACTIONS(1181), + [anon_sym_alignof] = ACTIONS(1181), + [anon_sym__Alignof] = ACTIONS(1181), + [anon_sym_offsetof] = ACTIONS(1181), + [anon_sym__Generic] = ACTIONS(1181), + [anon_sym_asm] = ACTIONS(1181), + [anon_sym___asm__] = ACTIONS(1181), + [sym_number_literal] = ACTIONS(1183), + [anon_sym_L_SQUOTE] = ACTIONS(1183), + [anon_sym_u_SQUOTE] = ACTIONS(1183), + [anon_sym_U_SQUOTE] = ACTIONS(1183), + [anon_sym_u8_SQUOTE] = ACTIONS(1183), + [anon_sym_SQUOTE] = ACTIONS(1183), + [anon_sym_L_DQUOTE] = ACTIONS(1183), + [anon_sym_u_DQUOTE] = ACTIONS(1183), + [anon_sym_U_DQUOTE] = ACTIONS(1183), + [anon_sym_u8_DQUOTE] = ACTIONS(1183), + [anon_sym_DQUOTE] = ACTIONS(1183), + [sym_true] = ACTIONS(1181), + [sym_false] = ACTIONS(1181), + [anon_sym_NULL] = ACTIONS(1181), + [anon_sym_nullptr] = ACTIONS(1181), + [sym_comment] = ACTIONS(3), + }, + [224] = { + [ts_builtin_sym_end] = ACTIONS(1235), + [sym_identifier] = ACTIONS(1233), + [aux_sym_preproc_include_token1] = ACTIONS(1233), + [aux_sym_preproc_def_token1] = ACTIONS(1233), + [aux_sym_preproc_if_token1] = ACTIONS(1233), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1233), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1233), + [sym_preproc_directive] = ACTIONS(1233), + [anon_sym_LPAREN2] = ACTIONS(1235), + [anon_sym_BANG] = ACTIONS(1235), + [anon_sym_TILDE] = ACTIONS(1235), + [anon_sym_DASH] = ACTIONS(1233), + [anon_sym_PLUS] = ACTIONS(1233), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_AMP] = ACTIONS(1235), + [anon_sym_SEMI] = ACTIONS(1235), + [anon_sym___extension__] = ACTIONS(1233), + [anon_sym_typedef] = ACTIONS(1233), + [anon_sym_extern] = ACTIONS(1233), + [anon_sym___attribute__] = ACTIONS(1233), + [anon_sym___scanf] = ACTIONS(1233), + [anon_sym___printf] = ACTIONS(1233), + [anon_sym___read_mostly] = ACTIONS(1233), + [anon_sym___must_hold] = ACTIONS(1233), + [anon_sym___ro_after_init] = ACTIONS(1233), + [anon_sym___noreturn] = ACTIONS(1233), + [anon_sym___cold] = ACTIONS(1233), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1235), + [anon_sym___declspec] = ACTIONS(1233), + [anon_sym___init] = ACTIONS(1233), + [anon_sym___exit] = ACTIONS(1233), + [anon_sym___cdecl] = ACTIONS(1233), + [anon_sym___clrcall] = ACTIONS(1233), + [anon_sym___stdcall] = ACTIONS(1233), + [anon_sym___fastcall] = ACTIONS(1233), + [anon_sym___thiscall] = ACTIONS(1233), + [anon_sym___vectorcall] = ACTIONS(1233), + [anon_sym_LBRACE] = ACTIONS(1235), + [anon_sym_signed] = ACTIONS(1233), + [anon_sym_unsigned] = ACTIONS(1233), + [anon_sym_long] = ACTIONS(1233), + [anon_sym_short] = ACTIONS(1233), + [anon_sym_static] = ACTIONS(1233), + [anon_sym_auto] = ACTIONS(1233), + [anon_sym_register] = ACTIONS(1233), + [anon_sym_inline] = ACTIONS(1233), + [anon_sym___inline] = ACTIONS(1233), + [anon_sym___inline__] = ACTIONS(1233), + [anon_sym___forceinline] = ACTIONS(1233), + [anon_sym_thread_local] = ACTIONS(1233), + [anon_sym___thread] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_constexpr] = ACTIONS(1233), + [anon_sym_volatile] = ACTIONS(1233), + [anon_sym_restrict] = ACTIONS(1233), + [anon_sym___restrict__] = ACTIONS(1233), + [anon_sym__Atomic] = ACTIONS(1233), + [anon_sym__Noreturn] = ACTIONS(1233), + [anon_sym_noreturn] = ACTIONS(1233), + [anon_sym_alignas] = ACTIONS(1233), + [anon_sym__Alignas] = ACTIONS(1233), + [sym_primitive_type] = ACTIONS(1233), + [anon_sym_enum] = ACTIONS(1233), + [anon_sym_struct] = ACTIONS(1233), + [anon_sym_union] = ACTIONS(1233), + [anon_sym_if] = ACTIONS(1233), + [anon_sym_else] = ACTIONS(1233), + [anon_sym_switch] = ACTIONS(1233), + [anon_sym_case] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(1233), + [anon_sym_while] = ACTIONS(1233), + [anon_sym_do] = ACTIONS(1233), + [anon_sym_for] = ACTIONS(1233), + [anon_sym_return] = ACTIONS(1233), + [anon_sym_break] = ACTIONS(1233), + [anon_sym_continue] = ACTIONS(1233), + [anon_sym_goto] = ACTIONS(1233), + [anon_sym___try] = ACTIONS(1233), + [anon_sym___leave] = ACTIONS(1233), + [anon_sym_DASH_DASH] = ACTIONS(1235), + [anon_sym_PLUS_PLUS] = ACTIONS(1235), + [anon_sym_sizeof] = ACTIONS(1233), + [anon_sym___alignof__] = ACTIONS(1233), + [anon_sym___alignof] = ACTIONS(1233), + [anon_sym__alignof] = ACTIONS(1233), + [anon_sym_alignof] = ACTIONS(1233), + [anon_sym__Alignof] = ACTIONS(1233), + [anon_sym_offsetof] = ACTIONS(1233), + [anon_sym__Generic] = ACTIONS(1233), + [anon_sym_asm] = ACTIONS(1233), + [anon_sym___asm__] = ACTIONS(1233), + [sym_number_literal] = ACTIONS(1235), + [anon_sym_L_SQUOTE] = ACTIONS(1235), + [anon_sym_u_SQUOTE] = ACTIONS(1235), + [anon_sym_U_SQUOTE] = ACTIONS(1235), + [anon_sym_u8_SQUOTE] = ACTIONS(1235), + [anon_sym_SQUOTE] = ACTIONS(1235), + [anon_sym_L_DQUOTE] = ACTIONS(1235), + [anon_sym_u_DQUOTE] = ACTIONS(1235), + [anon_sym_U_DQUOTE] = ACTIONS(1235), + [anon_sym_u8_DQUOTE] = ACTIONS(1235), + [anon_sym_DQUOTE] = ACTIONS(1235), + [sym_true] = ACTIONS(1233), + [sym_false] = ACTIONS(1233), + [anon_sym_NULL] = ACTIONS(1233), + [anon_sym_nullptr] = ACTIONS(1233), [sym_comment] = ACTIONS(3), }, - [198] = { - [sym_identifier] = ACTIONS(1237), - [aux_sym_preproc_include_token1] = ACTIONS(1237), - [aux_sym_preproc_def_token1] = ACTIONS(1237), - [aux_sym_preproc_if_token1] = ACTIONS(1237), - [aux_sym_preproc_if_token2] = ACTIONS(1237), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1237), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1237), - [sym_preproc_directive] = ACTIONS(1237), - [anon_sym_LPAREN2] = ACTIONS(1239), - [anon_sym_BANG] = ACTIONS(1239), - [anon_sym_TILDE] = ACTIONS(1239), - [anon_sym_DASH] = ACTIONS(1237), - [anon_sym_PLUS] = ACTIONS(1237), - [anon_sym_STAR] = ACTIONS(1239), - [anon_sym_AMP] = ACTIONS(1239), - [anon_sym_SEMI] = ACTIONS(1239), - [anon_sym___extension__] = ACTIONS(1237), - [anon_sym_typedef] = ACTIONS(1237), - [anon_sym_extern] = ACTIONS(1237), - [anon_sym___attribute__] = ACTIONS(1237), - [anon_sym___scanf] = ACTIONS(1237), - [anon_sym___printf] = ACTIONS(1237), - [anon_sym___read_mostly] = ACTIONS(1237), - [anon_sym___must_hold] = ACTIONS(1237), - [anon_sym___ro_after_init] = ACTIONS(1237), - [anon_sym___init] = ACTIONS(1237), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1239), - [anon_sym___declspec] = ACTIONS(1237), - [anon_sym___cdecl] = ACTIONS(1237), - [anon_sym___clrcall] = ACTIONS(1237), - [anon_sym___stdcall] = ACTIONS(1237), - [anon_sym___fastcall] = ACTIONS(1237), - [anon_sym___thiscall] = ACTIONS(1237), - [anon_sym___vectorcall] = ACTIONS(1237), - [anon_sym_LBRACE] = ACTIONS(1239), - [anon_sym_signed] = ACTIONS(1237), - [anon_sym_unsigned] = ACTIONS(1237), - [anon_sym_long] = ACTIONS(1237), - [anon_sym_short] = ACTIONS(1237), - [anon_sym_static] = ACTIONS(1237), - [anon_sym_auto] = ACTIONS(1237), - [anon_sym_register] = ACTIONS(1237), - [anon_sym_inline] = ACTIONS(1237), - [anon_sym___inline] = ACTIONS(1237), - [anon_sym___inline__] = ACTIONS(1237), - [anon_sym___forceinline] = ACTIONS(1237), - [anon_sym_thread_local] = ACTIONS(1237), - [anon_sym___thread] = ACTIONS(1237), - [anon_sym_const] = ACTIONS(1237), - [anon_sym_constexpr] = ACTIONS(1237), - [anon_sym_volatile] = ACTIONS(1237), - [anon_sym_restrict] = ACTIONS(1237), - [anon_sym___restrict__] = ACTIONS(1237), - [anon_sym__Atomic] = ACTIONS(1237), - [anon_sym__Noreturn] = ACTIONS(1237), - [anon_sym_noreturn] = ACTIONS(1237), - [anon_sym_alignas] = ACTIONS(1237), - [anon_sym__Alignas] = ACTIONS(1237), - [sym_primitive_type] = ACTIONS(1237), - [anon_sym_enum] = ACTIONS(1237), - [anon_sym_struct] = ACTIONS(1237), - [anon_sym_union] = ACTIONS(1237), - [anon_sym_if] = ACTIONS(1237), - [anon_sym_else] = ACTIONS(1237), - [anon_sym_switch] = ACTIONS(1237), - [anon_sym_case] = ACTIONS(1237), - [anon_sym_default] = ACTIONS(1237), - [anon_sym_while] = ACTIONS(1237), - [anon_sym_do] = ACTIONS(1237), - [anon_sym_for] = ACTIONS(1237), - [anon_sym_return] = ACTIONS(1237), - [anon_sym_break] = ACTIONS(1237), - [anon_sym_continue] = ACTIONS(1237), - [anon_sym_goto] = ACTIONS(1237), - [anon_sym___try] = ACTIONS(1237), - [anon_sym___leave] = ACTIONS(1237), - [anon_sym_DASH_DASH] = ACTIONS(1239), - [anon_sym_PLUS_PLUS] = ACTIONS(1239), - [anon_sym_sizeof] = ACTIONS(1237), - [anon_sym___alignof__] = ACTIONS(1237), - [anon_sym___alignof] = ACTIONS(1237), - [anon_sym__alignof] = ACTIONS(1237), - [anon_sym_alignof] = ACTIONS(1237), - [anon_sym__Alignof] = ACTIONS(1237), - [anon_sym_offsetof] = ACTIONS(1237), - [anon_sym__Generic] = ACTIONS(1237), - [anon_sym_asm] = ACTIONS(1237), - [anon_sym___asm__] = ACTIONS(1237), - [sym_number_literal] = ACTIONS(1239), - [anon_sym_L_SQUOTE] = ACTIONS(1239), - [anon_sym_u_SQUOTE] = ACTIONS(1239), - [anon_sym_U_SQUOTE] = ACTIONS(1239), - [anon_sym_u8_SQUOTE] = ACTIONS(1239), - [anon_sym_SQUOTE] = ACTIONS(1239), - [anon_sym_L_DQUOTE] = ACTIONS(1239), - [anon_sym_u_DQUOTE] = ACTIONS(1239), - [anon_sym_U_DQUOTE] = ACTIONS(1239), - [anon_sym_u8_DQUOTE] = ACTIONS(1239), - [anon_sym_DQUOTE] = ACTIONS(1239), - [sym_true] = ACTIONS(1237), - [sym_false] = ACTIONS(1237), - [anon_sym_NULL] = ACTIONS(1237), - [anon_sym_nullptr] = ACTIONS(1237), + [225] = { + [sym_identifier] = ACTIONS(1269), + [aux_sym_preproc_include_token1] = ACTIONS(1269), + [aux_sym_preproc_def_token1] = ACTIONS(1269), + [aux_sym_preproc_if_token1] = ACTIONS(1269), + [aux_sym_preproc_if_token2] = ACTIONS(1269), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1269), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1269), + [sym_preproc_directive] = ACTIONS(1269), + [anon_sym_LPAREN2] = ACTIONS(1271), + [anon_sym_BANG] = ACTIONS(1271), + [anon_sym_TILDE] = ACTIONS(1271), + [anon_sym_DASH] = ACTIONS(1269), + [anon_sym_PLUS] = ACTIONS(1269), + [anon_sym_STAR] = ACTIONS(1271), + [anon_sym_AMP] = ACTIONS(1271), + [anon_sym_SEMI] = ACTIONS(1271), + [anon_sym___extension__] = ACTIONS(1269), + [anon_sym_typedef] = ACTIONS(1269), + [anon_sym_extern] = ACTIONS(1269), + [anon_sym___attribute__] = ACTIONS(1269), + [anon_sym___scanf] = ACTIONS(1269), + [anon_sym___printf] = ACTIONS(1269), + [anon_sym___read_mostly] = ACTIONS(1269), + [anon_sym___must_hold] = ACTIONS(1269), + [anon_sym___ro_after_init] = ACTIONS(1269), + [anon_sym___noreturn] = ACTIONS(1269), + [anon_sym___cold] = ACTIONS(1269), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1271), + [anon_sym___declspec] = ACTIONS(1269), + [anon_sym___init] = ACTIONS(1269), + [anon_sym___exit] = ACTIONS(1269), + [anon_sym___cdecl] = ACTIONS(1269), + [anon_sym___clrcall] = ACTIONS(1269), + [anon_sym___stdcall] = ACTIONS(1269), + [anon_sym___fastcall] = ACTIONS(1269), + [anon_sym___thiscall] = ACTIONS(1269), + [anon_sym___vectorcall] = ACTIONS(1269), + [anon_sym_LBRACE] = ACTIONS(1271), + [anon_sym_signed] = ACTIONS(1269), + [anon_sym_unsigned] = ACTIONS(1269), + [anon_sym_long] = ACTIONS(1269), + [anon_sym_short] = ACTIONS(1269), + [anon_sym_static] = ACTIONS(1269), + [anon_sym_auto] = ACTIONS(1269), + [anon_sym_register] = ACTIONS(1269), + [anon_sym_inline] = ACTIONS(1269), + [anon_sym___inline] = ACTIONS(1269), + [anon_sym___inline__] = ACTIONS(1269), + [anon_sym___forceinline] = ACTIONS(1269), + [anon_sym_thread_local] = ACTIONS(1269), + [anon_sym___thread] = ACTIONS(1269), + [anon_sym_const] = ACTIONS(1269), + [anon_sym_constexpr] = ACTIONS(1269), + [anon_sym_volatile] = ACTIONS(1269), + [anon_sym_restrict] = ACTIONS(1269), + [anon_sym___restrict__] = ACTIONS(1269), + [anon_sym__Atomic] = ACTIONS(1269), + [anon_sym__Noreturn] = ACTIONS(1269), + [anon_sym_noreturn] = ACTIONS(1269), + [anon_sym_alignas] = ACTIONS(1269), + [anon_sym__Alignas] = ACTIONS(1269), + [sym_primitive_type] = ACTIONS(1269), + [anon_sym_enum] = ACTIONS(1269), + [anon_sym_struct] = ACTIONS(1269), + [anon_sym_union] = ACTIONS(1269), + [anon_sym_if] = ACTIONS(1269), + [anon_sym_else] = ACTIONS(1269), + [anon_sym_switch] = ACTIONS(1269), + [anon_sym_case] = ACTIONS(1269), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_while] = ACTIONS(1269), + [anon_sym_do] = ACTIONS(1269), + [anon_sym_for] = ACTIONS(1269), + [anon_sym_return] = ACTIONS(1269), + [anon_sym_break] = ACTIONS(1269), + [anon_sym_continue] = ACTIONS(1269), + [anon_sym_goto] = ACTIONS(1269), + [anon_sym___try] = ACTIONS(1269), + [anon_sym___leave] = ACTIONS(1269), + [anon_sym_DASH_DASH] = ACTIONS(1271), + [anon_sym_PLUS_PLUS] = ACTIONS(1271), + [anon_sym_sizeof] = ACTIONS(1269), + [anon_sym___alignof__] = ACTIONS(1269), + [anon_sym___alignof] = ACTIONS(1269), + [anon_sym__alignof] = ACTIONS(1269), + [anon_sym_alignof] = ACTIONS(1269), + [anon_sym__Alignof] = ACTIONS(1269), + [anon_sym_offsetof] = ACTIONS(1269), + [anon_sym__Generic] = ACTIONS(1269), + [anon_sym_asm] = ACTIONS(1269), + [anon_sym___asm__] = ACTIONS(1269), + [sym_number_literal] = ACTIONS(1271), + [anon_sym_L_SQUOTE] = ACTIONS(1271), + [anon_sym_u_SQUOTE] = ACTIONS(1271), + [anon_sym_U_SQUOTE] = ACTIONS(1271), + [anon_sym_u8_SQUOTE] = ACTIONS(1271), + [anon_sym_SQUOTE] = ACTIONS(1271), + [anon_sym_L_DQUOTE] = ACTIONS(1271), + [anon_sym_u_DQUOTE] = ACTIONS(1271), + [anon_sym_U_DQUOTE] = ACTIONS(1271), + [anon_sym_u8_DQUOTE] = ACTIONS(1271), + [anon_sym_DQUOTE] = ACTIONS(1271), + [sym_true] = ACTIONS(1269), + [sym_false] = ACTIONS(1269), + [anon_sym_NULL] = ACTIONS(1269), + [anon_sym_nullptr] = ACTIONS(1269), [sym_comment] = ACTIONS(3), }, - [199] = { + [226] = { + [sym_identifier] = ACTIONS(1277), + [aux_sym_preproc_include_token1] = ACTIONS(1277), + [aux_sym_preproc_def_token1] = ACTIONS(1277), + [aux_sym_preproc_if_token1] = ACTIONS(1277), + [aux_sym_preproc_if_token2] = ACTIONS(1277), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1277), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1277), + [sym_preproc_directive] = ACTIONS(1277), + [anon_sym_LPAREN2] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(1279), + [anon_sym_DASH] = ACTIONS(1277), + [anon_sym_PLUS] = ACTIONS(1277), + [anon_sym_STAR] = ACTIONS(1279), + [anon_sym_AMP] = ACTIONS(1279), + [anon_sym_SEMI] = ACTIONS(1279), + [anon_sym___extension__] = ACTIONS(1277), + [anon_sym_typedef] = ACTIONS(1277), + [anon_sym_extern] = ACTIONS(1277), + [anon_sym___attribute__] = ACTIONS(1277), + [anon_sym___scanf] = ACTIONS(1277), + [anon_sym___printf] = ACTIONS(1277), + [anon_sym___read_mostly] = ACTIONS(1277), + [anon_sym___must_hold] = ACTIONS(1277), + [anon_sym___ro_after_init] = ACTIONS(1277), + [anon_sym___noreturn] = ACTIONS(1277), + [anon_sym___cold] = ACTIONS(1277), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1279), + [anon_sym___declspec] = ACTIONS(1277), + [anon_sym___init] = ACTIONS(1277), + [anon_sym___exit] = ACTIONS(1277), + [anon_sym___cdecl] = ACTIONS(1277), + [anon_sym___clrcall] = ACTIONS(1277), + [anon_sym___stdcall] = ACTIONS(1277), + [anon_sym___fastcall] = ACTIONS(1277), + [anon_sym___thiscall] = ACTIONS(1277), + [anon_sym___vectorcall] = ACTIONS(1277), + [anon_sym_LBRACE] = ACTIONS(1279), + [anon_sym_signed] = ACTIONS(1277), + [anon_sym_unsigned] = ACTIONS(1277), + [anon_sym_long] = ACTIONS(1277), + [anon_sym_short] = ACTIONS(1277), + [anon_sym_static] = ACTIONS(1277), + [anon_sym_auto] = ACTIONS(1277), + [anon_sym_register] = ACTIONS(1277), + [anon_sym_inline] = ACTIONS(1277), + [anon_sym___inline] = ACTIONS(1277), + [anon_sym___inline__] = ACTIONS(1277), + [anon_sym___forceinline] = ACTIONS(1277), + [anon_sym_thread_local] = ACTIONS(1277), + [anon_sym___thread] = ACTIONS(1277), + [anon_sym_const] = ACTIONS(1277), + [anon_sym_constexpr] = ACTIONS(1277), + [anon_sym_volatile] = ACTIONS(1277), + [anon_sym_restrict] = ACTIONS(1277), + [anon_sym___restrict__] = ACTIONS(1277), + [anon_sym__Atomic] = ACTIONS(1277), + [anon_sym__Noreturn] = ACTIONS(1277), + [anon_sym_noreturn] = ACTIONS(1277), + [anon_sym_alignas] = ACTIONS(1277), + [anon_sym__Alignas] = ACTIONS(1277), + [sym_primitive_type] = ACTIONS(1277), + [anon_sym_enum] = ACTIONS(1277), + [anon_sym_struct] = ACTIONS(1277), + [anon_sym_union] = ACTIONS(1277), + [anon_sym_if] = ACTIONS(1277), + [anon_sym_else] = ACTIONS(1277), + [anon_sym_switch] = ACTIONS(1277), + [anon_sym_case] = ACTIONS(1277), + [anon_sym_default] = ACTIONS(1277), + [anon_sym_while] = ACTIONS(1277), + [anon_sym_do] = ACTIONS(1277), + [anon_sym_for] = ACTIONS(1277), + [anon_sym_return] = ACTIONS(1277), + [anon_sym_break] = ACTIONS(1277), + [anon_sym_continue] = ACTIONS(1277), + [anon_sym_goto] = ACTIONS(1277), + [anon_sym___try] = ACTIONS(1277), + [anon_sym___leave] = ACTIONS(1277), + [anon_sym_DASH_DASH] = ACTIONS(1279), + [anon_sym_PLUS_PLUS] = ACTIONS(1279), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym___alignof__] = ACTIONS(1277), + [anon_sym___alignof] = ACTIONS(1277), + [anon_sym__alignof] = ACTIONS(1277), + [anon_sym_alignof] = ACTIONS(1277), + [anon_sym__Alignof] = ACTIONS(1277), + [anon_sym_offsetof] = ACTIONS(1277), + [anon_sym__Generic] = ACTIONS(1277), + [anon_sym_asm] = ACTIONS(1277), + [anon_sym___asm__] = ACTIONS(1277), + [sym_number_literal] = ACTIONS(1279), + [anon_sym_L_SQUOTE] = ACTIONS(1279), + [anon_sym_u_SQUOTE] = ACTIONS(1279), + [anon_sym_U_SQUOTE] = ACTIONS(1279), + [anon_sym_u8_SQUOTE] = ACTIONS(1279), + [anon_sym_SQUOTE] = ACTIONS(1279), + [anon_sym_L_DQUOTE] = ACTIONS(1279), + [anon_sym_u_DQUOTE] = ACTIONS(1279), + [anon_sym_U_DQUOTE] = ACTIONS(1279), + [anon_sym_u8_DQUOTE] = ACTIONS(1279), + [anon_sym_DQUOTE] = ACTIONS(1279), + [sym_true] = ACTIONS(1277), + [sym_false] = ACTIONS(1277), + [anon_sym_NULL] = ACTIONS(1277), + [anon_sym_nullptr] = ACTIONS(1277), + [sym_comment] = ACTIONS(3), + }, + [227] = { [sym_identifier] = ACTIONS(1193), [aux_sym_preproc_include_token1] = ACTIONS(1193), [aux_sym_preproc_def_token1] = ACTIONS(1193), [aux_sym_preproc_if_token1] = ACTIONS(1193), + [aux_sym_preproc_if_token2] = ACTIONS(1193), [aux_sym_preproc_ifdef_token1] = ACTIONS(1193), [aux_sym_preproc_ifdef_token2] = ACTIONS(1193), [sym_preproc_directive] = ACTIONS(1193), @@ -37906,9 +42270,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___read_mostly] = ACTIONS(1193), [anon_sym___must_hold] = ACTIONS(1193), [anon_sym___ro_after_init] = ACTIONS(1193), - [anon_sym___init] = ACTIONS(1193), + [anon_sym___noreturn] = ACTIONS(1193), + [anon_sym___cold] = ACTIONS(1193), [anon_sym_LBRACK_LBRACK] = ACTIONS(1195), [anon_sym___declspec] = ACTIONS(1193), + [anon_sym___init] = ACTIONS(1193), + [anon_sym___exit] = ACTIONS(1193), [anon_sym___cdecl] = ACTIONS(1193), [anon_sym___clrcall] = ACTIONS(1193), [anon_sym___stdcall] = ACTIONS(1193), @@ -37916,7 +42283,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(1193), [anon_sym___vectorcall] = ACTIONS(1193), [anon_sym_LBRACE] = ACTIONS(1195), - [anon_sym_RBRACE] = ACTIONS(1195), [anon_sym_signed] = ACTIONS(1193), [anon_sym_unsigned] = ACTIONS(1193), [anon_sym_long] = ACTIONS(1193), @@ -37973,1823 +42339,2310 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_number_literal] = ACTIONS(1195), [anon_sym_L_SQUOTE] = ACTIONS(1195), [anon_sym_u_SQUOTE] = ACTIONS(1195), - [anon_sym_U_SQUOTE] = ACTIONS(1195), - [anon_sym_u8_SQUOTE] = ACTIONS(1195), - [anon_sym_SQUOTE] = ACTIONS(1195), - [anon_sym_L_DQUOTE] = ACTIONS(1195), - [anon_sym_u_DQUOTE] = ACTIONS(1195), - [anon_sym_U_DQUOTE] = ACTIONS(1195), - [anon_sym_u8_DQUOTE] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1195), - [sym_true] = ACTIONS(1193), - [sym_false] = ACTIONS(1193), - [anon_sym_NULL] = ACTIONS(1193), - [anon_sym_nullptr] = ACTIONS(1193), - [sym_comment] = ACTIONS(3), - }, - [200] = { - [sym_identifier] = ACTIONS(1261), - [aux_sym_preproc_include_token1] = ACTIONS(1261), - [aux_sym_preproc_def_token1] = ACTIONS(1261), - [aux_sym_preproc_if_token1] = ACTIONS(1261), - [aux_sym_preproc_if_token2] = ACTIONS(1261), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1261), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1261), - [sym_preproc_directive] = ACTIONS(1261), - [anon_sym_LPAREN2] = ACTIONS(1263), - [anon_sym_BANG] = ACTIONS(1263), - [anon_sym_TILDE] = ACTIONS(1263), - [anon_sym_DASH] = ACTIONS(1261), - [anon_sym_PLUS] = ACTIONS(1261), - [anon_sym_STAR] = ACTIONS(1263), - [anon_sym_AMP] = ACTIONS(1263), - [anon_sym_SEMI] = ACTIONS(1263), - [anon_sym___extension__] = ACTIONS(1261), - [anon_sym_typedef] = ACTIONS(1261), - [anon_sym_extern] = ACTIONS(1261), - [anon_sym___attribute__] = ACTIONS(1261), - [anon_sym___scanf] = ACTIONS(1261), - [anon_sym___printf] = ACTIONS(1261), - [anon_sym___read_mostly] = ACTIONS(1261), - [anon_sym___must_hold] = ACTIONS(1261), - [anon_sym___ro_after_init] = ACTIONS(1261), - [anon_sym___init] = ACTIONS(1261), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1263), - [anon_sym___declspec] = ACTIONS(1261), - [anon_sym___cdecl] = ACTIONS(1261), - [anon_sym___clrcall] = ACTIONS(1261), - [anon_sym___stdcall] = ACTIONS(1261), - [anon_sym___fastcall] = ACTIONS(1261), - [anon_sym___thiscall] = ACTIONS(1261), - [anon_sym___vectorcall] = ACTIONS(1261), - [anon_sym_LBRACE] = ACTIONS(1263), - [anon_sym_signed] = ACTIONS(1261), - [anon_sym_unsigned] = ACTIONS(1261), - [anon_sym_long] = ACTIONS(1261), - [anon_sym_short] = ACTIONS(1261), - [anon_sym_static] = ACTIONS(1261), - [anon_sym_auto] = ACTIONS(1261), - [anon_sym_register] = ACTIONS(1261), - [anon_sym_inline] = ACTIONS(1261), - [anon_sym___inline] = ACTIONS(1261), - [anon_sym___inline__] = ACTIONS(1261), - [anon_sym___forceinline] = ACTIONS(1261), - [anon_sym_thread_local] = ACTIONS(1261), - [anon_sym___thread] = ACTIONS(1261), - [anon_sym_const] = ACTIONS(1261), - [anon_sym_constexpr] = ACTIONS(1261), - [anon_sym_volatile] = ACTIONS(1261), - [anon_sym_restrict] = ACTIONS(1261), - [anon_sym___restrict__] = ACTIONS(1261), - [anon_sym__Atomic] = ACTIONS(1261), - [anon_sym__Noreturn] = ACTIONS(1261), - [anon_sym_noreturn] = ACTIONS(1261), - [anon_sym_alignas] = ACTIONS(1261), - [anon_sym__Alignas] = ACTIONS(1261), - [sym_primitive_type] = ACTIONS(1261), - [anon_sym_enum] = ACTIONS(1261), - [anon_sym_struct] = ACTIONS(1261), - [anon_sym_union] = ACTIONS(1261), - [anon_sym_if] = ACTIONS(1261), - [anon_sym_else] = ACTIONS(1261), - [anon_sym_switch] = ACTIONS(1261), - [anon_sym_case] = ACTIONS(1261), - [anon_sym_default] = ACTIONS(1261), - [anon_sym_while] = ACTIONS(1261), - [anon_sym_do] = ACTIONS(1261), - [anon_sym_for] = ACTIONS(1261), - [anon_sym_return] = ACTIONS(1261), - [anon_sym_break] = ACTIONS(1261), - [anon_sym_continue] = ACTIONS(1261), - [anon_sym_goto] = ACTIONS(1261), - [anon_sym___try] = ACTIONS(1261), - [anon_sym___leave] = ACTIONS(1261), - [anon_sym_DASH_DASH] = ACTIONS(1263), - [anon_sym_PLUS_PLUS] = ACTIONS(1263), - [anon_sym_sizeof] = ACTIONS(1261), - [anon_sym___alignof__] = ACTIONS(1261), - [anon_sym___alignof] = ACTIONS(1261), - [anon_sym__alignof] = ACTIONS(1261), - [anon_sym_alignof] = ACTIONS(1261), - [anon_sym__Alignof] = ACTIONS(1261), - [anon_sym_offsetof] = ACTIONS(1261), - [anon_sym__Generic] = ACTIONS(1261), - [anon_sym_asm] = ACTIONS(1261), - [anon_sym___asm__] = ACTIONS(1261), - [sym_number_literal] = ACTIONS(1263), - [anon_sym_L_SQUOTE] = ACTIONS(1263), - [anon_sym_u_SQUOTE] = ACTIONS(1263), - [anon_sym_U_SQUOTE] = ACTIONS(1263), - [anon_sym_u8_SQUOTE] = ACTIONS(1263), - [anon_sym_SQUOTE] = ACTIONS(1263), - [anon_sym_L_DQUOTE] = ACTIONS(1263), - [anon_sym_u_DQUOTE] = ACTIONS(1263), - [anon_sym_U_DQUOTE] = ACTIONS(1263), - [anon_sym_u8_DQUOTE] = ACTIONS(1263), - [anon_sym_DQUOTE] = ACTIONS(1263), - [sym_true] = ACTIONS(1261), - [sym_false] = ACTIONS(1261), - [anon_sym_NULL] = ACTIONS(1261), - [anon_sym_nullptr] = ACTIONS(1261), + [anon_sym_U_SQUOTE] = ACTIONS(1195), + [anon_sym_u8_SQUOTE] = ACTIONS(1195), + [anon_sym_SQUOTE] = ACTIONS(1195), + [anon_sym_L_DQUOTE] = ACTIONS(1195), + [anon_sym_u_DQUOTE] = ACTIONS(1195), + [anon_sym_U_DQUOTE] = ACTIONS(1195), + [anon_sym_u8_DQUOTE] = ACTIONS(1195), + [anon_sym_DQUOTE] = ACTIONS(1195), + [sym_true] = ACTIONS(1193), + [sym_false] = ACTIONS(1193), + [anon_sym_NULL] = ACTIONS(1193), + [anon_sym_nullptr] = ACTIONS(1193), [sym_comment] = ACTIONS(3), }, - [201] = { - [sym_identifier] = ACTIONS(1155), - [aux_sym_preproc_include_token1] = ACTIONS(1155), - [aux_sym_preproc_def_token1] = ACTIONS(1155), - [aux_sym_preproc_if_token1] = ACTIONS(1155), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1155), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1155), - [sym_preproc_directive] = ACTIONS(1155), - [anon_sym_LPAREN2] = ACTIONS(1153), - [anon_sym_BANG] = ACTIONS(1153), - [anon_sym_TILDE] = ACTIONS(1153), - [anon_sym_DASH] = ACTIONS(1155), - [anon_sym_PLUS] = ACTIONS(1155), - [anon_sym_STAR] = ACTIONS(1153), - [anon_sym_AMP] = ACTIONS(1153), - [anon_sym_SEMI] = ACTIONS(1153), - [anon_sym___extension__] = ACTIONS(1155), - [anon_sym_typedef] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1155), - [anon_sym___attribute__] = ACTIONS(1155), - [anon_sym___scanf] = ACTIONS(1155), - [anon_sym___printf] = ACTIONS(1155), - [anon_sym___read_mostly] = ACTIONS(1155), - [anon_sym___must_hold] = ACTIONS(1155), - [anon_sym___ro_after_init] = ACTIONS(1155), - [anon_sym___init] = ACTIONS(1155), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1153), - [anon_sym___declspec] = ACTIONS(1155), - [anon_sym___cdecl] = ACTIONS(1155), - [anon_sym___clrcall] = ACTIONS(1155), - [anon_sym___stdcall] = ACTIONS(1155), - [anon_sym___fastcall] = ACTIONS(1155), - [anon_sym___thiscall] = ACTIONS(1155), - [anon_sym___vectorcall] = ACTIONS(1155), - [anon_sym_LBRACE] = ACTIONS(1153), - [anon_sym_RBRACE] = ACTIONS(1153), - [anon_sym_signed] = ACTIONS(1155), - [anon_sym_unsigned] = ACTIONS(1155), - [anon_sym_long] = ACTIONS(1155), - [anon_sym_short] = ACTIONS(1155), - [anon_sym_static] = ACTIONS(1155), - [anon_sym_auto] = ACTIONS(1155), - [anon_sym_register] = ACTIONS(1155), - [anon_sym_inline] = ACTIONS(1155), - [anon_sym___inline] = ACTIONS(1155), - [anon_sym___inline__] = ACTIONS(1155), - [anon_sym___forceinline] = ACTIONS(1155), - [anon_sym_thread_local] = ACTIONS(1155), - [anon_sym___thread] = ACTIONS(1155), - [anon_sym_const] = ACTIONS(1155), - [anon_sym_constexpr] = ACTIONS(1155), - [anon_sym_volatile] = ACTIONS(1155), - [anon_sym_restrict] = ACTIONS(1155), - [anon_sym___restrict__] = ACTIONS(1155), - [anon_sym__Atomic] = ACTIONS(1155), - [anon_sym__Noreturn] = ACTIONS(1155), - [anon_sym_noreturn] = ACTIONS(1155), - [anon_sym_alignas] = ACTIONS(1155), - [anon_sym__Alignas] = ACTIONS(1155), - [sym_primitive_type] = ACTIONS(1155), - [anon_sym_enum] = ACTIONS(1155), - [anon_sym_struct] = ACTIONS(1155), - [anon_sym_union] = ACTIONS(1155), - [anon_sym_if] = ACTIONS(1155), - [anon_sym_else] = ACTIONS(1155), - [anon_sym_switch] = ACTIONS(1155), - [anon_sym_case] = ACTIONS(1155), - [anon_sym_default] = ACTIONS(1155), - [anon_sym_while] = ACTIONS(1155), - [anon_sym_do] = ACTIONS(1155), - [anon_sym_for] = ACTIONS(1155), - [anon_sym_return] = ACTIONS(1155), - [anon_sym_break] = ACTIONS(1155), - [anon_sym_continue] = ACTIONS(1155), - [anon_sym_goto] = ACTIONS(1155), - [anon_sym___try] = ACTIONS(1155), - [anon_sym___leave] = ACTIONS(1155), - [anon_sym_DASH_DASH] = ACTIONS(1153), - [anon_sym_PLUS_PLUS] = ACTIONS(1153), - [anon_sym_sizeof] = ACTIONS(1155), - [anon_sym___alignof__] = ACTIONS(1155), - [anon_sym___alignof] = ACTIONS(1155), - [anon_sym__alignof] = ACTIONS(1155), - [anon_sym_alignof] = ACTIONS(1155), - [anon_sym__Alignof] = ACTIONS(1155), - [anon_sym_offsetof] = ACTIONS(1155), - [anon_sym__Generic] = ACTIONS(1155), - [anon_sym_asm] = ACTIONS(1155), - [anon_sym___asm__] = ACTIONS(1155), - [sym_number_literal] = ACTIONS(1153), - [anon_sym_L_SQUOTE] = ACTIONS(1153), - [anon_sym_u_SQUOTE] = ACTIONS(1153), - [anon_sym_U_SQUOTE] = ACTIONS(1153), - [anon_sym_u8_SQUOTE] = ACTIONS(1153), - [anon_sym_SQUOTE] = ACTIONS(1153), - [anon_sym_L_DQUOTE] = ACTIONS(1153), - [anon_sym_u_DQUOTE] = ACTIONS(1153), - [anon_sym_U_DQUOTE] = ACTIONS(1153), - [anon_sym_u8_DQUOTE] = ACTIONS(1153), - [anon_sym_DQUOTE] = ACTIONS(1153), - [sym_true] = ACTIONS(1155), - [sym_false] = ACTIONS(1155), - [anon_sym_NULL] = ACTIONS(1155), - [anon_sym_nullptr] = ACTIONS(1155), + [228] = { + [sym_identifier] = ACTIONS(1237), + [aux_sym_preproc_include_token1] = ACTIONS(1237), + [aux_sym_preproc_def_token1] = ACTIONS(1237), + [aux_sym_preproc_if_token1] = ACTIONS(1237), + [aux_sym_preproc_if_token2] = ACTIONS(1237), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1237), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1237), + [sym_preproc_directive] = ACTIONS(1237), + [anon_sym_LPAREN2] = ACTIONS(1239), + [anon_sym_BANG] = ACTIONS(1239), + [anon_sym_TILDE] = ACTIONS(1239), + [anon_sym_DASH] = ACTIONS(1237), + [anon_sym_PLUS] = ACTIONS(1237), + [anon_sym_STAR] = ACTIONS(1239), + [anon_sym_AMP] = ACTIONS(1239), + [anon_sym_SEMI] = ACTIONS(1239), + [anon_sym___extension__] = ACTIONS(1237), + [anon_sym_typedef] = ACTIONS(1237), + [anon_sym_extern] = ACTIONS(1237), + [anon_sym___attribute__] = ACTIONS(1237), + [anon_sym___scanf] = ACTIONS(1237), + [anon_sym___printf] = ACTIONS(1237), + [anon_sym___read_mostly] = ACTIONS(1237), + [anon_sym___must_hold] = ACTIONS(1237), + [anon_sym___ro_after_init] = ACTIONS(1237), + [anon_sym___noreturn] = ACTIONS(1237), + [anon_sym___cold] = ACTIONS(1237), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1239), + [anon_sym___declspec] = ACTIONS(1237), + [anon_sym___init] = ACTIONS(1237), + [anon_sym___exit] = ACTIONS(1237), + [anon_sym___cdecl] = ACTIONS(1237), + [anon_sym___clrcall] = ACTIONS(1237), + [anon_sym___stdcall] = ACTIONS(1237), + [anon_sym___fastcall] = ACTIONS(1237), + [anon_sym___thiscall] = ACTIONS(1237), + [anon_sym___vectorcall] = ACTIONS(1237), + [anon_sym_LBRACE] = ACTIONS(1239), + [anon_sym_signed] = ACTIONS(1237), + [anon_sym_unsigned] = ACTIONS(1237), + [anon_sym_long] = ACTIONS(1237), + [anon_sym_short] = ACTIONS(1237), + [anon_sym_static] = ACTIONS(1237), + [anon_sym_auto] = ACTIONS(1237), + [anon_sym_register] = ACTIONS(1237), + [anon_sym_inline] = ACTIONS(1237), + [anon_sym___inline] = ACTIONS(1237), + [anon_sym___inline__] = ACTIONS(1237), + [anon_sym___forceinline] = ACTIONS(1237), + [anon_sym_thread_local] = ACTIONS(1237), + [anon_sym___thread] = ACTIONS(1237), + [anon_sym_const] = ACTIONS(1237), + [anon_sym_constexpr] = ACTIONS(1237), + [anon_sym_volatile] = ACTIONS(1237), + [anon_sym_restrict] = ACTIONS(1237), + [anon_sym___restrict__] = ACTIONS(1237), + [anon_sym__Atomic] = ACTIONS(1237), + [anon_sym__Noreturn] = ACTIONS(1237), + [anon_sym_noreturn] = ACTIONS(1237), + [anon_sym_alignas] = ACTIONS(1237), + [anon_sym__Alignas] = ACTIONS(1237), + [sym_primitive_type] = ACTIONS(1237), + [anon_sym_enum] = ACTIONS(1237), + [anon_sym_struct] = ACTIONS(1237), + [anon_sym_union] = ACTIONS(1237), + [anon_sym_if] = ACTIONS(1237), + [anon_sym_else] = ACTIONS(1237), + [anon_sym_switch] = ACTIONS(1237), + [anon_sym_case] = ACTIONS(1237), + [anon_sym_default] = ACTIONS(1237), + [anon_sym_while] = ACTIONS(1237), + [anon_sym_do] = ACTIONS(1237), + [anon_sym_for] = ACTIONS(1237), + [anon_sym_return] = ACTIONS(1237), + [anon_sym_break] = ACTIONS(1237), + [anon_sym_continue] = ACTIONS(1237), + [anon_sym_goto] = ACTIONS(1237), + [anon_sym___try] = ACTIONS(1237), + [anon_sym___leave] = ACTIONS(1237), + [anon_sym_DASH_DASH] = ACTIONS(1239), + [anon_sym_PLUS_PLUS] = ACTIONS(1239), + [anon_sym_sizeof] = ACTIONS(1237), + [anon_sym___alignof__] = ACTIONS(1237), + [anon_sym___alignof] = ACTIONS(1237), + [anon_sym__alignof] = ACTIONS(1237), + [anon_sym_alignof] = ACTIONS(1237), + [anon_sym__Alignof] = ACTIONS(1237), + [anon_sym_offsetof] = ACTIONS(1237), + [anon_sym__Generic] = ACTIONS(1237), + [anon_sym_asm] = ACTIONS(1237), + [anon_sym___asm__] = ACTIONS(1237), + [sym_number_literal] = ACTIONS(1239), + [anon_sym_L_SQUOTE] = ACTIONS(1239), + [anon_sym_u_SQUOTE] = ACTIONS(1239), + [anon_sym_U_SQUOTE] = ACTIONS(1239), + [anon_sym_u8_SQUOTE] = ACTIONS(1239), + [anon_sym_SQUOTE] = ACTIONS(1239), + [anon_sym_L_DQUOTE] = ACTIONS(1239), + [anon_sym_u_DQUOTE] = ACTIONS(1239), + [anon_sym_U_DQUOTE] = ACTIONS(1239), + [anon_sym_u8_DQUOTE] = ACTIONS(1239), + [anon_sym_DQUOTE] = ACTIONS(1239), + [sym_true] = ACTIONS(1237), + [sym_false] = ACTIONS(1237), + [anon_sym_NULL] = ACTIONS(1237), + [anon_sym_nullptr] = ACTIONS(1237), [sym_comment] = ACTIONS(3), }, - [202] = { - [ts_builtin_sym_end] = ACTIONS(1255), - [sym_identifier] = ACTIONS(1253), - [aux_sym_preproc_include_token1] = ACTIONS(1253), - [aux_sym_preproc_def_token1] = ACTIONS(1253), - [aux_sym_preproc_if_token1] = ACTIONS(1253), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1253), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1253), - [sym_preproc_directive] = ACTIONS(1253), - [anon_sym_LPAREN2] = ACTIONS(1255), - [anon_sym_BANG] = ACTIONS(1255), - [anon_sym_TILDE] = ACTIONS(1255), - [anon_sym_DASH] = ACTIONS(1253), - [anon_sym_PLUS] = ACTIONS(1253), - [anon_sym_STAR] = ACTIONS(1255), - [anon_sym_AMP] = ACTIONS(1255), - [anon_sym_SEMI] = ACTIONS(1255), - [anon_sym___extension__] = ACTIONS(1253), - [anon_sym_typedef] = ACTIONS(1253), - [anon_sym_extern] = ACTIONS(1253), - [anon_sym___attribute__] = ACTIONS(1253), - [anon_sym___scanf] = ACTIONS(1253), - [anon_sym___printf] = ACTIONS(1253), - [anon_sym___read_mostly] = ACTIONS(1253), - [anon_sym___must_hold] = ACTIONS(1253), - [anon_sym___ro_after_init] = ACTIONS(1253), - [anon_sym___init] = ACTIONS(1253), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1255), - [anon_sym___declspec] = ACTIONS(1253), - [anon_sym___cdecl] = ACTIONS(1253), - [anon_sym___clrcall] = ACTIONS(1253), - [anon_sym___stdcall] = ACTIONS(1253), - [anon_sym___fastcall] = ACTIONS(1253), - [anon_sym___thiscall] = ACTIONS(1253), - [anon_sym___vectorcall] = ACTIONS(1253), - [anon_sym_LBRACE] = ACTIONS(1255), - [anon_sym_signed] = ACTIONS(1253), - [anon_sym_unsigned] = ACTIONS(1253), - [anon_sym_long] = ACTIONS(1253), - [anon_sym_short] = ACTIONS(1253), - [anon_sym_static] = ACTIONS(1253), - [anon_sym_auto] = ACTIONS(1253), - [anon_sym_register] = ACTIONS(1253), - [anon_sym_inline] = ACTIONS(1253), - [anon_sym___inline] = ACTIONS(1253), - [anon_sym___inline__] = ACTIONS(1253), - [anon_sym___forceinline] = ACTIONS(1253), - [anon_sym_thread_local] = ACTIONS(1253), - [anon_sym___thread] = ACTIONS(1253), - [anon_sym_const] = ACTIONS(1253), - [anon_sym_constexpr] = ACTIONS(1253), - [anon_sym_volatile] = ACTIONS(1253), - [anon_sym_restrict] = ACTIONS(1253), - [anon_sym___restrict__] = ACTIONS(1253), - [anon_sym__Atomic] = ACTIONS(1253), - [anon_sym__Noreturn] = ACTIONS(1253), - [anon_sym_noreturn] = ACTIONS(1253), - [anon_sym_alignas] = ACTIONS(1253), - [anon_sym__Alignas] = ACTIONS(1253), - [sym_primitive_type] = ACTIONS(1253), - [anon_sym_enum] = ACTIONS(1253), - [anon_sym_struct] = ACTIONS(1253), - [anon_sym_union] = ACTIONS(1253), - [anon_sym_if] = ACTIONS(1253), - [anon_sym_else] = ACTIONS(1253), - [anon_sym_switch] = ACTIONS(1253), - [anon_sym_case] = ACTIONS(1253), - [anon_sym_default] = ACTIONS(1253), - [anon_sym_while] = ACTIONS(1253), - [anon_sym_do] = ACTIONS(1253), - [anon_sym_for] = ACTIONS(1253), - [anon_sym_return] = ACTIONS(1253), - [anon_sym_break] = ACTIONS(1253), - [anon_sym_continue] = ACTIONS(1253), - [anon_sym_goto] = ACTIONS(1253), - [anon_sym___try] = ACTIONS(1253), - [anon_sym___leave] = ACTIONS(1253), - [anon_sym_DASH_DASH] = ACTIONS(1255), - [anon_sym_PLUS_PLUS] = ACTIONS(1255), - [anon_sym_sizeof] = ACTIONS(1253), - [anon_sym___alignof__] = ACTIONS(1253), - [anon_sym___alignof] = ACTIONS(1253), - [anon_sym__alignof] = ACTIONS(1253), - [anon_sym_alignof] = ACTIONS(1253), - [anon_sym__Alignof] = ACTIONS(1253), - [anon_sym_offsetof] = ACTIONS(1253), - [anon_sym__Generic] = ACTIONS(1253), - [anon_sym_asm] = ACTIONS(1253), - [anon_sym___asm__] = ACTIONS(1253), - [sym_number_literal] = ACTIONS(1255), - [anon_sym_L_SQUOTE] = ACTIONS(1255), - [anon_sym_u_SQUOTE] = ACTIONS(1255), - [anon_sym_U_SQUOTE] = ACTIONS(1255), - [anon_sym_u8_SQUOTE] = ACTIONS(1255), - [anon_sym_SQUOTE] = ACTIONS(1255), - [anon_sym_L_DQUOTE] = ACTIONS(1255), - [anon_sym_u_DQUOTE] = ACTIONS(1255), - [anon_sym_U_DQUOTE] = ACTIONS(1255), - [anon_sym_u8_DQUOTE] = ACTIONS(1255), - [anon_sym_DQUOTE] = ACTIONS(1255), - [sym_true] = ACTIONS(1253), - [sym_false] = ACTIONS(1253), - [anon_sym_NULL] = ACTIONS(1253), - [anon_sym_nullptr] = ACTIONS(1253), + [229] = { + [ts_builtin_sym_end] = ACTIONS(1187), + [sym_identifier] = ACTIONS(1185), + [aux_sym_preproc_include_token1] = ACTIONS(1185), + [aux_sym_preproc_def_token1] = ACTIONS(1185), + [aux_sym_preproc_if_token1] = ACTIONS(1185), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1185), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1185), + [sym_preproc_directive] = ACTIONS(1185), + [anon_sym_LPAREN2] = ACTIONS(1187), + [anon_sym_BANG] = ACTIONS(1187), + [anon_sym_TILDE] = ACTIONS(1187), + [anon_sym_DASH] = ACTIONS(1185), + [anon_sym_PLUS] = ACTIONS(1185), + [anon_sym_STAR] = ACTIONS(1187), + [anon_sym_AMP] = ACTIONS(1187), + [anon_sym_SEMI] = ACTIONS(1187), + [anon_sym___extension__] = ACTIONS(1185), + [anon_sym_typedef] = ACTIONS(1185), + [anon_sym_extern] = ACTIONS(1185), + [anon_sym___attribute__] = ACTIONS(1185), + [anon_sym___scanf] = ACTIONS(1185), + [anon_sym___printf] = ACTIONS(1185), + [anon_sym___read_mostly] = ACTIONS(1185), + [anon_sym___must_hold] = ACTIONS(1185), + [anon_sym___ro_after_init] = ACTIONS(1185), + [anon_sym___noreturn] = ACTIONS(1185), + [anon_sym___cold] = ACTIONS(1185), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1187), + [anon_sym___declspec] = ACTIONS(1185), + [anon_sym___init] = ACTIONS(1185), + [anon_sym___exit] = ACTIONS(1185), + [anon_sym___cdecl] = ACTIONS(1185), + [anon_sym___clrcall] = ACTIONS(1185), + [anon_sym___stdcall] = ACTIONS(1185), + [anon_sym___fastcall] = ACTIONS(1185), + [anon_sym___thiscall] = ACTIONS(1185), + [anon_sym___vectorcall] = ACTIONS(1185), + [anon_sym_LBRACE] = ACTIONS(1187), + [anon_sym_signed] = ACTIONS(1185), + [anon_sym_unsigned] = ACTIONS(1185), + [anon_sym_long] = ACTIONS(1185), + [anon_sym_short] = ACTIONS(1185), + [anon_sym_static] = ACTIONS(1185), + [anon_sym_auto] = ACTIONS(1185), + [anon_sym_register] = ACTIONS(1185), + [anon_sym_inline] = ACTIONS(1185), + [anon_sym___inline] = ACTIONS(1185), + [anon_sym___inline__] = ACTIONS(1185), + [anon_sym___forceinline] = ACTIONS(1185), + [anon_sym_thread_local] = ACTIONS(1185), + [anon_sym___thread] = ACTIONS(1185), + [anon_sym_const] = ACTIONS(1185), + [anon_sym_constexpr] = ACTIONS(1185), + [anon_sym_volatile] = ACTIONS(1185), + [anon_sym_restrict] = ACTIONS(1185), + [anon_sym___restrict__] = ACTIONS(1185), + [anon_sym__Atomic] = ACTIONS(1185), + [anon_sym__Noreturn] = ACTIONS(1185), + [anon_sym_noreturn] = ACTIONS(1185), + [anon_sym_alignas] = ACTIONS(1185), + [anon_sym__Alignas] = ACTIONS(1185), + [sym_primitive_type] = ACTIONS(1185), + [anon_sym_enum] = ACTIONS(1185), + [anon_sym_struct] = ACTIONS(1185), + [anon_sym_union] = ACTIONS(1185), + [anon_sym_if] = ACTIONS(1185), + [anon_sym_else] = ACTIONS(1185), + [anon_sym_switch] = ACTIONS(1185), + [anon_sym_case] = ACTIONS(1185), + [anon_sym_default] = ACTIONS(1185), + [anon_sym_while] = ACTIONS(1185), + [anon_sym_do] = ACTIONS(1185), + [anon_sym_for] = ACTIONS(1185), + [anon_sym_return] = ACTIONS(1185), + [anon_sym_break] = ACTIONS(1185), + [anon_sym_continue] = ACTIONS(1185), + [anon_sym_goto] = ACTIONS(1185), + [anon_sym___try] = ACTIONS(1185), + [anon_sym___leave] = ACTIONS(1185), + [anon_sym_DASH_DASH] = ACTIONS(1187), + [anon_sym_PLUS_PLUS] = ACTIONS(1187), + [anon_sym_sizeof] = ACTIONS(1185), + [anon_sym___alignof__] = ACTIONS(1185), + [anon_sym___alignof] = ACTIONS(1185), + [anon_sym__alignof] = ACTIONS(1185), + [anon_sym_alignof] = ACTIONS(1185), + [anon_sym__Alignof] = ACTIONS(1185), + [anon_sym_offsetof] = ACTIONS(1185), + [anon_sym__Generic] = ACTIONS(1185), + [anon_sym_asm] = ACTIONS(1185), + [anon_sym___asm__] = ACTIONS(1185), + [sym_number_literal] = ACTIONS(1187), + [anon_sym_L_SQUOTE] = ACTIONS(1187), + [anon_sym_u_SQUOTE] = ACTIONS(1187), + [anon_sym_U_SQUOTE] = ACTIONS(1187), + [anon_sym_u8_SQUOTE] = ACTIONS(1187), + [anon_sym_SQUOTE] = ACTIONS(1187), + [anon_sym_L_DQUOTE] = ACTIONS(1187), + [anon_sym_u_DQUOTE] = ACTIONS(1187), + [anon_sym_U_DQUOTE] = ACTIONS(1187), + [anon_sym_u8_DQUOTE] = ACTIONS(1187), + [anon_sym_DQUOTE] = ACTIONS(1187), + [sym_true] = ACTIONS(1185), + [sym_false] = ACTIONS(1185), + [anon_sym_NULL] = ACTIONS(1185), + [anon_sym_nullptr] = ACTIONS(1185), [sym_comment] = ACTIONS(3), }, - [203] = { - [ts_builtin_sym_end] = ACTIONS(1231), - [sym_identifier] = ACTIONS(1229), - [aux_sym_preproc_include_token1] = ACTIONS(1229), - [aux_sym_preproc_def_token1] = ACTIONS(1229), - [aux_sym_preproc_if_token1] = ACTIONS(1229), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1229), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1229), - [sym_preproc_directive] = ACTIONS(1229), - [anon_sym_LPAREN2] = ACTIONS(1231), - [anon_sym_BANG] = ACTIONS(1231), - [anon_sym_TILDE] = ACTIONS(1231), - [anon_sym_DASH] = ACTIONS(1229), - [anon_sym_PLUS] = ACTIONS(1229), - [anon_sym_STAR] = ACTIONS(1231), - [anon_sym_AMP] = ACTIONS(1231), - [anon_sym_SEMI] = ACTIONS(1231), - [anon_sym___extension__] = ACTIONS(1229), - [anon_sym_typedef] = ACTIONS(1229), - [anon_sym_extern] = ACTIONS(1229), - [anon_sym___attribute__] = ACTIONS(1229), - [anon_sym___scanf] = ACTIONS(1229), - [anon_sym___printf] = ACTIONS(1229), - [anon_sym___read_mostly] = ACTIONS(1229), - [anon_sym___must_hold] = ACTIONS(1229), - [anon_sym___ro_after_init] = ACTIONS(1229), - [anon_sym___init] = ACTIONS(1229), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1231), - [anon_sym___declspec] = ACTIONS(1229), - [anon_sym___cdecl] = ACTIONS(1229), - [anon_sym___clrcall] = ACTIONS(1229), - [anon_sym___stdcall] = ACTIONS(1229), - [anon_sym___fastcall] = ACTIONS(1229), - [anon_sym___thiscall] = ACTIONS(1229), - [anon_sym___vectorcall] = ACTIONS(1229), - [anon_sym_LBRACE] = ACTIONS(1231), - [anon_sym_signed] = ACTIONS(1229), - [anon_sym_unsigned] = ACTIONS(1229), - [anon_sym_long] = ACTIONS(1229), - [anon_sym_short] = ACTIONS(1229), - [anon_sym_static] = ACTIONS(1229), - [anon_sym_auto] = ACTIONS(1229), - [anon_sym_register] = ACTIONS(1229), - [anon_sym_inline] = ACTIONS(1229), - [anon_sym___inline] = ACTIONS(1229), - [anon_sym___inline__] = ACTIONS(1229), - [anon_sym___forceinline] = ACTIONS(1229), - [anon_sym_thread_local] = ACTIONS(1229), - [anon_sym___thread] = ACTIONS(1229), - [anon_sym_const] = ACTIONS(1229), - [anon_sym_constexpr] = ACTIONS(1229), - [anon_sym_volatile] = ACTIONS(1229), - [anon_sym_restrict] = ACTIONS(1229), - [anon_sym___restrict__] = ACTIONS(1229), - [anon_sym__Atomic] = ACTIONS(1229), - [anon_sym__Noreturn] = ACTIONS(1229), - [anon_sym_noreturn] = ACTIONS(1229), - [anon_sym_alignas] = ACTIONS(1229), - [anon_sym__Alignas] = ACTIONS(1229), - [sym_primitive_type] = ACTIONS(1229), - [anon_sym_enum] = ACTIONS(1229), - [anon_sym_struct] = ACTIONS(1229), - [anon_sym_union] = ACTIONS(1229), - [anon_sym_if] = ACTIONS(1229), - [anon_sym_else] = ACTIONS(1229), - [anon_sym_switch] = ACTIONS(1229), - [anon_sym_case] = ACTIONS(1229), - [anon_sym_default] = ACTIONS(1229), - [anon_sym_while] = ACTIONS(1229), - [anon_sym_do] = ACTIONS(1229), - [anon_sym_for] = ACTIONS(1229), - [anon_sym_return] = ACTIONS(1229), - [anon_sym_break] = ACTIONS(1229), - [anon_sym_continue] = ACTIONS(1229), - [anon_sym_goto] = ACTIONS(1229), - [anon_sym___try] = ACTIONS(1229), - [anon_sym___leave] = ACTIONS(1229), - [anon_sym_DASH_DASH] = ACTIONS(1231), - [anon_sym_PLUS_PLUS] = ACTIONS(1231), - [anon_sym_sizeof] = ACTIONS(1229), - [anon_sym___alignof__] = ACTIONS(1229), - [anon_sym___alignof] = ACTIONS(1229), - [anon_sym__alignof] = ACTIONS(1229), - [anon_sym_alignof] = ACTIONS(1229), - [anon_sym__Alignof] = ACTIONS(1229), - [anon_sym_offsetof] = ACTIONS(1229), - [anon_sym__Generic] = ACTIONS(1229), - [anon_sym_asm] = ACTIONS(1229), - [anon_sym___asm__] = ACTIONS(1229), - [sym_number_literal] = ACTIONS(1231), - [anon_sym_L_SQUOTE] = ACTIONS(1231), - [anon_sym_u_SQUOTE] = ACTIONS(1231), - [anon_sym_U_SQUOTE] = ACTIONS(1231), - [anon_sym_u8_SQUOTE] = ACTIONS(1231), - [anon_sym_SQUOTE] = ACTIONS(1231), - [anon_sym_L_DQUOTE] = ACTIONS(1231), - [anon_sym_u_DQUOTE] = ACTIONS(1231), - [anon_sym_U_DQUOTE] = ACTIONS(1231), - [anon_sym_u8_DQUOTE] = ACTIONS(1231), - [anon_sym_DQUOTE] = ACTIONS(1231), - [sym_true] = ACTIONS(1229), - [sym_false] = ACTIONS(1229), - [anon_sym_NULL] = ACTIONS(1229), - [anon_sym_nullptr] = ACTIONS(1229), + [230] = { + [sym_identifier] = ACTIONS(1233), + [aux_sym_preproc_include_token1] = ACTIONS(1233), + [aux_sym_preproc_def_token1] = ACTIONS(1233), + [aux_sym_preproc_if_token1] = ACTIONS(1233), + [aux_sym_preproc_if_token2] = ACTIONS(1233), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1233), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1233), + [sym_preproc_directive] = ACTIONS(1233), + [anon_sym_LPAREN2] = ACTIONS(1235), + [anon_sym_BANG] = ACTIONS(1235), + [anon_sym_TILDE] = ACTIONS(1235), + [anon_sym_DASH] = ACTIONS(1233), + [anon_sym_PLUS] = ACTIONS(1233), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_AMP] = ACTIONS(1235), + [anon_sym_SEMI] = ACTIONS(1235), + [anon_sym___extension__] = ACTIONS(1233), + [anon_sym_typedef] = ACTIONS(1233), + [anon_sym_extern] = ACTIONS(1233), + [anon_sym___attribute__] = ACTIONS(1233), + [anon_sym___scanf] = ACTIONS(1233), + [anon_sym___printf] = ACTIONS(1233), + [anon_sym___read_mostly] = ACTIONS(1233), + [anon_sym___must_hold] = ACTIONS(1233), + [anon_sym___ro_after_init] = ACTIONS(1233), + [anon_sym___noreturn] = ACTIONS(1233), + [anon_sym___cold] = ACTIONS(1233), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1235), + [anon_sym___declspec] = ACTIONS(1233), + [anon_sym___init] = ACTIONS(1233), + [anon_sym___exit] = ACTIONS(1233), + [anon_sym___cdecl] = ACTIONS(1233), + [anon_sym___clrcall] = ACTIONS(1233), + [anon_sym___stdcall] = ACTIONS(1233), + [anon_sym___fastcall] = ACTIONS(1233), + [anon_sym___thiscall] = ACTIONS(1233), + [anon_sym___vectorcall] = ACTIONS(1233), + [anon_sym_LBRACE] = ACTIONS(1235), + [anon_sym_signed] = ACTIONS(1233), + [anon_sym_unsigned] = ACTIONS(1233), + [anon_sym_long] = ACTIONS(1233), + [anon_sym_short] = ACTIONS(1233), + [anon_sym_static] = ACTIONS(1233), + [anon_sym_auto] = ACTIONS(1233), + [anon_sym_register] = ACTIONS(1233), + [anon_sym_inline] = ACTIONS(1233), + [anon_sym___inline] = ACTIONS(1233), + [anon_sym___inline__] = ACTIONS(1233), + [anon_sym___forceinline] = ACTIONS(1233), + [anon_sym_thread_local] = ACTIONS(1233), + [anon_sym___thread] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_constexpr] = ACTIONS(1233), + [anon_sym_volatile] = ACTIONS(1233), + [anon_sym_restrict] = ACTIONS(1233), + [anon_sym___restrict__] = ACTIONS(1233), + [anon_sym__Atomic] = ACTIONS(1233), + [anon_sym__Noreturn] = ACTIONS(1233), + [anon_sym_noreturn] = ACTIONS(1233), + [anon_sym_alignas] = ACTIONS(1233), + [anon_sym__Alignas] = ACTIONS(1233), + [sym_primitive_type] = ACTIONS(1233), + [anon_sym_enum] = ACTIONS(1233), + [anon_sym_struct] = ACTIONS(1233), + [anon_sym_union] = ACTIONS(1233), + [anon_sym_if] = ACTIONS(1233), + [anon_sym_else] = ACTIONS(1233), + [anon_sym_switch] = ACTIONS(1233), + [anon_sym_case] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(1233), + [anon_sym_while] = ACTIONS(1233), + [anon_sym_do] = ACTIONS(1233), + [anon_sym_for] = ACTIONS(1233), + [anon_sym_return] = ACTIONS(1233), + [anon_sym_break] = ACTIONS(1233), + [anon_sym_continue] = ACTIONS(1233), + [anon_sym_goto] = ACTIONS(1233), + [anon_sym___try] = ACTIONS(1233), + [anon_sym___leave] = ACTIONS(1233), + [anon_sym_DASH_DASH] = ACTIONS(1235), + [anon_sym_PLUS_PLUS] = ACTIONS(1235), + [anon_sym_sizeof] = ACTIONS(1233), + [anon_sym___alignof__] = ACTIONS(1233), + [anon_sym___alignof] = ACTIONS(1233), + [anon_sym__alignof] = ACTIONS(1233), + [anon_sym_alignof] = ACTIONS(1233), + [anon_sym__Alignof] = ACTIONS(1233), + [anon_sym_offsetof] = ACTIONS(1233), + [anon_sym__Generic] = ACTIONS(1233), + [anon_sym_asm] = ACTIONS(1233), + [anon_sym___asm__] = ACTIONS(1233), + [sym_number_literal] = ACTIONS(1235), + [anon_sym_L_SQUOTE] = ACTIONS(1235), + [anon_sym_u_SQUOTE] = ACTIONS(1235), + [anon_sym_U_SQUOTE] = ACTIONS(1235), + [anon_sym_u8_SQUOTE] = ACTIONS(1235), + [anon_sym_SQUOTE] = ACTIONS(1235), + [anon_sym_L_DQUOTE] = ACTIONS(1235), + [anon_sym_u_DQUOTE] = ACTIONS(1235), + [anon_sym_U_DQUOTE] = ACTIONS(1235), + [anon_sym_u8_DQUOTE] = ACTIONS(1235), + [anon_sym_DQUOTE] = ACTIONS(1235), + [sym_true] = ACTIONS(1233), + [sym_false] = ACTIONS(1233), + [anon_sym_NULL] = ACTIONS(1233), + [anon_sym_nullptr] = ACTIONS(1233), [sym_comment] = ACTIONS(3), }, - [204] = { - [sym_identifier] = ACTIONS(1225), - [aux_sym_preproc_include_token1] = ACTIONS(1225), - [aux_sym_preproc_def_token1] = ACTIONS(1225), - [aux_sym_preproc_if_token1] = ACTIONS(1225), - [aux_sym_preproc_if_token2] = ACTIONS(1225), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1225), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1225), - [sym_preproc_directive] = ACTIONS(1225), - [anon_sym_LPAREN2] = ACTIONS(1227), - [anon_sym_BANG] = ACTIONS(1227), - [anon_sym_TILDE] = ACTIONS(1227), - [anon_sym_DASH] = ACTIONS(1225), - [anon_sym_PLUS] = ACTIONS(1225), - [anon_sym_STAR] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(1227), - [anon_sym_SEMI] = ACTIONS(1227), - [anon_sym___extension__] = ACTIONS(1225), - [anon_sym_typedef] = ACTIONS(1225), - [anon_sym_extern] = ACTIONS(1225), - [anon_sym___attribute__] = ACTIONS(1225), - [anon_sym___scanf] = ACTIONS(1225), - [anon_sym___printf] = ACTIONS(1225), - [anon_sym___read_mostly] = ACTIONS(1225), - [anon_sym___must_hold] = ACTIONS(1225), - [anon_sym___ro_after_init] = ACTIONS(1225), - [anon_sym___init] = ACTIONS(1225), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1227), - [anon_sym___declspec] = ACTIONS(1225), - [anon_sym___cdecl] = ACTIONS(1225), - [anon_sym___clrcall] = ACTIONS(1225), - [anon_sym___stdcall] = ACTIONS(1225), - [anon_sym___fastcall] = ACTIONS(1225), - [anon_sym___thiscall] = ACTIONS(1225), - [anon_sym___vectorcall] = ACTIONS(1225), - [anon_sym_LBRACE] = ACTIONS(1227), - [anon_sym_signed] = ACTIONS(1225), - [anon_sym_unsigned] = ACTIONS(1225), - [anon_sym_long] = ACTIONS(1225), - [anon_sym_short] = ACTIONS(1225), - [anon_sym_static] = ACTIONS(1225), - [anon_sym_auto] = ACTIONS(1225), - [anon_sym_register] = ACTIONS(1225), - [anon_sym_inline] = ACTIONS(1225), - [anon_sym___inline] = ACTIONS(1225), - [anon_sym___inline__] = ACTIONS(1225), - [anon_sym___forceinline] = ACTIONS(1225), - [anon_sym_thread_local] = ACTIONS(1225), - [anon_sym___thread] = ACTIONS(1225), - [anon_sym_const] = ACTIONS(1225), - [anon_sym_constexpr] = ACTIONS(1225), - [anon_sym_volatile] = ACTIONS(1225), - [anon_sym_restrict] = ACTIONS(1225), - [anon_sym___restrict__] = ACTIONS(1225), - [anon_sym__Atomic] = ACTIONS(1225), - [anon_sym__Noreturn] = ACTIONS(1225), - [anon_sym_noreturn] = ACTIONS(1225), - [anon_sym_alignas] = ACTIONS(1225), - [anon_sym__Alignas] = ACTIONS(1225), - [sym_primitive_type] = ACTIONS(1225), - [anon_sym_enum] = ACTIONS(1225), - [anon_sym_struct] = ACTIONS(1225), - [anon_sym_union] = ACTIONS(1225), - [anon_sym_if] = ACTIONS(1225), - [anon_sym_else] = ACTIONS(1225), - [anon_sym_switch] = ACTIONS(1225), - [anon_sym_case] = ACTIONS(1225), - [anon_sym_default] = ACTIONS(1225), - [anon_sym_while] = ACTIONS(1225), - [anon_sym_do] = ACTIONS(1225), - [anon_sym_for] = ACTIONS(1225), - [anon_sym_return] = ACTIONS(1225), - [anon_sym_break] = ACTIONS(1225), - [anon_sym_continue] = ACTIONS(1225), - [anon_sym_goto] = ACTIONS(1225), - [anon_sym___try] = ACTIONS(1225), - [anon_sym___leave] = ACTIONS(1225), - [anon_sym_DASH_DASH] = ACTIONS(1227), - [anon_sym_PLUS_PLUS] = ACTIONS(1227), - [anon_sym_sizeof] = ACTIONS(1225), - [anon_sym___alignof__] = ACTIONS(1225), - [anon_sym___alignof] = ACTIONS(1225), - [anon_sym__alignof] = ACTIONS(1225), - [anon_sym_alignof] = ACTIONS(1225), - [anon_sym__Alignof] = ACTIONS(1225), - [anon_sym_offsetof] = ACTIONS(1225), - [anon_sym__Generic] = ACTIONS(1225), - [anon_sym_asm] = ACTIONS(1225), - [anon_sym___asm__] = ACTIONS(1225), - [sym_number_literal] = ACTIONS(1227), - [anon_sym_L_SQUOTE] = ACTIONS(1227), - [anon_sym_u_SQUOTE] = ACTIONS(1227), - [anon_sym_U_SQUOTE] = ACTIONS(1227), - [anon_sym_u8_SQUOTE] = ACTIONS(1227), - [anon_sym_SQUOTE] = ACTIONS(1227), - [anon_sym_L_DQUOTE] = ACTIONS(1227), - [anon_sym_u_DQUOTE] = ACTIONS(1227), - [anon_sym_U_DQUOTE] = ACTIONS(1227), - [anon_sym_u8_DQUOTE] = ACTIONS(1227), - [anon_sym_DQUOTE] = ACTIONS(1227), - [sym_true] = ACTIONS(1225), - [sym_false] = ACTIONS(1225), - [anon_sym_NULL] = ACTIONS(1225), - [anon_sym_nullptr] = ACTIONS(1225), + [231] = { + [sym_identifier] = ACTIONS(1181), + [aux_sym_preproc_include_token1] = ACTIONS(1181), + [aux_sym_preproc_def_token1] = ACTIONS(1181), + [aux_sym_preproc_if_token1] = ACTIONS(1181), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1181), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1181), + [sym_preproc_directive] = ACTIONS(1181), + [anon_sym_LPAREN2] = ACTIONS(1183), + [anon_sym_BANG] = ACTIONS(1183), + [anon_sym_TILDE] = ACTIONS(1183), + [anon_sym_DASH] = ACTIONS(1181), + [anon_sym_PLUS] = ACTIONS(1181), + [anon_sym_STAR] = ACTIONS(1183), + [anon_sym_AMP] = ACTIONS(1183), + [anon_sym_SEMI] = ACTIONS(1183), + [anon_sym___extension__] = ACTIONS(1181), + [anon_sym_typedef] = ACTIONS(1181), + [anon_sym_extern] = ACTIONS(1181), + [anon_sym___attribute__] = ACTIONS(1181), + [anon_sym___scanf] = ACTIONS(1181), + [anon_sym___printf] = ACTIONS(1181), + [anon_sym___read_mostly] = ACTIONS(1181), + [anon_sym___must_hold] = ACTIONS(1181), + [anon_sym___ro_after_init] = ACTIONS(1181), + [anon_sym___noreturn] = ACTIONS(1181), + [anon_sym___cold] = ACTIONS(1181), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1183), + [anon_sym___declspec] = ACTIONS(1181), + [anon_sym___init] = ACTIONS(1181), + [anon_sym___exit] = ACTIONS(1181), + [anon_sym___cdecl] = ACTIONS(1181), + [anon_sym___clrcall] = ACTIONS(1181), + [anon_sym___stdcall] = ACTIONS(1181), + [anon_sym___fastcall] = ACTIONS(1181), + [anon_sym___thiscall] = ACTIONS(1181), + [anon_sym___vectorcall] = ACTIONS(1181), + [anon_sym_LBRACE] = ACTIONS(1183), + [anon_sym_RBRACE] = ACTIONS(1183), + [anon_sym_signed] = ACTIONS(1181), + [anon_sym_unsigned] = ACTIONS(1181), + [anon_sym_long] = ACTIONS(1181), + [anon_sym_short] = ACTIONS(1181), + [anon_sym_static] = ACTIONS(1181), + [anon_sym_auto] = ACTIONS(1181), + [anon_sym_register] = ACTIONS(1181), + [anon_sym_inline] = ACTIONS(1181), + [anon_sym___inline] = ACTIONS(1181), + [anon_sym___inline__] = ACTIONS(1181), + [anon_sym___forceinline] = ACTIONS(1181), + [anon_sym_thread_local] = ACTIONS(1181), + [anon_sym___thread] = ACTIONS(1181), + [anon_sym_const] = ACTIONS(1181), + [anon_sym_constexpr] = ACTIONS(1181), + [anon_sym_volatile] = ACTIONS(1181), + [anon_sym_restrict] = ACTIONS(1181), + [anon_sym___restrict__] = ACTIONS(1181), + [anon_sym__Atomic] = ACTIONS(1181), + [anon_sym__Noreturn] = ACTIONS(1181), + [anon_sym_noreturn] = ACTIONS(1181), + [anon_sym_alignas] = ACTIONS(1181), + [anon_sym__Alignas] = ACTIONS(1181), + [sym_primitive_type] = ACTIONS(1181), + [anon_sym_enum] = ACTIONS(1181), + [anon_sym_struct] = ACTIONS(1181), + [anon_sym_union] = ACTIONS(1181), + [anon_sym_if] = ACTIONS(1181), + [anon_sym_else] = ACTIONS(1181), + [anon_sym_switch] = ACTIONS(1181), + [anon_sym_case] = ACTIONS(1181), + [anon_sym_default] = ACTIONS(1181), + [anon_sym_while] = ACTIONS(1181), + [anon_sym_do] = ACTIONS(1181), + [anon_sym_for] = ACTIONS(1181), + [anon_sym_return] = ACTIONS(1181), + [anon_sym_break] = ACTIONS(1181), + [anon_sym_continue] = ACTIONS(1181), + [anon_sym_goto] = ACTIONS(1181), + [anon_sym___try] = ACTIONS(1181), + [anon_sym___leave] = ACTIONS(1181), + [anon_sym_DASH_DASH] = ACTIONS(1183), + [anon_sym_PLUS_PLUS] = ACTIONS(1183), + [anon_sym_sizeof] = ACTIONS(1181), + [anon_sym___alignof__] = ACTIONS(1181), + [anon_sym___alignof] = ACTIONS(1181), + [anon_sym__alignof] = ACTIONS(1181), + [anon_sym_alignof] = ACTIONS(1181), + [anon_sym__Alignof] = ACTIONS(1181), + [anon_sym_offsetof] = ACTIONS(1181), + [anon_sym__Generic] = ACTIONS(1181), + [anon_sym_asm] = ACTIONS(1181), + [anon_sym___asm__] = ACTIONS(1181), + [sym_number_literal] = ACTIONS(1183), + [anon_sym_L_SQUOTE] = ACTIONS(1183), + [anon_sym_u_SQUOTE] = ACTIONS(1183), + [anon_sym_U_SQUOTE] = ACTIONS(1183), + [anon_sym_u8_SQUOTE] = ACTIONS(1183), + [anon_sym_SQUOTE] = ACTIONS(1183), + [anon_sym_L_DQUOTE] = ACTIONS(1183), + [anon_sym_u_DQUOTE] = ACTIONS(1183), + [anon_sym_U_DQUOTE] = ACTIONS(1183), + [anon_sym_u8_DQUOTE] = ACTIONS(1183), + [anon_sym_DQUOTE] = ACTIONS(1183), + [sym_true] = ACTIONS(1181), + [sym_false] = ACTIONS(1181), + [anon_sym_NULL] = ACTIONS(1181), + [anon_sym_nullptr] = ACTIONS(1181), [sym_comment] = ACTIONS(3), }, - [205] = { - [sym_identifier] = ACTIONS(1229), - [aux_sym_preproc_include_token1] = ACTIONS(1229), - [aux_sym_preproc_def_token1] = ACTIONS(1229), - [aux_sym_preproc_if_token1] = ACTIONS(1229), - [aux_sym_preproc_if_token2] = ACTIONS(1229), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1229), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1229), - [sym_preproc_directive] = ACTIONS(1229), - [anon_sym_LPAREN2] = ACTIONS(1231), - [anon_sym_BANG] = ACTIONS(1231), - [anon_sym_TILDE] = ACTIONS(1231), - [anon_sym_DASH] = ACTIONS(1229), - [anon_sym_PLUS] = ACTIONS(1229), - [anon_sym_STAR] = ACTIONS(1231), - [anon_sym_AMP] = ACTIONS(1231), - [anon_sym_SEMI] = ACTIONS(1231), - [anon_sym___extension__] = ACTIONS(1229), - [anon_sym_typedef] = ACTIONS(1229), - [anon_sym_extern] = ACTIONS(1229), - [anon_sym___attribute__] = ACTIONS(1229), - [anon_sym___scanf] = ACTIONS(1229), - [anon_sym___printf] = ACTIONS(1229), - [anon_sym___read_mostly] = ACTIONS(1229), - [anon_sym___must_hold] = ACTIONS(1229), - [anon_sym___ro_after_init] = ACTIONS(1229), - [anon_sym___init] = ACTIONS(1229), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1231), - [anon_sym___declspec] = ACTIONS(1229), - [anon_sym___cdecl] = ACTIONS(1229), - [anon_sym___clrcall] = ACTIONS(1229), - [anon_sym___stdcall] = ACTIONS(1229), - [anon_sym___fastcall] = ACTIONS(1229), - [anon_sym___thiscall] = ACTIONS(1229), - [anon_sym___vectorcall] = ACTIONS(1229), - [anon_sym_LBRACE] = ACTIONS(1231), - [anon_sym_signed] = ACTIONS(1229), - [anon_sym_unsigned] = ACTIONS(1229), - [anon_sym_long] = ACTIONS(1229), - [anon_sym_short] = ACTIONS(1229), - [anon_sym_static] = ACTIONS(1229), - [anon_sym_auto] = ACTIONS(1229), - [anon_sym_register] = ACTIONS(1229), - [anon_sym_inline] = ACTIONS(1229), - [anon_sym___inline] = ACTIONS(1229), - [anon_sym___inline__] = ACTIONS(1229), - [anon_sym___forceinline] = ACTIONS(1229), - [anon_sym_thread_local] = ACTIONS(1229), - [anon_sym___thread] = ACTIONS(1229), - [anon_sym_const] = ACTIONS(1229), - [anon_sym_constexpr] = ACTIONS(1229), - [anon_sym_volatile] = ACTIONS(1229), - [anon_sym_restrict] = ACTIONS(1229), - [anon_sym___restrict__] = ACTIONS(1229), - [anon_sym__Atomic] = ACTIONS(1229), - [anon_sym__Noreturn] = ACTIONS(1229), - [anon_sym_noreturn] = ACTIONS(1229), - [anon_sym_alignas] = ACTIONS(1229), - [anon_sym__Alignas] = ACTIONS(1229), - [sym_primitive_type] = ACTIONS(1229), - [anon_sym_enum] = ACTIONS(1229), - [anon_sym_struct] = ACTIONS(1229), - [anon_sym_union] = ACTIONS(1229), - [anon_sym_if] = ACTIONS(1229), - [anon_sym_else] = ACTIONS(1229), - [anon_sym_switch] = ACTIONS(1229), - [anon_sym_case] = ACTIONS(1229), - [anon_sym_default] = ACTIONS(1229), - [anon_sym_while] = ACTIONS(1229), - [anon_sym_do] = ACTIONS(1229), - [anon_sym_for] = ACTIONS(1229), - [anon_sym_return] = ACTIONS(1229), - [anon_sym_break] = ACTIONS(1229), - [anon_sym_continue] = ACTIONS(1229), - [anon_sym_goto] = ACTIONS(1229), - [anon_sym___try] = ACTIONS(1229), - [anon_sym___leave] = ACTIONS(1229), - [anon_sym_DASH_DASH] = ACTIONS(1231), - [anon_sym_PLUS_PLUS] = ACTIONS(1231), - [anon_sym_sizeof] = ACTIONS(1229), - [anon_sym___alignof__] = ACTIONS(1229), - [anon_sym___alignof] = ACTIONS(1229), - [anon_sym__alignof] = ACTIONS(1229), - [anon_sym_alignof] = ACTIONS(1229), - [anon_sym__Alignof] = ACTIONS(1229), - [anon_sym_offsetof] = ACTIONS(1229), - [anon_sym__Generic] = ACTIONS(1229), - [anon_sym_asm] = ACTIONS(1229), - [anon_sym___asm__] = ACTIONS(1229), - [sym_number_literal] = ACTIONS(1231), - [anon_sym_L_SQUOTE] = ACTIONS(1231), - [anon_sym_u_SQUOTE] = ACTIONS(1231), - [anon_sym_U_SQUOTE] = ACTIONS(1231), - [anon_sym_u8_SQUOTE] = ACTIONS(1231), - [anon_sym_SQUOTE] = ACTIONS(1231), - [anon_sym_L_DQUOTE] = ACTIONS(1231), - [anon_sym_u_DQUOTE] = ACTIONS(1231), - [anon_sym_U_DQUOTE] = ACTIONS(1231), - [anon_sym_u8_DQUOTE] = ACTIONS(1231), - [anon_sym_DQUOTE] = ACTIONS(1231), - [sym_true] = ACTIONS(1229), - [sym_false] = ACTIONS(1229), - [anon_sym_NULL] = ACTIONS(1229), - [anon_sym_nullptr] = ACTIONS(1229), + [232] = { + [sym_identifier] = ACTIONS(1177), + [aux_sym_preproc_include_token1] = ACTIONS(1177), + [aux_sym_preproc_def_token1] = ACTIONS(1177), + [aux_sym_preproc_if_token1] = ACTIONS(1177), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1177), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1177), + [sym_preproc_directive] = ACTIONS(1177), + [anon_sym_LPAREN2] = ACTIONS(1179), + [anon_sym_BANG] = ACTIONS(1179), + [anon_sym_TILDE] = ACTIONS(1179), + [anon_sym_DASH] = ACTIONS(1177), + [anon_sym_PLUS] = ACTIONS(1177), + [anon_sym_STAR] = ACTIONS(1179), + [anon_sym_AMP] = ACTIONS(1179), + [anon_sym_SEMI] = ACTIONS(1179), + [anon_sym___extension__] = ACTIONS(1177), + [anon_sym_typedef] = ACTIONS(1177), + [anon_sym_extern] = ACTIONS(1177), + [anon_sym___attribute__] = ACTIONS(1177), + [anon_sym___scanf] = ACTIONS(1177), + [anon_sym___printf] = ACTIONS(1177), + [anon_sym___read_mostly] = ACTIONS(1177), + [anon_sym___must_hold] = ACTIONS(1177), + [anon_sym___ro_after_init] = ACTIONS(1177), + [anon_sym___noreturn] = ACTIONS(1177), + [anon_sym___cold] = ACTIONS(1177), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1179), + [anon_sym___declspec] = ACTIONS(1177), + [anon_sym___init] = ACTIONS(1177), + [anon_sym___exit] = ACTIONS(1177), + [anon_sym___cdecl] = ACTIONS(1177), + [anon_sym___clrcall] = ACTIONS(1177), + [anon_sym___stdcall] = ACTIONS(1177), + [anon_sym___fastcall] = ACTIONS(1177), + [anon_sym___thiscall] = ACTIONS(1177), + [anon_sym___vectorcall] = ACTIONS(1177), + [anon_sym_LBRACE] = ACTIONS(1179), + [anon_sym_RBRACE] = ACTIONS(1179), + [anon_sym_signed] = ACTIONS(1177), + [anon_sym_unsigned] = ACTIONS(1177), + [anon_sym_long] = ACTIONS(1177), + [anon_sym_short] = ACTIONS(1177), + [anon_sym_static] = ACTIONS(1177), + [anon_sym_auto] = ACTIONS(1177), + [anon_sym_register] = ACTIONS(1177), + [anon_sym_inline] = ACTIONS(1177), + [anon_sym___inline] = ACTIONS(1177), + [anon_sym___inline__] = ACTIONS(1177), + [anon_sym___forceinline] = ACTIONS(1177), + [anon_sym_thread_local] = ACTIONS(1177), + [anon_sym___thread] = ACTIONS(1177), + [anon_sym_const] = ACTIONS(1177), + [anon_sym_constexpr] = ACTIONS(1177), + [anon_sym_volatile] = ACTIONS(1177), + [anon_sym_restrict] = ACTIONS(1177), + [anon_sym___restrict__] = ACTIONS(1177), + [anon_sym__Atomic] = ACTIONS(1177), + [anon_sym__Noreturn] = ACTIONS(1177), + [anon_sym_noreturn] = ACTIONS(1177), + [anon_sym_alignas] = ACTIONS(1177), + [anon_sym__Alignas] = ACTIONS(1177), + [sym_primitive_type] = ACTIONS(1177), + [anon_sym_enum] = ACTIONS(1177), + [anon_sym_struct] = ACTIONS(1177), + [anon_sym_union] = ACTIONS(1177), + [anon_sym_if] = ACTIONS(1177), + [anon_sym_else] = ACTIONS(1177), + [anon_sym_switch] = ACTIONS(1177), + [anon_sym_case] = ACTIONS(1177), + [anon_sym_default] = ACTIONS(1177), + [anon_sym_while] = ACTIONS(1177), + [anon_sym_do] = ACTIONS(1177), + [anon_sym_for] = ACTIONS(1177), + [anon_sym_return] = ACTIONS(1177), + [anon_sym_break] = ACTIONS(1177), + [anon_sym_continue] = ACTIONS(1177), + [anon_sym_goto] = ACTIONS(1177), + [anon_sym___try] = ACTIONS(1177), + [anon_sym___leave] = ACTIONS(1177), + [anon_sym_DASH_DASH] = ACTIONS(1179), + [anon_sym_PLUS_PLUS] = ACTIONS(1179), + [anon_sym_sizeof] = ACTIONS(1177), + [anon_sym___alignof__] = ACTIONS(1177), + [anon_sym___alignof] = ACTIONS(1177), + [anon_sym__alignof] = ACTIONS(1177), + [anon_sym_alignof] = ACTIONS(1177), + [anon_sym__Alignof] = ACTIONS(1177), + [anon_sym_offsetof] = ACTIONS(1177), + [anon_sym__Generic] = ACTIONS(1177), + [anon_sym_asm] = ACTIONS(1177), + [anon_sym___asm__] = ACTIONS(1177), + [sym_number_literal] = ACTIONS(1179), + [anon_sym_L_SQUOTE] = ACTIONS(1179), + [anon_sym_u_SQUOTE] = ACTIONS(1179), + [anon_sym_U_SQUOTE] = ACTIONS(1179), + [anon_sym_u8_SQUOTE] = ACTIONS(1179), + [anon_sym_SQUOTE] = ACTIONS(1179), + [anon_sym_L_DQUOTE] = ACTIONS(1179), + [anon_sym_u_DQUOTE] = ACTIONS(1179), + [anon_sym_U_DQUOTE] = ACTIONS(1179), + [anon_sym_u8_DQUOTE] = ACTIONS(1179), + [anon_sym_DQUOTE] = ACTIONS(1179), + [sym_true] = ACTIONS(1177), + [sym_false] = ACTIONS(1177), + [anon_sym_NULL] = ACTIONS(1177), + [anon_sym_nullptr] = ACTIONS(1177), + [sym_comment] = ACTIONS(3), + }, + [233] = { + [sym_identifier] = ACTIONS(1173), + [aux_sym_preproc_include_token1] = ACTIONS(1173), + [aux_sym_preproc_def_token1] = ACTIONS(1173), + [aux_sym_preproc_if_token1] = ACTIONS(1173), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1173), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1173), + [sym_preproc_directive] = ACTIONS(1173), + [anon_sym_LPAREN2] = ACTIONS(1175), + [anon_sym_BANG] = ACTIONS(1175), + [anon_sym_TILDE] = ACTIONS(1175), + [anon_sym_DASH] = ACTIONS(1173), + [anon_sym_PLUS] = ACTIONS(1173), + [anon_sym_STAR] = ACTIONS(1175), + [anon_sym_AMP] = ACTIONS(1175), + [anon_sym_SEMI] = ACTIONS(1175), + [anon_sym___extension__] = ACTIONS(1173), + [anon_sym_typedef] = ACTIONS(1173), + [anon_sym_extern] = ACTIONS(1173), + [anon_sym___attribute__] = ACTIONS(1173), + [anon_sym___scanf] = ACTIONS(1173), + [anon_sym___printf] = ACTIONS(1173), + [anon_sym___read_mostly] = ACTIONS(1173), + [anon_sym___must_hold] = ACTIONS(1173), + [anon_sym___ro_after_init] = ACTIONS(1173), + [anon_sym___noreturn] = ACTIONS(1173), + [anon_sym___cold] = ACTIONS(1173), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1175), + [anon_sym___declspec] = ACTIONS(1173), + [anon_sym___init] = ACTIONS(1173), + [anon_sym___exit] = ACTIONS(1173), + [anon_sym___cdecl] = ACTIONS(1173), + [anon_sym___clrcall] = ACTIONS(1173), + [anon_sym___stdcall] = ACTIONS(1173), + [anon_sym___fastcall] = ACTIONS(1173), + [anon_sym___thiscall] = ACTIONS(1173), + [anon_sym___vectorcall] = ACTIONS(1173), + [anon_sym_LBRACE] = ACTIONS(1175), + [anon_sym_RBRACE] = ACTIONS(1175), + [anon_sym_signed] = ACTIONS(1173), + [anon_sym_unsigned] = ACTIONS(1173), + [anon_sym_long] = ACTIONS(1173), + [anon_sym_short] = ACTIONS(1173), + [anon_sym_static] = ACTIONS(1173), + [anon_sym_auto] = ACTIONS(1173), + [anon_sym_register] = ACTIONS(1173), + [anon_sym_inline] = ACTIONS(1173), + [anon_sym___inline] = ACTIONS(1173), + [anon_sym___inline__] = ACTIONS(1173), + [anon_sym___forceinline] = ACTIONS(1173), + [anon_sym_thread_local] = ACTIONS(1173), + [anon_sym___thread] = ACTIONS(1173), + [anon_sym_const] = ACTIONS(1173), + [anon_sym_constexpr] = ACTIONS(1173), + [anon_sym_volatile] = ACTIONS(1173), + [anon_sym_restrict] = ACTIONS(1173), + [anon_sym___restrict__] = ACTIONS(1173), + [anon_sym__Atomic] = ACTIONS(1173), + [anon_sym__Noreturn] = ACTIONS(1173), + [anon_sym_noreturn] = ACTIONS(1173), + [anon_sym_alignas] = ACTIONS(1173), + [anon_sym__Alignas] = ACTIONS(1173), + [sym_primitive_type] = ACTIONS(1173), + [anon_sym_enum] = ACTIONS(1173), + [anon_sym_struct] = ACTIONS(1173), + [anon_sym_union] = ACTIONS(1173), + [anon_sym_if] = ACTIONS(1173), + [anon_sym_else] = ACTIONS(1173), + [anon_sym_switch] = ACTIONS(1173), + [anon_sym_case] = ACTIONS(1173), + [anon_sym_default] = ACTIONS(1173), + [anon_sym_while] = ACTIONS(1173), + [anon_sym_do] = ACTIONS(1173), + [anon_sym_for] = ACTIONS(1173), + [anon_sym_return] = ACTIONS(1173), + [anon_sym_break] = ACTIONS(1173), + [anon_sym_continue] = ACTIONS(1173), + [anon_sym_goto] = ACTIONS(1173), + [anon_sym___try] = ACTIONS(1173), + [anon_sym___leave] = ACTIONS(1173), + [anon_sym_DASH_DASH] = ACTIONS(1175), + [anon_sym_PLUS_PLUS] = ACTIONS(1175), + [anon_sym_sizeof] = ACTIONS(1173), + [anon_sym___alignof__] = ACTIONS(1173), + [anon_sym___alignof] = ACTIONS(1173), + [anon_sym__alignof] = ACTIONS(1173), + [anon_sym_alignof] = ACTIONS(1173), + [anon_sym__Alignof] = ACTIONS(1173), + [anon_sym_offsetof] = ACTIONS(1173), + [anon_sym__Generic] = ACTIONS(1173), + [anon_sym_asm] = ACTIONS(1173), + [anon_sym___asm__] = ACTIONS(1173), + [sym_number_literal] = ACTIONS(1175), + [anon_sym_L_SQUOTE] = ACTIONS(1175), + [anon_sym_u_SQUOTE] = ACTIONS(1175), + [anon_sym_U_SQUOTE] = ACTIONS(1175), + [anon_sym_u8_SQUOTE] = ACTIONS(1175), + [anon_sym_SQUOTE] = ACTIONS(1175), + [anon_sym_L_DQUOTE] = ACTIONS(1175), + [anon_sym_u_DQUOTE] = ACTIONS(1175), + [anon_sym_U_DQUOTE] = ACTIONS(1175), + [anon_sym_u8_DQUOTE] = ACTIONS(1175), + [anon_sym_DQUOTE] = ACTIONS(1175), + [sym_true] = ACTIONS(1173), + [sym_false] = ACTIONS(1173), + [anon_sym_NULL] = ACTIONS(1173), + [anon_sym_nullptr] = ACTIONS(1173), [sym_comment] = ACTIONS(3), }, - [206] = { - [ts_builtin_sym_end] = ACTIONS(1251), - [sym_identifier] = ACTIONS(1249), - [aux_sym_preproc_include_token1] = ACTIONS(1249), - [aux_sym_preproc_def_token1] = ACTIONS(1249), - [aux_sym_preproc_if_token1] = ACTIONS(1249), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1249), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1249), - [sym_preproc_directive] = ACTIONS(1249), - [anon_sym_LPAREN2] = ACTIONS(1251), - [anon_sym_BANG] = ACTIONS(1251), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1249), - [anon_sym_STAR] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1251), - [anon_sym_SEMI] = ACTIONS(1251), - [anon_sym___extension__] = ACTIONS(1249), - [anon_sym_typedef] = ACTIONS(1249), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym___attribute__] = ACTIONS(1249), - [anon_sym___scanf] = ACTIONS(1249), - [anon_sym___printf] = ACTIONS(1249), - [anon_sym___read_mostly] = ACTIONS(1249), - [anon_sym___must_hold] = ACTIONS(1249), - [anon_sym___ro_after_init] = ACTIONS(1249), - [anon_sym___init] = ACTIONS(1249), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1251), - [anon_sym___declspec] = ACTIONS(1249), - [anon_sym___cdecl] = ACTIONS(1249), - [anon_sym___clrcall] = ACTIONS(1249), - [anon_sym___stdcall] = ACTIONS(1249), - [anon_sym___fastcall] = ACTIONS(1249), - [anon_sym___thiscall] = ACTIONS(1249), - [anon_sym___vectorcall] = ACTIONS(1249), - [anon_sym_LBRACE] = ACTIONS(1251), - [anon_sym_signed] = ACTIONS(1249), - [anon_sym_unsigned] = ACTIONS(1249), - [anon_sym_long] = ACTIONS(1249), - [anon_sym_short] = ACTIONS(1249), - [anon_sym_static] = ACTIONS(1249), - [anon_sym_auto] = ACTIONS(1249), - [anon_sym_register] = ACTIONS(1249), - [anon_sym_inline] = ACTIONS(1249), - [anon_sym___inline] = ACTIONS(1249), - [anon_sym___inline__] = ACTIONS(1249), - [anon_sym___forceinline] = ACTIONS(1249), - [anon_sym_thread_local] = ACTIONS(1249), - [anon_sym___thread] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_constexpr] = ACTIONS(1249), - [anon_sym_volatile] = ACTIONS(1249), - [anon_sym_restrict] = ACTIONS(1249), - [anon_sym___restrict__] = ACTIONS(1249), - [anon_sym__Atomic] = ACTIONS(1249), - [anon_sym__Noreturn] = ACTIONS(1249), - [anon_sym_noreturn] = ACTIONS(1249), - [anon_sym_alignas] = ACTIONS(1249), - [anon_sym__Alignas] = ACTIONS(1249), - [sym_primitive_type] = ACTIONS(1249), - [anon_sym_enum] = ACTIONS(1249), - [anon_sym_struct] = ACTIONS(1249), - [anon_sym_union] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1249), - [anon_sym_else] = ACTIONS(1249), - [anon_sym_switch] = ACTIONS(1249), - [anon_sym_case] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(1249), - [anon_sym_while] = ACTIONS(1249), - [anon_sym_do] = ACTIONS(1249), - [anon_sym_for] = ACTIONS(1249), - [anon_sym_return] = ACTIONS(1249), - [anon_sym_break] = ACTIONS(1249), - [anon_sym_continue] = ACTIONS(1249), - [anon_sym_goto] = ACTIONS(1249), - [anon_sym___try] = ACTIONS(1249), - [anon_sym___leave] = ACTIONS(1249), - [anon_sym_DASH_DASH] = ACTIONS(1251), - [anon_sym_PLUS_PLUS] = ACTIONS(1251), - [anon_sym_sizeof] = ACTIONS(1249), - [anon_sym___alignof__] = ACTIONS(1249), - [anon_sym___alignof] = ACTIONS(1249), - [anon_sym__alignof] = ACTIONS(1249), - [anon_sym_alignof] = ACTIONS(1249), - [anon_sym__Alignof] = ACTIONS(1249), - [anon_sym_offsetof] = ACTIONS(1249), - [anon_sym__Generic] = ACTIONS(1249), - [anon_sym_asm] = ACTIONS(1249), - [anon_sym___asm__] = ACTIONS(1249), - [sym_number_literal] = ACTIONS(1251), - [anon_sym_L_SQUOTE] = ACTIONS(1251), - [anon_sym_u_SQUOTE] = ACTIONS(1251), - [anon_sym_U_SQUOTE] = ACTIONS(1251), - [anon_sym_u8_SQUOTE] = ACTIONS(1251), - [anon_sym_SQUOTE] = ACTIONS(1251), - [anon_sym_L_DQUOTE] = ACTIONS(1251), - [anon_sym_u_DQUOTE] = ACTIONS(1251), - [anon_sym_U_DQUOTE] = ACTIONS(1251), - [anon_sym_u8_DQUOTE] = ACTIONS(1251), - [anon_sym_DQUOTE] = ACTIONS(1251), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [anon_sym_NULL] = ACTIONS(1249), - [anon_sym_nullptr] = ACTIONS(1249), + [234] = { + [sym_identifier] = ACTIONS(1169), + [aux_sym_preproc_include_token1] = ACTIONS(1169), + [aux_sym_preproc_def_token1] = ACTIONS(1169), + [aux_sym_preproc_if_token1] = ACTIONS(1169), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1169), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1169), + [sym_preproc_directive] = ACTIONS(1169), + [anon_sym_LPAREN2] = ACTIONS(1171), + [anon_sym_BANG] = ACTIONS(1171), + [anon_sym_TILDE] = ACTIONS(1171), + [anon_sym_DASH] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1169), + [anon_sym_STAR] = ACTIONS(1171), + [anon_sym_AMP] = ACTIONS(1171), + [anon_sym_SEMI] = ACTIONS(1171), + [anon_sym___extension__] = ACTIONS(1169), + [anon_sym_typedef] = ACTIONS(1169), + [anon_sym_extern] = ACTIONS(1169), + [anon_sym___attribute__] = ACTIONS(1169), + [anon_sym___scanf] = ACTIONS(1169), + [anon_sym___printf] = ACTIONS(1169), + [anon_sym___read_mostly] = ACTIONS(1169), + [anon_sym___must_hold] = ACTIONS(1169), + [anon_sym___ro_after_init] = ACTIONS(1169), + [anon_sym___noreturn] = ACTIONS(1169), + [anon_sym___cold] = ACTIONS(1169), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1171), + [anon_sym___declspec] = ACTIONS(1169), + [anon_sym___init] = ACTIONS(1169), + [anon_sym___exit] = ACTIONS(1169), + [anon_sym___cdecl] = ACTIONS(1169), + [anon_sym___clrcall] = ACTIONS(1169), + [anon_sym___stdcall] = ACTIONS(1169), + [anon_sym___fastcall] = ACTIONS(1169), + [anon_sym___thiscall] = ACTIONS(1169), + [anon_sym___vectorcall] = ACTIONS(1169), + [anon_sym_LBRACE] = ACTIONS(1171), + [anon_sym_RBRACE] = ACTIONS(1171), + [anon_sym_signed] = ACTIONS(1169), + [anon_sym_unsigned] = ACTIONS(1169), + [anon_sym_long] = ACTIONS(1169), + [anon_sym_short] = ACTIONS(1169), + [anon_sym_static] = ACTIONS(1169), + [anon_sym_auto] = ACTIONS(1169), + [anon_sym_register] = ACTIONS(1169), + [anon_sym_inline] = ACTIONS(1169), + [anon_sym___inline] = ACTIONS(1169), + [anon_sym___inline__] = ACTIONS(1169), + [anon_sym___forceinline] = ACTIONS(1169), + [anon_sym_thread_local] = ACTIONS(1169), + [anon_sym___thread] = ACTIONS(1169), + [anon_sym_const] = ACTIONS(1169), + [anon_sym_constexpr] = ACTIONS(1169), + [anon_sym_volatile] = ACTIONS(1169), + [anon_sym_restrict] = ACTIONS(1169), + [anon_sym___restrict__] = ACTIONS(1169), + [anon_sym__Atomic] = ACTIONS(1169), + [anon_sym__Noreturn] = ACTIONS(1169), + [anon_sym_noreturn] = ACTIONS(1169), + [anon_sym_alignas] = ACTIONS(1169), + [anon_sym__Alignas] = ACTIONS(1169), + [sym_primitive_type] = ACTIONS(1169), + [anon_sym_enum] = ACTIONS(1169), + [anon_sym_struct] = ACTIONS(1169), + [anon_sym_union] = ACTIONS(1169), + [anon_sym_if] = ACTIONS(1169), + [anon_sym_else] = ACTIONS(1169), + [anon_sym_switch] = ACTIONS(1169), + [anon_sym_case] = ACTIONS(1169), + [anon_sym_default] = ACTIONS(1169), + [anon_sym_while] = ACTIONS(1169), + [anon_sym_do] = ACTIONS(1169), + [anon_sym_for] = ACTIONS(1169), + [anon_sym_return] = ACTIONS(1169), + [anon_sym_break] = ACTIONS(1169), + [anon_sym_continue] = ACTIONS(1169), + [anon_sym_goto] = ACTIONS(1169), + [anon_sym___try] = ACTIONS(1169), + [anon_sym___leave] = ACTIONS(1169), + [anon_sym_DASH_DASH] = ACTIONS(1171), + [anon_sym_PLUS_PLUS] = ACTIONS(1171), + [anon_sym_sizeof] = ACTIONS(1169), + [anon_sym___alignof__] = ACTIONS(1169), + [anon_sym___alignof] = ACTIONS(1169), + [anon_sym__alignof] = ACTIONS(1169), + [anon_sym_alignof] = ACTIONS(1169), + [anon_sym__Alignof] = ACTIONS(1169), + [anon_sym_offsetof] = ACTIONS(1169), + [anon_sym__Generic] = ACTIONS(1169), + [anon_sym_asm] = ACTIONS(1169), + [anon_sym___asm__] = ACTIONS(1169), + [sym_number_literal] = ACTIONS(1171), + [anon_sym_L_SQUOTE] = ACTIONS(1171), + [anon_sym_u_SQUOTE] = ACTIONS(1171), + [anon_sym_U_SQUOTE] = ACTIONS(1171), + [anon_sym_u8_SQUOTE] = ACTIONS(1171), + [anon_sym_SQUOTE] = ACTIONS(1171), + [anon_sym_L_DQUOTE] = ACTIONS(1171), + [anon_sym_u_DQUOTE] = ACTIONS(1171), + [anon_sym_U_DQUOTE] = ACTIONS(1171), + [anon_sym_u8_DQUOTE] = ACTIONS(1171), + [anon_sym_DQUOTE] = ACTIONS(1171), + [sym_true] = ACTIONS(1169), + [sym_false] = ACTIONS(1169), + [anon_sym_NULL] = ACTIONS(1169), + [anon_sym_nullptr] = ACTIONS(1169), [sym_comment] = ACTIONS(3), }, - [207] = { - [sym_identifier] = ACTIONS(1189), - [aux_sym_preproc_include_token1] = ACTIONS(1189), - [aux_sym_preproc_def_token1] = ACTIONS(1189), - [aux_sym_preproc_if_token1] = ACTIONS(1189), - [aux_sym_preproc_if_token2] = ACTIONS(1189), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1189), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1189), - [sym_preproc_directive] = ACTIONS(1189), - [anon_sym_LPAREN2] = ACTIONS(1191), - [anon_sym_BANG] = ACTIONS(1191), - [anon_sym_TILDE] = ACTIONS(1191), - [anon_sym_DASH] = ACTIONS(1189), - [anon_sym_PLUS] = ACTIONS(1189), - [anon_sym_STAR] = ACTIONS(1191), - [anon_sym_AMP] = ACTIONS(1191), - [anon_sym_SEMI] = ACTIONS(1191), - [anon_sym___extension__] = ACTIONS(1189), - [anon_sym_typedef] = ACTIONS(1189), - [anon_sym_extern] = ACTIONS(1189), - [anon_sym___attribute__] = ACTIONS(1189), - [anon_sym___scanf] = ACTIONS(1189), - [anon_sym___printf] = ACTIONS(1189), - [anon_sym___read_mostly] = ACTIONS(1189), - [anon_sym___must_hold] = ACTIONS(1189), - [anon_sym___ro_after_init] = ACTIONS(1189), - [anon_sym___init] = ACTIONS(1189), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1191), - [anon_sym___declspec] = ACTIONS(1189), - [anon_sym___cdecl] = ACTIONS(1189), - [anon_sym___clrcall] = ACTIONS(1189), - [anon_sym___stdcall] = ACTIONS(1189), - [anon_sym___fastcall] = ACTIONS(1189), - [anon_sym___thiscall] = ACTIONS(1189), - [anon_sym___vectorcall] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_signed] = ACTIONS(1189), - [anon_sym_unsigned] = ACTIONS(1189), - [anon_sym_long] = ACTIONS(1189), - [anon_sym_short] = ACTIONS(1189), - [anon_sym_static] = ACTIONS(1189), - [anon_sym_auto] = ACTIONS(1189), - [anon_sym_register] = ACTIONS(1189), - [anon_sym_inline] = ACTIONS(1189), - [anon_sym___inline] = ACTIONS(1189), - [anon_sym___inline__] = ACTIONS(1189), - [anon_sym___forceinline] = ACTIONS(1189), - [anon_sym_thread_local] = ACTIONS(1189), - [anon_sym___thread] = ACTIONS(1189), - [anon_sym_const] = ACTIONS(1189), - [anon_sym_constexpr] = ACTIONS(1189), - [anon_sym_volatile] = ACTIONS(1189), - [anon_sym_restrict] = ACTIONS(1189), - [anon_sym___restrict__] = ACTIONS(1189), - [anon_sym__Atomic] = ACTIONS(1189), - [anon_sym__Noreturn] = ACTIONS(1189), - [anon_sym_noreturn] = ACTIONS(1189), - [anon_sym_alignas] = ACTIONS(1189), - [anon_sym__Alignas] = ACTIONS(1189), - [sym_primitive_type] = ACTIONS(1189), - [anon_sym_enum] = ACTIONS(1189), - [anon_sym_struct] = ACTIONS(1189), - [anon_sym_union] = ACTIONS(1189), - [anon_sym_if] = ACTIONS(1189), - [anon_sym_else] = ACTIONS(1189), - [anon_sym_switch] = ACTIONS(1189), - [anon_sym_case] = ACTIONS(1189), - [anon_sym_default] = ACTIONS(1189), - [anon_sym_while] = ACTIONS(1189), - [anon_sym_do] = ACTIONS(1189), - [anon_sym_for] = ACTIONS(1189), - [anon_sym_return] = ACTIONS(1189), - [anon_sym_break] = ACTIONS(1189), - [anon_sym_continue] = ACTIONS(1189), - [anon_sym_goto] = ACTIONS(1189), - [anon_sym___try] = ACTIONS(1189), - [anon_sym___leave] = ACTIONS(1189), - [anon_sym_DASH_DASH] = ACTIONS(1191), - [anon_sym_PLUS_PLUS] = ACTIONS(1191), - [anon_sym_sizeof] = ACTIONS(1189), - [anon_sym___alignof__] = ACTIONS(1189), - [anon_sym___alignof] = ACTIONS(1189), - [anon_sym__alignof] = ACTIONS(1189), - [anon_sym_alignof] = ACTIONS(1189), - [anon_sym__Alignof] = ACTIONS(1189), - [anon_sym_offsetof] = ACTIONS(1189), - [anon_sym__Generic] = ACTIONS(1189), - [anon_sym_asm] = ACTIONS(1189), - [anon_sym___asm__] = ACTIONS(1189), - [sym_number_literal] = ACTIONS(1191), - [anon_sym_L_SQUOTE] = ACTIONS(1191), - [anon_sym_u_SQUOTE] = ACTIONS(1191), - [anon_sym_U_SQUOTE] = ACTIONS(1191), - [anon_sym_u8_SQUOTE] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1191), - [anon_sym_L_DQUOTE] = ACTIONS(1191), - [anon_sym_u_DQUOTE] = ACTIONS(1191), - [anon_sym_U_DQUOTE] = ACTIONS(1191), - [anon_sym_u8_DQUOTE] = ACTIONS(1191), - [anon_sym_DQUOTE] = ACTIONS(1191), - [sym_true] = ACTIONS(1189), - [sym_false] = ACTIONS(1189), - [anon_sym_NULL] = ACTIONS(1189), - [anon_sym_nullptr] = ACTIONS(1189), + [235] = { + [sym_identifier] = ACTIONS(1273), + [aux_sym_preproc_include_token1] = ACTIONS(1273), + [aux_sym_preproc_def_token1] = ACTIONS(1273), + [aux_sym_preproc_if_token1] = ACTIONS(1273), + [aux_sym_preproc_if_token2] = ACTIONS(1273), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1273), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1273), + [sym_preproc_directive] = ACTIONS(1273), + [anon_sym_LPAREN2] = ACTIONS(1275), + [anon_sym_BANG] = ACTIONS(1275), + [anon_sym_TILDE] = ACTIONS(1275), + [anon_sym_DASH] = ACTIONS(1273), + [anon_sym_PLUS] = ACTIONS(1273), + [anon_sym_STAR] = ACTIONS(1275), + [anon_sym_AMP] = ACTIONS(1275), + [anon_sym_SEMI] = ACTIONS(1275), + [anon_sym___extension__] = ACTIONS(1273), + [anon_sym_typedef] = ACTIONS(1273), + [anon_sym_extern] = ACTIONS(1273), + [anon_sym___attribute__] = ACTIONS(1273), + [anon_sym___scanf] = ACTIONS(1273), + [anon_sym___printf] = ACTIONS(1273), + [anon_sym___read_mostly] = ACTIONS(1273), + [anon_sym___must_hold] = ACTIONS(1273), + [anon_sym___ro_after_init] = ACTIONS(1273), + [anon_sym___noreturn] = ACTIONS(1273), + [anon_sym___cold] = ACTIONS(1273), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1275), + [anon_sym___declspec] = ACTIONS(1273), + [anon_sym___init] = ACTIONS(1273), + [anon_sym___exit] = ACTIONS(1273), + [anon_sym___cdecl] = ACTIONS(1273), + [anon_sym___clrcall] = ACTIONS(1273), + [anon_sym___stdcall] = ACTIONS(1273), + [anon_sym___fastcall] = ACTIONS(1273), + [anon_sym___thiscall] = ACTIONS(1273), + [anon_sym___vectorcall] = ACTIONS(1273), + [anon_sym_LBRACE] = ACTIONS(1275), + [anon_sym_signed] = ACTIONS(1273), + [anon_sym_unsigned] = ACTIONS(1273), + [anon_sym_long] = ACTIONS(1273), + [anon_sym_short] = ACTIONS(1273), + [anon_sym_static] = ACTIONS(1273), + [anon_sym_auto] = ACTIONS(1273), + [anon_sym_register] = ACTIONS(1273), + [anon_sym_inline] = ACTIONS(1273), + [anon_sym___inline] = ACTIONS(1273), + [anon_sym___inline__] = ACTIONS(1273), + [anon_sym___forceinline] = ACTIONS(1273), + [anon_sym_thread_local] = ACTIONS(1273), + [anon_sym___thread] = ACTIONS(1273), + [anon_sym_const] = ACTIONS(1273), + [anon_sym_constexpr] = ACTIONS(1273), + [anon_sym_volatile] = ACTIONS(1273), + [anon_sym_restrict] = ACTIONS(1273), + [anon_sym___restrict__] = ACTIONS(1273), + [anon_sym__Atomic] = ACTIONS(1273), + [anon_sym__Noreturn] = ACTIONS(1273), + [anon_sym_noreturn] = ACTIONS(1273), + [anon_sym_alignas] = ACTIONS(1273), + [anon_sym__Alignas] = ACTIONS(1273), + [sym_primitive_type] = ACTIONS(1273), + [anon_sym_enum] = ACTIONS(1273), + [anon_sym_struct] = ACTIONS(1273), + [anon_sym_union] = ACTIONS(1273), + [anon_sym_if] = ACTIONS(1273), + [anon_sym_else] = ACTIONS(1273), + [anon_sym_switch] = ACTIONS(1273), + [anon_sym_case] = ACTIONS(1273), + [anon_sym_default] = ACTIONS(1273), + [anon_sym_while] = ACTIONS(1273), + [anon_sym_do] = ACTIONS(1273), + [anon_sym_for] = ACTIONS(1273), + [anon_sym_return] = ACTIONS(1273), + [anon_sym_break] = ACTIONS(1273), + [anon_sym_continue] = ACTIONS(1273), + [anon_sym_goto] = ACTIONS(1273), + [anon_sym___try] = ACTIONS(1273), + [anon_sym___leave] = ACTIONS(1273), + [anon_sym_DASH_DASH] = ACTIONS(1275), + [anon_sym_PLUS_PLUS] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1273), + [anon_sym___alignof__] = ACTIONS(1273), + [anon_sym___alignof] = ACTIONS(1273), + [anon_sym__alignof] = ACTIONS(1273), + [anon_sym_alignof] = ACTIONS(1273), + [anon_sym__Alignof] = ACTIONS(1273), + [anon_sym_offsetof] = ACTIONS(1273), + [anon_sym__Generic] = ACTIONS(1273), + [anon_sym_asm] = ACTIONS(1273), + [anon_sym___asm__] = ACTIONS(1273), + [sym_number_literal] = ACTIONS(1275), + [anon_sym_L_SQUOTE] = ACTIONS(1275), + [anon_sym_u_SQUOTE] = ACTIONS(1275), + [anon_sym_U_SQUOTE] = ACTIONS(1275), + [anon_sym_u8_SQUOTE] = ACTIONS(1275), + [anon_sym_SQUOTE] = ACTIONS(1275), + [anon_sym_L_DQUOTE] = ACTIONS(1275), + [anon_sym_u_DQUOTE] = ACTIONS(1275), + [anon_sym_U_DQUOTE] = ACTIONS(1275), + [anon_sym_u8_DQUOTE] = ACTIONS(1275), + [anon_sym_DQUOTE] = ACTIONS(1275), + [sym_true] = ACTIONS(1273), + [sym_false] = ACTIONS(1273), + [anon_sym_NULL] = ACTIONS(1273), + [anon_sym_nullptr] = ACTIONS(1273), + [sym_comment] = ACTIONS(3), + }, + [236] = { + [sym_identifier] = ACTIONS(1213), + [aux_sym_preproc_include_token1] = ACTIONS(1213), + [aux_sym_preproc_def_token1] = ACTIONS(1213), + [aux_sym_preproc_if_token1] = ACTIONS(1213), + [aux_sym_preproc_if_token2] = ACTIONS(1213), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1213), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1213), + [sym_preproc_directive] = ACTIONS(1213), + [anon_sym_LPAREN2] = ACTIONS(1215), + [anon_sym_BANG] = ACTIONS(1215), + [anon_sym_TILDE] = ACTIONS(1215), + [anon_sym_DASH] = ACTIONS(1213), + [anon_sym_PLUS] = ACTIONS(1213), + [anon_sym_STAR] = ACTIONS(1215), + [anon_sym_AMP] = ACTIONS(1215), + [anon_sym_SEMI] = ACTIONS(1215), + [anon_sym___extension__] = ACTIONS(1213), + [anon_sym_typedef] = ACTIONS(1213), + [anon_sym_extern] = ACTIONS(1213), + [anon_sym___attribute__] = ACTIONS(1213), + [anon_sym___scanf] = ACTIONS(1213), + [anon_sym___printf] = ACTIONS(1213), + [anon_sym___read_mostly] = ACTIONS(1213), + [anon_sym___must_hold] = ACTIONS(1213), + [anon_sym___ro_after_init] = ACTIONS(1213), + [anon_sym___noreturn] = ACTIONS(1213), + [anon_sym___cold] = ACTIONS(1213), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1215), + [anon_sym___declspec] = ACTIONS(1213), + [anon_sym___init] = ACTIONS(1213), + [anon_sym___exit] = ACTIONS(1213), + [anon_sym___cdecl] = ACTIONS(1213), + [anon_sym___clrcall] = ACTIONS(1213), + [anon_sym___stdcall] = ACTIONS(1213), + [anon_sym___fastcall] = ACTIONS(1213), + [anon_sym___thiscall] = ACTIONS(1213), + [anon_sym___vectorcall] = ACTIONS(1213), + [anon_sym_LBRACE] = ACTIONS(1215), + [anon_sym_signed] = ACTIONS(1213), + [anon_sym_unsigned] = ACTIONS(1213), + [anon_sym_long] = ACTIONS(1213), + [anon_sym_short] = ACTIONS(1213), + [anon_sym_static] = ACTIONS(1213), + [anon_sym_auto] = ACTIONS(1213), + [anon_sym_register] = ACTIONS(1213), + [anon_sym_inline] = ACTIONS(1213), + [anon_sym___inline] = ACTIONS(1213), + [anon_sym___inline__] = ACTIONS(1213), + [anon_sym___forceinline] = ACTIONS(1213), + [anon_sym_thread_local] = ACTIONS(1213), + [anon_sym___thread] = ACTIONS(1213), + [anon_sym_const] = ACTIONS(1213), + [anon_sym_constexpr] = ACTIONS(1213), + [anon_sym_volatile] = ACTIONS(1213), + [anon_sym_restrict] = ACTIONS(1213), + [anon_sym___restrict__] = ACTIONS(1213), + [anon_sym__Atomic] = ACTIONS(1213), + [anon_sym__Noreturn] = ACTIONS(1213), + [anon_sym_noreturn] = ACTIONS(1213), + [anon_sym_alignas] = ACTIONS(1213), + [anon_sym__Alignas] = ACTIONS(1213), + [sym_primitive_type] = ACTIONS(1213), + [anon_sym_enum] = ACTIONS(1213), + [anon_sym_struct] = ACTIONS(1213), + [anon_sym_union] = ACTIONS(1213), + [anon_sym_if] = ACTIONS(1213), + [anon_sym_else] = ACTIONS(1213), + [anon_sym_switch] = ACTIONS(1213), + [anon_sym_case] = ACTIONS(1213), + [anon_sym_default] = ACTIONS(1213), + [anon_sym_while] = ACTIONS(1213), + [anon_sym_do] = ACTIONS(1213), + [anon_sym_for] = ACTIONS(1213), + [anon_sym_return] = ACTIONS(1213), + [anon_sym_break] = ACTIONS(1213), + [anon_sym_continue] = ACTIONS(1213), + [anon_sym_goto] = ACTIONS(1213), + [anon_sym___try] = ACTIONS(1213), + [anon_sym___leave] = ACTIONS(1213), + [anon_sym_DASH_DASH] = ACTIONS(1215), + [anon_sym_PLUS_PLUS] = ACTIONS(1215), + [anon_sym_sizeof] = ACTIONS(1213), + [anon_sym___alignof__] = ACTIONS(1213), + [anon_sym___alignof] = ACTIONS(1213), + [anon_sym__alignof] = ACTIONS(1213), + [anon_sym_alignof] = ACTIONS(1213), + [anon_sym__Alignof] = ACTIONS(1213), + [anon_sym_offsetof] = ACTIONS(1213), + [anon_sym__Generic] = ACTIONS(1213), + [anon_sym_asm] = ACTIONS(1213), + [anon_sym___asm__] = ACTIONS(1213), + [sym_number_literal] = ACTIONS(1215), + [anon_sym_L_SQUOTE] = ACTIONS(1215), + [anon_sym_u_SQUOTE] = ACTIONS(1215), + [anon_sym_U_SQUOTE] = ACTIONS(1215), + [anon_sym_u8_SQUOTE] = ACTIONS(1215), + [anon_sym_SQUOTE] = ACTIONS(1215), + [anon_sym_L_DQUOTE] = ACTIONS(1215), + [anon_sym_u_DQUOTE] = ACTIONS(1215), + [anon_sym_U_DQUOTE] = ACTIONS(1215), + [anon_sym_u8_DQUOTE] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1215), + [sym_true] = ACTIONS(1213), + [sym_false] = ACTIONS(1213), + [anon_sym_NULL] = ACTIONS(1213), + [anon_sym_nullptr] = ACTIONS(1213), [sym_comment] = ACTIONS(3), }, - [208] = { - [sym_identifier] = ACTIONS(1217), - [aux_sym_preproc_include_token1] = ACTIONS(1217), - [aux_sym_preproc_def_token1] = ACTIONS(1217), - [aux_sym_preproc_if_token1] = ACTIONS(1217), - [aux_sym_preproc_if_token2] = ACTIONS(1217), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1217), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1217), - [sym_preproc_directive] = ACTIONS(1217), - [anon_sym_LPAREN2] = ACTIONS(1219), - [anon_sym_BANG] = ACTIONS(1219), - [anon_sym_TILDE] = ACTIONS(1219), - [anon_sym_DASH] = ACTIONS(1217), - [anon_sym_PLUS] = ACTIONS(1217), - [anon_sym_STAR] = ACTIONS(1219), - [anon_sym_AMP] = ACTIONS(1219), - [anon_sym_SEMI] = ACTIONS(1219), - [anon_sym___extension__] = ACTIONS(1217), - [anon_sym_typedef] = ACTIONS(1217), - [anon_sym_extern] = ACTIONS(1217), - [anon_sym___attribute__] = ACTIONS(1217), - [anon_sym___scanf] = ACTIONS(1217), - [anon_sym___printf] = ACTIONS(1217), - [anon_sym___read_mostly] = ACTIONS(1217), - [anon_sym___must_hold] = ACTIONS(1217), - [anon_sym___ro_after_init] = ACTIONS(1217), - [anon_sym___init] = ACTIONS(1217), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1219), - [anon_sym___declspec] = ACTIONS(1217), - [anon_sym___cdecl] = ACTIONS(1217), - [anon_sym___clrcall] = ACTIONS(1217), - [anon_sym___stdcall] = ACTIONS(1217), - [anon_sym___fastcall] = ACTIONS(1217), - [anon_sym___thiscall] = ACTIONS(1217), - [anon_sym___vectorcall] = ACTIONS(1217), - [anon_sym_LBRACE] = ACTIONS(1219), - [anon_sym_signed] = ACTIONS(1217), - [anon_sym_unsigned] = ACTIONS(1217), - [anon_sym_long] = ACTIONS(1217), - [anon_sym_short] = ACTIONS(1217), - [anon_sym_static] = ACTIONS(1217), - [anon_sym_auto] = ACTIONS(1217), - [anon_sym_register] = ACTIONS(1217), - [anon_sym_inline] = ACTIONS(1217), - [anon_sym___inline] = ACTIONS(1217), - [anon_sym___inline__] = ACTIONS(1217), - [anon_sym___forceinline] = ACTIONS(1217), - [anon_sym_thread_local] = ACTIONS(1217), - [anon_sym___thread] = ACTIONS(1217), - [anon_sym_const] = ACTIONS(1217), - [anon_sym_constexpr] = ACTIONS(1217), - [anon_sym_volatile] = ACTIONS(1217), - [anon_sym_restrict] = ACTIONS(1217), - [anon_sym___restrict__] = ACTIONS(1217), - [anon_sym__Atomic] = ACTIONS(1217), - [anon_sym__Noreturn] = ACTIONS(1217), - [anon_sym_noreturn] = ACTIONS(1217), - [anon_sym_alignas] = ACTIONS(1217), - [anon_sym__Alignas] = ACTIONS(1217), - [sym_primitive_type] = ACTIONS(1217), - [anon_sym_enum] = ACTIONS(1217), - [anon_sym_struct] = ACTIONS(1217), - [anon_sym_union] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1217), - [anon_sym_else] = ACTIONS(1217), - [anon_sym_switch] = ACTIONS(1217), - [anon_sym_case] = ACTIONS(1217), - [anon_sym_default] = ACTIONS(1217), - [anon_sym_while] = ACTIONS(1217), - [anon_sym_do] = ACTIONS(1217), - [anon_sym_for] = ACTIONS(1217), - [anon_sym_return] = ACTIONS(1217), - [anon_sym_break] = ACTIONS(1217), - [anon_sym_continue] = ACTIONS(1217), - [anon_sym_goto] = ACTIONS(1217), - [anon_sym___try] = ACTIONS(1217), - [anon_sym___leave] = ACTIONS(1217), - [anon_sym_DASH_DASH] = ACTIONS(1219), - [anon_sym_PLUS_PLUS] = ACTIONS(1219), - [anon_sym_sizeof] = ACTIONS(1217), - [anon_sym___alignof__] = ACTIONS(1217), - [anon_sym___alignof] = ACTIONS(1217), - [anon_sym__alignof] = ACTIONS(1217), - [anon_sym_alignof] = ACTIONS(1217), - [anon_sym__Alignof] = ACTIONS(1217), - [anon_sym_offsetof] = ACTIONS(1217), - [anon_sym__Generic] = ACTIONS(1217), - [anon_sym_asm] = ACTIONS(1217), - [anon_sym___asm__] = ACTIONS(1217), - [sym_number_literal] = ACTIONS(1219), - [anon_sym_L_SQUOTE] = ACTIONS(1219), - [anon_sym_u_SQUOTE] = ACTIONS(1219), - [anon_sym_U_SQUOTE] = ACTIONS(1219), - [anon_sym_u8_SQUOTE] = ACTIONS(1219), - [anon_sym_SQUOTE] = ACTIONS(1219), - [anon_sym_L_DQUOTE] = ACTIONS(1219), - [anon_sym_u_DQUOTE] = ACTIONS(1219), - [anon_sym_U_DQUOTE] = ACTIONS(1219), - [anon_sym_u8_DQUOTE] = ACTIONS(1219), - [anon_sym_DQUOTE] = ACTIONS(1219), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [anon_sym_NULL] = ACTIONS(1217), - [anon_sym_nullptr] = ACTIONS(1217), + [237] = { + [sym_identifier] = ACTIONS(1153), + [aux_sym_preproc_include_token1] = ACTIONS(1153), + [aux_sym_preproc_def_token1] = ACTIONS(1153), + [aux_sym_preproc_if_token1] = ACTIONS(1153), + [aux_sym_preproc_if_token2] = ACTIONS(1153), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1153), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1153), + [sym_preproc_directive] = ACTIONS(1153), + [anon_sym_LPAREN2] = ACTIONS(1155), + [anon_sym_BANG] = ACTIONS(1155), + [anon_sym_TILDE] = ACTIONS(1155), + [anon_sym_DASH] = ACTIONS(1153), + [anon_sym_PLUS] = ACTIONS(1153), + [anon_sym_STAR] = ACTIONS(1155), + [anon_sym_AMP] = ACTIONS(1155), + [anon_sym_SEMI] = ACTIONS(1155), + [anon_sym___extension__] = ACTIONS(1153), + [anon_sym_typedef] = ACTIONS(1153), + [anon_sym_extern] = ACTIONS(1153), + [anon_sym___attribute__] = ACTIONS(1153), + [anon_sym___scanf] = ACTIONS(1153), + [anon_sym___printf] = ACTIONS(1153), + [anon_sym___read_mostly] = ACTIONS(1153), + [anon_sym___must_hold] = ACTIONS(1153), + [anon_sym___ro_after_init] = ACTIONS(1153), + [anon_sym___noreturn] = ACTIONS(1153), + [anon_sym___cold] = ACTIONS(1153), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1155), + [anon_sym___declspec] = ACTIONS(1153), + [anon_sym___init] = ACTIONS(1153), + [anon_sym___exit] = ACTIONS(1153), + [anon_sym___cdecl] = ACTIONS(1153), + [anon_sym___clrcall] = ACTIONS(1153), + [anon_sym___stdcall] = ACTIONS(1153), + [anon_sym___fastcall] = ACTIONS(1153), + [anon_sym___thiscall] = ACTIONS(1153), + [anon_sym___vectorcall] = ACTIONS(1153), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_signed] = ACTIONS(1153), + [anon_sym_unsigned] = ACTIONS(1153), + [anon_sym_long] = ACTIONS(1153), + [anon_sym_short] = ACTIONS(1153), + [anon_sym_static] = ACTIONS(1153), + [anon_sym_auto] = ACTIONS(1153), + [anon_sym_register] = ACTIONS(1153), + [anon_sym_inline] = ACTIONS(1153), + [anon_sym___inline] = ACTIONS(1153), + [anon_sym___inline__] = ACTIONS(1153), + [anon_sym___forceinline] = ACTIONS(1153), + [anon_sym_thread_local] = ACTIONS(1153), + [anon_sym___thread] = ACTIONS(1153), + [anon_sym_const] = ACTIONS(1153), + [anon_sym_constexpr] = ACTIONS(1153), + [anon_sym_volatile] = ACTIONS(1153), + [anon_sym_restrict] = ACTIONS(1153), + [anon_sym___restrict__] = ACTIONS(1153), + [anon_sym__Atomic] = ACTIONS(1153), + [anon_sym__Noreturn] = ACTIONS(1153), + [anon_sym_noreturn] = ACTIONS(1153), + [anon_sym_alignas] = ACTIONS(1153), + [anon_sym__Alignas] = ACTIONS(1153), + [sym_primitive_type] = ACTIONS(1153), + [anon_sym_enum] = ACTIONS(1153), + [anon_sym_struct] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1153), + [anon_sym_if] = ACTIONS(1153), + [anon_sym_else] = ACTIONS(1153), + [anon_sym_switch] = ACTIONS(1153), + [anon_sym_case] = ACTIONS(1153), + [anon_sym_default] = ACTIONS(1153), + [anon_sym_while] = ACTIONS(1153), + [anon_sym_do] = ACTIONS(1153), + [anon_sym_for] = ACTIONS(1153), + [anon_sym_return] = ACTIONS(1153), + [anon_sym_break] = ACTIONS(1153), + [anon_sym_continue] = ACTIONS(1153), + [anon_sym_goto] = ACTIONS(1153), + [anon_sym___try] = ACTIONS(1153), + [anon_sym___leave] = ACTIONS(1153), + [anon_sym_DASH_DASH] = ACTIONS(1155), + [anon_sym_PLUS_PLUS] = ACTIONS(1155), + [anon_sym_sizeof] = ACTIONS(1153), + [anon_sym___alignof__] = ACTIONS(1153), + [anon_sym___alignof] = ACTIONS(1153), + [anon_sym__alignof] = ACTIONS(1153), + [anon_sym_alignof] = ACTIONS(1153), + [anon_sym__Alignof] = ACTIONS(1153), + [anon_sym_offsetof] = ACTIONS(1153), + [anon_sym__Generic] = ACTIONS(1153), + [anon_sym_asm] = ACTIONS(1153), + [anon_sym___asm__] = ACTIONS(1153), + [sym_number_literal] = ACTIONS(1155), + [anon_sym_L_SQUOTE] = ACTIONS(1155), + [anon_sym_u_SQUOTE] = ACTIONS(1155), + [anon_sym_U_SQUOTE] = ACTIONS(1155), + [anon_sym_u8_SQUOTE] = ACTIONS(1155), + [anon_sym_SQUOTE] = ACTIONS(1155), + [anon_sym_L_DQUOTE] = ACTIONS(1155), + [anon_sym_u_DQUOTE] = ACTIONS(1155), + [anon_sym_U_DQUOTE] = ACTIONS(1155), + [anon_sym_u8_DQUOTE] = ACTIONS(1155), + [anon_sym_DQUOTE] = ACTIONS(1155), + [sym_true] = ACTIONS(1153), + [sym_false] = ACTIONS(1153), + [anon_sym_NULL] = ACTIONS(1153), + [anon_sym_nullptr] = ACTIONS(1153), [sym_comment] = ACTIONS(3), }, - [209] = { - [sym_identifier] = ACTIONS(1233), - [aux_sym_preproc_include_token1] = ACTIONS(1233), - [aux_sym_preproc_def_token1] = ACTIONS(1233), - [aux_sym_preproc_if_token1] = ACTIONS(1233), - [aux_sym_preproc_if_token2] = ACTIONS(1233), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1233), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1233), - [sym_preproc_directive] = ACTIONS(1233), - [anon_sym_LPAREN2] = ACTIONS(1235), - [anon_sym_BANG] = ACTIONS(1235), - [anon_sym_TILDE] = ACTIONS(1235), - [anon_sym_DASH] = ACTIONS(1233), - [anon_sym_PLUS] = ACTIONS(1233), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_AMP] = ACTIONS(1235), - [anon_sym_SEMI] = ACTIONS(1235), - [anon_sym___extension__] = ACTIONS(1233), - [anon_sym_typedef] = ACTIONS(1233), - [anon_sym_extern] = ACTIONS(1233), - [anon_sym___attribute__] = ACTIONS(1233), - [anon_sym___scanf] = ACTIONS(1233), - [anon_sym___printf] = ACTIONS(1233), - [anon_sym___read_mostly] = ACTIONS(1233), - [anon_sym___must_hold] = ACTIONS(1233), - [anon_sym___ro_after_init] = ACTIONS(1233), - [anon_sym___init] = ACTIONS(1233), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1235), - [anon_sym___declspec] = ACTIONS(1233), - [anon_sym___cdecl] = ACTIONS(1233), - [anon_sym___clrcall] = ACTIONS(1233), - [anon_sym___stdcall] = ACTIONS(1233), - [anon_sym___fastcall] = ACTIONS(1233), - [anon_sym___thiscall] = ACTIONS(1233), - [anon_sym___vectorcall] = ACTIONS(1233), - [anon_sym_LBRACE] = ACTIONS(1235), - [anon_sym_signed] = ACTIONS(1233), - [anon_sym_unsigned] = ACTIONS(1233), - [anon_sym_long] = ACTIONS(1233), - [anon_sym_short] = ACTIONS(1233), - [anon_sym_static] = ACTIONS(1233), - [anon_sym_auto] = ACTIONS(1233), - [anon_sym_register] = ACTIONS(1233), - [anon_sym_inline] = ACTIONS(1233), - [anon_sym___inline] = ACTIONS(1233), - [anon_sym___inline__] = ACTIONS(1233), - [anon_sym___forceinline] = ACTIONS(1233), - [anon_sym_thread_local] = ACTIONS(1233), - [anon_sym___thread] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_constexpr] = ACTIONS(1233), - [anon_sym_volatile] = ACTIONS(1233), - [anon_sym_restrict] = ACTIONS(1233), - [anon_sym___restrict__] = ACTIONS(1233), - [anon_sym__Atomic] = ACTIONS(1233), - [anon_sym__Noreturn] = ACTIONS(1233), - [anon_sym_noreturn] = ACTIONS(1233), - [anon_sym_alignas] = ACTIONS(1233), - [anon_sym__Alignas] = ACTIONS(1233), - [sym_primitive_type] = ACTIONS(1233), - [anon_sym_enum] = ACTIONS(1233), - [anon_sym_struct] = ACTIONS(1233), - [anon_sym_union] = ACTIONS(1233), - [anon_sym_if] = ACTIONS(1233), - [anon_sym_else] = ACTIONS(1233), - [anon_sym_switch] = ACTIONS(1233), - [anon_sym_case] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1233), - [anon_sym_while] = ACTIONS(1233), - [anon_sym_do] = ACTIONS(1233), - [anon_sym_for] = ACTIONS(1233), - [anon_sym_return] = ACTIONS(1233), - [anon_sym_break] = ACTIONS(1233), - [anon_sym_continue] = ACTIONS(1233), - [anon_sym_goto] = ACTIONS(1233), - [anon_sym___try] = ACTIONS(1233), - [anon_sym___leave] = ACTIONS(1233), - [anon_sym_DASH_DASH] = ACTIONS(1235), - [anon_sym_PLUS_PLUS] = ACTIONS(1235), - [anon_sym_sizeof] = ACTIONS(1233), - [anon_sym___alignof__] = ACTIONS(1233), - [anon_sym___alignof] = ACTIONS(1233), - [anon_sym__alignof] = ACTIONS(1233), - [anon_sym_alignof] = ACTIONS(1233), - [anon_sym__Alignof] = ACTIONS(1233), - [anon_sym_offsetof] = ACTIONS(1233), - [anon_sym__Generic] = ACTIONS(1233), - [anon_sym_asm] = ACTIONS(1233), - [anon_sym___asm__] = ACTIONS(1233), - [sym_number_literal] = ACTIONS(1235), - [anon_sym_L_SQUOTE] = ACTIONS(1235), - [anon_sym_u_SQUOTE] = ACTIONS(1235), - [anon_sym_U_SQUOTE] = ACTIONS(1235), - [anon_sym_u8_SQUOTE] = ACTIONS(1235), - [anon_sym_SQUOTE] = ACTIONS(1235), - [anon_sym_L_DQUOTE] = ACTIONS(1235), - [anon_sym_u_DQUOTE] = ACTIONS(1235), - [anon_sym_U_DQUOTE] = ACTIONS(1235), - [anon_sym_u8_DQUOTE] = ACTIONS(1235), - [anon_sym_DQUOTE] = ACTIONS(1235), - [sym_true] = ACTIONS(1233), - [sym_false] = ACTIONS(1233), - [anon_sym_NULL] = ACTIONS(1233), - [anon_sym_nullptr] = ACTIONS(1233), + [238] = { + [sym_identifier] = ACTIONS(1209), + [aux_sym_preproc_include_token1] = ACTIONS(1209), + [aux_sym_preproc_def_token1] = ACTIONS(1209), + [aux_sym_preproc_if_token1] = ACTIONS(1209), + [aux_sym_preproc_if_token2] = ACTIONS(1209), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1209), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1209), + [sym_preproc_directive] = ACTIONS(1209), + [anon_sym_LPAREN2] = ACTIONS(1211), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_TILDE] = ACTIONS(1211), + [anon_sym_DASH] = ACTIONS(1209), + [anon_sym_PLUS] = ACTIONS(1209), + [anon_sym_STAR] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(1211), + [anon_sym_SEMI] = ACTIONS(1211), + [anon_sym___extension__] = ACTIONS(1209), + [anon_sym_typedef] = ACTIONS(1209), + [anon_sym_extern] = ACTIONS(1209), + [anon_sym___attribute__] = ACTIONS(1209), + [anon_sym___scanf] = ACTIONS(1209), + [anon_sym___printf] = ACTIONS(1209), + [anon_sym___read_mostly] = ACTIONS(1209), + [anon_sym___must_hold] = ACTIONS(1209), + [anon_sym___ro_after_init] = ACTIONS(1209), + [anon_sym___noreturn] = ACTIONS(1209), + [anon_sym___cold] = ACTIONS(1209), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1211), + [anon_sym___declspec] = ACTIONS(1209), + [anon_sym___init] = ACTIONS(1209), + [anon_sym___exit] = ACTIONS(1209), + [anon_sym___cdecl] = ACTIONS(1209), + [anon_sym___clrcall] = ACTIONS(1209), + [anon_sym___stdcall] = ACTIONS(1209), + [anon_sym___fastcall] = ACTIONS(1209), + [anon_sym___thiscall] = ACTIONS(1209), + [anon_sym___vectorcall] = ACTIONS(1209), + [anon_sym_LBRACE] = ACTIONS(1211), + [anon_sym_signed] = ACTIONS(1209), + [anon_sym_unsigned] = ACTIONS(1209), + [anon_sym_long] = ACTIONS(1209), + [anon_sym_short] = ACTIONS(1209), + [anon_sym_static] = ACTIONS(1209), + [anon_sym_auto] = ACTIONS(1209), + [anon_sym_register] = ACTIONS(1209), + [anon_sym_inline] = ACTIONS(1209), + [anon_sym___inline] = ACTIONS(1209), + [anon_sym___inline__] = ACTIONS(1209), + [anon_sym___forceinline] = ACTIONS(1209), + [anon_sym_thread_local] = ACTIONS(1209), + [anon_sym___thread] = ACTIONS(1209), + [anon_sym_const] = ACTIONS(1209), + [anon_sym_constexpr] = ACTIONS(1209), + [anon_sym_volatile] = ACTIONS(1209), + [anon_sym_restrict] = ACTIONS(1209), + [anon_sym___restrict__] = ACTIONS(1209), + [anon_sym__Atomic] = ACTIONS(1209), + [anon_sym__Noreturn] = ACTIONS(1209), + [anon_sym_noreturn] = ACTIONS(1209), + [anon_sym_alignas] = ACTIONS(1209), + [anon_sym__Alignas] = ACTIONS(1209), + [sym_primitive_type] = ACTIONS(1209), + [anon_sym_enum] = ACTIONS(1209), + [anon_sym_struct] = ACTIONS(1209), + [anon_sym_union] = ACTIONS(1209), + [anon_sym_if] = ACTIONS(1209), + [anon_sym_else] = ACTIONS(1209), + [anon_sym_switch] = ACTIONS(1209), + [anon_sym_case] = ACTIONS(1209), + [anon_sym_default] = ACTIONS(1209), + [anon_sym_while] = ACTIONS(1209), + [anon_sym_do] = ACTIONS(1209), + [anon_sym_for] = ACTIONS(1209), + [anon_sym_return] = ACTIONS(1209), + [anon_sym_break] = ACTIONS(1209), + [anon_sym_continue] = ACTIONS(1209), + [anon_sym_goto] = ACTIONS(1209), + [anon_sym___try] = ACTIONS(1209), + [anon_sym___leave] = ACTIONS(1209), + [anon_sym_DASH_DASH] = ACTIONS(1211), + [anon_sym_PLUS_PLUS] = ACTIONS(1211), + [anon_sym_sizeof] = ACTIONS(1209), + [anon_sym___alignof__] = ACTIONS(1209), + [anon_sym___alignof] = ACTIONS(1209), + [anon_sym__alignof] = ACTIONS(1209), + [anon_sym_alignof] = ACTIONS(1209), + [anon_sym__Alignof] = ACTIONS(1209), + [anon_sym_offsetof] = ACTIONS(1209), + [anon_sym__Generic] = ACTIONS(1209), + [anon_sym_asm] = ACTIONS(1209), + [anon_sym___asm__] = ACTIONS(1209), + [sym_number_literal] = ACTIONS(1211), + [anon_sym_L_SQUOTE] = ACTIONS(1211), + [anon_sym_u_SQUOTE] = ACTIONS(1211), + [anon_sym_U_SQUOTE] = ACTIONS(1211), + [anon_sym_u8_SQUOTE] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(1211), + [anon_sym_L_DQUOTE] = ACTIONS(1211), + [anon_sym_u_DQUOTE] = ACTIONS(1211), + [anon_sym_U_DQUOTE] = ACTIONS(1211), + [anon_sym_u8_DQUOTE] = ACTIONS(1211), + [anon_sym_DQUOTE] = ACTIONS(1211), + [sym_true] = ACTIONS(1209), + [sym_false] = ACTIONS(1209), + [anon_sym_NULL] = ACTIONS(1209), + [anon_sym_nullptr] = ACTIONS(1209), [sym_comment] = ACTIONS(3), }, - [210] = { - [sym_identifier] = ACTIONS(1221), - [aux_sym_preproc_include_token1] = ACTIONS(1221), - [aux_sym_preproc_def_token1] = ACTIONS(1221), - [aux_sym_preproc_if_token1] = ACTIONS(1221), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1221), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1221), - [sym_preproc_directive] = ACTIONS(1221), - [anon_sym_LPAREN2] = ACTIONS(1223), - [anon_sym_BANG] = ACTIONS(1223), - [anon_sym_TILDE] = ACTIONS(1223), - [anon_sym_DASH] = ACTIONS(1221), - [anon_sym_PLUS] = ACTIONS(1221), - [anon_sym_STAR] = ACTIONS(1223), - [anon_sym_AMP] = ACTIONS(1223), - [anon_sym_SEMI] = ACTIONS(1223), - [anon_sym___extension__] = ACTIONS(1221), - [anon_sym_typedef] = ACTIONS(1221), - [anon_sym_extern] = ACTIONS(1221), - [anon_sym___attribute__] = ACTIONS(1221), - [anon_sym___scanf] = ACTIONS(1221), - [anon_sym___printf] = ACTIONS(1221), - [anon_sym___read_mostly] = ACTIONS(1221), - [anon_sym___must_hold] = ACTIONS(1221), - [anon_sym___ro_after_init] = ACTIONS(1221), - [anon_sym___init] = ACTIONS(1221), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1223), - [anon_sym___declspec] = ACTIONS(1221), - [anon_sym___cdecl] = ACTIONS(1221), - [anon_sym___clrcall] = ACTIONS(1221), - [anon_sym___stdcall] = ACTIONS(1221), - [anon_sym___fastcall] = ACTIONS(1221), - [anon_sym___thiscall] = ACTIONS(1221), - [anon_sym___vectorcall] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_RBRACE] = ACTIONS(1223), - [anon_sym_signed] = ACTIONS(1221), - [anon_sym_unsigned] = ACTIONS(1221), - [anon_sym_long] = ACTIONS(1221), - [anon_sym_short] = ACTIONS(1221), - [anon_sym_static] = ACTIONS(1221), - [anon_sym_auto] = ACTIONS(1221), - [anon_sym_register] = ACTIONS(1221), - [anon_sym_inline] = ACTIONS(1221), - [anon_sym___inline] = ACTIONS(1221), - [anon_sym___inline__] = ACTIONS(1221), - [anon_sym___forceinline] = ACTIONS(1221), - [anon_sym_thread_local] = ACTIONS(1221), - [anon_sym___thread] = ACTIONS(1221), - [anon_sym_const] = ACTIONS(1221), - [anon_sym_constexpr] = ACTIONS(1221), - [anon_sym_volatile] = ACTIONS(1221), - [anon_sym_restrict] = ACTIONS(1221), - [anon_sym___restrict__] = ACTIONS(1221), - [anon_sym__Atomic] = ACTIONS(1221), - [anon_sym__Noreturn] = ACTIONS(1221), - [anon_sym_noreturn] = ACTIONS(1221), - [anon_sym_alignas] = ACTIONS(1221), - [anon_sym__Alignas] = ACTIONS(1221), - [sym_primitive_type] = ACTIONS(1221), - [anon_sym_enum] = ACTIONS(1221), - [anon_sym_struct] = ACTIONS(1221), - [anon_sym_union] = ACTIONS(1221), - [anon_sym_if] = ACTIONS(1221), - [anon_sym_else] = ACTIONS(1221), - [anon_sym_switch] = ACTIONS(1221), - [anon_sym_case] = ACTIONS(1221), - [anon_sym_default] = ACTIONS(1221), - [anon_sym_while] = ACTIONS(1221), - [anon_sym_do] = ACTIONS(1221), - [anon_sym_for] = ACTIONS(1221), - [anon_sym_return] = ACTIONS(1221), - [anon_sym_break] = ACTIONS(1221), - [anon_sym_continue] = ACTIONS(1221), - [anon_sym_goto] = ACTIONS(1221), - [anon_sym___try] = ACTIONS(1221), - [anon_sym___leave] = ACTIONS(1221), - [anon_sym_DASH_DASH] = ACTIONS(1223), - [anon_sym_PLUS_PLUS] = ACTIONS(1223), - [anon_sym_sizeof] = ACTIONS(1221), - [anon_sym___alignof__] = ACTIONS(1221), - [anon_sym___alignof] = ACTIONS(1221), - [anon_sym__alignof] = ACTIONS(1221), - [anon_sym_alignof] = ACTIONS(1221), - [anon_sym__Alignof] = ACTIONS(1221), - [anon_sym_offsetof] = ACTIONS(1221), - [anon_sym__Generic] = ACTIONS(1221), - [anon_sym_asm] = ACTIONS(1221), - [anon_sym___asm__] = ACTIONS(1221), - [sym_number_literal] = ACTIONS(1223), - [anon_sym_L_SQUOTE] = ACTIONS(1223), - [anon_sym_u_SQUOTE] = ACTIONS(1223), - [anon_sym_U_SQUOTE] = ACTIONS(1223), - [anon_sym_u8_SQUOTE] = ACTIONS(1223), - [anon_sym_SQUOTE] = ACTIONS(1223), - [anon_sym_L_DQUOTE] = ACTIONS(1223), - [anon_sym_u_DQUOTE] = ACTIONS(1223), - [anon_sym_U_DQUOTE] = ACTIONS(1223), - [anon_sym_u8_DQUOTE] = ACTIONS(1223), - [anon_sym_DQUOTE] = ACTIONS(1223), - [sym_true] = ACTIONS(1221), - [sym_false] = ACTIONS(1221), - [anon_sym_NULL] = ACTIONS(1221), - [anon_sym_nullptr] = ACTIONS(1221), + [239] = { + [sym_identifier] = ACTIONS(1205), + [aux_sym_preproc_include_token1] = ACTIONS(1205), + [aux_sym_preproc_def_token1] = ACTIONS(1205), + [aux_sym_preproc_if_token1] = ACTIONS(1205), + [aux_sym_preproc_if_token2] = ACTIONS(1205), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1205), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1205), + [sym_preproc_directive] = ACTIONS(1205), + [anon_sym_LPAREN2] = ACTIONS(1207), + [anon_sym_BANG] = ACTIONS(1207), + [anon_sym_TILDE] = ACTIONS(1207), + [anon_sym_DASH] = ACTIONS(1205), + [anon_sym_PLUS] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1207), + [anon_sym_AMP] = ACTIONS(1207), + [anon_sym_SEMI] = ACTIONS(1207), + [anon_sym___extension__] = ACTIONS(1205), + [anon_sym_typedef] = ACTIONS(1205), + [anon_sym_extern] = ACTIONS(1205), + [anon_sym___attribute__] = ACTIONS(1205), + [anon_sym___scanf] = ACTIONS(1205), + [anon_sym___printf] = ACTIONS(1205), + [anon_sym___read_mostly] = ACTIONS(1205), + [anon_sym___must_hold] = ACTIONS(1205), + [anon_sym___ro_after_init] = ACTIONS(1205), + [anon_sym___noreturn] = ACTIONS(1205), + [anon_sym___cold] = ACTIONS(1205), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1207), + [anon_sym___declspec] = ACTIONS(1205), + [anon_sym___init] = ACTIONS(1205), + [anon_sym___exit] = ACTIONS(1205), + [anon_sym___cdecl] = ACTIONS(1205), + [anon_sym___clrcall] = ACTIONS(1205), + [anon_sym___stdcall] = ACTIONS(1205), + [anon_sym___fastcall] = ACTIONS(1205), + [anon_sym___thiscall] = ACTIONS(1205), + [anon_sym___vectorcall] = ACTIONS(1205), + [anon_sym_LBRACE] = ACTIONS(1207), + [anon_sym_signed] = ACTIONS(1205), + [anon_sym_unsigned] = ACTIONS(1205), + [anon_sym_long] = ACTIONS(1205), + [anon_sym_short] = ACTIONS(1205), + [anon_sym_static] = ACTIONS(1205), + [anon_sym_auto] = ACTIONS(1205), + [anon_sym_register] = ACTIONS(1205), + [anon_sym_inline] = ACTIONS(1205), + [anon_sym___inline] = ACTIONS(1205), + [anon_sym___inline__] = ACTIONS(1205), + [anon_sym___forceinline] = ACTIONS(1205), + [anon_sym_thread_local] = ACTIONS(1205), + [anon_sym___thread] = ACTIONS(1205), + [anon_sym_const] = ACTIONS(1205), + [anon_sym_constexpr] = ACTIONS(1205), + [anon_sym_volatile] = ACTIONS(1205), + [anon_sym_restrict] = ACTIONS(1205), + [anon_sym___restrict__] = ACTIONS(1205), + [anon_sym__Atomic] = ACTIONS(1205), + [anon_sym__Noreturn] = ACTIONS(1205), + [anon_sym_noreturn] = ACTIONS(1205), + [anon_sym_alignas] = ACTIONS(1205), + [anon_sym__Alignas] = ACTIONS(1205), + [sym_primitive_type] = ACTIONS(1205), + [anon_sym_enum] = ACTIONS(1205), + [anon_sym_struct] = ACTIONS(1205), + [anon_sym_union] = ACTIONS(1205), + [anon_sym_if] = ACTIONS(1205), + [anon_sym_else] = ACTIONS(1205), + [anon_sym_switch] = ACTIONS(1205), + [anon_sym_case] = ACTIONS(1205), + [anon_sym_default] = ACTIONS(1205), + [anon_sym_while] = ACTIONS(1205), + [anon_sym_do] = ACTIONS(1205), + [anon_sym_for] = ACTIONS(1205), + [anon_sym_return] = ACTIONS(1205), + [anon_sym_break] = ACTIONS(1205), + [anon_sym_continue] = ACTIONS(1205), + [anon_sym_goto] = ACTIONS(1205), + [anon_sym___try] = ACTIONS(1205), + [anon_sym___leave] = ACTIONS(1205), + [anon_sym_DASH_DASH] = ACTIONS(1207), + [anon_sym_PLUS_PLUS] = ACTIONS(1207), + [anon_sym_sizeof] = ACTIONS(1205), + [anon_sym___alignof__] = ACTIONS(1205), + [anon_sym___alignof] = ACTIONS(1205), + [anon_sym__alignof] = ACTIONS(1205), + [anon_sym_alignof] = ACTIONS(1205), + [anon_sym__Alignof] = ACTIONS(1205), + [anon_sym_offsetof] = ACTIONS(1205), + [anon_sym__Generic] = ACTIONS(1205), + [anon_sym_asm] = ACTIONS(1205), + [anon_sym___asm__] = ACTIONS(1205), + [sym_number_literal] = ACTIONS(1207), + [anon_sym_L_SQUOTE] = ACTIONS(1207), + [anon_sym_u_SQUOTE] = ACTIONS(1207), + [anon_sym_U_SQUOTE] = ACTIONS(1207), + [anon_sym_u8_SQUOTE] = ACTIONS(1207), + [anon_sym_SQUOTE] = ACTIONS(1207), + [anon_sym_L_DQUOTE] = ACTIONS(1207), + [anon_sym_u_DQUOTE] = ACTIONS(1207), + [anon_sym_U_DQUOTE] = ACTIONS(1207), + [anon_sym_u8_DQUOTE] = ACTIONS(1207), + [anon_sym_DQUOTE] = ACTIONS(1207), + [sym_true] = ACTIONS(1205), + [sym_false] = ACTIONS(1205), + [anon_sym_NULL] = ACTIONS(1205), + [anon_sym_nullptr] = ACTIONS(1205), [sym_comment] = ACTIONS(3), }, - [211] = { - [sym_identifier] = ACTIONS(1189), - [aux_sym_preproc_include_token1] = ACTIONS(1189), - [aux_sym_preproc_def_token1] = ACTIONS(1189), - [aux_sym_preproc_if_token1] = ACTIONS(1189), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1189), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1189), - [sym_preproc_directive] = ACTIONS(1189), - [anon_sym_LPAREN2] = ACTIONS(1191), - [anon_sym_BANG] = ACTIONS(1191), - [anon_sym_TILDE] = ACTIONS(1191), - [anon_sym_DASH] = ACTIONS(1189), - [anon_sym_PLUS] = ACTIONS(1189), - [anon_sym_STAR] = ACTIONS(1191), - [anon_sym_AMP] = ACTIONS(1191), - [anon_sym_SEMI] = ACTIONS(1191), - [anon_sym___extension__] = ACTIONS(1189), - [anon_sym_typedef] = ACTIONS(1189), - [anon_sym_extern] = ACTIONS(1189), - [anon_sym___attribute__] = ACTIONS(1189), - [anon_sym___scanf] = ACTIONS(1189), - [anon_sym___printf] = ACTIONS(1189), - [anon_sym___read_mostly] = ACTIONS(1189), - [anon_sym___must_hold] = ACTIONS(1189), - [anon_sym___ro_after_init] = ACTIONS(1189), - [anon_sym___init] = ACTIONS(1189), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1191), - [anon_sym___declspec] = ACTIONS(1189), - [anon_sym___cdecl] = ACTIONS(1189), - [anon_sym___clrcall] = ACTIONS(1189), - [anon_sym___stdcall] = ACTIONS(1189), - [anon_sym___fastcall] = ACTIONS(1189), - [anon_sym___thiscall] = ACTIONS(1189), - [anon_sym___vectorcall] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_RBRACE] = ACTIONS(1191), - [anon_sym_signed] = ACTIONS(1189), - [anon_sym_unsigned] = ACTIONS(1189), - [anon_sym_long] = ACTIONS(1189), - [anon_sym_short] = ACTIONS(1189), - [anon_sym_static] = ACTIONS(1189), - [anon_sym_auto] = ACTIONS(1189), - [anon_sym_register] = ACTIONS(1189), - [anon_sym_inline] = ACTIONS(1189), - [anon_sym___inline] = ACTIONS(1189), - [anon_sym___inline__] = ACTIONS(1189), - [anon_sym___forceinline] = ACTIONS(1189), - [anon_sym_thread_local] = ACTIONS(1189), - [anon_sym___thread] = ACTIONS(1189), - [anon_sym_const] = ACTIONS(1189), - [anon_sym_constexpr] = ACTIONS(1189), - [anon_sym_volatile] = ACTIONS(1189), - [anon_sym_restrict] = ACTIONS(1189), - [anon_sym___restrict__] = ACTIONS(1189), - [anon_sym__Atomic] = ACTIONS(1189), - [anon_sym__Noreturn] = ACTIONS(1189), - [anon_sym_noreturn] = ACTIONS(1189), - [anon_sym_alignas] = ACTIONS(1189), - [anon_sym__Alignas] = ACTIONS(1189), - [sym_primitive_type] = ACTIONS(1189), - [anon_sym_enum] = ACTIONS(1189), - [anon_sym_struct] = ACTIONS(1189), - [anon_sym_union] = ACTIONS(1189), - [anon_sym_if] = ACTIONS(1189), - [anon_sym_else] = ACTIONS(1189), - [anon_sym_switch] = ACTIONS(1189), - [anon_sym_case] = ACTIONS(1189), - [anon_sym_default] = ACTIONS(1189), - [anon_sym_while] = ACTIONS(1189), - [anon_sym_do] = ACTIONS(1189), - [anon_sym_for] = ACTIONS(1189), - [anon_sym_return] = ACTIONS(1189), - [anon_sym_break] = ACTIONS(1189), - [anon_sym_continue] = ACTIONS(1189), - [anon_sym_goto] = ACTIONS(1189), - [anon_sym___try] = ACTIONS(1189), - [anon_sym___leave] = ACTIONS(1189), - [anon_sym_DASH_DASH] = ACTIONS(1191), - [anon_sym_PLUS_PLUS] = ACTIONS(1191), - [anon_sym_sizeof] = ACTIONS(1189), - [anon_sym___alignof__] = ACTIONS(1189), - [anon_sym___alignof] = ACTIONS(1189), - [anon_sym__alignof] = ACTIONS(1189), - [anon_sym_alignof] = ACTIONS(1189), - [anon_sym__Alignof] = ACTIONS(1189), - [anon_sym_offsetof] = ACTIONS(1189), - [anon_sym__Generic] = ACTIONS(1189), - [anon_sym_asm] = ACTIONS(1189), - [anon_sym___asm__] = ACTIONS(1189), - [sym_number_literal] = ACTIONS(1191), - [anon_sym_L_SQUOTE] = ACTIONS(1191), - [anon_sym_u_SQUOTE] = ACTIONS(1191), - [anon_sym_U_SQUOTE] = ACTIONS(1191), - [anon_sym_u8_SQUOTE] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1191), - [anon_sym_L_DQUOTE] = ACTIONS(1191), - [anon_sym_u_DQUOTE] = ACTIONS(1191), - [anon_sym_U_DQUOTE] = ACTIONS(1191), - [anon_sym_u8_DQUOTE] = ACTIONS(1191), - [anon_sym_DQUOTE] = ACTIONS(1191), - [sym_true] = ACTIONS(1189), - [sym_false] = ACTIONS(1189), - [anon_sym_NULL] = ACTIONS(1189), - [anon_sym_nullptr] = ACTIONS(1189), + [240] = { + [sym_identifier] = ACTIONS(1153), + [aux_sym_preproc_include_token1] = ACTIONS(1153), + [aux_sym_preproc_def_token1] = ACTIONS(1153), + [aux_sym_preproc_if_token1] = ACTIONS(1153), + [aux_sym_preproc_if_token2] = ACTIONS(1153), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1153), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1153), + [sym_preproc_directive] = ACTIONS(1153), + [anon_sym_LPAREN2] = ACTIONS(1155), + [anon_sym_BANG] = ACTIONS(1155), + [anon_sym_TILDE] = ACTIONS(1155), + [anon_sym_DASH] = ACTIONS(1153), + [anon_sym_PLUS] = ACTIONS(1153), + [anon_sym_STAR] = ACTIONS(1155), + [anon_sym_AMP] = ACTIONS(1155), + [anon_sym_SEMI] = ACTIONS(1155), + [anon_sym___extension__] = ACTIONS(1153), + [anon_sym_typedef] = ACTIONS(1153), + [anon_sym_extern] = ACTIONS(1153), + [anon_sym___attribute__] = ACTIONS(1153), + [anon_sym___scanf] = ACTIONS(1153), + [anon_sym___printf] = ACTIONS(1153), + [anon_sym___read_mostly] = ACTIONS(1153), + [anon_sym___must_hold] = ACTIONS(1153), + [anon_sym___ro_after_init] = ACTIONS(1153), + [anon_sym___noreturn] = ACTIONS(1153), + [anon_sym___cold] = ACTIONS(1153), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1155), + [anon_sym___declspec] = ACTIONS(1153), + [anon_sym___init] = ACTIONS(1153), + [anon_sym___exit] = ACTIONS(1153), + [anon_sym___cdecl] = ACTIONS(1153), + [anon_sym___clrcall] = ACTIONS(1153), + [anon_sym___stdcall] = ACTIONS(1153), + [anon_sym___fastcall] = ACTIONS(1153), + [anon_sym___thiscall] = ACTIONS(1153), + [anon_sym___vectorcall] = ACTIONS(1153), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_signed] = ACTIONS(1153), + [anon_sym_unsigned] = ACTIONS(1153), + [anon_sym_long] = ACTIONS(1153), + [anon_sym_short] = ACTIONS(1153), + [anon_sym_static] = ACTIONS(1153), + [anon_sym_auto] = ACTIONS(1153), + [anon_sym_register] = ACTIONS(1153), + [anon_sym_inline] = ACTIONS(1153), + [anon_sym___inline] = ACTIONS(1153), + [anon_sym___inline__] = ACTIONS(1153), + [anon_sym___forceinline] = ACTIONS(1153), + [anon_sym_thread_local] = ACTIONS(1153), + [anon_sym___thread] = ACTIONS(1153), + [anon_sym_const] = ACTIONS(1153), + [anon_sym_constexpr] = ACTIONS(1153), + [anon_sym_volatile] = ACTIONS(1153), + [anon_sym_restrict] = ACTIONS(1153), + [anon_sym___restrict__] = ACTIONS(1153), + [anon_sym__Atomic] = ACTIONS(1153), + [anon_sym__Noreturn] = ACTIONS(1153), + [anon_sym_noreturn] = ACTIONS(1153), + [anon_sym_alignas] = ACTIONS(1153), + [anon_sym__Alignas] = ACTIONS(1153), + [sym_primitive_type] = ACTIONS(1153), + [anon_sym_enum] = ACTIONS(1153), + [anon_sym_struct] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1153), + [anon_sym_if] = ACTIONS(1153), + [anon_sym_else] = ACTIONS(1153), + [anon_sym_switch] = ACTIONS(1153), + [anon_sym_case] = ACTIONS(1153), + [anon_sym_default] = ACTIONS(1153), + [anon_sym_while] = ACTIONS(1153), + [anon_sym_do] = ACTIONS(1153), + [anon_sym_for] = ACTIONS(1153), + [anon_sym_return] = ACTIONS(1153), + [anon_sym_break] = ACTIONS(1153), + [anon_sym_continue] = ACTIONS(1153), + [anon_sym_goto] = ACTIONS(1153), + [anon_sym___try] = ACTIONS(1153), + [anon_sym___leave] = ACTIONS(1153), + [anon_sym_DASH_DASH] = ACTIONS(1155), + [anon_sym_PLUS_PLUS] = ACTIONS(1155), + [anon_sym_sizeof] = ACTIONS(1153), + [anon_sym___alignof__] = ACTIONS(1153), + [anon_sym___alignof] = ACTIONS(1153), + [anon_sym__alignof] = ACTIONS(1153), + [anon_sym_alignof] = ACTIONS(1153), + [anon_sym__Alignof] = ACTIONS(1153), + [anon_sym_offsetof] = ACTIONS(1153), + [anon_sym__Generic] = ACTIONS(1153), + [anon_sym_asm] = ACTIONS(1153), + [anon_sym___asm__] = ACTIONS(1153), + [sym_number_literal] = ACTIONS(1155), + [anon_sym_L_SQUOTE] = ACTIONS(1155), + [anon_sym_u_SQUOTE] = ACTIONS(1155), + [anon_sym_U_SQUOTE] = ACTIONS(1155), + [anon_sym_u8_SQUOTE] = ACTIONS(1155), + [anon_sym_SQUOTE] = ACTIONS(1155), + [anon_sym_L_DQUOTE] = ACTIONS(1155), + [anon_sym_u_DQUOTE] = ACTIONS(1155), + [anon_sym_U_DQUOTE] = ACTIONS(1155), + [anon_sym_u8_DQUOTE] = ACTIONS(1155), + [anon_sym_DQUOTE] = ACTIONS(1155), + [sym_true] = ACTIONS(1153), + [sym_false] = ACTIONS(1153), + [anon_sym_NULL] = ACTIONS(1153), + [anon_sym_nullptr] = ACTIONS(1153), [sym_comment] = ACTIONS(3), }, - [212] = { - [sym_identifier] = ACTIONS(1241), - [aux_sym_preproc_include_token1] = ACTIONS(1241), - [aux_sym_preproc_def_token1] = ACTIONS(1241), - [aux_sym_preproc_if_token1] = ACTIONS(1241), - [aux_sym_preproc_if_token2] = ACTIONS(1241), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1241), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1241), - [sym_preproc_directive] = ACTIONS(1241), - [anon_sym_LPAREN2] = ACTIONS(1243), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_TILDE] = ACTIONS(1243), - [anon_sym_DASH] = ACTIONS(1241), - [anon_sym_PLUS] = ACTIONS(1241), - [anon_sym_STAR] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(1243), - [anon_sym_SEMI] = ACTIONS(1243), - [anon_sym___extension__] = ACTIONS(1241), - [anon_sym_typedef] = ACTIONS(1241), - [anon_sym_extern] = ACTIONS(1241), - [anon_sym___attribute__] = ACTIONS(1241), - [anon_sym___scanf] = ACTIONS(1241), - [anon_sym___printf] = ACTIONS(1241), - [anon_sym___read_mostly] = ACTIONS(1241), - [anon_sym___must_hold] = ACTIONS(1241), - [anon_sym___ro_after_init] = ACTIONS(1241), - [anon_sym___init] = ACTIONS(1241), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1243), - [anon_sym___declspec] = ACTIONS(1241), - [anon_sym___cdecl] = ACTIONS(1241), - [anon_sym___clrcall] = ACTIONS(1241), - [anon_sym___stdcall] = ACTIONS(1241), - [anon_sym___fastcall] = ACTIONS(1241), - [anon_sym___thiscall] = ACTIONS(1241), - [anon_sym___vectorcall] = ACTIONS(1241), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_signed] = ACTIONS(1241), - [anon_sym_unsigned] = ACTIONS(1241), - [anon_sym_long] = ACTIONS(1241), - [anon_sym_short] = ACTIONS(1241), - [anon_sym_static] = ACTIONS(1241), - [anon_sym_auto] = ACTIONS(1241), - [anon_sym_register] = ACTIONS(1241), - [anon_sym_inline] = ACTIONS(1241), - [anon_sym___inline] = ACTIONS(1241), - [anon_sym___inline__] = ACTIONS(1241), - [anon_sym___forceinline] = ACTIONS(1241), - [anon_sym_thread_local] = ACTIONS(1241), - [anon_sym___thread] = ACTIONS(1241), - [anon_sym_const] = ACTIONS(1241), - [anon_sym_constexpr] = ACTIONS(1241), - [anon_sym_volatile] = ACTIONS(1241), - [anon_sym_restrict] = ACTIONS(1241), - [anon_sym___restrict__] = ACTIONS(1241), - [anon_sym__Atomic] = ACTIONS(1241), - [anon_sym__Noreturn] = ACTIONS(1241), - [anon_sym_noreturn] = ACTIONS(1241), - [anon_sym_alignas] = ACTIONS(1241), - [anon_sym__Alignas] = ACTIONS(1241), - [sym_primitive_type] = ACTIONS(1241), - [anon_sym_enum] = ACTIONS(1241), - [anon_sym_struct] = ACTIONS(1241), - [anon_sym_union] = ACTIONS(1241), - [anon_sym_if] = ACTIONS(1241), - [anon_sym_else] = ACTIONS(1241), - [anon_sym_switch] = ACTIONS(1241), - [anon_sym_case] = ACTIONS(1241), - [anon_sym_default] = ACTIONS(1241), - [anon_sym_while] = ACTIONS(1241), - [anon_sym_do] = ACTIONS(1241), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_return] = ACTIONS(1241), - [anon_sym_break] = ACTIONS(1241), - [anon_sym_continue] = ACTIONS(1241), - [anon_sym_goto] = ACTIONS(1241), - [anon_sym___try] = ACTIONS(1241), - [anon_sym___leave] = ACTIONS(1241), - [anon_sym_DASH_DASH] = ACTIONS(1243), - [anon_sym_PLUS_PLUS] = ACTIONS(1243), - [anon_sym_sizeof] = ACTIONS(1241), - [anon_sym___alignof__] = ACTIONS(1241), - [anon_sym___alignof] = ACTIONS(1241), - [anon_sym__alignof] = ACTIONS(1241), - [anon_sym_alignof] = ACTIONS(1241), - [anon_sym__Alignof] = ACTIONS(1241), - [anon_sym_offsetof] = ACTIONS(1241), - [anon_sym__Generic] = ACTIONS(1241), - [anon_sym_asm] = ACTIONS(1241), - [anon_sym___asm__] = ACTIONS(1241), - [sym_number_literal] = ACTIONS(1243), - [anon_sym_L_SQUOTE] = ACTIONS(1243), - [anon_sym_u_SQUOTE] = ACTIONS(1243), - [anon_sym_U_SQUOTE] = ACTIONS(1243), - [anon_sym_u8_SQUOTE] = ACTIONS(1243), - [anon_sym_SQUOTE] = ACTIONS(1243), - [anon_sym_L_DQUOTE] = ACTIONS(1243), - [anon_sym_u_DQUOTE] = ACTIONS(1243), - [anon_sym_U_DQUOTE] = ACTIONS(1243), - [anon_sym_u8_DQUOTE] = ACTIONS(1243), - [anon_sym_DQUOTE] = ACTIONS(1243), - [sym_true] = ACTIONS(1241), - [sym_false] = ACTIONS(1241), - [anon_sym_NULL] = ACTIONS(1241), - [anon_sym_nullptr] = ACTIONS(1241), + [241] = { + [ts_builtin_sym_end] = ACTIONS(1283), + [sym_identifier] = ACTIONS(1281), + [aux_sym_preproc_include_token1] = ACTIONS(1281), + [aux_sym_preproc_def_token1] = ACTIONS(1281), + [aux_sym_preproc_if_token1] = ACTIONS(1281), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1281), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1281), + [sym_preproc_directive] = ACTIONS(1281), + [anon_sym_LPAREN2] = ACTIONS(1283), + [anon_sym_BANG] = ACTIONS(1283), + [anon_sym_TILDE] = ACTIONS(1283), + [anon_sym_DASH] = ACTIONS(1281), + [anon_sym_PLUS] = ACTIONS(1281), + [anon_sym_STAR] = ACTIONS(1283), + [anon_sym_AMP] = ACTIONS(1283), + [anon_sym_SEMI] = ACTIONS(1283), + [anon_sym___extension__] = ACTIONS(1281), + [anon_sym_typedef] = ACTIONS(1281), + [anon_sym_extern] = ACTIONS(1281), + [anon_sym___attribute__] = ACTIONS(1281), + [anon_sym___scanf] = ACTIONS(1281), + [anon_sym___printf] = ACTIONS(1281), + [anon_sym___read_mostly] = ACTIONS(1281), + [anon_sym___must_hold] = ACTIONS(1281), + [anon_sym___ro_after_init] = ACTIONS(1281), + [anon_sym___noreturn] = ACTIONS(1281), + [anon_sym___cold] = ACTIONS(1281), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1283), + [anon_sym___declspec] = ACTIONS(1281), + [anon_sym___init] = ACTIONS(1281), + [anon_sym___exit] = ACTIONS(1281), + [anon_sym___cdecl] = ACTIONS(1281), + [anon_sym___clrcall] = ACTIONS(1281), + [anon_sym___stdcall] = ACTIONS(1281), + [anon_sym___fastcall] = ACTIONS(1281), + [anon_sym___thiscall] = ACTIONS(1281), + [anon_sym___vectorcall] = ACTIONS(1281), + [anon_sym_LBRACE] = ACTIONS(1283), + [anon_sym_signed] = ACTIONS(1281), + [anon_sym_unsigned] = ACTIONS(1281), + [anon_sym_long] = ACTIONS(1281), + [anon_sym_short] = ACTIONS(1281), + [anon_sym_static] = ACTIONS(1281), + [anon_sym_auto] = ACTIONS(1281), + [anon_sym_register] = ACTIONS(1281), + [anon_sym_inline] = ACTIONS(1281), + [anon_sym___inline] = ACTIONS(1281), + [anon_sym___inline__] = ACTIONS(1281), + [anon_sym___forceinline] = ACTIONS(1281), + [anon_sym_thread_local] = ACTIONS(1281), + [anon_sym___thread] = ACTIONS(1281), + [anon_sym_const] = ACTIONS(1281), + [anon_sym_constexpr] = ACTIONS(1281), + [anon_sym_volatile] = ACTIONS(1281), + [anon_sym_restrict] = ACTIONS(1281), + [anon_sym___restrict__] = ACTIONS(1281), + [anon_sym__Atomic] = ACTIONS(1281), + [anon_sym__Noreturn] = ACTIONS(1281), + [anon_sym_noreturn] = ACTIONS(1281), + [anon_sym_alignas] = ACTIONS(1281), + [anon_sym__Alignas] = ACTIONS(1281), + [sym_primitive_type] = ACTIONS(1281), + [anon_sym_enum] = ACTIONS(1281), + [anon_sym_struct] = ACTIONS(1281), + [anon_sym_union] = ACTIONS(1281), + [anon_sym_if] = ACTIONS(1281), + [anon_sym_else] = ACTIONS(1281), + [anon_sym_switch] = ACTIONS(1281), + [anon_sym_case] = ACTIONS(1281), + [anon_sym_default] = ACTIONS(1281), + [anon_sym_while] = ACTIONS(1281), + [anon_sym_do] = ACTIONS(1281), + [anon_sym_for] = ACTIONS(1281), + [anon_sym_return] = ACTIONS(1281), + [anon_sym_break] = ACTIONS(1281), + [anon_sym_continue] = ACTIONS(1281), + [anon_sym_goto] = ACTIONS(1281), + [anon_sym___try] = ACTIONS(1281), + [anon_sym___leave] = ACTIONS(1281), + [anon_sym_DASH_DASH] = ACTIONS(1283), + [anon_sym_PLUS_PLUS] = ACTIONS(1283), + [anon_sym_sizeof] = ACTIONS(1281), + [anon_sym___alignof__] = ACTIONS(1281), + [anon_sym___alignof] = ACTIONS(1281), + [anon_sym__alignof] = ACTIONS(1281), + [anon_sym_alignof] = ACTIONS(1281), + [anon_sym__Alignof] = ACTIONS(1281), + [anon_sym_offsetof] = ACTIONS(1281), + [anon_sym__Generic] = ACTIONS(1281), + [anon_sym_asm] = ACTIONS(1281), + [anon_sym___asm__] = ACTIONS(1281), + [sym_number_literal] = ACTIONS(1283), + [anon_sym_L_SQUOTE] = ACTIONS(1283), + [anon_sym_u_SQUOTE] = ACTIONS(1283), + [anon_sym_U_SQUOTE] = ACTIONS(1283), + [anon_sym_u8_SQUOTE] = ACTIONS(1283), + [anon_sym_SQUOTE] = ACTIONS(1283), + [anon_sym_L_DQUOTE] = ACTIONS(1283), + [anon_sym_u_DQUOTE] = ACTIONS(1283), + [anon_sym_U_DQUOTE] = ACTIONS(1283), + [anon_sym_u8_DQUOTE] = ACTIONS(1283), + [anon_sym_DQUOTE] = ACTIONS(1283), + [sym_true] = ACTIONS(1281), + [sym_false] = ACTIONS(1281), + [anon_sym_NULL] = ACTIONS(1281), + [anon_sym_nullptr] = ACTIONS(1281), [sym_comment] = ACTIONS(3), }, - [213] = { - [ts_builtin_sym_end] = ACTIONS(1187), - [sym_identifier] = ACTIONS(1185), - [aux_sym_preproc_include_token1] = ACTIONS(1185), - [aux_sym_preproc_def_token1] = ACTIONS(1185), - [aux_sym_preproc_if_token1] = ACTIONS(1185), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1185), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1185), - [sym_preproc_directive] = ACTIONS(1185), - [anon_sym_LPAREN2] = ACTIONS(1187), - [anon_sym_BANG] = ACTIONS(1187), - [anon_sym_TILDE] = ACTIONS(1187), - [anon_sym_DASH] = ACTIONS(1185), - [anon_sym_PLUS] = ACTIONS(1185), - [anon_sym_STAR] = ACTIONS(1187), - [anon_sym_AMP] = ACTIONS(1187), - [anon_sym_SEMI] = ACTIONS(1187), - [anon_sym___extension__] = ACTIONS(1185), - [anon_sym_typedef] = ACTIONS(1185), - [anon_sym_extern] = ACTIONS(1185), - [anon_sym___attribute__] = ACTIONS(1185), - [anon_sym___scanf] = ACTIONS(1185), - [anon_sym___printf] = ACTIONS(1185), - [anon_sym___read_mostly] = ACTIONS(1185), - [anon_sym___must_hold] = ACTIONS(1185), - [anon_sym___ro_after_init] = ACTIONS(1185), - [anon_sym___init] = ACTIONS(1185), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1187), - [anon_sym___declspec] = ACTIONS(1185), - [anon_sym___cdecl] = ACTIONS(1185), - [anon_sym___clrcall] = ACTIONS(1185), - [anon_sym___stdcall] = ACTIONS(1185), - [anon_sym___fastcall] = ACTIONS(1185), - [anon_sym___thiscall] = ACTIONS(1185), - [anon_sym___vectorcall] = ACTIONS(1185), - [anon_sym_LBRACE] = ACTIONS(1187), - [anon_sym_signed] = ACTIONS(1185), - [anon_sym_unsigned] = ACTIONS(1185), - [anon_sym_long] = ACTIONS(1185), - [anon_sym_short] = ACTIONS(1185), - [anon_sym_static] = ACTIONS(1185), - [anon_sym_auto] = ACTIONS(1185), - [anon_sym_register] = ACTIONS(1185), - [anon_sym_inline] = ACTIONS(1185), - [anon_sym___inline] = ACTIONS(1185), - [anon_sym___inline__] = ACTIONS(1185), - [anon_sym___forceinline] = ACTIONS(1185), - [anon_sym_thread_local] = ACTIONS(1185), - [anon_sym___thread] = ACTIONS(1185), - [anon_sym_const] = ACTIONS(1185), - [anon_sym_constexpr] = ACTIONS(1185), - [anon_sym_volatile] = ACTIONS(1185), - [anon_sym_restrict] = ACTIONS(1185), - [anon_sym___restrict__] = ACTIONS(1185), - [anon_sym__Atomic] = ACTIONS(1185), - [anon_sym__Noreturn] = ACTIONS(1185), - [anon_sym_noreturn] = ACTIONS(1185), - [anon_sym_alignas] = ACTIONS(1185), - [anon_sym__Alignas] = ACTIONS(1185), - [sym_primitive_type] = ACTIONS(1185), - [anon_sym_enum] = ACTIONS(1185), - [anon_sym_struct] = ACTIONS(1185), - [anon_sym_union] = ACTIONS(1185), - [anon_sym_if] = ACTIONS(1185), - [anon_sym_else] = ACTIONS(1185), - [anon_sym_switch] = ACTIONS(1185), - [anon_sym_case] = ACTIONS(1185), - [anon_sym_default] = ACTIONS(1185), - [anon_sym_while] = ACTIONS(1185), - [anon_sym_do] = ACTIONS(1185), - [anon_sym_for] = ACTIONS(1185), - [anon_sym_return] = ACTIONS(1185), - [anon_sym_break] = ACTIONS(1185), - [anon_sym_continue] = ACTIONS(1185), - [anon_sym_goto] = ACTIONS(1185), - [anon_sym___try] = ACTIONS(1185), - [anon_sym___leave] = ACTIONS(1185), - [anon_sym_DASH_DASH] = ACTIONS(1187), - [anon_sym_PLUS_PLUS] = ACTIONS(1187), - [anon_sym_sizeof] = ACTIONS(1185), - [anon_sym___alignof__] = ACTIONS(1185), - [anon_sym___alignof] = ACTIONS(1185), - [anon_sym__alignof] = ACTIONS(1185), - [anon_sym_alignof] = ACTIONS(1185), - [anon_sym__Alignof] = ACTIONS(1185), - [anon_sym_offsetof] = ACTIONS(1185), - [anon_sym__Generic] = ACTIONS(1185), - [anon_sym_asm] = ACTIONS(1185), - [anon_sym___asm__] = ACTIONS(1185), - [sym_number_literal] = ACTIONS(1187), - [anon_sym_L_SQUOTE] = ACTIONS(1187), - [anon_sym_u_SQUOTE] = ACTIONS(1187), - [anon_sym_U_SQUOTE] = ACTIONS(1187), - [anon_sym_u8_SQUOTE] = ACTIONS(1187), - [anon_sym_SQUOTE] = ACTIONS(1187), - [anon_sym_L_DQUOTE] = ACTIONS(1187), - [anon_sym_u_DQUOTE] = ACTIONS(1187), - [anon_sym_U_DQUOTE] = ACTIONS(1187), - [anon_sym_u8_DQUOTE] = ACTIONS(1187), - [anon_sym_DQUOTE] = ACTIONS(1187), - [sym_true] = ACTIONS(1185), - [sym_false] = ACTIONS(1185), - [anon_sym_NULL] = ACTIONS(1185), - [anon_sym_nullptr] = ACTIONS(1185), + [242] = { + [sym_identifier] = ACTIONS(1253), + [aux_sym_preproc_include_token1] = ACTIONS(1253), + [aux_sym_preproc_def_token1] = ACTIONS(1253), + [aux_sym_preproc_if_token1] = ACTIONS(1253), + [aux_sym_preproc_if_token2] = ACTIONS(1253), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1253), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1253), + [sym_preproc_directive] = ACTIONS(1253), + [anon_sym_LPAREN2] = ACTIONS(1255), + [anon_sym_BANG] = ACTIONS(1255), + [anon_sym_TILDE] = ACTIONS(1255), + [anon_sym_DASH] = ACTIONS(1253), + [anon_sym_PLUS] = ACTIONS(1253), + [anon_sym_STAR] = ACTIONS(1255), + [anon_sym_AMP] = ACTIONS(1255), + [anon_sym_SEMI] = ACTIONS(1255), + [anon_sym___extension__] = ACTIONS(1253), + [anon_sym_typedef] = ACTIONS(1253), + [anon_sym_extern] = ACTIONS(1253), + [anon_sym___attribute__] = ACTIONS(1253), + [anon_sym___scanf] = ACTIONS(1253), + [anon_sym___printf] = ACTIONS(1253), + [anon_sym___read_mostly] = ACTIONS(1253), + [anon_sym___must_hold] = ACTIONS(1253), + [anon_sym___ro_after_init] = ACTIONS(1253), + [anon_sym___noreturn] = ACTIONS(1253), + [anon_sym___cold] = ACTIONS(1253), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1255), + [anon_sym___declspec] = ACTIONS(1253), + [anon_sym___init] = ACTIONS(1253), + [anon_sym___exit] = ACTIONS(1253), + [anon_sym___cdecl] = ACTIONS(1253), + [anon_sym___clrcall] = ACTIONS(1253), + [anon_sym___stdcall] = ACTIONS(1253), + [anon_sym___fastcall] = ACTIONS(1253), + [anon_sym___thiscall] = ACTIONS(1253), + [anon_sym___vectorcall] = ACTIONS(1253), + [anon_sym_LBRACE] = ACTIONS(1255), + [anon_sym_signed] = ACTIONS(1253), + [anon_sym_unsigned] = ACTIONS(1253), + [anon_sym_long] = ACTIONS(1253), + [anon_sym_short] = ACTIONS(1253), + [anon_sym_static] = ACTIONS(1253), + [anon_sym_auto] = ACTIONS(1253), + [anon_sym_register] = ACTIONS(1253), + [anon_sym_inline] = ACTIONS(1253), + [anon_sym___inline] = ACTIONS(1253), + [anon_sym___inline__] = ACTIONS(1253), + [anon_sym___forceinline] = ACTIONS(1253), + [anon_sym_thread_local] = ACTIONS(1253), + [anon_sym___thread] = ACTIONS(1253), + [anon_sym_const] = ACTIONS(1253), + [anon_sym_constexpr] = ACTIONS(1253), + [anon_sym_volatile] = ACTIONS(1253), + [anon_sym_restrict] = ACTIONS(1253), + [anon_sym___restrict__] = ACTIONS(1253), + [anon_sym__Atomic] = ACTIONS(1253), + [anon_sym__Noreturn] = ACTIONS(1253), + [anon_sym_noreturn] = ACTIONS(1253), + [anon_sym_alignas] = ACTIONS(1253), + [anon_sym__Alignas] = ACTIONS(1253), + [sym_primitive_type] = ACTIONS(1253), + [anon_sym_enum] = ACTIONS(1253), + [anon_sym_struct] = ACTIONS(1253), + [anon_sym_union] = ACTIONS(1253), + [anon_sym_if] = ACTIONS(1253), + [anon_sym_else] = ACTIONS(1253), + [anon_sym_switch] = ACTIONS(1253), + [anon_sym_case] = ACTIONS(1253), + [anon_sym_default] = ACTIONS(1253), + [anon_sym_while] = ACTIONS(1253), + [anon_sym_do] = ACTIONS(1253), + [anon_sym_for] = ACTIONS(1253), + [anon_sym_return] = ACTIONS(1253), + [anon_sym_break] = ACTIONS(1253), + [anon_sym_continue] = ACTIONS(1253), + [anon_sym_goto] = ACTIONS(1253), + [anon_sym___try] = ACTIONS(1253), + [anon_sym___leave] = ACTIONS(1253), + [anon_sym_DASH_DASH] = ACTIONS(1255), + [anon_sym_PLUS_PLUS] = ACTIONS(1255), + [anon_sym_sizeof] = ACTIONS(1253), + [anon_sym___alignof__] = ACTIONS(1253), + [anon_sym___alignof] = ACTIONS(1253), + [anon_sym__alignof] = ACTIONS(1253), + [anon_sym_alignof] = ACTIONS(1253), + [anon_sym__Alignof] = ACTIONS(1253), + [anon_sym_offsetof] = ACTIONS(1253), + [anon_sym__Generic] = ACTIONS(1253), + [anon_sym_asm] = ACTIONS(1253), + [anon_sym___asm__] = ACTIONS(1253), + [sym_number_literal] = ACTIONS(1255), + [anon_sym_L_SQUOTE] = ACTIONS(1255), + [anon_sym_u_SQUOTE] = ACTIONS(1255), + [anon_sym_U_SQUOTE] = ACTIONS(1255), + [anon_sym_u8_SQUOTE] = ACTIONS(1255), + [anon_sym_SQUOTE] = ACTIONS(1255), + [anon_sym_L_DQUOTE] = ACTIONS(1255), + [anon_sym_u_DQUOTE] = ACTIONS(1255), + [anon_sym_U_DQUOTE] = ACTIONS(1255), + [anon_sym_u8_DQUOTE] = ACTIONS(1255), + [anon_sym_DQUOTE] = ACTIONS(1255), + [sym_true] = ACTIONS(1253), + [sym_false] = ACTIONS(1253), + [anon_sym_NULL] = ACTIONS(1253), + [anon_sym_nullptr] = ACTIONS(1253), [sym_comment] = ACTIONS(3), }, - [214] = { - [sym_identifier] = ACTIONS(1213), - [aux_sym_preproc_include_token1] = ACTIONS(1213), - [aux_sym_preproc_def_token1] = ACTIONS(1213), - [aux_sym_preproc_if_token1] = ACTIONS(1213), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1213), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1213), - [sym_preproc_directive] = ACTIONS(1213), - [anon_sym_LPAREN2] = ACTIONS(1215), - [anon_sym_BANG] = ACTIONS(1215), - [anon_sym_TILDE] = ACTIONS(1215), - [anon_sym_DASH] = ACTIONS(1213), - [anon_sym_PLUS] = ACTIONS(1213), - [anon_sym_STAR] = ACTIONS(1215), - [anon_sym_AMP] = ACTIONS(1215), - [anon_sym_SEMI] = ACTIONS(1215), - [anon_sym___extension__] = ACTIONS(1213), - [anon_sym_typedef] = ACTIONS(1213), - [anon_sym_extern] = ACTIONS(1213), - [anon_sym___attribute__] = ACTIONS(1213), - [anon_sym___scanf] = ACTIONS(1213), - [anon_sym___printf] = ACTIONS(1213), - [anon_sym___read_mostly] = ACTIONS(1213), - [anon_sym___must_hold] = ACTIONS(1213), - [anon_sym___ro_after_init] = ACTIONS(1213), - [anon_sym___init] = ACTIONS(1213), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1215), - [anon_sym___declspec] = ACTIONS(1213), - [anon_sym___cdecl] = ACTIONS(1213), - [anon_sym___clrcall] = ACTIONS(1213), - [anon_sym___stdcall] = ACTIONS(1213), - [anon_sym___fastcall] = ACTIONS(1213), - [anon_sym___thiscall] = ACTIONS(1213), - [anon_sym___vectorcall] = ACTIONS(1213), - [anon_sym_LBRACE] = ACTIONS(1215), - [anon_sym_RBRACE] = ACTIONS(1215), - [anon_sym_signed] = ACTIONS(1213), - [anon_sym_unsigned] = ACTIONS(1213), - [anon_sym_long] = ACTIONS(1213), - [anon_sym_short] = ACTIONS(1213), - [anon_sym_static] = ACTIONS(1213), - [anon_sym_auto] = ACTIONS(1213), - [anon_sym_register] = ACTIONS(1213), - [anon_sym_inline] = ACTIONS(1213), - [anon_sym___inline] = ACTIONS(1213), - [anon_sym___inline__] = ACTIONS(1213), - [anon_sym___forceinline] = ACTIONS(1213), - [anon_sym_thread_local] = ACTIONS(1213), - [anon_sym___thread] = ACTIONS(1213), - [anon_sym_const] = ACTIONS(1213), - [anon_sym_constexpr] = ACTIONS(1213), - [anon_sym_volatile] = ACTIONS(1213), - [anon_sym_restrict] = ACTIONS(1213), - [anon_sym___restrict__] = ACTIONS(1213), - [anon_sym__Atomic] = ACTIONS(1213), - [anon_sym__Noreturn] = ACTIONS(1213), - [anon_sym_noreturn] = ACTIONS(1213), - [anon_sym_alignas] = ACTIONS(1213), - [anon_sym__Alignas] = ACTIONS(1213), - [sym_primitive_type] = ACTIONS(1213), - [anon_sym_enum] = ACTIONS(1213), - [anon_sym_struct] = ACTIONS(1213), - [anon_sym_union] = ACTIONS(1213), - [anon_sym_if] = ACTIONS(1213), - [anon_sym_else] = ACTIONS(1213), - [anon_sym_switch] = ACTIONS(1213), - [anon_sym_case] = ACTIONS(1213), - [anon_sym_default] = ACTIONS(1213), - [anon_sym_while] = ACTIONS(1213), - [anon_sym_do] = ACTIONS(1213), - [anon_sym_for] = ACTIONS(1213), - [anon_sym_return] = ACTIONS(1213), - [anon_sym_break] = ACTIONS(1213), - [anon_sym_continue] = ACTIONS(1213), - [anon_sym_goto] = ACTIONS(1213), - [anon_sym___try] = ACTIONS(1213), - [anon_sym___leave] = ACTIONS(1213), - [anon_sym_DASH_DASH] = ACTIONS(1215), - [anon_sym_PLUS_PLUS] = ACTIONS(1215), - [anon_sym_sizeof] = ACTIONS(1213), - [anon_sym___alignof__] = ACTIONS(1213), - [anon_sym___alignof] = ACTIONS(1213), - [anon_sym__alignof] = ACTIONS(1213), - [anon_sym_alignof] = ACTIONS(1213), - [anon_sym__Alignof] = ACTIONS(1213), - [anon_sym_offsetof] = ACTIONS(1213), - [anon_sym__Generic] = ACTIONS(1213), - [anon_sym_asm] = ACTIONS(1213), - [anon_sym___asm__] = ACTIONS(1213), - [sym_number_literal] = ACTIONS(1215), - [anon_sym_L_SQUOTE] = ACTIONS(1215), - [anon_sym_u_SQUOTE] = ACTIONS(1215), - [anon_sym_U_SQUOTE] = ACTIONS(1215), - [anon_sym_u8_SQUOTE] = ACTIONS(1215), - [anon_sym_SQUOTE] = ACTIONS(1215), - [anon_sym_L_DQUOTE] = ACTIONS(1215), - [anon_sym_u_DQUOTE] = ACTIONS(1215), - [anon_sym_U_DQUOTE] = ACTIONS(1215), - [anon_sym_u8_DQUOTE] = ACTIONS(1215), - [anon_sym_DQUOTE] = ACTIONS(1215), - [sym_true] = ACTIONS(1213), - [sym_false] = ACTIONS(1213), - [anon_sym_NULL] = ACTIONS(1213), - [anon_sym_nullptr] = ACTIONS(1213), + [243] = { + [sym_identifier] = ACTIONS(1153), + [aux_sym_preproc_include_token1] = ACTIONS(1153), + [aux_sym_preproc_def_token1] = ACTIONS(1153), + [aux_sym_preproc_if_token1] = ACTIONS(1153), + [aux_sym_preproc_if_token2] = ACTIONS(1153), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1153), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1153), + [sym_preproc_directive] = ACTIONS(1153), + [anon_sym_LPAREN2] = ACTIONS(1155), + [anon_sym_BANG] = ACTIONS(1155), + [anon_sym_TILDE] = ACTIONS(1155), + [anon_sym_DASH] = ACTIONS(1153), + [anon_sym_PLUS] = ACTIONS(1153), + [anon_sym_STAR] = ACTIONS(1155), + [anon_sym_AMP] = ACTIONS(1155), + [anon_sym_SEMI] = ACTIONS(1155), + [anon_sym___extension__] = ACTIONS(1153), + [anon_sym_typedef] = ACTIONS(1153), + [anon_sym_extern] = ACTIONS(1153), + [anon_sym___attribute__] = ACTIONS(1153), + [anon_sym___scanf] = ACTIONS(1153), + [anon_sym___printf] = ACTIONS(1153), + [anon_sym___read_mostly] = ACTIONS(1153), + [anon_sym___must_hold] = ACTIONS(1153), + [anon_sym___ro_after_init] = ACTIONS(1153), + [anon_sym___noreturn] = ACTIONS(1153), + [anon_sym___cold] = ACTIONS(1153), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1155), + [anon_sym___declspec] = ACTIONS(1153), + [anon_sym___init] = ACTIONS(1153), + [anon_sym___exit] = ACTIONS(1153), + [anon_sym___cdecl] = ACTIONS(1153), + [anon_sym___clrcall] = ACTIONS(1153), + [anon_sym___stdcall] = ACTIONS(1153), + [anon_sym___fastcall] = ACTIONS(1153), + [anon_sym___thiscall] = ACTIONS(1153), + [anon_sym___vectorcall] = ACTIONS(1153), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_signed] = ACTIONS(1153), + [anon_sym_unsigned] = ACTIONS(1153), + [anon_sym_long] = ACTIONS(1153), + [anon_sym_short] = ACTIONS(1153), + [anon_sym_static] = ACTIONS(1153), + [anon_sym_auto] = ACTIONS(1153), + [anon_sym_register] = ACTIONS(1153), + [anon_sym_inline] = ACTIONS(1153), + [anon_sym___inline] = ACTIONS(1153), + [anon_sym___inline__] = ACTIONS(1153), + [anon_sym___forceinline] = ACTIONS(1153), + [anon_sym_thread_local] = ACTIONS(1153), + [anon_sym___thread] = ACTIONS(1153), + [anon_sym_const] = ACTIONS(1153), + [anon_sym_constexpr] = ACTIONS(1153), + [anon_sym_volatile] = ACTIONS(1153), + [anon_sym_restrict] = ACTIONS(1153), + [anon_sym___restrict__] = ACTIONS(1153), + [anon_sym__Atomic] = ACTIONS(1153), + [anon_sym__Noreturn] = ACTIONS(1153), + [anon_sym_noreturn] = ACTIONS(1153), + [anon_sym_alignas] = ACTIONS(1153), + [anon_sym__Alignas] = ACTIONS(1153), + [sym_primitive_type] = ACTIONS(1153), + [anon_sym_enum] = ACTIONS(1153), + [anon_sym_struct] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1153), + [anon_sym_if] = ACTIONS(1153), + [anon_sym_else] = ACTIONS(1153), + [anon_sym_switch] = ACTIONS(1153), + [anon_sym_case] = ACTIONS(1153), + [anon_sym_default] = ACTIONS(1153), + [anon_sym_while] = ACTIONS(1153), + [anon_sym_do] = ACTIONS(1153), + [anon_sym_for] = ACTIONS(1153), + [anon_sym_return] = ACTIONS(1153), + [anon_sym_break] = ACTIONS(1153), + [anon_sym_continue] = ACTIONS(1153), + [anon_sym_goto] = ACTIONS(1153), + [anon_sym___try] = ACTIONS(1153), + [anon_sym___leave] = ACTIONS(1153), + [anon_sym_DASH_DASH] = ACTIONS(1155), + [anon_sym_PLUS_PLUS] = ACTIONS(1155), + [anon_sym_sizeof] = ACTIONS(1153), + [anon_sym___alignof__] = ACTIONS(1153), + [anon_sym___alignof] = ACTIONS(1153), + [anon_sym__alignof] = ACTIONS(1153), + [anon_sym_alignof] = ACTIONS(1153), + [anon_sym__Alignof] = ACTIONS(1153), + [anon_sym_offsetof] = ACTIONS(1153), + [anon_sym__Generic] = ACTIONS(1153), + [anon_sym_asm] = ACTIONS(1153), + [anon_sym___asm__] = ACTIONS(1153), + [sym_number_literal] = ACTIONS(1155), + [anon_sym_L_SQUOTE] = ACTIONS(1155), + [anon_sym_u_SQUOTE] = ACTIONS(1155), + [anon_sym_U_SQUOTE] = ACTIONS(1155), + [anon_sym_u8_SQUOTE] = ACTIONS(1155), + [anon_sym_SQUOTE] = ACTIONS(1155), + [anon_sym_L_DQUOTE] = ACTIONS(1155), + [anon_sym_u_DQUOTE] = ACTIONS(1155), + [anon_sym_U_DQUOTE] = ACTIONS(1155), + [anon_sym_u8_DQUOTE] = ACTIONS(1155), + [anon_sym_DQUOTE] = ACTIONS(1155), + [sym_true] = ACTIONS(1153), + [sym_false] = ACTIONS(1153), + [anon_sym_NULL] = ACTIONS(1153), + [anon_sym_nullptr] = ACTIONS(1153), [sym_comment] = ACTIONS(3), }, - [215] = { - [sym_identifier] = ACTIONS(1209), - [aux_sym_preproc_include_token1] = ACTIONS(1209), - [aux_sym_preproc_def_token1] = ACTIONS(1209), - [aux_sym_preproc_if_token1] = ACTIONS(1209), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1209), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1209), - [sym_preproc_directive] = ACTIONS(1209), - [anon_sym_LPAREN2] = ACTIONS(1211), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_TILDE] = ACTIONS(1211), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_PLUS] = ACTIONS(1209), - [anon_sym_STAR] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1211), - [anon_sym_SEMI] = ACTIONS(1211), - [anon_sym___extension__] = ACTIONS(1209), - [anon_sym_typedef] = ACTIONS(1209), - [anon_sym_extern] = ACTIONS(1209), - [anon_sym___attribute__] = ACTIONS(1209), - [anon_sym___scanf] = ACTIONS(1209), - [anon_sym___printf] = ACTIONS(1209), - [anon_sym___read_mostly] = ACTIONS(1209), - [anon_sym___must_hold] = ACTIONS(1209), - [anon_sym___ro_after_init] = ACTIONS(1209), - [anon_sym___init] = ACTIONS(1209), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1211), - [anon_sym___declspec] = ACTIONS(1209), - [anon_sym___cdecl] = ACTIONS(1209), - [anon_sym___clrcall] = ACTIONS(1209), - [anon_sym___stdcall] = ACTIONS(1209), - [anon_sym___fastcall] = ACTIONS(1209), - [anon_sym___thiscall] = ACTIONS(1209), - [anon_sym___vectorcall] = ACTIONS(1209), - [anon_sym_LBRACE] = ACTIONS(1211), - [anon_sym_RBRACE] = ACTIONS(1211), - [anon_sym_signed] = ACTIONS(1209), - [anon_sym_unsigned] = ACTIONS(1209), - [anon_sym_long] = ACTIONS(1209), - [anon_sym_short] = ACTIONS(1209), - [anon_sym_static] = ACTIONS(1209), - [anon_sym_auto] = ACTIONS(1209), - [anon_sym_register] = ACTIONS(1209), - [anon_sym_inline] = ACTIONS(1209), - [anon_sym___inline] = ACTIONS(1209), - [anon_sym___inline__] = ACTIONS(1209), - [anon_sym___forceinline] = ACTIONS(1209), - [anon_sym_thread_local] = ACTIONS(1209), - [anon_sym___thread] = ACTIONS(1209), - [anon_sym_const] = ACTIONS(1209), - [anon_sym_constexpr] = ACTIONS(1209), - [anon_sym_volatile] = ACTIONS(1209), - [anon_sym_restrict] = ACTIONS(1209), - [anon_sym___restrict__] = ACTIONS(1209), - [anon_sym__Atomic] = ACTIONS(1209), - [anon_sym__Noreturn] = ACTIONS(1209), - [anon_sym_noreturn] = ACTIONS(1209), - [anon_sym_alignas] = ACTIONS(1209), - [anon_sym__Alignas] = ACTIONS(1209), - [sym_primitive_type] = ACTIONS(1209), - [anon_sym_enum] = ACTIONS(1209), - [anon_sym_struct] = ACTIONS(1209), - [anon_sym_union] = ACTIONS(1209), - [anon_sym_if] = ACTIONS(1209), - [anon_sym_else] = ACTIONS(1209), - [anon_sym_switch] = ACTIONS(1209), - [anon_sym_case] = ACTIONS(1209), - [anon_sym_default] = ACTIONS(1209), - [anon_sym_while] = ACTIONS(1209), - [anon_sym_do] = ACTIONS(1209), - [anon_sym_for] = ACTIONS(1209), - [anon_sym_return] = ACTIONS(1209), - [anon_sym_break] = ACTIONS(1209), - [anon_sym_continue] = ACTIONS(1209), - [anon_sym_goto] = ACTIONS(1209), - [anon_sym___try] = ACTIONS(1209), - [anon_sym___leave] = ACTIONS(1209), - [anon_sym_DASH_DASH] = ACTIONS(1211), - [anon_sym_PLUS_PLUS] = ACTIONS(1211), - [anon_sym_sizeof] = ACTIONS(1209), - [anon_sym___alignof__] = ACTIONS(1209), - [anon_sym___alignof] = ACTIONS(1209), - [anon_sym__alignof] = ACTIONS(1209), - [anon_sym_alignof] = ACTIONS(1209), - [anon_sym__Alignof] = ACTIONS(1209), - [anon_sym_offsetof] = ACTIONS(1209), - [anon_sym__Generic] = ACTIONS(1209), - [anon_sym_asm] = ACTIONS(1209), - [anon_sym___asm__] = ACTIONS(1209), - [sym_number_literal] = ACTIONS(1211), - [anon_sym_L_SQUOTE] = ACTIONS(1211), - [anon_sym_u_SQUOTE] = ACTIONS(1211), - [anon_sym_U_SQUOTE] = ACTIONS(1211), - [anon_sym_u8_SQUOTE] = ACTIONS(1211), - [anon_sym_SQUOTE] = ACTIONS(1211), - [anon_sym_L_DQUOTE] = ACTIONS(1211), - [anon_sym_u_DQUOTE] = ACTIONS(1211), - [anon_sym_U_DQUOTE] = ACTIONS(1211), - [anon_sym_u8_DQUOTE] = ACTIONS(1211), - [anon_sym_DQUOTE] = ACTIONS(1211), - [sym_true] = ACTIONS(1209), - [sym_false] = ACTIONS(1209), - [anon_sym_NULL] = ACTIONS(1209), - [anon_sym_nullptr] = ACTIONS(1209), + [244] = { + [sym_identifier] = ACTIONS(1161), + [aux_sym_preproc_include_token1] = ACTIONS(1161), + [aux_sym_preproc_def_token1] = ACTIONS(1161), + [aux_sym_preproc_if_token1] = ACTIONS(1161), + [aux_sym_preproc_if_token2] = ACTIONS(1161), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1161), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1161), + [sym_preproc_directive] = ACTIONS(1161), + [anon_sym_LPAREN2] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1163), + [anon_sym_TILDE] = ACTIONS(1163), + [anon_sym_DASH] = ACTIONS(1161), + [anon_sym_PLUS] = ACTIONS(1161), + [anon_sym_STAR] = ACTIONS(1163), + [anon_sym_AMP] = ACTIONS(1163), + [anon_sym_SEMI] = ACTIONS(1163), + [anon_sym___extension__] = ACTIONS(1161), + [anon_sym_typedef] = ACTIONS(1161), + [anon_sym_extern] = ACTIONS(1161), + [anon_sym___attribute__] = ACTIONS(1161), + [anon_sym___scanf] = ACTIONS(1161), + [anon_sym___printf] = ACTIONS(1161), + [anon_sym___read_mostly] = ACTIONS(1161), + [anon_sym___must_hold] = ACTIONS(1161), + [anon_sym___ro_after_init] = ACTIONS(1161), + [anon_sym___noreturn] = ACTIONS(1161), + [anon_sym___cold] = ACTIONS(1161), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1163), + [anon_sym___declspec] = ACTIONS(1161), + [anon_sym___init] = ACTIONS(1161), + [anon_sym___exit] = ACTIONS(1161), + [anon_sym___cdecl] = ACTIONS(1161), + [anon_sym___clrcall] = ACTIONS(1161), + [anon_sym___stdcall] = ACTIONS(1161), + [anon_sym___fastcall] = ACTIONS(1161), + [anon_sym___thiscall] = ACTIONS(1161), + [anon_sym___vectorcall] = ACTIONS(1161), + [anon_sym_LBRACE] = ACTIONS(1163), + [anon_sym_signed] = ACTIONS(1161), + [anon_sym_unsigned] = ACTIONS(1161), + [anon_sym_long] = ACTIONS(1161), + [anon_sym_short] = ACTIONS(1161), + [anon_sym_static] = ACTIONS(1161), + [anon_sym_auto] = ACTIONS(1161), + [anon_sym_register] = ACTIONS(1161), + [anon_sym_inline] = ACTIONS(1161), + [anon_sym___inline] = ACTIONS(1161), + [anon_sym___inline__] = ACTIONS(1161), + [anon_sym___forceinline] = ACTIONS(1161), + [anon_sym_thread_local] = ACTIONS(1161), + [anon_sym___thread] = ACTIONS(1161), + [anon_sym_const] = ACTIONS(1161), + [anon_sym_constexpr] = ACTIONS(1161), + [anon_sym_volatile] = ACTIONS(1161), + [anon_sym_restrict] = ACTIONS(1161), + [anon_sym___restrict__] = ACTIONS(1161), + [anon_sym__Atomic] = ACTIONS(1161), + [anon_sym__Noreturn] = ACTIONS(1161), + [anon_sym_noreturn] = ACTIONS(1161), + [anon_sym_alignas] = ACTIONS(1161), + [anon_sym__Alignas] = ACTIONS(1161), + [sym_primitive_type] = ACTIONS(1161), + [anon_sym_enum] = ACTIONS(1161), + [anon_sym_struct] = ACTIONS(1161), + [anon_sym_union] = ACTIONS(1161), + [anon_sym_if] = ACTIONS(1161), + [anon_sym_else] = ACTIONS(1161), + [anon_sym_switch] = ACTIONS(1161), + [anon_sym_case] = ACTIONS(1161), + [anon_sym_default] = ACTIONS(1161), + [anon_sym_while] = ACTIONS(1161), + [anon_sym_do] = ACTIONS(1161), + [anon_sym_for] = ACTIONS(1161), + [anon_sym_return] = ACTIONS(1161), + [anon_sym_break] = ACTIONS(1161), + [anon_sym_continue] = ACTIONS(1161), + [anon_sym_goto] = ACTIONS(1161), + [anon_sym___try] = ACTIONS(1161), + [anon_sym___leave] = ACTIONS(1161), + [anon_sym_DASH_DASH] = ACTIONS(1163), + [anon_sym_PLUS_PLUS] = ACTIONS(1163), + [anon_sym_sizeof] = ACTIONS(1161), + [anon_sym___alignof__] = ACTIONS(1161), + [anon_sym___alignof] = ACTIONS(1161), + [anon_sym__alignof] = ACTIONS(1161), + [anon_sym_alignof] = ACTIONS(1161), + [anon_sym__Alignof] = ACTIONS(1161), + [anon_sym_offsetof] = ACTIONS(1161), + [anon_sym__Generic] = ACTIONS(1161), + [anon_sym_asm] = ACTIONS(1161), + [anon_sym___asm__] = ACTIONS(1161), + [sym_number_literal] = ACTIONS(1163), + [anon_sym_L_SQUOTE] = ACTIONS(1163), + [anon_sym_u_SQUOTE] = ACTIONS(1163), + [anon_sym_U_SQUOTE] = ACTIONS(1163), + [anon_sym_u8_SQUOTE] = ACTIONS(1163), + [anon_sym_SQUOTE] = ACTIONS(1163), + [anon_sym_L_DQUOTE] = ACTIONS(1163), + [anon_sym_u_DQUOTE] = ACTIONS(1163), + [anon_sym_U_DQUOTE] = ACTIONS(1163), + [anon_sym_u8_DQUOTE] = ACTIONS(1163), + [anon_sym_DQUOTE] = ACTIONS(1163), + [sym_true] = ACTIONS(1161), + [sym_false] = ACTIONS(1161), + [anon_sym_NULL] = ACTIONS(1161), + [anon_sym_nullptr] = ACTIONS(1161), + [sym_comment] = ACTIONS(3), + }, + [245] = { + [ts_builtin_sym_end] = ACTIONS(1239), + [sym_identifier] = ACTIONS(1237), + [aux_sym_preproc_include_token1] = ACTIONS(1237), + [aux_sym_preproc_def_token1] = ACTIONS(1237), + [aux_sym_preproc_if_token1] = ACTIONS(1237), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1237), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1237), + [sym_preproc_directive] = ACTIONS(1237), + [anon_sym_LPAREN2] = ACTIONS(1239), + [anon_sym_BANG] = ACTIONS(1239), + [anon_sym_TILDE] = ACTIONS(1239), + [anon_sym_DASH] = ACTIONS(1237), + [anon_sym_PLUS] = ACTIONS(1237), + [anon_sym_STAR] = ACTIONS(1239), + [anon_sym_AMP] = ACTIONS(1239), + [anon_sym_SEMI] = ACTIONS(1239), + [anon_sym___extension__] = ACTIONS(1237), + [anon_sym_typedef] = ACTIONS(1237), + [anon_sym_extern] = ACTIONS(1237), + [anon_sym___attribute__] = ACTIONS(1237), + [anon_sym___scanf] = ACTIONS(1237), + [anon_sym___printf] = ACTIONS(1237), + [anon_sym___read_mostly] = ACTIONS(1237), + [anon_sym___must_hold] = ACTIONS(1237), + [anon_sym___ro_after_init] = ACTIONS(1237), + [anon_sym___noreturn] = ACTIONS(1237), + [anon_sym___cold] = ACTIONS(1237), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1239), + [anon_sym___declspec] = ACTIONS(1237), + [anon_sym___init] = ACTIONS(1237), + [anon_sym___exit] = ACTIONS(1237), + [anon_sym___cdecl] = ACTIONS(1237), + [anon_sym___clrcall] = ACTIONS(1237), + [anon_sym___stdcall] = ACTIONS(1237), + [anon_sym___fastcall] = ACTIONS(1237), + [anon_sym___thiscall] = ACTIONS(1237), + [anon_sym___vectorcall] = ACTIONS(1237), + [anon_sym_LBRACE] = ACTIONS(1239), + [anon_sym_signed] = ACTIONS(1237), + [anon_sym_unsigned] = ACTIONS(1237), + [anon_sym_long] = ACTIONS(1237), + [anon_sym_short] = ACTIONS(1237), + [anon_sym_static] = ACTIONS(1237), + [anon_sym_auto] = ACTIONS(1237), + [anon_sym_register] = ACTIONS(1237), + [anon_sym_inline] = ACTIONS(1237), + [anon_sym___inline] = ACTIONS(1237), + [anon_sym___inline__] = ACTIONS(1237), + [anon_sym___forceinline] = ACTIONS(1237), + [anon_sym_thread_local] = ACTIONS(1237), + [anon_sym___thread] = ACTIONS(1237), + [anon_sym_const] = ACTIONS(1237), + [anon_sym_constexpr] = ACTIONS(1237), + [anon_sym_volatile] = ACTIONS(1237), + [anon_sym_restrict] = ACTIONS(1237), + [anon_sym___restrict__] = ACTIONS(1237), + [anon_sym__Atomic] = ACTIONS(1237), + [anon_sym__Noreturn] = ACTIONS(1237), + [anon_sym_noreturn] = ACTIONS(1237), + [anon_sym_alignas] = ACTIONS(1237), + [anon_sym__Alignas] = ACTIONS(1237), + [sym_primitive_type] = ACTIONS(1237), + [anon_sym_enum] = ACTIONS(1237), + [anon_sym_struct] = ACTIONS(1237), + [anon_sym_union] = ACTIONS(1237), + [anon_sym_if] = ACTIONS(1237), + [anon_sym_else] = ACTIONS(1237), + [anon_sym_switch] = ACTIONS(1237), + [anon_sym_case] = ACTIONS(1237), + [anon_sym_default] = ACTIONS(1237), + [anon_sym_while] = ACTIONS(1237), + [anon_sym_do] = ACTIONS(1237), + [anon_sym_for] = ACTIONS(1237), + [anon_sym_return] = ACTIONS(1237), + [anon_sym_break] = ACTIONS(1237), + [anon_sym_continue] = ACTIONS(1237), + [anon_sym_goto] = ACTIONS(1237), + [anon_sym___try] = ACTIONS(1237), + [anon_sym___leave] = ACTIONS(1237), + [anon_sym_DASH_DASH] = ACTIONS(1239), + [anon_sym_PLUS_PLUS] = ACTIONS(1239), + [anon_sym_sizeof] = ACTIONS(1237), + [anon_sym___alignof__] = ACTIONS(1237), + [anon_sym___alignof] = ACTIONS(1237), + [anon_sym__alignof] = ACTIONS(1237), + [anon_sym_alignof] = ACTIONS(1237), + [anon_sym__Alignof] = ACTIONS(1237), + [anon_sym_offsetof] = ACTIONS(1237), + [anon_sym__Generic] = ACTIONS(1237), + [anon_sym_asm] = ACTIONS(1237), + [anon_sym___asm__] = ACTIONS(1237), + [sym_number_literal] = ACTIONS(1239), + [anon_sym_L_SQUOTE] = ACTIONS(1239), + [anon_sym_u_SQUOTE] = ACTIONS(1239), + [anon_sym_U_SQUOTE] = ACTIONS(1239), + [anon_sym_u8_SQUOTE] = ACTIONS(1239), + [anon_sym_SQUOTE] = ACTIONS(1239), + [anon_sym_L_DQUOTE] = ACTIONS(1239), + [anon_sym_u_DQUOTE] = ACTIONS(1239), + [anon_sym_U_DQUOTE] = ACTIONS(1239), + [anon_sym_u8_DQUOTE] = ACTIONS(1239), + [anon_sym_DQUOTE] = ACTIONS(1239), + [sym_true] = ACTIONS(1237), + [sym_false] = ACTIONS(1237), + [anon_sym_NULL] = ACTIONS(1237), + [anon_sym_nullptr] = ACTIONS(1237), + [sym_comment] = ACTIONS(3), + }, + [246] = { + [ts_builtin_sym_end] = ACTIONS(1279), + [sym_identifier] = ACTIONS(1277), + [aux_sym_preproc_include_token1] = ACTIONS(1277), + [aux_sym_preproc_def_token1] = ACTIONS(1277), + [aux_sym_preproc_if_token1] = ACTIONS(1277), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1277), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1277), + [sym_preproc_directive] = ACTIONS(1277), + [anon_sym_LPAREN2] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(1279), + [anon_sym_DASH] = ACTIONS(1277), + [anon_sym_PLUS] = ACTIONS(1277), + [anon_sym_STAR] = ACTIONS(1279), + [anon_sym_AMP] = ACTIONS(1279), + [anon_sym_SEMI] = ACTIONS(1279), + [anon_sym___extension__] = ACTIONS(1277), + [anon_sym_typedef] = ACTIONS(1277), + [anon_sym_extern] = ACTIONS(1277), + [anon_sym___attribute__] = ACTIONS(1277), + [anon_sym___scanf] = ACTIONS(1277), + [anon_sym___printf] = ACTIONS(1277), + [anon_sym___read_mostly] = ACTIONS(1277), + [anon_sym___must_hold] = ACTIONS(1277), + [anon_sym___ro_after_init] = ACTIONS(1277), + [anon_sym___noreturn] = ACTIONS(1277), + [anon_sym___cold] = ACTIONS(1277), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1279), + [anon_sym___declspec] = ACTIONS(1277), + [anon_sym___init] = ACTIONS(1277), + [anon_sym___exit] = ACTIONS(1277), + [anon_sym___cdecl] = ACTIONS(1277), + [anon_sym___clrcall] = ACTIONS(1277), + [anon_sym___stdcall] = ACTIONS(1277), + [anon_sym___fastcall] = ACTIONS(1277), + [anon_sym___thiscall] = ACTIONS(1277), + [anon_sym___vectorcall] = ACTIONS(1277), + [anon_sym_LBRACE] = ACTIONS(1279), + [anon_sym_signed] = ACTIONS(1277), + [anon_sym_unsigned] = ACTIONS(1277), + [anon_sym_long] = ACTIONS(1277), + [anon_sym_short] = ACTIONS(1277), + [anon_sym_static] = ACTIONS(1277), + [anon_sym_auto] = ACTIONS(1277), + [anon_sym_register] = ACTIONS(1277), + [anon_sym_inline] = ACTIONS(1277), + [anon_sym___inline] = ACTIONS(1277), + [anon_sym___inline__] = ACTIONS(1277), + [anon_sym___forceinline] = ACTIONS(1277), + [anon_sym_thread_local] = ACTIONS(1277), + [anon_sym___thread] = ACTIONS(1277), + [anon_sym_const] = ACTIONS(1277), + [anon_sym_constexpr] = ACTIONS(1277), + [anon_sym_volatile] = ACTIONS(1277), + [anon_sym_restrict] = ACTIONS(1277), + [anon_sym___restrict__] = ACTIONS(1277), + [anon_sym__Atomic] = ACTIONS(1277), + [anon_sym__Noreturn] = ACTIONS(1277), + [anon_sym_noreturn] = ACTIONS(1277), + [anon_sym_alignas] = ACTIONS(1277), + [anon_sym__Alignas] = ACTIONS(1277), + [sym_primitive_type] = ACTIONS(1277), + [anon_sym_enum] = ACTIONS(1277), + [anon_sym_struct] = ACTIONS(1277), + [anon_sym_union] = ACTIONS(1277), + [anon_sym_if] = ACTIONS(1277), + [anon_sym_else] = ACTIONS(1277), + [anon_sym_switch] = ACTIONS(1277), + [anon_sym_case] = ACTIONS(1277), + [anon_sym_default] = ACTIONS(1277), + [anon_sym_while] = ACTIONS(1277), + [anon_sym_do] = ACTIONS(1277), + [anon_sym_for] = ACTIONS(1277), + [anon_sym_return] = ACTIONS(1277), + [anon_sym_break] = ACTIONS(1277), + [anon_sym_continue] = ACTIONS(1277), + [anon_sym_goto] = ACTIONS(1277), + [anon_sym___try] = ACTIONS(1277), + [anon_sym___leave] = ACTIONS(1277), + [anon_sym_DASH_DASH] = ACTIONS(1279), + [anon_sym_PLUS_PLUS] = ACTIONS(1279), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym___alignof__] = ACTIONS(1277), + [anon_sym___alignof] = ACTIONS(1277), + [anon_sym__alignof] = ACTIONS(1277), + [anon_sym_alignof] = ACTIONS(1277), + [anon_sym__Alignof] = ACTIONS(1277), + [anon_sym_offsetof] = ACTIONS(1277), + [anon_sym__Generic] = ACTIONS(1277), + [anon_sym_asm] = ACTIONS(1277), + [anon_sym___asm__] = ACTIONS(1277), + [sym_number_literal] = ACTIONS(1279), + [anon_sym_L_SQUOTE] = ACTIONS(1279), + [anon_sym_u_SQUOTE] = ACTIONS(1279), + [anon_sym_U_SQUOTE] = ACTIONS(1279), + [anon_sym_u8_SQUOTE] = ACTIONS(1279), + [anon_sym_SQUOTE] = ACTIONS(1279), + [anon_sym_L_DQUOTE] = ACTIONS(1279), + [anon_sym_u_DQUOTE] = ACTIONS(1279), + [anon_sym_U_DQUOTE] = ACTIONS(1279), + [anon_sym_u8_DQUOTE] = ACTIONS(1279), + [anon_sym_DQUOTE] = ACTIONS(1279), + [sym_true] = ACTIONS(1277), + [sym_false] = ACTIONS(1277), + [anon_sym_NULL] = ACTIONS(1277), + [anon_sym_nullptr] = ACTIONS(1277), [sym_comment] = ACTIONS(3), }, - [216] = { - [ts_builtin_sym_end] = ACTIONS(1187), - [sym_identifier] = ACTIONS(1185), - [aux_sym_preproc_include_token1] = ACTIONS(1185), - [aux_sym_preproc_def_token1] = ACTIONS(1185), - [aux_sym_preproc_if_token1] = ACTIONS(1185), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1185), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1185), - [sym_preproc_directive] = ACTIONS(1185), - [anon_sym_LPAREN2] = ACTIONS(1187), - [anon_sym_BANG] = ACTIONS(1187), - [anon_sym_TILDE] = ACTIONS(1187), - [anon_sym_DASH] = ACTIONS(1185), - [anon_sym_PLUS] = ACTIONS(1185), - [anon_sym_STAR] = ACTIONS(1187), - [anon_sym_AMP] = ACTIONS(1187), - [anon_sym_SEMI] = ACTIONS(1187), - [anon_sym___extension__] = ACTIONS(1185), - [anon_sym_typedef] = ACTIONS(1185), - [anon_sym_extern] = ACTIONS(1185), - [anon_sym___attribute__] = ACTIONS(1185), - [anon_sym___scanf] = ACTIONS(1185), - [anon_sym___printf] = ACTIONS(1185), - [anon_sym___read_mostly] = ACTIONS(1185), - [anon_sym___must_hold] = ACTIONS(1185), - [anon_sym___ro_after_init] = ACTIONS(1185), - [anon_sym___init] = ACTIONS(1185), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1187), - [anon_sym___declspec] = ACTIONS(1185), - [anon_sym___cdecl] = ACTIONS(1185), - [anon_sym___clrcall] = ACTIONS(1185), - [anon_sym___stdcall] = ACTIONS(1185), - [anon_sym___fastcall] = ACTIONS(1185), - [anon_sym___thiscall] = ACTIONS(1185), - [anon_sym___vectorcall] = ACTIONS(1185), - [anon_sym_LBRACE] = ACTIONS(1187), - [anon_sym_signed] = ACTIONS(1185), - [anon_sym_unsigned] = ACTIONS(1185), - [anon_sym_long] = ACTIONS(1185), - [anon_sym_short] = ACTIONS(1185), - [anon_sym_static] = ACTIONS(1185), - [anon_sym_auto] = ACTIONS(1185), - [anon_sym_register] = ACTIONS(1185), - [anon_sym_inline] = ACTIONS(1185), - [anon_sym___inline] = ACTIONS(1185), - [anon_sym___inline__] = ACTIONS(1185), - [anon_sym___forceinline] = ACTIONS(1185), - [anon_sym_thread_local] = ACTIONS(1185), - [anon_sym___thread] = ACTIONS(1185), - [anon_sym_const] = ACTIONS(1185), - [anon_sym_constexpr] = ACTIONS(1185), - [anon_sym_volatile] = ACTIONS(1185), - [anon_sym_restrict] = ACTIONS(1185), - [anon_sym___restrict__] = ACTIONS(1185), - [anon_sym__Atomic] = ACTIONS(1185), - [anon_sym__Noreturn] = ACTIONS(1185), - [anon_sym_noreturn] = ACTIONS(1185), - [anon_sym_alignas] = ACTIONS(1185), - [anon_sym__Alignas] = ACTIONS(1185), - [sym_primitive_type] = ACTIONS(1185), - [anon_sym_enum] = ACTIONS(1185), - [anon_sym_struct] = ACTIONS(1185), - [anon_sym_union] = ACTIONS(1185), - [anon_sym_if] = ACTIONS(1185), - [anon_sym_else] = ACTIONS(1185), - [anon_sym_switch] = ACTIONS(1185), - [anon_sym_case] = ACTIONS(1185), - [anon_sym_default] = ACTIONS(1185), - [anon_sym_while] = ACTIONS(1185), - [anon_sym_do] = ACTIONS(1185), - [anon_sym_for] = ACTIONS(1185), - [anon_sym_return] = ACTIONS(1185), - [anon_sym_break] = ACTIONS(1185), - [anon_sym_continue] = ACTIONS(1185), - [anon_sym_goto] = ACTIONS(1185), - [anon_sym___try] = ACTIONS(1185), - [anon_sym___leave] = ACTIONS(1185), - [anon_sym_DASH_DASH] = ACTIONS(1187), - [anon_sym_PLUS_PLUS] = ACTIONS(1187), - [anon_sym_sizeof] = ACTIONS(1185), - [anon_sym___alignof__] = ACTIONS(1185), - [anon_sym___alignof] = ACTIONS(1185), - [anon_sym__alignof] = ACTIONS(1185), - [anon_sym_alignof] = ACTIONS(1185), - [anon_sym__Alignof] = ACTIONS(1185), - [anon_sym_offsetof] = ACTIONS(1185), - [anon_sym__Generic] = ACTIONS(1185), - [anon_sym_asm] = ACTIONS(1185), - [anon_sym___asm__] = ACTIONS(1185), - [sym_number_literal] = ACTIONS(1187), - [anon_sym_L_SQUOTE] = ACTIONS(1187), - [anon_sym_u_SQUOTE] = ACTIONS(1187), - [anon_sym_U_SQUOTE] = ACTIONS(1187), - [anon_sym_u8_SQUOTE] = ACTIONS(1187), - [anon_sym_SQUOTE] = ACTIONS(1187), - [anon_sym_L_DQUOTE] = ACTIONS(1187), - [anon_sym_u_DQUOTE] = ACTIONS(1187), - [anon_sym_U_DQUOTE] = ACTIONS(1187), - [anon_sym_u8_DQUOTE] = ACTIONS(1187), - [anon_sym_DQUOTE] = ACTIONS(1187), - [sym_true] = ACTIONS(1185), - [sym_false] = ACTIONS(1185), - [anon_sym_NULL] = ACTIONS(1185), - [anon_sym_nullptr] = ACTIONS(1185), + [247] = { + [sym_identifier] = ACTIONS(1225), + [aux_sym_preproc_include_token1] = ACTIONS(1225), + [aux_sym_preproc_def_token1] = ACTIONS(1225), + [aux_sym_preproc_if_token1] = ACTIONS(1225), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1225), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1225), + [sym_preproc_directive] = ACTIONS(1225), + [anon_sym_LPAREN2] = ACTIONS(1227), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_TILDE] = ACTIONS(1227), + [anon_sym_DASH] = ACTIONS(1225), + [anon_sym_PLUS] = ACTIONS(1225), + [anon_sym_STAR] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(1227), + [anon_sym_SEMI] = ACTIONS(1227), + [anon_sym___extension__] = ACTIONS(1225), + [anon_sym_typedef] = ACTIONS(1225), + [anon_sym_extern] = ACTIONS(1225), + [anon_sym___attribute__] = ACTIONS(1225), + [anon_sym___scanf] = ACTIONS(1225), + [anon_sym___printf] = ACTIONS(1225), + [anon_sym___read_mostly] = ACTIONS(1225), + [anon_sym___must_hold] = ACTIONS(1225), + [anon_sym___ro_after_init] = ACTIONS(1225), + [anon_sym___noreturn] = ACTIONS(1225), + [anon_sym___cold] = ACTIONS(1225), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1227), + [anon_sym___declspec] = ACTIONS(1225), + [anon_sym___init] = ACTIONS(1225), + [anon_sym___exit] = ACTIONS(1225), + [anon_sym___cdecl] = ACTIONS(1225), + [anon_sym___clrcall] = ACTIONS(1225), + [anon_sym___stdcall] = ACTIONS(1225), + [anon_sym___fastcall] = ACTIONS(1225), + [anon_sym___thiscall] = ACTIONS(1225), + [anon_sym___vectorcall] = ACTIONS(1225), + [anon_sym_LBRACE] = ACTIONS(1227), + [anon_sym_RBRACE] = ACTIONS(1227), + [anon_sym_signed] = ACTIONS(1225), + [anon_sym_unsigned] = ACTIONS(1225), + [anon_sym_long] = ACTIONS(1225), + [anon_sym_short] = ACTIONS(1225), + [anon_sym_static] = ACTIONS(1225), + [anon_sym_auto] = ACTIONS(1225), + [anon_sym_register] = ACTIONS(1225), + [anon_sym_inline] = ACTIONS(1225), + [anon_sym___inline] = ACTIONS(1225), + [anon_sym___inline__] = ACTIONS(1225), + [anon_sym___forceinline] = ACTIONS(1225), + [anon_sym_thread_local] = ACTIONS(1225), + [anon_sym___thread] = ACTIONS(1225), + [anon_sym_const] = ACTIONS(1225), + [anon_sym_constexpr] = ACTIONS(1225), + [anon_sym_volatile] = ACTIONS(1225), + [anon_sym_restrict] = ACTIONS(1225), + [anon_sym___restrict__] = ACTIONS(1225), + [anon_sym__Atomic] = ACTIONS(1225), + [anon_sym__Noreturn] = ACTIONS(1225), + [anon_sym_noreturn] = ACTIONS(1225), + [anon_sym_alignas] = ACTIONS(1225), + [anon_sym__Alignas] = ACTIONS(1225), + [sym_primitive_type] = ACTIONS(1225), + [anon_sym_enum] = ACTIONS(1225), + [anon_sym_struct] = ACTIONS(1225), + [anon_sym_union] = ACTIONS(1225), + [anon_sym_if] = ACTIONS(1225), + [anon_sym_else] = ACTIONS(1225), + [anon_sym_switch] = ACTIONS(1225), + [anon_sym_case] = ACTIONS(1225), + [anon_sym_default] = ACTIONS(1225), + [anon_sym_while] = ACTIONS(1225), + [anon_sym_do] = ACTIONS(1225), + [anon_sym_for] = ACTIONS(1225), + [anon_sym_return] = ACTIONS(1225), + [anon_sym_break] = ACTIONS(1225), + [anon_sym_continue] = ACTIONS(1225), + [anon_sym_goto] = ACTIONS(1225), + [anon_sym___try] = ACTIONS(1225), + [anon_sym___leave] = ACTIONS(1225), + [anon_sym_DASH_DASH] = ACTIONS(1227), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_sizeof] = ACTIONS(1225), + [anon_sym___alignof__] = ACTIONS(1225), + [anon_sym___alignof] = ACTIONS(1225), + [anon_sym__alignof] = ACTIONS(1225), + [anon_sym_alignof] = ACTIONS(1225), + [anon_sym__Alignof] = ACTIONS(1225), + [anon_sym_offsetof] = ACTIONS(1225), + [anon_sym__Generic] = ACTIONS(1225), + [anon_sym_asm] = ACTIONS(1225), + [anon_sym___asm__] = ACTIONS(1225), + [sym_number_literal] = ACTIONS(1227), + [anon_sym_L_SQUOTE] = ACTIONS(1227), + [anon_sym_u_SQUOTE] = ACTIONS(1227), + [anon_sym_U_SQUOTE] = ACTIONS(1227), + [anon_sym_u8_SQUOTE] = ACTIONS(1227), + [anon_sym_SQUOTE] = ACTIONS(1227), + [anon_sym_L_DQUOTE] = ACTIONS(1227), + [anon_sym_u_DQUOTE] = ACTIONS(1227), + [anon_sym_U_DQUOTE] = ACTIONS(1227), + [anon_sym_u8_DQUOTE] = ACTIONS(1227), + [anon_sym_DQUOTE] = ACTIONS(1227), + [sym_true] = ACTIONS(1225), + [sym_false] = ACTIONS(1225), + [anon_sym_NULL] = ACTIONS(1225), + [anon_sym_nullptr] = ACTIONS(1225), [sym_comment] = ACTIONS(3), }, - [217] = { + [248] = { + [sym_identifier] = ACTIONS(1161), + [aux_sym_preproc_include_token1] = ACTIONS(1161), + [aux_sym_preproc_def_token1] = ACTIONS(1161), + [aux_sym_preproc_if_token1] = ACTIONS(1161), + [aux_sym_preproc_if_token2] = ACTIONS(1161), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1161), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1161), + [sym_preproc_directive] = ACTIONS(1161), + [anon_sym_LPAREN2] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1163), + [anon_sym_TILDE] = ACTIONS(1163), + [anon_sym_DASH] = ACTIONS(1161), + [anon_sym_PLUS] = ACTIONS(1161), + [anon_sym_STAR] = ACTIONS(1163), + [anon_sym_AMP] = ACTIONS(1163), + [anon_sym_SEMI] = ACTIONS(1163), + [anon_sym___extension__] = ACTIONS(1161), + [anon_sym_typedef] = ACTIONS(1161), + [anon_sym_extern] = ACTIONS(1161), + [anon_sym___attribute__] = ACTIONS(1161), + [anon_sym___scanf] = ACTIONS(1161), + [anon_sym___printf] = ACTIONS(1161), + [anon_sym___read_mostly] = ACTIONS(1161), + [anon_sym___must_hold] = ACTIONS(1161), + [anon_sym___ro_after_init] = ACTIONS(1161), + [anon_sym___noreturn] = ACTIONS(1161), + [anon_sym___cold] = ACTIONS(1161), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1163), + [anon_sym___declspec] = ACTIONS(1161), + [anon_sym___init] = ACTIONS(1161), + [anon_sym___exit] = ACTIONS(1161), + [anon_sym___cdecl] = ACTIONS(1161), + [anon_sym___clrcall] = ACTIONS(1161), + [anon_sym___stdcall] = ACTIONS(1161), + [anon_sym___fastcall] = ACTIONS(1161), + [anon_sym___thiscall] = ACTIONS(1161), + [anon_sym___vectorcall] = ACTIONS(1161), + [anon_sym_LBRACE] = ACTIONS(1163), + [anon_sym_signed] = ACTIONS(1161), + [anon_sym_unsigned] = ACTIONS(1161), + [anon_sym_long] = ACTIONS(1161), + [anon_sym_short] = ACTIONS(1161), + [anon_sym_static] = ACTIONS(1161), + [anon_sym_auto] = ACTIONS(1161), + [anon_sym_register] = ACTIONS(1161), + [anon_sym_inline] = ACTIONS(1161), + [anon_sym___inline] = ACTIONS(1161), + [anon_sym___inline__] = ACTIONS(1161), + [anon_sym___forceinline] = ACTIONS(1161), + [anon_sym_thread_local] = ACTIONS(1161), + [anon_sym___thread] = ACTIONS(1161), + [anon_sym_const] = ACTIONS(1161), + [anon_sym_constexpr] = ACTIONS(1161), + [anon_sym_volatile] = ACTIONS(1161), + [anon_sym_restrict] = ACTIONS(1161), + [anon_sym___restrict__] = ACTIONS(1161), + [anon_sym__Atomic] = ACTIONS(1161), + [anon_sym__Noreturn] = ACTIONS(1161), + [anon_sym_noreturn] = ACTIONS(1161), + [anon_sym_alignas] = ACTIONS(1161), + [anon_sym__Alignas] = ACTIONS(1161), + [sym_primitive_type] = ACTIONS(1161), + [anon_sym_enum] = ACTIONS(1161), + [anon_sym_struct] = ACTIONS(1161), + [anon_sym_union] = ACTIONS(1161), + [anon_sym_if] = ACTIONS(1161), + [anon_sym_else] = ACTIONS(1161), + [anon_sym_switch] = ACTIONS(1161), + [anon_sym_case] = ACTIONS(1161), + [anon_sym_default] = ACTIONS(1161), + [anon_sym_while] = ACTIONS(1161), + [anon_sym_do] = ACTIONS(1161), + [anon_sym_for] = ACTIONS(1161), + [anon_sym_return] = ACTIONS(1161), + [anon_sym_break] = ACTIONS(1161), + [anon_sym_continue] = ACTIONS(1161), + [anon_sym_goto] = ACTIONS(1161), + [anon_sym___try] = ACTIONS(1161), + [anon_sym___leave] = ACTIONS(1161), + [anon_sym_DASH_DASH] = ACTIONS(1163), + [anon_sym_PLUS_PLUS] = ACTIONS(1163), + [anon_sym_sizeof] = ACTIONS(1161), + [anon_sym___alignof__] = ACTIONS(1161), + [anon_sym___alignof] = ACTIONS(1161), + [anon_sym__alignof] = ACTIONS(1161), + [anon_sym_alignof] = ACTIONS(1161), + [anon_sym__Alignof] = ACTIONS(1161), + [anon_sym_offsetof] = ACTIONS(1161), + [anon_sym__Generic] = ACTIONS(1161), + [anon_sym_asm] = ACTIONS(1161), + [anon_sym___asm__] = ACTIONS(1161), + [sym_number_literal] = ACTIONS(1163), + [anon_sym_L_SQUOTE] = ACTIONS(1163), + [anon_sym_u_SQUOTE] = ACTIONS(1163), + [anon_sym_U_SQUOTE] = ACTIONS(1163), + [anon_sym_u8_SQUOTE] = ACTIONS(1163), + [anon_sym_SQUOTE] = ACTIONS(1163), + [anon_sym_L_DQUOTE] = ACTIONS(1163), + [anon_sym_u_DQUOTE] = ACTIONS(1163), + [anon_sym_U_DQUOTE] = ACTIONS(1163), + [anon_sym_u8_DQUOTE] = ACTIONS(1163), + [anon_sym_DQUOTE] = ACTIONS(1163), + [sym_true] = ACTIONS(1161), + [sym_false] = ACTIONS(1161), + [anon_sym_NULL] = ACTIONS(1161), + [anon_sym_nullptr] = ACTIONS(1161), + [sym_comment] = ACTIONS(3), + }, + [249] = { [sym_identifier] = ACTIONS(1165), [aux_sym_preproc_include_token1] = ACTIONS(1165), [aux_sym_preproc_def_token1] = ACTIONS(1165), @@ -39815,9 +44668,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___read_mostly] = ACTIONS(1165), [anon_sym___must_hold] = ACTIONS(1165), [anon_sym___ro_after_init] = ACTIONS(1165), - [anon_sym___init] = ACTIONS(1165), + [anon_sym___noreturn] = ACTIONS(1165), + [anon_sym___cold] = ACTIONS(1165), [anon_sym_LBRACK_LBRACK] = ACTIONS(1167), [anon_sym___declspec] = ACTIONS(1165), + [anon_sym___init] = ACTIONS(1165), + [anon_sym___exit] = ACTIONS(1165), [anon_sym___cdecl] = ACTIONS(1165), [anon_sym___clrcall] = ACTIONS(1165), [anon_sym___stdcall] = ACTIONS(1165), @@ -39895,325 +44751,443 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1165), [sym_comment] = ACTIONS(3), }, - [218] = { - [sym_identifier] = ACTIONS(1205), - [aux_sym_preproc_include_token1] = ACTIONS(1205), - [aux_sym_preproc_def_token1] = ACTIONS(1205), - [aux_sym_preproc_if_token1] = ACTIONS(1205), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1205), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1205), - [sym_preproc_directive] = ACTIONS(1205), - [anon_sym_LPAREN2] = ACTIONS(1207), - [anon_sym_BANG] = ACTIONS(1207), - [anon_sym_TILDE] = ACTIONS(1207), - [anon_sym_DASH] = ACTIONS(1205), - [anon_sym_PLUS] = ACTIONS(1205), - [anon_sym_STAR] = ACTIONS(1207), - [anon_sym_AMP] = ACTIONS(1207), - [anon_sym_SEMI] = ACTIONS(1207), - [anon_sym___extension__] = ACTIONS(1205), - [anon_sym_typedef] = ACTIONS(1205), - [anon_sym_extern] = ACTIONS(1205), - [anon_sym___attribute__] = ACTIONS(1205), - [anon_sym___scanf] = ACTIONS(1205), - [anon_sym___printf] = ACTIONS(1205), - [anon_sym___read_mostly] = ACTIONS(1205), - [anon_sym___must_hold] = ACTIONS(1205), - [anon_sym___ro_after_init] = ACTIONS(1205), - [anon_sym___init] = ACTIONS(1205), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1207), - [anon_sym___declspec] = ACTIONS(1205), - [anon_sym___cdecl] = ACTIONS(1205), - [anon_sym___clrcall] = ACTIONS(1205), - [anon_sym___stdcall] = ACTIONS(1205), - [anon_sym___fastcall] = ACTIONS(1205), - [anon_sym___thiscall] = ACTIONS(1205), - [anon_sym___vectorcall] = ACTIONS(1205), - [anon_sym_LBRACE] = ACTIONS(1207), - [anon_sym_RBRACE] = ACTIONS(1207), - [anon_sym_signed] = ACTIONS(1205), - [anon_sym_unsigned] = ACTIONS(1205), - [anon_sym_long] = ACTIONS(1205), - [anon_sym_short] = ACTIONS(1205), - [anon_sym_static] = ACTIONS(1205), - [anon_sym_auto] = ACTIONS(1205), - [anon_sym_register] = ACTIONS(1205), - [anon_sym_inline] = ACTIONS(1205), - [anon_sym___inline] = ACTIONS(1205), - [anon_sym___inline__] = ACTIONS(1205), - [anon_sym___forceinline] = ACTIONS(1205), - [anon_sym_thread_local] = ACTIONS(1205), - [anon_sym___thread] = ACTIONS(1205), - [anon_sym_const] = ACTIONS(1205), - [anon_sym_constexpr] = ACTIONS(1205), - [anon_sym_volatile] = ACTIONS(1205), - [anon_sym_restrict] = ACTIONS(1205), - [anon_sym___restrict__] = ACTIONS(1205), - [anon_sym__Atomic] = ACTIONS(1205), - [anon_sym__Noreturn] = ACTIONS(1205), - [anon_sym_noreturn] = ACTIONS(1205), - [anon_sym_alignas] = ACTIONS(1205), - [anon_sym__Alignas] = ACTIONS(1205), - [sym_primitive_type] = ACTIONS(1205), - [anon_sym_enum] = ACTIONS(1205), - [anon_sym_struct] = ACTIONS(1205), - [anon_sym_union] = ACTIONS(1205), - [anon_sym_if] = ACTIONS(1205), - [anon_sym_else] = ACTIONS(1205), - [anon_sym_switch] = ACTIONS(1205), - [anon_sym_case] = ACTIONS(1205), - [anon_sym_default] = ACTIONS(1205), - [anon_sym_while] = ACTIONS(1205), - [anon_sym_do] = ACTIONS(1205), - [anon_sym_for] = ACTIONS(1205), - [anon_sym_return] = ACTIONS(1205), - [anon_sym_break] = ACTIONS(1205), - [anon_sym_continue] = ACTIONS(1205), - [anon_sym_goto] = ACTIONS(1205), - [anon_sym___try] = ACTIONS(1205), - [anon_sym___leave] = ACTIONS(1205), - [anon_sym_DASH_DASH] = ACTIONS(1207), - [anon_sym_PLUS_PLUS] = ACTIONS(1207), - [anon_sym_sizeof] = ACTIONS(1205), - [anon_sym___alignof__] = ACTIONS(1205), - [anon_sym___alignof] = ACTIONS(1205), - [anon_sym__alignof] = ACTIONS(1205), - [anon_sym_alignof] = ACTIONS(1205), - [anon_sym__Alignof] = ACTIONS(1205), - [anon_sym_offsetof] = ACTIONS(1205), - [anon_sym__Generic] = ACTIONS(1205), - [anon_sym_asm] = ACTIONS(1205), - [anon_sym___asm__] = ACTIONS(1205), - [sym_number_literal] = ACTIONS(1207), - [anon_sym_L_SQUOTE] = ACTIONS(1207), - [anon_sym_u_SQUOTE] = ACTIONS(1207), - [anon_sym_U_SQUOTE] = ACTIONS(1207), - [anon_sym_u8_SQUOTE] = ACTIONS(1207), - [anon_sym_SQUOTE] = ACTIONS(1207), - [anon_sym_L_DQUOTE] = ACTIONS(1207), - [anon_sym_u_DQUOTE] = ACTIONS(1207), - [anon_sym_U_DQUOTE] = ACTIONS(1207), - [anon_sym_u8_DQUOTE] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1207), - [sym_true] = ACTIONS(1205), - [sym_false] = ACTIONS(1205), - [anon_sym_NULL] = ACTIONS(1205), - [anon_sym_nullptr] = ACTIONS(1205), + [250] = { + [sym_identifier] = ACTIONS(1165), + [aux_sym_preproc_include_token1] = ACTIONS(1165), + [aux_sym_preproc_def_token1] = ACTIONS(1165), + [aux_sym_preproc_if_token1] = ACTIONS(1165), + [aux_sym_preproc_if_token2] = ACTIONS(1165), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1165), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1165), + [sym_preproc_directive] = ACTIONS(1165), + [anon_sym_LPAREN2] = ACTIONS(1167), + [anon_sym_BANG] = ACTIONS(1167), + [anon_sym_TILDE] = ACTIONS(1167), + [anon_sym_DASH] = ACTIONS(1165), + [anon_sym_PLUS] = ACTIONS(1165), + [anon_sym_STAR] = ACTIONS(1167), + [anon_sym_AMP] = ACTIONS(1167), + [anon_sym_SEMI] = ACTIONS(1167), + [anon_sym___extension__] = ACTIONS(1165), + [anon_sym_typedef] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1165), + [anon_sym___attribute__] = ACTIONS(1165), + [anon_sym___scanf] = ACTIONS(1165), + [anon_sym___printf] = ACTIONS(1165), + [anon_sym___read_mostly] = ACTIONS(1165), + [anon_sym___must_hold] = ACTIONS(1165), + [anon_sym___ro_after_init] = ACTIONS(1165), + [anon_sym___noreturn] = ACTIONS(1165), + [anon_sym___cold] = ACTIONS(1165), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1167), + [anon_sym___declspec] = ACTIONS(1165), + [anon_sym___init] = ACTIONS(1165), + [anon_sym___exit] = ACTIONS(1165), + [anon_sym___cdecl] = ACTIONS(1165), + [anon_sym___clrcall] = ACTIONS(1165), + [anon_sym___stdcall] = ACTIONS(1165), + [anon_sym___fastcall] = ACTIONS(1165), + [anon_sym___thiscall] = ACTIONS(1165), + [anon_sym___vectorcall] = ACTIONS(1165), + [anon_sym_LBRACE] = ACTIONS(1167), + [anon_sym_signed] = ACTIONS(1165), + [anon_sym_unsigned] = ACTIONS(1165), + [anon_sym_long] = ACTIONS(1165), + [anon_sym_short] = ACTIONS(1165), + [anon_sym_static] = ACTIONS(1165), + [anon_sym_auto] = ACTIONS(1165), + [anon_sym_register] = ACTIONS(1165), + [anon_sym_inline] = ACTIONS(1165), + [anon_sym___inline] = ACTIONS(1165), + [anon_sym___inline__] = ACTIONS(1165), + [anon_sym___forceinline] = ACTIONS(1165), + [anon_sym_thread_local] = ACTIONS(1165), + [anon_sym___thread] = ACTIONS(1165), + [anon_sym_const] = ACTIONS(1165), + [anon_sym_constexpr] = ACTIONS(1165), + [anon_sym_volatile] = ACTIONS(1165), + [anon_sym_restrict] = ACTIONS(1165), + [anon_sym___restrict__] = ACTIONS(1165), + [anon_sym__Atomic] = ACTIONS(1165), + [anon_sym__Noreturn] = ACTIONS(1165), + [anon_sym_noreturn] = ACTIONS(1165), + [anon_sym_alignas] = ACTIONS(1165), + [anon_sym__Alignas] = ACTIONS(1165), + [sym_primitive_type] = ACTIONS(1165), + [anon_sym_enum] = ACTIONS(1165), + [anon_sym_struct] = ACTIONS(1165), + [anon_sym_union] = ACTIONS(1165), + [anon_sym_if] = ACTIONS(1165), + [anon_sym_else] = ACTIONS(1165), + [anon_sym_switch] = ACTIONS(1165), + [anon_sym_case] = ACTIONS(1165), + [anon_sym_default] = ACTIONS(1165), + [anon_sym_while] = ACTIONS(1165), + [anon_sym_do] = ACTIONS(1165), + [anon_sym_for] = ACTIONS(1165), + [anon_sym_return] = ACTIONS(1165), + [anon_sym_break] = ACTIONS(1165), + [anon_sym_continue] = ACTIONS(1165), + [anon_sym_goto] = ACTIONS(1165), + [anon_sym___try] = ACTIONS(1165), + [anon_sym___leave] = ACTIONS(1165), + [anon_sym_DASH_DASH] = ACTIONS(1167), + [anon_sym_PLUS_PLUS] = ACTIONS(1167), + [anon_sym_sizeof] = ACTIONS(1165), + [anon_sym___alignof__] = ACTIONS(1165), + [anon_sym___alignof] = ACTIONS(1165), + [anon_sym__alignof] = ACTIONS(1165), + [anon_sym_alignof] = ACTIONS(1165), + [anon_sym__Alignof] = ACTIONS(1165), + [anon_sym_offsetof] = ACTIONS(1165), + [anon_sym__Generic] = ACTIONS(1165), + [anon_sym_asm] = ACTIONS(1165), + [anon_sym___asm__] = ACTIONS(1165), + [sym_number_literal] = ACTIONS(1167), + [anon_sym_L_SQUOTE] = ACTIONS(1167), + [anon_sym_u_SQUOTE] = ACTIONS(1167), + [anon_sym_U_SQUOTE] = ACTIONS(1167), + [anon_sym_u8_SQUOTE] = ACTIONS(1167), + [anon_sym_SQUOTE] = ACTIONS(1167), + [anon_sym_L_DQUOTE] = ACTIONS(1167), + [anon_sym_u_DQUOTE] = ACTIONS(1167), + [anon_sym_U_DQUOTE] = ACTIONS(1167), + [anon_sym_u8_DQUOTE] = ACTIONS(1167), + [anon_sym_DQUOTE] = ACTIONS(1167), + [sym_true] = ACTIONS(1165), + [sym_false] = ACTIONS(1165), + [anon_sym_NULL] = ACTIONS(1165), + [anon_sym_nullptr] = ACTIONS(1165), [sym_comment] = ACTIONS(3), }, - [219] = { - [sym_identifier] = ACTIONS(1161), - [aux_sym_preproc_include_token1] = ACTIONS(1161), - [aux_sym_preproc_def_token1] = ACTIONS(1161), - [aux_sym_preproc_if_token1] = ACTIONS(1161), - [aux_sym_preproc_if_token2] = ACTIONS(1161), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1161), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1161), - [sym_preproc_directive] = ACTIONS(1161), - [anon_sym_LPAREN2] = ACTIONS(1163), - [anon_sym_BANG] = ACTIONS(1163), - [anon_sym_TILDE] = ACTIONS(1163), - [anon_sym_DASH] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1161), - [anon_sym_STAR] = ACTIONS(1163), - [anon_sym_AMP] = ACTIONS(1163), - [anon_sym_SEMI] = ACTIONS(1163), - [anon_sym___extension__] = ACTIONS(1161), - [anon_sym_typedef] = ACTIONS(1161), - [anon_sym_extern] = ACTIONS(1161), - [anon_sym___attribute__] = ACTIONS(1161), - [anon_sym___scanf] = ACTIONS(1161), - [anon_sym___printf] = ACTIONS(1161), - [anon_sym___read_mostly] = ACTIONS(1161), - [anon_sym___must_hold] = ACTIONS(1161), - [anon_sym___ro_after_init] = ACTIONS(1161), - [anon_sym___init] = ACTIONS(1161), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1163), - [anon_sym___declspec] = ACTIONS(1161), - [anon_sym___cdecl] = ACTIONS(1161), - [anon_sym___clrcall] = ACTIONS(1161), - [anon_sym___stdcall] = ACTIONS(1161), - [anon_sym___fastcall] = ACTIONS(1161), - [anon_sym___thiscall] = ACTIONS(1161), - [anon_sym___vectorcall] = ACTIONS(1161), - [anon_sym_LBRACE] = ACTIONS(1163), - [anon_sym_signed] = ACTIONS(1161), - [anon_sym_unsigned] = ACTIONS(1161), - [anon_sym_long] = ACTIONS(1161), - [anon_sym_short] = ACTIONS(1161), - [anon_sym_static] = ACTIONS(1161), - [anon_sym_auto] = ACTIONS(1161), - [anon_sym_register] = ACTIONS(1161), - [anon_sym_inline] = ACTIONS(1161), - [anon_sym___inline] = ACTIONS(1161), - [anon_sym___inline__] = ACTIONS(1161), - [anon_sym___forceinline] = ACTIONS(1161), - [anon_sym_thread_local] = ACTIONS(1161), - [anon_sym___thread] = ACTIONS(1161), - [anon_sym_const] = ACTIONS(1161), - [anon_sym_constexpr] = ACTIONS(1161), - [anon_sym_volatile] = ACTIONS(1161), - [anon_sym_restrict] = ACTIONS(1161), - [anon_sym___restrict__] = ACTIONS(1161), - [anon_sym__Atomic] = ACTIONS(1161), - [anon_sym__Noreturn] = ACTIONS(1161), - [anon_sym_noreturn] = ACTIONS(1161), - [anon_sym_alignas] = ACTIONS(1161), - [anon_sym__Alignas] = ACTIONS(1161), - [sym_primitive_type] = ACTIONS(1161), - [anon_sym_enum] = ACTIONS(1161), - [anon_sym_struct] = ACTIONS(1161), - [anon_sym_union] = ACTIONS(1161), - [anon_sym_if] = ACTIONS(1161), - [anon_sym_else] = ACTIONS(1161), - [anon_sym_switch] = ACTIONS(1161), - [anon_sym_case] = ACTIONS(1161), - [anon_sym_default] = ACTIONS(1161), - [anon_sym_while] = ACTIONS(1161), - [anon_sym_do] = ACTIONS(1161), - [anon_sym_for] = ACTIONS(1161), - [anon_sym_return] = ACTIONS(1161), - [anon_sym_break] = ACTIONS(1161), - [anon_sym_continue] = ACTIONS(1161), - [anon_sym_goto] = ACTIONS(1161), - [anon_sym___try] = ACTIONS(1161), - [anon_sym___leave] = ACTIONS(1161), - [anon_sym_DASH_DASH] = ACTIONS(1163), - [anon_sym_PLUS_PLUS] = ACTIONS(1163), - [anon_sym_sizeof] = ACTIONS(1161), - [anon_sym___alignof__] = ACTIONS(1161), - [anon_sym___alignof] = ACTIONS(1161), - [anon_sym__alignof] = ACTIONS(1161), - [anon_sym_alignof] = ACTIONS(1161), - [anon_sym__Alignof] = ACTIONS(1161), - [anon_sym_offsetof] = ACTIONS(1161), - [anon_sym__Generic] = ACTIONS(1161), - [anon_sym_asm] = ACTIONS(1161), - [anon_sym___asm__] = ACTIONS(1161), - [sym_number_literal] = ACTIONS(1163), - [anon_sym_L_SQUOTE] = ACTIONS(1163), - [anon_sym_u_SQUOTE] = ACTIONS(1163), - [anon_sym_U_SQUOTE] = ACTIONS(1163), - [anon_sym_u8_SQUOTE] = ACTIONS(1163), - [anon_sym_SQUOTE] = ACTIONS(1163), - [anon_sym_L_DQUOTE] = ACTIONS(1163), - [anon_sym_u_DQUOTE] = ACTIONS(1163), - [anon_sym_U_DQUOTE] = ACTIONS(1163), - [anon_sym_u8_DQUOTE] = ACTIONS(1163), - [anon_sym_DQUOTE] = ACTIONS(1163), - [sym_true] = ACTIONS(1161), - [sym_false] = ACTIONS(1161), - [anon_sym_NULL] = ACTIONS(1161), - [anon_sym_nullptr] = ACTIONS(1161), + [251] = { + [sym_identifier] = ACTIONS(1189), + [aux_sym_preproc_include_token1] = ACTIONS(1189), + [aux_sym_preproc_def_token1] = ACTIONS(1189), + [aux_sym_preproc_if_token1] = ACTIONS(1189), + [aux_sym_preproc_if_token2] = ACTIONS(1189), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1189), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1189), + [sym_preproc_directive] = ACTIONS(1189), + [anon_sym_LPAREN2] = ACTIONS(1191), + [anon_sym_BANG] = ACTIONS(1191), + [anon_sym_TILDE] = ACTIONS(1191), + [anon_sym_DASH] = ACTIONS(1189), + [anon_sym_PLUS] = ACTIONS(1189), + [anon_sym_STAR] = ACTIONS(1191), + [anon_sym_AMP] = ACTIONS(1191), + [anon_sym_SEMI] = ACTIONS(1191), + [anon_sym___extension__] = ACTIONS(1189), + [anon_sym_typedef] = ACTIONS(1189), + [anon_sym_extern] = ACTIONS(1189), + [anon_sym___attribute__] = ACTIONS(1189), + [anon_sym___scanf] = ACTIONS(1189), + [anon_sym___printf] = ACTIONS(1189), + [anon_sym___read_mostly] = ACTIONS(1189), + [anon_sym___must_hold] = ACTIONS(1189), + [anon_sym___ro_after_init] = ACTIONS(1189), + [anon_sym___noreturn] = ACTIONS(1189), + [anon_sym___cold] = ACTIONS(1189), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1191), + [anon_sym___declspec] = ACTIONS(1189), + [anon_sym___init] = ACTIONS(1189), + [anon_sym___exit] = ACTIONS(1189), + [anon_sym___cdecl] = ACTIONS(1189), + [anon_sym___clrcall] = ACTIONS(1189), + [anon_sym___stdcall] = ACTIONS(1189), + [anon_sym___fastcall] = ACTIONS(1189), + [anon_sym___thiscall] = ACTIONS(1189), + [anon_sym___vectorcall] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_signed] = ACTIONS(1189), + [anon_sym_unsigned] = ACTIONS(1189), + [anon_sym_long] = ACTIONS(1189), + [anon_sym_short] = ACTIONS(1189), + [anon_sym_static] = ACTIONS(1189), + [anon_sym_auto] = ACTIONS(1189), + [anon_sym_register] = ACTIONS(1189), + [anon_sym_inline] = ACTIONS(1189), + [anon_sym___inline] = ACTIONS(1189), + [anon_sym___inline__] = ACTIONS(1189), + [anon_sym___forceinline] = ACTIONS(1189), + [anon_sym_thread_local] = ACTIONS(1189), + [anon_sym___thread] = ACTIONS(1189), + [anon_sym_const] = ACTIONS(1189), + [anon_sym_constexpr] = ACTIONS(1189), + [anon_sym_volatile] = ACTIONS(1189), + [anon_sym_restrict] = ACTIONS(1189), + [anon_sym___restrict__] = ACTIONS(1189), + [anon_sym__Atomic] = ACTIONS(1189), + [anon_sym__Noreturn] = ACTIONS(1189), + [anon_sym_noreturn] = ACTIONS(1189), + [anon_sym_alignas] = ACTIONS(1189), + [anon_sym__Alignas] = ACTIONS(1189), + [sym_primitive_type] = ACTIONS(1189), + [anon_sym_enum] = ACTIONS(1189), + [anon_sym_struct] = ACTIONS(1189), + [anon_sym_union] = ACTIONS(1189), + [anon_sym_if] = ACTIONS(1189), + [anon_sym_else] = ACTIONS(1189), + [anon_sym_switch] = ACTIONS(1189), + [anon_sym_case] = ACTIONS(1189), + [anon_sym_default] = ACTIONS(1189), + [anon_sym_while] = ACTIONS(1189), + [anon_sym_do] = ACTIONS(1189), + [anon_sym_for] = ACTIONS(1189), + [anon_sym_return] = ACTIONS(1189), + [anon_sym_break] = ACTIONS(1189), + [anon_sym_continue] = ACTIONS(1189), + [anon_sym_goto] = ACTIONS(1189), + [anon_sym___try] = ACTIONS(1189), + [anon_sym___leave] = ACTIONS(1189), + [anon_sym_DASH_DASH] = ACTIONS(1191), + [anon_sym_PLUS_PLUS] = ACTIONS(1191), + [anon_sym_sizeof] = ACTIONS(1189), + [anon_sym___alignof__] = ACTIONS(1189), + [anon_sym___alignof] = ACTIONS(1189), + [anon_sym__alignof] = ACTIONS(1189), + [anon_sym_alignof] = ACTIONS(1189), + [anon_sym__Alignof] = ACTIONS(1189), + [anon_sym_offsetof] = ACTIONS(1189), + [anon_sym__Generic] = ACTIONS(1189), + [anon_sym_asm] = ACTIONS(1189), + [anon_sym___asm__] = ACTIONS(1189), + [sym_number_literal] = ACTIONS(1191), + [anon_sym_L_SQUOTE] = ACTIONS(1191), + [anon_sym_u_SQUOTE] = ACTIONS(1191), + [anon_sym_U_SQUOTE] = ACTIONS(1191), + [anon_sym_u8_SQUOTE] = ACTIONS(1191), + [anon_sym_SQUOTE] = ACTIONS(1191), + [anon_sym_L_DQUOTE] = ACTIONS(1191), + [anon_sym_u_DQUOTE] = ACTIONS(1191), + [anon_sym_U_DQUOTE] = ACTIONS(1191), + [anon_sym_u8_DQUOTE] = ACTIONS(1191), + [anon_sym_DQUOTE] = ACTIONS(1191), + [sym_true] = ACTIONS(1189), + [sym_false] = ACTIONS(1189), + [anon_sym_NULL] = ACTIONS(1189), + [anon_sym_nullptr] = ACTIONS(1189), [sym_comment] = ACTIONS(3), }, - [220] = { - [sym_identifier] = ACTIONS(1185), - [aux_sym_preproc_include_token1] = ACTIONS(1185), - [aux_sym_preproc_def_token1] = ACTIONS(1185), - [aux_sym_preproc_if_token1] = ACTIONS(1185), - [aux_sym_preproc_if_token2] = ACTIONS(1185), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1185), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1185), - [sym_preproc_directive] = ACTIONS(1185), - [anon_sym_LPAREN2] = ACTIONS(1187), - [anon_sym_BANG] = ACTIONS(1187), - [anon_sym_TILDE] = ACTIONS(1187), - [anon_sym_DASH] = ACTIONS(1185), - [anon_sym_PLUS] = ACTIONS(1185), - [anon_sym_STAR] = ACTIONS(1187), - [anon_sym_AMP] = ACTIONS(1187), - [anon_sym_SEMI] = ACTIONS(1187), - [anon_sym___extension__] = ACTIONS(1185), - [anon_sym_typedef] = ACTIONS(1185), - [anon_sym_extern] = ACTIONS(1185), - [anon_sym___attribute__] = ACTIONS(1185), - [anon_sym___scanf] = ACTIONS(1185), - [anon_sym___printf] = ACTIONS(1185), - [anon_sym___read_mostly] = ACTIONS(1185), - [anon_sym___must_hold] = ACTIONS(1185), - [anon_sym___ro_after_init] = ACTIONS(1185), - [anon_sym___init] = ACTIONS(1185), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1187), - [anon_sym___declspec] = ACTIONS(1185), - [anon_sym___cdecl] = ACTIONS(1185), - [anon_sym___clrcall] = ACTIONS(1185), - [anon_sym___stdcall] = ACTIONS(1185), - [anon_sym___fastcall] = ACTIONS(1185), - [anon_sym___thiscall] = ACTIONS(1185), - [anon_sym___vectorcall] = ACTIONS(1185), - [anon_sym_LBRACE] = ACTIONS(1187), - [anon_sym_signed] = ACTIONS(1185), - [anon_sym_unsigned] = ACTIONS(1185), - [anon_sym_long] = ACTIONS(1185), - [anon_sym_short] = ACTIONS(1185), - [anon_sym_static] = ACTIONS(1185), - [anon_sym_auto] = ACTIONS(1185), - [anon_sym_register] = ACTIONS(1185), - [anon_sym_inline] = ACTIONS(1185), - [anon_sym___inline] = ACTIONS(1185), - [anon_sym___inline__] = ACTIONS(1185), - [anon_sym___forceinline] = ACTIONS(1185), - [anon_sym_thread_local] = ACTIONS(1185), - [anon_sym___thread] = ACTIONS(1185), - [anon_sym_const] = ACTIONS(1185), - [anon_sym_constexpr] = ACTIONS(1185), - [anon_sym_volatile] = ACTIONS(1185), - [anon_sym_restrict] = ACTIONS(1185), - [anon_sym___restrict__] = ACTIONS(1185), - [anon_sym__Atomic] = ACTIONS(1185), - [anon_sym__Noreturn] = ACTIONS(1185), - [anon_sym_noreturn] = ACTIONS(1185), - [anon_sym_alignas] = ACTIONS(1185), - [anon_sym__Alignas] = ACTIONS(1185), - [sym_primitive_type] = ACTIONS(1185), - [anon_sym_enum] = ACTIONS(1185), - [anon_sym_struct] = ACTIONS(1185), - [anon_sym_union] = ACTIONS(1185), - [anon_sym_if] = ACTIONS(1185), - [anon_sym_else] = ACTIONS(1185), - [anon_sym_switch] = ACTIONS(1185), - [anon_sym_case] = ACTIONS(1185), - [anon_sym_default] = ACTIONS(1185), - [anon_sym_while] = ACTIONS(1185), - [anon_sym_do] = ACTIONS(1185), - [anon_sym_for] = ACTIONS(1185), - [anon_sym_return] = ACTIONS(1185), - [anon_sym_break] = ACTIONS(1185), - [anon_sym_continue] = ACTIONS(1185), - [anon_sym_goto] = ACTIONS(1185), - [anon_sym___try] = ACTIONS(1185), - [anon_sym___leave] = ACTIONS(1185), - [anon_sym_DASH_DASH] = ACTIONS(1187), - [anon_sym_PLUS_PLUS] = ACTIONS(1187), - [anon_sym_sizeof] = ACTIONS(1185), - [anon_sym___alignof__] = ACTIONS(1185), - [anon_sym___alignof] = ACTIONS(1185), - [anon_sym__alignof] = ACTIONS(1185), - [anon_sym_alignof] = ACTIONS(1185), - [anon_sym__Alignof] = ACTIONS(1185), - [anon_sym_offsetof] = ACTIONS(1185), - [anon_sym__Generic] = ACTIONS(1185), - [anon_sym_asm] = ACTIONS(1185), - [anon_sym___asm__] = ACTIONS(1185), - [sym_number_literal] = ACTIONS(1187), - [anon_sym_L_SQUOTE] = ACTIONS(1187), - [anon_sym_u_SQUOTE] = ACTIONS(1187), - [anon_sym_U_SQUOTE] = ACTIONS(1187), - [anon_sym_u8_SQUOTE] = ACTIONS(1187), - [anon_sym_SQUOTE] = ACTIONS(1187), - [anon_sym_L_DQUOTE] = ACTIONS(1187), - [anon_sym_u_DQUOTE] = ACTIONS(1187), - [anon_sym_U_DQUOTE] = ACTIONS(1187), - [anon_sym_u8_DQUOTE] = ACTIONS(1187), - [anon_sym_DQUOTE] = ACTIONS(1187), - [sym_true] = ACTIONS(1185), - [sym_false] = ACTIONS(1185), - [anon_sym_NULL] = ACTIONS(1185), - [anon_sym_nullptr] = ACTIONS(1185), + [252] = { + [sym_identifier] = ACTIONS(1249), + [aux_sym_preproc_include_token1] = ACTIONS(1249), + [aux_sym_preproc_def_token1] = ACTIONS(1249), + [aux_sym_preproc_if_token1] = ACTIONS(1249), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1249), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1249), + [sym_preproc_directive] = ACTIONS(1249), + [anon_sym_LPAREN2] = ACTIONS(1251), + [anon_sym_BANG] = ACTIONS(1251), + [anon_sym_TILDE] = ACTIONS(1251), + [anon_sym_DASH] = ACTIONS(1249), + [anon_sym_PLUS] = ACTIONS(1249), + [anon_sym_STAR] = ACTIONS(1251), + [anon_sym_AMP] = ACTIONS(1251), + [anon_sym_SEMI] = ACTIONS(1251), + [anon_sym___extension__] = ACTIONS(1249), + [anon_sym_typedef] = ACTIONS(1249), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym___attribute__] = ACTIONS(1249), + [anon_sym___scanf] = ACTIONS(1249), + [anon_sym___printf] = ACTIONS(1249), + [anon_sym___read_mostly] = ACTIONS(1249), + [anon_sym___must_hold] = ACTIONS(1249), + [anon_sym___ro_after_init] = ACTIONS(1249), + [anon_sym___noreturn] = ACTIONS(1249), + [anon_sym___cold] = ACTIONS(1249), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1251), + [anon_sym___declspec] = ACTIONS(1249), + [anon_sym___init] = ACTIONS(1249), + [anon_sym___exit] = ACTIONS(1249), + [anon_sym___cdecl] = ACTIONS(1249), + [anon_sym___clrcall] = ACTIONS(1249), + [anon_sym___stdcall] = ACTIONS(1249), + [anon_sym___fastcall] = ACTIONS(1249), + [anon_sym___thiscall] = ACTIONS(1249), + [anon_sym___vectorcall] = ACTIONS(1249), + [anon_sym_LBRACE] = ACTIONS(1251), + [anon_sym_RBRACE] = ACTIONS(1251), + [anon_sym_signed] = ACTIONS(1249), + [anon_sym_unsigned] = ACTIONS(1249), + [anon_sym_long] = ACTIONS(1249), + [anon_sym_short] = ACTIONS(1249), + [anon_sym_static] = ACTIONS(1249), + [anon_sym_auto] = ACTIONS(1249), + [anon_sym_register] = ACTIONS(1249), + [anon_sym_inline] = ACTIONS(1249), + [anon_sym___inline] = ACTIONS(1249), + [anon_sym___inline__] = ACTIONS(1249), + [anon_sym___forceinline] = ACTIONS(1249), + [anon_sym_thread_local] = ACTIONS(1249), + [anon_sym___thread] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), + [anon_sym_constexpr] = ACTIONS(1249), + [anon_sym_volatile] = ACTIONS(1249), + [anon_sym_restrict] = ACTIONS(1249), + [anon_sym___restrict__] = ACTIONS(1249), + [anon_sym__Atomic] = ACTIONS(1249), + [anon_sym__Noreturn] = ACTIONS(1249), + [anon_sym_noreturn] = ACTIONS(1249), + [anon_sym_alignas] = ACTIONS(1249), + [anon_sym__Alignas] = ACTIONS(1249), + [sym_primitive_type] = ACTIONS(1249), + [anon_sym_enum] = ACTIONS(1249), + [anon_sym_struct] = ACTIONS(1249), + [anon_sym_union] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1249), + [anon_sym_else] = ACTIONS(1249), + [anon_sym_switch] = ACTIONS(1249), + [anon_sym_case] = ACTIONS(1249), + [anon_sym_default] = ACTIONS(1249), + [anon_sym_while] = ACTIONS(1249), + [anon_sym_do] = ACTIONS(1249), + [anon_sym_for] = ACTIONS(1249), + [anon_sym_return] = ACTIONS(1249), + [anon_sym_break] = ACTIONS(1249), + [anon_sym_continue] = ACTIONS(1249), + [anon_sym_goto] = ACTIONS(1249), + [anon_sym___try] = ACTIONS(1249), + [anon_sym___leave] = ACTIONS(1249), + [anon_sym_DASH_DASH] = ACTIONS(1251), + [anon_sym_PLUS_PLUS] = ACTIONS(1251), + [anon_sym_sizeof] = ACTIONS(1249), + [anon_sym___alignof__] = ACTIONS(1249), + [anon_sym___alignof] = ACTIONS(1249), + [anon_sym__alignof] = ACTIONS(1249), + [anon_sym_alignof] = ACTIONS(1249), + [anon_sym__Alignof] = ACTIONS(1249), + [anon_sym_offsetof] = ACTIONS(1249), + [anon_sym__Generic] = ACTIONS(1249), + [anon_sym_asm] = ACTIONS(1249), + [anon_sym___asm__] = ACTIONS(1249), + [sym_number_literal] = ACTIONS(1251), + [anon_sym_L_SQUOTE] = ACTIONS(1251), + [anon_sym_u_SQUOTE] = ACTIONS(1251), + [anon_sym_U_SQUOTE] = ACTIONS(1251), + [anon_sym_u8_SQUOTE] = ACTIONS(1251), + [anon_sym_SQUOTE] = ACTIONS(1251), + [anon_sym_L_DQUOTE] = ACTIONS(1251), + [anon_sym_u_DQUOTE] = ACTIONS(1251), + [anon_sym_U_DQUOTE] = ACTIONS(1251), + [anon_sym_u8_DQUOTE] = ACTIONS(1251), + [anon_sym_DQUOTE] = ACTIONS(1251), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [anon_sym_NULL] = ACTIONS(1249), + [anon_sym_nullptr] = ACTIONS(1249), + [sym_comment] = ACTIONS(3), + }, + [253] = { + [ts_builtin_sym_end] = ACTIONS(1287), + [sym_identifier] = ACTIONS(1285), + [aux_sym_preproc_include_token1] = ACTIONS(1285), + [aux_sym_preproc_def_token1] = ACTIONS(1285), + [aux_sym_preproc_if_token1] = ACTIONS(1285), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1285), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1285), + [sym_preproc_directive] = ACTIONS(1285), + [anon_sym_LPAREN2] = ACTIONS(1287), + [anon_sym_BANG] = ACTIONS(1287), + [anon_sym_TILDE] = ACTIONS(1287), + [anon_sym_DASH] = ACTIONS(1285), + [anon_sym_PLUS] = ACTIONS(1285), + [anon_sym_STAR] = ACTIONS(1287), + [anon_sym_AMP] = ACTIONS(1287), + [anon_sym_SEMI] = ACTIONS(1287), + [anon_sym___extension__] = ACTIONS(1285), + [anon_sym_typedef] = ACTIONS(1285), + [anon_sym_extern] = ACTIONS(1285), + [anon_sym___attribute__] = ACTIONS(1285), + [anon_sym___scanf] = ACTIONS(1285), + [anon_sym___printf] = ACTIONS(1285), + [anon_sym___read_mostly] = ACTIONS(1285), + [anon_sym___must_hold] = ACTIONS(1285), + [anon_sym___ro_after_init] = ACTIONS(1285), + [anon_sym___noreturn] = ACTIONS(1285), + [anon_sym___cold] = ACTIONS(1285), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1287), + [anon_sym___declspec] = ACTIONS(1285), + [anon_sym___init] = ACTIONS(1285), + [anon_sym___exit] = ACTIONS(1285), + [anon_sym___cdecl] = ACTIONS(1285), + [anon_sym___clrcall] = ACTIONS(1285), + [anon_sym___stdcall] = ACTIONS(1285), + [anon_sym___fastcall] = ACTIONS(1285), + [anon_sym___thiscall] = ACTIONS(1285), + [anon_sym___vectorcall] = ACTIONS(1285), + [anon_sym_LBRACE] = ACTIONS(1287), + [anon_sym_signed] = ACTIONS(1285), + [anon_sym_unsigned] = ACTIONS(1285), + [anon_sym_long] = ACTIONS(1285), + [anon_sym_short] = ACTIONS(1285), + [anon_sym_static] = ACTIONS(1285), + [anon_sym_auto] = ACTIONS(1285), + [anon_sym_register] = ACTIONS(1285), + [anon_sym_inline] = ACTIONS(1285), + [anon_sym___inline] = ACTIONS(1285), + [anon_sym___inline__] = ACTIONS(1285), + [anon_sym___forceinline] = ACTIONS(1285), + [anon_sym_thread_local] = ACTIONS(1285), + [anon_sym___thread] = ACTIONS(1285), + [anon_sym_const] = ACTIONS(1285), + [anon_sym_constexpr] = ACTIONS(1285), + [anon_sym_volatile] = ACTIONS(1285), + [anon_sym_restrict] = ACTIONS(1285), + [anon_sym___restrict__] = ACTIONS(1285), + [anon_sym__Atomic] = ACTIONS(1285), + [anon_sym__Noreturn] = ACTIONS(1285), + [anon_sym_noreturn] = ACTIONS(1285), + [anon_sym_alignas] = ACTIONS(1285), + [anon_sym__Alignas] = ACTIONS(1285), + [sym_primitive_type] = ACTIONS(1285), + [anon_sym_enum] = ACTIONS(1285), + [anon_sym_struct] = ACTIONS(1285), + [anon_sym_union] = ACTIONS(1285), + [anon_sym_if] = ACTIONS(1285), + [anon_sym_else] = ACTIONS(1285), + [anon_sym_switch] = ACTIONS(1285), + [anon_sym_case] = ACTIONS(1285), + [anon_sym_default] = ACTIONS(1285), + [anon_sym_while] = ACTIONS(1285), + [anon_sym_do] = ACTIONS(1285), + [anon_sym_for] = ACTIONS(1285), + [anon_sym_return] = ACTIONS(1285), + [anon_sym_break] = ACTIONS(1285), + [anon_sym_continue] = ACTIONS(1285), + [anon_sym_goto] = ACTIONS(1285), + [anon_sym___try] = ACTIONS(1285), + [anon_sym___leave] = ACTIONS(1285), + [anon_sym_DASH_DASH] = ACTIONS(1287), + [anon_sym_PLUS_PLUS] = ACTIONS(1287), + [anon_sym_sizeof] = ACTIONS(1285), + [anon_sym___alignof__] = ACTIONS(1285), + [anon_sym___alignof] = ACTIONS(1285), + [anon_sym__alignof] = ACTIONS(1285), + [anon_sym_alignof] = ACTIONS(1285), + [anon_sym__Alignof] = ACTIONS(1285), + [anon_sym_offsetof] = ACTIONS(1285), + [anon_sym__Generic] = ACTIONS(1285), + [anon_sym_asm] = ACTIONS(1285), + [anon_sym___asm__] = ACTIONS(1285), + [sym_number_literal] = ACTIONS(1287), + [anon_sym_L_SQUOTE] = ACTIONS(1287), + [anon_sym_u_SQUOTE] = ACTIONS(1287), + [anon_sym_U_SQUOTE] = ACTIONS(1287), + [anon_sym_u8_SQUOTE] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1287), + [anon_sym_L_DQUOTE] = ACTIONS(1287), + [anon_sym_u_DQUOTE] = ACTIONS(1287), + [anon_sym_U_DQUOTE] = ACTIONS(1287), + [anon_sym_u8_DQUOTE] = ACTIONS(1287), + [anon_sym_DQUOTE] = ACTIONS(1287), + [sym_true] = ACTIONS(1285), + [sym_false] = ACTIONS(1285), + [anon_sym_NULL] = ACTIONS(1285), + [anon_sym_nullptr] = ACTIONS(1285), [sym_comment] = ACTIONS(3), }, - [221] = { + [254] = { [sym_identifier] = ACTIONS(1185), [aux_sym_preproc_include_token1] = ACTIONS(1185), [aux_sym_preproc_def_token1] = ACTIONS(1185), @@ -40239,9 +45213,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___read_mostly] = ACTIONS(1185), [anon_sym___must_hold] = ACTIONS(1185), [anon_sym___ro_after_init] = ACTIONS(1185), - [anon_sym___init] = ACTIONS(1185), + [anon_sym___noreturn] = ACTIONS(1185), + [anon_sym___cold] = ACTIONS(1185), [anon_sym_LBRACK_LBRACK] = ACTIONS(1187), [anon_sym___declspec] = ACTIONS(1185), + [anon_sym___init] = ACTIONS(1185), + [anon_sym___exit] = ACTIONS(1185), [anon_sym___cdecl] = ACTIONS(1185), [anon_sym___clrcall] = ACTIONS(1185), [anon_sym___stdcall] = ACTIONS(1185), @@ -40319,325 +45296,116 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1185), [sym_comment] = ACTIONS(3), }, - [222] = { - [sym_identifier] = ACTIONS(1157), - [aux_sym_preproc_include_token1] = ACTIONS(1157), - [aux_sym_preproc_def_token1] = ACTIONS(1157), - [aux_sym_preproc_if_token1] = ACTIONS(1157), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1157), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1157), - [sym_preproc_directive] = ACTIONS(1157), - [anon_sym_LPAREN2] = ACTIONS(1159), - [anon_sym_BANG] = ACTIONS(1159), - [anon_sym_TILDE] = ACTIONS(1159), - [anon_sym_DASH] = ACTIONS(1157), - [anon_sym_PLUS] = ACTIONS(1157), - [anon_sym_STAR] = ACTIONS(1159), - [anon_sym_AMP] = ACTIONS(1159), - [anon_sym_SEMI] = ACTIONS(1159), - [anon_sym___extension__] = ACTIONS(1157), - [anon_sym_typedef] = ACTIONS(1157), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym___attribute__] = ACTIONS(1157), - [anon_sym___scanf] = ACTIONS(1157), - [anon_sym___printf] = ACTIONS(1157), - [anon_sym___read_mostly] = ACTIONS(1157), - [anon_sym___must_hold] = ACTIONS(1157), - [anon_sym___ro_after_init] = ACTIONS(1157), - [anon_sym___init] = ACTIONS(1157), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1159), - [anon_sym___declspec] = ACTIONS(1157), - [anon_sym___cdecl] = ACTIONS(1157), - [anon_sym___clrcall] = ACTIONS(1157), - [anon_sym___stdcall] = ACTIONS(1157), - [anon_sym___fastcall] = ACTIONS(1157), - [anon_sym___thiscall] = ACTIONS(1157), - [anon_sym___vectorcall] = ACTIONS(1157), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_RBRACE] = ACTIONS(1159), - [anon_sym_signed] = ACTIONS(1157), - [anon_sym_unsigned] = ACTIONS(1157), - [anon_sym_long] = ACTIONS(1157), - [anon_sym_short] = ACTIONS(1157), - [anon_sym_static] = ACTIONS(1157), - [anon_sym_auto] = ACTIONS(1157), - [anon_sym_register] = ACTIONS(1157), - [anon_sym_inline] = ACTIONS(1157), - [anon_sym___inline] = ACTIONS(1157), - [anon_sym___inline__] = ACTIONS(1157), - [anon_sym___forceinline] = ACTIONS(1157), - [anon_sym_thread_local] = ACTIONS(1157), - [anon_sym___thread] = ACTIONS(1157), - [anon_sym_const] = ACTIONS(1157), - [anon_sym_constexpr] = ACTIONS(1157), - [anon_sym_volatile] = ACTIONS(1157), - [anon_sym_restrict] = ACTIONS(1157), - [anon_sym___restrict__] = ACTIONS(1157), - [anon_sym__Atomic] = ACTIONS(1157), - [anon_sym__Noreturn] = ACTIONS(1157), - [anon_sym_noreturn] = ACTIONS(1157), - [anon_sym_alignas] = ACTIONS(1157), - [anon_sym__Alignas] = ACTIONS(1157), - [sym_primitive_type] = ACTIONS(1157), - [anon_sym_enum] = ACTIONS(1157), - [anon_sym_struct] = ACTIONS(1157), - [anon_sym_union] = ACTIONS(1157), - [anon_sym_if] = ACTIONS(1157), - [anon_sym_else] = ACTIONS(1157), - [anon_sym_switch] = ACTIONS(1157), - [anon_sym_case] = ACTIONS(1157), - [anon_sym_default] = ACTIONS(1157), - [anon_sym_while] = ACTIONS(1157), - [anon_sym_do] = ACTIONS(1157), - [anon_sym_for] = ACTIONS(1157), - [anon_sym_return] = ACTIONS(1157), - [anon_sym_break] = ACTIONS(1157), - [anon_sym_continue] = ACTIONS(1157), - [anon_sym_goto] = ACTIONS(1157), - [anon_sym___try] = ACTIONS(1157), - [anon_sym___leave] = ACTIONS(1157), - [anon_sym_DASH_DASH] = ACTIONS(1159), - [anon_sym_PLUS_PLUS] = ACTIONS(1159), - [anon_sym_sizeof] = ACTIONS(1157), - [anon_sym___alignof__] = ACTIONS(1157), - [anon_sym___alignof] = ACTIONS(1157), - [anon_sym__alignof] = ACTIONS(1157), - [anon_sym_alignof] = ACTIONS(1157), - [anon_sym__Alignof] = ACTIONS(1157), - [anon_sym_offsetof] = ACTIONS(1157), - [anon_sym__Generic] = ACTIONS(1157), - [anon_sym_asm] = ACTIONS(1157), - [anon_sym___asm__] = ACTIONS(1157), - [sym_number_literal] = ACTIONS(1159), - [anon_sym_L_SQUOTE] = ACTIONS(1159), - [anon_sym_u_SQUOTE] = ACTIONS(1159), - [anon_sym_U_SQUOTE] = ACTIONS(1159), - [anon_sym_u8_SQUOTE] = ACTIONS(1159), - [anon_sym_SQUOTE] = ACTIONS(1159), - [anon_sym_L_DQUOTE] = ACTIONS(1159), - [anon_sym_u_DQUOTE] = ACTIONS(1159), - [anon_sym_U_DQUOTE] = ACTIONS(1159), - [anon_sym_u8_DQUOTE] = ACTIONS(1159), - [anon_sym_DQUOTE] = ACTIONS(1159), - [sym_true] = ACTIONS(1157), - [sym_false] = ACTIONS(1157), - [anon_sym_NULL] = ACTIONS(1157), - [anon_sym_nullptr] = ACTIONS(1157), - [sym_comment] = ACTIONS(3), - }, - [223] = { - [sym_identifier] = ACTIONS(1245), - [aux_sym_preproc_include_token1] = ACTIONS(1245), - [aux_sym_preproc_def_token1] = ACTIONS(1245), - [aux_sym_preproc_if_token1] = ACTIONS(1245), - [aux_sym_preproc_if_token2] = ACTIONS(1245), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1245), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1245), - [sym_preproc_directive] = ACTIONS(1245), - [anon_sym_LPAREN2] = ACTIONS(1247), - [anon_sym_BANG] = ACTIONS(1247), - [anon_sym_TILDE] = ACTIONS(1247), - [anon_sym_DASH] = ACTIONS(1245), - [anon_sym_PLUS] = ACTIONS(1245), - [anon_sym_STAR] = ACTIONS(1247), - [anon_sym_AMP] = ACTIONS(1247), - [anon_sym_SEMI] = ACTIONS(1247), - [anon_sym___extension__] = ACTIONS(1245), - [anon_sym_typedef] = ACTIONS(1245), - [anon_sym_extern] = ACTIONS(1245), - [anon_sym___attribute__] = ACTIONS(1245), - [anon_sym___scanf] = ACTIONS(1245), - [anon_sym___printf] = ACTIONS(1245), - [anon_sym___read_mostly] = ACTIONS(1245), - [anon_sym___must_hold] = ACTIONS(1245), - [anon_sym___ro_after_init] = ACTIONS(1245), - [anon_sym___init] = ACTIONS(1245), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1247), - [anon_sym___declspec] = ACTIONS(1245), - [anon_sym___cdecl] = ACTIONS(1245), - [anon_sym___clrcall] = ACTIONS(1245), - [anon_sym___stdcall] = ACTIONS(1245), - [anon_sym___fastcall] = ACTIONS(1245), - [anon_sym___thiscall] = ACTIONS(1245), - [anon_sym___vectorcall] = ACTIONS(1245), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_signed] = ACTIONS(1245), - [anon_sym_unsigned] = ACTIONS(1245), - [anon_sym_long] = ACTIONS(1245), - [anon_sym_short] = ACTIONS(1245), - [anon_sym_static] = ACTIONS(1245), - [anon_sym_auto] = ACTIONS(1245), - [anon_sym_register] = ACTIONS(1245), - [anon_sym_inline] = ACTIONS(1245), - [anon_sym___inline] = ACTIONS(1245), - [anon_sym___inline__] = ACTIONS(1245), - [anon_sym___forceinline] = ACTIONS(1245), - [anon_sym_thread_local] = ACTIONS(1245), - [anon_sym___thread] = ACTIONS(1245), - [anon_sym_const] = ACTIONS(1245), - [anon_sym_constexpr] = ACTIONS(1245), - [anon_sym_volatile] = ACTIONS(1245), - [anon_sym_restrict] = ACTIONS(1245), - [anon_sym___restrict__] = ACTIONS(1245), - [anon_sym__Atomic] = ACTIONS(1245), - [anon_sym__Noreturn] = ACTIONS(1245), - [anon_sym_noreturn] = ACTIONS(1245), - [anon_sym_alignas] = ACTIONS(1245), - [anon_sym__Alignas] = ACTIONS(1245), - [sym_primitive_type] = ACTIONS(1245), - [anon_sym_enum] = ACTIONS(1245), - [anon_sym_struct] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1245), - [anon_sym_if] = ACTIONS(1245), - [anon_sym_else] = ACTIONS(1245), - [anon_sym_switch] = ACTIONS(1245), - [anon_sym_case] = ACTIONS(1245), - [anon_sym_default] = ACTIONS(1245), - [anon_sym_while] = ACTIONS(1245), - [anon_sym_do] = ACTIONS(1245), - [anon_sym_for] = ACTIONS(1245), - [anon_sym_return] = ACTIONS(1245), - [anon_sym_break] = ACTIONS(1245), - [anon_sym_continue] = ACTIONS(1245), - [anon_sym_goto] = ACTIONS(1245), - [anon_sym___try] = ACTIONS(1245), - [anon_sym___leave] = ACTIONS(1245), - [anon_sym_DASH_DASH] = ACTIONS(1247), - [anon_sym_PLUS_PLUS] = ACTIONS(1247), - [anon_sym_sizeof] = ACTIONS(1245), - [anon_sym___alignof__] = ACTIONS(1245), - [anon_sym___alignof] = ACTIONS(1245), - [anon_sym__alignof] = ACTIONS(1245), - [anon_sym_alignof] = ACTIONS(1245), - [anon_sym__Alignof] = ACTIONS(1245), - [anon_sym_offsetof] = ACTIONS(1245), - [anon_sym__Generic] = ACTIONS(1245), - [anon_sym_asm] = ACTIONS(1245), - [anon_sym___asm__] = ACTIONS(1245), - [sym_number_literal] = ACTIONS(1247), - [anon_sym_L_SQUOTE] = ACTIONS(1247), - [anon_sym_u_SQUOTE] = ACTIONS(1247), - [anon_sym_U_SQUOTE] = ACTIONS(1247), - [anon_sym_u8_SQUOTE] = ACTIONS(1247), - [anon_sym_SQUOTE] = ACTIONS(1247), - [anon_sym_L_DQUOTE] = ACTIONS(1247), - [anon_sym_u_DQUOTE] = ACTIONS(1247), - [anon_sym_U_DQUOTE] = ACTIONS(1247), - [anon_sym_u8_DQUOTE] = ACTIONS(1247), - [anon_sym_DQUOTE] = ACTIONS(1247), - [sym_true] = ACTIONS(1245), - [sym_false] = ACTIONS(1245), - [anon_sym_NULL] = ACTIONS(1245), - [anon_sym_nullptr] = ACTIONS(1245), - [sym_comment] = ACTIONS(3), - }, - [224] = { - [sym_identifier] = ACTIONS(1245), - [aux_sym_preproc_include_token1] = ACTIONS(1245), - [aux_sym_preproc_def_token1] = ACTIONS(1245), - [aux_sym_preproc_if_token1] = ACTIONS(1245), - [aux_sym_preproc_if_token2] = ACTIONS(1245), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1245), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1245), - [sym_preproc_directive] = ACTIONS(1245), - [anon_sym_LPAREN2] = ACTIONS(1247), - [anon_sym_BANG] = ACTIONS(1247), - [anon_sym_TILDE] = ACTIONS(1247), - [anon_sym_DASH] = ACTIONS(1245), - [anon_sym_PLUS] = ACTIONS(1245), - [anon_sym_STAR] = ACTIONS(1247), - [anon_sym_AMP] = ACTIONS(1247), - [anon_sym_SEMI] = ACTIONS(1247), - [anon_sym___extension__] = ACTIONS(1245), - [anon_sym_typedef] = ACTIONS(1245), - [anon_sym_extern] = ACTIONS(1245), - [anon_sym___attribute__] = ACTIONS(1245), - [anon_sym___scanf] = ACTIONS(1245), - [anon_sym___printf] = ACTIONS(1245), - [anon_sym___read_mostly] = ACTIONS(1245), - [anon_sym___must_hold] = ACTIONS(1245), - [anon_sym___ro_after_init] = ACTIONS(1245), - [anon_sym___init] = ACTIONS(1245), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1247), - [anon_sym___declspec] = ACTIONS(1245), - [anon_sym___cdecl] = ACTIONS(1245), - [anon_sym___clrcall] = ACTIONS(1245), - [anon_sym___stdcall] = ACTIONS(1245), - [anon_sym___fastcall] = ACTIONS(1245), - [anon_sym___thiscall] = ACTIONS(1245), - [anon_sym___vectorcall] = ACTIONS(1245), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_signed] = ACTIONS(1245), - [anon_sym_unsigned] = ACTIONS(1245), - [anon_sym_long] = ACTIONS(1245), - [anon_sym_short] = ACTIONS(1245), - [anon_sym_static] = ACTIONS(1245), - [anon_sym_auto] = ACTIONS(1245), - [anon_sym_register] = ACTIONS(1245), - [anon_sym_inline] = ACTIONS(1245), - [anon_sym___inline] = ACTIONS(1245), - [anon_sym___inline__] = ACTIONS(1245), - [anon_sym___forceinline] = ACTIONS(1245), - [anon_sym_thread_local] = ACTIONS(1245), - [anon_sym___thread] = ACTIONS(1245), - [anon_sym_const] = ACTIONS(1245), - [anon_sym_constexpr] = ACTIONS(1245), - [anon_sym_volatile] = ACTIONS(1245), - [anon_sym_restrict] = ACTIONS(1245), - [anon_sym___restrict__] = ACTIONS(1245), - [anon_sym__Atomic] = ACTIONS(1245), - [anon_sym__Noreturn] = ACTIONS(1245), - [anon_sym_noreturn] = ACTIONS(1245), - [anon_sym_alignas] = ACTIONS(1245), - [anon_sym__Alignas] = ACTIONS(1245), - [sym_primitive_type] = ACTIONS(1245), - [anon_sym_enum] = ACTIONS(1245), - [anon_sym_struct] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1245), - [anon_sym_if] = ACTIONS(1245), - [anon_sym_else] = ACTIONS(1245), - [anon_sym_switch] = ACTIONS(1245), - [anon_sym_case] = ACTIONS(1245), - [anon_sym_default] = ACTIONS(1245), - [anon_sym_while] = ACTIONS(1245), - [anon_sym_do] = ACTIONS(1245), - [anon_sym_for] = ACTIONS(1245), - [anon_sym_return] = ACTIONS(1245), - [anon_sym_break] = ACTIONS(1245), - [anon_sym_continue] = ACTIONS(1245), - [anon_sym_goto] = ACTIONS(1245), - [anon_sym___try] = ACTIONS(1245), - [anon_sym___leave] = ACTIONS(1245), - [anon_sym_DASH_DASH] = ACTIONS(1247), - [anon_sym_PLUS_PLUS] = ACTIONS(1247), - [anon_sym_sizeof] = ACTIONS(1245), - [anon_sym___alignof__] = ACTIONS(1245), - [anon_sym___alignof] = ACTIONS(1245), - [anon_sym__alignof] = ACTIONS(1245), - [anon_sym_alignof] = ACTIONS(1245), - [anon_sym__Alignof] = ACTIONS(1245), - [anon_sym_offsetof] = ACTIONS(1245), - [anon_sym__Generic] = ACTIONS(1245), - [anon_sym_asm] = ACTIONS(1245), - [anon_sym___asm__] = ACTIONS(1245), - [sym_number_literal] = ACTIONS(1247), - [anon_sym_L_SQUOTE] = ACTIONS(1247), - [anon_sym_u_SQUOTE] = ACTIONS(1247), - [anon_sym_U_SQUOTE] = ACTIONS(1247), - [anon_sym_u8_SQUOTE] = ACTIONS(1247), - [anon_sym_SQUOTE] = ACTIONS(1247), - [anon_sym_L_DQUOTE] = ACTIONS(1247), - [anon_sym_u_DQUOTE] = ACTIONS(1247), - [anon_sym_U_DQUOTE] = ACTIONS(1247), - [anon_sym_u8_DQUOTE] = ACTIONS(1247), - [anon_sym_DQUOTE] = ACTIONS(1247), - [sym_true] = ACTIONS(1245), - [sym_false] = ACTIONS(1245), - [anon_sym_NULL] = ACTIONS(1245), - [anon_sym_nullptr] = ACTIONS(1245), + [255] = { + [sym_identifier] = ACTIONS(1161), + [aux_sym_preproc_include_token1] = ACTIONS(1161), + [aux_sym_preproc_def_token1] = ACTIONS(1161), + [aux_sym_preproc_if_token1] = ACTIONS(1161), + [aux_sym_preproc_if_token2] = ACTIONS(1161), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1161), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1161), + [sym_preproc_directive] = ACTIONS(1161), + [anon_sym_LPAREN2] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1163), + [anon_sym_TILDE] = ACTIONS(1163), + [anon_sym_DASH] = ACTIONS(1161), + [anon_sym_PLUS] = ACTIONS(1161), + [anon_sym_STAR] = ACTIONS(1163), + [anon_sym_AMP] = ACTIONS(1163), + [anon_sym_SEMI] = ACTIONS(1163), + [anon_sym___extension__] = ACTIONS(1161), + [anon_sym_typedef] = ACTIONS(1161), + [anon_sym_extern] = ACTIONS(1161), + [anon_sym___attribute__] = ACTIONS(1161), + [anon_sym___scanf] = ACTIONS(1161), + [anon_sym___printf] = ACTIONS(1161), + [anon_sym___read_mostly] = ACTIONS(1161), + [anon_sym___must_hold] = ACTIONS(1161), + [anon_sym___ro_after_init] = ACTIONS(1161), + [anon_sym___noreturn] = ACTIONS(1161), + [anon_sym___cold] = ACTIONS(1161), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1163), + [anon_sym___declspec] = ACTIONS(1161), + [anon_sym___init] = ACTIONS(1161), + [anon_sym___exit] = ACTIONS(1161), + [anon_sym___cdecl] = ACTIONS(1161), + [anon_sym___clrcall] = ACTIONS(1161), + [anon_sym___stdcall] = ACTIONS(1161), + [anon_sym___fastcall] = ACTIONS(1161), + [anon_sym___thiscall] = ACTIONS(1161), + [anon_sym___vectorcall] = ACTIONS(1161), + [anon_sym_LBRACE] = ACTIONS(1163), + [anon_sym_signed] = ACTIONS(1161), + [anon_sym_unsigned] = ACTIONS(1161), + [anon_sym_long] = ACTIONS(1161), + [anon_sym_short] = ACTIONS(1161), + [anon_sym_static] = ACTIONS(1161), + [anon_sym_auto] = ACTIONS(1161), + [anon_sym_register] = ACTIONS(1161), + [anon_sym_inline] = ACTIONS(1161), + [anon_sym___inline] = ACTIONS(1161), + [anon_sym___inline__] = ACTIONS(1161), + [anon_sym___forceinline] = ACTIONS(1161), + [anon_sym_thread_local] = ACTIONS(1161), + [anon_sym___thread] = ACTIONS(1161), + [anon_sym_const] = ACTIONS(1161), + [anon_sym_constexpr] = ACTIONS(1161), + [anon_sym_volatile] = ACTIONS(1161), + [anon_sym_restrict] = ACTIONS(1161), + [anon_sym___restrict__] = ACTIONS(1161), + [anon_sym__Atomic] = ACTIONS(1161), + [anon_sym__Noreturn] = ACTIONS(1161), + [anon_sym_noreturn] = ACTIONS(1161), + [anon_sym_alignas] = ACTIONS(1161), + [anon_sym__Alignas] = ACTIONS(1161), + [sym_primitive_type] = ACTIONS(1161), + [anon_sym_enum] = ACTIONS(1161), + [anon_sym_struct] = ACTIONS(1161), + [anon_sym_union] = ACTIONS(1161), + [anon_sym_if] = ACTIONS(1161), + [anon_sym_else] = ACTIONS(1161), + [anon_sym_switch] = ACTIONS(1161), + [anon_sym_case] = ACTIONS(1161), + [anon_sym_default] = ACTIONS(1161), + [anon_sym_while] = ACTIONS(1161), + [anon_sym_do] = ACTIONS(1161), + [anon_sym_for] = ACTIONS(1161), + [anon_sym_return] = ACTIONS(1161), + [anon_sym_break] = ACTIONS(1161), + [anon_sym_continue] = ACTIONS(1161), + [anon_sym_goto] = ACTIONS(1161), + [anon_sym___try] = ACTIONS(1161), + [anon_sym___leave] = ACTIONS(1161), + [anon_sym_DASH_DASH] = ACTIONS(1163), + [anon_sym_PLUS_PLUS] = ACTIONS(1163), + [anon_sym_sizeof] = ACTIONS(1161), + [anon_sym___alignof__] = ACTIONS(1161), + [anon_sym___alignof] = ACTIONS(1161), + [anon_sym__alignof] = ACTIONS(1161), + [anon_sym_alignof] = ACTIONS(1161), + [anon_sym__Alignof] = ACTIONS(1161), + [anon_sym_offsetof] = ACTIONS(1161), + [anon_sym__Generic] = ACTIONS(1161), + [anon_sym_asm] = ACTIONS(1161), + [anon_sym___asm__] = ACTIONS(1161), + [sym_number_literal] = ACTIONS(1163), + [anon_sym_L_SQUOTE] = ACTIONS(1163), + [anon_sym_u_SQUOTE] = ACTIONS(1163), + [anon_sym_U_SQUOTE] = ACTIONS(1163), + [anon_sym_u8_SQUOTE] = ACTIONS(1163), + [anon_sym_SQUOTE] = ACTIONS(1163), + [anon_sym_L_DQUOTE] = ACTIONS(1163), + [anon_sym_u_DQUOTE] = ACTIONS(1163), + [anon_sym_U_DQUOTE] = ACTIONS(1163), + [anon_sym_u8_DQUOTE] = ACTIONS(1163), + [anon_sym_DQUOTE] = ACTIONS(1163), + [sym_true] = ACTIONS(1161), + [sym_false] = ACTIONS(1161), + [anon_sym_NULL] = ACTIONS(1161), + [anon_sym_nullptr] = ACTIONS(1161), [sym_comment] = ACTIONS(3), }, - [225] = { + [256] = { [sym_identifier] = ACTIONS(1181), [aux_sym_preproc_include_token1] = ACTIONS(1181), [aux_sym_preproc_def_token1] = ACTIONS(1181), @@ -40663,9 +45431,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___read_mostly] = ACTIONS(1181), [anon_sym___must_hold] = ACTIONS(1181), [anon_sym___ro_after_init] = ACTIONS(1181), - [anon_sym___init] = ACTIONS(1181), + [anon_sym___noreturn] = ACTIONS(1181), + [anon_sym___cold] = ACTIONS(1181), [anon_sym_LBRACK_LBRACK] = ACTIONS(1183), [anon_sym___declspec] = ACTIONS(1181), + [anon_sym___init] = ACTIONS(1181), + [anon_sym___exit] = ACTIONS(1181), [anon_sym___cdecl] = ACTIONS(1181), [anon_sym___clrcall] = ACTIONS(1181), [anon_sym___stdcall] = ACTIONS(1181), @@ -40743,113 +45514,116 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1181), [sym_comment] = ACTIONS(3), }, - [226] = { - [sym_identifier] = ACTIONS(1181), - [aux_sym_preproc_include_token1] = ACTIONS(1181), - [aux_sym_preproc_def_token1] = ACTIONS(1181), - [aux_sym_preproc_if_token1] = ACTIONS(1181), - [aux_sym_preproc_if_token2] = ACTIONS(1181), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1181), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1181), - [sym_preproc_directive] = ACTIONS(1181), - [anon_sym_LPAREN2] = ACTIONS(1183), - [anon_sym_BANG] = ACTIONS(1183), - [anon_sym_TILDE] = ACTIONS(1183), - [anon_sym_DASH] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1181), - [anon_sym_STAR] = ACTIONS(1183), - [anon_sym_AMP] = ACTIONS(1183), - [anon_sym_SEMI] = ACTIONS(1183), - [anon_sym___extension__] = ACTIONS(1181), - [anon_sym_typedef] = ACTIONS(1181), - [anon_sym_extern] = ACTIONS(1181), - [anon_sym___attribute__] = ACTIONS(1181), - [anon_sym___scanf] = ACTIONS(1181), - [anon_sym___printf] = ACTIONS(1181), - [anon_sym___read_mostly] = ACTIONS(1181), - [anon_sym___must_hold] = ACTIONS(1181), - [anon_sym___ro_after_init] = ACTIONS(1181), - [anon_sym___init] = ACTIONS(1181), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1183), - [anon_sym___declspec] = ACTIONS(1181), - [anon_sym___cdecl] = ACTIONS(1181), - [anon_sym___clrcall] = ACTIONS(1181), - [anon_sym___stdcall] = ACTIONS(1181), - [anon_sym___fastcall] = ACTIONS(1181), - [anon_sym___thiscall] = ACTIONS(1181), - [anon_sym___vectorcall] = ACTIONS(1181), - [anon_sym_LBRACE] = ACTIONS(1183), - [anon_sym_signed] = ACTIONS(1181), - [anon_sym_unsigned] = ACTIONS(1181), - [anon_sym_long] = ACTIONS(1181), - [anon_sym_short] = ACTIONS(1181), - [anon_sym_static] = ACTIONS(1181), - [anon_sym_auto] = ACTIONS(1181), - [anon_sym_register] = ACTIONS(1181), - [anon_sym_inline] = ACTIONS(1181), - [anon_sym___inline] = ACTIONS(1181), - [anon_sym___inline__] = ACTIONS(1181), - [anon_sym___forceinline] = ACTIONS(1181), - [anon_sym_thread_local] = ACTIONS(1181), - [anon_sym___thread] = ACTIONS(1181), - [anon_sym_const] = ACTIONS(1181), - [anon_sym_constexpr] = ACTIONS(1181), - [anon_sym_volatile] = ACTIONS(1181), - [anon_sym_restrict] = ACTIONS(1181), - [anon_sym___restrict__] = ACTIONS(1181), - [anon_sym__Atomic] = ACTIONS(1181), - [anon_sym__Noreturn] = ACTIONS(1181), - [anon_sym_noreturn] = ACTIONS(1181), - [anon_sym_alignas] = ACTIONS(1181), - [anon_sym__Alignas] = ACTIONS(1181), - [sym_primitive_type] = ACTIONS(1181), - [anon_sym_enum] = ACTIONS(1181), - [anon_sym_struct] = ACTIONS(1181), - [anon_sym_union] = ACTIONS(1181), - [anon_sym_if] = ACTIONS(1181), - [anon_sym_else] = ACTIONS(1181), - [anon_sym_switch] = ACTIONS(1181), - [anon_sym_case] = ACTIONS(1181), - [anon_sym_default] = ACTIONS(1181), - [anon_sym_while] = ACTIONS(1181), - [anon_sym_do] = ACTIONS(1181), - [anon_sym_for] = ACTIONS(1181), - [anon_sym_return] = ACTIONS(1181), - [anon_sym_break] = ACTIONS(1181), - [anon_sym_continue] = ACTIONS(1181), - [anon_sym_goto] = ACTIONS(1181), - [anon_sym___try] = ACTIONS(1181), - [anon_sym___leave] = ACTIONS(1181), - [anon_sym_DASH_DASH] = ACTIONS(1183), - [anon_sym_PLUS_PLUS] = ACTIONS(1183), - [anon_sym_sizeof] = ACTIONS(1181), - [anon_sym___alignof__] = ACTIONS(1181), - [anon_sym___alignof] = ACTIONS(1181), - [anon_sym__alignof] = ACTIONS(1181), - [anon_sym_alignof] = ACTIONS(1181), - [anon_sym__Alignof] = ACTIONS(1181), - [anon_sym_offsetof] = ACTIONS(1181), - [anon_sym__Generic] = ACTIONS(1181), - [anon_sym_asm] = ACTIONS(1181), - [anon_sym___asm__] = ACTIONS(1181), - [sym_number_literal] = ACTIONS(1183), - [anon_sym_L_SQUOTE] = ACTIONS(1183), - [anon_sym_u_SQUOTE] = ACTIONS(1183), - [anon_sym_U_SQUOTE] = ACTIONS(1183), - [anon_sym_u8_SQUOTE] = ACTIONS(1183), - [anon_sym_SQUOTE] = ACTIONS(1183), - [anon_sym_L_DQUOTE] = ACTIONS(1183), - [anon_sym_u_DQUOTE] = ACTIONS(1183), - [anon_sym_U_DQUOTE] = ACTIONS(1183), - [anon_sym_u8_DQUOTE] = ACTIONS(1183), - [anon_sym_DQUOTE] = ACTIONS(1183), - [sym_true] = ACTIONS(1181), - [sym_false] = ACTIONS(1181), - [anon_sym_NULL] = ACTIONS(1181), - [anon_sym_nullptr] = ACTIONS(1181), + [257] = { + [sym_identifier] = ACTIONS(1177), + [aux_sym_preproc_include_token1] = ACTIONS(1177), + [aux_sym_preproc_def_token1] = ACTIONS(1177), + [aux_sym_preproc_if_token1] = ACTIONS(1177), + [aux_sym_preproc_if_token2] = ACTIONS(1177), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1177), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1177), + [sym_preproc_directive] = ACTIONS(1177), + [anon_sym_LPAREN2] = ACTIONS(1179), + [anon_sym_BANG] = ACTIONS(1179), + [anon_sym_TILDE] = ACTIONS(1179), + [anon_sym_DASH] = ACTIONS(1177), + [anon_sym_PLUS] = ACTIONS(1177), + [anon_sym_STAR] = ACTIONS(1179), + [anon_sym_AMP] = ACTIONS(1179), + [anon_sym_SEMI] = ACTIONS(1179), + [anon_sym___extension__] = ACTIONS(1177), + [anon_sym_typedef] = ACTIONS(1177), + [anon_sym_extern] = ACTIONS(1177), + [anon_sym___attribute__] = ACTIONS(1177), + [anon_sym___scanf] = ACTIONS(1177), + [anon_sym___printf] = ACTIONS(1177), + [anon_sym___read_mostly] = ACTIONS(1177), + [anon_sym___must_hold] = ACTIONS(1177), + [anon_sym___ro_after_init] = ACTIONS(1177), + [anon_sym___noreturn] = ACTIONS(1177), + [anon_sym___cold] = ACTIONS(1177), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1179), + [anon_sym___declspec] = ACTIONS(1177), + [anon_sym___init] = ACTIONS(1177), + [anon_sym___exit] = ACTIONS(1177), + [anon_sym___cdecl] = ACTIONS(1177), + [anon_sym___clrcall] = ACTIONS(1177), + [anon_sym___stdcall] = ACTIONS(1177), + [anon_sym___fastcall] = ACTIONS(1177), + [anon_sym___thiscall] = ACTIONS(1177), + [anon_sym___vectorcall] = ACTIONS(1177), + [anon_sym_LBRACE] = ACTIONS(1179), + [anon_sym_signed] = ACTIONS(1177), + [anon_sym_unsigned] = ACTIONS(1177), + [anon_sym_long] = ACTIONS(1177), + [anon_sym_short] = ACTIONS(1177), + [anon_sym_static] = ACTIONS(1177), + [anon_sym_auto] = ACTIONS(1177), + [anon_sym_register] = ACTIONS(1177), + [anon_sym_inline] = ACTIONS(1177), + [anon_sym___inline] = ACTIONS(1177), + [anon_sym___inline__] = ACTIONS(1177), + [anon_sym___forceinline] = ACTIONS(1177), + [anon_sym_thread_local] = ACTIONS(1177), + [anon_sym___thread] = ACTIONS(1177), + [anon_sym_const] = ACTIONS(1177), + [anon_sym_constexpr] = ACTIONS(1177), + [anon_sym_volatile] = ACTIONS(1177), + [anon_sym_restrict] = ACTIONS(1177), + [anon_sym___restrict__] = ACTIONS(1177), + [anon_sym__Atomic] = ACTIONS(1177), + [anon_sym__Noreturn] = ACTIONS(1177), + [anon_sym_noreturn] = ACTIONS(1177), + [anon_sym_alignas] = ACTIONS(1177), + [anon_sym__Alignas] = ACTIONS(1177), + [sym_primitive_type] = ACTIONS(1177), + [anon_sym_enum] = ACTIONS(1177), + [anon_sym_struct] = ACTIONS(1177), + [anon_sym_union] = ACTIONS(1177), + [anon_sym_if] = ACTIONS(1177), + [anon_sym_else] = ACTIONS(1177), + [anon_sym_switch] = ACTIONS(1177), + [anon_sym_case] = ACTIONS(1177), + [anon_sym_default] = ACTIONS(1177), + [anon_sym_while] = ACTIONS(1177), + [anon_sym_do] = ACTIONS(1177), + [anon_sym_for] = ACTIONS(1177), + [anon_sym_return] = ACTIONS(1177), + [anon_sym_break] = ACTIONS(1177), + [anon_sym_continue] = ACTIONS(1177), + [anon_sym_goto] = ACTIONS(1177), + [anon_sym___try] = ACTIONS(1177), + [anon_sym___leave] = ACTIONS(1177), + [anon_sym_DASH_DASH] = ACTIONS(1179), + [anon_sym_PLUS_PLUS] = ACTIONS(1179), + [anon_sym_sizeof] = ACTIONS(1177), + [anon_sym___alignof__] = ACTIONS(1177), + [anon_sym___alignof] = ACTIONS(1177), + [anon_sym__alignof] = ACTIONS(1177), + [anon_sym_alignof] = ACTIONS(1177), + [anon_sym__Alignof] = ACTIONS(1177), + [anon_sym_offsetof] = ACTIONS(1177), + [anon_sym__Generic] = ACTIONS(1177), + [anon_sym_asm] = ACTIONS(1177), + [anon_sym___asm__] = ACTIONS(1177), + [sym_number_literal] = ACTIONS(1179), + [anon_sym_L_SQUOTE] = ACTIONS(1179), + [anon_sym_u_SQUOTE] = ACTIONS(1179), + [anon_sym_U_SQUOTE] = ACTIONS(1179), + [anon_sym_u8_SQUOTE] = ACTIONS(1179), + [anon_sym_SQUOTE] = ACTIONS(1179), + [anon_sym_L_DQUOTE] = ACTIONS(1179), + [anon_sym_u_DQUOTE] = ACTIONS(1179), + [anon_sym_U_DQUOTE] = ACTIONS(1179), + [anon_sym_u8_DQUOTE] = ACTIONS(1179), + [anon_sym_DQUOTE] = ACTIONS(1179), + [sym_true] = ACTIONS(1177), + [sym_false] = ACTIONS(1177), + [anon_sym_NULL] = ACTIONS(1177), + [anon_sym_nullptr] = ACTIONS(1177), [sym_comment] = ACTIONS(3), }, - [227] = { + [258] = { [sym_identifier] = ACTIONS(1173), [aux_sym_preproc_include_token1] = ACTIONS(1173), [aux_sym_preproc_def_token1] = ACTIONS(1173), @@ -40875,9 +45649,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___read_mostly] = ACTIONS(1173), [anon_sym___must_hold] = ACTIONS(1173), [anon_sym___ro_after_init] = ACTIONS(1173), - [anon_sym___init] = ACTIONS(1173), + [anon_sym___noreturn] = ACTIONS(1173), + [anon_sym___cold] = ACTIONS(1173), [anon_sym_LBRACK_LBRACK] = ACTIONS(1175), [anon_sym___declspec] = ACTIONS(1173), + [anon_sym___init] = ACTIONS(1173), + [anon_sym___exit] = ACTIONS(1173), [anon_sym___cdecl] = ACTIONS(1173), [anon_sym___clrcall] = ACTIONS(1173), [anon_sym___stdcall] = ACTIONS(1173), @@ -40955,113 +45732,334 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1173), [sym_comment] = ACTIONS(3), }, - [228] = { - [ts_builtin_sym_end] = ACTIONS(1179), - [sym_identifier] = ACTIONS(1177), - [aux_sym_preproc_include_token1] = ACTIONS(1177), - [aux_sym_preproc_def_token1] = ACTIONS(1177), - [aux_sym_preproc_if_token1] = ACTIONS(1177), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1177), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1177), - [sym_preproc_directive] = ACTIONS(1177), - [anon_sym_LPAREN2] = ACTIONS(1179), - [anon_sym_BANG] = ACTIONS(1179), - [anon_sym_TILDE] = ACTIONS(1179), - [anon_sym_DASH] = ACTIONS(1177), - [anon_sym_PLUS] = ACTIONS(1177), - [anon_sym_STAR] = ACTIONS(1179), - [anon_sym_AMP] = ACTIONS(1179), - [anon_sym_SEMI] = ACTIONS(1179), - [anon_sym___extension__] = ACTIONS(1177), - [anon_sym_typedef] = ACTIONS(1177), - [anon_sym_extern] = ACTIONS(1177), - [anon_sym___attribute__] = ACTIONS(1177), - [anon_sym___scanf] = ACTIONS(1177), - [anon_sym___printf] = ACTIONS(1177), - [anon_sym___read_mostly] = ACTIONS(1177), - [anon_sym___must_hold] = ACTIONS(1177), - [anon_sym___ro_after_init] = ACTIONS(1177), - [anon_sym___init] = ACTIONS(1177), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1179), - [anon_sym___declspec] = ACTIONS(1177), - [anon_sym___cdecl] = ACTIONS(1177), - [anon_sym___clrcall] = ACTIONS(1177), - [anon_sym___stdcall] = ACTIONS(1177), - [anon_sym___fastcall] = ACTIONS(1177), - [anon_sym___thiscall] = ACTIONS(1177), - [anon_sym___vectorcall] = ACTIONS(1177), - [anon_sym_LBRACE] = ACTIONS(1179), - [anon_sym_signed] = ACTIONS(1177), - [anon_sym_unsigned] = ACTIONS(1177), - [anon_sym_long] = ACTIONS(1177), - [anon_sym_short] = ACTIONS(1177), - [anon_sym_static] = ACTIONS(1177), - [anon_sym_auto] = ACTIONS(1177), - [anon_sym_register] = ACTIONS(1177), - [anon_sym_inline] = ACTIONS(1177), - [anon_sym___inline] = ACTIONS(1177), - [anon_sym___inline__] = ACTIONS(1177), - [anon_sym___forceinline] = ACTIONS(1177), - [anon_sym_thread_local] = ACTIONS(1177), - [anon_sym___thread] = ACTIONS(1177), - [anon_sym_const] = ACTIONS(1177), - [anon_sym_constexpr] = ACTIONS(1177), - [anon_sym_volatile] = ACTIONS(1177), - [anon_sym_restrict] = ACTIONS(1177), - [anon_sym___restrict__] = ACTIONS(1177), - [anon_sym__Atomic] = ACTIONS(1177), - [anon_sym__Noreturn] = ACTIONS(1177), - [anon_sym_noreturn] = ACTIONS(1177), - [anon_sym_alignas] = ACTIONS(1177), - [anon_sym__Alignas] = ACTIONS(1177), - [sym_primitive_type] = ACTIONS(1177), - [anon_sym_enum] = ACTIONS(1177), - [anon_sym_struct] = ACTIONS(1177), - [anon_sym_union] = ACTIONS(1177), - [anon_sym_if] = ACTIONS(1177), - [anon_sym_else] = ACTIONS(1177), - [anon_sym_switch] = ACTIONS(1177), - [anon_sym_case] = ACTIONS(1177), - [anon_sym_default] = ACTIONS(1177), - [anon_sym_while] = ACTIONS(1177), - [anon_sym_do] = ACTIONS(1177), - [anon_sym_for] = ACTIONS(1177), - [anon_sym_return] = ACTIONS(1177), - [anon_sym_break] = ACTIONS(1177), - [anon_sym_continue] = ACTIONS(1177), - [anon_sym_goto] = ACTIONS(1177), - [anon_sym___try] = ACTIONS(1177), - [anon_sym___leave] = ACTIONS(1177), - [anon_sym_DASH_DASH] = ACTIONS(1179), - [anon_sym_PLUS_PLUS] = ACTIONS(1179), - [anon_sym_sizeof] = ACTIONS(1177), - [anon_sym___alignof__] = ACTIONS(1177), - [anon_sym___alignof] = ACTIONS(1177), - [anon_sym__alignof] = ACTIONS(1177), - [anon_sym_alignof] = ACTIONS(1177), - [anon_sym__Alignof] = ACTIONS(1177), - [anon_sym_offsetof] = ACTIONS(1177), - [anon_sym__Generic] = ACTIONS(1177), - [anon_sym_asm] = ACTIONS(1177), - [anon_sym___asm__] = ACTIONS(1177), - [sym_number_literal] = ACTIONS(1179), - [anon_sym_L_SQUOTE] = ACTIONS(1179), - [anon_sym_u_SQUOTE] = ACTIONS(1179), - [anon_sym_U_SQUOTE] = ACTIONS(1179), - [anon_sym_u8_SQUOTE] = ACTIONS(1179), - [anon_sym_SQUOTE] = ACTIONS(1179), - [anon_sym_L_DQUOTE] = ACTIONS(1179), - [anon_sym_u_DQUOTE] = ACTIONS(1179), - [anon_sym_U_DQUOTE] = ACTIONS(1179), - [anon_sym_u8_DQUOTE] = ACTIONS(1179), - [anon_sym_DQUOTE] = ACTIONS(1179), - [sym_true] = ACTIONS(1177), - [sym_false] = ACTIONS(1177), - [anon_sym_NULL] = ACTIONS(1177), - [anon_sym_nullptr] = ACTIONS(1177), + [259] = { + [ts_builtin_sym_end] = ACTIONS(1243), + [sym_identifier] = ACTIONS(1241), + [aux_sym_preproc_include_token1] = ACTIONS(1241), + [aux_sym_preproc_def_token1] = ACTIONS(1241), + [aux_sym_preproc_if_token1] = ACTIONS(1241), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1241), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1241), + [sym_preproc_directive] = ACTIONS(1241), + [anon_sym_LPAREN2] = ACTIONS(1243), + [anon_sym_BANG] = ACTIONS(1243), + [anon_sym_TILDE] = ACTIONS(1243), + [anon_sym_DASH] = ACTIONS(1241), + [anon_sym_PLUS] = ACTIONS(1241), + [anon_sym_STAR] = ACTIONS(1243), + [anon_sym_AMP] = ACTIONS(1243), + [anon_sym_SEMI] = ACTIONS(1243), + [anon_sym___extension__] = ACTIONS(1241), + [anon_sym_typedef] = ACTIONS(1241), + [anon_sym_extern] = ACTIONS(1241), + [anon_sym___attribute__] = ACTIONS(1241), + [anon_sym___scanf] = ACTIONS(1241), + [anon_sym___printf] = ACTIONS(1241), + [anon_sym___read_mostly] = ACTIONS(1241), + [anon_sym___must_hold] = ACTIONS(1241), + [anon_sym___ro_after_init] = ACTIONS(1241), + [anon_sym___noreturn] = ACTIONS(1241), + [anon_sym___cold] = ACTIONS(1241), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1243), + [anon_sym___declspec] = ACTIONS(1241), + [anon_sym___init] = ACTIONS(1241), + [anon_sym___exit] = ACTIONS(1241), + [anon_sym___cdecl] = ACTIONS(1241), + [anon_sym___clrcall] = ACTIONS(1241), + [anon_sym___stdcall] = ACTIONS(1241), + [anon_sym___fastcall] = ACTIONS(1241), + [anon_sym___thiscall] = ACTIONS(1241), + [anon_sym___vectorcall] = ACTIONS(1241), + [anon_sym_LBRACE] = ACTIONS(1243), + [anon_sym_signed] = ACTIONS(1241), + [anon_sym_unsigned] = ACTIONS(1241), + [anon_sym_long] = ACTIONS(1241), + [anon_sym_short] = ACTIONS(1241), + [anon_sym_static] = ACTIONS(1241), + [anon_sym_auto] = ACTIONS(1241), + [anon_sym_register] = ACTIONS(1241), + [anon_sym_inline] = ACTIONS(1241), + [anon_sym___inline] = ACTIONS(1241), + [anon_sym___inline__] = ACTIONS(1241), + [anon_sym___forceinline] = ACTIONS(1241), + [anon_sym_thread_local] = ACTIONS(1241), + [anon_sym___thread] = ACTIONS(1241), + [anon_sym_const] = ACTIONS(1241), + [anon_sym_constexpr] = ACTIONS(1241), + [anon_sym_volatile] = ACTIONS(1241), + [anon_sym_restrict] = ACTIONS(1241), + [anon_sym___restrict__] = ACTIONS(1241), + [anon_sym__Atomic] = ACTIONS(1241), + [anon_sym__Noreturn] = ACTIONS(1241), + [anon_sym_noreturn] = ACTIONS(1241), + [anon_sym_alignas] = ACTIONS(1241), + [anon_sym__Alignas] = ACTIONS(1241), + [sym_primitive_type] = ACTIONS(1241), + [anon_sym_enum] = ACTIONS(1241), + [anon_sym_struct] = ACTIONS(1241), + [anon_sym_union] = ACTIONS(1241), + [anon_sym_if] = ACTIONS(1241), + [anon_sym_else] = ACTIONS(1241), + [anon_sym_switch] = ACTIONS(1241), + [anon_sym_case] = ACTIONS(1241), + [anon_sym_default] = ACTIONS(1241), + [anon_sym_while] = ACTIONS(1241), + [anon_sym_do] = ACTIONS(1241), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_return] = ACTIONS(1241), + [anon_sym_break] = ACTIONS(1241), + [anon_sym_continue] = ACTIONS(1241), + [anon_sym_goto] = ACTIONS(1241), + [anon_sym___try] = ACTIONS(1241), + [anon_sym___leave] = ACTIONS(1241), + [anon_sym_DASH_DASH] = ACTIONS(1243), + [anon_sym_PLUS_PLUS] = ACTIONS(1243), + [anon_sym_sizeof] = ACTIONS(1241), + [anon_sym___alignof__] = ACTIONS(1241), + [anon_sym___alignof] = ACTIONS(1241), + [anon_sym__alignof] = ACTIONS(1241), + [anon_sym_alignof] = ACTIONS(1241), + [anon_sym__Alignof] = ACTIONS(1241), + [anon_sym_offsetof] = ACTIONS(1241), + [anon_sym__Generic] = ACTIONS(1241), + [anon_sym_asm] = ACTIONS(1241), + [anon_sym___asm__] = ACTIONS(1241), + [sym_number_literal] = ACTIONS(1243), + [anon_sym_L_SQUOTE] = ACTIONS(1243), + [anon_sym_u_SQUOTE] = ACTIONS(1243), + [anon_sym_U_SQUOTE] = ACTIONS(1243), + [anon_sym_u8_SQUOTE] = ACTIONS(1243), + [anon_sym_SQUOTE] = ACTIONS(1243), + [anon_sym_L_DQUOTE] = ACTIONS(1243), + [anon_sym_u_DQUOTE] = ACTIONS(1243), + [anon_sym_U_DQUOTE] = ACTIONS(1243), + [anon_sym_u8_DQUOTE] = ACTIONS(1243), + [anon_sym_DQUOTE] = ACTIONS(1243), + [sym_true] = ACTIONS(1241), + [sym_false] = ACTIONS(1241), + [anon_sym_NULL] = ACTIONS(1241), + [anon_sym_nullptr] = ACTIONS(1241), + [sym_comment] = ACTIONS(3), + }, + [260] = { + [sym_identifier] = ACTIONS(1203), + [aux_sym_preproc_include_token1] = ACTIONS(1203), + [aux_sym_preproc_def_token1] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1203), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1203), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1203), + [sym_preproc_directive] = ACTIONS(1203), + [anon_sym_LPAREN2] = ACTIONS(1201), + [anon_sym_BANG] = ACTIONS(1201), + [anon_sym_TILDE] = ACTIONS(1201), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_STAR] = ACTIONS(1201), + [anon_sym_AMP] = ACTIONS(1201), + [anon_sym_SEMI] = ACTIONS(1201), + [anon_sym___extension__] = ACTIONS(1203), + [anon_sym_typedef] = ACTIONS(1203), + [anon_sym_extern] = ACTIONS(1203), + [anon_sym___attribute__] = ACTIONS(1203), + [anon_sym___scanf] = ACTIONS(1203), + [anon_sym___printf] = ACTIONS(1203), + [anon_sym___read_mostly] = ACTIONS(1203), + [anon_sym___must_hold] = ACTIONS(1203), + [anon_sym___ro_after_init] = ACTIONS(1203), + [anon_sym___noreturn] = ACTIONS(1203), + [anon_sym___cold] = ACTIONS(1203), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1201), + [anon_sym___declspec] = ACTIONS(1203), + [anon_sym___init] = ACTIONS(1203), + [anon_sym___exit] = ACTIONS(1203), + [anon_sym___cdecl] = ACTIONS(1203), + [anon_sym___clrcall] = ACTIONS(1203), + [anon_sym___stdcall] = ACTIONS(1203), + [anon_sym___fastcall] = ACTIONS(1203), + [anon_sym___thiscall] = ACTIONS(1203), + [anon_sym___vectorcall] = ACTIONS(1203), + [anon_sym_LBRACE] = ACTIONS(1201), + [anon_sym_RBRACE] = ACTIONS(1201), + [anon_sym_signed] = ACTIONS(1203), + [anon_sym_unsigned] = ACTIONS(1203), + [anon_sym_long] = ACTIONS(1203), + [anon_sym_short] = ACTIONS(1203), + [anon_sym_static] = ACTIONS(1203), + [anon_sym_auto] = ACTIONS(1203), + [anon_sym_register] = ACTIONS(1203), + [anon_sym_inline] = ACTIONS(1203), + [anon_sym___inline] = ACTIONS(1203), + [anon_sym___inline__] = ACTIONS(1203), + [anon_sym___forceinline] = ACTIONS(1203), + [anon_sym_thread_local] = ACTIONS(1203), + [anon_sym___thread] = ACTIONS(1203), + [anon_sym_const] = ACTIONS(1203), + [anon_sym_constexpr] = ACTIONS(1203), + [anon_sym_volatile] = ACTIONS(1203), + [anon_sym_restrict] = ACTIONS(1203), + [anon_sym___restrict__] = ACTIONS(1203), + [anon_sym__Atomic] = ACTIONS(1203), + [anon_sym__Noreturn] = ACTIONS(1203), + [anon_sym_noreturn] = ACTIONS(1203), + [anon_sym_alignas] = ACTIONS(1203), + [anon_sym__Alignas] = ACTIONS(1203), + [sym_primitive_type] = ACTIONS(1203), + [anon_sym_enum] = ACTIONS(1203), + [anon_sym_struct] = ACTIONS(1203), + [anon_sym_union] = ACTIONS(1203), + [anon_sym_if] = ACTIONS(1203), + [anon_sym_else] = ACTIONS(1203), + [anon_sym_switch] = ACTIONS(1203), + [anon_sym_case] = ACTIONS(1203), + [anon_sym_default] = ACTIONS(1203), + [anon_sym_while] = ACTIONS(1203), + [anon_sym_do] = ACTIONS(1203), + [anon_sym_for] = ACTIONS(1203), + [anon_sym_return] = ACTIONS(1203), + [anon_sym_break] = ACTIONS(1203), + [anon_sym_continue] = ACTIONS(1203), + [anon_sym_goto] = ACTIONS(1203), + [anon_sym___try] = ACTIONS(1203), + [anon_sym___leave] = ACTIONS(1203), + [anon_sym_DASH_DASH] = ACTIONS(1201), + [anon_sym_PLUS_PLUS] = ACTIONS(1201), + [anon_sym_sizeof] = ACTIONS(1203), + [anon_sym___alignof__] = ACTIONS(1203), + [anon_sym___alignof] = ACTIONS(1203), + [anon_sym__alignof] = ACTIONS(1203), + [anon_sym_alignof] = ACTIONS(1203), + [anon_sym__Alignof] = ACTIONS(1203), + [anon_sym_offsetof] = ACTIONS(1203), + [anon_sym__Generic] = ACTIONS(1203), + [anon_sym_asm] = ACTIONS(1203), + [anon_sym___asm__] = ACTIONS(1203), + [sym_number_literal] = ACTIONS(1201), + [anon_sym_L_SQUOTE] = ACTIONS(1201), + [anon_sym_u_SQUOTE] = ACTIONS(1201), + [anon_sym_U_SQUOTE] = ACTIONS(1201), + [anon_sym_u8_SQUOTE] = ACTIONS(1201), + [anon_sym_SQUOTE] = ACTIONS(1201), + [anon_sym_L_DQUOTE] = ACTIONS(1201), + [anon_sym_u_DQUOTE] = ACTIONS(1201), + [anon_sym_U_DQUOTE] = ACTIONS(1201), + [anon_sym_u8_DQUOTE] = ACTIONS(1201), + [anon_sym_DQUOTE] = ACTIONS(1201), + [sym_true] = ACTIONS(1203), + [sym_false] = ACTIONS(1203), + [anon_sym_NULL] = ACTIONS(1203), + [anon_sym_nullptr] = ACTIONS(1203), + [sym_comment] = ACTIONS(3), + }, + [261] = { + [sym_identifier] = ACTIONS(1165), + [aux_sym_preproc_include_token1] = ACTIONS(1165), + [aux_sym_preproc_def_token1] = ACTIONS(1165), + [aux_sym_preproc_if_token1] = ACTIONS(1165), + [aux_sym_preproc_if_token2] = ACTIONS(1165), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1165), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1165), + [sym_preproc_directive] = ACTIONS(1165), + [anon_sym_LPAREN2] = ACTIONS(1167), + [anon_sym_BANG] = ACTIONS(1167), + [anon_sym_TILDE] = ACTIONS(1167), + [anon_sym_DASH] = ACTIONS(1165), + [anon_sym_PLUS] = ACTIONS(1165), + [anon_sym_STAR] = ACTIONS(1167), + [anon_sym_AMP] = ACTIONS(1167), + [anon_sym_SEMI] = ACTIONS(1167), + [anon_sym___extension__] = ACTIONS(1165), + [anon_sym_typedef] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1165), + [anon_sym___attribute__] = ACTIONS(1165), + [anon_sym___scanf] = ACTIONS(1165), + [anon_sym___printf] = ACTIONS(1165), + [anon_sym___read_mostly] = ACTIONS(1165), + [anon_sym___must_hold] = ACTIONS(1165), + [anon_sym___ro_after_init] = ACTIONS(1165), + [anon_sym___noreturn] = ACTIONS(1165), + [anon_sym___cold] = ACTIONS(1165), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1167), + [anon_sym___declspec] = ACTIONS(1165), + [anon_sym___init] = ACTIONS(1165), + [anon_sym___exit] = ACTIONS(1165), + [anon_sym___cdecl] = ACTIONS(1165), + [anon_sym___clrcall] = ACTIONS(1165), + [anon_sym___stdcall] = ACTIONS(1165), + [anon_sym___fastcall] = ACTIONS(1165), + [anon_sym___thiscall] = ACTIONS(1165), + [anon_sym___vectorcall] = ACTIONS(1165), + [anon_sym_LBRACE] = ACTIONS(1167), + [anon_sym_signed] = ACTIONS(1165), + [anon_sym_unsigned] = ACTIONS(1165), + [anon_sym_long] = ACTIONS(1165), + [anon_sym_short] = ACTIONS(1165), + [anon_sym_static] = ACTIONS(1165), + [anon_sym_auto] = ACTIONS(1165), + [anon_sym_register] = ACTIONS(1165), + [anon_sym_inline] = ACTIONS(1165), + [anon_sym___inline] = ACTIONS(1165), + [anon_sym___inline__] = ACTIONS(1165), + [anon_sym___forceinline] = ACTIONS(1165), + [anon_sym_thread_local] = ACTIONS(1165), + [anon_sym___thread] = ACTIONS(1165), + [anon_sym_const] = ACTIONS(1165), + [anon_sym_constexpr] = ACTIONS(1165), + [anon_sym_volatile] = ACTIONS(1165), + [anon_sym_restrict] = ACTIONS(1165), + [anon_sym___restrict__] = ACTIONS(1165), + [anon_sym__Atomic] = ACTIONS(1165), + [anon_sym__Noreturn] = ACTIONS(1165), + [anon_sym_noreturn] = ACTIONS(1165), + [anon_sym_alignas] = ACTIONS(1165), + [anon_sym__Alignas] = ACTIONS(1165), + [sym_primitive_type] = ACTIONS(1165), + [anon_sym_enum] = ACTIONS(1165), + [anon_sym_struct] = ACTIONS(1165), + [anon_sym_union] = ACTIONS(1165), + [anon_sym_if] = ACTIONS(1165), + [anon_sym_else] = ACTIONS(1165), + [anon_sym_switch] = ACTIONS(1165), + [anon_sym_case] = ACTIONS(1165), + [anon_sym_default] = ACTIONS(1165), + [anon_sym_while] = ACTIONS(1165), + [anon_sym_do] = ACTIONS(1165), + [anon_sym_for] = ACTIONS(1165), + [anon_sym_return] = ACTIONS(1165), + [anon_sym_break] = ACTIONS(1165), + [anon_sym_continue] = ACTIONS(1165), + [anon_sym_goto] = ACTIONS(1165), + [anon_sym___try] = ACTIONS(1165), + [anon_sym___leave] = ACTIONS(1165), + [anon_sym_DASH_DASH] = ACTIONS(1167), + [anon_sym_PLUS_PLUS] = ACTIONS(1167), + [anon_sym_sizeof] = ACTIONS(1165), + [anon_sym___alignof__] = ACTIONS(1165), + [anon_sym___alignof] = ACTIONS(1165), + [anon_sym__alignof] = ACTIONS(1165), + [anon_sym_alignof] = ACTIONS(1165), + [anon_sym__Alignof] = ACTIONS(1165), + [anon_sym_offsetof] = ACTIONS(1165), + [anon_sym__Generic] = ACTIONS(1165), + [anon_sym_asm] = ACTIONS(1165), + [anon_sym___asm__] = ACTIONS(1165), + [sym_number_literal] = ACTIONS(1167), + [anon_sym_L_SQUOTE] = ACTIONS(1167), + [anon_sym_u_SQUOTE] = ACTIONS(1167), + [anon_sym_U_SQUOTE] = ACTIONS(1167), + [anon_sym_u8_SQUOTE] = ACTIONS(1167), + [anon_sym_SQUOTE] = ACTIONS(1167), + [anon_sym_L_DQUOTE] = ACTIONS(1167), + [anon_sym_u_DQUOTE] = ACTIONS(1167), + [anon_sym_U_DQUOTE] = ACTIONS(1167), + [anon_sym_u8_DQUOTE] = ACTIONS(1167), + [anon_sym_DQUOTE] = ACTIONS(1167), + [sym_true] = ACTIONS(1165), + [sym_false] = ACTIONS(1165), + [anon_sym_NULL] = ACTIONS(1165), + [anon_sym_nullptr] = ACTIONS(1165), [sym_comment] = ACTIONS(3), }, - [229] = { + [262] = { [sym_identifier] = ACTIONS(1169), [aux_sym_preproc_include_token1] = ACTIONS(1169), [aux_sym_preproc_def_token1] = ACTIONS(1169), @@ -41087,115 +46085,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___read_mostly] = ACTIONS(1169), [anon_sym___must_hold] = ACTIONS(1169), [anon_sym___ro_after_init] = ACTIONS(1169), - [anon_sym___init] = ACTIONS(1169), + [anon_sym___noreturn] = ACTIONS(1169), + [anon_sym___cold] = ACTIONS(1169), [anon_sym_LBRACK_LBRACK] = ACTIONS(1171), [anon_sym___declspec] = ACTIONS(1169), - [anon_sym___cdecl] = ACTIONS(1169), - [anon_sym___clrcall] = ACTIONS(1169), - [anon_sym___stdcall] = ACTIONS(1169), - [anon_sym___fastcall] = ACTIONS(1169), - [anon_sym___thiscall] = ACTIONS(1169), - [anon_sym___vectorcall] = ACTIONS(1169), - [anon_sym_LBRACE] = ACTIONS(1171), - [anon_sym_signed] = ACTIONS(1169), - [anon_sym_unsigned] = ACTIONS(1169), - [anon_sym_long] = ACTIONS(1169), - [anon_sym_short] = ACTIONS(1169), - [anon_sym_static] = ACTIONS(1169), - [anon_sym_auto] = ACTIONS(1169), - [anon_sym_register] = ACTIONS(1169), - [anon_sym_inline] = ACTIONS(1169), - [anon_sym___inline] = ACTIONS(1169), - [anon_sym___inline__] = ACTIONS(1169), - [anon_sym___forceinline] = ACTIONS(1169), - [anon_sym_thread_local] = ACTIONS(1169), - [anon_sym___thread] = ACTIONS(1169), - [anon_sym_const] = ACTIONS(1169), - [anon_sym_constexpr] = ACTIONS(1169), - [anon_sym_volatile] = ACTIONS(1169), - [anon_sym_restrict] = ACTIONS(1169), - [anon_sym___restrict__] = ACTIONS(1169), - [anon_sym__Atomic] = ACTIONS(1169), - [anon_sym__Noreturn] = ACTIONS(1169), - [anon_sym_noreturn] = ACTIONS(1169), - [anon_sym_alignas] = ACTIONS(1169), - [anon_sym__Alignas] = ACTIONS(1169), - [sym_primitive_type] = ACTIONS(1169), - [anon_sym_enum] = ACTIONS(1169), - [anon_sym_struct] = ACTIONS(1169), - [anon_sym_union] = ACTIONS(1169), - [anon_sym_if] = ACTIONS(1169), - [anon_sym_else] = ACTIONS(1169), - [anon_sym_switch] = ACTIONS(1169), - [anon_sym_case] = ACTIONS(1169), - [anon_sym_default] = ACTIONS(1169), - [anon_sym_while] = ACTIONS(1169), - [anon_sym_do] = ACTIONS(1169), - [anon_sym_for] = ACTIONS(1169), - [anon_sym_return] = ACTIONS(1169), - [anon_sym_break] = ACTIONS(1169), - [anon_sym_continue] = ACTIONS(1169), - [anon_sym_goto] = ACTIONS(1169), - [anon_sym___try] = ACTIONS(1169), - [anon_sym___leave] = ACTIONS(1169), - [anon_sym_DASH_DASH] = ACTIONS(1171), - [anon_sym_PLUS_PLUS] = ACTIONS(1171), - [anon_sym_sizeof] = ACTIONS(1169), - [anon_sym___alignof__] = ACTIONS(1169), - [anon_sym___alignof] = ACTIONS(1169), - [anon_sym__alignof] = ACTIONS(1169), - [anon_sym_alignof] = ACTIONS(1169), - [anon_sym__Alignof] = ACTIONS(1169), - [anon_sym_offsetof] = ACTIONS(1169), - [anon_sym__Generic] = ACTIONS(1169), - [anon_sym_asm] = ACTIONS(1169), - [anon_sym___asm__] = ACTIONS(1169), - [sym_number_literal] = ACTIONS(1171), - [anon_sym_L_SQUOTE] = ACTIONS(1171), - [anon_sym_u_SQUOTE] = ACTIONS(1171), - [anon_sym_U_SQUOTE] = ACTIONS(1171), - [anon_sym_u8_SQUOTE] = ACTIONS(1171), - [anon_sym_SQUOTE] = ACTIONS(1171), - [anon_sym_L_DQUOTE] = ACTIONS(1171), - [anon_sym_u_DQUOTE] = ACTIONS(1171), - [anon_sym_U_DQUOTE] = ACTIONS(1171), - [anon_sym_u8_DQUOTE] = ACTIONS(1171), - [anon_sym_DQUOTE] = ACTIONS(1171), - [sym_true] = ACTIONS(1169), - [sym_false] = ACTIONS(1169), - [anon_sym_NULL] = ACTIONS(1169), - [anon_sym_nullptr] = ACTIONS(1169), - [sym_comment] = ACTIONS(3), - }, - [230] = { - [sym_identifier] = ACTIONS(1169), - [aux_sym_preproc_include_token1] = ACTIONS(1169), - [aux_sym_preproc_def_token1] = ACTIONS(1169), - [aux_sym_preproc_if_token1] = ACTIONS(1169), - [aux_sym_preproc_if_token2] = ACTIONS(1169), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1169), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1169), - [sym_preproc_directive] = ACTIONS(1169), - [anon_sym_LPAREN2] = ACTIONS(1171), - [anon_sym_BANG] = ACTIONS(1171), - [anon_sym_TILDE] = ACTIONS(1171), - [anon_sym_DASH] = ACTIONS(1169), - [anon_sym_PLUS] = ACTIONS(1169), - [anon_sym_STAR] = ACTIONS(1171), - [anon_sym_AMP] = ACTIONS(1171), - [anon_sym_SEMI] = ACTIONS(1171), - [anon_sym___extension__] = ACTIONS(1169), - [anon_sym_typedef] = ACTIONS(1169), - [anon_sym_extern] = ACTIONS(1169), - [anon_sym___attribute__] = ACTIONS(1169), - [anon_sym___scanf] = ACTIONS(1169), - [anon_sym___printf] = ACTIONS(1169), - [anon_sym___read_mostly] = ACTIONS(1169), - [anon_sym___must_hold] = ACTIONS(1169), - [anon_sym___ro_after_init] = ACTIONS(1169), [anon_sym___init] = ACTIONS(1169), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1171), - [anon_sym___declspec] = ACTIONS(1169), + [anon_sym___exit] = ACTIONS(1169), [anon_sym___cdecl] = ACTIONS(1169), [anon_sym___clrcall] = ACTIONS(1169), [anon_sym___stdcall] = ACTIONS(1169), @@ -41273,431 +46168,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1169), [sym_comment] = ACTIONS(3), }, - [231] = { - [sym_identifier] = ACTIONS(1157), - [aux_sym_preproc_include_token1] = ACTIONS(1157), - [aux_sym_preproc_def_token1] = ACTIONS(1157), - [aux_sym_preproc_if_token1] = ACTIONS(1157), - [aux_sym_preproc_if_token2] = ACTIONS(1157), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1157), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1157), - [sym_preproc_directive] = ACTIONS(1157), - [anon_sym_LPAREN2] = ACTIONS(1159), - [anon_sym_BANG] = ACTIONS(1159), - [anon_sym_TILDE] = ACTIONS(1159), - [anon_sym_DASH] = ACTIONS(1157), - [anon_sym_PLUS] = ACTIONS(1157), - [anon_sym_STAR] = ACTIONS(1159), - [anon_sym_AMP] = ACTIONS(1159), - [anon_sym_SEMI] = ACTIONS(1159), - [anon_sym___extension__] = ACTIONS(1157), - [anon_sym_typedef] = ACTIONS(1157), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym___attribute__] = ACTIONS(1157), - [anon_sym___scanf] = ACTIONS(1157), - [anon_sym___printf] = ACTIONS(1157), - [anon_sym___read_mostly] = ACTIONS(1157), - [anon_sym___must_hold] = ACTIONS(1157), - [anon_sym___ro_after_init] = ACTIONS(1157), - [anon_sym___init] = ACTIONS(1157), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1159), - [anon_sym___declspec] = ACTIONS(1157), - [anon_sym___cdecl] = ACTIONS(1157), - [anon_sym___clrcall] = ACTIONS(1157), - [anon_sym___stdcall] = ACTIONS(1157), - [anon_sym___fastcall] = ACTIONS(1157), - [anon_sym___thiscall] = ACTIONS(1157), - [anon_sym___vectorcall] = ACTIONS(1157), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_signed] = ACTIONS(1157), - [anon_sym_unsigned] = ACTIONS(1157), - [anon_sym_long] = ACTIONS(1157), - [anon_sym_short] = ACTIONS(1157), - [anon_sym_static] = ACTIONS(1157), - [anon_sym_auto] = ACTIONS(1157), - [anon_sym_register] = ACTIONS(1157), - [anon_sym_inline] = ACTIONS(1157), - [anon_sym___inline] = ACTIONS(1157), - [anon_sym___inline__] = ACTIONS(1157), - [anon_sym___forceinline] = ACTIONS(1157), - [anon_sym_thread_local] = ACTIONS(1157), - [anon_sym___thread] = ACTIONS(1157), - [anon_sym_const] = ACTIONS(1157), - [anon_sym_constexpr] = ACTIONS(1157), - [anon_sym_volatile] = ACTIONS(1157), - [anon_sym_restrict] = ACTIONS(1157), - [anon_sym___restrict__] = ACTIONS(1157), - [anon_sym__Atomic] = ACTIONS(1157), - [anon_sym__Noreturn] = ACTIONS(1157), - [anon_sym_noreturn] = ACTIONS(1157), - [anon_sym_alignas] = ACTIONS(1157), - [anon_sym__Alignas] = ACTIONS(1157), - [sym_primitive_type] = ACTIONS(1157), - [anon_sym_enum] = ACTIONS(1157), - [anon_sym_struct] = ACTIONS(1157), - [anon_sym_union] = ACTIONS(1157), - [anon_sym_if] = ACTIONS(1157), - [anon_sym_else] = ACTIONS(1157), - [anon_sym_switch] = ACTIONS(1157), - [anon_sym_case] = ACTIONS(1157), - [anon_sym_default] = ACTIONS(1157), - [anon_sym_while] = ACTIONS(1157), - [anon_sym_do] = ACTIONS(1157), - [anon_sym_for] = ACTIONS(1157), - [anon_sym_return] = ACTIONS(1157), - [anon_sym_break] = ACTIONS(1157), - [anon_sym_continue] = ACTIONS(1157), - [anon_sym_goto] = ACTIONS(1157), - [anon_sym___try] = ACTIONS(1157), - [anon_sym___leave] = ACTIONS(1157), - [anon_sym_DASH_DASH] = ACTIONS(1159), - [anon_sym_PLUS_PLUS] = ACTIONS(1159), - [anon_sym_sizeof] = ACTIONS(1157), - [anon_sym___alignof__] = ACTIONS(1157), - [anon_sym___alignof] = ACTIONS(1157), - [anon_sym__alignof] = ACTIONS(1157), - [anon_sym_alignof] = ACTIONS(1157), - [anon_sym__Alignof] = ACTIONS(1157), - [anon_sym_offsetof] = ACTIONS(1157), - [anon_sym__Generic] = ACTIONS(1157), - [anon_sym_asm] = ACTIONS(1157), - [anon_sym___asm__] = ACTIONS(1157), - [sym_number_literal] = ACTIONS(1159), - [anon_sym_L_SQUOTE] = ACTIONS(1159), - [anon_sym_u_SQUOTE] = ACTIONS(1159), - [anon_sym_U_SQUOTE] = ACTIONS(1159), - [anon_sym_u8_SQUOTE] = ACTIONS(1159), - [anon_sym_SQUOTE] = ACTIONS(1159), - [anon_sym_L_DQUOTE] = ACTIONS(1159), - [anon_sym_u_DQUOTE] = ACTIONS(1159), - [anon_sym_U_DQUOTE] = ACTIONS(1159), - [anon_sym_u8_DQUOTE] = ACTIONS(1159), - [anon_sym_DQUOTE] = ACTIONS(1159), - [sym_true] = ACTIONS(1157), - [sym_false] = ACTIONS(1157), - [anon_sym_NULL] = ACTIONS(1157), - [anon_sym_nullptr] = ACTIONS(1157), - [sym_comment] = ACTIONS(3), - }, - [232] = { - [ts_builtin_sym_end] = ACTIONS(1203), - [sym_identifier] = ACTIONS(1201), - [aux_sym_preproc_include_token1] = ACTIONS(1201), - [aux_sym_preproc_def_token1] = ACTIONS(1201), - [aux_sym_preproc_if_token1] = ACTIONS(1201), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1201), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1201), - [sym_preproc_directive] = ACTIONS(1201), - [anon_sym_LPAREN2] = ACTIONS(1203), - [anon_sym_BANG] = ACTIONS(1203), - [anon_sym_TILDE] = ACTIONS(1203), - [anon_sym_DASH] = ACTIONS(1201), - [anon_sym_PLUS] = ACTIONS(1201), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_AMP] = ACTIONS(1203), - [anon_sym_SEMI] = ACTIONS(1203), - [anon_sym___extension__] = ACTIONS(1201), - [anon_sym_typedef] = ACTIONS(1201), - [anon_sym_extern] = ACTIONS(1201), - [anon_sym___attribute__] = ACTIONS(1201), - [anon_sym___scanf] = ACTIONS(1201), - [anon_sym___printf] = ACTIONS(1201), - [anon_sym___read_mostly] = ACTIONS(1201), - [anon_sym___must_hold] = ACTIONS(1201), - [anon_sym___ro_after_init] = ACTIONS(1201), - [anon_sym___init] = ACTIONS(1201), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1203), - [anon_sym___declspec] = ACTIONS(1201), - [anon_sym___cdecl] = ACTIONS(1201), - [anon_sym___clrcall] = ACTIONS(1201), - [anon_sym___stdcall] = ACTIONS(1201), - [anon_sym___fastcall] = ACTIONS(1201), - [anon_sym___thiscall] = ACTIONS(1201), - [anon_sym___vectorcall] = ACTIONS(1201), - [anon_sym_LBRACE] = ACTIONS(1203), - [anon_sym_signed] = ACTIONS(1201), - [anon_sym_unsigned] = ACTIONS(1201), - [anon_sym_long] = ACTIONS(1201), - [anon_sym_short] = ACTIONS(1201), - [anon_sym_static] = ACTIONS(1201), - [anon_sym_auto] = ACTIONS(1201), - [anon_sym_register] = ACTIONS(1201), - [anon_sym_inline] = ACTIONS(1201), - [anon_sym___inline] = ACTIONS(1201), - [anon_sym___inline__] = ACTIONS(1201), - [anon_sym___forceinline] = ACTIONS(1201), - [anon_sym_thread_local] = ACTIONS(1201), - [anon_sym___thread] = ACTIONS(1201), - [anon_sym_const] = ACTIONS(1201), - [anon_sym_constexpr] = ACTIONS(1201), - [anon_sym_volatile] = ACTIONS(1201), - [anon_sym_restrict] = ACTIONS(1201), - [anon_sym___restrict__] = ACTIONS(1201), - [anon_sym__Atomic] = ACTIONS(1201), - [anon_sym__Noreturn] = ACTIONS(1201), - [anon_sym_noreturn] = ACTIONS(1201), - [anon_sym_alignas] = ACTIONS(1201), - [anon_sym__Alignas] = ACTIONS(1201), - [sym_primitive_type] = ACTIONS(1201), - [anon_sym_enum] = ACTIONS(1201), - [anon_sym_struct] = ACTIONS(1201), - [anon_sym_union] = ACTIONS(1201), - [anon_sym_if] = ACTIONS(1201), - [anon_sym_else] = ACTIONS(1201), - [anon_sym_switch] = ACTIONS(1201), - [anon_sym_case] = ACTIONS(1201), - [anon_sym_default] = ACTIONS(1201), - [anon_sym_while] = ACTIONS(1201), - [anon_sym_do] = ACTIONS(1201), - [anon_sym_for] = ACTIONS(1201), - [anon_sym_return] = ACTIONS(1201), - [anon_sym_break] = ACTIONS(1201), - [anon_sym_continue] = ACTIONS(1201), - [anon_sym_goto] = ACTIONS(1201), - [anon_sym___try] = ACTIONS(1201), - [anon_sym___leave] = ACTIONS(1201), - [anon_sym_DASH_DASH] = ACTIONS(1203), - [anon_sym_PLUS_PLUS] = ACTIONS(1203), - [anon_sym_sizeof] = ACTIONS(1201), - [anon_sym___alignof__] = ACTIONS(1201), - [anon_sym___alignof] = ACTIONS(1201), - [anon_sym__alignof] = ACTIONS(1201), - [anon_sym_alignof] = ACTIONS(1201), - [anon_sym__Alignof] = ACTIONS(1201), - [anon_sym_offsetof] = ACTIONS(1201), - [anon_sym__Generic] = ACTIONS(1201), - [anon_sym_asm] = ACTIONS(1201), - [anon_sym___asm__] = ACTIONS(1201), - [sym_number_literal] = ACTIONS(1203), - [anon_sym_L_SQUOTE] = ACTIONS(1203), - [anon_sym_u_SQUOTE] = ACTIONS(1203), - [anon_sym_U_SQUOTE] = ACTIONS(1203), - [anon_sym_u8_SQUOTE] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1203), - [anon_sym_L_DQUOTE] = ACTIONS(1203), - [anon_sym_u_DQUOTE] = ACTIONS(1203), - [anon_sym_U_DQUOTE] = ACTIONS(1203), - [anon_sym_u8_DQUOTE] = ACTIONS(1203), - [anon_sym_DQUOTE] = ACTIONS(1203), - [sym_true] = ACTIONS(1201), - [sym_false] = ACTIONS(1201), - [anon_sym_NULL] = ACTIONS(1201), - [anon_sym_nullptr] = ACTIONS(1201), - [sym_comment] = ACTIONS(3), - }, - [233] = { - [ts_builtin_sym_end] = ACTIONS(1163), - [sym_identifier] = ACTIONS(1161), - [aux_sym_preproc_include_token1] = ACTIONS(1161), - [aux_sym_preproc_def_token1] = ACTIONS(1161), - [aux_sym_preproc_if_token1] = ACTIONS(1161), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1161), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1161), - [sym_preproc_directive] = ACTIONS(1161), - [anon_sym_LPAREN2] = ACTIONS(1163), - [anon_sym_BANG] = ACTIONS(1163), - [anon_sym_TILDE] = ACTIONS(1163), - [anon_sym_DASH] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1161), - [anon_sym_STAR] = ACTIONS(1163), - [anon_sym_AMP] = ACTIONS(1163), - [anon_sym_SEMI] = ACTIONS(1163), - [anon_sym___extension__] = ACTIONS(1161), - [anon_sym_typedef] = ACTIONS(1161), - [anon_sym_extern] = ACTIONS(1161), - [anon_sym___attribute__] = ACTIONS(1161), - [anon_sym___scanf] = ACTIONS(1161), - [anon_sym___printf] = ACTIONS(1161), - [anon_sym___read_mostly] = ACTIONS(1161), - [anon_sym___must_hold] = ACTIONS(1161), - [anon_sym___ro_after_init] = ACTIONS(1161), - [anon_sym___init] = ACTIONS(1161), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1163), - [anon_sym___declspec] = ACTIONS(1161), - [anon_sym___cdecl] = ACTIONS(1161), - [anon_sym___clrcall] = ACTIONS(1161), - [anon_sym___stdcall] = ACTIONS(1161), - [anon_sym___fastcall] = ACTIONS(1161), - [anon_sym___thiscall] = ACTIONS(1161), - [anon_sym___vectorcall] = ACTIONS(1161), - [anon_sym_LBRACE] = ACTIONS(1163), - [anon_sym_signed] = ACTIONS(1161), - [anon_sym_unsigned] = ACTIONS(1161), - [anon_sym_long] = ACTIONS(1161), - [anon_sym_short] = ACTIONS(1161), - [anon_sym_static] = ACTIONS(1161), - [anon_sym_auto] = ACTIONS(1161), - [anon_sym_register] = ACTIONS(1161), - [anon_sym_inline] = ACTIONS(1161), - [anon_sym___inline] = ACTIONS(1161), - [anon_sym___inline__] = ACTIONS(1161), - [anon_sym___forceinline] = ACTIONS(1161), - [anon_sym_thread_local] = ACTIONS(1161), - [anon_sym___thread] = ACTIONS(1161), - [anon_sym_const] = ACTIONS(1161), - [anon_sym_constexpr] = ACTIONS(1161), - [anon_sym_volatile] = ACTIONS(1161), - [anon_sym_restrict] = ACTIONS(1161), - [anon_sym___restrict__] = ACTIONS(1161), - [anon_sym__Atomic] = ACTIONS(1161), - [anon_sym__Noreturn] = ACTIONS(1161), - [anon_sym_noreturn] = ACTIONS(1161), - [anon_sym_alignas] = ACTIONS(1161), - [anon_sym__Alignas] = ACTIONS(1161), - [sym_primitive_type] = ACTIONS(1161), - [anon_sym_enum] = ACTIONS(1161), - [anon_sym_struct] = ACTIONS(1161), - [anon_sym_union] = ACTIONS(1161), - [anon_sym_if] = ACTIONS(1161), - [anon_sym_else] = ACTIONS(1161), - [anon_sym_switch] = ACTIONS(1161), - [anon_sym_case] = ACTIONS(1161), - [anon_sym_default] = ACTIONS(1161), - [anon_sym_while] = ACTIONS(1161), - [anon_sym_do] = ACTIONS(1161), - [anon_sym_for] = ACTIONS(1161), - [anon_sym_return] = ACTIONS(1161), - [anon_sym_break] = ACTIONS(1161), - [anon_sym_continue] = ACTIONS(1161), - [anon_sym_goto] = ACTIONS(1161), - [anon_sym___try] = ACTIONS(1161), - [anon_sym___leave] = ACTIONS(1161), - [anon_sym_DASH_DASH] = ACTIONS(1163), - [anon_sym_PLUS_PLUS] = ACTIONS(1163), - [anon_sym_sizeof] = ACTIONS(1161), - [anon_sym___alignof__] = ACTIONS(1161), - [anon_sym___alignof] = ACTIONS(1161), - [anon_sym__alignof] = ACTIONS(1161), - [anon_sym_alignof] = ACTIONS(1161), - [anon_sym__Alignof] = ACTIONS(1161), - [anon_sym_offsetof] = ACTIONS(1161), - [anon_sym__Generic] = ACTIONS(1161), - [anon_sym_asm] = ACTIONS(1161), - [anon_sym___asm__] = ACTIONS(1161), - [sym_number_literal] = ACTIONS(1163), - [anon_sym_L_SQUOTE] = ACTIONS(1163), - [anon_sym_u_SQUOTE] = ACTIONS(1163), - [anon_sym_U_SQUOTE] = ACTIONS(1163), - [anon_sym_u8_SQUOTE] = ACTIONS(1163), - [anon_sym_SQUOTE] = ACTIONS(1163), - [anon_sym_L_DQUOTE] = ACTIONS(1163), - [anon_sym_u_DQUOTE] = ACTIONS(1163), - [anon_sym_U_DQUOTE] = ACTIONS(1163), - [anon_sym_u8_DQUOTE] = ACTIONS(1163), - [anon_sym_DQUOTE] = ACTIONS(1163), - [sym_true] = ACTIONS(1161), - [sym_false] = ACTIONS(1161), - [anon_sym_NULL] = ACTIONS(1161), - [anon_sym_nullptr] = ACTIONS(1161), - [sym_comment] = ACTIONS(3), - }, - [234] = { - [ts_builtin_sym_end] = ACTIONS(1151), - [sym_identifier] = ACTIONS(1149), - [aux_sym_preproc_include_token1] = ACTIONS(1149), - [aux_sym_preproc_def_token1] = ACTIONS(1149), - [aux_sym_preproc_if_token1] = ACTIONS(1149), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1149), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1149), - [sym_preproc_directive] = ACTIONS(1149), - [anon_sym_LPAREN2] = ACTIONS(1151), - [anon_sym_BANG] = ACTIONS(1151), - [anon_sym_TILDE] = ACTIONS(1151), - [anon_sym_DASH] = ACTIONS(1149), - [anon_sym_PLUS] = ACTIONS(1149), - [anon_sym_STAR] = ACTIONS(1151), - [anon_sym_AMP] = ACTIONS(1151), - [anon_sym_SEMI] = ACTIONS(1151), - [anon_sym___extension__] = ACTIONS(1149), - [anon_sym_typedef] = ACTIONS(1149), - [anon_sym_extern] = ACTIONS(1149), - [anon_sym___attribute__] = ACTIONS(1149), - [anon_sym___scanf] = ACTIONS(1149), - [anon_sym___printf] = ACTIONS(1149), - [anon_sym___read_mostly] = ACTIONS(1149), - [anon_sym___must_hold] = ACTIONS(1149), - [anon_sym___ro_after_init] = ACTIONS(1149), - [anon_sym___init] = ACTIONS(1149), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1151), - [anon_sym___declspec] = ACTIONS(1149), - [anon_sym___cdecl] = ACTIONS(1149), - [anon_sym___clrcall] = ACTIONS(1149), - [anon_sym___stdcall] = ACTIONS(1149), - [anon_sym___fastcall] = ACTIONS(1149), - [anon_sym___thiscall] = ACTIONS(1149), - [anon_sym___vectorcall] = ACTIONS(1149), - [anon_sym_LBRACE] = ACTIONS(1151), - [anon_sym_signed] = ACTIONS(1149), - [anon_sym_unsigned] = ACTIONS(1149), - [anon_sym_long] = ACTIONS(1149), - [anon_sym_short] = ACTIONS(1149), - [anon_sym_static] = ACTIONS(1149), - [anon_sym_auto] = ACTIONS(1149), - [anon_sym_register] = ACTIONS(1149), - [anon_sym_inline] = ACTIONS(1149), - [anon_sym___inline] = ACTIONS(1149), - [anon_sym___inline__] = ACTIONS(1149), - [anon_sym___forceinline] = ACTIONS(1149), - [anon_sym_thread_local] = ACTIONS(1149), - [anon_sym___thread] = ACTIONS(1149), - [anon_sym_const] = ACTIONS(1149), - [anon_sym_constexpr] = ACTIONS(1149), - [anon_sym_volatile] = ACTIONS(1149), - [anon_sym_restrict] = ACTIONS(1149), - [anon_sym___restrict__] = ACTIONS(1149), - [anon_sym__Atomic] = ACTIONS(1149), - [anon_sym__Noreturn] = ACTIONS(1149), - [anon_sym_noreturn] = ACTIONS(1149), - [anon_sym_alignas] = ACTIONS(1149), - [anon_sym__Alignas] = ACTIONS(1149), - [sym_primitive_type] = ACTIONS(1149), - [anon_sym_enum] = ACTIONS(1149), - [anon_sym_struct] = ACTIONS(1149), - [anon_sym_union] = ACTIONS(1149), - [anon_sym_if] = ACTIONS(1149), - [anon_sym_else] = ACTIONS(1149), - [anon_sym_switch] = ACTIONS(1149), - [anon_sym_case] = ACTIONS(1149), - [anon_sym_default] = ACTIONS(1149), - [anon_sym_while] = ACTIONS(1149), - [anon_sym_do] = ACTIONS(1149), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_return] = ACTIONS(1149), - [anon_sym_break] = ACTIONS(1149), - [anon_sym_continue] = ACTIONS(1149), - [anon_sym_goto] = ACTIONS(1149), - [anon_sym___try] = ACTIONS(1149), - [anon_sym___leave] = ACTIONS(1149), - [anon_sym_DASH_DASH] = ACTIONS(1151), - [anon_sym_PLUS_PLUS] = ACTIONS(1151), - [anon_sym_sizeof] = ACTIONS(1149), - [anon_sym___alignof__] = ACTIONS(1149), - [anon_sym___alignof] = ACTIONS(1149), - [anon_sym__alignof] = ACTIONS(1149), - [anon_sym_alignof] = ACTIONS(1149), - [anon_sym__Alignof] = ACTIONS(1149), - [anon_sym_offsetof] = ACTIONS(1149), - [anon_sym__Generic] = ACTIONS(1149), - [anon_sym_asm] = ACTIONS(1149), - [anon_sym___asm__] = ACTIONS(1149), - [sym_number_literal] = ACTIONS(1151), - [anon_sym_L_SQUOTE] = ACTIONS(1151), - [anon_sym_u_SQUOTE] = ACTIONS(1151), - [anon_sym_U_SQUOTE] = ACTIONS(1151), - [anon_sym_u8_SQUOTE] = ACTIONS(1151), - [anon_sym_SQUOTE] = ACTIONS(1151), - [anon_sym_L_DQUOTE] = ACTIONS(1151), - [anon_sym_u_DQUOTE] = ACTIONS(1151), - [anon_sym_U_DQUOTE] = ACTIONS(1151), - [anon_sym_u8_DQUOTE] = ACTIONS(1151), - [anon_sym_DQUOTE] = ACTIONS(1151), - [sym_true] = ACTIONS(1149), - [sym_false] = ACTIONS(1149), - [anon_sym_NULL] = ACTIONS(1149), - [anon_sym_nullptr] = ACTIONS(1149), - [sym_comment] = ACTIONS(3), - }, - [235] = { + [263] = { [ts_builtin_sym_end] = ACTIONS(1271), [sym_identifier] = ACTIONS(1269), [aux_sym_preproc_include_token1] = ACTIONS(1269), @@ -41723,9 +46194,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___read_mostly] = ACTIONS(1269), [anon_sym___must_hold] = ACTIONS(1269), [anon_sym___ro_after_init] = ACTIONS(1269), - [anon_sym___init] = ACTIONS(1269), + [anon_sym___noreturn] = ACTIONS(1269), + [anon_sym___cold] = ACTIONS(1269), [anon_sym_LBRACK_LBRACK] = ACTIONS(1271), [anon_sym___declspec] = ACTIONS(1269), + [anon_sym___init] = ACTIONS(1269), + [anon_sym___exit] = ACTIONS(1269), [anon_sym___cdecl] = ACTIONS(1269), [anon_sym___clrcall] = ACTIONS(1269), [anon_sym___stdcall] = ACTIONS(1269), @@ -41749,804 +46223,1151 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(1269), [anon_sym_constexpr] = ACTIONS(1269), [anon_sym_volatile] = ACTIONS(1269), - [anon_sym_restrict] = ACTIONS(1269), - [anon_sym___restrict__] = ACTIONS(1269), - [anon_sym__Atomic] = ACTIONS(1269), - [anon_sym__Noreturn] = ACTIONS(1269), - [anon_sym_noreturn] = ACTIONS(1269), - [anon_sym_alignas] = ACTIONS(1269), - [anon_sym__Alignas] = ACTIONS(1269), - [sym_primitive_type] = ACTIONS(1269), - [anon_sym_enum] = ACTIONS(1269), - [anon_sym_struct] = ACTIONS(1269), - [anon_sym_union] = ACTIONS(1269), - [anon_sym_if] = ACTIONS(1269), - [anon_sym_else] = ACTIONS(1269), - [anon_sym_switch] = ACTIONS(1269), - [anon_sym_case] = ACTIONS(1269), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_while] = ACTIONS(1269), - [anon_sym_do] = ACTIONS(1269), - [anon_sym_for] = ACTIONS(1269), - [anon_sym_return] = ACTIONS(1269), - [anon_sym_break] = ACTIONS(1269), - [anon_sym_continue] = ACTIONS(1269), - [anon_sym_goto] = ACTIONS(1269), - [anon_sym___try] = ACTIONS(1269), - [anon_sym___leave] = ACTIONS(1269), - [anon_sym_DASH_DASH] = ACTIONS(1271), - [anon_sym_PLUS_PLUS] = ACTIONS(1271), - [anon_sym_sizeof] = ACTIONS(1269), - [anon_sym___alignof__] = ACTIONS(1269), - [anon_sym___alignof] = ACTIONS(1269), - [anon_sym__alignof] = ACTIONS(1269), - [anon_sym_alignof] = ACTIONS(1269), - [anon_sym__Alignof] = ACTIONS(1269), - [anon_sym_offsetof] = ACTIONS(1269), - [anon_sym__Generic] = ACTIONS(1269), - [anon_sym_asm] = ACTIONS(1269), - [anon_sym___asm__] = ACTIONS(1269), - [sym_number_literal] = ACTIONS(1271), - [anon_sym_L_SQUOTE] = ACTIONS(1271), - [anon_sym_u_SQUOTE] = ACTIONS(1271), - [anon_sym_U_SQUOTE] = ACTIONS(1271), - [anon_sym_u8_SQUOTE] = ACTIONS(1271), - [anon_sym_SQUOTE] = ACTIONS(1271), - [anon_sym_L_DQUOTE] = ACTIONS(1271), - [anon_sym_u_DQUOTE] = ACTIONS(1271), - [anon_sym_U_DQUOTE] = ACTIONS(1271), - [anon_sym_u8_DQUOTE] = ACTIONS(1271), - [anon_sym_DQUOTE] = ACTIONS(1271), - [sym_true] = ACTIONS(1269), - [sym_false] = ACTIONS(1269), - [anon_sym_NULL] = ACTIONS(1269), - [anon_sym_nullptr] = ACTIONS(1269), - [sym_comment] = ACTIONS(3), - }, - [236] = { - [sym_identifier] = ACTIONS(1197), - [aux_sym_preproc_include_token1] = ACTIONS(1197), - [aux_sym_preproc_def_token1] = ACTIONS(1197), - [aux_sym_preproc_if_token1] = ACTIONS(1197), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1197), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1197), - [sym_preproc_directive] = ACTIONS(1197), - [anon_sym_LPAREN2] = ACTIONS(1199), - [anon_sym_BANG] = ACTIONS(1199), - [anon_sym_TILDE] = ACTIONS(1199), - [anon_sym_DASH] = ACTIONS(1197), - [anon_sym_PLUS] = ACTIONS(1197), - [anon_sym_STAR] = ACTIONS(1199), - [anon_sym_AMP] = ACTIONS(1199), - [anon_sym_SEMI] = ACTIONS(1199), - [anon_sym___extension__] = ACTIONS(1197), - [anon_sym_typedef] = ACTIONS(1197), - [anon_sym_extern] = ACTIONS(1197), - [anon_sym___attribute__] = ACTIONS(1197), - [anon_sym___scanf] = ACTIONS(1197), - [anon_sym___printf] = ACTIONS(1197), - [anon_sym___read_mostly] = ACTIONS(1197), - [anon_sym___must_hold] = ACTIONS(1197), - [anon_sym___ro_after_init] = ACTIONS(1197), - [anon_sym___init] = ACTIONS(1197), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1199), - [anon_sym___declspec] = ACTIONS(1197), - [anon_sym___cdecl] = ACTIONS(1197), - [anon_sym___clrcall] = ACTIONS(1197), - [anon_sym___stdcall] = ACTIONS(1197), - [anon_sym___fastcall] = ACTIONS(1197), - [anon_sym___thiscall] = ACTIONS(1197), - [anon_sym___vectorcall] = ACTIONS(1197), - [anon_sym_LBRACE] = ACTIONS(1199), - [anon_sym_RBRACE] = ACTIONS(1199), - [anon_sym_signed] = ACTIONS(1197), - [anon_sym_unsigned] = ACTIONS(1197), - [anon_sym_long] = ACTIONS(1197), - [anon_sym_short] = ACTIONS(1197), - [anon_sym_static] = ACTIONS(1197), - [anon_sym_auto] = ACTIONS(1197), - [anon_sym_register] = ACTIONS(1197), - [anon_sym_inline] = ACTIONS(1197), - [anon_sym___inline] = ACTIONS(1197), - [anon_sym___inline__] = ACTIONS(1197), - [anon_sym___forceinline] = ACTIONS(1197), - [anon_sym_thread_local] = ACTIONS(1197), - [anon_sym___thread] = ACTIONS(1197), - [anon_sym_const] = ACTIONS(1197), - [anon_sym_constexpr] = ACTIONS(1197), - [anon_sym_volatile] = ACTIONS(1197), - [anon_sym_restrict] = ACTIONS(1197), - [anon_sym___restrict__] = ACTIONS(1197), - [anon_sym__Atomic] = ACTIONS(1197), - [anon_sym__Noreturn] = ACTIONS(1197), - [anon_sym_noreturn] = ACTIONS(1197), - [anon_sym_alignas] = ACTIONS(1197), - [anon_sym__Alignas] = ACTIONS(1197), - [sym_primitive_type] = ACTIONS(1197), - [anon_sym_enum] = ACTIONS(1197), - [anon_sym_struct] = ACTIONS(1197), - [anon_sym_union] = ACTIONS(1197), - [anon_sym_if] = ACTIONS(1197), - [anon_sym_else] = ACTIONS(1197), - [anon_sym_switch] = ACTIONS(1197), - [anon_sym_case] = ACTIONS(1197), - [anon_sym_default] = ACTIONS(1197), - [anon_sym_while] = ACTIONS(1197), - [anon_sym_do] = ACTIONS(1197), - [anon_sym_for] = ACTIONS(1197), - [anon_sym_return] = ACTIONS(1197), - [anon_sym_break] = ACTIONS(1197), - [anon_sym_continue] = ACTIONS(1197), - [anon_sym_goto] = ACTIONS(1197), - [anon_sym___try] = ACTIONS(1197), - [anon_sym___leave] = ACTIONS(1197), - [anon_sym_DASH_DASH] = ACTIONS(1199), - [anon_sym_PLUS_PLUS] = ACTIONS(1199), - [anon_sym_sizeof] = ACTIONS(1197), - [anon_sym___alignof__] = ACTIONS(1197), - [anon_sym___alignof] = ACTIONS(1197), - [anon_sym__alignof] = ACTIONS(1197), - [anon_sym_alignof] = ACTIONS(1197), - [anon_sym__Alignof] = ACTIONS(1197), - [anon_sym_offsetof] = ACTIONS(1197), - [anon_sym__Generic] = ACTIONS(1197), - [anon_sym_asm] = ACTIONS(1197), - [anon_sym___asm__] = ACTIONS(1197), - [sym_number_literal] = ACTIONS(1199), - [anon_sym_L_SQUOTE] = ACTIONS(1199), - [anon_sym_u_SQUOTE] = ACTIONS(1199), - [anon_sym_U_SQUOTE] = ACTIONS(1199), - [anon_sym_u8_SQUOTE] = ACTIONS(1199), - [anon_sym_SQUOTE] = ACTIONS(1199), - [anon_sym_L_DQUOTE] = ACTIONS(1199), - [anon_sym_u_DQUOTE] = ACTIONS(1199), - [anon_sym_U_DQUOTE] = ACTIONS(1199), - [anon_sym_u8_DQUOTE] = ACTIONS(1199), - [anon_sym_DQUOTE] = ACTIONS(1199), - [sym_true] = ACTIONS(1197), - [sym_false] = ACTIONS(1197), - [anon_sym_NULL] = ACTIONS(1197), - [anon_sym_nullptr] = ACTIONS(1197), + [anon_sym_restrict] = ACTIONS(1269), + [anon_sym___restrict__] = ACTIONS(1269), + [anon_sym__Atomic] = ACTIONS(1269), + [anon_sym__Noreturn] = ACTIONS(1269), + [anon_sym_noreturn] = ACTIONS(1269), + [anon_sym_alignas] = ACTIONS(1269), + [anon_sym__Alignas] = ACTIONS(1269), + [sym_primitive_type] = ACTIONS(1269), + [anon_sym_enum] = ACTIONS(1269), + [anon_sym_struct] = ACTIONS(1269), + [anon_sym_union] = ACTIONS(1269), + [anon_sym_if] = ACTIONS(1269), + [anon_sym_else] = ACTIONS(1269), + [anon_sym_switch] = ACTIONS(1269), + [anon_sym_case] = ACTIONS(1269), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_while] = ACTIONS(1269), + [anon_sym_do] = ACTIONS(1269), + [anon_sym_for] = ACTIONS(1269), + [anon_sym_return] = ACTIONS(1269), + [anon_sym_break] = ACTIONS(1269), + [anon_sym_continue] = ACTIONS(1269), + [anon_sym_goto] = ACTIONS(1269), + [anon_sym___try] = ACTIONS(1269), + [anon_sym___leave] = ACTIONS(1269), + [anon_sym_DASH_DASH] = ACTIONS(1271), + [anon_sym_PLUS_PLUS] = ACTIONS(1271), + [anon_sym_sizeof] = ACTIONS(1269), + [anon_sym___alignof__] = ACTIONS(1269), + [anon_sym___alignof] = ACTIONS(1269), + [anon_sym__alignof] = ACTIONS(1269), + [anon_sym_alignof] = ACTIONS(1269), + [anon_sym__Alignof] = ACTIONS(1269), + [anon_sym_offsetof] = ACTIONS(1269), + [anon_sym__Generic] = ACTIONS(1269), + [anon_sym_asm] = ACTIONS(1269), + [anon_sym___asm__] = ACTIONS(1269), + [sym_number_literal] = ACTIONS(1271), + [anon_sym_L_SQUOTE] = ACTIONS(1271), + [anon_sym_u_SQUOTE] = ACTIONS(1271), + [anon_sym_U_SQUOTE] = ACTIONS(1271), + [anon_sym_u8_SQUOTE] = ACTIONS(1271), + [anon_sym_SQUOTE] = ACTIONS(1271), + [anon_sym_L_DQUOTE] = ACTIONS(1271), + [anon_sym_u_DQUOTE] = ACTIONS(1271), + [anon_sym_U_DQUOTE] = ACTIONS(1271), + [anon_sym_u8_DQUOTE] = ACTIONS(1271), + [anon_sym_DQUOTE] = ACTIONS(1271), + [sym_true] = ACTIONS(1269), + [sym_false] = ACTIONS(1269), + [anon_sym_NULL] = ACTIONS(1269), + [anon_sym_nullptr] = ACTIONS(1269), [sym_comment] = ACTIONS(3), }, - [237] = { - [ts_builtin_sym_end] = ACTIONS(1267), - [sym_identifier] = ACTIONS(1265), - [aux_sym_preproc_include_token1] = ACTIONS(1265), - [aux_sym_preproc_def_token1] = ACTIONS(1265), - [aux_sym_preproc_if_token1] = ACTIONS(1265), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1265), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1265), - [sym_preproc_directive] = ACTIONS(1265), - [anon_sym_LPAREN2] = ACTIONS(1267), - [anon_sym_BANG] = ACTIONS(1267), - [anon_sym_TILDE] = ACTIONS(1267), - [anon_sym_DASH] = ACTIONS(1265), - [anon_sym_PLUS] = ACTIONS(1265), - [anon_sym_STAR] = ACTIONS(1267), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_SEMI] = ACTIONS(1267), - [anon_sym___extension__] = ACTIONS(1265), - [anon_sym_typedef] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym___attribute__] = ACTIONS(1265), - [anon_sym___scanf] = ACTIONS(1265), - [anon_sym___printf] = ACTIONS(1265), - [anon_sym___read_mostly] = ACTIONS(1265), - [anon_sym___must_hold] = ACTIONS(1265), - [anon_sym___ro_after_init] = ACTIONS(1265), - [anon_sym___init] = ACTIONS(1265), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1267), - [anon_sym___declspec] = ACTIONS(1265), - [anon_sym___cdecl] = ACTIONS(1265), - [anon_sym___clrcall] = ACTIONS(1265), - [anon_sym___stdcall] = ACTIONS(1265), - [anon_sym___fastcall] = ACTIONS(1265), - [anon_sym___thiscall] = ACTIONS(1265), - [anon_sym___vectorcall] = ACTIONS(1265), - [anon_sym_LBRACE] = ACTIONS(1267), - [anon_sym_signed] = ACTIONS(1265), - [anon_sym_unsigned] = ACTIONS(1265), - [anon_sym_long] = ACTIONS(1265), - [anon_sym_short] = ACTIONS(1265), - [anon_sym_static] = ACTIONS(1265), - [anon_sym_auto] = ACTIONS(1265), - [anon_sym_register] = ACTIONS(1265), - [anon_sym_inline] = ACTIONS(1265), - [anon_sym___inline] = ACTIONS(1265), - [anon_sym___inline__] = ACTIONS(1265), - [anon_sym___forceinline] = ACTIONS(1265), - [anon_sym_thread_local] = ACTIONS(1265), - [anon_sym___thread] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [anon_sym_constexpr] = ACTIONS(1265), - [anon_sym_volatile] = ACTIONS(1265), - [anon_sym_restrict] = ACTIONS(1265), - [anon_sym___restrict__] = ACTIONS(1265), - [anon_sym__Atomic] = ACTIONS(1265), - [anon_sym__Noreturn] = ACTIONS(1265), - [anon_sym_noreturn] = ACTIONS(1265), - [anon_sym_alignas] = ACTIONS(1265), - [anon_sym__Alignas] = ACTIONS(1265), - [sym_primitive_type] = ACTIONS(1265), - [anon_sym_enum] = ACTIONS(1265), - [anon_sym_struct] = ACTIONS(1265), - [anon_sym_union] = ACTIONS(1265), - [anon_sym_if] = ACTIONS(1265), - [anon_sym_else] = ACTIONS(1265), - [anon_sym_switch] = ACTIONS(1265), - [anon_sym_case] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_while] = ACTIONS(1265), - [anon_sym_do] = ACTIONS(1265), - [anon_sym_for] = ACTIONS(1265), - [anon_sym_return] = ACTIONS(1265), - [anon_sym_break] = ACTIONS(1265), - [anon_sym_continue] = ACTIONS(1265), - [anon_sym_goto] = ACTIONS(1265), - [anon_sym___try] = ACTIONS(1265), - [anon_sym___leave] = ACTIONS(1265), - [anon_sym_DASH_DASH] = ACTIONS(1267), - [anon_sym_PLUS_PLUS] = ACTIONS(1267), - [anon_sym_sizeof] = ACTIONS(1265), - [anon_sym___alignof__] = ACTIONS(1265), - [anon_sym___alignof] = ACTIONS(1265), - [anon_sym__alignof] = ACTIONS(1265), - [anon_sym_alignof] = ACTIONS(1265), - [anon_sym__Alignof] = ACTIONS(1265), - [anon_sym_offsetof] = ACTIONS(1265), - [anon_sym__Generic] = ACTIONS(1265), - [anon_sym_asm] = ACTIONS(1265), - [anon_sym___asm__] = ACTIONS(1265), - [sym_number_literal] = ACTIONS(1267), - [anon_sym_L_SQUOTE] = ACTIONS(1267), - [anon_sym_u_SQUOTE] = ACTIONS(1267), - [anon_sym_U_SQUOTE] = ACTIONS(1267), - [anon_sym_u8_SQUOTE] = ACTIONS(1267), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_L_DQUOTE] = ACTIONS(1267), - [anon_sym_u_DQUOTE] = ACTIONS(1267), - [anon_sym_U_DQUOTE] = ACTIONS(1267), - [anon_sym_u8_DQUOTE] = ACTIONS(1267), - [anon_sym_DQUOTE] = ACTIONS(1267), - [sym_true] = ACTIONS(1265), - [sym_false] = ACTIONS(1265), - [anon_sym_NULL] = ACTIONS(1265), - [anon_sym_nullptr] = ACTIONS(1265), + [264] = { + [sym_identifier] = ACTIONS(1281), + [aux_sym_preproc_include_token1] = ACTIONS(1281), + [aux_sym_preproc_def_token1] = ACTIONS(1281), + [aux_sym_preproc_if_token1] = ACTIONS(1281), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1281), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1281), + [sym_preproc_directive] = ACTIONS(1281), + [anon_sym_LPAREN2] = ACTIONS(1283), + [anon_sym_BANG] = ACTIONS(1283), + [anon_sym_TILDE] = ACTIONS(1283), + [anon_sym_DASH] = ACTIONS(1281), + [anon_sym_PLUS] = ACTIONS(1281), + [anon_sym_STAR] = ACTIONS(1283), + [anon_sym_AMP] = ACTIONS(1283), + [anon_sym_SEMI] = ACTIONS(1283), + [anon_sym___extension__] = ACTIONS(1281), + [anon_sym_typedef] = ACTIONS(1281), + [anon_sym_extern] = ACTIONS(1281), + [anon_sym___attribute__] = ACTIONS(1281), + [anon_sym___scanf] = ACTIONS(1281), + [anon_sym___printf] = ACTIONS(1281), + [anon_sym___read_mostly] = ACTIONS(1281), + [anon_sym___must_hold] = ACTIONS(1281), + [anon_sym___ro_after_init] = ACTIONS(1281), + [anon_sym___noreturn] = ACTIONS(1281), + [anon_sym___cold] = ACTIONS(1281), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1283), + [anon_sym___declspec] = ACTIONS(1281), + [anon_sym___init] = ACTIONS(1281), + [anon_sym___exit] = ACTIONS(1281), + [anon_sym___cdecl] = ACTIONS(1281), + [anon_sym___clrcall] = ACTIONS(1281), + [anon_sym___stdcall] = ACTIONS(1281), + [anon_sym___fastcall] = ACTIONS(1281), + [anon_sym___thiscall] = ACTIONS(1281), + [anon_sym___vectorcall] = ACTIONS(1281), + [anon_sym_LBRACE] = ACTIONS(1283), + [anon_sym_RBRACE] = ACTIONS(1283), + [anon_sym_signed] = ACTIONS(1281), + [anon_sym_unsigned] = ACTIONS(1281), + [anon_sym_long] = ACTIONS(1281), + [anon_sym_short] = ACTIONS(1281), + [anon_sym_static] = ACTIONS(1281), + [anon_sym_auto] = ACTIONS(1281), + [anon_sym_register] = ACTIONS(1281), + [anon_sym_inline] = ACTIONS(1281), + [anon_sym___inline] = ACTIONS(1281), + [anon_sym___inline__] = ACTIONS(1281), + [anon_sym___forceinline] = ACTIONS(1281), + [anon_sym_thread_local] = ACTIONS(1281), + [anon_sym___thread] = ACTIONS(1281), + [anon_sym_const] = ACTIONS(1281), + [anon_sym_constexpr] = ACTIONS(1281), + [anon_sym_volatile] = ACTIONS(1281), + [anon_sym_restrict] = ACTIONS(1281), + [anon_sym___restrict__] = ACTIONS(1281), + [anon_sym__Atomic] = ACTIONS(1281), + [anon_sym__Noreturn] = ACTIONS(1281), + [anon_sym_noreturn] = ACTIONS(1281), + [anon_sym_alignas] = ACTIONS(1281), + [anon_sym__Alignas] = ACTIONS(1281), + [sym_primitive_type] = ACTIONS(1281), + [anon_sym_enum] = ACTIONS(1281), + [anon_sym_struct] = ACTIONS(1281), + [anon_sym_union] = ACTIONS(1281), + [anon_sym_if] = ACTIONS(1281), + [anon_sym_else] = ACTIONS(1281), + [anon_sym_switch] = ACTIONS(1281), + [anon_sym_case] = ACTIONS(1281), + [anon_sym_default] = ACTIONS(1281), + [anon_sym_while] = ACTIONS(1281), + [anon_sym_do] = ACTIONS(1281), + [anon_sym_for] = ACTIONS(1281), + [anon_sym_return] = ACTIONS(1281), + [anon_sym_break] = ACTIONS(1281), + [anon_sym_continue] = ACTIONS(1281), + [anon_sym_goto] = ACTIONS(1281), + [anon_sym___try] = ACTIONS(1281), + [anon_sym___leave] = ACTIONS(1281), + [anon_sym_DASH_DASH] = ACTIONS(1283), + [anon_sym_PLUS_PLUS] = ACTIONS(1283), + [anon_sym_sizeof] = ACTIONS(1281), + [anon_sym___alignof__] = ACTIONS(1281), + [anon_sym___alignof] = ACTIONS(1281), + [anon_sym__alignof] = ACTIONS(1281), + [anon_sym_alignof] = ACTIONS(1281), + [anon_sym__Alignof] = ACTIONS(1281), + [anon_sym_offsetof] = ACTIONS(1281), + [anon_sym__Generic] = ACTIONS(1281), + [anon_sym_asm] = ACTIONS(1281), + [anon_sym___asm__] = ACTIONS(1281), + [sym_number_literal] = ACTIONS(1283), + [anon_sym_L_SQUOTE] = ACTIONS(1283), + [anon_sym_u_SQUOTE] = ACTIONS(1283), + [anon_sym_U_SQUOTE] = ACTIONS(1283), + [anon_sym_u8_SQUOTE] = ACTIONS(1283), + [anon_sym_SQUOTE] = ACTIONS(1283), + [anon_sym_L_DQUOTE] = ACTIONS(1283), + [anon_sym_u_DQUOTE] = ACTIONS(1283), + [anon_sym_U_DQUOTE] = ACTIONS(1283), + [anon_sym_u8_DQUOTE] = ACTIONS(1283), + [anon_sym_DQUOTE] = ACTIONS(1283), + [sym_true] = ACTIONS(1281), + [sym_false] = ACTIONS(1281), + [anon_sym_NULL] = ACTIONS(1281), + [anon_sym_nullptr] = ACTIONS(1281), [sym_comment] = ACTIONS(3), }, - [238] = { - [ts_builtin_sym_end] = ACTIONS(1195), - [sym_identifier] = ACTIONS(1193), - [aux_sym_preproc_include_token1] = ACTIONS(1193), - [aux_sym_preproc_def_token1] = ACTIONS(1193), - [aux_sym_preproc_if_token1] = ACTIONS(1193), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1193), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1193), - [sym_preproc_directive] = ACTIONS(1193), - [anon_sym_LPAREN2] = ACTIONS(1195), - [anon_sym_BANG] = ACTIONS(1195), - [anon_sym_TILDE] = ACTIONS(1195), - [anon_sym_DASH] = ACTIONS(1193), - [anon_sym_PLUS] = ACTIONS(1193), - [anon_sym_STAR] = ACTIONS(1195), - [anon_sym_AMP] = ACTIONS(1195), - [anon_sym_SEMI] = ACTIONS(1195), - [anon_sym___extension__] = ACTIONS(1193), - [anon_sym_typedef] = ACTIONS(1193), - [anon_sym_extern] = ACTIONS(1193), - [anon_sym___attribute__] = ACTIONS(1193), - [anon_sym___scanf] = ACTIONS(1193), - [anon_sym___printf] = ACTIONS(1193), - [anon_sym___read_mostly] = ACTIONS(1193), - [anon_sym___must_hold] = ACTIONS(1193), - [anon_sym___ro_after_init] = ACTIONS(1193), - [anon_sym___init] = ACTIONS(1193), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1195), - [anon_sym___declspec] = ACTIONS(1193), - [anon_sym___cdecl] = ACTIONS(1193), - [anon_sym___clrcall] = ACTIONS(1193), - [anon_sym___stdcall] = ACTIONS(1193), - [anon_sym___fastcall] = ACTIONS(1193), - [anon_sym___thiscall] = ACTIONS(1193), - [anon_sym___vectorcall] = ACTIONS(1193), - [anon_sym_LBRACE] = ACTIONS(1195), - [anon_sym_signed] = ACTIONS(1193), - [anon_sym_unsigned] = ACTIONS(1193), - [anon_sym_long] = ACTIONS(1193), - [anon_sym_short] = ACTIONS(1193), - [anon_sym_static] = ACTIONS(1193), - [anon_sym_auto] = ACTIONS(1193), - [anon_sym_register] = ACTIONS(1193), - [anon_sym_inline] = ACTIONS(1193), - [anon_sym___inline] = ACTIONS(1193), - [anon_sym___inline__] = ACTIONS(1193), - [anon_sym___forceinline] = ACTIONS(1193), - [anon_sym_thread_local] = ACTIONS(1193), - [anon_sym___thread] = ACTIONS(1193), - [anon_sym_const] = ACTIONS(1193), - [anon_sym_constexpr] = ACTIONS(1193), - [anon_sym_volatile] = ACTIONS(1193), - [anon_sym_restrict] = ACTIONS(1193), - [anon_sym___restrict__] = ACTIONS(1193), - [anon_sym__Atomic] = ACTIONS(1193), - [anon_sym__Noreturn] = ACTIONS(1193), - [anon_sym_noreturn] = ACTIONS(1193), - [anon_sym_alignas] = ACTIONS(1193), - [anon_sym__Alignas] = ACTIONS(1193), - [sym_primitive_type] = ACTIONS(1193), - [anon_sym_enum] = ACTIONS(1193), - [anon_sym_struct] = ACTIONS(1193), - [anon_sym_union] = ACTIONS(1193), - [anon_sym_if] = ACTIONS(1193), - [anon_sym_else] = ACTIONS(1193), - [anon_sym_switch] = ACTIONS(1193), - [anon_sym_case] = ACTIONS(1193), - [anon_sym_default] = ACTIONS(1193), - [anon_sym_while] = ACTIONS(1193), - [anon_sym_do] = ACTIONS(1193), - [anon_sym_for] = ACTIONS(1193), - [anon_sym_return] = ACTIONS(1193), - [anon_sym_break] = ACTIONS(1193), - [anon_sym_continue] = ACTIONS(1193), - [anon_sym_goto] = ACTIONS(1193), - [anon_sym___try] = ACTIONS(1193), - [anon_sym___leave] = ACTIONS(1193), - [anon_sym_DASH_DASH] = ACTIONS(1195), - [anon_sym_PLUS_PLUS] = ACTIONS(1195), - [anon_sym_sizeof] = ACTIONS(1193), - [anon_sym___alignof__] = ACTIONS(1193), - [anon_sym___alignof] = ACTIONS(1193), - [anon_sym__alignof] = ACTIONS(1193), - [anon_sym_alignof] = ACTIONS(1193), - [anon_sym__Alignof] = ACTIONS(1193), - [anon_sym_offsetof] = ACTIONS(1193), - [anon_sym__Generic] = ACTIONS(1193), - [anon_sym_asm] = ACTIONS(1193), - [anon_sym___asm__] = ACTIONS(1193), - [sym_number_literal] = ACTIONS(1195), - [anon_sym_L_SQUOTE] = ACTIONS(1195), - [anon_sym_u_SQUOTE] = ACTIONS(1195), - [anon_sym_U_SQUOTE] = ACTIONS(1195), - [anon_sym_u8_SQUOTE] = ACTIONS(1195), - [anon_sym_SQUOTE] = ACTIONS(1195), - [anon_sym_L_DQUOTE] = ACTIONS(1195), - [anon_sym_u_DQUOTE] = ACTIONS(1195), - [anon_sym_U_DQUOTE] = ACTIONS(1195), - [anon_sym_u8_DQUOTE] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1195), - [sym_true] = ACTIONS(1193), - [sym_false] = ACTIONS(1193), - [anon_sym_NULL] = ACTIONS(1193), - [anon_sym_nullptr] = ACTIONS(1193), + [265] = { + [sym_identifier] = ACTIONS(1285), + [aux_sym_preproc_include_token1] = ACTIONS(1285), + [aux_sym_preproc_def_token1] = ACTIONS(1285), + [aux_sym_preproc_if_token1] = ACTIONS(1285), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1285), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1285), + [sym_preproc_directive] = ACTIONS(1285), + [anon_sym_LPAREN2] = ACTIONS(1287), + [anon_sym_BANG] = ACTIONS(1287), + [anon_sym_TILDE] = ACTIONS(1287), + [anon_sym_DASH] = ACTIONS(1285), + [anon_sym_PLUS] = ACTIONS(1285), + [anon_sym_STAR] = ACTIONS(1287), + [anon_sym_AMP] = ACTIONS(1287), + [anon_sym_SEMI] = ACTIONS(1287), + [anon_sym___extension__] = ACTIONS(1285), + [anon_sym_typedef] = ACTIONS(1285), + [anon_sym_extern] = ACTIONS(1285), + [anon_sym___attribute__] = ACTIONS(1285), + [anon_sym___scanf] = ACTIONS(1285), + [anon_sym___printf] = ACTIONS(1285), + [anon_sym___read_mostly] = ACTIONS(1285), + [anon_sym___must_hold] = ACTIONS(1285), + [anon_sym___ro_after_init] = ACTIONS(1285), + [anon_sym___noreturn] = ACTIONS(1285), + [anon_sym___cold] = ACTIONS(1285), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1287), + [anon_sym___declspec] = ACTIONS(1285), + [anon_sym___init] = ACTIONS(1285), + [anon_sym___exit] = ACTIONS(1285), + [anon_sym___cdecl] = ACTIONS(1285), + [anon_sym___clrcall] = ACTIONS(1285), + [anon_sym___stdcall] = ACTIONS(1285), + [anon_sym___fastcall] = ACTIONS(1285), + [anon_sym___thiscall] = ACTIONS(1285), + [anon_sym___vectorcall] = ACTIONS(1285), + [anon_sym_LBRACE] = ACTIONS(1287), + [anon_sym_RBRACE] = ACTIONS(1287), + [anon_sym_signed] = ACTIONS(1285), + [anon_sym_unsigned] = ACTIONS(1285), + [anon_sym_long] = ACTIONS(1285), + [anon_sym_short] = ACTIONS(1285), + [anon_sym_static] = ACTIONS(1285), + [anon_sym_auto] = ACTIONS(1285), + [anon_sym_register] = ACTIONS(1285), + [anon_sym_inline] = ACTIONS(1285), + [anon_sym___inline] = ACTIONS(1285), + [anon_sym___inline__] = ACTIONS(1285), + [anon_sym___forceinline] = ACTIONS(1285), + [anon_sym_thread_local] = ACTIONS(1285), + [anon_sym___thread] = ACTIONS(1285), + [anon_sym_const] = ACTIONS(1285), + [anon_sym_constexpr] = ACTIONS(1285), + [anon_sym_volatile] = ACTIONS(1285), + [anon_sym_restrict] = ACTIONS(1285), + [anon_sym___restrict__] = ACTIONS(1285), + [anon_sym__Atomic] = ACTIONS(1285), + [anon_sym__Noreturn] = ACTIONS(1285), + [anon_sym_noreturn] = ACTIONS(1285), + [anon_sym_alignas] = ACTIONS(1285), + [anon_sym__Alignas] = ACTIONS(1285), + [sym_primitive_type] = ACTIONS(1285), + [anon_sym_enum] = ACTIONS(1285), + [anon_sym_struct] = ACTIONS(1285), + [anon_sym_union] = ACTIONS(1285), + [anon_sym_if] = ACTIONS(1285), + [anon_sym_else] = ACTIONS(1285), + [anon_sym_switch] = ACTIONS(1285), + [anon_sym_case] = ACTIONS(1285), + [anon_sym_default] = ACTIONS(1285), + [anon_sym_while] = ACTIONS(1285), + [anon_sym_do] = ACTIONS(1285), + [anon_sym_for] = ACTIONS(1285), + [anon_sym_return] = ACTIONS(1285), + [anon_sym_break] = ACTIONS(1285), + [anon_sym_continue] = ACTIONS(1285), + [anon_sym_goto] = ACTIONS(1285), + [anon_sym___try] = ACTIONS(1285), + [anon_sym___leave] = ACTIONS(1285), + [anon_sym_DASH_DASH] = ACTIONS(1287), + [anon_sym_PLUS_PLUS] = ACTIONS(1287), + [anon_sym_sizeof] = ACTIONS(1285), + [anon_sym___alignof__] = ACTIONS(1285), + [anon_sym___alignof] = ACTIONS(1285), + [anon_sym__alignof] = ACTIONS(1285), + [anon_sym_alignof] = ACTIONS(1285), + [anon_sym__Alignof] = ACTIONS(1285), + [anon_sym_offsetof] = ACTIONS(1285), + [anon_sym__Generic] = ACTIONS(1285), + [anon_sym_asm] = ACTIONS(1285), + [anon_sym___asm__] = ACTIONS(1285), + [sym_number_literal] = ACTIONS(1287), + [anon_sym_L_SQUOTE] = ACTIONS(1287), + [anon_sym_u_SQUOTE] = ACTIONS(1287), + [anon_sym_U_SQUOTE] = ACTIONS(1287), + [anon_sym_u8_SQUOTE] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1287), + [anon_sym_L_DQUOTE] = ACTIONS(1287), + [anon_sym_u_DQUOTE] = ACTIONS(1287), + [anon_sym_U_DQUOTE] = ACTIONS(1287), + [anon_sym_u8_DQUOTE] = ACTIONS(1287), + [anon_sym_DQUOTE] = ACTIONS(1287), + [sym_true] = ACTIONS(1285), + [sym_false] = ACTIONS(1285), + [anon_sym_NULL] = ACTIONS(1285), + [anon_sym_nullptr] = ACTIONS(1285), + [sym_comment] = ACTIONS(3), + }, + [266] = { + [sym_identifier] = ACTIONS(1261), + [aux_sym_preproc_include_token1] = ACTIONS(1261), + [aux_sym_preproc_def_token1] = ACTIONS(1261), + [aux_sym_preproc_if_token1] = ACTIONS(1261), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1261), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1261), + [sym_preproc_directive] = ACTIONS(1261), + [anon_sym_LPAREN2] = ACTIONS(1263), + [anon_sym_BANG] = ACTIONS(1263), + [anon_sym_TILDE] = ACTIONS(1263), + [anon_sym_DASH] = ACTIONS(1261), + [anon_sym_PLUS] = ACTIONS(1261), + [anon_sym_STAR] = ACTIONS(1263), + [anon_sym_AMP] = ACTIONS(1263), + [anon_sym_SEMI] = ACTIONS(1263), + [anon_sym___extension__] = ACTIONS(1261), + [anon_sym_typedef] = ACTIONS(1261), + [anon_sym_extern] = ACTIONS(1261), + [anon_sym___attribute__] = ACTIONS(1261), + [anon_sym___scanf] = ACTIONS(1261), + [anon_sym___printf] = ACTIONS(1261), + [anon_sym___read_mostly] = ACTIONS(1261), + [anon_sym___must_hold] = ACTIONS(1261), + [anon_sym___ro_after_init] = ACTIONS(1261), + [anon_sym___noreturn] = ACTIONS(1261), + [anon_sym___cold] = ACTIONS(1261), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1263), + [anon_sym___declspec] = ACTIONS(1261), + [anon_sym___init] = ACTIONS(1261), + [anon_sym___exit] = ACTIONS(1261), + [anon_sym___cdecl] = ACTIONS(1261), + [anon_sym___clrcall] = ACTIONS(1261), + [anon_sym___stdcall] = ACTIONS(1261), + [anon_sym___fastcall] = ACTIONS(1261), + [anon_sym___thiscall] = ACTIONS(1261), + [anon_sym___vectorcall] = ACTIONS(1261), + [anon_sym_LBRACE] = ACTIONS(1263), + [anon_sym_RBRACE] = ACTIONS(1263), + [anon_sym_signed] = ACTIONS(1261), + [anon_sym_unsigned] = ACTIONS(1261), + [anon_sym_long] = ACTIONS(1261), + [anon_sym_short] = ACTIONS(1261), + [anon_sym_static] = ACTIONS(1261), + [anon_sym_auto] = ACTIONS(1261), + [anon_sym_register] = ACTIONS(1261), + [anon_sym_inline] = ACTIONS(1261), + [anon_sym___inline] = ACTIONS(1261), + [anon_sym___inline__] = ACTIONS(1261), + [anon_sym___forceinline] = ACTIONS(1261), + [anon_sym_thread_local] = ACTIONS(1261), + [anon_sym___thread] = ACTIONS(1261), + [anon_sym_const] = ACTIONS(1261), + [anon_sym_constexpr] = ACTIONS(1261), + [anon_sym_volatile] = ACTIONS(1261), + [anon_sym_restrict] = ACTIONS(1261), + [anon_sym___restrict__] = ACTIONS(1261), + [anon_sym__Atomic] = ACTIONS(1261), + [anon_sym__Noreturn] = ACTIONS(1261), + [anon_sym_noreturn] = ACTIONS(1261), + [anon_sym_alignas] = ACTIONS(1261), + [anon_sym__Alignas] = ACTIONS(1261), + [sym_primitive_type] = ACTIONS(1261), + [anon_sym_enum] = ACTIONS(1261), + [anon_sym_struct] = ACTIONS(1261), + [anon_sym_union] = ACTIONS(1261), + [anon_sym_if] = ACTIONS(1261), + [anon_sym_else] = ACTIONS(1261), + [anon_sym_switch] = ACTIONS(1261), + [anon_sym_case] = ACTIONS(1261), + [anon_sym_default] = ACTIONS(1261), + [anon_sym_while] = ACTIONS(1261), + [anon_sym_do] = ACTIONS(1261), + [anon_sym_for] = ACTIONS(1261), + [anon_sym_return] = ACTIONS(1261), + [anon_sym_break] = ACTIONS(1261), + [anon_sym_continue] = ACTIONS(1261), + [anon_sym_goto] = ACTIONS(1261), + [anon_sym___try] = ACTIONS(1261), + [anon_sym___leave] = ACTIONS(1261), + [anon_sym_DASH_DASH] = ACTIONS(1263), + [anon_sym_PLUS_PLUS] = ACTIONS(1263), + [anon_sym_sizeof] = ACTIONS(1261), + [anon_sym___alignof__] = ACTIONS(1261), + [anon_sym___alignof] = ACTIONS(1261), + [anon_sym__alignof] = ACTIONS(1261), + [anon_sym_alignof] = ACTIONS(1261), + [anon_sym__Alignof] = ACTIONS(1261), + [anon_sym_offsetof] = ACTIONS(1261), + [anon_sym__Generic] = ACTIONS(1261), + [anon_sym_asm] = ACTIONS(1261), + [anon_sym___asm__] = ACTIONS(1261), + [sym_number_literal] = ACTIONS(1263), + [anon_sym_L_SQUOTE] = ACTIONS(1263), + [anon_sym_u_SQUOTE] = ACTIONS(1263), + [anon_sym_U_SQUOTE] = ACTIONS(1263), + [anon_sym_u8_SQUOTE] = ACTIONS(1263), + [anon_sym_SQUOTE] = ACTIONS(1263), + [anon_sym_L_DQUOTE] = ACTIONS(1263), + [anon_sym_u_DQUOTE] = ACTIONS(1263), + [anon_sym_U_DQUOTE] = ACTIONS(1263), + [anon_sym_u8_DQUOTE] = ACTIONS(1263), + [anon_sym_DQUOTE] = ACTIONS(1263), + [sym_true] = ACTIONS(1261), + [sym_false] = ACTIONS(1261), + [anon_sym_NULL] = ACTIONS(1261), + [anon_sym_nullptr] = ACTIONS(1261), [sym_comment] = ACTIONS(3), }, - [239] = { - [ts_builtin_sym_end] = ACTIONS(1219), - [sym_identifier] = ACTIONS(1217), - [aux_sym_preproc_include_token1] = ACTIONS(1217), - [aux_sym_preproc_def_token1] = ACTIONS(1217), - [aux_sym_preproc_if_token1] = ACTIONS(1217), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1217), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1217), - [sym_preproc_directive] = ACTIONS(1217), - [anon_sym_LPAREN2] = ACTIONS(1219), - [anon_sym_BANG] = ACTIONS(1219), - [anon_sym_TILDE] = ACTIONS(1219), - [anon_sym_DASH] = ACTIONS(1217), - [anon_sym_PLUS] = ACTIONS(1217), - [anon_sym_STAR] = ACTIONS(1219), - [anon_sym_AMP] = ACTIONS(1219), - [anon_sym_SEMI] = ACTIONS(1219), - [anon_sym___extension__] = ACTIONS(1217), - [anon_sym_typedef] = ACTIONS(1217), - [anon_sym_extern] = ACTIONS(1217), - [anon_sym___attribute__] = ACTIONS(1217), - [anon_sym___scanf] = ACTIONS(1217), - [anon_sym___printf] = ACTIONS(1217), - [anon_sym___read_mostly] = ACTIONS(1217), - [anon_sym___must_hold] = ACTIONS(1217), - [anon_sym___ro_after_init] = ACTIONS(1217), - [anon_sym___init] = ACTIONS(1217), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1219), - [anon_sym___declspec] = ACTIONS(1217), - [anon_sym___cdecl] = ACTIONS(1217), - [anon_sym___clrcall] = ACTIONS(1217), - [anon_sym___stdcall] = ACTIONS(1217), - [anon_sym___fastcall] = ACTIONS(1217), - [anon_sym___thiscall] = ACTIONS(1217), - [anon_sym___vectorcall] = ACTIONS(1217), - [anon_sym_LBRACE] = ACTIONS(1219), - [anon_sym_signed] = ACTIONS(1217), - [anon_sym_unsigned] = ACTIONS(1217), - [anon_sym_long] = ACTIONS(1217), - [anon_sym_short] = ACTIONS(1217), - [anon_sym_static] = ACTIONS(1217), - [anon_sym_auto] = ACTIONS(1217), - [anon_sym_register] = ACTIONS(1217), - [anon_sym_inline] = ACTIONS(1217), - [anon_sym___inline] = ACTIONS(1217), - [anon_sym___inline__] = ACTIONS(1217), - [anon_sym___forceinline] = ACTIONS(1217), - [anon_sym_thread_local] = ACTIONS(1217), - [anon_sym___thread] = ACTIONS(1217), - [anon_sym_const] = ACTIONS(1217), - [anon_sym_constexpr] = ACTIONS(1217), - [anon_sym_volatile] = ACTIONS(1217), - [anon_sym_restrict] = ACTIONS(1217), - [anon_sym___restrict__] = ACTIONS(1217), - [anon_sym__Atomic] = ACTIONS(1217), - [anon_sym__Noreturn] = ACTIONS(1217), - [anon_sym_noreturn] = ACTIONS(1217), - [anon_sym_alignas] = ACTIONS(1217), - [anon_sym__Alignas] = ACTIONS(1217), - [sym_primitive_type] = ACTIONS(1217), - [anon_sym_enum] = ACTIONS(1217), - [anon_sym_struct] = ACTIONS(1217), - [anon_sym_union] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1217), - [anon_sym_else] = ACTIONS(1217), - [anon_sym_switch] = ACTIONS(1217), - [anon_sym_case] = ACTIONS(1217), - [anon_sym_default] = ACTIONS(1217), - [anon_sym_while] = ACTIONS(1217), - [anon_sym_do] = ACTIONS(1217), - [anon_sym_for] = ACTIONS(1217), - [anon_sym_return] = ACTIONS(1217), - [anon_sym_break] = ACTIONS(1217), - [anon_sym_continue] = ACTIONS(1217), - [anon_sym_goto] = ACTIONS(1217), - [anon_sym___try] = ACTIONS(1217), - [anon_sym___leave] = ACTIONS(1217), - [anon_sym_DASH_DASH] = ACTIONS(1219), - [anon_sym_PLUS_PLUS] = ACTIONS(1219), - [anon_sym_sizeof] = ACTIONS(1217), - [anon_sym___alignof__] = ACTIONS(1217), - [anon_sym___alignof] = ACTIONS(1217), - [anon_sym__alignof] = ACTIONS(1217), - [anon_sym_alignof] = ACTIONS(1217), - [anon_sym__Alignof] = ACTIONS(1217), - [anon_sym_offsetof] = ACTIONS(1217), - [anon_sym__Generic] = ACTIONS(1217), - [anon_sym_asm] = ACTIONS(1217), - [anon_sym___asm__] = ACTIONS(1217), - [sym_number_literal] = ACTIONS(1219), - [anon_sym_L_SQUOTE] = ACTIONS(1219), - [anon_sym_u_SQUOTE] = ACTIONS(1219), - [anon_sym_U_SQUOTE] = ACTIONS(1219), - [anon_sym_u8_SQUOTE] = ACTIONS(1219), - [anon_sym_SQUOTE] = ACTIONS(1219), - [anon_sym_L_DQUOTE] = ACTIONS(1219), - [anon_sym_u_DQUOTE] = ACTIONS(1219), - [anon_sym_U_DQUOTE] = ACTIONS(1219), - [anon_sym_u8_DQUOTE] = ACTIONS(1219), - [anon_sym_DQUOTE] = ACTIONS(1219), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [anon_sym_NULL] = ACTIONS(1217), - [anon_sym_nullptr] = ACTIONS(1217), + [267] = { + [sym_identifier] = ACTIONS(1269), + [aux_sym_preproc_include_token1] = ACTIONS(1269), + [aux_sym_preproc_def_token1] = ACTIONS(1269), + [aux_sym_preproc_if_token1] = ACTIONS(1269), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1269), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1269), + [sym_preproc_directive] = ACTIONS(1269), + [anon_sym_LPAREN2] = ACTIONS(1271), + [anon_sym_BANG] = ACTIONS(1271), + [anon_sym_TILDE] = ACTIONS(1271), + [anon_sym_DASH] = ACTIONS(1269), + [anon_sym_PLUS] = ACTIONS(1269), + [anon_sym_STAR] = ACTIONS(1271), + [anon_sym_AMP] = ACTIONS(1271), + [anon_sym_SEMI] = ACTIONS(1271), + [anon_sym___extension__] = ACTIONS(1269), + [anon_sym_typedef] = ACTIONS(1269), + [anon_sym_extern] = ACTIONS(1269), + [anon_sym___attribute__] = ACTIONS(1269), + [anon_sym___scanf] = ACTIONS(1269), + [anon_sym___printf] = ACTIONS(1269), + [anon_sym___read_mostly] = ACTIONS(1269), + [anon_sym___must_hold] = ACTIONS(1269), + [anon_sym___ro_after_init] = ACTIONS(1269), + [anon_sym___noreturn] = ACTIONS(1269), + [anon_sym___cold] = ACTIONS(1269), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1271), + [anon_sym___declspec] = ACTIONS(1269), + [anon_sym___init] = ACTIONS(1269), + [anon_sym___exit] = ACTIONS(1269), + [anon_sym___cdecl] = ACTIONS(1269), + [anon_sym___clrcall] = ACTIONS(1269), + [anon_sym___stdcall] = ACTIONS(1269), + [anon_sym___fastcall] = ACTIONS(1269), + [anon_sym___thiscall] = ACTIONS(1269), + [anon_sym___vectorcall] = ACTIONS(1269), + [anon_sym_LBRACE] = ACTIONS(1271), + [anon_sym_RBRACE] = ACTIONS(1271), + [anon_sym_signed] = ACTIONS(1269), + [anon_sym_unsigned] = ACTIONS(1269), + [anon_sym_long] = ACTIONS(1269), + [anon_sym_short] = ACTIONS(1269), + [anon_sym_static] = ACTIONS(1269), + [anon_sym_auto] = ACTIONS(1269), + [anon_sym_register] = ACTIONS(1269), + [anon_sym_inline] = ACTIONS(1269), + [anon_sym___inline] = ACTIONS(1269), + [anon_sym___inline__] = ACTIONS(1269), + [anon_sym___forceinline] = ACTIONS(1269), + [anon_sym_thread_local] = ACTIONS(1269), + [anon_sym___thread] = ACTIONS(1269), + [anon_sym_const] = ACTIONS(1269), + [anon_sym_constexpr] = ACTIONS(1269), + [anon_sym_volatile] = ACTIONS(1269), + [anon_sym_restrict] = ACTIONS(1269), + [anon_sym___restrict__] = ACTIONS(1269), + [anon_sym__Atomic] = ACTIONS(1269), + [anon_sym__Noreturn] = ACTIONS(1269), + [anon_sym_noreturn] = ACTIONS(1269), + [anon_sym_alignas] = ACTIONS(1269), + [anon_sym__Alignas] = ACTIONS(1269), + [sym_primitive_type] = ACTIONS(1269), + [anon_sym_enum] = ACTIONS(1269), + [anon_sym_struct] = ACTIONS(1269), + [anon_sym_union] = ACTIONS(1269), + [anon_sym_if] = ACTIONS(1269), + [anon_sym_else] = ACTIONS(1269), + [anon_sym_switch] = ACTIONS(1269), + [anon_sym_case] = ACTIONS(1269), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_while] = ACTIONS(1269), + [anon_sym_do] = ACTIONS(1269), + [anon_sym_for] = ACTIONS(1269), + [anon_sym_return] = ACTIONS(1269), + [anon_sym_break] = ACTIONS(1269), + [anon_sym_continue] = ACTIONS(1269), + [anon_sym_goto] = ACTIONS(1269), + [anon_sym___try] = ACTIONS(1269), + [anon_sym___leave] = ACTIONS(1269), + [anon_sym_DASH_DASH] = ACTIONS(1271), + [anon_sym_PLUS_PLUS] = ACTIONS(1271), + [anon_sym_sizeof] = ACTIONS(1269), + [anon_sym___alignof__] = ACTIONS(1269), + [anon_sym___alignof] = ACTIONS(1269), + [anon_sym__alignof] = ACTIONS(1269), + [anon_sym_alignof] = ACTIONS(1269), + [anon_sym__Alignof] = ACTIONS(1269), + [anon_sym_offsetof] = ACTIONS(1269), + [anon_sym__Generic] = ACTIONS(1269), + [anon_sym_asm] = ACTIONS(1269), + [anon_sym___asm__] = ACTIONS(1269), + [sym_number_literal] = ACTIONS(1271), + [anon_sym_L_SQUOTE] = ACTIONS(1271), + [anon_sym_u_SQUOTE] = ACTIONS(1271), + [anon_sym_U_SQUOTE] = ACTIONS(1271), + [anon_sym_u8_SQUOTE] = ACTIONS(1271), + [anon_sym_SQUOTE] = ACTIONS(1271), + [anon_sym_L_DQUOTE] = ACTIONS(1271), + [anon_sym_u_DQUOTE] = ACTIONS(1271), + [anon_sym_U_DQUOTE] = ACTIONS(1271), + [anon_sym_u8_DQUOTE] = ACTIONS(1271), + [anon_sym_DQUOTE] = ACTIONS(1271), + [sym_true] = ACTIONS(1269), + [sym_false] = ACTIONS(1269), + [anon_sym_NULL] = ACTIONS(1269), + [anon_sym_nullptr] = ACTIONS(1269), [sym_comment] = ACTIONS(3), }, - [240] = { - [ts_builtin_sym_end] = ACTIONS(1159), - [sym_identifier] = ACTIONS(1157), - [aux_sym_preproc_include_token1] = ACTIONS(1157), - [aux_sym_preproc_def_token1] = ACTIONS(1157), - [aux_sym_preproc_if_token1] = ACTIONS(1157), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1157), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1157), - [sym_preproc_directive] = ACTIONS(1157), - [anon_sym_LPAREN2] = ACTIONS(1159), - [anon_sym_BANG] = ACTIONS(1159), - [anon_sym_TILDE] = ACTIONS(1159), - [anon_sym_DASH] = ACTIONS(1157), - [anon_sym_PLUS] = ACTIONS(1157), - [anon_sym_STAR] = ACTIONS(1159), - [anon_sym_AMP] = ACTIONS(1159), - [anon_sym_SEMI] = ACTIONS(1159), - [anon_sym___extension__] = ACTIONS(1157), - [anon_sym_typedef] = ACTIONS(1157), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym___attribute__] = ACTIONS(1157), - [anon_sym___scanf] = ACTIONS(1157), - [anon_sym___printf] = ACTIONS(1157), - [anon_sym___read_mostly] = ACTIONS(1157), - [anon_sym___must_hold] = ACTIONS(1157), - [anon_sym___ro_after_init] = ACTIONS(1157), - [anon_sym___init] = ACTIONS(1157), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1159), - [anon_sym___declspec] = ACTIONS(1157), - [anon_sym___cdecl] = ACTIONS(1157), - [anon_sym___clrcall] = ACTIONS(1157), - [anon_sym___stdcall] = ACTIONS(1157), - [anon_sym___fastcall] = ACTIONS(1157), - [anon_sym___thiscall] = ACTIONS(1157), - [anon_sym___vectorcall] = ACTIONS(1157), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_signed] = ACTIONS(1157), - [anon_sym_unsigned] = ACTIONS(1157), - [anon_sym_long] = ACTIONS(1157), - [anon_sym_short] = ACTIONS(1157), - [anon_sym_static] = ACTIONS(1157), - [anon_sym_auto] = ACTIONS(1157), - [anon_sym_register] = ACTIONS(1157), - [anon_sym_inline] = ACTIONS(1157), - [anon_sym___inline] = ACTIONS(1157), - [anon_sym___inline__] = ACTIONS(1157), - [anon_sym___forceinline] = ACTIONS(1157), - [anon_sym_thread_local] = ACTIONS(1157), - [anon_sym___thread] = ACTIONS(1157), - [anon_sym_const] = ACTIONS(1157), - [anon_sym_constexpr] = ACTIONS(1157), - [anon_sym_volatile] = ACTIONS(1157), - [anon_sym_restrict] = ACTIONS(1157), - [anon_sym___restrict__] = ACTIONS(1157), - [anon_sym__Atomic] = ACTIONS(1157), - [anon_sym__Noreturn] = ACTIONS(1157), - [anon_sym_noreturn] = ACTIONS(1157), - [anon_sym_alignas] = ACTIONS(1157), - [anon_sym__Alignas] = ACTIONS(1157), - [sym_primitive_type] = ACTIONS(1157), - [anon_sym_enum] = ACTIONS(1157), - [anon_sym_struct] = ACTIONS(1157), - [anon_sym_union] = ACTIONS(1157), - [anon_sym_if] = ACTIONS(1157), - [anon_sym_else] = ACTIONS(1157), - [anon_sym_switch] = ACTIONS(1157), - [anon_sym_case] = ACTIONS(1157), - [anon_sym_default] = ACTIONS(1157), - [anon_sym_while] = ACTIONS(1157), - [anon_sym_do] = ACTIONS(1157), - [anon_sym_for] = ACTIONS(1157), - [anon_sym_return] = ACTIONS(1157), - [anon_sym_break] = ACTIONS(1157), - [anon_sym_continue] = ACTIONS(1157), - [anon_sym_goto] = ACTIONS(1157), - [anon_sym___try] = ACTIONS(1157), - [anon_sym___leave] = ACTIONS(1157), - [anon_sym_DASH_DASH] = ACTIONS(1159), - [anon_sym_PLUS_PLUS] = ACTIONS(1159), - [anon_sym_sizeof] = ACTIONS(1157), - [anon_sym___alignof__] = ACTIONS(1157), - [anon_sym___alignof] = ACTIONS(1157), - [anon_sym__alignof] = ACTIONS(1157), - [anon_sym_alignof] = ACTIONS(1157), - [anon_sym__Alignof] = ACTIONS(1157), - [anon_sym_offsetof] = ACTIONS(1157), - [anon_sym__Generic] = ACTIONS(1157), - [anon_sym_asm] = ACTIONS(1157), - [anon_sym___asm__] = ACTIONS(1157), - [sym_number_literal] = ACTIONS(1159), - [anon_sym_L_SQUOTE] = ACTIONS(1159), - [anon_sym_u_SQUOTE] = ACTIONS(1159), - [anon_sym_U_SQUOTE] = ACTIONS(1159), - [anon_sym_u8_SQUOTE] = ACTIONS(1159), - [anon_sym_SQUOTE] = ACTIONS(1159), - [anon_sym_L_DQUOTE] = ACTIONS(1159), - [anon_sym_u_DQUOTE] = ACTIONS(1159), - [anon_sym_U_DQUOTE] = ACTIONS(1159), - [anon_sym_u8_DQUOTE] = ACTIONS(1159), - [anon_sym_DQUOTE] = ACTIONS(1159), - [sym_true] = ACTIONS(1157), - [sym_false] = ACTIONS(1157), - [anon_sym_NULL] = ACTIONS(1157), - [anon_sym_nullptr] = ACTIONS(1157), + [268] = { + [sym_identifier] = ACTIONS(1277), + [aux_sym_preproc_include_token1] = ACTIONS(1277), + [aux_sym_preproc_def_token1] = ACTIONS(1277), + [aux_sym_preproc_if_token1] = ACTIONS(1277), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1277), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1277), + [sym_preproc_directive] = ACTIONS(1277), + [anon_sym_LPAREN2] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(1279), + [anon_sym_DASH] = ACTIONS(1277), + [anon_sym_PLUS] = ACTIONS(1277), + [anon_sym_STAR] = ACTIONS(1279), + [anon_sym_AMP] = ACTIONS(1279), + [anon_sym_SEMI] = ACTIONS(1279), + [anon_sym___extension__] = ACTIONS(1277), + [anon_sym_typedef] = ACTIONS(1277), + [anon_sym_extern] = ACTIONS(1277), + [anon_sym___attribute__] = ACTIONS(1277), + [anon_sym___scanf] = ACTIONS(1277), + [anon_sym___printf] = ACTIONS(1277), + [anon_sym___read_mostly] = ACTIONS(1277), + [anon_sym___must_hold] = ACTIONS(1277), + [anon_sym___ro_after_init] = ACTIONS(1277), + [anon_sym___noreturn] = ACTIONS(1277), + [anon_sym___cold] = ACTIONS(1277), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1279), + [anon_sym___declspec] = ACTIONS(1277), + [anon_sym___init] = ACTIONS(1277), + [anon_sym___exit] = ACTIONS(1277), + [anon_sym___cdecl] = ACTIONS(1277), + [anon_sym___clrcall] = ACTIONS(1277), + [anon_sym___stdcall] = ACTIONS(1277), + [anon_sym___fastcall] = ACTIONS(1277), + [anon_sym___thiscall] = ACTIONS(1277), + [anon_sym___vectorcall] = ACTIONS(1277), + [anon_sym_LBRACE] = ACTIONS(1279), + [anon_sym_RBRACE] = ACTIONS(1279), + [anon_sym_signed] = ACTIONS(1277), + [anon_sym_unsigned] = ACTIONS(1277), + [anon_sym_long] = ACTIONS(1277), + [anon_sym_short] = ACTIONS(1277), + [anon_sym_static] = ACTIONS(1277), + [anon_sym_auto] = ACTIONS(1277), + [anon_sym_register] = ACTIONS(1277), + [anon_sym_inline] = ACTIONS(1277), + [anon_sym___inline] = ACTIONS(1277), + [anon_sym___inline__] = ACTIONS(1277), + [anon_sym___forceinline] = ACTIONS(1277), + [anon_sym_thread_local] = ACTIONS(1277), + [anon_sym___thread] = ACTIONS(1277), + [anon_sym_const] = ACTIONS(1277), + [anon_sym_constexpr] = ACTIONS(1277), + [anon_sym_volatile] = ACTIONS(1277), + [anon_sym_restrict] = ACTIONS(1277), + [anon_sym___restrict__] = ACTIONS(1277), + [anon_sym__Atomic] = ACTIONS(1277), + [anon_sym__Noreturn] = ACTIONS(1277), + [anon_sym_noreturn] = ACTIONS(1277), + [anon_sym_alignas] = ACTIONS(1277), + [anon_sym__Alignas] = ACTIONS(1277), + [sym_primitive_type] = ACTIONS(1277), + [anon_sym_enum] = ACTIONS(1277), + [anon_sym_struct] = ACTIONS(1277), + [anon_sym_union] = ACTIONS(1277), + [anon_sym_if] = ACTIONS(1277), + [anon_sym_else] = ACTIONS(1277), + [anon_sym_switch] = ACTIONS(1277), + [anon_sym_case] = ACTIONS(1277), + [anon_sym_default] = ACTIONS(1277), + [anon_sym_while] = ACTIONS(1277), + [anon_sym_do] = ACTIONS(1277), + [anon_sym_for] = ACTIONS(1277), + [anon_sym_return] = ACTIONS(1277), + [anon_sym_break] = ACTIONS(1277), + [anon_sym_continue] = ACTIONS(1277), + [anon_sym_goto] = ACTIONS(1277), + [anon_sym___try] = ACTIONS(1277), + [anon_sym___leave] = ACTIONS(1277), + [anon_sym_DASH_DASH] = ACTIONS(1279), + [anon_sym_PLUS_PLUS] = ACTIONS(1279), + [anon_sym_sizeof] = ACTIONS(1277), + [anon_sym___alignof__] = ACTIONS(1277), + [anon_sym___alignof] = ACTIONS(1277), + [anon_sym__alignof] = ACTIONS(1277), + [anon_sym_alignof] = ACTIONS(1277), + [anon_sym__Alignof] = ACTIONS(1277), + [anon_sym_offsetof] = ACTIONS(1277), + [anon_sym__Generic] = ACTIONS(1277), + [anon_sym_asm] = ACTIONS(1277), + [anon_sym___asm__] = ACTIONS(1277), + [sym_number_literal] = ACTIONS(1279), + [anon_sym_L_SQUOTE] = ACTIONS(1279), + [anon_sym_u_SQUOTE] = ACTIONS(1279), + [anon_sym_U_SQUOTE] = ACTIONS(1279), + [anon_sym_u8_SQUOTE] = ACTIONS(1279), + [anon_sym_SQUOTE] = ACTIONS(1279), + [anon_sym_L_DQUOTE] = ACTIONS(1279), + [anon_sym_u_DQUOTE] = ACTIONS(1279), + [anon_sym_U_DQUOTE] = ACTIONS(1279), + [anon_sym_u8_DQUOTE] = ACTIONS(1279), + [anon_sym_DQUOTE] = ACTIONS(1279), + [sym_true] = ACTIONS(1277), + [sym_false] = ACTIONS(1277), + [anon_sym_NULL] = ACTIONS(1277), + [anon_sym_nullptr] = ACTIONS(1277), + [sym_comment] = ACTIONS(3), + }, + [269] = { + [sym_identifier] = ACTIONS(1237), + [aux_sym_preproc_include_token1] = ACTIONS(1237), + [aux_sym_preproc_def_token1] = ACTIONS(1237), + [aux_sym_preproc_if_token1] = ACTIONS(1237), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1237), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1237), + [sym_preproc_directive] = ACTIONS(1237), + [anon_sym_LPAREN2] = ACTIONS(1239), + [anon_sym_BANG] = ACTIONS(1239), + [anon_sym_TILDE] = ACTIONS(1239), + [anon_sym_DASH] = ACTIONS(1237), + [anon_sym_PLUS] = ACTIONS(1237), + [anon_sym_STAR] = ACTIONS(1239), + [anon_sym_AMP] = ACTIONS(1239), + [anon_sym_SEMI] = ACTIONS(1239), + [anon_sym___extension__] = ACTIONS(1237), + [anon_sym_typedef] = ACTIONS(1237), + [anon_sym_extern] = ACTIONS(1237), + [anon_sym___attribute__] = ACTIONS(1237), + [anon_sym___scanf] = ACTIONS(1237), + [anon_sym___printf] = ACTIONS(1237), + [anon_sym___read_mostly] = ACTIONS(1237), + [anon_sym___must_hold] = ACTIONS(1237), + [anon_sym___ro_after_init] = ACTIONS(1237), + [anon_sym___noreturn] = ACTIONS(1237), + [anon_sym___cold] = ACTIONS(1237), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1239), + [anon_sym___declspec] = ACTIONS(1237), + [anon_sym___init] = ACTIONS(1237), + [anon_sym___exit] = ACTIONS(1237), + [anon_sym___cdecl] = ACTIONS(1237), + [anon_sym___clrcall] = ACTIONS(1237), + [anon_sym___stdcall] = ACTIONS(1237), + [anon_sym___fastcall] = ACTIONS(1237), + [anon_sym___thiscall] = ACTIONS(1237), + [anon_sym___vectorcall] = ACTIONS(1237), + [anon_sym_LBRACE] = ACTIONS(1239), + [anon_sym_RBRACE] = ACTIONS(1239), + [anon_sym_signed] = ACTIONS(1237), + [anon_sym_unsigned] = ACTIONS(1237), + [anon_sym_long] = ACTIONS(1237), + [anon_sym_short] = ACTIONS(1237), + [anon_sym_static] = ACTIONS(1237), + [anon_sym_auto] = ACTIONS(1237), + [anon_sym_register] = ACTIONS(1237), + [anon_sym_inline] = ACTIONS(1237), + [anon_sym___inline] = ACTIONS(1237), + [anon_sym___inline__] = ACTIONS(1237), + [anon_sym___forceinline] = ACTIONS(1237), + [anon_sym_thread_local] = ACTIONS(1237), + [anon_sym___thread] = ACTIONS(1237), + [anon_sym_const] = ACTIONS(1237), + [anon_sym_constexpr] = ACTIONS(1237), + [anon_sym_volatile] = ACTIONS(1237), + [anon_sym_restrict] = ACTIONS(1237), + [anon_sym___restrict__] = ACTIONS(1237), + [anon_sym__Atomic] = ACTIONS(1237), + [anon_sym__Noreturn] = ACTIONS(1237), + [anon_sym_noreturn] = ACTIONS(1237), + [anon_sym_alignas] = ACTIONS(1237), + [anon_sym__Alignas] = ACTIONS(1237), + [sym_primitive_type] = ACTIONS(1237), + [anon_sym_enum] = ACTIONS(1237), + [anon_sym_struct] = ACTIONS(1237), + [anon_sym_union] = ACTIONS(1237), + [anon_sym_if] = ACTIONS(1237), + [anon_sym_else] = ACTIONS(1237), + [anon_sym_switch] = ACTIONS(1237), + [anon_sym_case] = ACTIONS(1237), + [anon_sym_default] = ACTIONS(1237), + [anon_sym_while] = ACTIONS(1237), + [anon_sym_do] = ACTIONS(1237), + [anon_sym_for] = ACTIONS(1237), + [anon_sym_return] = ACTIONS(1237), + [anon_sym_break] = ACTIONS(1237), + [anon_sym_continue] = ACTIONS(1237), + [anon_sym_goto] = ACTIONS(1237), + [anon_sym___try] = ACTIONS(1237), + [anon_sym___leave] = ACTIONS(1237), + [anon_sym_DASH_DASH] = ACTIONS(1239), + [anon_sym_PLUS_PLUS] = ACTIONS(1239), + [anon_sym_sizeof] = ACTIONS(1237), + [anon_sym___alignof__] = ACTIONS(1237), + [anon_sym___alignof] = ACTIONS(1237), + [anon_sym__alignof] = ACTIONS(1237), + [anon_sym_alignof] = ACTIONS(1237), + [anon_sym__Alignof] = ACTIONS(1237), + [anon_sym_offsetof] = ACTIONS(1237), + [anon_sym__Generic] = ACTIONS(1237), + [anon_sym_asm] = ACTIONS(1237), + [anon_sym___asm__] = ACTIONS(1237), + [sym_number_literal] = ACTIONS(1239), + [anon_sym_L_SQUOTE] = ACTIONS(1239), + [anon_sym_u_SQUOTE] = ACTIONS(1239), + [anon_sym_U_SQUOTE] = ACTIONS(1239), + [anon_sym_u8_SQUOTE] = ACTIONS(1239), + [anon_sym_SQUOTE] = ACTIONS(1239), + [anon_sym_L_DQUOTE] = ACTIONS(1239), + [anon_sym_u_DQUOTE] = ACTIONS(1239), + [anon_sym_U_DQUOTE] = ACTIONS(1239), + [anon_sym_u8_DQUOTE] = ACTIONS(1239), + [anon_sym_DQUOTE] = ACTIONS(1239), + [sym_true] = ACTIONS(1237), + [sym_false] = ACTIONS(1237), + [anon_sym_NULL] = ACTIONS(1237), + [anon_sym_nullptr] = ACTIONS(1237), [sym_comment] = ACTIONS(3), }, - [241] = { - [ts_builtin_sym_end] = ACTIONS(1259), - [sym_identifier] = ACTIONS(1257), - [aux_sym_preproc_include_token1] = ACTIONS(1257), - [aux_sym_preproc_def_token1] = ACTIONS(1257), - [aux_sym_preproc_if_token1] = ACTIONS(1257), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1257), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1257), - [sym_preproc_directive] = ACTIONS(1257), - [anon_sym_LPAREN2] = ACTIONS(1259), - [anon_sym_BANG] = ACTIONS(1259), - [anon_sym_TILDE] = ACTIONS(1259), - [anon_sym_DASH] = ACTIONS(1257), - [anon_sym_PLUS] = ACTIONS(1257), - [anon_sym_STAR] = ACTIONS(1259), - [anon_sym_AMP] = ACTIONS(1259), - [anon_sym_SEMI] = ACTIONS(1259), - [anon_sym___extension__] = ACTIONS(1257), - [anon_sym_typedef] = ACTIONS(1257), - [anon_sym_extern] = ACTIONS(1257), - [anon_sym___attribute__] = ACTIONS(1257), - [anon_sym___scanf] = ACTIONS(1257), - [anon_sym___printf] = ACTIONS(1257), - [anon_sym___read_mostly] = ACTIONS(1257), - [anon_sym___must_hold] = ACTIONS(1257), - [anon_sym___ro_after_init] = ACTIONS(1257), - [anon_sym___init] = ACTIONS(1257), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1259), - [anon_sym___declspec] = ACTIONS(1257), - [anon_sym___cdecl] = ACTIONS(1257), - [anon_sym___clrcall] = ACTIONS(1257), - [anon_sym___stdcall] = ACTIONS(1257), - [anon_sym___fastcall] = ACTIONS(1257), - [anon_sym___thiscall] = ACTIONS(1257), - [anon_sym___vectorcall] = ACTIONS(1257), - [anon_sym_LBRACE] = ACTIONS(1259), - [anon_sym_signed] = ACTIONS(1257), - [anon_sym_unsigned] = ACTIONS(1257), - [anon_sym_long] = ACTIONS(1257), - [anon_sym_short] = ACTIONS(1257), - [anon_sym_static] = ACTIONS(1257), - [anon_sym_auto] = ACTIONS(1257), - [anon_sym_register] = ACTIONS(1257), - [anon_sym_inline] = ACTIONS(1257), - [anon_sym___inline] = ACTIONS(1257), - [anon_sym___inline__] = ACTIONS(1257), - [anon_sym___forceinline] = ACTIONS(1257), - [anon_sym_thread_local] = ACTIONS(1257), - [anon_sym___thread] = ACTIONS(1257), - [anon_sym_const] = ACTIONS(1257), - [anon_sym_constexpr] = ACTIONS(1257), - [anon_sym_volatile] = ACTIONS(1257), - [anon_sym_restrict] = ACTIONS(1257), - [anon_sym___restrict__] = ACTIONS(1257), - [anon_sym__Atomic] = ACTIONS(1257), - [anon_sym__Noreturn] = ACTIONS(1257), - [anon_sym_noreturn] = ACTIONS(1257), - [anon_sym_alignas] = ACTIONS(1257), - [anon_sym__Alignas] = ACTIONS(1257), - [sym_primitive_type] = ACTIONS(1257), - [anon_sym_enum] = ACTIONS(1257), - [anon_sym_struct] = ACTIONS(1257), - [anon_sym_union] = ACTIONS(1257), - [anon_sym_if] = ACTIONS(1257), - [anon_sym_else] = ACTIONS(1257), - [anon_sym_switch] = ACTIONS(1257), - [anon_sym_case] = ACTIONS(1257), - [anon_sym_default] = ACTIONS(1257), - [anon_sym_while] = ACTIONS(1257), - [anon_sym_do] = ACTIONS(1257), - [anon_sym_for] = ACTIONS(1257), - [anon_sym_return] = ACTIONS(1257), - [anon_sym_break] = ACTIONS(1257), - [anon_sym_continue] = ACTIONS(1257), - [anon_sym_goto] = ACTIONS(1257), - [anon_sym___try] = ACTIONS(1257), - [anon_sym___leave] = ACTIONS(1257), - [anon_sym_DASH_DASH] = ACTIONS(1259), - [anon_sym_PLUS_PLUS] = ACTIONS(1259), - [anon_sym_sizeof] = ACTIONS(1257), - [anon_sym___alignof__] = ACTIONS(1257), - [anon_sym___alignof] = ACTIONS(1257), - [anon_sym__alignof] = ACTIONS(1257), - [anon_sym_alignof] = ACTIONS(1257), - [anon_sym__Alignof] = ACTIONS(1257), - [anon_sym_offsetof] = ACTIONS(1257), - [anon_sym__Generic] = ACTIONS(1257), - [anon_sym_asm] = ACTIONS(1257), - [anon_sym___asm__] = ACTIONS(1257), - [sym_number_literal] = ACTIONS(1259), - [anon_sym_L_SQUOTE] = ACTIONS(1259), - [anon_sym_u_SQUOTE] = ACTIONS(1259), - [anon_sym_U_SQUOTE] = ACTIONS(1259), - [anon_sym_u8_SQUOTE] = ACTIONS(1259), - [anon_sym_SQUOTE] = ACTIONS(1259), - [anon_sym_L_DQUOTE] = ACTIONS(1259), - [anon_sym_u_DQUOTE] = ACTIONS(1259), - [anon_sym_U_DQUOTE] = ACTIONS(1259), - [anon_sym_u8_DQUOTE] = ACTIONS(1259), - [anon_sym_DQUOTE] = ACTIONS(1259), - [sym_true] = ACTIONS(1257), - [sym_false] = ACTIONS(1257), - [anon_sym_NULL] = ACTIONS(1257), - [anon_sym_nullptr] = ACTIONS(1257), + [270] = { + [sym_identifier] = ACTIONS(1161), + [aux_sym_preproc_include_token1] = ACTIONS(1161), + [aux_sym_preproc_def_token1] = ACTIONS(1161), + [aux_sym_preproc_if_token1] = ACTIONS(1161), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1161), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1161), + [sym_preproc_directive] = ACTIONS(1161), + [anon_sym_LPAREN2] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1163), + [anon_sym_TILDE] = ACTIONS(1163), + [anon_sym_DASH] = ACTIONS(1161), + [anon_sym_PLUS] = ACTIONS(1161), + [anon_sym_STAR] = ACTIONS(1163), + [anon_sym_AMP] = ACTIONS(1163), + [anon_sym_SEMI] = ACTIONS(1163), + [anon_sym___extension__] = ACTIONS(1161), + [anon_sym_typedef] = ACTIONS(1161), + [anon_sym_extern] = ACTIONS(1161), + [anon_sym___attribute__] = ACTIONS(1161), + [anon_sym___scanf] = ACTIONS(1161), + [anon_sym___printf] = ACTIONS(1161), + [anon_sym___read_mostly] = ACTIONS(1161), + [anon_sym___must_hold] = ACTIONS(1161), + [anon_sym___ro_after_init] = ACTIONS(1161), + [anon_sym___noreturn] = ACTIONS(1161), + [anon_sym___cold] = ACTIONS(1161), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1163), + [anon_sym___declspec] = ACTIONS(1161), + [anon_sym___init] = ACTIONS(1161), + [anon_sym___exit] = ACTIONS(1161), + [anon_sym___cdecl] = ACTIONS(1161), + [anon_sym___clrcall] = ACTIONS(1161), + [anon_sym___stdcall] = ACTIONS(1161), + [anon_sym___fastcall] = ACTIONS(1161), + [anon_sym___thiscall] = ACTIONS(1161), + [anon_sym___vectorcall] = ACTIONS(1161), + [anon_sym_LBRACE] = ACTIONS(1163), + [anon_sym_RBRACE] = ACTIONS(1163), + [anon_sym_signed] = ACTIONS(1161), + [anon_sym_unsigned] = ACTIONS(1161), + [anon_sym_long] = ACTIONS(1161), + [anon_sym_short] = ACTIONS(1161), + [anon_sym_static] = ACTIONS(1161), + [anon_sym_auto] = ACTIONS(1161), + [anon_sym_register] = ACTIONS(1161), + [anon_sym_inline] = ACTIONS(1161), + [anon_sym___inline] = ACTIONS(1161), + [anon_sym___inline__] = ACTIONS(1161), + [anon_sym___forceinline] = ACTIONS(1161), + [anon_sym_thread_local] = ACTIONS(1161), + [anon_sym___thread] = ACTIONS(1161), + [anon_sym_const] = ACTIONS(1161), + [anon_sym_constexpr] = ACTIONS(1161), + [anon_sym_volatile] = ACTIONS(1161), + [anon_sym_restrict] = ACTIONS(1161), + [anon_sym___restrict__] = ACTIONS(1161), + [anon_sym__Atomic] = ACTIONS(1161), + [anon_sym__Noreturn] = ACTIONS(1161), + [anon_sym_noreturn] = ACTIONS(1161), + [anon_sym_alignas] = ACTIONS(1161), + [anon_sym__Alignas] = ACTIONS(1161), + [sym_primitive_type] = ACTIONS(1161), + [anon_sym_enum] = ACTIONS(1161), + [anon_sym_struct] = ACTIONS(1161), + [anon_sym_union] = ACTIONS(1161), + [anon_sym_if] = ACTIONS(1161), + [anon_sym_else] = ACTIONS(1161), + [anon_sym_switch] = ACTIONS(1161), + [anon_sym_case] = ACTIONS(1161), + [anon_sym_default] = ACTIONS(1161), + [anon_sym_while] = ACTIONS(1161), + [anon_sym_do] = ACTIONS(1161), + [anon_sym_for] = ACTIONS(1161), + [anon_sym_return] = ACTIONS(1161), + [anon_sym_break] = ACTIONS(1161), + [anon_sym_continue] = ACTIONS(1161), + [anon_sym_goto] = ACTIONS(1161), + [anon_sym___try] = ACTIONS(1161), + [anon_sym___leave] = ACTIONS(1161), + [anon_sym_DASH_DASH] = ACTIONS(1163), + [anon_sym_PLUS_PLUS] = ACTIONS(1163), + [anon_sym_sizeof] = ACTIONS(1161), + [anon_sym___alignof__] = ACTIONS(1161), + [anon_sym___alignof] = ACTIONS(1161), + [anon_sym__alignof] = ACTIONS(1161), + [anon_sym_alignof] = ACTIONS(1161), + [anon_sym__Alignof] = ACTIONS(1161), + [anon_sym_offsetof] = ACTIONS(1161), + [anon_sym__Generic] = ACTIONS(1161), + [anon_sym_asm] = ACTIONS(1161), + [anon_sym___asm__] = ACTIONS(1161), + [sym_number_literal] = ACTIONS(1163), + [anon_sym_L_SQUOTE] = ACTIONS(1163), + [anon_sym_u_SQUOTE] = ACTIONS(1163), + [anon_sym_U_SQUOTE] = ACTIONS(1163), + [anon_sym_u8_SQUOTE] = ACTIONS(1163), + [anon_sym_SQUOTE] = ACTIONS(1163), + [anon_sym_L_DQUOTE] = ACTIONS(1163), + [anon_sym_u_DQUOTE] = ACTIONS(1163), + [anon_sym_U_DQUOTE] = ACTIONS(1163), + [anon_sym_u8_DQUOTE] = ACTIONS(1163), + [anon_sym_DQUOTE] = ACTIONS(1163), + [sym_true] = ACTIONS(1161), + [sym_false] = ACTIONS(1161), + [anon_sym_NULL] = ACTIONS(1161), + [anon_sym_nullptr] = ACTIONS(1161), [sym_comment] = ACTIONS(3), }, - [242] = { - [ts_builtin_sym_end] = ACTIONS(1247), - [sym_identifier] = ACTIONS(1245), - [aux_sym_preproc_include_token1] = ACTIONS(1245), - [aux_sym_preproc_def_token1] = ACTIONS(1245), - [aux_sym_preproc_if_token1] = ACTIONS(1245), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1245), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1245), - [sym_preproc_directive] = ACTIONS(1245), - [anon_sym_LPAREN2] = ACTIONS(1247), - [anon_sym_BANG] = ACTIONS(1247), - [anon_sym_TILDE] = ACTIONS(1247), - [anon_sym_DASH] = ACTIONS(1245), - [anon_sym_PLUS] = ACTIONS(1245), - [anon_sym_STAR] = ACTIONS(1247), - [anon_sym_AMP] = ACTIONS(1247), - [anon_sym_SEMI] = ACTIONS(1247), - [anon_sym___extension__] = ACTIONS(1245), - [anon_sym_typedef] = ACTIONS(1245), - [anon_sym_extern] = ACTIONS(1245), - [anon_sym___attribute__] = ACTIONS(1245), - [anon_sym___scanf] = ACTIONS(1245), - [anon_sym___printf] = ACTIONS(1245), - [anon_sym___read_mostly] = ACTIONS(1245), - [anon_sym___must_hold] = ACTIONS(1245), - [anon_sym___ro_after_init] = ACTIONS(1245), - [anon_sym___init] = ACTIONS(1245), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1247), - [anon_sym___declspec] = ACTIONS(1245), - [anon_sym___cdecl] = ACTIONS(1245), - [anon_sym___clrcall] = ACTIONS(1245), - [anon_sym___stdcall] = ACTIONS(1245), - [anon_sym___fastcall] = ACTIONS(1245), - [anon_sym___thiscall] = ACTIONS(1245), - [anon_sym___vectorcall] = ACTIONS(1245), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_signed] = ACTIONS(1245), - [anon_sym_unsigned] = ACTIONS(1245), - [anon_sym_long] = ACTIONS(1245), - [anon_sym_short] = ACTIONS(1245), - [anon_sym_static] = ACTIONS(1245), - [anon_sym_auto] = ACTIONS(1245), - [anon_sym_register] = ACTIONS(1245), - [anon_sym_inline] = ACTIONS(1245), - [anon_sym___inline] = ACTIONS(1245), - [anon_sym___inline__] = ACTIONS(1245), - [anon_sym___forceinline] = ACTIONS(1245), - [anon_sym_thread_local] = ACTIONS(1245), - [anon_sym___thread] = ACTIONS(1245), - [anon_sym_const] = ACTIONS(1245), - [anon_sym_constexpr] = ACTIONS(1245), - [anon_sym_volatile] = ACTIONS(1245), - [anon_sym_restrict] = ACTIONS(1245), - [anon_sym___restrict__] = ACTIONS(1245), - [anon_sym__Atomic] = ACTIONS(1245), - [anon_sym__Noreturn] = ACTIONS(1245), - [anon_sym_noreturn] = ACTIONS(1245), - [anon_sym_alignas] = ACTIONS(1245), - [anon_sym__Alignas] = ACTIONS(1245), - [sym_primitive_type] = ACTIONS(1245), - [anon_sym_enum] = ACTIONS(1245), - [anon_sym_struct] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1245), - [anon_sym_if] = ACTIONS(1245), - [anon_sym_else] = ACTIONS(1245), - [anon_sym_switch] = ACTIONS(1245), - [anon_sym_case] = ACTIONS(1245), - [anon_sym_default] = ACTIONS(1245), - [anon_sym_while] = ACTIONS(1245), - [anon_sym_do] = ACTIONS(1245), - [anon_sym_for] = ACTIONS(1245), - [anon_sym_return] = ACTIONS(1245), - [anon_sym_break] = ACTIONS(1245), - [anon_sym_continue] = ACTIONS(1245), - [anon_sym_goto] = ACTIONS(1245), - [anon_sym___try] = ACTIONS(1245), - [anon_sym___leave] = ACTIONS(1245), - [anon_sym_DASH_DASH] = ACTIONS(1247), - [anon_sym_PLUS_PLUS] = ACTIONS(1247), - [anon_sym_sizeof] = ACTIONS(1245), - [anon_sym___alignof__] = ACTIONS(1245), - [anon_sym___alignof] = ACTIONS(1245), - [anon_sym__alignof] = ACTIONS(1245), - [anon_sym_alignof] = ACTIONS(1245), - [anon_sym__Alignof] = ACTIONS(1245), - [anon_sym_offsetof] = ACTIONS(1245), - [anon_sym__Generic] = ACTIONS(1245), - [anon_sym_asm] = ACTIONS(1245), - [anon_sym___asm__] = ACTIONS(1245), - [sym_number_literal] = ACTIONS(1247), - [anon_sym_L_SQUOTE] = ACTIONS(1247), - [anon_sym_u_SQUOTE] = ACTIONS(1247), - [anon_sym_U_SQUOTE] = ACTIONS(1247), - [anon_sym_u8_SQUOTE] = ACTIONS(1247), - [anon_sym_SQUOTE] = ACTIONS(1247), - [anon_sym_L_DQUOTE] = ACTIONS(1247), - [anon_sym_u_DQUOTE] = ACTIONS(1247), - [anon_sym_U_DQUOTE] = ACTIONS(1247), - [anon_sym_u8_DQUOTE] = ACTIONS(1247), - [anon_sym_DQUOTE] = ACTIONS(1247), - [sym_true] = ACTIONS(1245), - [sym_false] = ACTIONS(1245), - [anon_sym_NULL] = ACTIONS(1245), - [anon_sym_nullptr] = ACTIONS(1245), + [271] = { + [sym_identifier] = ACTIONS(1165), + [aux_sym_preproc_include_token1] = ACTIONS(1165), + [aux_sym_preproc_def_token1] = ACTIONS(1165), + [aux_sym_preproc_if_token1] = ACTIONS(1165), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1165), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1165), + [sym_preproc_directive] = ACTIONS(1165), + [anon_sym_LPAREN2] = ACTIONS(1167), + [anon_sym_BANG] = ACTIONS(1167), + [anon_sym_TILDE] = ACTIONS(1167), + [anon_sym_DASH] = ACTIONS(1165), + [anon_sym_PLUS] = ACTIONS(1165), + [anon_sym_STAR] = ACTIONS(1167), + [anon_sym_AMP] = ACTIONS(1167), + [anon_sym_SEMI] = ACTIONS(1167), + [anon_sym___extension__] = ACTIONS(1165), + [anon_sym_typedef] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1165), + [anon_sym___attribute__] = ACTIONS(1165), + [anon_sym___scanf] = ACTIONS(1165), + [anon_sym___printf] = ACTIONS(1165), + [anon_sym___read_mostly] = ACTIONS(1165), + [anon_sym___must_hold] = ACTIONS(1165), + [anon_sym___ro_after_init] = ACTIONS(1165), + [anon_sym___noreturn] = ACTIONS(1165), + [anon_sym___cold] = ACTIONS(1165), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1167), + [anon_sym___declspec] = ACTIONS(1165), + [anon_sym___init] = ACTIONS(1165), + [anon_sym___exit] = ACTIONS(1165), + [anon_sym___cdecl] = ACTIONS(1165), + [anon_sym___clrcall] = ACTIONS(1165), + [anon_sym___stdcall] = ACTIONS(1165), + [anon_sym___fastcall] = ACTIONS(1165), + [anon_sym___thiscall] = ACTIONS(1165), + [anon_sym___vectorcall] = ACTIONS(1165), + [anon_sym_LBRACE] = ACTIONS(1167), + [anon_sym_RBRACE] = ACTIONS(1167), + [anon_sym_signed] = ACTIONS(1165), + [anon_sym_unsigned] = ACTIONS(1165), + [anon_sym_long] = ACTIONS(1165), + [anon_sym_short] = ACTIONS(1165), + [anon_sym_static] = ACTIONS(1165), + [anon_sym_auto] = ACTIONS(1165), + [anon_sym_register] = ACTIONS(1165), + [anon_sym_inline] = ACTIONS(1165), + [anon_sym___inline] = ACTIONS(1165), + [anon_sym___inline__] = ACTIONS(1165), + [anon_sym___forceinline] = ACTIONS(1165), + [anon_sym_thread_local] = ACTIONS(1165), + [anon_sym___thread] = ACTIONS(1165), + [anon_sym_const] = ACTIONS(1165), + [anon_sym_constexpr] = ACTIONS(1165), + [anon_sym_volatile] = ACTIONS(1165), + [anon_sym_restrict] = ACTIONS(1165), + [anon_sym___restrict__] = ACTIONS(1165), + [anon_sym__Atomic] = ACTIONS(1165), + [anon_sym__Noreturn] = ACTIONS(1165), + [anon_sym_noreturn] = ACTIONS(1165), + [anon_sym_alignas] = ACTIONS(1165), + [anon_sym__Alignas] = ACTIONS(1165), + [sym_primitive_type] = ACTIONS(1165), + [anon_sym_enum] = ACTIONS(1165), + [anon_sym_struct] = ACTIONS(1165), + [anon_sym_union] = ACTIONS(1165), + [anon_sym_if] = ACTIONS(1165), + [anon_sym_else] = ACTIONS(1165), + [anon_sym_switch] = ACTIONS(1165), + [anon_sym_case] = ACTIONS(1165), + [anon_sym_default] = ACTIONS(1165), + [anon_sym_while] = ACTIONS(1165), + [anon_sym_do] = ACTIONS(1165), + [anon_sym_for] = ACTIONS(1165), + [anon_sym_return] = ACTIONS(1165), + [anon_sym_break] = ACTIONS(1165), + [anon_sym_continue] = ACTIONS(1165), + [anon_sym_goto] = ACTIONS(1165), + [anon_sym___try] = ACTIONS(1165), + [anon_sym___leave] = ACTIONS(1165), + [anon_sym_DASH_DASH] = ACTIONS(1167), + [anon_sym_PLUS_PLUS] = ACTIONS(1167), + [anon_sym_sizeof] = ACTIONS(1165), + [anon_sym___alignof__] = ACTIONS(1165), + [anon_sym___alignof] = ACTIONS(1165), + [anon_sym__alignof] = ACTIONS(1165), + [anon_sym_alignof] = ACTIONS(1165), + [anon_sym__Alignof] = ACTIONS(1165), + [anon_sym_offsetof] = ACTIONS(1165), + [anon_sym__Generic] = ACTIONS(1165), + [anon_sym_asm] = ACTIONS(1165), + [anon_sym___asm__] = ACTIONS(1165), + [sym_number_literal] = ACTIONS(1167), + [anon_sym_L_SQUOTE] = ACTIONS(1167), + [anon_sym_u_SQUOTE] = ACTIONS(1167), + [anon_sym_U_SQUOTE] = ACTIONS(1167), + [anon_sym_u8_SQUOTE] = ACTIONS(1167), + [anon_sym_SQUOTE] = ACTIONS(1167), + [anon_sym_L_DQUOTE] = ACTIONS(1167), + [anon_sym_u_DQUOTE] = ACTIONS(1167), + [anon_sym_U_DQUOTE] = ACTIONS(1167), + [anon_sym_u8_DQUOTE] = ACTIONS(1167), + [anon_sym_DQUOTE] = ACTIONS(1167), + [sym_true] = ACTIONS(1165), + [sym_false] = ACTIONS(1165), + [anon_sym_NULL] = ACTIONS(1165), + [anon_sym_nullptr] = ACTIONS(1165), + [sym_comment] = ACTIONS(3), + }, + [272] = { + [sym_identifier] = ACTIONS(1241), + [aux_sym_preproc_include_token1] = ACTIONS(1241), + [aux_sym_preproc_def_token1] = ACTIONS(1241), + [aux_sym_preproc_if_token1] = ACTIONS(1241), + [aux_sym_preproc_if_token2] = ACTIONS(1241), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1241), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1241), + [sym_preproc_directive] = ACTIONS(1241), + [anon_sym_LPAREN2] = ACTIONS(1243), + [anon_sym_BANG] = ACTIONS(1243), + [anon_sym_TILDE] = ACTIONS(1243), + [anon_sym_DASH] = ACTIONS(1241), + [anon_sym_PLUS] = ACTIONS(1241), + [anon_sym_STAR] = ACTIONS(1243), + [anon_sym_AMP] = ACTIONS(1243), + [anon_sym_SEMI] = ACTIONS(1243), + [anon_sym___extension__] = ACTIONS(1241), + [anon_sym_typedef] = ACTIONS(1241), + [anon_sym_extern] = ACTIONS(1241), + [anon_sym___attribute__] = ACTIONS(1241), + [anon_sym___scanf] = ACTIONS(1241), + [anon_sym___printf] = ACTIONS(1241), + [anon_sym___read_mostly] = ACTIONS(1241), + [anon_sym___must_hold] = ACTIONS(1241), + [anon_sym___ro_after_init] = ACTIONS(1241), + [anon_sym___noreturn] = ACTIONS(1241), + [anon_sym___cold] = ACTIONS(1241), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1243), + [anon_sym___declspec] = ACTIONS(1241), + [anon_sym___init] = ACTIONS(1241), + [anon_sym___exit] = ACTIONS(1241), + [anon_sym___cdecl] = ACTIONS(1241), + [anon_sym___clrcall] = ACTIONS(1241), + [anon_sym___stdcall] = ACTIONS(1241), + [anon_sym___fastcall] = ACTIONS(1241), + [anon_sym___thiscall] = ACTIONS(1241), + [anon_sym___vectorcall] = ACTIONS(1241), + [anon_sym_LBRACE] = ACTIONS(1243), + [anon_sym_signed] = ACTIONS(1241), + [anon_sym_unsigned] = ACTIONS(1241), + [anon_sym_long] = ACTIONS(1241), + [anon_sym_short] = ACTIONS(1241), + [anon_sym_static] = ACTIONS(1241), + [anon_sym_auto] = ACTIONS(1241), + [anon_sym_register] = ACTIONS(1241), + [anon_sym_inline] = ACTIONS(1241), + [anon_sym___inline] = ACTIONS(1241), + [anon_sym___inline__] = ACTIONS(1241), + [anon_sym___forceinline] = ACTIONS(1241), + [anon_sym_thread_local] = ACTIONS(1241), + [anon_sym___thread] = ACTIONS(1241), + [anon_sym_const] = ACTIONS(1241), + [anon_sym_constexpr] = ACTIONS(1241), + [anon_sym_volatile] = ACTIONS(1241), + [anon_sym_restrict] = ACTIONS(1241), + [anon_sym___restrict__] = ACTIONS(1241), + [anon_sym__Atomic] = ACTIONS(1241), + [anon_sym__Noreturn] = ACTIONS(1241), + [anon_sym_noreturn] = ACTIONS(1241), + [anon_sym_alignas] = ACTIONS(1241), + [anon_sym__Alignas] = ACTIONS(1241), + [sym_primitive_type] = ACTIONS(1241), + [anon_sym_enum] = ACTIONS(1241), + [anon_sym_struct] = ACTIONS(1241), + [anon_sym_union] = ACTIONS(1241), + [anon_sym_if] = ACTIONS(1241), + [anon_sym_else] = ACTIONS(1241), + [anon_sym_switch] = ACTIONS(1241), + [anon_sym_case] = ACTIONS(1241), + [anon_sym_default] = ACTIONS(1241), + [anon_sym_while] = ACTIONS(1241), + [anon_sym_do] = ACTIONS(1241), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_return] = ACTIONS(1241), + [anon_sym_break] = ACTIONS(1241), + [anon_sym_continue] = ACTIONS(1241), + [anon_sym_goto] = ACTIONS(1241), + [anon_sym___try] = ACTIONS(1241), + [anon_sym___leave] = ACTIONS(1241), + [anon_sym_DASH_DASH] = ACTIONS(1243), + [anon_sym_PLUS_PLUS] = ACTIONS(1243), + [anon_sym_sizeof] = ACTIONS(1241), + [anon_sym___alignof__] = ACTIONS(1241), + [anon_sym___alignof] = ACTIONS(1241), + [anon_sym__alignof] = ACTIONS(1241), + [anon_sym_alignof] = ACTIONS(1241), + [anon_sym__Alignof] = ACTIONS(1241), + [anon_sym_offsetof] = ACTIONS(1241), + [anon_sym__Generic] = ACTIONS(1241), + [anon_sym_asm] = ACTIONS(1241), + [anon_sym___asm__] = ACTIONS(1241), + [sym_number_literal] = ACTIONS(1243), + [anon_sym_L_SQUOTE] = ACTIONS(1243), + [anon_sym_u_SQUOTE] = ACTIONS(1243), + [anon_sym_U_SQUOTE] = ACTIONS(1243), + [anon_sym_u8_SQUOTE] = ACTIONS(1243), + [anon_sym_SQUOTE] = ACTIONS(1243), + [anon_sym_L_DQUOTE] = ACTIONS(1243), + [anon_sym_u_DQUOTE] = ACTIONS(1243), + [anon_sym_U_DQUOTE] = ACTIONS(1243), + [anon_sym_u8_DQUOTE] = ACTIONS(1243), + [anon_sym_DQUOTE] = ACTIONS(1243), + [sym_true] = ACTIONS(1241), + [sym_false] = ACTIONS(1241), + [anon_sym_NULL] = ACTIONS(1241), + [anon_sym_nullptr] = ACTIONS(1241), [sym_comment] = ACTIONS(3), }, - [243] = { - [ts_builtin_sym_end] = ACTIONS(1235), + [273] = { + [sym_identifier] = ACTIONS(1249), + [aux_sym_preproc_include_token1] = ACTIONS(1249), + [aux_sym_preproc_def_token1] = ACTIONS(1249), + [aux_sym_preproc_if_token1] = ACTIONS(1249), + [aux_sym_preproc_if_token2] = ACTIONS(1249), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1249), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1249), + [sym_preproc_directive] = ACTIONS(1249), + [anon_sym_LPAREN2] = ACTIONS(1251), + [anon_sym_BANG] = ACTIONS(1251), + [anon_sym_TILDE] = ACTIONS(1251), + [anon_sym_DASH] = ACTIONS(1249), + [anon_sym_PLUS] = ACTIONS(1249), + [anon_sym_STAR] = ACTIONS(1251), + [anon_sym_AMP] = ACTIONS(1251), + [anon_sym_SEMI] = ACTIONS(1251), + [anon_sym___extension__] = ACTIONS(1249), + [anon_sym_typedef] = ACTIONS(1249), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym___attribute__] = ACTIONS(1249), + [anon_sym___scanf] = ACTIONS(1249), + [anon_sym___printf] = ACTIONS(1249), + [anon_sym___read_mostly] = ACTIONS(1249), + [anon_sym___must_hold] = ACTIONS(1249), + [anon_sym___ro_after_init] = ACTIONS(1249), + [anon_sym___noreturn] = ACTIONS(1249), + [anon_sym___cold] = ACTIONS(1249), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1251), + [anon_sym___declspec] = ACTIONS(1249), + [anon_sym___init] = ACTIONS(1249), + [anon_sym___exit] = ACTIONS(1249), + [anon_sym___cdecl] = ACTIONS(1249), + [anon_sym___clrcall] = ACTIONS(1249), + [anon_sym___stdcall] = ACTIONS(1249), + [anon_sym___fastcall] = ACTIONS(1249), + [anon_sym___thiscall] = ACTIONS(1249), + [anon_sym___vectorcall] = ACTIONS(1249), + [anon_sym_LBRACE] = ACTIONS(1251), + [anon_sym_signed] = ACTIONS(1249), + [anon_sym_unsigned] = ACTIONS(1249), + [anon_sym_long] = ACTIONS(1249), + [anon_sym_short] = ACTIONS(1249), + [anon_sym_static] = ACTIONS(1249), + [anon_sym_auto] = ACTIONS(1249), + [anon_sym_register] = ACTIONS(1249), + [anon_sym_inline] = ACTIONS(1249), + [anon_sym___inline] = ACTIONS(1249), + [anon_sym___inline__] = ACTIONS(1249), + [anon_sym___forceinline] = ACTIONS(1249), + [anon_sym_thread_local] = ACTIONS(1249), + [anon_sym___thread] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), + [anon_sym_constexpr] = ACTIONS(1249), + [anon_sym_volatile] = ACTIONS(1249), + [anon_sym_restrict] = ACTIONS(1249), + [anon_sym___restrict__] = ACTIONS(1249), + [anon_sym__Atomic] = ACTIONS(1249), + [anon_sym__Noreturn] = ACTIONS(1249), + [anon_sym_noreturn] = ACTIONS(1249), + [anon_sym_alignas] = ACTIONS(1249), + [anon_sym__Alignas] = ACTIONS(1249), + [sym_primitive_type] = ACTIONS(1249), + [anon_sym_enum] = ACTIONS(1249), + [anon_sym_struct] = ACTIONS(1249), + [anon_sym_union] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1249), + [anon_sym_else] = ACTIONS(1249), + [anon_sym_switch] = ACTIONS(1249), + [anon_sym_case] = ACTIONS(1249), + [anon_sym_default] = ACTIONS(1249), + [anon_sym_while] = ACTIONS(1249), + [anon_sym_do] = ACTIONS(1249), + [anon_sym_for] = ACTIONS(1249), + [anon_sym_return] = ACTIONS(1249), + [anon_sym_break] = ACTIONS(1249), + [anon_sym_continue] = ACTIONS(1249), + [anon_sym_goto] = ACTIONS(1249), + [anon_sym___try] = ACTIONS(1249), + [anon_sym___leave] = ACTIONS(1249), + [anon_sym_DASH_DASH] = ACTIONS(1251), + [anon_sym_PLUS_PLUS] = ACTIONS(1251), + [anon_sym_sizeof] = ACTIONS(1249), + [anon_sym___alignof__] = ACTIONS(1249), + [anon_sym___alignof] = ACTIONS(1249), + [anon_sym__alignof] = ACTIONS(1249), + [anon_sym_alignof] = ACTIONS(1249), + [anon_sym__Alignof] = ACTIONS(1249), + [anon_sym_offsetof] = ACTIONS(1249), + [anon_sym__Generic] = ACTIONS(1249), + [anon_sym_asm] = ACTIONS(1249), + [anon_sym___asm__] = ACTIONS(1249), + [sym_number_literal] = ACTIONS(1251), + [anon_sym_L_SQUOTE] = ACTIONS(1251), + [anon_sym_u_SQUOTE] = ACTIONS(1251), + [anon_sym_U_SQUOTE] = ACTIONS(1251), + [anon_sym_u8_SQUOTE] = ACTIONS(1251), + [anon_sym_SQUOTE] = ACTIONS(1251), + [anon_sym_L_DQUOTE] = ACTIONS(1251), + [anon_sym_u_DQUOTE] = ACTIONS(1251), + [anon_sym_U_DQUOTE] = ACTIONS(1251), + [anon_sym_u8_DQUOTE] = ACTIONS(1251), + [anon_sym_DQUOTE] = ACTIONS(1251), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [anon_sym_NULL] = ACTIONS(1249), + [anon_sym_nullptr] = ACTIONS(1249), + [sym_comment] = ACTIONS(3), + }, + [274] = { [sym_identifier] = ACTIONS(1233), [aux_sym_preproc_include_token1] = ACTIONS(1233), [aux_sym_preproc_def_token1] = ACTIONS(1233), @@ -42571,9 +47392,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___read_mostly] = ACTIONS(1233), [anon_sym___must_hold] = ACTIONS(1233), [anon_sym___ro_after_init] = ACTIONS(1233), - [anon_sym___init] = ACTIONS(1233), + [anon_sym___noreturn] = ACTIONS(1233), + [anon_sym___cold] = ACTIONS(1233), [anon_sym_LBRACK_LBRACK] = ACTIONS(1235), [anon_sym___declspec] = ACTIONS(1233), + [anon_sym___init] = ACTIONS(1233), + [anon_sym___exit] = ACTIONS(1233), [anon_sym___cdecl] = ACTIONS(1233), [anon_sym___clrcall] = ACTIONS(1233), [anon_sym___stdcall] = ACTIONS(1233), @@ -42581,6 +47405,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(1233), [anon_sym___vectorcall] = ACTIONS(1233), [anon_sym_LBRACE] = ACTIONS(1235), + [anon_sym_RBRACE] = ACTIONS(1235), [anon_sym_signed] = ACTIONS(1233), [anon_sym_unsigned] = ACTIONS(1233), [anon_sym_long] = ACTIONS(1233), @@ -42651,113 +47476,444 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1233), [sym_comment] = ACTIONS(3), }, - [244] = { - [ts_builtin_sym_end] = ACTIONS(1243), - [sym_identifier] = ACTIONS(1241), - [aux_sym_preproc_include_token1] = ACTIONS(1241), - [aux_sym_preproc_def_token1] = ACTIONS(1241), - [aux_sym_preproc_if_token1] = ACTIONS(1241), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1241), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1241), - [sym_preproc_directive] = ACTIONS(1241), - [anon_sym_LPAREN2] = ACTIONS(1243), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_TILDE] = ACTIONS(1243), - [anon_sym_DASH] = ACTIONS(1241), - [anon_sym_PLUS] = ACTIONS(1241), - [anon_sym_STAR] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(1243), - [anon_sym_SEMI] = ACTIONS(1243), - [anon_sym___extension__] = ACTIONS(1241), - [anon_sym_typedef] = ACTIONS(1241), - [anon_sym_extern] = ACTIONS(1241), - [anon_sym___attribute__] = ACTIONS(1241), - [anon_sym___scanf] = ACTIONS(1241), - [anon_sym___printf] = ACTIONS(1241), - [anon_sym___read_mostly] = ACTIONS(1241), - [anon_sym___must_hold] = ACTIONS(1241), - [anon_sym___ro_after_init] = ACTIONS(1241), - [anon_sym___init] = ACTIONS(1241), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1243), - [anon_sym___declspec] = ACTIONS(1241), - [anon_sym___cdecl] = ACTIONS(1241), - [anon_sym___clrcall] = ACTIONS(1241), - [anon_sym___stdcall] = ACTIONS(1241), - [anon_sym___fastcall] = ACTIONS(1241), - [anon_sym___thiscall] = ACTIONS(1241), - [anon_sym___vectorcall] = ACTIONS(1241), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_signed] = ACTIONS(1241), - [anon_sym_unsigned] = ACTIONS(1241), - [anon_sym_long] = ACTIONS(1241), - [anon_sym_short] = ACTIONS(1241), - [anon_sym_static] = ACTIONS(1241), - [anon_sym_auto] = ACTIONS(1241), - [anon_sym_register] = ACTIONS(1241), - [anon_sym_inline] = ACTIONS(1241), - [anon_sym___inline] = ACTIONS(1241), - [anon_sym___inline__] = ACTIONS(1241), - [anon_sym___forceinline] = ACTIONS(1241), - [anon_sym_thread_local] = ACTIONS(1241), - [anon_sym___thread] = ACTIONS(1241), - [anon_sym_const] = ACTIONS(1241), - [anon_sym_constexpr] = ACTIONS(1241), - [anon_sym_volatile] = ACTIONS(1241), - [anon_sym_restrict] = ACTIONS(1241), - [anon_sym___restrict__] = ACTIONS(1241), - [anon_sym__Atomic] = ACTIONS(1241), - [anon_sym__Noreturn] = ACTIONS(1241), - [anon_sym_noreturn] = ACTIONS(1241), - [anon_sym_alignas] = ACTIONS(1241), - [anon_sym__Alignas] = ACTIONS(1241), - [sym_primitive_type] = ACTIONS(1241), - [anon_sym_enum] = ACTIONS(1241), - [anon_sym_struct] = ACTIONS(1241), - [anon_sym_union] = ACTIONS(1241), - [anon_sym_if] = ACTIONS(1241), - [anon_sym_else] = ACTIONS(1241), - [anon_sym_switch] = ACTIONS(1241), - [anon_sym_case] = ACTIONS(1241), - [anon_sym_default] = ACTIONS(1241), - [anon_sym_while] = ACTIONS(1241), - [anon_sym_do] = ACTIONS(1241), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_return] = ACTIONS(1241), - [anon_sym_break] = ACTIONS(1241), - [anon_sym_continue] = ACTIONS(1241), - [anon_sym_goto] = ACTIONS(1241), - [anon_sym___try] = ACTIONS(1241), - [anon_sym___leave] = ACTIONS(1241), - [anon_sym_DASH_DASH] = ACTIONS(1243), - [anon_sym_PLUS_PLUS] = ACTIONS(1243), - [anon_sym_sizeof] = ACTIONS(1241), - [anon_sym___alignof__] = ACTIONS(1241), - [anon_sym___alignof] = ACTIONS(1241), - [anon_sym__alignof] = ACTIONS(1241), - [anon_sym_alignof] = ACTIONS(1241), - [anon_sym__Alignof] = ACTIONS(1241), - [anon_sym_offsetof] = ACTIONS(1241), - [anon_sym__Generic] = ACTIONS(1241), - [anon_sym_asm] = ACTIONS(1241), - [anon_sym___asm__] = ACTIONS(1241), - [sym_number_literal] = ACTIONS(1243), - [anon_sym_L_SQUOTE] = ACTIONS(1243), - [anon_sym_u_SQUOTE] = ACTIONS(1243), - [anon_sym_U_SQUOTE] = ACTIONS(1243), - [anon_sym_u8_SQUOTE] = ACTIONS(1243), - [anon_sym_SQUOTE] = ACTIONS(1243), - [anon_sym_L_DQUOTE] = ACTIONS(1243), - [anon_sym_u_DQUOTE] = ACTIONS(1243), - [anon_sym_U_DQUOTE] = ACTIONS(1243), - [anon_sym_u8_DQUOTE] = ACTIONS(1243), - [anon_sym_DQUOTE] = ACTIONS(1243), - [sym_true] = ACTIONS(1241), - [sym_false] = ACTIONS(1241), - [anon_sym_NULL] = ACTIONS(1241), - [anon_sym_nullptr] = ACTIONS(1241), + [275] = { + [ts_builtin_sym_end] = ACTIONS(1163), + [sym_identifier] = ACTIONS(1161), + [aux_sym_preproc_include_token1] = ACTIONS(1161), + [aux_sym_preproc_def_token1] = ACTIONS(1161), + [aux_sym_preproc_if_token1] = ACTIONS(1161), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1161), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1161), + [sym_preproc_directive] = ACTIONS(1161), + [anon_sym_LPAREN2] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1163), + [anon_sym_TILDE] = ACTIONS(1163), + [anon_sym_DASH] = ACTIONS(1161), + [anon_sym_PLUS] = ACTIONS(1161), + [anon_sym_STAR] = ACTIONS(1163), + [anon_sym_AMP] = ACTIONS(1163), + [anon_sym_SEMI] = ACTIONS(1163), + [anon_sym___extension__] = ACTIONS(1161), + [anon_sym_typedef] = ACTIONS(1161), + [anon_sym_extern] = ACTIONS(1161), + [anon_sym___attribute__] = ACTIONS(1161), + [anon_sym___scanf] = ACTIONS(1161), + [anon_sym___printf] = ACTIONS(1161), + [anon_sym___read_mostly] = ACTIONS(1161), + [anon_sym___must_hold] = ACTIONS(1161), + [anon_sym___ro_after_init] = ACTIONS(1161), + [anon_sym___noreturn] = ACTIONS(1161), + [anon_sym___cold] = ACTIONS(1161), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1163), + [anon_sym___declspec] = ACTIONS(1161), + [anon_sym___init] = ACTIONS(1161), + [anon_sym___exit] = ACTIONS(1161), + [anon_sym___cdecl] = ACTIONS(1161), + [anon_sym___clrcall] = ACTIONS(1161), + [anon_sym___stdcall] = ACTIONS(1161), + [anon_sym___fastcall] = ACTIONS(1161), + [anon_sym___thiscall] = ACTIONS(1161), + [anon_sym___vectorcall] = ACTIONS(1161), + [anon_sym_LBRACE] = ACTIONS(1163), + [anon_sym_signed] = ACTIONS(1161), + [anon_sym_unsigned] = ACTIONS(1161), + [anon_sym_long] = ACTIONS(1161), + [anon_sym_short] = ACTIONS(1161), + [anon_sym_static] = ACTIONS(1161), + [anon_sym_auto] = ACTIONS(1161), + [anon_sym_register] = ACTIONS(1161), + [anon_sym_inline] = ACTIONS(1161), + [anon_sym___inline] = ACTIONS(1161), + [anon_sym___inline__] = ACTIONS(1161), + [anon_sym___forceinline] = ACTIONS(1161), + [anon_sym_thread_local] = ACTIONS(1161), + [anon_sym___thread] = ACTIONS(1161), + [anon_sym_const] = ACTIONS(1161), + [anon_sym_constexpr] = ACTIONS(1161), + [anon_sym_volatile] = ACTIONS(1161), + [anon_sym_restrict] = ACTIONS(1161), + [anon_sym___restrict__] = ACTIONS(1161), + [anon_sym__Atomic] = ACTIONS(1161), + [anon_sym__Noreturn] = ACTIONS(1161), + [anon_sym_noreturn] = ACTIONS(1161), + [anon_sym_alignas] = ACTIONS(1161), + [anon_sym__Alignas] = ACTIONS(1161), + [sym_primitive_type] = ACTIONS(1161), + [anon_sym_enum] = ACTIONS(1161), + [anon_sym_struct] = ACTIONS(1161), + [anon_sym_union] = ACTIONS(1161), + [anon_sym_if] = ACTIONS(1161), + [anon_sym_else] = ACTIONS(1161), + [anon_sym_switch] = ACTIONS(1161), + [anon_sym_case] = ACTIONS(1161), + [anon_sym_default] = ACTIONS(1161), + [anon_sym_while] = ACTIONS(1161), + [anon_sym_do] = ACTIONS(1161), + [anon_sym_for] = ACTIONS(1161), + [anon_sym_return] = ACTIONS(1161), + [anon_sym_break] = ACTIONS(1161), + [anon_sym_continue] = ACTIONS(1161), + [anon_sym_goto] = ACTIONS(1161), + [anon_sym___try] = ACTIONS(1161), + [anon_sym___leave] = ACTIONS(1161), + [anon_sym_DASH_DASH] = ACTIONS(1163), + [anon_sym_PLUS_PLUS] = ACTIONS(1163), + [anon_sym_sizeof] = ACTIONS(1161), + [anon_sym___alignof__] = ACTIONS(1161), + [anon_sym___alignof] = ACTIONS(1161), + [anon_sym__alignof] = ACTIONS(1161), + [anon_sym_alignof] = ACTIONS(1161), + [anon_sym__Alignof] = ACTIONS(1161), + [anon_sym_offsetof] = ACTIONS(1161), + [anon_sym__Generic] = ACTIONS(1161), + [anon_sym_asm] = ACTIONS(1161), + [anon_sym___asm__] = ACTIONS(1161), + [sym_number_literal] = ACTIONS(1163), + [anon_sym_L_SQUOTE] = ACTIONS(1163), + [anon_sym_u_SQUOTE] = ACTIONS(1163), + [anon_sym_U_SQUOTE] = ACTIONS(1163), + [anon_sym_u8_SQUOTE] = ACTIONS(1163), + [anon_sym_SQUOTE] = ACTIONS(1163), + [anon_sym_L_DQUOTE] = ACTIONS(1163), + [anon_sym_u_DQUOTE] = ACTIONS(1163), + [anon_sym_U_DQUOTE] = ACTIONS(1163), + [anon_sym_u8_DQUOTE] = ACTIONS(1163), + [anon_sym_DQUOTE] = ACTIONS(1163), + [sym_true] = ACTIONS(1161), + [sym_false] = ACTIONS(1161), + [anon_sym_NULL] = ACTIONS(1161), + [anon_sym_nullptr] = ACTIONS(1161), + [sym_comment] = ACTIONS(3), + }, + [276] = { + [ts_builtin_sym_end] = ACTIONS(1163), + [sym_identifier] = ACTIONS(1161), + [aux_sym_preproc_include_token1] = ACTIONS(1161), + [aux_sym_preproc_def_token1] = ACTIONS(1161), + [aux_sym_preproc_if_token1] = ACTIONS(1161), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1161), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1161), + [sym_preproc_directive] = ACTIONS(1161), + [anon_sym_LPAREN2] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1163), + [anon_sym_TILDE] = ACTIONS(1163), + [anon_sym_DASH] = ACTIONS(1161), + [anon_sym_PLUS] = ACTIONS(1161), + [anon_sym_STAR] = ACTIONS(1163), + [anon_sym_AMP] = ACTIONS(1163), + [anon_sym_SEMI] = ACTIONS(1163), + [anon_sym___extension__] = ACTIONS(1161), + [anon_sym_typedef] = ACTIONS(1161), + [anon_sym_extern] = ACTIONS(1161), + [anon_sym___attribute__] = ACTIONS(1161), + [anon_sym___scanf] = ACTIONS(1161), + [anon_sym___printf] = ACTIONS(1161), + [anon_sym___read_mostly] = ACTIONS(1161), + [anon_sym___must_hold] = ACTIONS(1161), + [anon_sym___ro_after_init] = ACTIONS(1161), + [anon_sym___noreturn] = ACTIONS(1161), + [anon_sym___cold] = ACTIONS(1161), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1163), + [anon_sym___declspec] = ACTIONS(1161), + [anon_sym___init] = ACTIONS(1161), + [anon_sym___exit] = ACTIONS(1161), + [anon_sym___cdecl] = ACTIONS(1161), + [anon_sym___clrcall] = ACTIONS(1161), + [anon_sym___stdcall] = ACTIONS(1161), + [anon_sym___fastcall] = ACTIONS(1161), + [anon_sym___thiscall] = ACTIONS(1161), + [anon_sym___vectorcall] = ACTIONS(1161), + [anon_sym_LBRACE] = ACTIONS(1163), + [anon_sym_signed] = ACTIONS(1161), + [anon_sym_unsigned] = ACTIONS(1161), + [anon_sym_long] = ACTIONS(1161), + [anon_sym_short] = ACTIONS(1161), + [anon_sym_static] = ACTIONS(1161), + [anon_sym_auto] = ACTIONS(1161), + [anon_sym_register] = ACTIONS(1161), + [anon_sym_inline] = ACTIONS(1161), + [anon_sym___inline] = ACTIONS(1161), + [anon_sym___inline__] = ACTIONS(1161), + [anon_sym___forceinline] = ACTIONS(1161), + [anon_sym_thread_local] = ACTIONS(1161), + [anon_sym___thread] = ACTIONS(1161), + [anon_sym_const] = ACTIONS(1161), + [anon_sym_constexpr] = ACTIONS(1161), + [anon_sym_volatile] = ACTIONS(1161), + [anon_sym_restrict] = ACTIONS(1161), + [anon_sym___restrict__] = ACTIONS(1161), + [anon_sym__Atomic] = ACTIONS(1161), + [anon_sym__Noreturn] = ACTIONS(1161), + [anon_sym_noreturn] = ACTIONS(1161), + [anon_sym_alignas] = ACTIONS(1161), + [anon_sym__Alignas] = ACTIONS(1161), + [sym_primitive_type] = ACTIONS(1161), + [anon_sym_enum] = ACTIONS(1161), + [anon_sym_struct] = ACTIONS(1161), + [anon_sym_union] = ACTIONS(1161), + [anon_sym_if] = ACTIONS(1161), + [anon_sym_else] = ACTIONS(1161), + [anon_sym_switch] = ACTIONS(1161), + [anon_sym_case] = ACTIONS(1161), + [anon_sym_default] = ACTIONS(1161), + [anon_sym_while] = ACTIONS(1161), + [anon_sym_do] = ACTIONS(1161), + [anon_sym_for] = ACTIONS(1161), + [anon_sym_return] = ACTIONS(1161), + [anon_sym_break] = ACTIONS(1161), + [anon_sym_continue] = ACTIONS(1161), + [anon_sym_goto] = ACTIONS(1161), + [anon_sym___try] = ACTIONS(1161), + [anon_sym___leave] = ACTIONS(1161), + [anon_sym_DASH_DASH] = ACTIONS(1163), + [anon_sym_PLUS_PLUS] = ACTIONS(1163), + [anon_sym_sizeof] = ACTIONS(1161), + [anon_sym___alignof__] = ACTIONS(1161), + [anon_sym___alignof] = ACTIONS(1161), + [anon_sym__alignof] = ACTIONS(1161), + [anon_sym_alignof] = ACTIONS(1161), + [anon_sym__Alignof] = ACTIONS(1161), + [anon_sym_offsetof] = ACTIONS(1161), + [anon_sym__Generic] = ACTIONS(1161), + [anon_sym_asm] = ACTIONS(1161), + [anon_sym___asm__] = ACTIONS(1161), + [sym_number_literal] = ACTIONS(1163), + [anon_sym_L_SQUOTE] = ACTIONS(1163), + [anon_sym_u_SQUOTE] = ACTIONS(1163), + [anon_sym_U_SQUOTE] = ACTIONS(1163), + [anon_sym_u8_SQUOTE] = ACTIONS(1163), + [anon_sym_SQUOTE] = ACTIONS(1163), + [anon_sym_L_DQUOTE] = ACTIONS(1163), + [anon_sym_u_DQUOTE] = ACTIONS(1163), + [anon_sym_U_DQUOTE] = ACTIONS(1163), + [anon_sym_u8_DQUOTE] = ACTIONS(1163), + [anon_sym_DQUOTE] = ACTIONS(1163), + [sym_true] = ACTIONS(1161), + [sym_false] = ACTIONS(1161), + [anon_sym_NULL] = ACTIONS(1161), + [anon_sym_nullptr] = ACTIONS(1161), + [sym_comment] = ACTIONS(3), + }, + [277] = { + [ts_builtin_sym_end] = ACTIONS(1167), + [sym_identifier] = ACTIONS(1165), + [aux_sym_preproc_include_token1] = ACTIONS(1165), + [aux_sym_preproc_def_token1] = ACTIONS(1165), + [aux_sym_preproc_if_token1] = ACTIONS(1165), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1165), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1165), + [sym_preproc_directive] = ACTIONS(1165), + [anon_sym_LPAREN2] = ACTIONS(1167), + [anon_sym_BANG] = ACTIONS(1167), + [anon_sym_TILDE] = ACTIONS(1167), + [anon_sym_DASH] = ACTIONS(1165), + [anon_sym_PLUS] = ACTIONS(1165), + [anon_sym_STAR] = ACTIONS(1167), + [anon_sym_AMP] = ACTIONS(1167), + [anon_sym_SEMI] = ACTIONS(1167), + [anon_sym___extension__] = ACTIONS(1165), + [anon_sym_typedef] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1165), + [anon_sym___attribute__] = ACTIONS(1165), + [anon_sym___scanf] = ACTIONS(1165), + [anon_sym___printf] = ACTIONS(1165), + [anon_sym___read_mostly] = ACTIONS(1165), + [anon_sym___must_hold] = ACTIONS(1165), + [anon_sym___ro_after_init] = ACTIONS(1165), + [anon_sym___noreturn] = ACTIONS(1165), + [anon_sym___cold] = ACTIONS(1165), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1167), + [anon_sym___declspec] = ACTIONS(1165), + [anon_sym___init] = ACTIONS(1165), + [anon_sym___exit] = ACTIONS(1165), + [anon_sym___cdecl] = ACTIONS(1165), + [anon_sym___clrcall] = ACTIONS(1165), + [anon_sym___stdcall] = ACTIONS(1165), + [anon_sym___fastcall] = ACTIONS(1165), + [anon_sym___thiscall] = ACTIONS(1165), + [anon_sym___vectorcall] = ACTIONS(1165), + [anon_sym_LBRACE] = ACTIONS(1167), + [anon_sym_signed] = ACTIONS(1165), + [anon_sym_unsigned] = ACTIONS(1165), + [anon_sym_long] = ACTIONS(1165), + [anon_sym_short] = ACTIONS(1165), + [anon_sym_static] = ACTIONS(1165), + [anon_sym_auto] = ACTIONS(1165), + [anon_sym_register] = ACTIONS(1165), + [anon_sym_inline] = ACTIONS(1165), + [anon_sym___inline] = ACTIONS(1165), + [anon_sym___inline__] = ACTIONS(1165), + [anon_sym___forceinline] = ACTIONS(1165), + [anon_sym_thread_local] = ACTIONS(1165), + [anon_sym___thread] = ACTIONS(1165), + [anon_sym_const] = ACTIONS(1165), + [anon_sym_constexpr] = ACTIONS(1165), + [anon_sym_volatile] = ACTIONS(1165), + [anon_sym_restrict] = ACTIONS(1165), + [anon_sym___restrict__] = ACTIONS(1165), + [anon_sym__Atomic] = ACTIONS(1165), + [anon_sym__Noreturn] = ACTIONS(1165), + [anon_sym_noreturn] = ACTIONS(1165), + [anon_sym_alignas] = ACTIONS(1165), + [anon_sym__Alignas] = ACTIONS(1165), + [sym_primitive_type] = ACTIONS(1165), + [anon_sym_enum] = ACTIONS(1165), + [anon_sym_struct] = ACTIONS(1165), + [anon_sym_union] = ACTIONS(1165), + [anon_sym_if] = ACTIONS(1165), + [anon_sym_else] = ACTIONS(1165), + [anon_sym_switch] = ACTIONS(1165), + [anon_sym_case] = ACTIONS(1165), + [anon_sym_default] = ACTIONS(1165), + [anon_sym_while] = ACTIONS(1165), + [anon_sym_do] = ACTIONS(1165), + [anon_sym_for] = ACTIONS(1165), + [anon_sym_return] = ACTIONS(1165), + [anon_sym_break] = ACTIONS(1165), + [anon_sym_continue] = ACTIONS(1165), + [anon_sym_goto] = ACTIONS(1165), + [anon_sym___try] = ACTIONS(1165), + [anon_sym___leave] = ACTIONS(1165), + [anon_sym_DASH_DASH] = ACTIONS(1167), + [anon_sym_PLUS_PLUS] = ACTIONS(1167), + [anon_sym_sizeof] = ACTIONS(1165), + [anon_sym___alignof__] = ACTIONS(1165), + [anon_sym___alignof] = ACTIONS(1165), + [anon_sym__alignof] = ACTIONS(1165), + [anon_sym_alignof] = ACTIONS(1165), + [anon_sym__Alignof] = ACTIONS(1165), + [anon_sym_offsetof] = ACTIONS(1165), + [anon_sym__Generic] = ACTIONS(1165), + [anon_sym_asm] = ACTIONS(1165), + [anon_sym___asm__] = ACTIONS(1165), + [sym_number_literal] = ACTIONS(1167), + [anon_sym_L_SQUOTE] = ACTIONS(1167), + [anon_sym_u_SQUOTE] = ACTIONS(1167), + [anon_sym_U_SQUOTE] = ACTIONS(1167), + [anon_sym_u8_SQUOTE] = ACTIONS(1167), + [anon_sym_SQUOTE] = ACTIONS(1167), + [anon_sym_L_DQUOTE] = ACTIONS(1167), + [anon_sym_u_DQUOTE] = ACTIONS(1167), + [anon_sym_U_DQUOTE] = ACTIONS(1167), + [anon_sym_u8_DQUOTE] = ACTIONS(1167), + [anon_sym_DQUOTE] = ACTIONS(1167), + [sym_true] = ACTIONS(1165), + [sym_false] = ACTIONS(1165), + [anon_sym_NULL] = ACTIONS(1165), + [anon_sym_nullptr] = ACTIONS(1165), [sym_comment] = ACTIONS(3), }, - [245] = { + [278] = { + [ts_builtin_sym_end] = ACTIONS(1167), + [sym_identifier] = ACTIONS(1165), + [aux_sym_preproc_include_token1] = ACTIONS(1165), + [aux_sym_preproc_def_token1] = ACTIONS(1165), + [aux_sym_preproc_if_token1] = ACTIONS(1165), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1165), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1165), + [sym_preproc_directive] = ACTIONS(1165), + [anon_sym_LPAREN2] = ACTIONS(1167), + [anon_sym_BANG] = ACTIONS(1167), + [anon_sym_TILDE] = ACTIONS(1167), + [anon_sym_DASH] = ACTIONS(1165), + [anon_sym_PLUS] = ACTIONS(1165), + [anon_sym_STAR] = ACTIONS(1167), + [anon_sym_AMP] = ACTIONS(1167), + [anon_sym_SEMI] = ACTIONS(1167), + [anon_sym___extension__] = ACTIONS(1165), + [anon_sym_typedef] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1165), + [anon_sym___attribute__] = ACTIONS(1165), + [anon_sym___scanf] = ACTIONS(1165), + [anon_sym___printf] = ACTIONS(1165), + [anon_sym___read_mostly] = ACTIONS(1165), + [anon_sym___must_hold] = ACTIONS(1165), + [anon_sym___ro_after_init] = ACTIONS(1165), + [anon_sym___noreturn] = ACTIONS(1165), + [anon_sym___cold] = ACTIONS(1165), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1167), + [anon_sym___declspec] = ACTIONS(1165), + [anon_sym___init] = ACTIONS(1165), + [anon_sym___exit] = ACTIONS(1165), + [anon_sym___cdecl] = ACTIONS(1165), + [anon_sym___clrcall] = ACTIONS(1165), + [anon_sym___stdcall] = ACTIONS(1165), + [anon_sym___fastcall] = ACTIONS(1165), + [anon_sym___thiscall] = ACTIONS(1165), + [anon_sym___vectorcall] = ACTIONS(1165), + [anon_sym_LBRACE] = ACTIONS(1167), + [anon_sym_signed] = ACTIONS(1165), + [anon_sym_unsigned] = ACTIONS(1165), + [anon_sym_long] = ACTIONS(1165), + [anon_sym_short] = ACTIONS(1165), + [anon_sym_static] = ACTIONS(1165), + [anon_sym_auto] = ACTIONS(1165), + [anon_sym_register] = ACTIONS(1165), + [anon_sym_inline] = ACTIONS(1165), + [anon_sym___inline] = ACTIONS(1165), + [anon_sym___inline__] = ACTIONS(1165), + [anon_sym___forceinline] = ACTIONS(1165), + [anon_sym_thread_local] = ACTIONS(1165), + [anon_sym___thread] = ACTIONS(1165), + [anon_sym_const] = ACTIONS(1165), + [anon_sym_constexpr] = ACTIONS(1165), + [anon_sym_volatile] = ACTIONS(1165), + [anon_sym_restrict] = ACTIONS(1165), + [anon_sym___restrict__] = ACTIONS(1165), + [anon_sym__Atomic] = ACTIONS(1165), + [anon_sym__Noreturn] = ACTIONS(1165), + [anon_sym_noreturn] = ACTIONS(1165), + [anon_sym_alignas] = ACTIONS(1165), + [anon_sym__Alignas] = ACTIONS(1165), + [sym_primitive_type] = ACTIONS(1165), + [anon_sym_enum] = ACTIONS(1165), + [anon_sym_struct] = ACTIONS(1165), + [anon_sym_union] = ACTIONS(1165), + [anon_sym_if] = ACTIONS(1165), + [anon_sym_else] = ACTIONS(1165), + [anon_sym_switch] = ACTIONS(1165), + [anon_sym_case] = ACTIONS(1165), + [anon_sym_default] = ACTIONS(1165), + [anon_sym_while] = ACTIONS(1165), + [anon_sym_do] = ACTIONS(1165), + [anon_sym_for] = ACTIONS(1165), + [anon_sym_return] = ACTIONS(1165), + [anon_sym_break] = ACTIONS(1165), + [anon_sym_continue] = ACTIONS(1165), + [anon_sym_goto] = ACTIONS(1165), + [anon_sym___try] = ACTIONS(1165), + [anon_sym___leave] = ACTIONS(1165), + [anon_sym_DASH_DASH] = ACTIONS(1167), + [anon_sym_PLUS_PLUS] = ACTIONS(1167), + [anon_sym_sizeof] = ACTIONS(1165), + [anon_sym___alignof__] = ACTIONS(1165), + [anon_sym___alignof] = ACTIONS(1165), + [anon_sym__alignof] = ACTIONS(1165), + [anon_sym_alignof] = ACTIONS(1165), + [anon_sym__Alignof] = ACTIONS(1165), + [anon_sym_offsetof] = ACTIONS(1165), + [anon_sym__Generic] = ACTIONS(1165), + [anon_sym_asm] = ACTIONS(1165), + [anon_sym___asm__] = ACTIONS(1165), + [sym_number_literal] = ACTIONS(1167), + [anon_sym_L_SQUOTE] = ACTIONS(1167), + [anon_sym_u_SQUOTE] = ACTIONS(1167), + [anon_sym_U_SQUOTE] = ACTIONS(1167), + [anon_sym_u8_SQUOTE] = ACTIONS(1167), + [anon_sym_SQUOTE] = ACTIONS(1167), + [anon_sym_L_DQUOTE] = ACTIONS(1167), + [anon_sym_u_DQUOTE] = ACTIONS(1167), + [anon_sym_U_DQUOTE] = ACTIONS(1167), + [anon_sym_u8_DQUOTE] = ACTIONS(1167), + [anon_sym_DQUOTE] = ACTIONS(1167), + [sym_true] = ACTIONS(1165), + [sym_false] = ACTIONS(1165), + [anon_sym_NULL] = ACTIONS(1165), + [anon_sym_nullptr] = ACTIONS(1165), + [sym_comment] = ACTIONS(3), + }, + [279] = { + [ts_builtin_sym_end] = ACTIONS(1163), [sym_identifier] = ACTIONS(1161), [aux_sym_preproc_include_token1] = ACTIONS(1161), [aux_sym_preproc_def_token1] = ACTIONS(1161), @@ -42782,9 +47938,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___read_mostly] = ACTIONS(1161), [anon_sym___must_hold] = ACTIONS(1161), [anon_sym___ro_after_init] = ACTIONS(1161), - [anon_sym___init] = ACTIONS(1161), + [anon_sym___noreturn] = ACTIONS(1161), + [anon_sym___cold] = ACTIONS(1161), [anon_sym_LBRACK_LBRACK] = ACTIONS(1163), [anon_sym___declspec] = ACTIONS(1161), + [anon_sym___init] = ACTIONS(1161), + [anon_sym___exit] = ACTIONS(1161), [anon_sym___cdecl] = ACTIONS(1161), [anon_sym___clrcall] = ACTIONS(1161), [anon_sym___stdcall] = ACTIONS(1161), @@ -42792,7 +47951,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(1161), [anon_sym___vectorcall] = ACTIONS(1161), [anon_sym_LBRACE] = ACTIONS(1163), - [anon_sym_RBRACE] = ACTIONS(1163), [anon_sym_signed] = ACTIONS(1161), [anon_sym_unsigned] = ACTIONS(1161), [anon_sym_long] = ACTIONS(1161), @@ -42863,7 +48021,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1161), [sym_comment] = ACTIONS(3), }, - [246] = { + [280] = { [ts_builtin_sym_end] = ACTIONS(1167), [sym_identifier] = ACTIONS(1165), [aux_sym_preproc_include_token1] = ACTIONS(1165), @@ -42889,9 +48047,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___read_mostly] = ACTIONS(1165), [anon_sym___must_hold] = ACTIONS(1165), [anon_sym___ro_after_init] = ACTIONS(1165), - [anon_sym___init] = ACTIONS(1165), + [anon_sym___noreturn] = ACTIONS(1165), + [anon_sym___cold] = ACTIONS(1165), [anon_sym_LBRACK_LBRACK] = ACTIONS(1167), [anon_sym___declspec] = ACTIONS(1165), + [anon_sym___init] = ACTIONS(1165), + [anon_sym___exit] = ACTIONS(1165), [anon_sym___cdecl] = ACTIONS(1165), [anon_sym___clrcall] = ACTIONS(1165), [anon_sym___stdcall] = ACTIONS(1165), @@ -42969,113 +48130,225 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1165), [sym_comment] = ACTIONS(3), }, - [247] = { - [ts_builtin_sym_end] = ACTIONS(1191), - [sym_identifier] = ACTIONS(1189), - [aux_sym_preproc_include_token1] = ACTIONS(1189), - [aux_sym_preproc_def_token1] = ACTIONS(1189), - [aux_sym_preproc_if_token1] = ACTIONS(1189), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1189), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1189), - [sym_preproc_directive] = ACTIONS(1189), - [anon_sym_LPAREN2] = ACTIONS(1191), - [anon_sym_BANG] = ACTIONS(1191), - [anon_sym_TILDE] = ACTIONS(1191), - [anon_sym_DASH] = ACTIONS(1189), - [anon_sym_PLUS] = ACTIONS(1189), - [anon_sym_STAR] = ACTIONS(1191), - [anon_sym_AMP] = ACTIONS(1191), - [anon_sym_SEMI] = ACTIONS(1191), - [anon_sym___extension__] = ACTIONS(1189), - [anon_sym_typedef] = ACTIONS(1189), - [anon_sym_extern] = ACTIONS(1189), - [anon_sym___attribute__] = ACTIONS(1189), - [anon_sym___scanf] = ACTIONS(1189), - [anon_sym___printf] = ACTIONS(1189), - [anon_sym___read_mostly] = ACTIONS(1189), - [anon_sym___must_hold] = ACTIONS(1189), - [anon_sym___ro_after_init] = ACTIONS(1189), - [anon_sym___init] = ACTIONS(1189), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1191), - [anon_sym___declspec] = ACTIONS(1189), - [anon_sym___cdecl] = ACTIONS(1189), - [anon_sym___clrcall] = ACTIONS(1189), - [anon_sym___stdcall] = ACTIONS(1189), - [anon_sym___fastcall] = ACTIONS(1189), - [anon_sym___thiscall] = ACTIONS(1189), - [anon_sym___vectorcall] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1191), - [anon_sym_signed] = ACTIONS(1189), - [anon_sym_unsigned] = ACTIONS(1189), - [anon_sym_long] = ACTIONS(1189), - [anon_sym_short] = ACTIONS(1189), - [anon_sym_static] = ACTIONS(1189), - [anon_sym_auto] = ACTIONS(1189), - [anon_sym_register] = ACTIONS(1189), - [anon_sym_inline] = ACTIONS(1189), - [anon_sym___inline] = ACTIONS(1189), - [anon_sym___inline__] = ACTIONS(1189), - [anon_sym___forceinline] = ACTIONS(1189), - [anon_sym_thread_local] = ACTIONS(1189), - [anon_sym___thread] = ACTIONS(1189), - [anon_sym_const] = ACTIONS(1189), - [anon_sym_constexpr] = ACTIONS(1189), - [anon_sym_volatile] = ACTIONS(1189), - [anon_sym_restrict] = ACTIONS(1189), - [anon_sym___restrict__] = ACTIONS(1189), - [anon_sym__Atomic] = ACTIONS(1189), - [anon_sym__Noreturn] = ACTIONS(1189), - [anon_sym_noreturn] = ACTIONS(1189), - [anon_sym_alignas] = ACTIONS(1189), - [anon_sym__Alignas] = ACTIONS(1189), - [sym_primitive_type] = ACTIONS(1189), - [anon_sym_enum] = ACTIONS(1189), - [anon_sym_struct] = ACTIONS(1189), - [anon_sym_union] = ACTIONS(1189), - [anon_sym_if] = ACTIONS(1189), - [anon_sym_else] = ACTIONS(1189), - [anon_sym_switch] = ACTIONS(1189), - [anon_sym_case] = ACTIONS(1189), - [anon_sym_default] = ACTIONS(1189), - [anon_sym_while] = ACTIONS(1189), - [anon_sym_do] = ACTIONS(1189), - [anon_sym_for] = ACTIONS(1189), - [anon_sym_return] = ACTIONS(1189), - [anon_sym_break] = ACTIONS(1189), - [anon_sym_continue] = ACTIONS(1189), - [anon_sym_goto] = ACTIONS(1189), - [anon_sym___try] = ACTIONS(1189), - [anon_sym___leave] = ACTIONS(1189), - [anon_sym_DASH_DASH] = ACTIONS(1191), - [anon_sym_PLUS_PLUS] = ACTIONS(1191), - [anon_sym_sizeof] = ACTIONS(1189), - [anon_sym___alignof__] = ACTIONS(1189), - [anon_sym___alignof] = ACTIONS(1189), - [anon_sym__alignof] = ACTIONS(1189), - [anon_sym_alignof] = ACTIONS(1189), - [anon_sym__Alignof] = ACTIONS(1189), - [anon_sym_offsetof] = ACTIONS(1189), - [anon_sym__Generic] = ACTIONS(1189), - [anon_sym_asm] = ACTIONS(1189), - [anon_sym___asm__] = ACTIONS(1189), - [sym_number_literal] = ACTIONS(1191), - [anon_sym_L_SQUOTE] = ACTIONS(1191), - [anon_sym_u_SQUOTE] = ACTIONS(1191), - [anon_sym_U_SQUOTE] = ACTIONS(1191), - [anon_sym_u8_SQUOTE] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1191), - [anon_sym_L_DQUOTE] = ACTIONS(1191), - [anon_sym_u_DQUOTE] = ACTIONS(1191), - [anon_sym_U_DQUOTE] = ACTIONS(1191), - [anon_sym_u8_DQUOTE] = ACTIONS(1191), - [anon_sym_DQUOTE] = ACTIONS(1191), - [sym_true] = ACTIONS(1189), - [sym_false] = ACTIONS(1189), - [anon_sym_NULL] = ACTIONS(1189), - [anon_sym_nullptr] = ACTIONS(1189), + [281] = { + [ts_builtin_sym_end] = ACTIONS(1171), + [sym_identifier] = ACTIONS(1169), + [aux_sym_preproc_include_token1] = ACTIONS(1169), + [aux_sym_preproc_def_token1] = ACTIONS(1169), + [aux_sym_preproc_if_token1] = ACTIONS(1169), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1169), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1169), + [sym_preproc_directive] = ACTIONS(1169), + [anon_sym_LPAREN2] = ACTIONS(1171), + [anon_sym_BANG] = ACTIONS(1171), + [anon_sym_TILDE] = ACTIONS(1171), + [anon_sym_DASH] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1169), + [anon_sym_STAR] = ACTIONS(1171), + [anon_sym_AMP] = ACTIONS(1171), + [anon_sym_SEMI] = ACTIONS(1171), + [anon_sym___extension__] = ACTIONS(1169), + [anon_sym_typedef] = ACTIONS(1169), + [anon_sym_extern] = ACTIONS(1169), + [anon_sym___attribute__] = ACTIONS(1169), + [anon_sym___scanf] = ACTIONS(1169), + [anon_sym___printf] = ACTIONS(1169), + [anon_sym___read_mostly] = ACTIONS(1169), + [anon_sym___must_hold] = ACTIONS(1169), + [anon_sym___ro_after_init] = ACTIONS(1169), + [anon_sym___noreturn] = ACTIONS(1169), + [anon_sym___cold] = ACTIONS(1169), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1171), + [anon_sym___declspec] = ACTIONS(1169), + [anon_sym___init] = ACTIONS(1169), + [anon_sym___exit] = ACTIONS(1169), + [anon_sym___cdecl] = ACTIONS(1169), + [anon_sym___clrcall] = ACTIONS(1169), + [anon_sym___stdcall] = ACTIONS(1169), + [anon_sym___fastcall] = ACTIONS(1169), + [anon_sym___thiscall] = ACTIONS(1169), + [anon_sym___vectorcall] = ACTIONS(1169), + [anon_sym_LBRACE] = ACTIONS(1171), + [anon_sym_signed] = ACTIONS(1169), + [anon_sym_unsigned] = ACTIONS(1169), + [anon_sym_long] = ACTIONS(1169), + [anon_sym_short] = ACTIONS(1169), + [anon_sym_static] = ACTIONS(1169), + [anon_sym_auto] = ACTIONS(1169), + [anon_sym_register] = ACTIONS(1169), + [anon_sym_inline] = ACTIONS(1169), + [anon_sym___inline] = ACTIONS(1169), + [anon_sym___inline__] = ACTIONS(1169), + [anon_sym___forceinline] = ACTIONS(1169), + [anon_sym_thread_local] = ACTIONS(1169), + [anon_sym___thread] = ACTIONS(1169), + [anon_sym_const] = ACTIONS(1169), + [anon_sym_constexpr] = ACTIONS(1169), + [anon_sym_volatile] = ACTIONS(1169), + [anon_sym_restrict] = ACTIONS(1169), + [anon_sym___restrict__] = ACTIONS(1169), + [anon_sym__Atomic] = ACTIONS(1169), + [anon_sym__Noreturn] = ACTIONS(1169), + [anon_sym_noreturn] = ACTIONS(1169), + [anon_sym_alignas] = ACTIONS(1169), + [anon_sym__Alignas] = ACTIONS(1169), + [sym_primitive_type] = ACTIONS(1169), + [anon_sym_enum] = ACTIONS(1169), + [anon_sym_struct] = ACTIONS(1169), + [anon_sym_union] = ACTIONS(1169), + [anon_sym_if] = ACTIONS(1169), + [anon_sym_else] = ACTIONS(1169), + [anon_sym_switch] = ACTIONS(1169), + [anon_sym_case] = ACTIONS(1169), + [anon_sym_default] = ACTIONS(1169), + [anon_sym_while] = ACTIONS(1169), + [anon_sym_do] = ACTIONS(1169), + [anon_sym_for] = ACTIONS(1169), + [anon_sym_return] = ACTIONS(1169), + [anon_sym_break] = ACTIONS(1169), + [anon_sym_continue] = ACTIONS(1169), + [anon_sym_goto] = ACTIONS(1169), + [anon_sym___try] = ACTIONS(1169), + [anon_sym___leave] = ACTIONS(1169), + [anon_sym_DASH_DASH] = ACTIONS(1171), + [anon_sym_PLUS_PLUS] = ACTIONS(1171), + [anon_sym_sizeof] = ACTIONS(1169), + [anon_sym___alignof__] = ACTIONS(1169), + [anon_sym___alignof] = ACTIONS(1169), + [anon_sym__alignof] = ACTIONS(1169), + [anon_sym_alignof] = ACTIONS(1169), + [anon_sym__Alignof] = ACTIONS(1169), + [anon_sym_offsetof] = ACTIONS(1169), + [anon_sym__Generic] = ACTIONS(1169), + [anon_sym_asm] = ACTIONS(1169), + [anon_sym___asm__] = ACTIONS(1169), + [sym_number_literal] = ACTIONS(1171), + [anon_sym_L_SQUOTE] = ACTIONS(1171), + [anon_sym_u_SQUOTE] = ACTIONS(1171), + [anon_sym_U_SQUOTE] = ACTIONS(1171), + [anon_sym_u8_SQUOTE] = ACTIONS(1171), + [anon_sym_SQUOTE] = ACTIONS(1171), + [anon_sym_L_DQUOTE] = ACTIONS(1171), + [anon_sym_u_DQUOTE] = ACTIONS(1171), + [anon_sym_U_DQUOTE] = ACTIONS(1171), + [anon_sym_u8_DQUOTE] = ACTIONS(1171), + [anon_sym_DQUOTE] = ACTIONS(1171), + [sym_true] = ACTIONS(1169), + [sym_false] = ACTIONS(1169), + [anon_sym_NULL] = ACTIONS(1169), + [anon_sym_nullptr] = ACTIONS(1169), + [sym_comment] = ACTIONS(3), + }, + [282] = { + [sym_identifier] = ACTIONS(1225), + [aux_sym_preproc_include_token1] = ACTIONS(1225), + [aux_sym_preproc_def_token1] = ACTIONS(1225), + [aux_sym_preproc_if_token1] = ACTIONS(1225), + [aux_sym_preproc_if_token2] = ACTIONS(1225), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1225), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1225), + [sym_preproc_directive] = ACTIONS(1225), + [anon_sym_LPAREN2] = ACTIONS(1227), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_TILDE] = ACTIONS(1227), + [anon_sym_DASH] = ACTIONS(1225), + [anon_sym_PLUS] = ACTIONS(1225), + [anon_sym_STAR] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(1227), + [anon_sym_SEMI] = ACTIONS(1227), + [anon_sym___extension__] = ACTIONS(1225), + [anon_sym_typedef] = ACTIONS(1225), + [anon_sym_extern] = ACTIONS(1225), + [anon_sym___attribute__] = ACTIONS(1225), + [anon_sym___scanf] = ACTIONS(1225), + [anon_sym___printf] = ACTIONS(1225), + [anon_sym___read_mostly] = ACTIONS(1225), + [anon_sym___must_hold] = ACTIONS(1225), + [anon_sym___ro_after_init] = ACTIONS(1225), + [anon_sym___noreturn] = ACTIONS(1225), + [anon_sym___cold] = ACTIONS(1225), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1227), + [anon_sym___declspec] = ACTIONS(1225), + [anon_sym___init] = ACTIONS(1225), + [anon_sym___exit] = ACTIONS(1225), + [anon_sym___cdecl] = ACTIONS(1225), + [anon_sym___clrcall] = ACTIONS(1225), + [anon_sym___stdcall] = ACTIONS(1225), + [anon_sym___fastcall] = ACTIONS(1225), + [anon_sym___thiscall] = ACTIONS(1225), + [anon_sym___vectorcall] = ACTIONS(1225), + [anon_sym_LBRACE] = ACTIONS(1227), + [anon_sym_signed] = ACTIONS(1225), + [anon_sym_unsigned] = ACTIONS(1225), + [anon_sym_long] = ACTIONS(1225), + [anon_sym_short] = ACTIONS(1225), + [anon_sym_static] = ACTIONS(1225), + [anon_sym_auto] = ACTIONS(1225), + [anon_sym_register] = ACTIONS(1225), + [anon_sym_inline] = ACTIONS(1225), + [anon_sym___inline] = ACTIONS(1225), + [anon_sym___inline__] = ACTIONS(1225), + [anon_sym___forceinline] = ACTIONS(1225), + [anon_sym_thread_local] = ACTIONS(1225), + [anon_sym___thread] = ACTIONS(1225), + [anon_sym_const] = ACTIONS(1225), + [anon_sym_constexpr] = ACTIONS(1225), + [anon_sym_volatile] = ACTIONS(1225), + [anon_sym_restrict] = ACTIONS(1225), + [anon_sym___restrict__] = ACTIONS(1225), + [anon_sym__Atomic] = ACTIONS(1225), + [anon_sym__Noreturn] = ACTIONS(1225), + [anon_sym_noreturn] = ACTIONS(1225), + [anon_sym_alignas] = ACTIONS(1225), + [anon_sym__Alignas] = ACTIONS(1225), + [sym_primitive_type] = ACTIONS(1225), + [anon_sym_enum] = ACTIONS(1225), + [anon_sym_struct] = ACTIONS(1225), + [anon_sym_union] = ACTIONS(1225), + [anon_sym_if] = ACTIONS(1225), + [anon_sym_else] = ACTIONS(1225), + [anon_sym_switch] = ACTIONS(1225), + [anon_sym_case] = ACTIONS(1225), + [anon_sym_default] = ACTIONS(1225), + [anon_sym_while] = ACTIONS(1225), + [anon_sym_do] = ACTIONS(1225), + [anon_sym_for] = ACTIONS(1225), + [anon_sym_return] = ACTIONS(1225), + [anon_sym_break] = ACTIONS(1225), + [anon_sym_continue] = ACTIONS(1225), + [anon_sym_goto] = ACTIONS(1225), + [anon_sym___try] = ACTIONS(1225), + [anon_sym___leave] = ACTIONS(1225), + [anon_sym_DASH_DASH] = ACTIONS(1227), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_sizeof] = ACTIONS(1225), + [anon_sym___alignof__] = ACTIONS(1225), + [anon_sym___alignof] = ACTIONS(1225), + [anon_sym__alignof] = ACTIONS(1225), + [anon_sym_alignof] = ACTIONS(1225), + [anon_sym__Alignof] = ACTIONS(1225), + [anon_sym_offsetof] = ACTIONS(1225), + [anon_sym__Generic] = ACTIONS(1225), + [anon_sym_asm] = ACTIONS(1225), + [anon_sym___asm__] = ACTIONS(1225), + [sym_number_literal] = ACTIONS(1227), + [anon_sym_L_SQUOTE] = ACTIONS(1227), + [anon_sym_u_SQUOTE] = ACTIONS(1227), + [anon_sym_U_SQUOTE] = ACTIONS(1227), + [anon_sym_u8_SQUOTE] = ACTIONS(1227), + [anon_sym_SQUOTE] = ACTIONS(1227), + [anon_sym_L_DQUOTE] = ACTIONS(1227), + [anon_sym_u_DQUOTE] = ACTIONS(1227), + [anon_sym_U_DQUOTE] = ACTIONS(1227), + [anon_sym_u8_DQUOTE] = ACTIONS(1227), + [anon_sym_DQUOTE] = ACTIONS(1227), + [sym_true] = ACTIONS(1225), + [sym_false] = ACTIONS(1225), + [anon_sym_NULL] = ACTIONS(1225), + [anon_sym_nullptr] = ACTIONS(1225), [sym_comment] = ACTIONS(3), }, - [248] = { + [283] = { [ts_builtin_sym_end] = ACTIONS(1175), [sym_identifier] = ACTIONS(1173), [aux_sym_preproc_include_token1] = ACTIONS(1173), @@ -43101,9 +48374,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___read_mostly] = ACTIONS(1173), [anon_sym___must_hold] = ACTIONS(1173), [anon_sym___ro_after_init] = ACTIONS(1173), - [anon_sym___init] = ACTIONS(1173), + [anon_sym___noreturn] = ACTIONS(1173), + [anon_sym___cold] = ACTIONS(1173), [anon_sym_LBRACK_LBRACK] = ACTIONS(1175), [anon_sym___declspec] = ACTIONS(1173), + [anon_sym___init] = ACTIONS(1173), + [anon_sym___exit] = ACTIONS(1173), [anon_sym___cdecl] = ACTIONS(1173), [anon_sym___clrcall] = ACTIONS(1173), [anon_sym___stdcall] = ACTIONS(1173), @@ -43181,1900 +48457,2499 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1173), [sym_comment] = ACTIONS(3), }, - [249] = { - [sym_identifier] = ACTIONS(1253), - [aux_sym_preproc_include_token1] = ACTIONS(1253), - [aux_sym_preproc_def_token1] = ACTIONS(1253), - [aux_sym_preproc_if_token1] = ACTIONS(1253), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1253), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1253), - [sym_preproc_directive] = ACTIONS(1253), - [anon_sym_LPAREN2] = ACTIONS(1255), - [anon_sym_BANG] = ACTIONS(1255), - [anon_sym_TILDE] = ACTIONS(1255), - [anon_sym_DASH] = ACTIONS(1253), - [anon_sym_PLUS] = ACTIONS(1253), - [anon_sym_STAR] = ACTIONS(1255), - [anon_sym_AMP] = ACTIONS(1255), - [anon_sym_SEMI] = ACTIONS(1255), - [anon_sym___extension__] = ACTIONS(1253), - [anon_sym_typedef] = ACTIONS(1253), - [anon_sym_extern] = ACTIONS(1253), - [anon_sym___attribute__] = ACTIONS(1253), - [anon_sym___scanf] = ACTIONS(1253), - [anon_sym___printf] = ACTIONS(1253), - [anon_sym___read_mostly] = ACTIONS(1253), - [anon_sym___must_hold] = ACTIONS(1253), - [anon_sym___ro_after_init] = ACTIONS(1253), - [anon_sym___init] = ACTIONS(1253), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1255), - [anon_sym___declspec] = ACTIONS(1253), - [anon_sym___cdecl] = ACTIONS(1253), - [anon_sym___clrcall] = ACTIONS(1253), - [anon_sym___stdcall] = ACTIONS(1253), - [anon_sym___fastcall] = ACTIONS(1253), - [anon_sym___thiscall] = ACTIONS(1253), - [anon_sym___vectorcall] = ACTIONS(1253), - [anon_sym_LBRACE] = ACTIONS(1255), - [anon_sym_RBRACE] = ACTIONS(1255), - [anon_sym_signed] = ACTIONS(1253), - [anon_sym_unsigned] = ACTIONS(1253), - [anon_sym_long] = ACTIONS(1253), - [anon_sym_short] = ACTIONS(1253), - [anon_sym_static] = ACTIONS(1253), - [anon_sym_auto] = ACTIONS(1253), - [anon_sym_register] = ACTIONS(1253), - [anon_sym_inline] = ACTIONS(1253), - [anon_sym___inline] = ACTIONS(1253), - [anon_sym___inline__] = ACTIONS(1253), - [anon_sym___forceinline] = ACTIONS(1253), - [anon_sym_thread_local] = ACTIONS(1253), - [anon_sym___thread] = ACTIONS(1253), - [anon_sym_const] = ACTIONS(1253), - [anon_sym_constexpr] = ACTIONS(1253), - [anon_sym_volatile] = ACTIONS(1253), - [anon_sym_restrict] = ACTIONS(1253), - [anon_sym___restrict__] = ACTIONS(1253), - [anon_sym__Atomic] = ACTIONS(1253), - [anon_sym__Noreturn] = ACTIONS(1253), - [anon_sym_noreturn] = ACTIONS(1253), - [anon_sym_alignas] = ACTIONS(1253), - [anon_sym__Alignas] = ACTIONS(1253), - [sym_primitive_type] = ACTIONS(1253), - [anon_sym_enum] = ACTIONS(1253), - [anon_sym_struct] = ACTIONS(1253), - [anon_sym_union] = ACTIONS(1253), - [anon_sym_if] = ACTIONS(1253), - [anon_sym_else] = ACTIONS(1253), - [anon_sym_switch] = ACTIONS(1253), - [anon_sym_case] = ACTIONS(1253), - [anon_sym_default] = ACTIONS(1253), - [anon_sym_while] = ACTIONS(1253), - [anon_sym_do] = ACTIONS(1253), - [anon_sym_for] = ACTIONS(1253), - [anon_sym_return] = ACTIONS(1253), - [anon_sym_break] = ACTIONS(1253), - [anon_sym_continue] = ACTIONS(1253), - [anon_sym_goto] = ACTIONS(1253), - [anon_sym___try] = ACTIONS(1253), - [anon_sym___leave] = ACTIONS(1253), - [anon_sym_DASH_DASH] = ACTIONS(1255), - [anon_sym_PLUS_PLUS] = ACTIONS(1255), - [anon_sym_sizeof] = ACTIONS(1253), - [anon_sym___alignof__] = ACTIONS(1253), - [anon_sym___alignof] = ACTIONS(1253), - [anon_sym__alignof] = ACTIONS(1253), - [anon_sym_alignof] = ACTIONS(1253), - [anon_sym__Alignof] = ACTIONS(1253), - [anon_sym_offsetof] = ACTIONS(1253), - [anon_sym__Generic] = ACTIONS(1253), - [anon_sym_asm] = ACTIONS(1253), - [anon_sym___asm__] = ACTIONS(1253), - [sym_number_literal] = ACTIONS(1255), - [anon_sym_L_SQUOTE] = ACTIONS(1255), - [anon_sym_u_SQUOTE] = ACTIONS(1255), - [anon_sym_U_SQUOTE] = ACTIONS(1255), - [anon_sym_u8_SQUOTE] = ACTIONS(1255), - [anon_sym_SQUOTE] = ACTIONS(1255), - [anon_sym_L_DQUOTE] = ACTIONS(1255), - [anon_sym_u_DQUOTE] = ACTIONS(1255), - [anon_sym_U_DQUOTE] = ACTIONS(1255), - [anon_sym_u8_DQUOTE] = ACTIONS(1255), - [anon_sym_DQUOTE] = ACTIONS(1255), - [sym_true] = ACTIONS(1253), - [sym_false] = ACTIONS(1253), - [anon_sym_NULL] = ACTIONS(1253), - [anon_sym_nullptr] = ACTIONS(1253), - [sym_comment] = ACTIONS(3), - }, - [250] = { - [sym_identifier] = ACTIONS(1249), - [aux_sym_preproc_include_token1] = ACTIONS(1249), - [aux_sym_preproc_def_token1] = ACTIONS(1249), - [aux_sym_preproc_if_token1] = ACTIONS(1249), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1249), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1249), - [sym_preproc_directive] = ACTIONS(1249), - [anon_sym_LPAREN2] = ACTIONS(1251), - [anon_sym_BANG] = ACTIONS(1251), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1249), - [anon_sym_STAR] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1251), - [anon_sym_SEMI] = ACTIONS(1251), - [anon_sym___extension__] = ACTIONS(1249), - [anon_sym_typedef] = ACTIONS(1249), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym___attribute__] = ACTIONS(1249), - [anon_sym___scanf] = ACTIONS(1249), - [anon_sym___printf] = ACTIONS(1249), - [anon_sym___read_mostly] = ACTIONS(1249), - [anon_sym___must_hold] = ACTIONS(1249), - [anon_sym___ro_after_init] = ACTIONS(1249), - [anon_sym___init] = ACTIONS(1249), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1251), - [anon_sym___declspec] = ACTIONS(1249), - [anon_sym___cdecl] = ACTIONS(1249), - [anon_sym___clrcall] = ACTIONS(1249), - [anon_sym___stdcall] = ACTIONS(1249), - [anon_sym___fastcall] = ACTIONS(1249), - [anon_sym___thiscall] = ACTIONS(1249), - [anon_sym___vectorcall] = ACTIONS(1249), - [anon_sym_LBRACE] = ACTIONS(1251), - [anon_sym_RBRACE] = ACTIONS(1251), - [anon_sym_signed] = ACTIONS(1249), - [anon_sym_unsigned] = ACTIONS(1249), - [anon_sym_long] = ACTIONS(1249), - [anon_sym_short] = ACTIONS(1249), - [anon_sym_static] = ACTIONS(1249), - [anon_sym_auto] = ACTIONS(1249), - [anon_sym_register] = ACTIONS(1249), - [anon_sym_inline] = ACTIONS(1249), - [anon_sym___inline] = ACTIONS(1249), - [anon_sym___inline__] = ACTIONS(1249), - [anon_sym___forceinline] = ACTIONS(1249), - [anon_sym_thread_local] = ACTIONS(1249), - [anon_sym___thread] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_constexpr] = ACTIONS(1249), - [anon_sym_volatile] = ACTIONS(1249), - [anon_sym_restrict] = ACTIONS(1249), - [anon_sym___restrict__] = ACTIONS(1249), - [anon_sym__Atomic] = ACTIONS(1249), - [anon_sym__Noreturn] = ACTIONS(1249), - [anon_sym_noreturn] = ACTIONS(1249), - [anon_sym_alignas] = ACTIONS(1249), - [anon_sym__Alignas] = ACTIONS(1249), - [sym_primitive_type] = ACTIONS(1249), - [anon_sym_enum] = ACTIONS(1249), - [anon_sym_struct] = ACTIONS(1249), - [anon_sym_union] = ACTIONS(1249), - [anon_sym_if] = ACTIONS(1249), - [anon_sym_else] = ACTIONS(1249), - [anon_sym_switch] = ACTIONS(1249), - [anon_sym_case] = ACTIONS(1249), - [anon_sym_default] = ACTIONS(1249), - [anon_sym_while] = ACTIONS(1249), - [anon_sym_do] = ACTIONS(1249), - [anon_sym_for] = ACTIONS(1249), - [anon_sym_return] = ACTIONS(1249), - [anon_sym_break] = ACTIONS(1249), - [anon_sym_continue] = ACTIONS(1249), - [anon_sym_goto] = ACTIONS(1249), - [anon_sym___try] = ACTIONS(1249), - [anon_sym___leave] = ACTIONS(1249), - [anon_sym_DASH_DASH] = ACTIONS(1251), - [anon_sym_PLUS_PLUS] = ACTIONS(1251), - [anon_sym_sizeof] = ACTIONS(1249), - [anon_sym___alignof__] = ACTIONS(1249), - [anon_sym___alignof] = ACTIONS(1249), - [anon_sym__alignof] = ACTIONS(1249), - [anon_sym_alignof] = ACTIONS(1249), - [anon_sym__Alignof] = ACTIONS(1249), - [anon_sym_offsetof] = ACTIONS(1249), - [anon_sym__Generic] = ACTIONS(1249), - [anon_sym_asm] = ACTIONS(1249), - [anon_sym___asm__] = ACTIONS(1249), - [sym_number_literal] = ACTIONS(1251), - [anon_sym_L_SQUOTE] = ACTIONS(1251), - [anon_sym_u_SQUOTE] = ACTIONS(1251), - [anon_sym_U_SQUOTE] = ACTIONS(1251), - [anon_sym_u8_SQUOTE] = ACTIONS(1251), - [anon_sym_SQUOTE] = ACTIONS(1251), - [anon_sym_L_DQUOTE] = ACTIONS(1251), - [anon_sym_u_DQUOTE] = ACTIONS(1251), - [anon_sym_U_DQUOTE] = ACTIONS(1251), - [anon_sym_u8_DQUOTE] = ACTIONS(1251), - [anon_sym_DQUOTE] = ACTIONS(1251), - [sym_true] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [anon_sym_NULL] = ACTIONS(1249), - [anon_sym_nullptr] = ACTIONS(1249), + [284] = { + [sym_identifier] = ACTIONS(1225), + [aux_sym_preproc_include_token1] = ACTIONS(1225), + [aux_sym_preproc_def_token1] = ACTIONS(1225), + [aux_sym_preproc_if_token1] = ACTIONS(1225), + [aux_sym_preproc_if_token2] = ACTIONS(1225), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1225), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1225), + [sym_preproc_directive] = ACTIONS(1225), + [anon_sym_LPAREN2] = ACTIONS(1227), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_TILDE] = ACTIONS(1227), + [anon_sym_DASH] = ACTIONS(1225), + [anon_sym_PLUS] = ACTIONS(1225), + [anon_sym_STAR] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(1227), + [anon_sym_SEMI] = ACTIONS(1227), + [anon_sym___extension__] = ACTIONS(1225), + [anon_sym_typedef] = ACTIONS(1225), + [anon_sym_extern] = ACTIONS(1225), + [anon_sym___attribute__] = ACTIONS(1225), + [anon_sym___scanf] = ACTIONS(1225), + [anon_sym___printf] = ACTIONS(1225), + [anon_sym___read_mostly] = ACTIONS(1225), + [anon_sym___must_hold] = ACTIONS(1225), + [anon_sym___ro_after_init] = ACTIONS(1225), + [anon_sym___noreturn] = ACTIONS(1225), + [anon_sym___cold] = ACTIONS(1225), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1227), + [anon_sym___declspec] = ACTIONS(1225), + [anon_sym___init] = ACTIONS(1225), + [anon_sym___exit] = ACTIONS(1225), + [anon_sym___cdecl] = ACTIONS(1225), + [anon_sym___clrcall] = ACTIONS(1225), + [anon_sym___stdcall] = ACTIONS(1225), + [anon_sym___fastcall] = ACTIONS(1225), + [anon_sym___thiscall] = ACTIONS(1225), + [anon_sym___vectorcall] = ACTIONS(1225), + [anon_sym_LBRACE] = ACTIONS(1227), + [anon_sym_signed] = ACTIONS(1225), + [anon_sym_unsigned] = ACTIONS(1225), + [anon_sym_long] = ACTIONS(1225), + [anon_sym_short] = ACTIONS(1225), + [anon_sym_static] = ACTIONS(1225), + [anon_sym_auto] = ACTIONS(1225), + [anon_sym_register] = ACTIONS(1225), + [anon_sym_inline] = ACTIONS(1225), + [anon_sym___inline] = ACTIONS(1225), + [anon_sym___inline__] = ACTIONS(1225), + [anon_sym___forceinline] = ACTIONS(1225), + [anon_sym_thread_local] = ACTIONS(1225), + [anon_sym___thread] = ACTIONS(1225), + [anon_sym_const] = ACTIONS(1225), + [anon_sym_constexpr] = ACTIONS(1225), + [anon_sym_volatile] = ACTIONS(1225), + [anon_sym_restrict] = ACTIONS(1225), + [anon_sym___restrict__] = ACTIONS(1225), + [anon_sym__Atomic] = ACTIONS(1225), + [anon_sym__Noreturn] = ACTIONS(1225), + [anon_sym_noreturn] = ACTIONS(1225), + [anon_sym_alignas] = ACTIONS(1225), + [anon_sym__Alignas] = ACTIONS(1225), + [sym_primitive_type] = ACTIONS(1225), + [anon_sym_enum] = ACTIONS(1225), + [anon_sym_struct] = ACTIONS(1225), + [anon_sym_union] = ACTIONS(1225), + [anon_sym_if] = ACTIONS(1225), + [anon_sym_else] = ACTIONS(1225), + [anon_sym_switch] = ACTIONS(1225), + [anon_sym_case] = ACTIONS(1225), + [anon_sym_default] = ACTIONS(1225), + [anon_sym_while] = ACTIONS(1225), + [anon_sym_do] = ACTIONS(1225), + [anon_sym_for] = ACTIONS(1225), + [anon_sym_return] = ACTIONS(1225), + [anon_sym_break] = ACTIONS(1225), + [anon_sym_continue] = ACTIONS(1225), + [anon_sym_goto] = ACTIONS(1225), + [anon_sym___try] = ACTIONS(1225), + [anon_sym___leave] = ACTIONS(1225), + [anon_sym_DASH_DASH] = ACTIONS(1227), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_sizeof] = ACTIONS(1225), + [anon_sym___alignof__] = ACTIONS(1225), + [anon_sym___alignof] = ACTIONS(1225), + [anon_sym__alignof] = ACTIONS(1225), + [anon_sym_alignof] = ACTIONS(1225), + [anon_sym__Alignof] = ACTIONS(1225), + [anon_sym_offsetof] = ACTIONS(1225), + [anon_sym__Generic] = ACTIONS(1225), + [anon_sym_asm] = ACTIONS(1225), + [anon_sym___asm__] = ACTIONS(1225), + [sym_number_literal] = ACTIONS(1227), + [anon_sym_L_SQUOTE] = ACTIONS(1227), + [anon_sym_u_SQUOTE] = ACTIONS(1227), + [anon_sym_U_SQUOTE] = ACTIONS(1227), + [anon_sym_u8_SQUOTE] = ACTIONS(1227), + [anon_sym_SQUOTE] = ACTIONS(1227), + [anon_sym_L_DQUOTE] = ACTIONS(1227), + [anon_sym_u_DQUOTE] = ACTIONS(1227), + [anon_sym_U_DQUOTE] = ACTIONS(1227), + [anon_sym_u8_DQUOTE] = ACTIONS(1227), + [anon_sym_DQUOTE] = ACTIONS(1227), + [sym_true] = ACTIONS(1225), + [sym_false] = ACTIONS(1225), + [anon_sym_NULL] = ACTIONS(1225), + [anon_sym_nullptr] = ACTIONS(1225), [sym_comment] = ACTIONS(3), }, - [251] = { - [ts_builtin_sym_end] = ACTIONS(1171), - [sym_identifier] = ACTIONS(1169), - [aux_sym_preproc_include_token1] = ACTIONS(1169), - [aux_sym_preproc_def_token1] = ACTIONS(1169), - [aux_sym_preproc_if_token1] = ACTIONS(1169), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1169), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1169), - [sym_preproc_directive] = ACTIONS(1169), - [anon_sym_LPAREN2] = ACTIONS(1171), - [anon_sym_BANG] = ACTIONS(1171), - [anon_sym_TILDE] = ACTIONS(1171), - [anon_sym_DASH] = ACTIONS(1169), - [anon_sym_PLUS] = ACTIONS(1169), - [anon_sym_STAR] = ACTIONS(1171), - [anon_sym_AMP] = ACTIONS(1171), - [anon_sym_SEMI] = ACTIONS(1171), - [anon_sym___extension__] = ACTIONS(1169), - [anon_sym_typedef] = ACTIONS(1169), - [anon_sym_extern] = ACTIONS(1169), - [anon_sym___attribute__] = ACTIONS(1169), - [anon_sym___scanf] = ACTIONS(1169), - [anon_sym___printf] = ACTIONS(1169), - [anon_sym___read_mostly] = ACTIONS(1169), - [anon_sym___must_hold] = ACTIONS(1169), - [anon_sym___ro_after_init] = ACTIONS(1169), - [anon_sym___init] = ACTIONS(1169), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1171), - [anon_sym___declspec] = ACTIONS(1169), - [anon_sym___cdecl] = ACTIONS(1169), - [anon_sym___clrcall] = ACTIONS(1169), - [anon_sym___stdcall] = ACTIONS(1169), - [anon_sym___fastcall] = ACTIONS(1169), - [anon_sym___thiscall] = ACTIONS(1169), - [anon_sym___vectorcall] = ACTIONS(1169), - [anon_sym_LBRACE] = ACTIONS(1171), - [anon_sym_signed] = ACTIONS(1169), - [anon_sym_unsigned] = ACTIONS(1169), - [anon_sym_long] = ACTIONS(1169), - [anon_sym_short] = ACTIONS(1169), - [anon_sym_static] = ACTIONS(1169), - [anon_sym_auto] = ACTIONS(1169), - [anon_sym_register] = ACTIONS(1169), - [anon_sym_inline] = ACTIONS(1169), - [anon_sym___inline] = ACTIONS(1169), - [anon_sym___inline__] = ACTIONS(1169), - [anon_sym___forceinline] = ACTIONS(1169), - [anon_sym_thread_local] = ACTIONS(1169), - [anon_sym___thread] = ACTIONS(1169), - [anon_sym_const] = ACTIONS(1169), - [anon_sym_constexpr] = ACTIONS(1169), - [anon_sym_volatile] = ACTIONS(1169), - [anon_sym_restrict] = ACTIONS(1169), - [anon_sym___restrict__] = ACTIONS(1169), - [anon_sym__Atomic] = ACTIONS(1169), - [anon_sym__Noreturn] = ACTIONS(1169), - [anon_sym_noreturn] = ACTIONS(1169), - [anon_sym_alignas] = ACTIONS(1169), - [anon_sym__Alignas] = ACTIONS(1169), - [sym_primitive_type] = ACTIONS(1169), - [anon_sym_enum] = ACTIONS(1169), - [anon_sym_struct] = ACTIONS(1169), - [anon_sym_union] = ACTIONS(1169), - [anon_sym_if] = ACTIONS(1169), - [anon_sym_else] = ACTIONS(1169), - [anon_sym_switch] = ACTIONS(1169), - [anon_sym_case] = ACTIONS(1169), - [anon_sym_default] = ACTIONS(1169), - [anon_sym_while] = ACTIONS(1169), - [anon_sym_do] = ACTIONS(1169), - [anon_sym_for] = ACTIONS(1169), - [anon_sym_return] = ACTIONS(1169), - [anon_sym_break] = ACTIONS(1169), - [anon_sym_continue] = ACTIONS(1169), - [anon_sym_goto] = ACTIONS(1169), - [anon_sym___try] = ACTIONS(1169), - [anon_sym___leave] = ACTIONS(1169), - [anon_sym_DASH_DASH] = ACTIONS(1171), - [anon_sym_PLUS_PLUS] = ACTIONS(1171), - [anon_sym_sizeof] = ACTIONS(1169), - [anon_sym___alignof__] = ACTIONS(1169), - [anon_sym___alignof] = ACTIONS(1169), - [anon_sym__alignof] = ACTIONS(1169), - [anon_sym_alignof] = ACTIONS(1169), - [anon_sym__Alignof] = ACTIONS(1169), - [anon_sym_offsetof] = ACTIONS(1169), - [anon_sym__Generic] = ACTIONS(1169), - [anon_sym_asm] = ACTIONS(1169), - [anon_sym___asm__] = ACTIONS(1169), - [sym_number_literal] = ACTIONS(1171), - [anon_sym_L_SQUOTE] = ACTIONS(1171), - [anon_sym_u_SQUOTE] = ACTIONS(1171), - [anon_sym_U_SQUOTE] = ACTIONS(1171), - [anon_sym_u8_SQUOTE] = ACTIONS(1171), - [anon_sym_SQUOTE] = ACTIONS(1171), - [anon_sym_L_DQUOTE] = ACTIONS(1171), - [anon_sym_u_DQUOTE] = ACTIONS(1171), - [anon_sym_U_DQUOTE] = ACTIONS(1171), - [anon_sym_u8_DQUOTE] = ACTIONS(1171), - [anon_sym_DQUOTE] = ACTIONS(1171), - [sym_true] = ACTIONS(1169), - [sym_false] = ACTIONS(1169), - [anon_sym_NULL] = ACTIONS(1169), - [anon_sym_nullptr] = ACTIONS(1169), + [285] = { + [ts_builtin_sym_end] = ACTIONS(1179), + [sym_identifier] = ACTIONS(1177), + [aux_sym_preproc_include_token1] = ACTIONS(1177), + [aux_sym_preproc_def_token1] = ACTIONS(1177), + [aux_sym_preproc_if_token1] = ACTIONS(1177), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1177), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1177), + [sym_preproc_directive] = ACTIONS(1177), + [anon_sym_LPAREN2] = ACTIONS(1179), + [anon_sym_BANG] = ACTIONS(1179), + [anon_sym_TILDE] = ACTIONS(1179), + [anon_sym_DASH] = ACTIONS(1177), + [anon_sym_PLUS] = ACTIONS(1177), + [anon_sym_STAR] = ACTIONS(1179), + [anon_sym_AMP] = ACTIONS(1179), + [anon_sym_SEMI] = ACTIONS(1179), + [anon_sym___extension__] = ACTIONS(1177), + [anon_sym_typedef] = ACTIONS(1177), + [anon_sym_extern] = ACTIONS(1177), + [anon_sym___attribute__] = ACTIONS(1177), + [anon_sym___scanf] = ACTIONS(1177), + [anon_sym___printf] = ACTIONS(1177), + [anon_sym___read_mostly] = ACTIONS(1177), + [anon_sym___must_hold] = ACTIONS(1177), + [anon_sym___ro_after_init] = ACTIONS(1177), + [anon_sym___noreturn] = ACTIONS(1177), + [anon_sym___cold] = ACTIONS(1177), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1179), + [anon_sym___declspec] = ACTIONS(1177), + [anon_sym___init] = ACTIONS(1177), + [anon_sym___exit] = ACTIONS(1177), + [anon_sym___cdecl] = ACTIONS(1177), + [anon_sym___clrcall] = ACTIONS(1177), + [anon_sym___stdcall] = ACTIONS(1177), + [anon_sym___fastcall] = ACTIONS(1177), + [anon_sym___thiscall] = ACTIONS(1177), + [anon_sym___vectorcall] = ACTIONS(1177), + [anon_sym_LBRACE] = ACTIONS(1179), + [anon_sym_signed] = ACTIONS(1177), + [anon_sym_unsigned] = ACTIONS(1177), + [anon_sym_long] = ACTIONS(1177), + [anon_sym_short] = ACTIONS(1177), + [anon_sym_static] = ACTIONS(1177), + [anon_sym_auto] = ACTIONS(1177), + [anon_sym_register] = ACTIONS(1177), + [anon_sym_inline] = ACTIONS(1177), + [anon_sym___inline] = ACTIONS(1177), + [anon_sym___inline__] = ACTIONS(1177), + [anon_sym___forceinline] = ACTIONS(1177), + [anon_sym_thread_local] = ACTIONS(1177), + [anon_sym___thread] = ACTIONS(1177), + [anon_sym_const] = ACTIONS(1177), + [anon_sym_constexpr] = ACTIONS(1177), + [anon_sym_volatile] = ACTIONS(1177), + [anon_sym_restrict] = ACTIONS(1177), + [anon_sym___restrict__] = ACTIONS(1177), + [anon_sym__Atomic] = ACTIONS(1177), + [anon_sym__Noreturn] = ACTIONS(1177), + [anon_sym_noreturn] = ACTIONS(1177), + [anon_sym_alignas] = ACTIONS(1177), + [anon_sym__Alignas] = ACTIONS(1177), + [sym_primitive_type] = ACTIONS(1177), + [anon_sym_enum] = ACTIONS(1177), + [anon_sym_struct] = ACTIONS(1177), + [anon_sym_union] = ACTIONS(1177), + [anon_sym_if] = ACTIONS(1177), + [anon_sym_else] = ACTIONS(1177), + [anon_sym_switch] = ACTIONS(1177), + [anon_sym_case] = ACTIONS(1177), + [anon_sym_default] = ACTIONS(1177), + [anon_sym_while] = ACTIONS(1177), + [anon_sym_do] = ACTIONS(1177), + [anon_sym_for] = ACTIONS(1177), + [anon_sym_return] = ACTIONS(1177), + [anon_sym_break] = ACTIONS(1177), + [anon_sym_continue] = ACTIONS(1177), + [anon_sym_goto] = ACTIONS(1177), + [anon_sym___try] = ACTIONS(1177), + [anon_sym___leave] = ACTIONS(1177), + [anon_sym_DASH_DASH] = ACTIONS(1179), + [anon_sym_PLUS_PLUS] = ACTIONS(1179), + [anon_sym_sizeof] = ACTIONS(1177), + [anon_sym___alignof__] = ACTIONS(1177), + [anon_sym___alignof] = ACTIONS(1177), + [anon_sym__alignof] = ACTIONS(1177), + [anon_sym_alignof] = ACTIONS(1177), + [anon_sym__Alignof] = ACTIONS(1177), + [anon_sym_offsetof] = ACTIONS(1177), + [anon_sym__Generic] = ACTIONS(1177), + [anon_sym_asm] = ACTIONS(1177), + [anon_sym___asm__] = ACTIONS(1177), + [sym_number_literal] = ACTIONS(1179), + [anon_sym_L_SQUOTE] = ACTIONS(1179), + [anon_sym_u_SQUOTE] = ACTIONS(1179), + [anon_sym_U_SQUOTE] = ACTIONS(1179), + [anon_sym_u8_SQUOTE] = ACTIONS(1179), + [anon_sym_SQUOTE] = ACTIONS(1179), + [anon_sym_L_DQUOTE] = ACTIONS(1179), + [anon_sym_u_DQUOTE] = ACTIONS(1179), + [anon_sym_U_DQUOTE] = ACTIONS(1179), + [anon_sym_u8_DQUOTE] = ACTIONS(1179), + [anon_sym_DQUOTE] = ACTIONS(1179), + [sym_true] = ACTIONS(1177), + [sym_false] = ACTIONS(1177), + [anon_sym_NULL] = ACTIONS(1177), + [anon_sym_nullptr] = ACTIONS(1177), [sym_comment] = ACTIONS(3), }, - [252] = { - [sym_identifier] = ACTIONS(1375), - [aux_sym_preproc_include_token1] = ACTIONS(1375), - [aux_sym_preproc_def_token1] = ACTIONS(1375), - [aux_sym_preproc_if_token1] = ACTIONS(1375), - [aux_sym_preproc_if_token2] = ACTIONS(1375), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1375), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1375), - [sym_preproc_directive] = ACTIONS(1375), - [anon_sym_LPAREN2] = ACTIONS(1377), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_TILDE] = ACTIONS(1377), - [anon_sym_DASH] = ACTIONS(1375), - [anon_sym_PLUS] = ACTIONS(1375), - [anon_sym_STAR] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1377), - [anon_sym_SEMI] = ACTIONS(1377), - [anon_sym___extension__] = ACTIONS(1375), - [anon_sym_typedef] = ACTIONS(1375), - [anon_sym_extern] = ACTIONS(1375), - [anon_sym___attribute__] = ACTIONS(1375), - [anon_sym___scanf] = ACTIONS(1375), - [anon_sym___printf] = ACTIONS(1375), - [anon_sym___read_mostly] = ACTIONS(1375), - [anon_sym___must_hold] = ACTIONS(1375), - [anon_sym___ro_after_init] = ACTIONS(1375), - [anon_sym___init] = ACTIONS(1375), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1377), - [anon_sym___declspec] = ACTIONS(1375), - [anon_sym___cdecl] = ACTIONS(1375), - [anon_sym___clrcall] = ACTIONS(1375), - [anon_sym___stdcall] = ACTIONS(1375), - [anon_sym___fastcall] = ACTIONS(1375), - [anon_sym___thiscall] = ACTIONS(1375), - [anon_sym___vectorcall] = ACTIONS(1375), - [anon_sym_LBRACE] = ACTIONS(1377), - [anon_sym_signed] = ACTIONS(1375), - [anon_sym_unsigned] = ACTIONS(1375), - [anon_sym_long] = ACTIONS(1375), - [anon_sym_short] = ACTIONS(1375), - [anon_sym_static] = ACTIONS(1375), - [anon_sym_auto] = ACTIONS(1375), - [anon_sym_register] = ACTIONS(1375), - [anon_sym_inline] = ACTIONS(1375), - [anon_sym___inline] = ACTIONS(1375), - [anon_sym___inline__] = ACTIONS(1375), - [anon_sym___forceinline] = ACTIONS(1375), - [anon_sym_thread_local] = ACTIONS(1375), - [anon_sym___thread] = ACTIONS(1375), - [anon_sym_const] = ACTIONS(1375), - [anon_sym_constexpr] = ACTIONS(1375), - [anon_sym_volatile] = ACTIONS(1375), - [anon_sym_restrict] = ACTIONS(1375), - [anon_sym___restrict__] = ACTIONS(1375), - [anon_sym__Atomic] = ACTIONS(1375), - [anon_sym__Noreturn] = ACTIONS(1375), - [anon_sym_noreturn] = ACTIONS(1375), - [anon_sym_alignas] = ACTIONS(1375), - [anon_sym__Alignas] = ACTIONS(1375), - [sym_primitive_type] = ACTIONS(1375), - [anon_sym_enum] = ACTIONS(1375), - [anon_sym_struct] = ACTIONS(1375), - [anon_sym_union] = ACTIONS(1375), - [anon_sym_if] = ACTIONS(1375), - [anon_sym_switch] = ACTIONS(1375), - [anon_sym_case] = ACTIONS(1375), - [anon_sym_default] = ACTIONS(1375), - [anon_sym_while] = ACTIONS(1375), - [anon_sym_do] = ACTIONS(1375), - [anon_sym_for] = ACTIONS(1375), - [anon_sym_return] = ACTIONS(1375), - [anon_sym_break] = ACTIONS(1375), - [anon_sym_continue] = ACTIONS(1375), - [anon_sym_goto] = ACTIONS(1375), - [anon_sym___try] = ACTIONS(1375), - [anon_sym___leave] = ACTIONS(1375), - [anon_sym_DASH_DASH] = ACTIONS(1377), - [anon_sym_PLUS_PLUS] = ACTIONS(1377), - [anon_sym_sizeof] = ACTIONS(1375), - [anon_sym___alignof__] = ACTIONS(1375), - [anon_sym___alignof] = ACTIONS(1375), - [anon_sym__alignof] = ACTIONS(1375), - [anon_sym_alignof] = ACTIONS(1375), - [anon_sym__Alignof] = ACTIONS(1375), - [anon_sym_offsetof] = ACTIONS(1375), - [anon_sym__Generic] = ACTIONS(1375), - [anon_sym_asm] = ACTIONS(1375), - [anon_sym___asm__] = ACTIONS(1375), - [sym_number_literal] = ACTIONS(1377), - [anon_sym_L_SQUOTE] = ACTIONS(1377), - [anon_sym_u_SQUOTE] = ACTIONS(1377), - [anon_sym_U_SQUOTE] = ACTIONS(1377), - [anon_sym_u8_SQUOTE] = ACTIONS(1377), - [anon_sym_SQUOTE] = ACTIONS(1377), - [anon_sym_L_DQUOTE] = ACTIONS(1377), - [anon_sym_u_DQUOTE] = ACTIONS(1377), - [anon_sym_U_DQUOTE] = ACTIONS(1377), - [anon_sym_u8_DQUOTE] = ACTIONS(1377), - [anon_sym_DQUOTE] = ACTIONS(1377), - [sym_true] = ACTIONS(1375), - [sym_false] = ACTIONS(1375), - [anon_sym_NULL] = ACTIONS(1375), - [anon_sym_nullptr] = ACTIONS(1375), + [286] = { + [sym_identifier] = ACTIONS(1197), + [aux_sym_preproc_include_token1] = ACTIONS(1197), + [aux_sym_preproc_def_token1] = ACTIONS(1197), + [aux_sym_preproc_if_token1] = ACTIONS(1197), + [aux_sym_preproc_if_token2] = ACTIONS(1197), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1197), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1197), + [sym_preproc_directive] = ACTIONS(1197), + [anon_sym_LPAREN2] = ACTIONS(1199), + [anon_sym_BANG] = ACTIONS(1199), + [anon_sym_TILDE] = ACTIONS(1199), + [anon_sym_DASH] = ACTIONS(1197), + [anon_sym_PLUS] = ACTIONS(1197), + [anon_sym_STAR] = ACTIONS(1199), + [anon_sym_AMP] = ACTIONS(1199), + [anon_sym_SEMI] = ACTIONS(1199), + [anon_sym___extension__] = ACTIONS(1197), + [anon_sym_typedef] = ACTIONS(1197), + [anon_sym_extern] = ACTIONS(1197), + [anon_sym___attribute__] = ACTIONS(1197), + [anon_sym___scanf] = ACTIONS(1197), + [anon_sym___printf] = ACTIONS(1197), + [anon_sym___read_mostly] = ACTIONS(1197), + [anon_sym___must_hold] = ACTIONS(1197), + [anon_sym___ro_after_init] = ACTIONS(1197), + [anon_sym___noreturn] = ACTIONS(1197), + [anon_sym___cold] = ACTIONS(1197), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1199), + [anon_sym___declspec] = ACTIONS(1197), + [anon_sym___init] = ACTIONS(1197), + [anon_sym___exit] = ACTIONS(1197), + [anon_sym___cdecl] = ACTIONS(1197), + [anon_sym___clrcall] = ACTIONS(1197), + [anon_sym___stdcall] = ACTIONS(1197), + [anon_sym___fastcall] = ACTIONS(1197), + [anon_sym___thiscall] = ACTIONS(1197), + [anon_sym___vectorcall] = ACTIONS(1197), + [anon_sym_LBRACE] = ACTIONS(1199), + [anon_sym_signed] = ACTIONS(1197), + [anon_sym_unsigned] = ACTIONS(1197), + [anon_sym_long] = ACTIONS(1197), + [anon_sym_short] = ACTIONS(1197), + [anon_sym_static] = ACTIONS(1197), + [anon_sym_auto] = ACTIONS(1197), + [anon_sym_register] = ACTIONS(1197), + [anon_sym_inline] = ACTIONS(1197), + [anon_sym___inline] = ACTIONS(1197), + [anon_sym___inline__] = ACTIONS(1197), + [anon_sym___forceinline] = ACTIONS(1197), + [anon_sym_thread_local] = ACTIONS(1197), + [anon_sym___thread] = ACTIONS(1197), + [anon_sym_const] = ACTIONS(1197), + [anon_sym_constexpr] = ACTIONS(1197), + [anon_sym_volatile] = ACTIONS(1197), + [anon_sym_restrict] = ACTIONS(1197), + [anon_sym___restrict__] = ACTIONS(1197), + [anon_sym__Atomic] = ACTIONS(1197), + [anon_sym__Noreturn] = ACTIONS(1197), + [anon_sym_noreturn] = ACTIONS(1197), + [anon_sym_alignas] = ACTIONS(1197), + [anon_sym__Alignas] = ACTIONS(1197), + [sym_primitive_type] = ACTIONS(1197), + [anon_sym_enum] = ACTIONS(1197), + [anon_sym_struct] = ACTIONS(1197), + [anon_sym_union] = ACTIONS(1197), + [anon_sym_if] = ACTIONS(1197), + [anon_sym_else] = ACTIONS(1197), + [anon_sym_switch] = ACTIONS(1197), + [anon_sym_case] = ACTIONS(1197), + [anon_sym_default] = ACTIONS(1197), + [anon_sym_while] = ACTIONS(1197), + [anon_sym_do] = ACTIONS(1197), + [anon_sym_for] = ACTIONS(1197), + [anon_sym_return] = ACTIONS(1197), + [anon_sym_break] = ACTIONS(1197), + [anon_sym_continue] = ACTIONS(1197), + [anon_sym_goto] = ACTIONS(1197), + [anon_sym___try] = ACTIONS(1197), + [anon_sym___leave] = ACTIONS(1197), + [anon_sym_DASH_DASH] = ACTIONS(1199), + [anon_sym_PLUS_PLUS] = ACTIONS(1199), + [anon_sym_sizeof] = ACTIONS(1197), + [anon_sym___alignof__] = ACTIONS(1197), + [anon_sym___alignof] = ACTIONS(1197), + [anon_sym__alignof] = ACTIONS(1197), + [anon_sym_alignof] = ACTIONS(1197), + [anon_sym__Alignof] = ACTIONS(1197), + [anon_sym_offsetof] = ACTIONS(1197), + [anon_sym__Generic] = ACTIONS(1197), + [anon_sym_asm] = ACTIONS(1197), + [anon_sym___asm__] = ACTIONS(1197), + [sym_number_literal] = ACTIONS(1199), + [anon_sym_L_SQUOTE] = ACTIONS(1199), + [anon_sym_u_SQUOTE] = ACTIONS(1199), + [anon_sym_U_SQUOTE] = ACTIONS(1199), + [anon_sym_u8_SQUOTE] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1199), + [anon_sym_L_DQUOTE] = ACTIONS(1199), + [anon_sym_u_DQUOTE] = ACTIONS(1199), + [anon_sym_U_DQUOTE] = ACTIONS(1199), + [anon_sym_u8_DQUOTE] = ACTIONS(1199), + [anon_sym_DQUOTE] = ACTIONS(1199), + [sym_true] = ACTIONS(1197), + [sym_false] = ACTIONS(1197), + [anon_sym_NULL] = ACTIONS(1197), + [anon_sym_nullptr] = ACTIONS(1197), [sym_comment] = ACTIONS(3), }, - [253] = { - [sym_identifier] = ACTIONS(1307), - [aux_sym_preproc_include_token1] = ACTIONS(1307), - [aux_sym_preproc_def_token1] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1307), - [aux_sym_preproc_if_token2] = ACTIONS(1307), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1307), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1307), - [sym_preproc_directive] = ACTIONS(1307), - [anon_sym_LPAREN2] = ACTIONS(1309), - [anon_sym_BANG] = ACTIONS(1309), - [anon_sym_TILDE] = ACTIONS(1309), - [anon_sym_DASH] = ACTIONS(1307), - [anon_sym_PLUS] = ACTIONS(1307), - [anon_sym_STAR] = ACTIONS(1309), - [anon_sym_AMP] = ACTIONS(1309), - [anon_sym_SEMI] = ACTIONS(1309), - [anon_sym___extension__] = ACTIONS(1307), - [anon_sym_typedef] = ACTIONS(1307), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym___attribute__] = ACTIONS(1307), - [anon_sym___scanf] = ACTIONS(1307), - [anon_sym___printf] = ACTIONS(1307), - [anon_sym___read_mostly] = ACTIONS(1307), - [anon_sym___must_hold] = ACTIONS(1307), - [anon_sym___ro_after_init] = ACTIONS(1307), - [anon_sym___init] = ACTIONS(1307), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1309), - [anon_sym___declspec] = ACTIONS(1307), - [anon_sym___cdecl] = ACTIONS(1307), - [anon_sym___clrcall] = ACTIONS(1307), - [anon_sym___stdcall] = ACTIONS(1307), - [anon_sym___fastcall] = ACTIONS(1307), - [anon_sym___thiscall] = ACTIONS(1307), - [anon_sym___vectorcall] = ACTIONS(1307), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_signed] = ACTIONS(1307), - [anon_sym_unsigned] = ACTIONS(1307), - [anon_sym_long] = ACTIONS(1307), - [anon_sym_short] = ACTIONS(1307), - [anon_sym_static] = ACTIONS(1307), - [anon_sym_auto] = ACTIONS(1307), - [anon_sym_register] = ACTIONS(1307), - [anon_sym_inline] = ACTIONS(1307), - [anon_sym___inline] = ACTIONS(1307), - [anon_sym___inline__] = ACTIONS(1307), - [anon_sym___forceinline] = ACTIONS(1307), - [anon_sym_thread_local] = ACTIONS(1307), - [anon_sym___thread] = ACTIONS(1307), - [anon_sym_const] = ACTIONS(1307), - [anon_sym_constexpr] = ACTIONS(1307), - [anon_sym_volatile] = ACTIONS(1307), - [anon_sym_restrict] = ACTIONS(1307), - [anon_sym___restrict__] = ACTIONS(1307), - [anon_sym__Atomic] = ACTIONS(1307), - [anon_sym__Noreturn] = ACTIONS(1307), - [anon_sym_noreturn] = ACTIONS(1307), - [anon_sym_alignas] = ACTIONS(1307), - [anon_sym__Alignas] = ACTIONS(1307), - [sym_primitive_type] = ACTIONS(1307), - [anon_sym_enum] = ACTIONS(1307), - [anon_sym_struct] = ACTIONS(1307), - [anon_sym_union] = ACTIONS(1307), - [anon_sym_if] = ACTIONS(1307), - [anon_sym_switch] = ACTIONS(1307), - [anon_sym_case] = ACTIONS(1307), - [anon_sym_default] = ACTIONS(1307), - [anon_sym_while] = ACTIONS(1307), - [anon_sym_do] = ACTIONS(1307), - [anon_sym_for] = ACTIONS(1307), - [anon_sym_return] = ACTIONS(1307), - [anon_sym_break] = ACTIONS(1307), - [anon_sym_continue] = ACTIONS(1307), - [anon_sym_goto] = ACTIONS(1307), - [anon_sym___try] = ACTIONS(1307), - [anon_sym___leave] = ACTIONS(1307), - [anon_sym_DASH_DASH] = ACTIONS(1309), - [anon_sym_PLUS_PLUS] = ACTIONS(1309), - [anon_sym_sizeof] = ACTIONS(1307), - [anon_sym___alignof__] = ACTIONS(1307), - [anon_sym___alignof] = ACTIONS(1307), - [anon_sym__alignof] = ACTIONS(1307), - [anon_sym_alignof] = ACTIONS(1307), - [anon_sym__Alignof] = ACTIONS(1307), - [anon_sym_offsetof] = ACTIONS(1307), - [anon_sym__Generic] = ACTIONS(1307), - [anon_sym_asm] = ACTIONS(1307), - [anon_sym___asm__] = ACTIONS(1307), - [sym_number_literal] = ACTIONS(1309), - [anon_sym_L_SQUOTE] = ACTIONS(1309), - [anon_sym_u_SQUOTE] = ACTIONS(1309), - [anon_sym_U_SQUOTE] = ACTIONS(1309), - [anon_sym_u8_SQUOTE] = ACTIONS(1309), - [anon_sym_SQUOTE] = ACTIONS(1309), - [anon_sym_L_DQUOTE] = ACTIONS(1309), - [anon_sym_u_DQUOTE] = ACTIONS(1309), - [anon_sym_U_DQUOTE] = ACTIONS(1309), - [anon_sym_u8_DQUOTE] = ACTIONS(1309), - [anon_sym_DQUOTE] = ACTIONS(1309), - [sym_true] = ACTIONS(1307), - [sym_false] = ACTIONS(1307), - [anon_sym_NULL] = ACTIONS(1307), - [anon_sym_nullptr] = ACTIONS(1307), + [287] = { + [sym_identifier] = ACTIONS(1197), + [aux_sym_preproc_include_token1] = ACTIONS(1197), + [aux_sym_preproc_def_token1] = ACTIONS(1197), + [aux_sym_preproc_if_token1] = ACTIONS(1197), + [aux_sym_preproc_if_token2] = ACTIONS(1197), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1197), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1197), + [sym_preproc_directive] = ACTIONS(1197), + [anon_sym_LPAREN2] = ACTIONS(1199), + [anon_sym_BANG] = ACTIONS(1199), + [anon_sym_TILDE] = ACTIONS(1199), + [anon_sym_DASH] = ACTIONS(1197), + [anon_sym_PLUS] = ACTIONS(1197), + [anon_sym_STAR] = ACTIONS(1199), + [anon_sym_AMP] = ACTIONS(1199), + [anon_sym_SEMI] = ACTIONS(1199), + [anon_sym___extension__] = ACTIONS(1197), + [anon_sym_typedef] = ACTIONS(1197), + [anon_sym_extern] = ACTIONS(1197), + [anon_sym___attribute__] = ACTIONS(1197), + [anon_sym___scanf] = ACTIONS(1197), + [anon_sym___printf] = ACTIONS(1197), + [anon_sym___read_mostly] = ACTIONS(1197), + [anon_sym___must_hold] = ACTIONS(1197), + [anon_sym___ro_after_init] = ACTIONS(1197), + [anon_sym___noreturn] = ACTIONS(1197), + [anon_sym___cold] = ACTIONS(1197), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1199), + [anon_sym___declspec] = ACTIONS(1197), + [anon_sym___init] = ACTIONS(1197), + [anon_sym___exit] = ACTIONS(1197), + [anon_sym___cdecl] = ACTIONS(1197), + [anon_sym___clrcall] = ACTIONS(1197), + [anon_sym___stdcall] = ACTIONS(1197), + [anon_sym___fastcall] = ACTIONS(1197), + [anon_sym___thiscall] = ACTIONS(1197), + [anon_sym___vectorcall] = ACTIONS(1197), + [anon_sym_LBRACE] = ACTIONS(1199), + [anon_sym_signed] = ACTIONS(1197), + [anon_sym_unsigned] = ACTIONS(1197), + [anon_sym_long] = ACTIONS(1197), + [anon_sym_short] = ACTIONS(1197), + [anon_sym_static] = ACTIONS(1197), + [anon_sym_auto] = ACTIONS(1197), + [anon_sym_register] = ACTIONS(1197), + [anon_sym_inline] = ACTIONS(1197), + [anon_sym___inline] = ACTIONS(1197), + [anon_sym___inline__] = ACTIONS(1197), + [anon_sym___forceinline] = ACTIONS(1197), + [anon_sym_thread_local] = ACTIONS(1197), + [anon_sym___thread] = ACTIONS(1197), + [anon_sym_const] = ACTIONS(1197), + [anon_sym_constexpr] = ACTIONS(1197), + [anon_sym_volatile] = ACTIONS(1197), + [anon_sym_restrict] = ACTIONS(1197), + [anon_sym___restrict__] = ACTIONS(1197), + [anon_sym__Atomic] = ACTIONS(1197), + [anon_sym__Noreturn] = ACTIONS(1197), + [anon_sym_noreturn] = ACTIONS(1197), + [anon_sym_alignas] = ACTIONS(1197), + [anon_sym__Alignas] = ACTIONS(1197), + [sym_primitive_type] = ACTIONS(1197), + [anon_sym_enum] = ACTIONS(1197), + [anon_sym_struct] = ACTIONS(1197), + [anon_sym_union] = ACTIONS(1197), + [anon_sym_if] = ACTIONS(1197), + [anon_sym_else] = ACTIONS(1197), + [anon_sym_switch] = ACTIONS(1197), + [anon_sym_case] = ACTIONS(1197), + [anon_sym_default] = ACTIONS(1197), + [anon_sym_while] = ACTIONS(1197), + [anon_sym_do] = ACTIONS(1197), + [anon_sym_for] = ACTIONS(1197), + [anon_sym_return] = ACTIONS(1197), + [anon_sym_break] = ACTIONS(1197), + [anon_sym_continue] = ACTIONS(1197), + [anon_sym_goto] = ACTIONS(1197), + [anon_sym___try] = ACTIONS(1197), + [anon_sym___leave] = ACTIONS(1197), + [anon_sym_DASH_DASH] = ACTIONS(1199), + [anon_sym_PLUS_PLUS] = ACTIONS(1199), + [anon_sym_sizeof] = ACTIONS(1197), + [anon_sym___alignof__] = ACTIONS(1197), + [anon_sym___alignof] = ACTIONS(1197), + [anon_sym__alignof] = ACTIONS(1197), + [anon_sym_alignof] = ACTIONS(1197), + [anon_sym__Alignof] = ACTIONS(1197), + [anon_sym_offsetof] = ACTIONS(1197), + [anon_sym__Generic] = ACTIONS(1197), + [anon_sym_asm] = ACTIONS(1197), + [anon_sym___asm__] = ACTIONS(1197), + [sym_number_literal] = ACTIONS(1199), + [anon_sym_L_SQUOTE] = ACTIONS(1199), + [anon_sym_u_SQUOTE] = ACTIONS(1199), + [anon_sym_U_SQUOTE] = ACTIONS(1199), + [anon_sym_u8_SQUOTE] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1199), + [anon_sym_L_DQUOTE] = ACTIONS(1199), + [anon_sym_u_DQUOTE] = ACTIONS(1199), + [anon_sym_U_DQUOTE] = ACTIONS(1199), + [anon_sym_u8_DQUOTE] = ACTIONS(1199), + [anon_sym_DQUOTE] = ACTIONS(1199), + [sym_true] = ACTIONS(1197), + [sym_false] = ACTIONS(1197), + [anon_sym_NULL] = ACTIONS(1197), + [anon_sym_nullptr] = ACTIONS(1197), [sym_comment] = ACTIONS(3), }, - [254] = { - [sym_identifier] = ACTIONS(1379), - [aux_sym_preproc_include_token1] = ACTIONS(1379), - [aux_sym_preproc_def_token1] = ACTIONS(1379), - [aux_sym_preproc_if_token1] = ACTIONS(1379), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1379), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1379), - [sym_preproc_directive] = ACTIONS(1379), - [anon_sym_LPAREN2] = ACTIONS(1381), - [anon_sym_BANG] = ACTIONS(1381), - [anon_sym_TILDE] = ACTIONS(1381), - [anon_sym_DASH] = ACTIONS(1379), - [anon_sym_PLUS] = ACTIONS(1379), - [anon_sym_STAR] = ACTIONS(1381), - [anon_sym_AMP] = ACTIONS(1381), - [anon_sym_SEMI] = ACTIONS(1381), - [anon_sym___extension__] = ACTIONS(1379), - [anon_sym_typedef] = ACTIONS(1379), - [anon_sym_extern] = ACTIONS(1379), - [anon_sym___attribute__] = ACTIONS(1379), - [anon_sym___scanf] = ACTIONS(1379), - [anon_sym___printf] = ACTIONS(1379), - [anon_sym___read_mostly] = ACTIONS(1379), - [anon_sym___must_hold] = ACTIONS(1379), - [anon_sym___ro_after_init] = ACTIONS(1379), - [anon_sym___init] = ACTIONS(1379), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1381), - [anon_sym___declspec] = ACTIONS(1379), - [anon_sym___cdecl] = ACTIONS(1379), - [anon_sym___clrcall] = ACTIONS(1379), - [anon_sym___stdcall] = ACTIONS(1379), - [anon_sym___fastcall] = ACTIONS(1379), - [anon_sym___thiscall] = ACTIONS(1379), - [anon_sym___vectorcall] = ACTIONS(1379), - [anon_sym_LBRACE] = ACTIONS(1381), - [anon_sym_RBRACE] = ACTIONS(1381), - [anon_sym_signed] = ACTIONS(1379), - [anon_sym_unsigned] = ACTIONS(1379), - [anon_sym_long] = ACTIONS(1379), - [anon_sym_short] = ACTIONS(1379), - [anon_sym_static] = ACTIONS(1379), - [anon_sym_auto] = ACTIONS(1379), - [anon_sym_register] = ACTIONS(1379), - [anon_sym_inline] = ACTIONS(1379), - [anon_sym___inline] = ACTIONS(1379), - [anon_sym___inline__] = ACTIONS(1379), - [anon_sym___forceinline] = ACTIONS(1379), - [anon_sym_thread_local] = ACTIONS(1379), - [anon_sym___thread] = ACTIONS(1379), - [anon_sym_const] = ACTIONS(1379), - [anon_sym_constexpr] = ACTIONS(1379), - [anon_sym_volatile] = ACTIONS(1379), - [anon_sym_restrict] = ACTIONS(1379), - [anon_sym___restrict__] = ACTIONS(1379), - [anon_sym__Atomic] = ACTIONS(1379), - [anon_sym__Noreturn] = ACTIONS(1379), - [anon_sym_noreturn] = ACTIONS(1379), - [anon_sym_alignas] = ACTIONS(1379), - [anon_sym__Alignas] = ACTIONS(1379), - [sym_primitive_type] = ACTIONS(1379), - [anon_sym_enum] = ACTIONS(1379), - [anon_sym_struct] = ACTIONS(1379), - [anon_sym_union] = ACTIONS(1379), - [anon_sym_if] = ACTIONS(1379), - [anon_sym_switch] = ACTIONS(1379), - [anon_sym_case] = ACTIONS(1379), - [anon_sym_default] = ACTIONS(1379), - [anon_sym_while] = ACTIONS(1379), - [anon_sym_do] = ACTIONS(1379), - [anon_sym_for] = ACTIONS(1379), - [anon_sym_return] = ACTIONS(1379), - [anon_sym_break] = ACTIONS(1379), - [anon_sym_continue] = ACTIONS(1379), - [anon_sym_goto] = ACTIONS(1379), - [anon_sym___try] = ACTIONS(1379), - [anon_sym___leave] = ACTIONS(1379), - [anon_sym_DASH_DASH] = ACTIONS(1381), - [anon_sym_PLUS_PLUS] = ACTIONS(1381), - [anon_sym_sizeof] = ACTIONS(1379), - [anon_sym___alignof__] = ACTIONS(1379), - [anon_sym___alignof] = ACTIONS(1379), - [anon_sym__alignof] = ACTIONS(1379), - [anon_sym_alignof] = ACTIONS(1379), - [anon_sym__Alignof] = ACTIONS(1379), - [anon_sym_offsetof] = ACTIONS(1379), - [anon_sym__Generic] = ACTIONS(1379), - [anon_sym_asm] = ACTIONS(1379), - [anon_sym___asm__] = ACTIONS(1379), - [sym_number_literal] = ACTIONS(1381), - [anon_sym_L_SQUOTE] = ACTIONS(1381), - [anon_sym_u_SQUOTE] = ACTIONS(1381), - [anon_sym_U_SQUOTE] = ACTIONS(1381), - [anon_sym_u8_SQUOTE] = ACTIONS(1381), - [anon_sym_SQUOTE] = ACTIONS(1381), - [anon_sym_L_DQUOTE] = ACTIONS(1381), - [anon_sym_u_DQUOTE] = ACTIONS(1381), - [anon_sym_U_DQUOTE] = ACTIONS(1381), - [anon_sym_u8_DQUOTE] = ACTIONS(1381), - [anon_sym_DQUOTE] = ACTIONS(1381), - [sym_true] = ACTIONS(1379), - [sym_false] = ACTIONS(1379), - [anon_sym_NULL] = ACTIONS(1379), - [anon_sym_nullptr] = ACTIONS(1379), + [288] = { + [sym_identifier] = ACTIONS(1197), + [aux_sym_preproc_include_token1] = ACTIONS(1197), + [aux_sym_preproc_def_token1] = ACTIONS(1197), + [aux_sym_preproc_if_token1] = ACTIONS(1197), + [aux_sym_preproc_if_token2] = ACTIONS(1197), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1197), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1197), + [sym_preproc_directive] = ACTIONS(1197), + [anon_sym_LPAREN2] = ACTIONS(1199), + [anon_sym_BANG] = ACTIONS(1199), + [anon_sym_TILDE] = ACTIONS(1199), + [anon_sym_DASH] = ACTIONS(1197), + [anon_sym_PLUS] = ACTIONS(1197), + [anon_sym_STAR] = ACTIONS(1199), + [anon_sym_AMP] = ACTIONS(1199), + [anon_sym_SEMI] = ACTIONS(1199), + [anon_sym___extension__] = ACTIONS(1197), + [anon_sym_typedef] = ACTIONS(1197), + [anon_sym_extern] = ACTIONS(1197), + [anon_sym___attribute__] = ACTIONS(1197), + [anon_sym___scanf] = ACTIONS(1197), + [anon_sym___printf] = ACTIONS(1197), + [anon_sym___read_mostly] = ACTIONS(1197), + [anon_sym___must_hold] = ACTIONS(1197), + [anon_sym___ro_after_init] = ACTIONS(1197), + [anon_sym___noreturn] = ACTIONS(1197), + [anon_sym___cold] = ACTIONS(1197), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1199), + [anon_sym___declspec] = ACTIONS(1197), + [anon_sym___init] = ACTIONS(1197), + [anon_sym___exit] = ACTIONS(1197), + [anon_sym___cdecl] = ACTIONS(1197), + [anon_sym___clrcall] = ACTIONS(1197), + [anon_sym___stdcall] = ACTIONS(1197), + [anon_sym___fastcall] = ACTIONS(1197), + [anon_sym___thiscall] = ACTIONS(1197), + [anon_sym___vectorcall] = ACTIONS(1197), + [anon_sym_LBRACE] = ACTIONS(1199), + [anon_sym_signed] = ACTIONS(1197), + [anon_sym_unsigned] = ACTIONS(1197), + [anon_sym_long] = ACTIONS(1197), + [anon_sym_short] = ACTIONS(1197), + [anon_sym_static] = ACTIONS(1197), + [anon_sym_auto] = ACTIONS(1197), + [anon_sym_register] = ACTIONS(1197), + [anon_sym_inline] = ACTIONS(1197), + [anon_sym___inline] = ACTIONS(1197), + [anon_sym___inline__] = ACTIONS(1197), + [anon_sym___forceinline] = ACTIONS(1197), + [anon_sym_thread_local] = ACTIONS(1197), + [anon_sym___thread] = ACTIONS(1197), + [anon_sym_const] = ACTIONS(1197), + [anon_sym_constexpr] = ACTIONS(1197), + [anon_sym_volatile] = ACTIONS(1197), + [anon_sym_restrict] = ACTIONS(1197), + [anon_sym___restrict__] = ACTIONS(1197), + [anon_sym__Atomic] = ACTIONS(1197), + [anon_sym__Noreturn] = ACTIONS(1197), + [anon_sym_noreturn] = ACTIONS(1197), + [anon_sym_alignas] = ACTIONS(1197), + [anon_sym__Alignas] = ACTIONS(1197), + [sym_primitive_type] = ACTIONS(1197), + [anon_sym_enum] = ACTIONS(1197), + [anon_sym_struct] = ACTIONS(1197), + [anon_sym_union] = ACTIONS(1197), + [anon_sym_if] = ACTIONS(1197), + [anon_sym_else] = ACTIONS(1197), + [anon_sym_switch] = ACTIONS(1197), + [anon_sym_case] = ACTIONS(1197), + [anon_sym_default] = ACTIONS(1197), + [anon_sym_while] = ACTIONS(1197), + [anon_sym_do] = ACTIONS(1197), + [anon_sym_for] = ACTIONS(1197), + [anon_sym_return] = ACTIONS(1197), + [anon_sym_break] = ACTIONS(1197), + [anon_sym_continue] = ACTIONS(1197), + [anon_sym_goto] = ACTIONS(1197), + [anon_sym___try] = ACTIONS(1197), + [anon_sym___leave] = ACTIONS(1197), + [anon_sym_DASH_DASH] = ACTIONS(1199), + [anon_sym_PLUS_PLUS] = ACTIONS(1199), + [anon_sym_sizeof] = ACTIONS(1197), + [anon_sym___alignof__] = ACTIONS(1197), + [anon_sym___alignof] = ACTIONS(1197), + [anon_sym__alignof] = ACTIONS(1197), + [anon_sym_alignof] = ACTIONS(1197), + [anon_sym__Alignof] = ACTIONS(1197), + [anon_sym_offsetof] = ACTIONS(1197), + [anon_sym__Generic] = ACTIONS(1197), + [anon_sym_asm] = ACTIONS(1197), + [anon_sym___asm__] = ACTIONS(1197), + [sym_number_literal] = ACTIONS(1199), + [anon_sym_L_SQUOTE] = ACTIONS(1199), + [anon_sym_u_SQUOTE] = ACTIONS(1199), + [anon_sym_U_SQUOTE] = ACTIONS(1199), + [anon_sym_u8_SQUOTE] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1199), + [anon_sym_L_DQUOTE] = ACTIONS(1199), + [anon_sym_u_DQUOTE] = ACTIONS(1199), + [anon_sym_U_DQUOTE] = ACTIONS(1199), + [anon_sym_u8_DQUOTE] = ACTIONS(1199), + [anon_sym_DQUOTE] = ACTIONS(1199), + [sym_true] = ACTIONS(1197), + [sym_false] = ACTIONS(1197), + [anon_sym_NULL] = ACTIONS(1197), + [anon_sym_nullptr] = ACTIONS(1197), [sym_comment] = ACTIONS(3), }, - [255] = { - [sym_identifier] = ACTIONS(1383), - [aux_sym_preproc_include_token1] = ACTIONS(1383), - [aux_sym_preproc_def_token1] = ACTIONS(1383), - [aux_sym_preproc_if_token1] = ACTIONS(1383), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1383), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1383), - [sym_preproc_directive] = ACTIONS(1383), - [anon_sym_LPAREN2] = ACTIONS(1385), - [anon_sym_BANG] = ACTIONS(1385), - [anon_sym_TILDE] = ACTIONS(1385), - [anon_sym_DASH] = ACTIONS(1383), - [anon_sym_PLUS] = ACTIONS(1383), - [anon_sym_STAR] = ACTIONS(1385), - [anon_sym_AMP] = ACTIONS(1385), - [anon_sym_SEMI] = ACTIONS(1385), - [anon_sym___extension__] = ACTIONS(1383), - [anon_sym_typedef] = ACTIONS(1383), - [anon_sym_extern] = ACTIONS(1383), - [anon_sym___attribute__] = ACTIONS(1383), - [anon_sym___scanf] = ACTIONS(1383), - [anon_sym___printf] = ACTIONS(1383), - [anon_sym___read_mostly] = ACTIONS(1383), - [anon_sym___must_hold] = ACTIONS(1383), - [anon_sym___ro_after_init] = ACTIONS(1383), - [anon_sym___init] = ACTIONS(1383), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1385), - [anon_sym___declspec] = ACTIONS(1383), - [anon_sym___cdecl] = ACTIONS(1383), - [anon_sym___clrcall] = ACTIONS(1383), - [anon_sym___stdcall] = ACTIONS(1383), - [anon_sym___fastcall] = ACTIONS(1383), - [anon_sym___thiscall] = ACTIONS(1383), - [anon_sym___vectorcall] = ACTIONS(1383), - [anon_sym_LBRACE] = ACTIONS(1385), - [anon_sym_RBRACE] = ACTIONS(1385), - [anon_sym_signed] = ACTIONS(1383), - [anon_sym_unsigned] = ACTIONS(1383), - [anon_sym_long] = ACTIONS(1383), - [anon_sym_short] = ACTIONS(1383), - [anon_sym_static] = ACTIONS(1383), - [anon_sym_auto] = ACTIONS(1383), - [anon_sym_register] = ACTIONS(1383), - [anon_sym_inline] = ACTIONS(1383), - [anon_sym___inline] = ACTIONS(1383), - [anon_sym___inline__] = ACTIONS(1383), - [anon_sym___forceinline] = ACTIONS(1383), - [anon_sym_thread_local] = ACTIONS(1383), - [anon_sym___thread] = ACTIONS(1383), - [anon_sym_const] = ACTIONS(1383), - [anon_sym_constexpr] = ACTIONS(1383), - [anon_sym_volatile] = ACTIONS(1383), - [anon_sym_restrict] = ACTIONS(1383), - [anon_sym___restrict__] = ACTIONS(1383), - [anon_sym__Atomic] = ACTIONS(1383), - [anon_sym__Noreturn] = ACTIONS(1383), - [anon_sym_noreturn] = ACTIONS(1383), - [anon_sym_alignas] = ACTIONS(1383), - [anon_sym__Alignas] = ACTIONS(1383), - [sym_primitive_type] = ACTIONS(1383), - [anon_sym_enum] = ACTIONS(1383), - [anon_sym_struct] = ACTIONS(1383), - [anon_sym_union] = ACTIONS(1383), - [anon_sym_if] = ACTIONS(1383), - [anon_sym_switch] = ACTIONS(1383), - [anon_sym_case] = ACTIONS(1383), - [anon_sym_default] = ACTIONS(1383), - [anon_sym_while] = ACTIONS(1383), - [anon_sym_do] = ACTIONS(1383), - [anon_sym_for] = ACTIONS(1383), - [anon_sym_return] = ACTIONS(1383), - [anon_sym_break] = ACTIONS(1383), - [anon_sym_continue] = ACTIONS(1383), - [anon_sym_goto] = ACTIONS(1383), - [anon_sym___try] = ACTIONS(1383), - [anon_sym___leave] = ACTIONS(1383), - [anon_sym_DASH_DASH] = ACTIONS(1385), - [anon_sym_PLUS_PLUS] = ACTIONS(1385), - [anon_sym_sizeof] = ACTIONS(1383), - [anon_sym___alignof__] = ACTIONS(1383), - [anon_sym___alignof] = ACTIONS(1383), - [anon_sym__alignof] = ACTIONS(1383), - [anon_sym_alignof] = ACTIONS(1383), - [anon_sym__Alignof] = ACTIONS(1383), - [anon_sym_offsetof] = ACTIONS(1383), - [anon_sym__Generic] = ACTIONS(1383), - [anon_sym_asm] = ACTIONS(1383), - [anon_sym___asm__] = ACTIONS(1383), - [sym_number_literal] = ACTIONS(1385), - [anon_sym_L_SQUOTE] = ACTIONS(1385), - [anon_sym_u_SQUOTE] = ACTIONS(1385), - [anon_sym_U_SQUOTE] = ACTIONS(1385), - [anon_sym_u8_SQUOTE] = ACTIONS(1385), - [anon_sym_SQUOTE] = ACTIONS(1385), - [anon_sym_L_DQUOTE] = ACTIONS(1385), - [anon_sym_u_DQUOTE] = ACTIONS(1385), - [anon_sym_U_DQUOTE] = ACTIONS(1385), - [anon_sym_u8_DQUOTE] = ACTIONS(1385), - [anon_sym_DQUOTE] = ACTIONS(1385), - [sym_true] = ACTIONS(1383), - [sym_false] = ACTIONS(1383), - [anon_sym_NULL] = ACTIONS(1383), - [anon_sym_nullptr] = ACTIONS(1383), + [289] = { + [sym_identifier] = ACTIONS(1193), + [aux_sym_preproc_include_token1] = ACTIONS(1193), + [aux_sym_preproc_def_token1] = ACTIONS(1193), + [aux_sym_preproc_if_token1] = ACTIONS(1193), + [aux_sym_preproc_if_token2] = ACTIONS(1193), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1193), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1193), + [sym_preproc_directive] = ACTIONS(1193), + [anon_sym_LPAREN2] = ACTIONS(1195), + [anon_sym_BANG] = ACTIONS(1195), + [anon_sym_TILDE] = ACTIONS(1195), + [anon_sym_DASH] = ACTIONS(1193), + [anon_sym_PLUS] = ACTIONS(1193), + [anon_sym_STAR] = ACTIONS(1195), + [anon_sym_AMP] = ACTIONS(1195), + [anon_sym_SEMI] = ACTIONS(1195), + [anon_sym___extension__] = ACTIONS(1193), + [anon_sym_typedef] = ACTIONS(1193), + [anon_sym_extern] = ACTIONS(1193), + [anon_sym___attribute__] = ACTIONS(1193), + [anon_sym___scanf] = ACTIONS(1193), + [anon_sym___printf] = ACTIONS(1193), + [anon_sym___read_mostly] = ACTIONS(1193), + [anon_sym___must_hold] = ACTIONS(1193), + [anon_sym___ro_after_init] = ACTIONS(1193), + [anon_sym___noreturn] = ACTIONS(1193), + [anon_sym___cold] = ACTIONS(1193), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1195), + [anon_sym___declspec] = ACTIONS(1193), + [anon_sym___init] = ACTIONS(1193), + [anon_sym___exit] = ACTIONS(1193), + [anon_sym___cdecl] = ACTIONS(1193), + [anon_sym___clrcall] = ACTIONS(1193), + [anon_sym___stdcall] = ACTIONS(1193), + [anon_sym___fastcall] = ACTIONS(1193), + [anon_sym___thiscall] = ACTIONS(1193), + [anon_sym___vectorcall] = ACTIONS(1193), + [anon_sym_LBRACE] = ACTIONS(1195), + [anon_sym_signed] = ACTIONS(1193), + [anon_sym_unsigned] = ACTIONS(1193), + [anon_sym_long] = ACTIONS(1193), + [anon_sym_short] = ACTIONS(1193), + [anon_sym_static] = ACTIONS(1193), + [anon_sym_auto] = ACTIONS(1193), + [anon_sym_register] = ACTIONS(1193), + [anon_sym_inline] = ACTIONS(1193), + [anon_sym___inline] = ACTIONS(1193), + [anon_sym___inline__] = ACTIONS(1193), + [anon_sym___forceinline] = ACTIONS(1193), + [anon_sym_thread_local] = ACTIONS(1193), + [anon_sym___thread] = ACTIONS(1193), + [anon_sym_const] = ACTIONS(1193), + [anon_sym_constexpr] = ACTIONS(1193), + [anon_sym_volatile] = ACTIONS(1193), + [anon_sym_restrict] = ACTIONS(1193), + [anon_sym___restrict__] = ACTIONS(1193), + [anon_sym__Atomic] = ACTIONS(1193), + [anon_sym__Noreturn] = ACTIONS(1193), + [anon_sym_noreturn] = ACTIONS(1193), + [anon_sym_alignas] = ACTIONS(1193), + [anon_sym__Alignas] = ACTIONS(1193), + [sym_primitive_type] = ACTIONS(1193), + [anon_sym_enum] = ACTIONS(1193), + [anon_sym_struct] = ACTIONS(1193), + [anon_sym_union] = ACTIONS(1193), + [anon_sym_if] = ACTIONS(1193), + [anon_sym_else] = ACTIONS(1193), + [anon_sym_switch] = ACTIONS(1193), + [anon_sym_case] = ACTIONS(1193), + [anon_sym_default] = ACTIONS(1193), + [anon_sym_while] = ACTIONS(1193), + [anon_sym_do] = ACTIONS(1193), + [anon_sym_for] = ACTIONS(1193), + [anon_sym_return] = ACTIONS(1193), + [anon_sym_break] = ACTIONS(1193), + [anon_sym_continue] = ACTIONS(1193), + [anon_sym_goto] = ACTIONS(1193), + [anon_sym___try] = ACTIONS(1193), + [anon_sym___leave] = ACTIONS(1193), + [anon_sym_DASH_DASH] = ACTIONS(1195), + [anon_sym_PLUS_PLUS] = ACTIONS(1195), + [anon_sym_sizeof] = ACTIONS(1193), + [anon_sym___alignof__] = ACTIONS(1193), + [anon_sym___alignof] = ACTIONS(1193), + [anon_sym__alignof] = ACTIONS(1193), + [anon_sym_alignof] = ACTIONS(1193), + [anon_sym__Alignof] = ACTIONS(1193), + [anon_sym_offsetof] = ACTIONS(1193), + [anon_sym__Generic] = ACTIONS(1193), + [anon_sym_asm] = ACTIONS(1193), + [anon_sym___asm__] = ACTIONS(1193), + [sym_number_literal] = ACTIONS(1195), + [anon_sym_L_SQUOTE] = ACTIONS(1195), + [anon_sym_u_SQUOTE] = ACTIONS(1195), + [anon_sym_U_SQUOTE] = ACTIONS(1195), + [anon_sym_u8_SQUOTE] = ACTIONS(1195), + [anon_sym_SQUOTE] = ACTIONS(1195), + [anon_sym_L_DQUOTE] = ACTIONS(1195), + [anon_sym_u_DQUOTE] = ACTIONS(1195), + [anon_sym_U_DQUOTE] = ACTIONS(1195), + [anon_sym_u8_DQUOTE] = ACTIONS(1195), + [anon_sym_DQUOTE] = ACTIONS(1195), + [sym_true] = ACTIONS(1193), + [sym_false] = ACTIONS(1193), + [anon_sym_NULL] = ACTIONS(1193), + [anon_sym_nullptr] = ACTIONS(1193), [sym_comment] = ACTIONS(3), }, - [256] = { - [sym_identifier] = ACTIONS(1387), - [aux_sym_preproc_include_token1] = ACTIONS(1387), - [aux_sym_preproc_def_token1] = ACTIONS(1387), - [aux_sym_preproc_if_token1] = ACTIONS(1387), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1387), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1387), - [sym_preproc_directive] = ACTIONS(1387), - [anon_sym_LPAREN2] = ACTIONS(1389), - [anon_sym_BANG] = ACTIONS(1389), - [anon_sym_TILDE] = ACTIONS(1389), - [anon_sym_DASH] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(1387), - [anon_sym_STAR] = ACTIONS(1389), - [anon_sym_AMP] = ACTIONS(1389), - [anon_sym_SEMI] = ACTIONS(1389), - [anon_sym___extension__] = ACTIONS(1387), - [anon_sym_typedef] = ACTIONS(1387), - [anon_sym_extern] = ACTIONS(1387), - [anon_sym___attribute__] = ACTIONS(1387), - [anon_sym___scanf] = ACTIONS(1387), - [anon_sym___printf] = ACTIONS(1387), - [anon_sym___read_mostly] = ACTIONS(1387), - [anon_sym___must_hold] = ACTIONS(1387), - [anon_sym___ro_after_init] = ACTIONS(1387), - [anon_sym___init] = ACTIONS(1387), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1389), - [anon_sym___declspec] = ACTIONS(1387), - [anon_sym___cdecl] = ACTIONS(1387), - [anon_sym___clrcall] = ACTIONS(1387), - [anon_sym___stdcall] = ACTIONS(1387), - [anon_sym___fastcall] = ACTIONS(1387), - [anon_sym___thiscall] = ACTIONS(1387), - [anon_sym___vectorcall] = ACTIONS(1387), - [anon_sym_LBRACE] = ACTIONS(1389), - [anon_sym_RBRACE] = ACTIONS(1389), - [anon_sym_signed] = ACTIONS(1387), - [anon_sym_unsigned] = ACTIONS(1387), - [anon_sym_long] = ACTIONS(1387), - [anon_sym_short] = ACTIONS(1387), - [anon_sym_static] = ACTIONS(1387), - [anon_sym_auto] = ACTIONS(1387), - [anon_sym_register] = ACTIONS(1387), - [anon_sym_inline] = ACTIONS(1387), - [anon_sym___inline] = ACTIONS(1387), - [anon_sym___inline__] = ACTIONS(1387), - [anon_sym___forceinline] = ACTIONS(1387), - [anon_sym_thread_local] = ACTIONS(1387), - [anon_sym___thread] = ACTIONS(1387), - [anon_sym_const] = ACTIONS(1387), - [anon_sym_constexpr] = ACTIONS(1387), - [anon_sym_volatile] = ACTIONS(1387), - [anon_sym_restrict] = ACTIONS(1387), - [anon_sym___restrict__] = ACTIONS(1387), - [anon_sym__Atomic] = ACTIONS(1387), - [anon_sym__Noreturn] = ACTIONS(1387), - [anon_sym_noreturn] = ACTIONS(1387), - [anon_sym_alignas] = ACTIONS(1387), - [anon_sym__Alignas] = ACTIONS(1387), - [sym_primitive_type] = ACTIONS(1387), - [anon_sym_enum] = ACTIONS(1387), - [anon_sym_struct] = ACTIONS(1387), - [anon_sym_union] = ACTIONS(1387), - [anon_sym_if] = ACTIONS(1387), - [anon_sym_switch] = ACTIONS(1387), - [anon_sym_case] = ACTIONS(1387), - [anon_sym_default] = ACTIONS(1387), - [anon_sym_while] = ACTIONS(1387), - [anon_sym_do] = ACTIONS(1387), - [anon_sym_for] = ACTIONS(1387), - [anon_sym_return] = ACTIONS(1387), - [anon_sym_break] = ACTIONS(1387), - [anon_sym_continue] = ACTIONS(1387), - [anon_sym_goto] = ACTIONS(1387), - [anon_sym___try] = ACTIONS(1387), - [anon_sym___leave] = ACTIONS(1387), - [anon_sym_DASH_DASH] = ACTIONS(1389), - [anon_sym_PLUS_PLUS] = ACTIONS(1389), - [anon_sym_sizeof] = ACTIONS(1387), - [anon_sym___alignof__] = ACTIONS(1387), - [anon_sym___alignof] = ACTIONS(1387), - [anon_sym__alignof] = ACTIONS(1387), - [anon_sym_alignof] = ACTIONS(1387), - [anon_sym__Alignof] = ACTIONS(1387), - [anon_sym_offsetof] = ACTIONS(1387), - [anon_sym__Generic] = ACTIONS(1387), - [anon_sym_asm] = ACTIONS(1387), - [anon_sym___asm__] = ACTIONS(1387), - [sym_number_literal] = ACTIONS(1389), - [anon_sym_L_SQUOTE] = ACTIONS(1389), - [anon_sym_u_SQUOTE] = ACTIONS(1389), - [anon_sym_U_SQUOTE] = ACTIONS(1389), - [anon_sym_u8_SQUOTE] = ACTIONS(1389), - [anon_sym_SQUOTE] = ACTIONS(1389), - [anon_sym_L_DQUOTE] = ACTIONS(1389), - [anon_sym_u_DQUOTE] = ACTIONS(1389), - [anon_sym_U_DQUOTE] = ACTIONS(1389), - [anon_sym_u8_DQUOTE] = ACTIONS(1389), - [anon_sym_DQUOTE] = ACTIONS(1389), - [sym_true] = ACTIONS(1387), - [sym_false] = ACTIONS(1387), - [anon_sym_NULL] = ACTIONS(1387), - [anon_sym_nullptr] = ACTIONS(1387), + [290] = { + [sym_identifier] = ACTIONS(1157), + [aux_sym_preproc_include_token1] = ACTIONS(1157), + [aux_sym_preproc_def_token1] = ACTIONS(1157), + [aux_sym_preproc_if_token1] = ACTIONS(1157), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1157), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1157), + [sym_preproc_directive] = ACTIONS(1157), + [anon_sym_LPAREN2] = ACTIONS(1159), + [anon_sym_BANG] = ACTIONS(1159), + [anon_sym_TILDE] = ACTIONS(1159), + [anon_sym_DASH] = ACTIONS(1157), + [anon_sym_PLUS] = ACTIONS(1157), + [anon_sym_STAR] = ACTIONS(1159), + [anon_sym_AMP] = ACTIONS(1159), + [anon_sym_SEMI] = ACTIONS(1159), + [anon_sym___extension__] = ACTIONS(1157), + [anon_sym_typedef] = ACTIONS(1157), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym___attribute__] = ACTIONS(1157), + [anon_sym___scanf] = ACTIONS(1157), + [anon_sym___printf] = ACTIONS(1157), + [anon_sym___read_mostly] = ACTIONS(1157), + [anon_sym___must_hold] = ACTIONS(1157), + [anon_sym___ro_after_init] = ACTIONS(1157), + [anon_sym___noreturn] = ACTIONS(1157), + [anon_sym___cold] = ACTIONS(1157), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1159), + [anon_sym___declspec] = ACTIONS(1157), + [anon_sym___init] = ACTIONS(1157), + [anon_sym___exit] = ACTIONS(1157), + [anon_sym___cdecl] = ACTIONS(1157), + [anon_sym___clrcall] = ACTIONS(1157), + [anon_sym___stdcall] = ACTIONS(1157), + [anon_sym___fastcall] = ACTIONS(1157), + [anon_sym___thiscall] = ACTIONS(1157), + [anon_sym___vectorcall] = ACTIONS(1157), + [anon_sym_LBRACE] = ACTIONS(1159), + [anon_sym_RBRACE] = ACTIONS(1159), + [anon_sym_signed] = ACTIONS(1157), + [anon_sym_unsigned] = ACTIONS(1157), + [anon_sym_long] = ACTIONS(1157), + [anon_sym_short] = ACTIONS(1157), + [anon_sym_static] = ACTIONS(1157), + [anon_sym_auto] = ACTIONS(1157), + [anon_sym_register] = ACTIONS(1157), + [anon_sym_inline] = ACTIONS(1157), + [anon_sym___inline] = ACTIONS(1157), + [anon_sym___inline__] = ACTIONS(1157), + [anon_sym___forceinline] = ACTIONS(1157), + [anon_sym_thread_local] = ACTIONS(1157), + [anon_sym___thread] = ACTIONS(1157), + [anon_sym_const] = ACTIONS(1157), + [anon_sym_constexpr] = ACTIONS(1157), + [anon_sym_volatile] = ACTIONS(1157), + [anon_sym_restrict] = ACTIONS(1157), + [anon_sym___restrict__] = ACTIONS(1157), + [anon_sym__Atomic] = ACTIONS(1157), + [anon_sym__Noreturn] = ACTIONS(1157), + [anon_sym_noreturn] = ACTIONS(1157), + [anon_sym_alignas] = ACTIONS(1157), + [anon_sym__Alignas] = ACTIONS(1157), + [sym_primitive_type] = ACTIONS(1157), + [anon_sym_enum] = ACTIONS(1157), + [anon_sym_struct] = ACTIONS(1157), + [anon_sym_union] = ACTIONS(1157), + [anon_sym_if] = ACTIONS(1157), + [anon_sym_else] = ACTIONS(1157), + [anon_sym_switch] = ACTIONS(1157), + [anon_sym_case] = ACTIONS(1157), + [anon_sym_default] = ACTIONS(1157), + [anon_sym_while] = ACTIONS(1157), + [anon_sym_do] = ACTIONS(1157), + [anon_sym_for] = ACTIONS(1157), + [anon_sym_return] = ACTIONS(1157), + [anon_sym_break] = ACTIONS(1157), + [anon_sym_continue] = ACTIONS(1157), + [anon_sym_goto] = ACTIONS(1157), + [anon_sym___try] = ACTIONS(1157), + [anon_sym___leave] = ACTIONS(1157), + [anon_sym_DASH_DASH] = ACTIONS(1159), + [anon_sym_PLUS_PLUS] = ACTIONS(1159), + [anon_sym_sizeof] = ACTIONS(1157), + [anon_sym___alignof__] = ACTIONS(1157), + [anon_sym___alignof] = ACTIONS(1157), + [anon_sym__alignof] = ACTIONS(1157), + [anon_sym_alignof] = ACTIONS(1157), + [anon_sym__Alignof] = ACTIONS(1157), + [anon_sym_offsetof] = ACTIONS(1157), + [anon_sym__Generic] = ACTIONS(1157), + [anon_sym_asm] = ACTIONS(1157), + [anon_sym___asm__] = ACTIONS(1157), + [sym_number_literal] = ACTIONS(1159), + [anon_sym_L_SQUOTE] = ACTIONS(1159), + [anon_sym_u_SQUOTE] = ACTIONS(1159), + [anon_sym_U_SQUOTE] = ACTIONS(1159), + [anon_sym_u8_SQUOTE] = ACTIONS(1159), + [anon_sym_SQUOTE] = ACTIONS(1159), + [anon_sym_L_DQUOTE] = ACTIONS(1159), + [anon_sym_u_DQUOTE] = ACTIONS(1159), + [anon_sym_U_DQUOTE] = ACTIONS(1159), + [anon_sym_u8_DQUOTE] = ACTIONS(1159), + [anon_sym_DQUOTE] = ACTIONS(1159), + [sym_true] = ACTIONS(1157), + [sym_false] = ACTIONS(1157), + [anon_sym_NULL] = ACTIONS(1157), + [anon_sym_nullptr] = ACTIONS(1157), [sym_comment] = ACTIONS(3), }, - [257] = { - [sym_identifier] = ACTIONS(1327), - [aux_sym_preproc_include_token1] = ACTIONS(1327), - [aux_sym_preproc_def_token1] = ACTIONS(1327), - [aux_sym_preproc_if_token1] = ACTIONS(1327), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1327), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1327), - [sym_preproc_directive] = ACTIONS(1327), - [anon_sym_LPAREN2] = ACTIONS(1329), - [anon_sym_BANG] = ACTIONS(1329), - [anon_sym_TILDE] = ACTIONS(1329), - [anon_sym_DASH] = ACTIONS(1327), - [anon_sym_PLUS] = ACTIONS(1327), - [anon_sym_STAR] = ACTIONS(1329), - [anon_sym_AMP] = ACTIONS(1329), - [anon_sym_SEMI] = ACTIONS(1329), - [anon_sym___extension__] = ACTIONS(1327), - [anon_sym_typedef] = ACTIONS(1327), - [anon_sym_extern] = ACTIONS(1327), - [anon_sym___attribute__] = ACTIONS(1327), - [anon_sym___scanf] = ACTIONS(1327), - [anon_sym___printf] = ACTIONS(1327), - [anon_sym___read_mostly] = ACTIONS(1327), - [anon_sym___must_hold] = ACTIONS(1327), - [anon_sym___ro_after_init] = ACTIONS(1327), - [anon_sym___init] = ACTIONS(1327), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1329), - [anon_sym___declspec] = ACTIONS(1327), - [anon_sym___cdecl] = ACTIONS(1327), - [anon_sym___clrcall] = ACTIONS(1327), - [anon_sym___stdcall] = ACTIONS(1327), - [anon_sym___fastcall] = ACTIONS(1327), - [anon_sym___thiscall] = ACTIONS(1327), - [anon_sym___vectorcall] = ACTIONS(1327), - [anon_sym_LBRACE] = ACTIONS(1329), - [anon_sym_RBRACE] = ACTIONS(1329), - [anon_sym_signed] = ACTIONS(1327), - [anon_sym_unsigned] = ACTIONS(1327), - [anon_sym_long] = ACTIONS(1327), - [anon_sym_short] = ACTIONS(1327), - [anon_sym_static] = ACTIONS(1327), - [anon_sym_auto] = ACTIONS(1327), - [anon_sym_register] = ACTIONS(1327), - [anon_sym_inline] = ACTIONS(1327), - [anon_sym___inline] = ACTIONS(1327), - [anon_sym___inline__] = ACTIONS(1327), - [anon_sym___forceinline] = ACTIONS(1327), - [anon_sym_thread_local] = ACTIONS(1327), - [anon_sym___thread] = ACTIONS(1327), - [anon_sym_const] = ACTIONS(1327), - [anon_sym_constexpr] = ACTIONS(1327), - [anon_sym_volatile] = ACTIONS(1327), - [anon_sym_restrict] = ACTIONS(1327), - [anon_sym___restrict__] = ACTIONS(1327), - [anon_sym__Atomic] = ACTIONS(1327), - [anon_sym__Noreturn] = ACTIONS(1327), - [anon_sym_noreturn] = ACTIONS(1327), - [anon_sym_alignas] = ACTIONS(1327), - [anon_sym__Alignas] = ACTIONS(1327), - [sym_primitive_type] = ACTIONS(1327), - [anon_sym_enum] = ACTIONS(1327), - [anon_sym_struct] = ACTIONS(1327), - [anon_sym_union] = ACTIONS(1327), - [anon_sym_if] = ACTIONS(1327), - [anon_sym_switch] = ACTIONS(1327), - [anon_sym_case] = ACTIONS(1327), - [anon_sym_default] = ACTIONS(1327), - [anon_sym_while] = ACTIONS(1327), - [anon_sym_do] = ACTIONS(1327), - [anon_sym_for] = ACTIONS(1327), - [anon_sym_return] = ACTIONS(1327), - [anon_sym_break] = ACTIONS(1327), - [anon_sym_continue] = ACTIONS(1327), - [anon_sym_goto] = ACTIONS(1327), - [anon_sym___try] = ACTIONS(1327), - [anon_sym___leave] = ACTIONS(1327), - [anon_sym_DASH_DASH] = ACTIONS(1329), - [anon_sym_PLUS_PLUS] = ACTIONS(1329), - [anon_sym_sizeof] = ACTIONS(1327), - [anon_sym___alignof__] = ACTIONS(1327), - [anon_sym___alignof] = ACTIONS(1327), - [anon_sym__alignof] = ACTIONS(1327), - [anon_sym_alignof] = ACTIONS(1327), - [anon_sym__Alignof] = ACTIONS(1327), - [anon_sym_offsetof] = ACTIONS(1327), - [anon_sym__Generic] = ACTIONS(1327), - [anon_sym_asm] = ACTIONS(1327), - [anon_sym___asm__] = ACTIONS(1327), - [sym_number_literal] = ACTIONS(1329), - [anon_sym_L_SQUOTE] = ACTIONS(1329), - [anon_sym_u_SQUOTE] = ACTIONS(1329), - [anon_sym_U_SQUOTE] = ACTIONS(1329), - [anon_sym_u8_SQUOTE] = ACTIONS(1329), - [anon_sym_SQUOTE] = ACTIONS(1329), - [anon_sym_L_DQUOTE] = ACTIONS(1329), - [anon_sym_u_DQUOTE] = ACTIONS(1329), - [anon_sym_U_DQUOTE] = ACTIONS(1329), - [anon_sym_u8_DQUOTE] = ACTIONS(1329), - [anon_sym_DQUOTE] = ACTIONS(1329), - [sym_true] = ACTIONS(1327), - [sym_false] = ACTIONS(1327), - [anon_sym_NULL] = ACTIONS(1327), - [anon_sym_nullptr] = ACTIONS(1327), + [291] = { + [sym_identifier] = ACTIONS(1225), + [aux_sym_preproc_include_token1] = ACTIONS(1225), + [aux_sym_preproc_def_token1] = ACTIONS(1225), + [aux_sym_preproc_if_token1] = ACTIONS(1225), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1225), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1225), + [sym_preproc_directive] = ACTIONS(1225), + [anon_sym_LPAREN2] = ACTIONS(1227), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_TILDE] = ACTIONS(1227), + [anon_sym_DASH] = ACTIONS(1225), + [anon_sym_PLUS] = ACTIONS(1225), + [anon_sym_STAR] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(1227), + [anon_sym_SEMI] = ACTIONS(1227), + [anon_sym___extension__] = ACTIONS(1225), + [anon_sym_typedef] = ACTIONS(1225), + [anon_sym_extern] = ACTIONS(1225), + [anon_sym___attribute__] = ACTIONS(1225), + [anon_sym___scanf] = ACTIONS(1225), + [anon_sym___printf] = ACTIONS(1225), + [anon_sym___read_mostly] = ACTIONS(1225), + [anon_sym___must_hold] = ACTIONS(1225), + [anon_sym___ro_after_init] = ACTIONS(1225), + [anon_sym___noreturn] = ACTIONS(1225), + [anon_sym___cold] = ACTIONS(1225), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1227), + [anon_sym___declspec] = ACTIONS(1225), + [anon_sym___init] = ACTIONS(1225), + [anon_sym___exit] = ACTIONS(1225), + [anon_sym___cdecl] = ACTIONS(1225), + [anon_sym___clrcall] = ACTIONS(1225), + [anon_sym___stdcall] = ACTIONS(1225), + [anon_sym___fastcall] = ACTIONS(1225), + [anon_sym___thiscall] = ACTIONS(1225), + [anon_sym___vectorcall] = ACTIONS(1225), + [anon_sym_LBRACE] = ACTIONS(1227), + [anon_sym_RBRACE] = ACTIONS(1227), + [anon_sym_signed] = ACTIONS(1225), + [anon_sym_unsigned] = ACTIONS(1225), + [anon_sym_long] = ACTIONS(1225), + [anon_sym_short] = ACTIONS(1225), + [anon_sym_static] = ACTIONS(1225), + [anon_sym_auto] = ACTIONS(1225), + [anon_sym_register] = ACTIONS(1225), + [anon_sym_inline] = ACTIONS(1225), + [anon_sym___inline] = ACTIONS(1225), + [anon_sym___inline__] = ACTIONS(1225), + [anon_sym___forceinline] = ACTIONS(1225), + [anon_sym_thread_local] = ACTIONS(1225), + [anon_sym___thread] = ACTIONS(1225), + [anon_sym_const] = ACTIONS(1225), + [anon_sym_constexpr] = ACTIONS(1225), + [anon_sym_volatile] = ACTIONS(1225), + [anon_sym_restrict] = ACTIONS(1225), + [anon_sym___restrict__] = ACTIONS(1225), + [anon_sym__Atomic] = ACTIONS(1225), + [anon_sym__Noreturn] = ACTIONS(1225), + [anon_sym_noreturn] = ACTIONS(1225), + [anon_sym_alignas] = ACTIONS(1225), + [anon_sym__Alignas] = ACTIONS(1225), + [sym_primitive_type] = ACTIONS(1225), + [anon_sym_enum] = ACTIONS(1225), + [anon_sym_struct] = ACTIONS(1225), + [anon_sym_union] = ACTIONS(1225), + [anon_sym_if] = ACTIONS(1225), + [anon_sym_else] = ACTIONS(1225), + [anon_sym_switch] = ACTIONS(1225), + [anon_sym_case] = ACTIONS(1225), + [anon_sym_default] = ACTIONS(1225), + [anon_sym_while] = ACTIONS(1225), + [anon_sym_do] = ACTIONS(1225), + [anon_sym_for] = ACTIONS(1225), + [anon_sym_return] = ACTIONS(1225), + [anon_sym_break] = ACTIONS(1225), + [anon_sym_continue] = ACTIONS(1225), + [anon_sym_goto] = ACTIONS(1225), + [anon_sym___try] = ACTIONS(1225), + [anon_sym___leave] = ACTIONS(1225), + [anon_sym_DASH_DASH] = ACTIONS(1227), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_sizeof] = ACTIONS(1225), + [anon_sym___alignof__] = ACTIONS(1225), + [anon_sym___alignof] = ACTIONS(1225), + [anon_sym__alignof] = ACTIONS(1225), + [anon_sym_alignof] = ACTIONS(1225), + [anon_sym__Alignof] = ACTIONS(1225), + [anon_sym_offsetof] = ACTIONS(1225), + [anon_sym__Generic] = ACTIONS(1225), + [anon_sym_asm] = ACTIONS(1225), + [anon_sym___asm__] = ACTIONS(1225), + [sym_number_literal] = ACTIONS(1227), + [anon_sym_L_SQUOTE] = ACTIONS(1227), + [anon_sym_u_SQUOTE] = ACTIONS(1227), + [anon_sym_U_SQUOTE] = ACTIONS(1227), + [anon_sym_u8_SQUOTE] = ACTIONS(1227), + [anon_sym_SQUOTE] = ACTIONS(1227), + [anon_sym_L_DQUOTE] = ACTIONS(1227), + [anon_sym_u_DQUOTE] = ACTIONS(1227), + [anon_sym_U_DQUOTE] = ACTIONS(1227), + [anon_sym_u8_DQUOTE] = ACTIONS(1227), + [anon_sym_DQUOTE] = ACTIONS(1227), + [sym_true] = ACTIONS(1225), + [sym_false] = ACTIONS(1225), + [anon_sym_NULL] = ACTIONS(1225), + [anon_sym_nullptr] = ACTIONS(1225), [sym_comment] = ACTIONS(3), }, - [258] = { - [sym_identifier] = ACTIONS(1281), - [aux_sym_preproc_include_token1] = ACTIONS(1281), - [aux_sym_preproc_def_token1] = ACTIONS(1281), - [aux_sym_preproc_if_token1] = ACTIONS(1281), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1281), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1281), - [sym_preproc_directive] = ACTIONS(1281), - [anon_sym_LPAREN2] = ACTIONS(1283), - [anon_sym_BANG] = ACTIONS(1283), - [anon_sym_TILDE] = ACTIONS(1283), - [anon_sym_DASH] = ACTIONS(1281), - [anon_sym_PLUS] = ACTIONS(1281), - [anon_sym_STAR] = ACTIONS(1283), - [anon_sym_AMP] = ACTIONS(1283), - [anon_sym_SEMI] = ACTIONS(1283), - [anon_sym___extension__] = ACTIONS(1281), - [anon_sym_typedef] = ACTIONS(1281), - [anon_sym_extern] = ACTIONS(1281), - [anon_sym___attribute__] = ACTIONS(1281), - [anon_sym___scanf] = ACTIONS(1281), - [anon_sym___printf] = ACTIONS(1281), - [anon_sym___read_mostly] = ACTIONS(1281), - [anon_sym___must_hold] = ACTIONS(1281), - [anon_sym___ro_after_init] = ACTIONS(1281), - [anon_sym___init] = ACTIONS(1281), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1283), - [anon_sym___declspec] = ACTIONS(1281), - [anon_sym___cdecl] = ACTIONS(1281), - [anon_sym___clrcall] = ACTIONS(1281), - [anon_sym___stdcall] = ACTIONS(1281), - [anon_sym___fastcall] = ACTIONS(1281), - [anon_sym___thiscall] = ACTIONS(1281), - [anon_sym___vectorcall] = ACTIONS(1281), - [anon_sym_LBRACE] = ACTIONS(1283), - [anon_sym_RBRACE] = ACTIONS(1283), - [anon_sym_signed] = ACTIONS(1281), - [anon_sym_unsigned] = ACTIONS(1281), - [anon_sym_long] = ACTIONS(1281), - [anon_sym_short] = ACTIONS(1281), - [anon_sym_static] = ACTIONS(1281), - [anon_sym_auto] = ACTIONS(1281), - [anon_sym_register] = ACTIONS(1281), - [anon_sym_inline] = ACTIONS(1281), - [anon_sym___inline] = ACTIONS(1281), - [anon_sym___inline__] = ACTIONS(1281), - [anon_sym___forceinline] = ACTIONS(1281), - [anon_sym_thread_local] = ACTIONS(1281), - [anon_sym___thread] = ACTIONS(1281), - [anon_sym_const] = ACTIONS(1281), - [anon_sym_constexpr] = ACTIONS(1281), - [anon_sym_volatile] = ACTIONS(1281), - [anon_sym_restrict] = ACTIONS(1281), - [anon_sym___restrict__] = ACTIONS(1281), - [anon_sym__Atomic] = ACTIONS(1281), - [anon_sym__Noreturn] = ACTIONS(1281), - [anon_sym_noreturn] = ACTIONS(1281), - [anon_sym_alignas] = ACTIONS(1281), - [anon_sym__Alignas] = ACTIONS(1281), - [sym_primitive_type] = ACTIONS(1281), - [anon_sym_enum] = ACTIONS(1281), - [anon_sym_struct] = ACTIONS(1281), - [anon_sym_union] = ACTIONS(1281), - [anon_sym_if] = ACTIONS(1281), - [anon_sym_switch] = ACTIONS(1281), - [anon_sym_case] = ACTIONS(1281), - [anon_sym_default] = ACTIONS(1281), - [anon_sym_while] = ACTIONS(1281), - [anon_sym_do] = ACTIONS(1281), - [anon_sym_for] = ACTIONS(1281), - [anon_sym_return] = ACTIONS(1281), - [anon_sym_break] = ACTIONS(1281), - [anon_sym_continue] = ACTIONS(1281), - [anon_sym_goto] = ACTIONS(1281), - [anon_sym___try] = ACTIONS(1281), - [anon_sym___leave] = ACTIONS(1281), - [anon_sym_DASH_DASH] = ACTIONS(1283), - [anon_sym_PLUS_PLUS] = ACTIONS(1283), - [anon_sym_sizeof] = ACTIONS(1281), - [anon_sym___alignof__] = ACTIONS(1281), - [anon_sym___alignof] = ACTIONS(1281), - [anon_sym__alignof] = ACTIONS(1281), - [anon_sym_alignof] = ACTIONS(1281), - [anon_sym__Alignof] = ACTIONS(1281), - [anon_sym_offsetof] = ACTIONS(1281), - [anon_sym__Generic] = ACTIONS(1281), - [anon_sym_asm] = ACTIONS(1281), - [anon_sym___asm__] = ACTIONS(1281), - [sym_number_literal] = ACTIONS(1283), - [anon_sym_L_SQUOTE] = ACTIONS(1283), - [anon_sym_u_SQUOTE] = ACTIONS(1283), - [anon_sym_U_SQUOTE] = ACTIONS(1283), - [anon_sym_u8_SQUOTE] = ACTIONS(1283), - [anon_sym_SQUOTE] = ACTIONS(1283), - [anon_sym_L_DQUOTE] = ACTIONS(1283), - [anon_sym_u_DQUOTE] = ACTIONS(1283), - [anon_sym_U_DQUOTE] = ACTIONS(1283), - [anon_sym_u8_DQUOTE] = ACTIONS(1283), - [anon_sym_DQUOTE] = ACTIONS(1283), - [sym_true] = ACTIONS(1281), - [sym_false] = ACTIONS(1281), - [anon_sym_NULL] = ACTIONS(1281), - [anon_sym_nullptr] = ACTIONS(1281), + [292] = { + [sym_identifier] = ACTIONS(1309), + [aux_sym_preproc_include_token1] = ACTIONS(1309), + [aux_sym_preproc_def_token1] = ACTIONS(1309), + [aux_sym_preproc_if_token1] = ACTIONS(1309), + [aux_sym_preproc_if_token2] = ACTIONS(1309), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1309), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1309), + [sym_preproc_directive] = ACTIONS(1309), + [anon_sym_LPAREN2] = ACTIONS(1311), + [anon_sym_BANG] = ACTIONS(1311), + [anon_sym_TILDE] = ACTIONS(1311), + [anon_sym_DASH] = ACTIONS(1309), + [anon_sym_PLUS] = ACTIONS(1309), + [anon_sym_STAR] = ACTIONS(1311), + [anon_sym_AMP] = ACTIONS(1311), + [anon_sym_SEMI] = ACTIONS(1311), + [anon_sym___extension__] = ACTIONS(1309), + [anon_sym_typedef] = ACTIONS(1309), + [anon_sym_extern] = ACTIONS(1309), + [anon_sym___attribute__] = ACTIONS(1309), + [anon_sym___scanf] = ACTIONS(1309), + [anon_sym___printf] = ACTIONS(1309), + [anon_sym___read_mostly] = ACTIONS(1309), + [anon_sym___must_hold] = ACTIONS(1309), + [anon_sym___ro_after_init] = ACTIONS(1309), + [anon_sym___noreturn] = ACTIONS(1309), + [anon_sym___cold] = ACTIONS(1309), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1311), + [anon_sym___declspec] = ACTIONS(1309), + [anon_sym___init] = ACTIONS(1309), + [anon_sym___exit] = ACTIONS(1309), + [anon_sym___cdecl] = ACTIONS(1309), + [anon_sym___clrcall] = ACTIONS(1309), + [anon_sym___stdcall] = ACTIONS(1309), + [anon_sym___fastcall] = ACTIONS(1309), + [anon_sym___thiscall] = ACTIONS(1309), + [anon_sym___vectorcall] = ACTIONS(1309), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_signed] = ACTIONS(1309), + [anon_sym_unsigned] = ACTIONS(1309), + [anon_sym_long] = ACTIONS(1309), + [anon_sym_short] = ACTIONS(1309), + [anon_sym_static] = ACTIONS(1309), + [anon_sym_auto] = ACTIONS(1309), + [anon_sym_register] = ACTIONS(1309), + [anon_sym_inline] = ACTIONS(1309), + [anon_sym___inline] = ACTIONS(1309), + [anon_sym___inline__] = ACTIONS(1309), + [anon_sym___forceinline] = ACTIONS(1309), + [anon_sym_thread_local] = ACTIONS(1309), + [anon_sym___thread] = ACTIONS(1309), + [anon_sym_const] = ACTIONS(1309), + [anon_sym_constexpr] = ACTIONS(1309), + [anon_sym_volatile] = ACTIONS(1309), + [anon_sym_restrict] = ACTIONS(1309), + [anon_sym___restrict__] = ACTIONS(1309), + [anon_sym__Atomic] = ACTIONS(1309), + [anon_sym__Noreturn] = ACTIONS(1309), + [anon_sym_noreturn] = ACTIONS(1309), + [anon_sym_alignas] = ACTIONS(1309), + [anon_sym__Alignas] = ACTIONS(1309), + [sym_primitive_type] = ACTIONS(1309), + [anon_sym_enum] = ACTIONS(1309), + [anon_sym_struct] = ACTIONS(1309), + [anon_sym_union] = ACTIONS(1309), + [anon_sym_if] = ACTIONS(1309), + [anon_sym_switch] = ACTIONS(1309), + [anon_sym_case] = ACTIONS(1309), + [anon_sym_default] = ACTIONS(1309), + [anon_sym_while] = ACTIONS(1309), + [anon_sym_do] = ACTIONS(1309), + [anon_sym_for] = ACTIONS(1309), + [anon_sym_return] = ACTIONS(1309), + [anon_sym_break] = ACTIONS(1309), + [anon_sym_continue] = ACTIONS(1309), + [anon_sym_goto] = ACTIONS(1309), + [anon_sym___try] = ACTIONS(1309), + [anon_sym___leave] = ACTIONS(1309), + [anon_sym_DASH_DASH] = ACTIONS(1311), + [anon_sym_PLUS_PLUS] = ACTIONS(1311), + [anon_sym_sizeof] = ACTIONS(1309), + [anon_sym___alignof__] = ACTIONS(1309), + [anon_sym___alignof] = ACTIONS(1309), + [anon_sym__alignof] = ACTIONS(1309), + [anon_sym_alignof] = ACTIONS(1309), + [anon_sym__Alignof] = ACTIONS(1309), + [anon_sym_offsetof] = ACTIONS(1309), + [anon_sym__Generic] = ACTIONS(1309), + [anon_sym_asm] = ACTIONS(1309), + [anon_sym___asm__] = ACTIONS(1309), + [sym_number_literal] = ACTIONS(1311), + [anon_sym_L_SQUOTE] = ACTIONS(1311), + [anon_sym_u_SQUOTE] = ACTIONS(1311), + [anon_sym_U_SQUOTE] = ACTIONS(1311), + [anon_sym_u8_SQUOTE] = ACTIONS(1311), + [anon_sym_SQUOTE] = ACTIONS(1311), + [anon_sym_L_DQUOTE] = ACTIONS(1311), + [anon_sym_u_DQUOTE] = ACTIONS(1311), + [anon_sym_U_DQUOTE] = ACTIONS(1311), + [anon_sym_u8_DQUOTE] = ACTIONS(1311), + [anon_sym_DQUOTE] = ACTIONS(1311), + [sym_true] = ACTIONS(1309), + [sym_false] = ACTIONS(1309), + [anon_sym_NULL] = ACTIONS(1309), + [anon_sym_nullptr] = ACTIONS(1309), [sym_comment] = ACTIONS(3), }, - [259] = { - [sym_identifier] = ACTIONS(1281), - [aux_sym_preproc_include_token1] = ACTIONS(1281), - [aux_sym_preproc_def_token1] = ACTIONS(1281), - [aux_sym_preproc_if_token1] = ACTIONS(1281), - [aux_sym_preproc_if_token2] = ACTIONS(1281), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1281), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1281), - [sym_preproc_directive] = ACTIONS(1281), - [anon_sym_LPAREN2] = ACTIONS(1283), - [anon_sym_BANG] = ACTIONS(1283), - [anon_sym_TILDE] = ACTIONS(1283), - [anon_sym_DASH] = ACTIONS(1281), - [anon_sym_PLUS] = ACTIONS(1281), - [anon_sym_STAR] = ACTIONS(1283), - [anon_sym_AMP] = ACTIONS(1283), - [anon_sym_SEMI] = ACTIONS(1283), - [anon_sym___extension__] = ACTIONS(1281), - [anon_sym_typedef] = ACTIONS(1281), - [anon_sym_extern] = ACTIONS(1281), - [anon_sym___attribute__] = ACTIONS(1281), - [anon_sym___scanf] = ACTIONS(1281), - [anon_sym___printf] = ACTIONS(1281), - [anon_sym___read_mostly] = ACTIONS(1281), - [anon_sym___must_hold] = ACTIONS(1281), - [anon_sym___ro_after_init] = ACTIONS(1281), - [anon_sym___init] = ACTIONS(1281), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1283), - [anon_sym___declspec] = ACTIONS(1281), - [anon_sym___cdecl] = ACTIONS(1281), - [anon_sym___clrcall] = ACTIONS(1281), - [anon_sym___stdcall] = ACTIONS(1281), - [anon_sym___fastcall] = ACTIONS(1281), - [anon_sym___thiscall] = ACTIONS(1281), - [anon_sym___vectorcall] = ACTIONS(1281), - [anon_sym_LBRACE] = ACTIONS(1283), - [anon_sym_signed] = ACTIONS(1281), - [anon_sym_unsigned] = ACTIONS(1281), - [anon_sym_long] = ACTIONS(1281), - [anon_sym_short] = ACTIONS(1281), - [anon_sym_static] = ACTIONS(1281), - [anon_sym_auto] = ACTIONS(1281), - [anon_sym_register] = ACTIONS(1281), - [anon_sym_inline] = ACTIONS(1281), - [anon_sym___inline] = ACTIONS(1281), - [anon_sym___inline__] = ACTIONS(1281), - [anon_sym___forceinline] = ACTIONS(1281), - [anon_sym_thread_local] = ACTIONS(1281), - [anon_sym___thread] = ACTIONS(1281), - [anon_sym_const] = ACTIONS(1281), - [anon_sym_constexpr] = ACTIONS(1281), - [anon_sym_volatile] = ACTIONS(1281), - [anon_sym_restrict] = ACTIONS(1281), - [anon_sym___restrict__] = ACTIONS(1281), - [anon_sym__Atomic] = ACTIONS(1281), - [anon_sym__Noreturn] = ACTIONS(1281), - [anon_sym_noreturn] = ACTIONS(1281), - [anon_sym_alignas] = ACTIONS(1281), - [anon_sym__Alignas] = ACTIONS(1281), - [sym_primitive_type] = ACTIONS(1281), - [anon_sym_enum] = ACTIONS(1281), - [anon_sym_struct] = ACTIONS(1281), - [anon_sym_union] = ACTIONS(1281), - [anon_sym_if] = ACTIONS(1281), - [anon_sym_switch] = ACTIONS(1281), - [anon_sym_case] = ACTIONS(1281), - [anon_sym_default] = ACTIONS(1281), - [anon_sym_while] = ACTIONS(1281), - [anon_sym_do] = ACTIONS(1281), - [anon_sym_for] = ACTIONS(1281), - [anon_sym_return] = ACTIONS(1281), - [anon_sym_break] = ACTIONS(1281), - [anon_sym_continue] = ACTIONS(1281), - [anon_sym_goto] = ACTIONS(1281), - [anon_sym___try] = ACTIONS(1281), - [anon_sym___leave] = ACTIONS(1281), - [anon_sym_DASH_DASH] = ACTIONS(1283), - [anon_sym_PLUS_PLUS] = ACTIONS(1283), - [anon_sym_sizeof] = ACTIONS(1281), - [anon_sym___alignof__] = ACTIONS(1281), - [anon_sym___alignof] = ACTIONS(1281), - [anon_sym__alignof] = ACTIONS(1281), - [anon_sym_alignof] = ACTIONS(1281), - [anon_sym__Alignof] = ACTIONS(1281), - [anon_sym_offsetof] = ACTIONS(1281), - [anon_sym__Generic] = ACTIONS(1281), - [anon_sym_asm] = ACTIONS(1281), - [anon_sym___asm__] = ACTIONS(1281), - [sym_number_literal] = ACTIONS(1283), - [anon_sym_L_SQUOTE] = ACTIONS(1283), - [anon_sym_u_SQUOTE] = ACTIONS(1283), - [anon_sym_U_SQUOTE] = ACTIONS(1283), - [anon_sym_u8_SQUOTE] = ACTIONS(1283), - [anon_sym_SQUOTE] = ACTIONS(1283), - [anon_sym_L_DQUOTE] = ACTIONS(1283), - [anon_sym_u_DQUOTE] = ACTIONS(1283), - [anon_sym_U_DQUOTE] = ACTIONS(1283), - [anon_sym_u8_DQUOTE] = ACTIONS(1283), - [anon_sym_DQUOTE] = ACTIONS(1283), - [sym_true] = ACTIONS(1281), - [sym_false] = ACTIONS(1281), - [anon_sym_NULL] = ACTIONS(1281), - [anon_sym_nullptr] = ACTIONS(1281), + [293] = { + [sym_identifier] = ACTIONS(1337), + [aux_sym_preproc_include_token1] = ACTIONS(1337), + [aux_sym_preproc_def_token1] = ACTIONS(1337), + [aux_sym_preproc_if_token1] = ACTIONS(1337), + [aux_sym_preproc_if_token2] = ACTIONS(1337), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1337), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1337), + [sym_preproc_directive] = ACTIONS(1337), + [anon_sym_LPAREN2] = ACTIONS(1339), + [anon_sym_BANG] = ACTIONS(1339), + [anon_sym_TILDE] = ACTIONS(1339), + [anon_sym_DASH] = ACTIONS(1337), + [anon_sym_PLUS] = ACTIONS(1337), + [anon_sym_STAR] = ACTIONS(1339), + [anon_sym_AMP] = ACTIONS(1339), + [anon_sym_SEMI] = ACTIONS(1339), + [anon_sym___extension__] = ACTIONS(1337), + [anon_sym_typedef] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1337), + [anon_sym___attribute__] = ACTIONS(1337), + [anon_sym___scanf] = ACTIONS(1337), + [anon_sym___printf] = ACTIONS(1337), + [anon_sym___read_mostly] = ACTIONS(1337), + [anon_sym___must_hold] = ACTIONS(1337), + [anon_sym___ro_after_init] = ACTIONS(1337), + [anon_sym___noreturn] = ACTIONS(1337), + [anon_sym___cold] = ACTIONS(1337), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1339), + [anon_sym___declspec] = ACTIONS(1337), + [anon_sym___init] = ACTIONS(1337), + [anon_sym___exit] = ACTIONS(1337), + [anon_sym___cdecl] = ACTIONS(1337), + [anon_sym___clrcall] = ACTIONS(1337), + [anon_sym___stdcall] = ACTIONS(1337), + [anon_sym___fastcall] = ACTIONS(1337), + [anon_sym___thiscall] = ACTIONS(1337), + [anon_sym___vectorcall] = ACTIONS(1337), + [anon_sym_LBRACE] = ACTIONS(1339), + [anon_sym_signed] = ACTIONS(1337), + [anon_sym_unsigned] = ACTIONS(1337), + [anon_sym_long] = ACTIONS(1337), + [anon_sym_short] = ACTIONS(1337), + [anon_sym_static] = ACTIONS(1337), + [anon_sym_auto] = ACTIONS(1337), + [anon_sym_register] = ACTIONS(1337), + [anon_sym_inline] = ACTIONS(1337), + [anon_sym___inline] = ACTIONS(1337), + [anon_sym___inline__] = ACTIONS(1337), + [anon_sym___forceinline] = ACTIONS(1337), + [anon_sym_thread_local] = ACTIONS(1337), + [anon_sym___thread] = ACTIONS(1337), + [anon_sym_const] = ACTIONS(1337), + [anon_sym_constexpr] = ACTIONS(1337), + [anon_sym_volatile] = ACTIONS(1337), + [anon_sym_restrict] = ACTIONS(1337), + [anon_sym___restrict__] = ACTIONS(1337), + [anon_sym__Atomic] = ACTIONS(1337), + [anon_sym__Noreturn] = ACTIONS(1337), + [anon_sym_noreturn] = ACTIONS(1337), + [anon_sym_alignas] = ACTIONS(1337), + [anon_sym__Alignas] = ACTIONS(1337), + [sym_primitive_type] = ACTIONS(1337), + [anon_sym_enum] = ACTIONS(1337), + [anon_sym_struct] = ACTIONS(1337), + [anon_sym_union] = ACTIONS(1337), + [anon_sym_if] = ACTIONS(1337), + [anon_sym_switch] = ACTIONS(1337), + [anon_sym_case] = ACTIONS(1337), + [anon_sym_default] = ACTIONS(1337), + [anon_sym_while] = ACTIONS(1337), + [anon_sym_do] = ACTIONS(1337), + [anon_sym_for] = ACTIONS(1337), + [anon_sym_return] = ACTIONS(1337), + [anon_sym_break] = ACTIONS(1337), + [anon_sym_continue] = ACTIONS(1337), + [anon_sym_goto] = ACTIONS(1337), + [anon_sym___try] = ACTIONS(1337), + [anon_sym___leave] = ACTIONS(1337), + [anon_sym_DASH_DASH] = ACTIONS(1339), + [anon_sym_PLUS_PLUS] = ACTIONS(1339), + [anon_sym_sizeof] = ACTIONS(1337), + [anon_sym___alignof__] = ACTIONS(1337), + [anon_sym___alignof] = ACTIONS(1337), + [anon_sym__alignof] = ACTIONS(1337), + [anon_sym_alignof] = ACTIONS(1337), + [anon_sym__Alignof] = ACTIONS(1337), + [anon_sym_offsetof] = ACTIONS(1337), + [anon_sym__Generic] = ACTIONS(1337), + [anon_sym_asm] = ACTIONS(1337), + [anon_sym___asm__] = ACTIONS(1337), + [sym_number_literal] = ACTIONS(1339), + [anon_sym_L_SQUOTE] = ACTIONS(1339), + [anon_sym_u_SQUOTE] = ACTIONS(1339), + [anon_sym_U_SQUOTE] = ACTIONS(1339), + [anon_sym_u8_SQUOTE] = ACTIONS(1339), + [anon_sym_SQUOTE] = ACTIONS(1339), + [anon_sym_L_DQUOTE] = ACTIONS(1339), + [anon_sym_u_DQUOTE] = ACTIONS(1339), + [anon_sym_U_DQUOTE] = ACTIONS(1339), + [anon_sym_u8_DQUOTE] = ACTIONS(1339), + [anon_sym_DQUOTE] = ACTIONS(1339), + [sym_true] = ACTIONS(1337), + [sym_false] = ACTIONS(1337), + [anon_sym_NULL] = ACTIONS(1337), + [anon_sym_nullptr] = ACTIONS(1337), [sym_comment] = ACTIONS(3), }, - [260] = { - [sym_identifier] = ACTIONS(1295), - [aux_sym_preproc_include_token1] = ACTIONS(1295), - [aux_sym_preproc_def_token1] = ACTIONS(1295), - [aux_sym_preproc_if_token1] = ACTIONS(1295), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1295), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1295), - [sym_preproc_directive] = ACTIONS(1295), - [anon_sym_LPAREN2] = ACTIONS(1297), - [anon_sym_BANG] = ACTIONS(1297), - [anon_sym_TILDE] = ACTIONS(1297), - [anon_sym_DASH] = ACTIONS(1295), - [anon_sym_PLUS] = ACTIONS(1295), - [anon_sym_STAR] = ACTIONS(1297), - [anon_sym_AMP] = ACTIONS(1297), - [anon_sym_SEMI] = ACTIONS(1297), - [anon_sym___extension__] = ACTIONS(1295), - [anon_sym_typedef] = ACTIONS(1295), - [anon_sym_extern] = ACTIONS(1295), - [anon_sym___attribute__] = ACTIONS(1295), - [anon_sym___scanf] = ACTIONS(1295), - [anon_sym___printf] = ACTIONS(1295), - [anon_sym___read_mostly] = ACTIONS(1295), - [anon_sym___must_hold] = ACTIONS(1295), - [anon_sym___ro_after_init] = ACTIONS(1295), - [anon_sym___init] = ACTIONS(1295), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1297), - [anon_sym___declspec] = ACTIONS(1295), - [anon_sym___cdecl] = ACTIONS(1295), - [anon_sym___clrcall] = ACTIONS(1295), - [anon_sym___stdcall] = ACTIONS(1295), - [anon_sym___fastcall] = ACTIONS(1295), - [anon_sym___thiscall] = ACTIONS(1295), - [anon_sym___vectorcall] = ACTIONS(1295), - [anon_sym_LBRACE] = ACTIONS(1297), - [anon_sym_RBRACE] = ACTIONS(1297), - [anon_sym_signed] = ACTIONS(1295), - [anon_sym_unsigned] = ACTIONS(1295), - [anon_sym_long] = ACTIONS(1295), - [anon_sym_short] = ACTIONS(1295), - [anon_sym_static] = ACTIONS(1295), - [anon_sym_auto] = ACTIONS(1295), - [anon_sym_register] = ACTIONS(1295), - [anon_sym_inline] = ACTIONS(1295), - [anon_sym___inline] = ACTIONS(1295), - [anon_sym___inline__] = ACTIONS(1295), - [anon_sym___forceinline] = ACTIONS(1295), - [anon_sym_thread_local] = ACTIONS(1295), - [anon_sym___thread] = ACTIONS(1295), - [anon_sym_const] = ACTIONS(1295), - [anon_sym_constexpr] = ACTIONS(1295), - [anon_sym_volatile] = ACTIONS(1295), - [anon_sym_restrict] = ACTIONS(1295), - [anon_sym___restrict__] = ACTIONS(1295), - [anon_sym__Atomic] = ACTIONS(1295), - [anon_sym__Noreturn] = ACTIONS(1295), - [anon_sym_noreturn] = ACTIONS(1295), - [anon_sym_alignas] = ACTIONS(1295), - [anon_sym__Alignas] = ACTIONS(1295), - [sym_primitive_type] = ACTIONS(1295), - [anon_sym_enum] = ACTIONS(1295), - [anon_sym_struct] = ACTIONS(1295), - [anon_sym_union] = ACTIONS(1295), - [anon_sym_if] = ACTIONS(1295), - [anon_sym_switch] = ACTIONS(1295), - [anon_sym_case] = ACTIONS(1295), - [anon_sym_default] = ACTIONS(1295), - [anon_sym_while] = ACTIONS(1295), - [anon_sym_do] = ACTIONS(1295), - [anon_sym_for] = ACTIONS(1295), - [anon_sym_return] = ACTIONS(1295), - [anon_sym_break] = ACTIONS(1295), - [anon_sym_continue] = ACTIONS(1295), - [anon_sym_goto] = ACTIONS(1295), - [anon_sym___try] = ACTIONS(1295), - [anon_sym___leave] = ACTIONS(1295), - [anon_sym_DASH_DASH] = ACTIONS(1297), - [anon_sym_PLUS_PLUS] = ACTIONS(1297), - [anon_sym_sizeof] = ACTIONS(1295), - [anon_sym___alignof__] = ACTIONS(1295), - [anon_sym___alignof] = ACTIONS(1295), - [anon_sym__alignof] = ACTIONS(1295), - [anon_sym_alignof] = ACTIONS(1295), - [anon_sym__Alignof] = ACTIONS(1295), - [anon_sym_offsetof] = ACTIONS(1295), - [anon_sym__Generic] = ACTIONS(1295), - [anon_sym_asm] = ACTIONS(1295), - [anon_sym___asm__] = ACTIONS(1295), - [sym_number_literal] = ACTIONS(1297), - [anon_sym_L_SQUOTE] = ACTIONS(1297), - [anon_sym_u_SQUOTE] = ACTIONS(1297), - [anon_sym_U_SQUOTE] = ACTIONS(1297), - [anon_sym_u8_SQUOTE] = ACTIONS(1297), - [anon_sym_SQUOTE] = ACTIONS(1297), - [anon_sym_L_DQUOTE] = ACTIONS(1297), - [anon_sym_u_DQUOTE] = ACTIONS(1297), - [anon_sym_U_DQUOTE] = ACTIONS(1297), - [anon_sym_u8_DQUOTE] = ACTIONS(1297), - [anon_sym_DQUOTE] = ACTIONS(1297), - [sym_true] = ACTIONS(1295), - [sym_false] = ACTIONS(1295), - [anon_sym_NULL] = ACTIONS(1295), - [anon_sym_nullptr] = ACTIONS(1295), + [294] = { + [sym_identifier] = ACTIONS(1353), + [aux_sym_preproc_include_token1] = ACTIONS(1353), + [aux_sym_preproc_def_token1] = ACTIONS(1353), + [aux_sym_preproc_if_token1] = ACTIONS(1353), + [aux_sym_preproc_if_token2] = ACTIONS(1353), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1353), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1353), + [sym_preproc_directive] = ACTIONS(1353), + [anon_sym_LPAREN2] = ACTIONS(1355), + [anon_sym_BANG] = ACTIONS(1355), + [anon_sym_TILDE] = ACTIONS(1355), + [anon_sym_DASH] = ACTIONS(1353), + [anon_sym_PLUS] = ACTIONS(1353), + [anon_sym_STAR] = ACTIONS(1355), + [anon_sym_AMP] = ACTIONS(1355), + [anon_sym_SEMI] = ACTIONS(1355), + [anon_sym___extension__] = ACTIONS(1353), + [anon_sym_typedef] = ACTIONS(1353), + [anon_sym_extern] = ACTIONS(1353), + [anon_sym___attribute__] = ACTIONS(1353), + [anon_sym___scanf] = ACTIONS(1353), + [anon_sym___printf] = ACTIONS(1353), + [anon_sym___read_mostly] = ACTIONS(1353), + [anon_sym___must_hold] = ACTIONS(1353), + [anon_sym___ro_after_init] = ACTIONS(1353), + [anon_sym___noreturn] = ACTIONS(1353), + [anon_sym___cold] = ACTIONS(1353), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1355), + [anon_sym___declspec] = ACTIONS(1353), + [anon_sym___init] = ACTIONS(1353), + [anon_sym___exit] = ACTIONS(1353), + [anon_sym___cdecl] = ACTIONS(1353), + [anon_sym___clrcall] = ACTIONS(1353), + [anon_sym___stdcall] = ACTIONS(1353), + [anon_sym___fastcall] = ACTIONS(1353), + [anon_sym___thiscall] = ACTIONS(1353), + [anon_sym___vectorcall] = ACTIONS(1353), + [anon_sym_LBRACE] = ACTIONS(1355), + [anon_sym_signed] = ACTIONS(1353), + [anon_sym_unsigned] = ACTIONS(1353), + [anon_sym_long] = ACTIONS(1353), + [anon_sym_short] = ACTIONS(1353), + [anon_sym_static] = ACTIONS(1353), + [anon_sym_auto] = ACTIONS(1353), + [anon_sym_register] = ACTIONS(1353), + [anon_sym_inline] = ACTIONS(1353), + [anon_sym___inline] = ACTIONS(1353), + [anon_sym___inline__] = ACTIONS(1353), + [anon_sym___forceinline] = ACTIONS(1353), + [anon_sym_thread_local] = ACTIONS(1353), + [anon_sym___thread] = ACTIONS(1353), + [anon_sym_const] = ACTIONS(1353), + [anon_sym_constexpr] = ACTIONS(1353), + [anon_sym_volatile] = ACTIONS(1353), + [anon_sym_restrict] = ACTIONS(1353), + [anon_sym___restrict__] = ACTIONS(1353), + [anon_sym__Atomic] = ACTIONS(1353), + [anon_sym__Noreturn] = ACTIONS(1353), + [anon_sym_noreturn] = ACTIONS(1353), + [anon_sym_alignas] = ACTIONS(1353), + [anon_sym__Alignas] = ACTIONS(1353), + [sym_primitive_type] = ACTIONS(1353), + [anon_sym_enum] = ACTIONS(1353), + [anon_sym_struct] = ACTIONS(1353), + [anon_sym_union] = ACTIONS(1353), + [anon_sym_if] = ACTIONS(1353), + [anon_sym_switch] = ACTIONS(1353), + [anon_sym_case] = ACTIONS(1353), + [anon_sym_default] = ACTIONS(1353), + [anon_sym_while] = ACTIONS(1353), + [anon_sym_do] = ACTIONS(1353), + [anon_sym_for] = ACTIONS(1353), + [anon_sym_return] = ACTIONS(1353), + [anon_sym_break] = ACTIONS(1353), + [anon_sym_continue] = ACTIONS(1353), + [anon_sym_goto] = ACTIONS(1353), + [anon_sym___try] = ACTIONS(1353), + [anon_sym___leave] = ACTIONS(1353), + [anon_sym_DASH_DASH] = ACTIONS(1355), + [anon_sym_PLUS_PLUS] = ACTIONS(1355), + [anon_sym_sizeof] = ACTIONS(1353), + [anon_sym___alignof__] = ACTIONS(1353), + [anon_sym___alignof] = ACTIONS(1353), + [anon_sym__alignof] = ACTIONS(1353), + [anon_sym_alignof] = ACTIONS(1353), + [anon_sym__Alignof] = ACTIONS(1353), + [anon_sym_offsetof] = ACTIONS(1353), + [anon_sym__Generic] = ACTIONS(1353), + [anon_sym_asm] = ACTIONS(1353), + [anon_sym___asm__] = ACTIONS(1353), + [sym_number_literal] = ACTIONS(1355), + [anon_sym_L_SQUOTE] = ACTIONS(1355), + [anon_sym_u_SQUOTE] = ACTIONS(1355), + [anon_sym_U_SQUOTE] = ACTIONS(1355), + [anon_sym_u8_SQUOTE] = ACTIONS(1355), + [anon_sym_SQUOTE] = ACTIONS(1355), + [anon_sym_L_DQUOTE] = ACTIONS(1355), + [anon_sym_u_DQUOTE] = ACTIONS(1355), + [anon_sym_U_DQUOTE] = ACTIONS(1355), + [anon_sym_u8_DQUOTE] = ACTIONS(1355), + [anon_sym_DQUOTE] = ACTIONS(1355), + [sym_true] = ACTIONS(1353), + [sym_false] = ACTIONS(1353), + [anon_sym_NULL] = ACTIONS(1353), + [anon_sym_nullptr] = ACTIONS(1353), [sym_comment] = ACTIONS(3), }, - [261] = { - [sym_identifier] = ACTIONS(1335), - [aux_sym_preproc_include_token1] = ACTIONS(1335), - [aux_sym_preproc_def_token1] = ACTIONS(1335), - [aux_sym_preproc_if_token1] = ACTIONS(1335), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1335), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1335), - [sym_preproc_directive] = ACTIONS(1335), - [anon_sym_LPAREN2] = ACTIONS(1337), - [anon_sym_BANG] = ACTIONS(1337), - [anon_sym_TILDE] = ACTIONS(1337), - [anon_sym_DASH] = ACTIONS(1335), - [anon_sym_PLUS] = ACTIONS(1335), - [anon_sym_STAR] = ACTIONS(1337), - [anon_sym_AMP] = ACTIONS(1337), - [anon_sym_SEMI] = ACTIONS(1337), - [anon_sym___extension__] = ACTIONS(1335), - [anon_sym_typedef] = ACTIONS(1335), - [anon_sym_extern] = ACTIONS(1335), - [anon_sym___attribute__] = ACTIONS(1335), - [anon_sym___scanf] = ACTIONS(1335), - [anon_sym___printf] = ACTIONS(1335), - [anon_sym___read_mostly] = ACTIONS(1335), - [anon_sym___must_hold] = ACTIONS(1335), - [anon_sym___ro_after_init] = ACTIONS(1335), - [anon_sym___init] = ACTIONS(1335), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1337), - [anon_sym___declspec] = ACTIONS(1335), - [anon_sym___cdecl] = ACTIONS(1335), - [anon_sym___clrcall] = ACTIONS(1335), - [anon_sym___stdcall] = ACTIONS(1335), - [anon_sym___fastcall] = ACTIONS(1335), - [anon_sym___thiscall] = ACTIONS(1335), - [anon_sym___vectorcall] = ACTIONS(1335), - [anon_sym_LBRACE] = ACTIONS(1337), - [anon_sym_RBRACE] = ACTIONS(1337), - [anon_sym_signed] = ACTIONS(1335), - [anon_sym_unsigned] = ACTIONS(1335), - [anon_sym_long] = ACTIONS(1335), - [anon_sym_short] = ACTIONS(1335), - [anon_sym_static] = ACTIONS(1335), - [anon_sym_auto] = ACTIONS(1335), - [anon_sym_register] = ACTIONS(1335), - [anon_sym_inline] = ACTIONS(1335), - [anon_sym___inline] = ACTIONS(1335), - [anon_sym___inline__] = ACTIONS(1335), - [anon_sym___forceinline] = ACTIONS(1335), - [anon_sym_thread_local] = ACTIONS(1335), - [anon_sym___thread] = ACTIONS(1335), - [anon_sym_const] = ACTIONS(1335), - [anon_sym_constexpr] = ACTIONS(1335), - [anon_sym_volatile] = ACTIONS(1335), - [anon_sym_restrict] = ACTIONS(1335), - [anon_sym___restrict__] = ACTIONS(1335), - [anon_sym__Atomic] = ACTIONS(1335), - [anon_sym__Noreturn] = ACTIONS(1335), - [anon_sym_noreturn] = ACTIONS(1335), - [anon_sym_alignas] = ACTIONS(1335), - [anon_sym__Alignas] = ACTIONS(1335), - [sym_primitive_type] = ACTIONS(1335), - [anon_sym_enum] = ACTIONS(1335), - [anon_sym_struct] = ACTIONS(1335), - [anon_sym_union] = ACTIONS(1335), - [anon_sym_if] = ACTIONS(1335), - [anon_sym_switch] = ACTIONS(1335), - [anon_sym_case] = ACTIONS(1335), - [anon_sym_default] = ACTIONS(1335), - [anon_sym_while] = ACTIONS(1335), - [anon_sym_do] = ACTIONS(1335), - [anon_sym_for] = ACTIONS(1335), - [anon_sym_return] = ACTIONS(1335), - [anon_sym_break] = ACTIONS(1335), - [anon_sym_continue] = ACTIONS(1335), - [anon_sym_goto] = ACTIONS(1335), - [anon_sym___try] = ACTIONS(1335), - [anon_sym___leave] = ACTIONS(1335), - [anon_sym_DASH_DASH] = ACTIONS(1337), - [anon_sym_PLUS_PLUS] = ACTIONS(1337), - [anon_sym_sizeof] = ACTIONS(1335), - [anon_sym___alignof__] = ACTIONS(1335), - [anon_sym___alignof] = ACTIONS(1335), - [anon_sym__alignof] = ACTIONS(1335), - [anon_sym_alignof] = ACTIONS(1335), - [anon_sym__Alignof] = ACTIONS(1335), - [anon_sym_offsetof] = ACTIONS(1335), - [anon_sym__Generic] = ACTIONS(1335), - [anon_sym_asm] = ACTIONS(1335), - [anon_sym___asm__] = ACTIONS(1335), - [sym_number_literal] = ACTIONS(1337), - [anon_sym_L_SQUOTE] = ACTIONS(1337), - [anon_sym_u_SQUOTE] = ACTIONS(1337), - [anon_sym_U_SQUOTE] = ACTIONS(1337), - [anon_sym_u8_SQUOTE] = ACTIONS(1337), - [anon_sym_SQUOTE] = ACTIONS(1337), - [anon_sym_L_DQUOTE] = ACTIONS(1337), - [anon_sym_u_DQUOTE] = ACTIONS(1337), - [anon_sym_U_DQUOTE] = ACTIONS(1337), - [anon_sym_u8_DQUOTE] = ACTIONS(1337), - [anon_sym_DQUOTE] = ACTIONS(1337), - [sym_true] = ACTIONS(1335), - [sym_false] = ACTIONS(1335), - [anon_sym_NULL] = ACTIONS(1335), - [anon_sym_nullptr] = ACTIONS(1335), + [295] = { + [sym_identifier] = ACTIONS(1329), + [aux_sym_preproc_include_token1] = ACTIONS(1329), + [aux_sym_preproc_def_token1] = ACTIONS(1329), + [aux_sym_preproc_if_token1] = ACTIONS(1329), + [aux_sym_preproc_if_token2] = ACTIONS(1329), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1329), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1329), + [sym_preproc_directive] = ACTIONS(1329), + [anon_sym_LPAREN2] = ACTIONS(1331), + [anon_sym_BANG] = ACTIONS(1331), + [anon_sym_TILDE] = ACTIONS(1331), + [anon_sym_DASH] = ACTIONS(1329), + [anon_sym_PLUS] = ACTIONS(1329), + [anon_sym_STAR] = ACTIONS(1331), + [anon_sym_AMP] = ACTIONS(1331), + [anon_sym_SEMI] = ACTIONS(1331), + [anon_sym___extension__] = ACTIONS(1329), + [anon_sym_typedef] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1329), + [anon_sym___attribute__] = ACTIONS(1329), + [anon_sym___scanf] = ACTIONS(1329), + [anon_sym___printf] = ACTIONS(1329), + [anon_sym___read_mostly] = ACTIONS(1329), + [anon_sym___must_hold] = ACTIONS(1329), + [anon_sym___ro_after_init] = ACTIONS(1329), + [anon_sym___noreturn] = ACTIONS(1329), + [anon_sym___cold] = ACTIONS(1329), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1331), + [anon_sym___declspec] = ACTIONS(1329), + [anon_sym___init] = ACTIONS(1329), + [anon_sym___exit] = ACTIONS(1329), + [anon_sym___cdecl] = ACTIONS(1329), + [anon_sym___clrcall] = ACTIONS(1329), + [anon_sym___stdcall] = ACTIONS(1329), + [anon_sym___fastcall] = ACTIONS(1329), + [anon_sym___thiscall] = ACTIONS(1329), + [anon_sym___vectorcall] = ACTIONS(1329), + [anon_sym_LBRACE] = ACTIONS(1331), + [anon_sym_signed] = ACTIONS(1329), + [anon_sym_unsigned] = ACTIONS(1329), + [anon_sym_long] = ACTIONS(1329), + [anon_sym_short] = ACTIONS(1329), + [anon_sym_static] = ACTIONS(1329), + [anon_sym_auto] = ACTIONS(1329), + [anon_sym_register] = ACTIONS(1329), + [anon_sym_inline] = ACTIONS(1329), + [anon_sym___inline] = ACTIONS(1329), + [anon_sym___inline__] = ACTIONS(1329), + [anon_sym___forceinline] = ACTIONS(1329), + [anon_sym_thread_local] = ACTIONS(1329), + [anon_sym___thread] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), + [anon_sym_constexpr] = ACTIONS(1329), + [anon_sym_volatile] = ACTIONS(1329), + [anon_sym_restrict] = ACTIONS(1329), + [anon_sym___restrict__] = ACTIONS(1329), + [anon_sym__Atomic] = ACTIONS(1329), + [anon_sym__Noreturn] = ACTIONS(1329), + [anon_sym_noreturn] = ACTIONS(1329), + [anon_sym_alignas] = ACTIONS(1329), + [anon_sym__Alignas] = ACTIONS(1329), + [sym_primitive_type] = ACTIONS(1329), + [anon_sym_enum] = ACTIONS(1329), + [anon_sym_struct] = ACTIONS(1329), + [anon_sym_union] = ACTIONS(1329), + [anon_sym_if] = ACTIONS(1329), + [anon_sym_switch] = ACTIONS(1329), + [anon_sym_case] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(1329), + [anon_sym_while] = ACTIONS(1329), + [anon_sym_do] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(1329), + [anon_sym_return] = ACTIONS(1329), + [anon_sym_break] = ACTIONS(1329), + [anon_sym_continue] = ACTIONS(1329), + [anon_sym_goto] = ACTIONS(1329), + [anon_sym___try] = ACTIONS(1329), + [anon_sym___leave] = ACTIONS(1329), + [anon_sym_DASH_DASH] = ACTIONS(1331), + [anon_sym_PLUS_PLUS] = ACTIONS(1331), + [anon_sym_sizeof] = ACTIONS(1329), + [anon_sym___alignof__] = ACTIONS(1329), + [anon_sym___alignof] = ACTIONS(1329), + [anon_sym__alignof] = ACTIONS(1329), + [anon_sym_alignof] = ACTIONS(1329), + [anon_sym__Alignof] = ACTIONS(1329), + [anon_sym_offsetof] = ACTIONS(1329), + [anon_sym__Generic] = ACTIONS(1329), + [anon_sym_asm] = ACTIONS(1329), + [anon_sym___asm__] = ACTIONS(1329), + [sym_number_literal] = ACTIONS(1331), + [anon_sym_L_SQUOTE] = ACTIONS(1331), + [anon_sym_u_SQUOTE] = ACTIONS(1331), + [anon_sym_U_SQUOTE] = ACTIONS(1331), + [anon_sym_u8_SQUOTE] = ACTIONS(1331), + [anon_sym_SQUOTE] = ACTIONS(1331), + [anon_sym_L_DQUOTE] = ACTIONS(1331), + [anon_sym_u_DQUOTE] = ACTIONS(1331), + [anon_sym_U_DQUOTE] = ACTIONS(1331), + [anon_sym_u8_DQUOTE] = ACTIONS(1331), + [anon_sym_DQUOTE] = ACTIONS(1331), + [sym_true] = ACTIONS(1329), + [sym_false] = ACTIONS(1329), + [anon_sym_NULL] = ACTIONS(1329), + [anon_sym_nullptr] = ACTIONS(1329), [sym_comment] = ACTIONS(3), }, - [262] = { - [sym_identifier] = ACTIONS(1371), - [aux_sym_preproc_include_token1] = ACTIONS(1371), - [aux_sym_preproc_def_token1] = ACTIONS(1371), - [aux_sym_preproc_if_token1] = ACTIONS(1371), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1371), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1371), - [sym_preproc_directive] = ACTIONS(1371), - [anon_sym_LPAREN2] = ACTIONS(1373), - [anon_sym_BANG] = ACTIONS(1373), - [anon_sym_TILDE] = ACTIONS(1373), - [anon_sym_DASH] = ACTIONS(1371), - [anon_sym_PLUS] = ACTIONS(1371), - [anon_sym_STAR] = ACTIONS(1373), - [anon_sym_AMP] = ACTIONS(1373), - [anon_sym_SEMI] = ACTIONS(1373), - [anon_sym___extension__] = ACTIONS(1371), - [anon_sym_typedef] = ACTIONS(1371), - [anon_sym_extern] = ACTIONS(1371), - [anon_sym___attribute__] = ACTIONS(1371), - [anon_sym___scanf] = ACTIONS(1371), - [anon_sym___printf] = ACTIONS(1371), - [anon_sym___read_mostly] = ACTIONS(1371), - [anon_sym___must_hold] = ACTIONS(1371), - [anon_sym___ro_after_init] = ACTIONS(1371), - [anon_sym___init] = ACTIONS(1371), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1373), - [anon_sym___declspec] = ACTIONS(1371), - [anon_sym___cdecl] = ACTIONS(1371), - [anon_sym___clrcall] = ACTIONS(1371), - [anon_sym___stdcall] = ACTIONS(1371), - [anon_sym___fastcall] = ACTIONS(1371), - [anon_sym___thiscall] = ACTIONS(1371), - [anon_sym___vectorcall] = ACTIONS(1371), - [anon_sym_LBRACE] = ACTIONS(1373), - [anon_sym_RBRACE] = ACTIONS(1373), - [anon_sym_signed] = ACTIONS(1371), - [anon_sym_unsigned] = ACTIONS(1371), - [anon_sym_long] = ACTIONS(1371), - [anon_sym_short] = ACTIONS(1371), - [anon_sym_static] = ACTIONS(1371), - [anon_sym_auto] = ACTIONS(1371), - [anon_sym_register] = ACTIONS(1371), - [anon_sym_inline] = ACTIONS(1371), - [anon_sym___inline] = ACTIONS(1371), - [anon_sym___inline__] = ACTIONS(1371), - [anon_sym___forceinline] = ACTIONS(1371), - [anon_sym_thread_local] = ACTIONS(1371), - [anon_sym___thread] = ACTIONS(1371), - [anon_sym_const] = ACTIONS(1371), - [anon_sym_constexpr] = ACTIONS(1371), - [anon_sym_volatile] = ACTIONS(1371), - [anon_sym_restrict] = ACTIONS(1371), - [anon_sym___restrict__] = ACTIONS(1371), - [anon_sym__Atomic] = ACTIONS(1371), - [anon_sym__Noreturn] = ACTIONS(1371), - [anon_sym_noreturn] = ACTIONS(1371), - [anon_sym_alignas] = ACTIONS(1371), - [anon_sym__Alignas] = ACTIONS(1371), - [sym_primitive_type] = ACTIONS(1371), - [anon_sym_enum] = ACTIONS(1371), - [anon_sym_struct] = ACTIONS(1371), - [anon_sym_union] = ACTIONS(1371), - [anon_sym_if] = ACTIONS(1371), - [anon_sym_switch] = ACTIONS(1371), - [anon_sym_case] = ACTIONS(1371), - [anon_sym_default] = ACTIONS(1371), - [anon_sym_while] = ACTIONS(1371), - [anon_sym_do] = ACTIONS(1371), - [anon_sym_for] = ACTIONS(1371), - [anon_sym_return] = ACTIONS(1371), - [anon_sym_break] = ACTIONS(1371), - [anon_sym_continue] = ACTIONS(1371), - [anon_sym_goto] = ACTIONS(1371), - [anon_sym___try] = ACTIONS(1371), - [anon_sym___leave] = ACTIONS(1371), - [anon_sym_DASH_DASH] = ACTIONS(1373), - [anon_sym_PLUS_PLUS] = ACTIONS(1373), - [anon_sym_sizeof] = ACTIONS(1371), - [anon_sym___alignof__] = ACTIONS(1371), - [anon_sym___alignof] = ACTIONS(1371), - [anon_sym__alignof] = ACTIONS(1371), - [anon_sym_alignof] = ACTIONS(1371), - [anon_sym__Alignof] = ACTIONS(1371), - [anon_sym_offsetof] = ACTIONS(1371), - [anon_sym__Generic] = ACTIONS(1371), - [anon_sym_asm] = ACTIONS(1371), - [anon_sym___asm__] = ACTIONS(1371), - [sym_number_literal] = ACTIONS(1373), - [anon_sym_L_SQUOTE] = ACTIONS(1373), - [anon_sym_u_SQUOTE] = ACTIONS(1373), - [anon_sym_U_SQUOTE] = ACTIONS(1373), - [anon_sym_u8_SQUOTE] = ACTIONS(1373), - [anon_sym_SQUOTE] = ACTIONS(1373), - [anon_sym_L_DQUOTE] = ACTIONS(1373), - [anon_sym_u_DQUOTE] = ACTIONS(1373), - [anon_sym_U_DQUOTE] = ACTIONS(1373), - [anon_sym_u8_DQUOTE] = ACTIONS(1373), - [anon_sym_DQUOTE] = ACTIONS(1373), - [sym_true] = ACTIONS(1371), - [sym_false] = ACTIONS(1371), - [anon_sym_NULL] = ACTIONS(1371), - [anon_sym_nullptr] = ACTIONS(1371), + [296] = { + [sym_identifier] = ACTIONS(1411), + [aux_sym_preproc_include_token1] = ACTIONS(1411), + [aux_sym_preproc_def_token1] = ACTIONS(1411), + [aux_sym_preproc_if_token1] = ACTIONS(1411), + [aux_sym_preproc_if_token2] = ACTIONS(1411), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1411), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1411), + [sym_preproc_directive] = ACTIONS(1411), + [anon_sym_LPAREN2] = ACTIONS(1413), + [anon_sym_BANG] = ACTIONS(1413), + [anon_sym_TILDE] = ACTIONS(1413), + [anon_sym_DASH] = ACTIONS(1411), + [anon_sym_PLUS] = ACTIONS(1411), + [anon_sym_STAR] = ACTIONS(1413), + [anon_sym_AMP] = ACTIONS(1413), + [anon_sym_SEMI] = ACTIONS(1413), + [anon_sym___extension__] = ACTIONS(1411), + [anon_sym_typedef] = ACTIONS(1411), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym___attribute__] = ACTIONS(1411), + [anon_sym___scanf] = ACTIONS(1411), + [anon_sym___printf] = ACTIONS(1411), + [anon_sym___read_mostly] = ACTIONS(1411), + [anon_sym___must_hold] = ACTIONS(1411), + [anon_sym___ro_after_init] = ACTIONS(1411), + [anon_sym___noreturn] = ACTIONS(1411), + [anon_sym___cold] = ACTIONS(1411), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1413), + [anon_sym___declspec] = ACTIONS(1411), + [anon_sym___init] = ACTIONS(1411), + [anon_sym___exit] = ACTIONS(1411), + [anon_sym___cdecl] = ACTIONS(1411), + [anon_sym___clrcall] = ACTIONS(1411), + [anon_sym___stdcall] = ACTIONS(1411), + [anon_sym___fastcall] = ACTIONS(1411), + [anon_sym___thiscall] = ACTIONS(1411), + [anon_sym___vectorcall] = ACTIONS(1411), + [anon_sym_LBRACE] = ACTIONS(1413), + [anon_sym_signed] = ACTIONS(1411), + [anon_sym_unsigned] = ACTIONS(1411), + [anon_sym_long] = ACTIONS(1411), + [anon_sym_short] = ACTIONS(1411), + [anon_sym_static] = ACTIONS(1411), + [anon_sym_auto] = ACTIONS(1411), + [anon_sym_register] = ACTIONS(1411), + [anon_sym_inline] = ACTIONS(1411), + [anon_sym___inline] = ACTIONS(1411), + [anon_sym___inline__] = ACTIONS(1411), + [anon_sym___forceinline] = ACTIONS(1411), + [anon_sym_thread_local] = ACTIONS(1411), + [anon_sym___thread] = ACTIONS(1411), + [anon_sym_const] = ACTIONS(1411), + [anon_sym_constexpr] = ACTIONS(1411), + [anon_sym_volatile] = ACTIONS(1411), + [anon_sym_restrict] = ACTIONS(1411), + [anon_sym___restrict__] = ACTIONS(1411), + [anon_sym__Atomic] = ACTIONS(1411), + [anon_sym__Noreturn] = ACTIONS(1411), + [anon_sym_noreturn] = ACTIONS(1411), + [anon_sym_alignas] = ACTIONS(1411), + [anon_sym__Alignas] = ACTIONS(1411), + [sym_primitive_type] = ACTIONS(1411), + [anon_sym_enum] = ACTIONS(1411), + [anon_sym_struct] = ACTIONS(1411), + [anon_sym_union] = ACTIONS(1411), + [anon_sym_if] = ACTIONS(1411), + [anon_sym_switch] = ACTIONS(1411), + [anon_sym_case] = ACTIONS(1411), + [anon_sym_default] = ACTIONS(1411), + [anon_sym_while] = ACTIONS(1411), + [anon_sym_do] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1411), + [anon_sym_return] = ACTIONS(1411), + [anon_sym_break] = ACTIONS(1411), + [anon_sym_continue] = ACTIONS(1411), + [anon_sym_goto] = ACTIONS(1411), + [anon_sym___try] = ACTIONS(1411), + [anon_sym___leave] = ACTIONS(1411), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_sizeof] = ACTIONS(1411), + [anon_sym___alignof__] = ACTIONS(1411), + [anon_sym___alignof] = ACTIONS(1411), + [anon_sym__alignof] = ACTIONS(1411), + [anon_sym_alignof] = ACTIONS(1411), + [anon_sym__Alignof] = ACTIONS(1411), + [anon_sym_offsetof] = ACTIONS(1411), + [anon_sym__Generic] = ACTIONS(1411), + [anon_sym_asm] = ACTIONS(1411), + [anon_sym___asm__] = ACTIONS(1411), + [sym_number_literal] = ACTIONS(1413), + [anon_sym_L_SQUOTE] = ACTIONS(1413), + [anon_sym_u_SQUOTE] = ACTIONS(1413), + [anon_sym_U_SQUOTE] = ACTIONS(1413), + [anon_sym_u8_SQUOTE] = ACTIONS(1413), + [anon_sym_SQUOTE] = ACTIONS(1413), + [anon_sym_L_DQUOTE] = ACTIONS(1413), + [anon_sym_u_DQUOTE] = ACTIONS(1413), + [anon_sym_U_DQUOTE] = ACTIONS(1413), + [anon_sym_u8_DQUOTE] = ACTIONS(1413), + [anon_sym_DQUOTE] = ACTIONS(1413), + [sym_true] = ACTIONS(1411), + [sym_false] = ACTIONS(1411), + [anon_sym_NULL] = ACTIONS(1411), + [anon_sym_nullptr] = ACTIONS(1411), [sym_comment] = ACTIONS(3), }, - [263] = { - [sym_identifier] = ACTIONS(1303), - [aux_sym_preproc_include_token1] = ACTIONS(1303), - [aux_sym_preproc_def_token1] = ACTIONS(1303), - [aux_sym_preproc_if_token1] = ACTIONS(1303), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1303), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1303), - [sym_preproc_directive] = ACTIONS(1303), - [anon_sym_LPAREN2] = ACTIONS(1305), - [anon_sym_BANG] = ACTIONS(1305), - [anon_sym_TILDE] = ACTIONS(1305), - [anon_sym_DASH] = ACTIONS(1303), - [anon_sym_PLUS] = ACTIONS(1303), - [anon_sym_STAR] = ACTIONS(1305), - [anon_sym_AMP] = ACTIONS(1305), - [anon_sym_SEMI] = ACTIONS(1305), - [anon_sym___extension__] = ACTIONS(1303), - [anon_sym_typedef] = ACTIONS(1303), - [anon_sym_extern] = ACTIONS(1303), - [anon_sym___attribute__] = ACTIONS(1303), - [anon_sym___scanf] = ACTIONS(1303), - [anon_sym___printf] = ACTIONS(1303), - [anon_sym___read_mostly] = ACTIONS(1303), - [anon_sym___must_hold] = ACTIONS(1303), - [anon_sym___ro_after_init] = ACTIONS(1303), - [anon_sym___init] = ACTIONS(1303), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1305), - [anon_sym___declspec] = ACTIONS(1303), - [anon_sym___cdecl] = ACTIONS(1303), - [anon_sym___clrcall] = ACTIONS(1303), - [anon_sym___stdcall] = ACTIONS(1303), - [anon_sym___fastcall] = ACTIONS(1303), - [anon_sym___thiscall] = ACTIONS(1303), - [anon_sym___vectorcall] = ACTIONS(1303), - [anon_sym_LBRACE] = ACTIONS(1305), - [anon_sym_RBRACE] = ACTIONS(1305), - [anon_sym_signed] = ACTIONS(1303), - [anon_sym_unsigned] = ACTIONS(1303), - [anon_sym_long] = ACTIONS(1303), - [anon_sym_short] = ACTIONS(1303), - [anon_sym_static] = ACTIONS(1303), - [anon_sym_auto] = ACTIONS(1303), - [anon_sym_register] = ACTIONS(1303), - [anon_sym_inline] = ACTIONS(1303), - [anon_sym___inline] = ACTIONS(1303), - [anon_sym___inline__] = ACTIONS(1303), - [anon_sym___forceinline] = ACTIONS(1303), - [anon_sym_thread_local] = ACTIONS(1303), - [anon_sym___thread] = ACTIONS(1303), - [anon_sym_const] = ACTIONS(1303), - [anon_sym_constexpr] = ACTIONS(1303), - [anon_sym_volatile] = ACTIONS(1303), - [anon_sym_restrict] = ACTIONS(1303), - [anon_sym___restrict__] = ACTIONS(1303), - [anon_sym__Atomic] = ACTIONS(1303), - [anon_sym__Noreturn] = ACTIONS(1303), - [anon_sym_noreturn] = ACTIONS(1303), - [anon_sym_alignas] = ACTIONS(1303), - [anon_sym__Alignas] = ACTIONS(1303), - [sym_primitive_type] = ACTIONS(1303), - [anon_sym_enum] = ACTIONS(1303), - [anon_sym_struct] = ACTIONS(1303), - [anon_sym_union] = ACTIONS(1303), - [anon_sym_if] = ACTIONS(1303), - [anon_sym_switch] = ACTIONS(1303), - [anon_sym_case] = ACTIONS(1303), - [anon_sym_default] = ACTIONS(1303), - [anon_sym_while] = ACTIONS(1303), - [anon_sym_do] = ACTIONS(1303), - [anon_sym_for] = ACTIONS(1303), - [anon_sym_return] = ACTIONS(1303), - [anon_sym_break] = ACTIONS(1303), - [anon_sym_continue] = ACTIONS(1303), - [anon_sym_goto] = ACTIONS(1303), - [anon_sym___try] = ACTIONS(1303), - [anon_sym___leave] = ACTIONS(1303), - [anon_sym_DASH_DASH] = ACTIONS(1305), - [anon_sym_PLUS_PLUS] = ACTIONS(1305), - [anon_sym_sizeof] = ACTIONS(1303), - [anon_sym___alignof__] = ACTIONS(1303), - [anon_sym___alignof] = ACTIONS(1303), - [anon_sym__alignof] = ACTIONS(1303), - [anon_sym_alignof] = ACTIONS(1303), - [anon_sym__Alignof] = ACTIONS(1303), - [anon_sym_offsetof] = ACTIONS(1303), - [anon_sym__Generic] = ACTIONS(1303), - [anon_sym_asm] = ACTIONS(1303), - [anon_sym___asm__] = ACTIONS(1303), - [sym_number_literal] = ACTIONS(1305), - [anon_sym_L_SQUOTE] = ACTIONS(1305), - [anon_sym_u_SQUOTE] = ACTIONS(1305), - [anon_sym_U_SQUOTE] = ACTIONS(1305), - [anon_sym_u8_SQUOTE] = ACTIONS(1305), - [anon_sym_SQUOTE] = ACTIONS(1305), - [anon_sym_L_DQUOTE] = ACTIONS(1305), - [anon_sym_u_DQUOTE] = ACTIONS(1305), - [anon_sym_U_DQUOTE] = ACTIONS(1305), - [anon_sym_u8_DQUOTE] = ACTIONS(1305), - [anon_sym_DQUOTE] = ACTIONS(1305), - [sym_true] = ACTIONS(1303), - [sym_false] = ACTIONS(1303), - [anon_sym_NULL] = ACTIONS(1303), - [anon_sym_nullptr] = ACTIONS(1303), + [297] = { + [sym_identifier] = ACTIONS(1293), + [aux_sym_preproc_include_token1] = ACTIONS(1293), + [aux_sym_preproc_def_token1] = ACTIONS(1293), + [aux_sym_preproc_if_token1] = ACTIONS(1293), + [aux_sym_preproc_if_token2] = ACTIONS(1293), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1293), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1293), + [sym_preproc_directive] = ACTIONS(1293), + [anon_sym_LPAREN2] = ACTIONS(1295), + [anon_sym_BANG] = ACTIONS(1295), + [anon_sym_TILDE] = ACTIONS(1295), + [anon_sym_DASH] = ACTIONS(1293), + [anon_sym_PLUS] = ACTIONS(1293), + [anon_sym_STAR] = ACTIONS(1295), + [anon_sym_AMP] = ACTIONS(1295), + [anon_sym_SEMI] = ACTIONS(1295), + [anon_sym___extension__] = ACTIONS(1293), + [anon_sym_typedef] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1293), + [anon_sym___attribute__] = ACTIONS(1293), + [anon_sym___scanf] = ACTIONS(1293), + [anon_sym___printf] = ACTIONS(1293), + [anon_sym___read_mostly] = ACTIONS(1293), + [anon_sym___must_hold] = ACTIONS(1293), + [anon_sym___ro_after_init] = ACTIONS(1293), + [anon_sym___noreturn] = ACTIONS(1293), + [anon_sym___cold] = ACTIONS(1293), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1295), + [anon_sym___declspec] = ACTIONS(1293), + [anon_sym___init] = ACTIONS(1293), + [anon_sym___exit] = ACTIONS(1293), + [anon_sym___cdecl] = ACTIONS(1293), + [anon_sym___clrcall] = ACTIONS(1293), + [anon_sym___stdcall] = ACTIONS(1293), + [anon_sym___fastcall] = ACTIONS(1293), + [anon_sym___thiscall] = ACTIONS(1293), + [anon_sym___vectorcall] = ACTIONS(1293), + [anon_sym_LBRACE] = ACTIONS(1295), + [anon_sym_signed] = ACTIONS(1293), + [anon_sym_unsigned] = ACTIONS(1293), + [anon_sym_long] = ACTIONS(1293), + [anon_sym_short] = ACTIONS(1293), + [anon_sym_static] = ACTIONS(1293), + [anon_sym_auto] = ACTIONS(1293), + [anon_sym_register] = ACTIONS(1293), + [anon_sym_inline] = ACTIONS(1293), + [anon_sym___inline] = ACTIONS(1293), + [anon_sym___inline__] = ACTIONS(1293), + [anon_sym___forceinline] = ACTIONS(1293), + [anon_sym_thread_local] = ACTIONS(1293), + [anon_sym___thread] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1293), + [anon_sym_constexpr] = ACTIONS(1293), + [anon_sym_volatile] = ACTIONS(1293), + [anon_sym_restrict] = ACTIONS(1293), + [anon_sym___restrict__] = ACTIONS(1293), + [anon_sym__Atomic] = ACTIONS(1293), + [anon_sym__Noreturn] = ACTIONS(1293), + [anon_sym_noreturn] = ACTIONS(1293), + [anon_sym_alignas] = ACTIONS(1293), + [anon_sym__Alignas] = ACTIONS(1293), + [sym_primitive_type] = ACTIONS(1293), + [anon_sym_enum] = ACTIONS(1293), + [anon_sym_struct] = ACTIONS(1293), + [anon_sym_union] = ACTIONS(1293), + [anon_sym_if] = ACTIONS(1293), + [anon_sym_switch] = ACTIONS(1293), + [anon_sym_case] = ACTIONS(1293), + [anon_sym_default] = ACTIONS(1293), + [anon_sym_while] = ACTIONS(1293), + [anon_sym_do] = ACTIONS(1293), + [anon_sym_for] = ACTIONS(1293), + [anon_sym_return] = ACTIONS(1293), + [anon_sym_break] = ACTIONS(1293), + [anon_sym_continue] = ACTIONS(1293), + [anon_sym_goto] = ACTIONS(1293), + [anon_sym___try] = ACTIONS(1293), + [anon_sym___leave] = ACTIONS(1293), + [anon_sym_DASH_DASH] = ACTIONS(1295), + [anon_sym_PLUS_PLUS] = ACTIONS(1295), + [anon_sym_sizeof] = ACTIONS(1293), + [anon_sym___alignof__] = ACTIONS(1293), + [anon_sym___alignof] = ACTIONS(1293), + [anon_sym__alignof] = ACTIONS(1293), + [anon_sym_alignof] = ACTIONS(1293), + [anon_sym__Alignof] = ACTIONS(1293), + [anon_sym_offsetof] = ACTIONS(1293), + [anon_sym__Generic] = ACTIONS(1293), + [anon_sym_asm] = ACTIONS(1293), + [anon_sym___asm__] = ACTIONS(1293), + [sym_number_literal] = ACTIONS(1295), + [anon_sym_L_SQUOTE] = ACTIONS(1295), + [anon_sym_u_SQUOTE] = ACTIONS(1295), + [anon_sym_U_SQUOTE] = ACTIONS(1295), + [anon_sym_u8_SQUOTE] = ACTIONS(1295), + [anon_sym_SQUOTE] = ACTIONS(1295), + [anon_sym_L_DQUOTE] = ACTIONS(1295), + [anon_sym_u_DQUOTE] = ACTIONS(1295), + [anon_sym_U_DQUOTE] = ACTIONS(1295), + [anon_sym_u8_DQUOTE] = ACTIONS(1295), + [anon_sym_DQUOTE] = ACTIONS(1295), + [sym_true] = ACTIONS(1293), + [sym_false] = ACTIONS(1293), + [anon_sym_NULL] = ACTIONS(1293), + [anon_sym_nullptr] = ACTIONS(1293), [sym_comment] = ACTIONS(3), }, - [264] = { - [sym_identifier] = ACTIONS(1331), - [aux_sym_preproc_include_token1] = ACTIONS(1331), - [aux_sym_preproc_def_token1] = ACTIONS(1331), - [aux_sym_preproc_if_token1] = ACTIONS(1331), - [aux_sym_preproc_if_token2] = ACTIONS(1331), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1331), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1331), - [sym_preproc_directive] = ACTIONS(1331), - [anon_sym_LPAREN2] = ACTIONS(1333), - [anon_sym_BANG] = ACTIONS(1333), - [anon_sym_TILDE] = ACTIONS(1333), - [anon_sym_DASH] = ACTIONS(1331), - [anon_sym_PLUS] = ACTIONS(1331), - [anon_sym_STAR] = ACTIONS(1333), - [anon_sym_AMP] = ACTIONS(1333), - [anon_sym_SEMI] = ACTIONS(1333), - [anon_sym___extension__] = ACTIONS(1331), - [anon_sym_typedef] = ACTIONS(1331), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym___attribute__] = ACTIONS(1331), - [anon_sym___scanf] = ACTIONS(1331), - [anon_sym___printf] = ACTIONS(1331), - [anon_sym___read_mostly] = ACTIONS(1331), - [anon_sym___must_hold] = ACTIONS(1331), - [anon_sym___ro_after_init] = ACTIONS(1331), - [anon_sym___init] = ACTIONS(1331), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1333), - [anon_sym___declspec] = ACTIONS(1331), - [anon_sym___cdecl] = ACTIONS(1331), - [anon_sym___clrcall] = ACTIONS(1331), - [anon_sym___stdcall] = ACTIONS(1331), - [anon_sym___fastcall] = ACTIONS(1331), - [anon_sym___thiscall] = ACTIONS(1331), - [anon_sym___vectorcall] = ACTIONS(1331), - [anon_sym_LBRACE] = ACTIONS(1333), - [anon_sym_signed] = ACTIONS(1331), - [anon_sym_unsigned] = ACTIONS(1331), - [anon_sym_long] = ACTIONS(1331), - [anon_sym_short] = ACTIONS(1331), - [anon_sym_static] = ACTIONS(1331), - [anon_sym_auto] = ACTIONS(1331), - [anon_sym_register] = ACTIONS(1331), - [anon_sym_inline] = ACTIONS(1331), - [anon_sym___inline] = ACTIONS(1331), - [anon_sym___inline__] = ACTIONS(1331), - [anon_sym___forceinline] = ACTIONS(1331), - [anon_sym_thread_local] = ACTIONS(1331), - [anon_sym___thread] = ACTIONS(1331), - [anon_sym_const] = ACTIONS(1331), - [anon_sym_constexpr] = ACTIONS(1331), - [anon_sym_volatile] = ACTIONS(1331), - [anon_sym_restrict] = ACTIONS(1331), - [anon_sym___restrict__] = ACTIONS(1331), - [anon_sym__Atomic] = ACTIONS(1331), - [anon_sym__Noreturn] = ACTIONS(1331), - [anon_sym_noreturn] = ACTIONS(1331), - [anon_sym_alignas] = ACTIONS(1331), - [anon_sym__Alignas] = ACTIONS(1331), - [sym_primitive_type] = ACTIONS(1331), - [anon_sym_enum] = ACTIONS(1331), - [anon_sym_struct] = ACTIONS(1331), - [anon_sym_union] = ACTIONS(1331), - [anon_sym_if] = ACTIONS(1331), - [anon_sym_switch] = ACTIONS(1331), - [anon_sym_case] = ACTIONS(1331), - [anon_sym_default] = ACTIONS(1331), - [anon_sym_while] = ACTIONS(1331), - [anon_sym_do] = ACTIONS(1331), - [anon_sym_for] = ACTIONS(1331), - [anon_sym_return] = ACTIONS(1331), - [anon_sym_break] = ACTIONS(1331), - [anon_sym_continue] = ACTIONS(1331), - [anon_sym_goto] = ACTIONS(1331), - [anon_sym___try] = ACTIONS(1331), - [anon_sym___leave] = ACTIONS(1331), - [anon_sym_DASH_DASH] = ACTIONS(1333), - [anon_sym_PLUS_PLUS] = ACTIONS(1333), - [anon_sym_sizeof] = ACTIONS(1331), - [anon_sym___alignof__] = ACTIONS(1331), - [anon_sym___alignof] = ACTIONS(1331), - [anon_sym__alignof] = ACTIONS(1331), - [anon_sym_alignof] = ACTIONS(1331), - [anon_sym__Alignof] = ACTIONS(1331), - [anon_sym_offsetof] = ACTIONS(1331), - [anon_sym__Generic] = ACTIONS(1331), - [anon_sym_asm] = ACTIONS(1331), - [anon_sym___asm__] = ACTIONS(1331), - [sym_number_literal] = ACTIONS(1333), - [anon_sym_L_SQUOTE] = ACTIONS(1333), - [anon_sym_u_SQUOTE] = ACTIONS(1333), - [anon_sym_U_SQUOTE] = ACTIONS(1333), - [anon_sym_u8_SQUOTE] = ACTIONS(1333), - [anon_sym_SQUOTE] = ACTIONS(1333), - [anon_sym_L_DQUOTE] = ACTIONS(1333), - [anon_sym_u_DQUOTE] = ACTIONS(1333), - [anon_sym_U_DQUOTE] = ACTIONS(1333), - [anon_sym_u8_DQUOTE] = ACTIONS(1333), - [anon_sym_DQUOTE] = ACTIONS(1333), - [sym_true] = ACTIONS(1331), - [sym_false] = ACTIONS(1331), - [anon_sym_NULL] = ACTIONS(1331), - [anon_sym_nullptr] = ACTIONS(1331), + [298] = { + [sym_identifier] = ACTIONS(1393), + [aux_sym_preproc_include_token1] = ACTIONS(1393), + [aux_sym_preproc_def_token1] = ACTIONS(1393), + [aux_sym_preproc_if_token1] = ACTIONS(1393), + [aux_sym_preproc_if_token2] = ACTIONS(1393), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1393), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1393), + [sym_preproc_directive] = ACTIONS(1393), + [anon_sym_LPAREN2] = ACTIONS(1395), + [anon_sym_BANG] = ACTIONS(1395), + [anon_sym_TILDE] = ACTIONS(1395), + [anon_sym_DASH] = ACTIONS(1393), + [anon_sym_PLUS] = ACTIONS(1393), + [anon_sym_STAR] = ACTIONS(1395), + [anon_sym_AMP] = ACTIONS(1395), + [anon_sym_SEMI] = ACTIONS(1395), + [anon_sym___extension__] = ACTIONS(1393), + [anon_sym_typedef] = ACTIONS(1393), + [anon_sym_extern] = ACTIONS(1393), + [anon_sym___attribute__] = ACTIONS(1393), + [anon_sym___scanf] = ACTIONS(1393), + [anon_sym___printf] = ACTIONS(1393), + [anon_sym___read_mostly] = ACTIONS(1393), + [anon_sym___must_hold] = ACTIONS(1393), + [anon_sym___ro_after_init] = ACTIONS(1393), + [anon_sym___noreturn] = ACTIONS(1393), + [anon_sym___cold] = ACTIONS(1393), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1395), + [anon_sym___declspec] = ACTIONS(1393), + [anon_sym___init] = ACTIONS(1393), + [anon_sym___exit] = ACTIONS(1393), + [anon_sym___cdecl] = ACTIONS(1393), + [anon_sym___clrcall] = ACTIONS(1393), + [anon_sym___stdcall] = ACTIONS(1393), + [anon_sym___fastcall] = ACTIONS(1393), + [anon_sym___thiscall] = ACTIONS(1393), + [anon_sym___vectorcall] = ACTIONS(1393), + [anon_sym_LBRACE] = ACTIONS(1395), + [anon_sym_signed] = ACTIONS(1393), + [anon_sym_unsigned] = ACTIONS(1393), + [anon_sym_long] = ACTIONS(1393), + [anon_sym_short] = ACTIONS(1393), + [anon_sym_static] = ACTIONS(1393), + [anon_sym_auto] = ACTIONS(1393), + [anon_sym_register] = ACTIONS(1393), + [anon_sym_inline] = ACTIONS(1393), + [anon_sym___inline] = ACTIONS(1393), + [anon_sym___inline__] = ACTIONS(1393), + [anon_sym___forceinline] = ACTIONS(1393), + [anon_sym_thread_local] = ACTIONS(1393), + [anon_sym___thread] = ACTIONS(1393), + [anon_sym_const] = ACTIONS(1393), + [anon_sym_constexpr] = ACTIONS(1393), + [anon_sym_volatile] = ACTIONS(1393), + [anon_sym_restrict] = ACTIONS(1393), + [anon_sym___restrict__] = ACTIONS(1393), + [anon_sym__Atomic] = ACTIONS(1393), + [anon_sym__Noreturn] = ACTIONS(1393), + [anon_sym_noreturn] = ACTIONS(1393), + [anon_sym_alignas] = ACTIONS(1393), + [anon_sym__Alignas] = ACTIONS(1393), + [sym_primitive_type] = ACTIONS(1393), + [anon_sym_enum] = ACTIONS(1393), + [anon_sym_struct] = ACTIONS(1393), + [anon_sym_union] = ACTIONS(1393), + [anon_sym_if] = ACTIONS(1393), + [anon_sym_switch] = ACTIONS(1393), + [anon_sym_case] = ACTIONS(1393), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_while] = ACTIONS(1393), + [anon_sym_do] = ACTIONS(1393), + [anon_sym_for] = ACTIONS(1393), + [anon_sym_return] = ACTIONS(1393), + [anon_sym_break] = ACTIONS(1393), + [anon_sym_continue] = ACTIONS(1393), + [anon_sym_goto] = ACTIONS(1393), + [anon_sym___try] = ACTIONS(1393), + [anon_sym___leave] = ACTIONS(1393), + [anon_sym_DASH_DASH] = ACTIONS(1395), + [anon_sym_PLUS_PLUS] = ACTIONS(1395), + [anon_sym_sizeof] = ACTIONS(1393), + [anon_sym___alignof__] = ACTIONS(1393), + [anon_sym___alignof] = ACTIONS(1393), + [anon_sym__alignof] = ACTIONS(1393), + [anon_sym_alignof] = ACTIONS(1393), + [anon_sym__Alignof] = ACTIONS(1393), + [anon_sym_offsetof] = ACTIONS(1393), + [anon_sym__Generic] = ACTIONS(1393), + [anon_sym_asm] = ACTIONS(1393), + [anon_sym___asm__] = ACTIONS(1393), + [sym_number_literal] = ACTIONS(1395), + [anon_sym_L_SQUOTE] = ACTIONS(1395), + [anon_sym_u_SQUOTE] = ACTIONS(1395), + [anon_sym_U_SQUOTE] = ACTIONS(1395), + [anon_sym_u8_SQUOTE] = ACTIONS(1395), + [anon_sym_SQUOTE] = ACTIONS(1395), + [anon_sym_L_DQUOTE] = ACTIONS(1395), + [anon_sym_u_DQUOTE] = ACTIONS(1395), + [anon_sym_U_DQUOTE] = ACTIONS(1395), + [anon_sym_u8_DQUOTE] = ACTIONS(1395), + [anon_sym_DQUOTE] = ACTIONS(1395), + [sym_true] = ACTIONS(1393), + [sym_false] = ACTIONS(1393), + [anon_sym_NULL] = ACTIONS(1393), + [anon_sym_nullptr] = ACTIONS(1393), [sym_comment] = ACTIONS(3), }, - [265] = { - [sym_identifier] = ACTIONS(1319), - [aux_sym_preproc_include_token1] = ACTIONS(1319), - [aux_sym_preproc_def_token1] = ACTIONS(1319), - [aux_sym_preproc_if_token1] = ACTIONS(1319), - [aux_sym_preproc_if_token2] = ACTIONS(1319), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1319), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1319), - [sym_preproc_directive] = ACTIONS(1319), - [anon_sym_LPAREN2] = ACTIONS(1321), - [anon_sym_BANG] = ACTIONS(1321), - [anon_sym_TILDE] = ACTIONS(1321), - [anon_sym_DASH] = ACTIONS(1319), - [anon_sym_PLUS] = ACTIONS(1319), - [anon_sym_STAR] = ACTIONS(1321), - [anon_sym_AMP] = ACTIONS(1321), - [anon_sym_SEMI] = ACTIONS(1321), - [anon_sym___extension__] = ACTIONS(1319), - [anon_sym_typedef] = ACTIONS(1319), - [anon_sym_extern] = ACTIONS(1319), - [anon_sym___attribute__] = ACTIONS(1319), - [anon_sym___scanf] = ACTIONS(1319), - [anon_sym___printf] = ACTIONS(1319), - [anon_sym___read_mostly] = ACTIONS(1319), - [anon_sym___must_hold] = ACTIONS(1319), - [anon_sym___ro_after_init] = ACTIONS(1319), - [anon_sym___init] = ACTIONS(1319), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1321), - [anon_sym___declspec] = ACTIONS(1319), - [anon_sym___cdecl] = ACTIONS(1319), - [anon_sym___clrcall] = ACTIONS(1319), - [anon_sym___stdcall] = ACTIONS(1319), - [anon_sym___fastcall] = ACTIONS(1319), - [anon_sym___thiscall] = ACTIONS(1319), - [anon_sym___vectorcall] = ACTIONS(1319), - [anon_sym_LBRACE] = ACTIONS(1321), - [anon_sym_signed] = ACTIONS(1319), - [anon_sym_unsigned] = ACTIONS(1319), - [anon_sym_long] = ACTIONS(1319), - [anon_sym_short] = ACTIONS(1319), - [anon_sym_static] = ACTIONS(1319), - [anon_sym_auto] = ACTIONS(1319), - [anon_sym_register] = ACTIONS(1319), - [anon_sym_inline] = ACTIONS(1319), - [anon_sym___inline] = ACTIONS(1319), - [anon_sym___inline__] = ACTIONS(1319), - [anon_sym___forceinline] = ACTIONS(1319), - [anon_sym_thread_local] = ACTIONS(1319), - [anon_sym___thread] = ACTIONS(1319), - [anon_sym_const] = ACTIONS(1319), - [anon_sym_constexpr] = ACTIONS(1319), - [anon_sym_volatile] = ACTIONS(1319), - [anon_sym_restrict] = ACTIONS(1319), - [anon_sym___restrict__] = ACTIONS(1319), - [anon_sym__Atomic] = ACTIONS(1319), - [anon_sym__Noreturn] = ACTIONS(1319), - [anon_sym_noreturn] = ACTIONS(1319), - [anon_sym_alignas] = ACTIONS(1319), - [anon_sym__Alignas] = ACTIONS(1319), - [sym_primitive_type] = ACTIONS(1319), - [anon_sym_enum] = ACTIONS(1319), - [anon_sym_struct] = ACTIONS(1319), - [anon_sym_union] = ACTIONS(1319), - [anon_sym_if] = ACTIONS(1319), - [anon_sym_switch] = ACTIONS(1319), - [anon_sym_case] = ACTIONS(1319), - [anon_sym_default] = ACTIONS(1319), - [anon_sym_while] = ACTIONS(1319), - [anon_sym_do] = ACTIONS(1319), - [anon_sym_for] = ACTIONS(1319), - [anon_sym_return] = ACTIONS(1319), - [anon_sym_break] = ACTIONS(1319), - [anon_sym_continue] = ACTIONS(1319), - [anon_sym_goto] = ACTIONS(1319), - [anon_sym___try] = ACTIONS(1319), - [anon_sym___leave] = ACTIONS(1319), - [anon_sym_DASH_DASH] = ACTIONS(1321), - [anon_sym_PLUS_PLUS] = ACTIONS(1321), - [anon_sym_sizeof] = ACTIONS(1319), - [anon_sym___alignof__] = ACTIONS(1319), - [anon_sym___alignof] = ACTIONS(1319), - [anon_sym__alignof] = ACTIONS(1319), - [anon_sym_alignof] = ACTIONS(1319), - [anon_sym__Alignof] = ACTIONS(1319), - [anon_sym_offsetof] = ACTIONS(1319), - [anon_sym__Generic] = ACTIONS(1319), - [anon_sym_asm] = ACTIONS(1319), - [anon_sym___asm__] = ACTIONS(1319), - [sym_number_literal] = ACTIONS(1321), - [anon_sym_L_SQUOTE] = ACTIONS(1321), - [anon_sym_u_SQUOTE] = ACTIONS(1321), - [anon_sym_U_SQUOTE] = ACTIONS(1321), - [anon_sym_u8_SQUOTE] = ACTIONS(1321), - [anon_sym_SQUOTE] = ACTIONS(1321), - [anon_sym_L_DQUOTE] = ACTIONS(1321), - [anon_sym_u_DQUOTE] = ACTIONS(1321), - [anon_sym_U_DQUOTE] = ACTIONS(1321), - [anon_sym_u8_DQUOTE] = ACTIONS(1321), - [anon_sym_DQUOTE] = ACTIONS(1321), - [sym_true] = ACTIONS(1319), - [sym_false] = ACTIONS(1319), - [anon_sym_NULL] = ACTIONS(1319), - [anon_sym_nullptr] = ACTIONS(1319), + [299] = { + [sym_identifier] = ACTIONS(1305), + [aux_sym_preproc_include_token1] = ACTIONS(1305), + [aux_sym_preproc_def_token1] = ACTIONS(1305), + [aux_sym_preproc_if_token1] = ACTIONS(1305), + [aux_sym_preproc_if_token2] = ACTIONS(1305), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1305), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1305), + [sym_preproc_directive] = ACTIONS(1305), + [anon_sym_LPAREN2] = ACTIONS(1307), + [anon_sym_BANG] = ACTIONS(1307), + [anon_sym_TILDE] = ACTIONS(1307), + [anon_sym_DASH] = ACTIONS(1305), + [anon_sym_PLUS] = ACTIONS(1305), + [anon_sym_STAR] = ACTIONS(1307), + [anon_sym_AMP] = ACTIONS(1307), + [anon_sym_SEMI] = ACTIONS(1307), + [anon_sym___extension__] = ACTIONS(1305), + [anon_sym_typedef] = ACTIONS(1305), + [anon_sym_extern] = ACTIONS(1305), + [anon_sym___attribute__] = ACTIONS(1305), + [anon_sym___scanf] = ACTIONS(1305), + [anon_sym___printf] = ACTIONS(1305), + [anon_sym___read_mostly] = ACTIONS(1305), + [anon_sym___must_hold] = ACTIONS(1305), + [anon_sym___ro_after_init] = ACTIONS(1305), + [anon_sym___noreturn] = ACTIONS(1305), + [anon_sym___cold] = ACTIONS(1305), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1307), + [anon_sym___declspec] = ACTIONS(1305), + [anon_sym___init] = ACTIONS(1305), + [anon_sym___exit] = ACTIONS(1305), + [anon_sym___cdecl] = ACTIONS(1305), + [anon_sym___clrcall] = ACTIONS(1305), + [anon_sym___stdcall] = ACTIONS(1305), + [anon_sym___fastcall] = ACTIONS(1305), + [anon_sym___thiscall] = ACTIONS(1305), + [anon_sym___vectorcall] = ACTIONS(1305), + [anon_sym_LBRACE] = ACTIONS(1307), + [anon_sym_signed] = ACTIONS(1305), + [anon_sym_unsigned] = ACTIONS(1305), + [anon_sym_long] = ACTIONS(1305), + [anon_sym_short] = ACTIONS(1305), + [anon_sym_static] = ACTIONS(1305), + [anon_sym_auto] = ACTIONS(1305), + [anon_sym_register] = ACTIONS(1305), + [anon_sym_inline] = ACTIONS(1305), + [anon_sym___inline] = ACTIONS(1305), + [anon_sym___inline__] = ACTIONS(1305), + [anon_sym___forceinline] = ACTIONS(1305), + [anon_sym_thread_local] = ACTIONS(1305), + [anon_sym___thread] = ACTIONS(1305), + [anon_sym_const] = ACTIONS(1305), + [anon_sym_constexpr] = ACTIONS(1305), + [anon_sym_volatile] = ACTIONS(1305), + [anon_sym_restrict] = ACTIONS(1305), + [anon_sym___restrict__] = ACTIONS(1305), + [anon_sym__Atomic] = ACTIONS(1305), + [anon_sym__Noreturn] = ACTIONS(1305), + [anon_sym_noreturn] = ACTIONS(1305), + [anon_sym_alignas] = ACTIONS(1305), + [anon_sym__Alignas] = ACTIONS(1305), + [sym_primitive_type] = ACTIONS(1305), + [anon_sym_enum] = ACTIONS(1305), + [anon_sym_struct] = ACTIONS(1305), + [anon_sym_union] = ACTIONS(1305), + [anon_sym_if] = ACTIONS(1305), + [anon_sym_switch] = ACTIONS(1305), + [anon_sym_case] = ACTIONS(1305), + [anon_sym_default] = ACTIONS(1305), + [anon_sym_while] = ACTIONS(1305), + [anon_sym_do] = ACTIONS(1305), + [anon_sym_for] = ACTIONS(1305), + [anon_sym_return] = ACTIONS(1305), + [anon_sym_break] = ACTIONS(1305), + [anon_sym_continue] = ACTIONS(1305), + [anon_sym_goto] = ACTIONS(1305), + [anon_sym___try] = ACTIONS(1305), + [anon_sym___leave] = ACTIONS(1305), + [anon_sym_DASH_DASH] = ACTIONS(1307), + [anon_sym_PLUS_PLUS] = ACTIONS(1307), + [anon_sym_sizeof] = ACTIONS(1305), + [anon_sym___alignof__] = ACTIONS(1305), + [anon_sym___alignof] = ACTIONS(1305), + [anon_sym__alignof] = ACTIONS(1305), + [anon_sym_alignof] = ACTIONS(1305), + [anon_sym__Alignof] = ACTIONS(1305), + [anon_sym_offsetof] = ACTIONS(1305), + [anon_sym__Generic] = ACTIONS(1305), + [anon_sym_asm] = ACTIONS(1305), + [anon_sym___asm__] = ACTIONS(1305), + [sym_number_literal] = ACTIONS(1307), + [anon_sym_L_SQUOTE] = ACTIONS(1307), + [anon_sym_u_SQUOTE] = ACTIONS(1307), + [anon_sym_U_SQUOTE] = ACTIONS(1307), + [anon_sym_u8_SQUOTE] = ACTIONS(1307), + [anon_sym_SQUOTE] = ACTIONS(1307), + [anon_sym_L_DQUOTE] = ACTIONS(1307), + [anon_sym_u_DQUOTE] = ACTIONS(1307), + [anon_sym_U_DQUOTE] = ACTIONS(1307), + [anon_sym_u8_DQUOTE] = ACTIONS(1307), + [anon_sym_DQUOTE] = ACTIONS(1307), + [sym_true] = ACTIONS(1305), + [sym_false] = ACTIONS(1305), + [anon_sym_NULL] = ACTIONS(1305), + [anon_sym_nullptr] = ACTIONS(1305), [sym_comment] = ACTIONS(3), }, - [266] = { - [sym_identifier] = ACTIONS(1285), - [aux_sym_preproc_include_token1] = ACTIONS(1285), - [aux_sym_preproc_def_token1] = ACTIONS(1285), - [aux_sym_preproc_if_token1] = ACTIONS(1285), - [aux_sym_preproc_if_token2] = ACTIONS(1285), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1285), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1285), - [sym_preproc_directive] = ACTIONS(1285), - [anon_sym_LPAREN2] = ACTIONS(1287), - [anon_sym_BANG] = ACTIONS(1287), - [anon_sym_TILDE] = ACTIONS(1287), - [anon_sym_DASH] = ACTIONS(1285), - [anon_sym_PLUS] = ACTIONS(1285), - [anon_sym_STAR] = ACTIONS(1287), - [anon_sym_AMP] = ACTIONS(1287), - [anon_sym_SEMI] = ACTIONS(1287), - [anon_sym___extension__] = ACTIONS(1285), - [anon_sym_typedef] = ACTIONS(1285), - [anon_sym_extern] = ACTIONS(1285), - [anon_sym___attribute__] = ACTIONS(1285), - [anon_sym___scanf] = ACTIONS(1285), - [anon_sym___printf] = ACTIONS(1285), - [anon_sym___read_mostly] = ACTIONS(1285), - [anon_sym___must_hold] = ACTIONS(1285), - [anon_sym___ro_after_init] = ACTIONS(1285), - [anon_sym___init] = ACTIONS(1285), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1287), - [anon_sym___declspec] = ACTIONS(1285), - [anon_sym___cdecl] = ACTIONS(1285), - [anon_sym___clrcall] = ACTIONS(1285), - [anon_sym___stdcall] = ACTIONS(1285), - [anon_sym___fastcall] = ACTIONS(1285), - [anon_sym___thiscall] = ACTIONS(1285), - [anon_sym___vectorcall] = ACTIONS(1285), - [anon_sym_LBRACE] = ACTIONS(1287), - [anon_sym_signed] = ACTIONS(1285), - [anon_sym_unsigned] = ACTIONS(1285), - [anon_sym_long] = ACTIONS(1285), - [anon_sym_short] = ACTIONS(1285), - [anon_sym_static] = ACTIONS(1285), - [anon_sym_auto] = ACTIONS(1285), - [anon_sym_register] = ACTIONS(1285), - [anon_sym_inline] = ACTIONS(1285), - [anon_sym___inline] = ACTIONS(1285), - [anon_sym___inline__] = ACTIONS(1285), - [anon_sym___forceinline] = ACTIONS(1285), - [anon_sym_thread_local] = ACTIONS(1285), - [anon_sym___thread] = ACTIONS(1285), - [anon_sym_const] = ACTIONS(1285), - [anon_sym_constexpr] = ACTIONS(1285), - [anon_sym_volatile] = ACTIONS(1285), - [anon_sym_restrict] = ACTIONS(1285), - [anon_sym___restrict__] = ACTIONS(1285), - [anon_sym__Atomic] = ACTIONS(1285), - [anon_sym__Noreturn] = ACTIONS(1285), - [anon_sym_noreturn] = ACTIONS(1285), - [anon_sym_alignas] = ACTIONS(1285), - [anon_sym__Alignas] = ACTIONS(1285), - [sym_primitive_type] = ACTIONS(1285), - [anon_sym_enum] = ACTIONS(1285), - [anon_sym_struct] = ACTIONS(1285), - [anon_sym_union] = ACTIONS(1285), - [anon_sym_if] = ACTIONS(1285), - [anon_sym_switch] = ACTIONS(1285), - [anon_sym_case] = ACTIONS(1285), - [anon_sym_default] = ACTIONS(1285), - [anon_sym_while] = ACTIONS(1285), - [anon_sym_do] = ACTIONS(1285), - [anon_sym_for] = ACTIONS(1285), - [anon_sym_return] = ACTIONS(1285), - [anon_sym_break] = ACTIONS(1285), - [anon_sym_continue] = ACTIONS(1285), - [anon_sym_goto] = ACTIONS(1285), - [anon_sym___try] = ACTIONS(1285), - [anon_sym___leave] = ACTIONS(1285), - [anon_sym_DASH_DASH] = ACTIONS(1287), - [anon_sym_PLUS_PLUS] = ACTIONS(1287), - [anon_sym_sizeof] = ACTIONS(1285), - [anon_sym___alignof__] = ACTIONS(1285), - [anon_sym___alignof] = ACTIONS(1285), - [anon_sym__alignof] = ACTIONS(1285), - [anon_sym_alignof] = ACTIONS(1285), - [anon_sym__Alignof] = ACTIONS(1285), - [anon_sym_offsetof] = ACTIONS(1285), - [anon_sym__Generic] = ACTIONS(1285), - [anon_sym_asm] = ACTIONS(1285), - [anon_sym___asm__] = ACTIONS(1285), - [sym_number_literal] = ACTIONS(1287), - [anon_sym_L_SQUOTE] = ACTIONS(1287), - [anon_sym_u_SQUOTE] = ACTIONS(1287), - [anon_sym_U_SQUOTE] = ACTIONS(1287), - [anon_sym_u8_SQUOTE] = ACTIONS(1287), - [anon_sym_SQUOTE] = ACTIONS(1287), - [anon_sym_L_DQUOTE] = ACTIONS(1287), - [anon_sym_u_DQUOTE] = ACTIONS(1287), - [anon_sym_U_DQUOTE] = ACTIONS(1287), - [anon_sym_u8_DQUOTE] = ACTIONS(1287), - [anon_sym_DQUOTE] = ACTIONS(1287), - [sym_true] = ACTIONS(1285), - [sym_false] = ACTIONS(1285), - [anon_sym_NULL] = ACTIONS(1285), - [anon_sym_nullptr] = ACTIONS(1285), + [300] = { + [sym_identifier] = ACTIONS(1289), + [aux_sym_preproc_include_token1] = ACTIONS(1289), + [aux_sym_preproc_def_token1] = ACTIONS(1289), + [aux_sym_preproc_if_token1] = ACTIONS(1289), + [aux_sym_preproc_if_token2] = ACTIONS(1289), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1289), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1289), + [sym_preproc_directive] = ACTIONS(1289), + [anon_sym_LPAREN2] = ACTIONS(1291), + [anon_sym_BANG] = ACTIONS(1291), + [anon_sym_TILDE] = ACTIONS(1291), + [anon_sym_DASH] = ACTIONS(1289), + [anon_sym_PLUS] = ACTIONS(1289), + [anon_sym_STAR] = ACTIONS(1291), + [anon_sym_AMP] = ACTIONS(1291), + [anon_sym_SEMI] = ACTIONS(1291), + [anon_sym___extension__] = ACTIONS(1289), + [anon_sym_typedef] = ACTIONS(1289), + [anon_sym_extern] = ACTIONS(1289), + [anon_sym___attribute__] = ACTIONS(1289), + [anon_sym___scanf] = ACTIONS(1289), + [anon_sym___printf] = ACTIONS(1289), + [anon_sym___read_mostly] = ACTIONS(1289), + [anon_sym___must_hold] = ACTIONS(1289), + [anon_sym___ro_after_init] = ACTIONS(1289), + [anon_sym___noreturn] = ACTIONS(1289), + [anon_sym___cold] = ACTIONS(1289), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1291), + [anon_sym___declspec] = ACTIONS(1289), + [anon_sym___init] = ACTIONS(1289), + [anon_sym___exit] = ACTIONS(1289), + [anon_sym___cdecl] = ACTIONS(1289), + [anon_sym___clrcall] = ACTIONS(1289), + [anon_sym___stdcall] = ACTIONS(1289), + [anon_sym___fastcall] = ACTIONS(1289), + [anon_sym___thiscall] = ACTIONS(1289), + [anon_sym___vectorcall] = ACTIONS(1289), + [anon_sym_LBRACE] = ACTIONS(1291), + [anon_sym_signed] = ACTIONS(1289), + [anon_sym_unsigned] = ACTIONS(1289), + [anon_sym_long] = ACTIONS(1289), + [anon_sym_short] = ACTIONS(1289), + [anon_sym_static] = ACTIONS(1289), + [anon_sym_auto] = ACTIONS(1289), + [anon_sym_register] = ACTIONS(1289), + [anon_sym_inline] = ACTIONS(1289), + [anon_sym___inline] = ACTIONS(1289), + [anon_sym___inline__] = ACTIONS(1289), + [anon_sym___forceinline] = ACTIONS(1289), + [anon_sym_thread_local] = ACTIONS(1289), + [anon_sym___thread] = ACTIONS(1289), + [anon_sym_const] = ACTIONS(1289), + [anon_sym_constexpr] = ACTIONS(1289), + [anon_sym_volatile] = ACTIONS(1289), + [anon_sym_restrict] = ACTIONS(1289), + [anon_sym___restrict__] = ACTIONS(1289), + [anon_sym__Atomic] = ACTIONS(1289), + [anon_sym__Noreturn] = ACTIONS(1289), + [anon_sym_noreturn] = ACTIONS(1289), + [anon_sym_alignas] = ACTIONS(1289), + [anon_sym__Alignas] = ACTIONS(1289), + [sym_primitive_type] = ACTIONS(1289), + [anon_sym_enum] = ACTIONS(1289), + [anon_sym_struct] = ACTIONS(1289), + [anon_sym_union] = ACTIONS(1289), + [anon_sym_if] = ACTIONS(1289), + [anon_sym_switch] = ACTIONS(1289), + [anon_sym_case] = ACTIONS(1289), + [anon_sym_default] = ACTIONS(1289), + [anon_sym_while] = ACTIONS(1289), + [anon_sym_do] = ACTIONS(1289), + [anon_sym_for] = ACTIONS(1289), + [anon_sym_return] = ACTIONS(1289), + [anon_sym_break] = ACTIONS(1289), + [anon_sym_continue] = ACTIONS(1289), + [anon_sym_goto] = ACTIONS(1289), + [anon_sym___try] = ACTIONS(1289), + [anon_sym___leave] = ACTIONS(1289), + [anon_sym_DASH_DASH] = ACTIONS(1291), + [anon_sym_PLUS_PLUS] = ACTIONS(1291), + [anon_sym_sizeof] = ACTIONS(1289), + [anon_sym___alignof__] = ACTIONS(1289), + [anon_sym___alignof] = ACTIONS(1289), + [anon_sym__alignof] = ACTIONS(1289), + [anon_sym_alignof] = ACTIONS(1289), + [anon_sym__Alignof] = ACTIONS(1289), + [anon_sym_offsetof] = ACTIONS(1289), + [anon_sym__Generic] = ACTIONS(1289), + [anon_sym_asm] = ACTIONS(1289), + [anon_sym___asm__] = ACTIONS(1289), + [sym_number_literal] = ACTIONS(1291), + [anon_sym_L_SQUOTE] = ACTIONS(1291), + [anon_sym_u_SQUOTE] = ACTIONS(1291), + [anon_sym_U_SQUOTE] = ACTIONS(1291), + [anon_sym_u8_SQUOTE] = ACTIONS(1291), + [anon_sym_SQUOTE] = ACTIONS(1291), + [anon_sym_L_DQUOTE] = ACTIONS(1291), + [anon_sym_u_DQUOTE] = ACTIONS(1291), + [anon_sym_U_DQUOTE] = ACTIONS(1291), + [anon_sym_u8_DQUOTE] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1291), + [sym_true] = ACTIONS(1289), + [sym_false] = ACTIONS(1289), + [anon_sym_NULL] = ACTIONS(1289), + [anon_sym_nullptr] = ACTIONS(1289), [sym_comment] = ACTIONS(3), }, - [267] = { + [301] = { + [sym_identifier] = ACTIONS(1313), + [aux_sym_preproc_include_token1] = ACTIONS(1313), + [aux_sym_preproc_def_token1] = ACTIONS(1313), + [aux_sym_preproc_if_token1] = ACTIONS(1313), + [aux_sym_preproc_if_token2] = ACTIONS(1313), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1313), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1313), + [sym_preproc_directive] = ACTIONS(1313), + [anon_sym_LPAREN2] = ACTIONS(1315), + [anon_sym_BANG] = ACTIONS(1315), + [anon_sym_TILDE] = ACTIONS(1315), + [anon_sym_DASH] = ACTIONS(1313), + [anon_sym_PLUS] = ACTIONS(1313), + [anon_sym_STAR] = ACTIONS(1315), + [anon_sym_AMP] = ACTIONS(1315), + [anon_sym_SEMI] = ACTIONS(1315), + [anon_sym___extension__] = ACTIONS(1313), + [anon_sym_typedef] = ACTIONS(1313), + [anon_sym_extern] = ACTIONS(1313), + [anon_sym___attribute__] = ACTIONS(1313), + [anon_sym___scanf] = ACTIONS(1313), + [anon_sym___printf] = ACTIONS(1313), + [anon_sym___read_mostly] = ACTIONS(1313), + [anon_sym___must_hold] = ACTIONS(1313), + [anon_sym___ro_after_init] = ACTIONS(1313), + [anon_sym___noreturn] = ACTIONS(1313), + [anon_sym___cold] = ACTIONS(1313), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1315), + [anon_sym___declspec] = ACTIONS(1313), + [anon_sym___init] = ACTIONS(1313), + [anon_sym___exit] = ACTIONS(1313), + [anon_sym___cdecl] = ACTIONS(1313), + [anon_sym___clrcall] = ACTIONS(1313), + [anon_sym___stdcall] = ACTIONS(1313), + [anon_sym___fastcall] = ACTIONS(1313), + [anon_sym___thiscall] = ACTIONS(1313), + [anon_sym___vectorcall] = ACTIONS(1313), + [anon_sym_LBRACE] = ACTIONS(1315), + [anon_sym_signed] = ACTIONS(1313), + [anon_sym_unsigned] = ACTIONS(1313), + [anon_sym_long] = ACTIONS(1313), + [anon_sym_short] = ACTIONS(1313), + [anon_sym_static] = ACTIONS(1313), + [anon_sym_auto] = ACTIONS(1313), + [anon_sym_register] = ACTIONS(1313), + [anon_sym_inline] = ACTIONS(1313), + [anon_sym___inline] = ACTIONS(1313), + [anon_sym___inline__] = ACTIONS(1313), + [anon_sym___forceinline] = ACTIONS(1313), + [anon_sym_thread_local] = ACTIONS(1313), + [anon_sym___thread] = ACTIONS(1313), + [anon_sym_const] = ACTIONS(1313), + [anon_sym_constexpr] = ACTIONS(1313), + [anon_sym_volatile] = ACTIONS(1313), + [anon_sym_restrict] = ACTIONS(1313), + [anon_sym___restrict__] = ACTIONS(1313), + [anon_sym__Atomic] = ACTIONS(1313), + [anon_sym__Noreturn] = ACTIONS(1313), + [anon_sym_noreturn] = ACTIONS(1313), + [anon_sym_alignas] = ACTIONS(1313), + [anon_sym__Alignas] = ACTIONS(1313), + [sym_primitive_type] = ACTIONS(1313), + [anon_sym_enum] = ACTIONS(1313), + [anon_sym_struct] = ACTIONS(1313), + [anon_sym_union] = ACTIONS(1313), + [anon_sym_if] = ACTIONS(1313), + [anon_sym_switch] = ACTIONS(1313), + [anon_sym_case] = ACTIONS(1313), + [anon_sym_default] = ACTIONS(1313), + [anon_sym_while] = ACTIONS(1313), + [anon_sym_do] = ACTIONS(1313), + [anon_sym_for] = ACTIONS(1313), + [anon_sym_return] = ACTIONS(1313), + [anon_sym_break] = ACTIONS(1313), + [anon_sym_continue] = ACTIONS(1313), + [anon_sym_goto] = ACTIONS(1313), + [anon_sym___try] = ACTIONS(1313), + [anon_sym___leave] = ACTIONS(1313), + [anon_sym_DASH_DASH] = ACTIONS(1315), + [anon_sym_PLUS_PLUS] = ACTIONS(1315), + [anon_sym_sizeof] = ACTIONS(1313), + [anon_sym___alignof__] = ACTIONS(1313), + [anon_sym___alignof] = ACTIONS(1313), + [anon_sym__alignof] = ACTIONS(1313), + [anon_sym_alignof] = ACTIONS(1313), + [anon_sym__Alignof] = ACTIONS(1313), + [anon_sym_offsetof] = ACTIONS(1313), + [anon_sym__Generic] = ACTIONS(1313), + [anon_sym_asm] = ACTIONS(1313), + [anon_sym___asm__] = ACTIONS(1313), + [sym_number_literal] = ACTIONS(1315), + [anon_sym_L_SQUOTE] = ACTIONS(1315), + [anon_sym_u_SQUOTE] = ACTIONS(1315), + [anon_sym_U_SQUOTE] = ACTIONS(1315), + [anon_sym_u8_SQUOTE] = ACTIONS(1315), + [anon_sym_SQUOTE] = ACTIONS(1315), + [anon_sym_L_DQUOTE] = ACTIONS(1315), + [anon_sym_u_DQUOTE] = ACTIONS(1315), + [anon_sym_U_DQUOTE] = ACTIONS(1315), + [anon_sym_u8_DQUOTE] = ACTIONS(1315), + [anon_sym_DQUOTE] = ACTIONS(1315), + [sym_true] = ACTIONS(1313), + [sym_false] = ACTIONS(1313), + [anon_sym_NULL] = ACTIONS(1313), + [anon_sym_nullptr] = ACTIONS(1313), + [sym_comment] = ACTIONS(3), + }, + [302] = { + [sym_identifier] = ACTIONS(1365), + [aux_sym_preproc_include_token1] = ACTIONS(1365), + [aux_sym_preproc_def_token1] = ACTIONS(1365), + [aux_sym_preproc_if_token1] = ACTIONS(1365), + [aux_sym_preproc_if_token2] = ACTIONS(1365), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1365), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1365), + [sym_preproc_directive] = ACTIONS(1365), + [anon_sym_LPAREN2] = ACTIONS(1367), + [anon_sym_BANG] = ACTIONS(1367), + [anon_sym_TILDE] = ACTIONS(1367), + [anon_sym_DASH] = ACTIONS(1365), + [anon_sym_PLUS] = ACTIONS(1365), + [anon_sym_STAR] = ACTIONS(1367), + [anon_sym_AMP] = ACTIONS(1367), + [anon_sym_SEMI] = ACTIONS(1367), + [anon_sym___extension__] = ACTIONS(1365), + [anon_sym_typedef] = ACTIONS(1365), + [anon_sym_extern] = ACTIONS(1365), + [anon_sym___attribute__] = ACTIONS(1365), + [anon_sym___scanf] = ACTIONS(1365), + [anon_sym___printf] = ACTIONS(1365), + [anon_sym___read_mostly] = ACTIONS(1365), + [anon_sym___must_hold] = ACTIONS(1365), + [anon_sym___ro_after_init] = ACTIONS(1365), + [anon_sym___noreturn] = ACTIONS(1365), + [anon_sym___cold] = ACTIONS(1365), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1367), + [anon_sym___declspec] = ACTIONS(1365), + [anon_sym___init] = ACTIONS(1365), + [anon_sym___exit] = ACTIONS(1365), + [anon_sym___cdecl] = ACTIONS(1365), + [anon_sym___clrcall] = ACTIONS(1365), + [anon_sym___stdcall] = ACTIONS(1365), + [anon_sym___fastcall] = ACTIONS(1365), + [anon_sym___thiscall] = ACTIONS(1365), + [anon_sym___vectorcall] = ACTIONS(1365), + [anon_sym_LBRACE] = ACTIONS(1367), + [anon_sym_signed] = ACTIONS(1365), + [anon_sym_unsigned] = ACTIONS(1365), + [anon_sym_long] = ACTIONS(1365), + [anon_sym_short] = ACTIONS(1365), + [anon_sym_static] = ACTIONS(1365), + [anon_sym_auto] = ACTIONS(1365), + [anon_sym_register] = ACTIONS(1365), + [anon_sym_inline] = ACTIONS(1365), + [anon_sym___inline] = ACTIONS(1365), + [anon_sym___inline__] = ACTIONS(1365), + [anon_sym___forceinline] = ACTIONS(1365), + [anon_sym_thread_local] = ACTIONS(1365), + [anon_sym___thread] = ACTIONS(1365), + [anon_sym_const] = ACTIONS(1365), + [anon_sym_constexpr] = ACTIONS(1365), + [anon_sym_volatile] = ACTIONS(1365), + [anon_sym_restrict] = ACTIONS(1365), + [anon_sym___restrict__] = ACTIONS(1365), + [anon_sym__Atomic] = ACTIONS(1365), + [anon_sym__Noreturn] = ACTIONS(1365), + [anon_sym_noreturn] = ACTIONS(1365), + [anon_sym_alignas] = ACTIONS(1365), + [anon_sym__Alignas] = ACTIONS(1365), + [sym_primitive_type] = ACTIONS(1365), + [anon_sym_enum] = ACTIONS(1365), + [anon_sym_struct] = ACTIONS(1365), + [anon_sym_union] = ACTIONS(1365), + [anon_sym_if] = ACTIONS(1365), + [anon_sym_switch] = ACTIONS(1365), + [anon_sym_case] = ACTIONS(1365), + [anon_sym_default] = ACTIONS(1365), + [anon_sym_while] = ACTIONS(1365), + [anon_sym_do] = ACTIONS(1365), + [anon_sym_for] = ACTIONS(1365), + [anon_sym_return] = ACTIONS(1365), + [anon_sym_break] = ACTIONS(1365), + [anon_sym_continue] = ACTIONS(1365), + [anon_sym_goto] = ACTIONS(1365), + [anon_sym___try] = ACTIONS(1365), + [anon_sym___leave] = ACTIONS(1365), + [anon_sym_DASH_DASH] = ACTIONS(1367), + [anon_sym_PLUS_PLUS] = ACTIONS(1367), + [anon_sym_sizeof] = ACTIONS(1365), + [anon_sym___alignof__] = ACTIONS(1365), + [anon_sym___alignof] = ACTIONS(1365), + [anon_sym__alignof] = ACTIONS(1365), + [anon_sym_alignof] = ACTIONS(1365), + [anon_sym__Alignof] = ACTIONS(1365), + [anon_sym_offsetof] = ACTIONS(1365), + [anon_sym__Generic] = ACTIONS(1365), + [anon_sym_asm] = ACTIONS(1365), + [anon_sym___asm__] = ACTIONS(1365), + [sym_number_literal] = ACTIONS(1367), + [anon_sym_L_SQUOTE] = ACTIONS(1367), + [anon_sym_u_SQUOTE] = ACTIONS(1367), + [anon_sym_U_SQUOTE] = ACTIONS(1367), + [anon_sym_u8_SQUOTE] = ACTIONS(1367), + [anon_sym_SQUOTE] = ACTIONS(1367), + [anon_sym_L_DQUOTE] = ACTIONS(1367), + [anon_sym_u_DQUOTE] = ACTIONS(1367), + [anon_sym_U_DQUOTE] = ACTIONS(1367), + [anon_sym_u8_DQUOTE] = ACTIONS(1367), + [anon_sym_DQUOTE] = ACTIONS(1367), + [sym_true] = ACTIONS(1365), + [sym_false] = ACTIONS(1365), + [anon_sym_NULL] = ACTIONS(1365), + [anon_sym_nullptr] = ACTIONS(1365), + [sym_comment] = ACTIONS(3), + }, + [303] = { + [sym_identifier] = ACTIONS(1369), + [aux_sym_preproc_include_token1] = ACTIONS(1369), + [aux_sym_preproc_def_token1] = ACTIONS(1369), + [aux_sym_preproc_if_token1] = ACTIONS(1369), + [aux_sym_preproc_if_token2] = ACTIONS(1369), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1369), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1369), + [sym_preproc_directive] = ACTIONS(1369), + [anon_sym_LPAREN2] = ACTIONS(1371), + [anon_sym_BANG] = ACTIONS(1371), + [anon_sym_TILDE] = ACTIONS(1371), + [anon_sym_DASH] = ACTIONS(1369), + [anon_sym_PLUS] = ACTIONS(1369), + [anon_sym_STAR] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1371), + [anon_sym_SEMI] = ACTIONS(1371), + [anon_sym___extension__] = ACTIONS(1369), + [anon_sym_typedef] = ACTIONS(1369), + [anon_sym_extern] = ACTIONS(1369), + [anon_sym___attribute__] = ACTIONS(1369), + [anon_sym___scanf] = ACTIONS(1369), + [anon_sym___printf] = ACTIONS(1369), + [anon_sym___read_mostly] = ACTIONS(1369), + [anon_sym___must_hold] = ACTIONS(1369), + [anon_sym___ro_after_init] = ACTIONS(1369), + [anon_sym___noreturn] = ACTIONS(1369), + [anon_sym___cold] = ACTIONS(1369), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1371), + [anon_sym___declspec] = ACTIONS(1369), + [anon_sym___init] = ACTIONS(1369), + [anon_sym___exit] = ACTIONS(1369), + [anon_sym___cdecl] = ACTIONS(1369), + [anon_sym___clrcall] = ACTIONS(1369), + [anon_sym___stdcall] = ACTIONS(1369), + [anon_sym___fastcall] = ACTIONS(1369), + [anon_sym___thiscall] = ACTIONS(1369), + [anon_sym___vectorcall] = ACTIONS(1369), + [anon_sym_LBRACE] = ACTIONS(1371), + [anon_sym_signed] = ACTIONS(1369), + [anon_sym_unsigned] = ACTIONS(1369), + [anon_sym_long] = ACTIONS(1369), + [anon_sym_short] = ACTIONS(1369), + [anon_sym_static] = ACTIONS(1369), + [anon_sym_auto] = ACTIONS(1369), + [anon_sym_register] = ACTIONS(1369), + [anon_sym_inline] = ACTIONS(1369), + [anon_sym___inline] = ACTIONS(1369), + [anon_sym___inline__] = ACTIONS(1369), + [anon_sym___forceinline] = ACTIONS(1369), + [anon_sym_thread_local] = ACTIONS(1369), + [anon_sym___thread] = ACTIONS(1369), + [anon_sym_const] = ACTIONS(1369), + [anon_sym_constexpr] = ACTIONS(1369), + [anon_sym_volatile] = ACTIONS(1369), + [anon_sym_restrict] = ACTIONS(1369), + [anon_sym___restrict__] = ACTIONS(1369), + [anon_sym__Atomic] = ACTIONS(1369), + [anon_sym__Noreturn] = ACTIONS(1369), + [anon_sym_noreturn] = ACTIONS(1369), + [anon_sym_alignas] = ACTIONS(1369), + [anon_sym__Alignas] = ACTIONS(1369), + [sym_primitive_type] = ACTIONS(1369), + [anon_sym_enum] = ACTIONS(1369), + [anon_sym_struct] = ACTIONS(1369), + [anon_sym_union] = ACTIONS(1369), + [anon_sym_if] = ACTIONS(1369), + [anon_sym_switch] = ACTIONS(1369), + [anon_sym_case] = ACTIONS(1369), + [anon_sym_default] = ACTIONS(1369), + [anon_sym_while] = ACTIONS(1369), + [anon_sym_do] = ACTIONS(1369), + [anon_sym_for] = ACTIONS(1369), + [anon_sym_return] = ACTIONS(1369), + [anon_sym_break] = ACTIONS(1369), + [anon_sym_continue] = ACTIONS(1369), + [anon_sym_goto] = ACTIONS(1369), + [anon_sym___try] = ACTIONS(1369), + [anon_sym___leave] = ACTIONS(1369), + [anon_sym_DASH_DASH] = ACTIONS(1371), + [anon_sym_PLUS_PLUS] = ACTIONS(1371), + [anon_sym_sizeof] = ACTIONS(1369), + [anon_sym___alignof__] = ACTIONS(1369), + [anon_sym___alignof] = ACTIONS(1369), + [anon_sym__alignof] = ACTIONS(1369), + [anon_sym_alignof] = ACTIONS(1369), + [anon_sym__Alignof] = ACTIONS(1369), + [anon_sym_offsetof] = ACTIONS(1369), + [anon_sym__Generic] = ACTIONS(1369), + [anon_sym_asm] = ACTIONS(1369), + [anon_sym___asm__] = ACTIONS(1369), + [sym_number_literal] = ACTIONS(1371), + [anon_sym_L_SQUOTE] = ACTIONS(1371), + [anon_sym_u_SQUOTE] = ACTIONS(1371), + [anon_sym_U_SQUOTE] = ACTIONS(1371), + [anon_sym_u8_SQUOTE] = ACTIONS(1371), + [anon_sym_SQUOTE] = ACTIONS(1371), + [anon_sym_L_DQUOTE] = ACTIONS(1371), + [anon_sym_u_DQUOTE] = ACTIONS(1371), + [anon_sym_U_DQUOTE] = ACTIONS(1371), + [anon_sym_u8_DQUOTE] = ACTIONS(1371), + [anon_sym_DQUOTE] = ACTIONS(1371), + [sym_true] = ACTIONS(1369), + [sym_false] = ACTIONS(1369), + [anon_sym_NULL] = ACTIONS(1369), + [anon_sym_nullptr] = ACTIONS(1369), + [sym_comment] = ACTIONS(3), + }, + [304] = { + [sym_identifier] = ACTIONS(1361), + [aux_sym_preproc_include_token1] = ACTIONS(1361), + [aux_sym_preproc_def_token1] = ACTIONS(1361), + [aux_sym_preproc_if_token1] = ACTIONS(1361), + [aux_sym_preproc_if_token2] = ACTIONS(1361), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1361), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1361), + [sym_preproc_directive] = ACTIONS(1361), + [anon_sym_LPAREN2] = ACTIONS(1363), + [anon_sym_BANG] = ACTIONS(1363), + [anon_sym_TILDE] = ACTIONS(1363), + [anon_sym_DASH] = ACTIONS(1361), + [anon_sym_PLUS] = ACTIONS(1361), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_AMP] = ACTIONS(1363), + [anon_sym_SEMI] = ACTIONS(1363), + [anon_sym___extension__] = ACTIONS(1361), + [anon_sym_typedef] = ACTIONS(1361), + [anon_sym_extern] = ACTIONS(1361), + [anon_sym___attribute__] = ACTIONS(1361), + [anon_sym___scanf] = ACTIONS(1361), + [anon_sym___printf] = ACTIONS(1361), + [anon_sym___read_mostly] = ACTIONS(1361), + [anon_sym___must_hold] = ACTIONS(1361), + [anon_sym___ro_after_init] = ACTIONS(1361), + [anon_sym___noreturn] = ACTIONS(1361), + [anon_sym___cold] = ACTIONS(1361), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1363), + [anon_sym___declspec] = ACTIONS(1361), + [anon_sym___init] = ACTIONS(1361), + [anon_sym___exit] = ACTIONS(1361), + [anon_sym___cdecl] = ACTIONS(1361), + [anon_sym___clrcall] = ACTIONS(1361), + [anon_sym___stdcall] = ACTIONS(1361), + [anon_sym___fastcall] = ACTIONS(1361), + [anon_sym___thiscall] = ACTIONS(1361), + [anon_sym___vectorcall] = ACTIONS(1361), + [anon_sym_LBRACE] = ACTIONS(1363), + [anon_sym_signed] = ACTIONS(1361), + [anon_sym_unsigned] = ACTIONS(1361), + [anon_sym_long] = ACTIONS(1361), + [anon_sym_short] = ACTIONS(1361), + [anon_sym_static] = ACTIONS(1361), + [anon_sym_auto] = ACTIONS(1361), + [anon_sym_register] = ACTIONS(1361), + [anon_sym_inline] = ACTIONS(1361), + [anon_sym___inline] = ACTIONS(1361), + [anon_sym___inline__] = ACTIONS(1361), + [anon_sym___forceinline] = ACTIONS(1361), + [anon_sym_thread_local] = ACTIONS(1361), + [anon_sym___thread] = ACTIONS(1361), + [anon_sym_const] = ACTIONS(1361), + [anon_sym_constexpr] = ACTIONS(1361), + [anon_sym_volatile] = ACTIONS(1361), + [anon_sym_restrict] = ACTIONS(1361), + [anon_sym___restrict__] = ACTIONS(1361), + [anon_sym__Atomic] = ACTIONS(1361), + [anon_sym__Noreturn] = ACTIONS(1361), + [anon_sym_noreturn] = ACTIONS(1361), + [anon_sym_alignas] = ACTIONS(1361), + [anon_sym__Alignas] = ACTIONS(1361), + [sym_primitive_type] = ACTIONS(1361), + [anon_sym_enum] = ACTIONS(1361), + [anon_sym_struct] = ACTIONS(1361), + [anon_sym_union] = ACTIONS(1361), + [anon_sym_if] = ACTIONS(1361), + [anon_sym_switch] = ACTIONS(1361), + [anon_sym_case] = ACTIONS(1361), + [anon_sym_default] = ACTIONS(1361), + [anon_sym_while] = ACTIONS(1361), + [anon_sym_do] = ACTIONS(1361), + [anon_sym_for] = ACTIONS(1361), + [anon_sym_return] = ACTIONS(1361), + [anon_sym_break] = ACTIONS(1361), + [anon_sym_continue] = ACTIONS(1361), + [anon_sym_goto] = ACTIONS(1361), + [anon_sym___try] = ACTIONS(1361), + [anon_sym___leave] = ACTIONS(1361), + [anon_sym_DASH_DASH] = ACTIONS(1363), + [anon_sym_PLUS_PLUS] = ACTIONS(1363), + [anon_sym_sizeof] = ACTIONS(1361), + [anon_sym___alignof__] = ACTIONS(1361), + [anon_sym___alignof] = ACTIONS(1361), + [anon_sym__alignof] = ACTIONS(1361), + [anon_sym_alignof] = ACTIONS(1361), + [anon_sym__Alignof] = ACTIONS(1361), + [anon_sym_offsetof] = ACTIONS(1361), + [anon_sym__Generic] = ACTIONS(1361), + [anon_sym_asm] = ACTIONS(1361), + [anon_sym___asm__] = ACTIONS(1361), + [sym_number_literal] = ACTIONS(1363), + [anon_sym_L_SQUOTE] = ACTIONS(1363), + [anon_sym_u_SQUOTE] = ACTIONS(1363), + [anon_sym_U_SQUOTE] = ACTIONS(1363), + [anon_sym_u8_SQUOTE] = ACTIONS(1363), + [anon_sym_SQUOTE] = ACTIONS(1363), + [anon_sym_L_DQUOTE] = ACTIONS(1363), + [anon_sym_u_DQUOTE] = ACTIONS(1363), + [anon_sym_U_DQUOTE] = ACTIONS(1363), + [anon_sym_u8_DQUOTE] = ACTIONS(1363), + [anon_sym_DQUOTE] = ACTIONS(1363), + [sym_true] = ACTIONS(1361), + [sym_false] = ACTIONS(1361), + [anon_sym_NULL] = ACTIONS(1361), + [anon_sym_nullptr] = ACTIONS(1361), + [sym_comment] = ACTIONS(3), + }, + [305] = { + [sym_identifier] = ACTIONS(1337), + [aux_sym_preproc_include_token1] = ACTIONS(1337), + [aux_sym_preproc_def_token1] = ACTIONS(1337), + [aux_sym_preproc_if_token1] = ACTIONS(1337), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1337), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1337), + [sym_preproc_directive] = ACTIONS(1337), + [anon_sym_LPAREN2] = ACTIONS(1339), + [anon_sym_BANG] = ACTIONS(1339), + [anon_sym_TILDE] = ACTIONS(1339), + [anon_sym_DASH] = ACTIONS(1337), + [anon_sym_PLUS] = ACTIONS(1337), + [anon_sym_STAR] = ACTIONS(1339), + [anon_sym_AMP] = ACTIONS(1339), + [anon_sym_SEMI] = ACTIONS(1339), + [anon_sym___extension__] = ACTIONS(1337), + [anon_sym_typedef] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1337), + [anon_sym___attribute__] = ACTIONS(1337), + [anon_sym___scanf] = ACTIONS(1337), + [anon_sym___printf] = ACTIONS(1337), + [anon_sym___read_mostly] = ACTIONS(1337), + [anon_sym___must_hold] = ACTIONS(1337), + [anon_sym___ro_after_init] = ACTIONS(1337), + [anon_sym___noreturn] = ACTIONS(1337), + [anon_sym___cold] = ACTIONS(1337), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1339), + [anon_sym___declspec] = ACTIONS(1337), + [anon_sym___init] = ACTIONS(1337), + [anon_sym___exit] = ACTIONS(1337), + [anon_sym___cdecl] = ACTIONS(1337), + [anon_sym___clrcall] = ACTIONS(1337), + [anon_sym___stdcall] = ACTIONS(1337), + [anon_sym___fastcall] = ACTIONS(1337), + [anon_sym___thiscall] = ACTIONS(1337), + [anon_sym___vectorcall] = ACTIONS(1337), + [anon_sym_LBRACE] = ACTIONS(1339), + [anon_sym_RBRACE] = ACTIONS(1339), + [anon_sym_signed] = ACTIONS(1337), + [anon_sym_unsigned] = ACTIONS(1337), + [anon_sym_long] = ACTIONS(1337), + [anon_sym_short] = ACTIONS(1337), + [anon_sym_static] = ACTIONS(1337), + [anon_sym_auto] = ACTIONS(1337), + [anon_sym_register] = ACTIONS(1337), + [anon_sym_inline] = ACTIONS(1337), + [anon_sym___inline] = ACTIONS(1337), + [anon_sym___inline__] = ACTIONS(1337), + [anon_sym___forceinline] = ACTIONS(1337), + [anon_sym_thread_local] = ACTIONS(1337), + [anon_sym___thread] = ACTIONS(1337), + [anon_sym_const] = ACTIONS(1337), + [anon_sym_constexpr] = ACTIONS(1337), + [anon_sym_volatile] = ACTIONS(1337), + [anon_sym_restrict] = ACTIONS(1337), + [anon_sym___restrict__] = ACTIONS(1337), + [anon_sym__Atomic] = ACTIONS(1337), + [anon_sym__Noreturn] = ACTIONS(1337), + [anon_sym_noreturn] = ACTIONS(1337), + [anon_sym_alignas] = ACTIONS(1337), + [anon_sym__Alignas] = ACTIONS(1337), + [sym_primitive_type] = ACTIONS(1337), + [anon_sym_enum] = ACTIONS(1337), + [anon_sym_struct] = ACTIONS(1337), + [anon_sym_union] = ACTIONS(1337), + [anon_sym_if] = ACTIONS(1337), + [anon_sym_switch] = ACTIONS(1337), + [anon_sym_case] = ACTIONS(1337), + [anon_sym_default] = ACTIONS(1337), + [anon_sym_while] = ACTIONS(1337), + [anon_sym_do] = ACTIONS(1337), + [anon_sym_for] = ACTIONS(1337), + [anon_sym_return] = ACTIONS(1337), + [anon_sym_break] = ACTIONS(1337), + [anon_sym_continue] = ACTIONS(1337), + [anon_sym_goto] = ACTIONS(1337), + [anon_sym___try] = ACTIONS(1337), + [anon_sym___leave] = ACTIONS(1337), + [anon_sym_DASH_DASH] = ACTIONS(1339), + [anon_sym_PLUS_PLUS] = ACTIONS(1339), + [anon_sym_sizeof] = ACTIONS(1337), + [anon_sym___alignof__] = ACTIONS(1337), + [anon_sym___alignof] = ACTIONS(1337), + [anon_sym__alignof] = ACTIONS(1337), + [anon_sym_alignof] = ACTIONS(1337), + [anon_sym__Alignof] = ACTIONS(1337), + [anon_sym_offsetof] = ACTIONS(1337), + [anon_sym__Generic] = ACTIONS(1337), + [anon_sym_asm] = ACTIONS(1337), + [anon_sym___asm__] = ACTIONS(1337), + [sym_number_literal] = ACTIONS(1339), + [anon_sym_L_SQUOTE] = ACTIONS(1339), + [anon_sym_u_SQUOTE] = ACTIONS(1339), + [anon_sym_U_SQUOTE] = ACTIONS(1339), + [anon_sym_u8_SQUOTE] = ACTIONS(1339), + [anon_sym_SQUOTE] = ACTIONS(1339), + [anon_sym_L_DQUOTE] = ACTIONS(1339), + [anon_sym_u_DQUOTE] = ACTIONS(1339), + [anon_sym_U_DQUOTE] = ACTIONS(1339), + [anon_sym_u8_DQUOTE] = ACTIONS(1339), + [anon_sym_DQUOTE] = ACTIONS(1339), + [sym_true] = ACTIONS(1337), + [sym_false] = ACTIONS(1337), + [anon_sym_NULL] = ACTIONS(1337), + [anon_sym_nullptr] = ACTIONS(1337), + [sym_comment] = ACTIONS(3), + }, + [306] = { + [sym_identifier] = ACTIONS(1401), + [aux_sym_preproc_include_token1] = ACTIONS(1401), + [aux_sym_preproc_def_token1] = ACTIONS(1401), + [aux_sym_preproc_if_token1] = ACTIONS(1401), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1401), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1401), + [sym_preproc_directive] = ACTIONS(1401), + [anon_sym_LPAREN2] = ACTIONS(1404), + [anon_sym_BANG] = ACTIONS(1404), + [anon_sym_TILDE] = ACTIONS(1404), + [anon_sym_DASH] = ACTIONS(1401), + [anon_sym_PLUS] = ACTIONS(1401), + [anon_sym_STAR] = ACTIONS(1404), + [anon_sym_AMP] = ACTIONS(1404), + [anon_sym_SEMI] = ACTIONS(1404), + [anon_sym___extension__] = ACTIONS(1401), + [anon_sym_typedef] = ACTIONS(1401), + [anon_sym_extern] = ACTIONS(1401), + [anon_sym___attribute__] = ACTIONS(1401), + [anon_sym___scanf] = ACTIONS(1401), + [anon_sym___printf] = ACTIONS(1401), + [anon_sym___read_mostly] = ACTIONS(1401), + [anon_sym___must_hold] = ACTIONS(1401), + [anon_sym___ro_after_init] = ACTIONS(1401), + [anon_sym___noreturn] = ACTIONS(1401), + [anon_sym___cold] = ACTIONS(1401), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1404), + [anon_sym___declspec] = ACTIONS(1401), + [anon_sym___init] = ACTIONS(1401), + [anon_sym___exit] = ACTIONS(1401), + [anon_sym___cdecl] = ACTIONS(1401), + [anon_sym___clrcall] = ACTIONS(1401), + [anon_sym___stdcall] = ACTIONS(1401), + [anon_sym___fastcall] = ACTIONS(1401), + [anon_sym___thiscall] = ACTIONS(1401), + [anon_sym___vectorcall] = ACTIONS(1401), + [anon_sym_LBRACE] = ACTIONS(1404), + [anon_sym_RBRACE] = ACTIONS(1404), + [anon_sym_signed] = ACTIONS(1401), + [anon_sym_unsigned] = ACTIONS(1401), + [anon_sym_long] = ACTIONS(1401), + [anon_sym_short] = ACTIONS(1401), + [anon_sym_static] = ACTIONS(1401), + [anon_sym_auto] = ACTIONS(1401), + [anon_sym_register] = ACTIONS(1401), + [anon_sym_inline] = ACTIONS(1401), + [anon_sym___inline] = ACTIONS(1401), + [anon_sym___inline__] = ACTIONS(1401), + [anon_sym___forceinline] = ACTIONS(1401), + [anon_sym_thread_local] = ACTIONS(1401), + [anon_sym___thread] = ACTIONS(1401), + [anon_sym_const] = ACTIONS(1401), + [anon_sym_constexpr] = ACTIONS(1401), + [anon_sym_volatile] = ACTIONS(1401), + [anon_sym_restrict] = ACTIONS(1401), + [anon_sym___restrict__] = ACTIONS(1401), + [anon_sym__Atomic] = ACTIONS(1401), + [anon_sym__Noreturn] = ACTIONS(1401), + [anon_sym_noreturn] = ACTIONS(1401), + [anon_sym_alignas] = ACTIONS(1401), + [anon_sym__Alignas] = ACTIONS(1401), + [sym_primitive_type] = ACTIONS(1401), + [anon_sym_enum] = ACTIONS(1401), + [anon_sym_struct] = ACTIONS(1401), + [anon_sym_union] = ACTIONS(1401), + [anon_sym_if] = ACTIONS(1401), + [anon_sym_switch] = ACTIONS(1401), + [anon_sym_case] = ACTIONS(1401), + [anon_sym_default] = ACTIONS(1401), + [anon_sym_while] = ACTIONS(1401), + [anon_sym_do] = ACTIONS(1401), + [anon_sym_for] = ACTIONS(1401), + [anon_sym_return] = ACTIONS(1401), + [anon_sym_break] = ACTIONS(1401), + [anon_sym_continue] = ACTIONS(1401), + [anon_sym_goto] = ACTIONS(1401), + [anon_sym___try] = ACTIONS(1401), + [anon_sym___leave] = ACTIONS(1401), + [anon_sym_DASH_DASH] = ACTIONS(1404), + [anon_sym_PLUS_PLUS] = ACTIONS(1404), + [anon_sym_sizeof] = ACTIONS(1401), + [anon_sym___alignof__] = ACTIONS(1401), + [anon_sym___alignof] = ACTIONS(1401), + [anon_sym__alignof] = ACTIONS(1401), + [anon_sym_alignof] = ACTIONS(1401), + [anon_sym__Alignof] = ACTIONS(1401), + [anon_sym_offsetof] = ACTIONS(1401), + [anon_sym__Generic] = ACTIONS(1401), + [anon_sym_asm] = ACTIONS(1401), + [anon_sym___asm__] = ACTIONS(1401), + [sym_number_literal] = ACTIONS(1404), + [anon_sym_L_SQUOTE] = ACTIONS(1404), + [anon_sym_u_SQUOTE] = ACTIONS(1404), + [anon_sym_U_SQUOTE] = ACTIONS(1404), + [anon_sym_u8_SQUOTE] = ACTIONS(1404), + [anon_sym_SQUOTE] = ACTIONS(1404), + [anon_sym_L_DQUOTE] = ACTIONS(1404), + [anon_sym_u_DQUOTE] = ACTIONS(1404), + [anon_sym_U_DQUOTE] = ACTIONS(1404), + [anon_sym_u8_DQUOTE] = ACTIONS(1404), + [anon_sym_DQUOTE] = ACTIONS(1404), + [sym_true] = ACTIONS(1401), + [sym_false] = ACTIONS(1401), + [anon_sym_NULL] = ACTIONS(1401), + [anon_sym_nullptr] = ACTIONS(1401), + [sym_comment] = ACTIONS(3), + }, + [307] = { [sym_identifier] = ACTIONS(1289), [aux_sym_preproc_include_token1] = ACTIONS(1289), [aux_sym_preproc_def_token1] = ACTIONS(1289), @@ -45083,14 +50958,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_ifdef_token1] = ACTIONS(1289), [aux_sym_preproc_ifdef_token2] = ACTIONS(1289), [sym_preproc_directive] = ACTIONS(1289), - [anon_sym_LPAREN2] = ACTIONS(1292), - [anon_sym_BANG] = ACTIONS(1292), - [anon_sym_TILDE] = ACTIONS(1292), + [anon_sym_LPAREN2] = ACTIONS(1291), + [anon_sym_BANG] = ACTIONS(1291), + [anon_sym_TILDE] = ACTIONS(1291), [anon_sym_DASH] = ACTIONS(1289), [anon_sym_PLUS] = ACTIONS(1289), - [anon_sym_STAR] = ACTIONS(1292), - [anon_sym_AMP] = ACTIONS(1292), - [anon_sym_SEMI] = ACTIONS(1292), + [anon_sym_STAR] = ACTIONS(1291), + [anon_sym_AMP] = ACTIONS(1291), + [anon_sym_SEMI] = ACTIONS(1291), [anon_sym___extension__] = ACTIONS(1289), [anon_sym_typedef] = ACTIONS(1289), [anon_sym_extern] = ACTIONS(1289), @@ -45100,16 +50975,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___read_mostly] = ACTIONS(1289), [anon_sym___must_hold] = ACTIONS(1289), [anon_sym___ro_after_init] = ACTIONS(1289), - [anon_sym___init] = ACTIONS(1289), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1292), + [anon_sym___noreturn] = ACTIONS(1289), + [anon_sym___cold] = ACTIONS(1289), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1291), [anon_sym___declspec] = ACTIONS(1289), + [anon_sym___init] = ACTIONS(1289), + [anon_sym___exit] = ACTIONS(1289), [anon_sym___cdecl] = ACTIONS(1289), [anon_sym___clrcall] = ACTIONS(1289), [anon_sym___stdcall] = ACTIONS(1289), [anon_sym___fastcall] = ACTIONS(1289), [anon_sym___thiscall] = ACTIONS(1289), [anon_sym___vectorcall] = ACTIONS(1289), - [anon_sym_LBRACE] = ACTIONS(1292), + [anon_sym_LBRACE] = ACTIONS(1291), [anon_sym_signed] = ACTIONS(1289), [anon_sym_unsigned] = ACTIONS(1289), [anon_sym_long] = ACTIONS(1289), @@ -45150,8 +51028,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_goto] = ACTIONS(1289), [anon_sym___try] = ACTIONS(1289), [anon_sym___leave] = ACTIONS(1289), - [anon_sym_DASH_DASH] = ACTIONS(1292), - [anon_sym_PLUS_PLUS] = ACTIONS(1292), + [anon_sym_DASH_DASH] = ACTIONS(1291), + [anon_sym_PLUS_PLUS] = ACTIONS(1291), [anon_sym_sizeof] = ACTIONS(1289), [anon_sym___alignof__] = ACTIONS(1289), [anon_sym___alignof] = ACTIONS(1289), @@ -45162,1284 +51040,3912 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(1289), [anon_sym_asm] = ACTIONS(1289), [anon_sym___asm__] = ACTIONS(1289), - [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_number_literal] = ACTIONS(1291), + [anon_sym_L_SQUOTE] = ACTIONS(1291), + [anon_sym_u_SQUOTE] = ACTIONS(1291), + [anon_sym_U_SQUOTE] = ACTIONS(1291), + [anon_sym_u8_SQUOTE] = ACTIONS(1291), + [anon_sym_SQUOTE] = ACTIONS(1291), + [anon_sym_L_DQUOTE] = ACTIONS(1291), + [anon_sym_u_DQUOTE] = ACTIONS(1291), + [anon_sym_U_DQUOTE] = ACTIONS(1291), + [anon_sym_u8_DQUOTE] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1291), [sym_true] = ACTIONS(1289), [sym_false] = ACTIONS(1289), [anon_sym_NULL] = ACTIONS(1289), [anon_sym_nullptr] = ACTIONS(1289), [sym_comment] = ACTIONS(3), }, - [268] = { - [sym_identifier] = ACTIONS(1273), - [aux_sym_preproc_include_token1] = ACTIONS(1273), - [aux_sym_preproc_def_token1] = ACTIONS(1273), - [aux_sym_preproc_if_token1] = ACTIONS(1273), - [aux_sym_preproc_if_token2] = ACTIONS(1273), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1273), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1273), - [sym_preproc_directive] = ACTIONS(1273), - [anon_sym_LPAREN2] = ACTIONS(1275), - [anon_sym_BANG] = ACTIONS(1275), - [anon_sym_TILDE] = ACTIONS(1275), - [anon_sym_DASH] = ACTIONS(1273), - [anon_sym_PLUS] = ACTIONS(1273), - [anon_sym_STAR] = ACTIONS(1275), - [anon_sym_AMP] = ACTIONS(1275), - [anon_sym_SEMI] = ACTIONS(1275), - [anon_sym___extension__] = ACTIONS(1273), - [anon_sym_typedef] = ACTIONS(1273), - [anon_sym_extern] = ACTIONS(1273), - [anon_sym___attribute__] = ACTIONS(1273), - [anon_sym___scanf] = ACTIONS(1273), - [anon_sym___printf] = ACTIONS(1273), - [anon_sym___read_mostly] = ACTIONS(1273), - [anon_sym___must_hold] = ACTIONS(1273), - [anon_sym___ro_after_init] = ACTIONS(1273), - [anon_sym___init] = ACTIONS(1273), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1275), - [anon_sym___declspec] = ACTIONS(1273), - [anon_sym___cdecl] = ACTIONS(1273), - [anon_sym___clrcall] = ACTIONS(1273), - [anon_sym___stdcall] = ACTIONS(1273), - [anon_sym___fastcall] = ACTIONS(1273), - [anon_sym___thiscall] = ACTIONS(1273), - [anon_sym___vectorcall] = ACTIONS(1273), - [anon_sym_LBRACE] = ACTIONS(1275), - [anon_sym_signed] = ACTIONS(1273), - [anon_sym_unsigned] = ACTIONS(1273), - [anon_sym_long] = ACTIONS(1273), - [anon_sym_short] = ACTIONS(1273), - [anon_sym_static] = ACTIONS(1273), - [anon_sym_auto] = ACTIONS(1273), - [anon_sym_register] = ACTIONS(1273), - [anon_sym_inline] = ACTIONS(1273), - [anon_sym___inline] = ACTIONS(1273), - [anon_sym___inline__] = ACTIONS(1273), - [anon_sym___forceinline] = ACTIONS(1273), - [anon_sym_thread_local] = ACTIONS(1273), - [anon_sym___thread] = ACTIONS(1273), - [anon_sym_const] = ACTIONS(1273), - [anon_sym_constexpr] = ACTIONS(1273), - [anon_sym_volatile] = ACTIONS(1273), - [anon_sym_restrict] = ACTIONS(1273), - [anon_sym___restrict__] = ACTIONS(1273), - [anon_sym__Atomic] = ACTIONS(1273), - [anon_sym__Noreturn] = ACTIONS(1273), - [anon_sym_noreturn] = ACTIONS(1273), - [anon_sym_alignas] = ACTIONS(1273), - [anon_sym__Alignas] = ACTIONS(1273), - [sym_primitive_type] = ACTIONS(1273), - [anon_sym_enum] = ACTIONS(1273), - [anon_sym_struct] = ACTIONS(1273), - [anon_sym_union] = ACTIONS(1273), - [anon_sym_if] = ACTIONS(1273), - [anon_sym_switch] = ACTIONS(1273), - [anon_sym_case] = ACTIONS(1273), - [anon_sym_default] = ACTIONS(1273), - [anon_sym_while] = ACTIONS(1273), - [anon_sym_do] = ACTIONS(1273), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_return] = ACTIONS(1273), - [anon_sym_break] = ACTIONS(1273), - [anon_sym_continue] = ACTIONS(1273), - [anon_sym_goto] = ACTIONS(1273), - [anon_sym___try] = ACTIONS(1273), - [anon_sym___leave] = ACTIONS(1273), - [anon_sym_DASH_DASH] = ACTIONS(1275), - [anon_sym_PLUS_PLUS] = ACTIONS(1275), - [anon_sym_sizeof] = ACTIONS(1273), - [anon_sym___alignof__] = ACTIONS(1273), - [anon_sym___alignof] = ACTIONS(1273), - [anon_sym__alignof] = ACTIONS(1273), - [anon_sym_alignof] = ACTIONS(1273), - [anon_sym__Alignof] = ACTIONS(1273), - [anon_sym_offsetof] = ACTIONS(1273), - [anon_sym__Generic] = ACTIONS(1273), - [anon_sym_asm] = ACTIONS(1273), - [anon_sym___asm__] = ACTIONS(1273), - [sym_number_literal] = ACTIONS(1275), - [anon_sym_L_SQUOTE] = ACTIONS(1275), - [anon_sym_u_SQUOTE] = ACTIONS(1275), - [anon_sym_U_SQUOTE] = ACTIONS(1275), - [anon_sym_u8_SQUOTE] = ACTIONS(1275), - [anon_sym_SQUOTE] = ACTIONS(1275), - [anon_sym_L_DQUOTE] = ACTIONS(1275), - [anon_sym_u_DQUOTE] = ACTIONS(1275), - [anon_sym_U_DQUOTE] = ACTIONS(1275), - [anon_sym_u8_DQUOTE] = ACTIONS(1275), - [anon_sym_DQUOTE] = ACTIONS(1275), - [sym_true] = ACTIONS(1273), - [sym_false] = ACTIONS(1273), - [anon_sym_NULL] = ACTIONS(1273), - [anon_sym_nullptr] = ACTIONS(1273), + [308] = { + [sym_identifier] = ACTIONS(1333), + [aux_sym_preproc_include_token1] = ACTIONS(1333), + [aux_sym_preproc_def_token1] = ACTIONS(1333), + [aux_sym_preproc_if_token1] = ACTIONS(1333), + [aux_sym_preproc_if_token2] = ACTIONS(1333), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1333), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1333), + [sym_preproc_directive] = ACTIONS(1333), + [anon_sym_LPAREN2] = ACTIONS(1335), + [anon_sym_BANG] = ACTIONS(1335), + [anon_sym_TILDE] = ACTIONS(1335), + [anon_sym_DASH] = ACTIONS(1333), + [anon_sym_PLUS] = ACTIONS(1333), + [anon_sym_STAR] = ACTIONS(1335), + [anon_sym_AMP] = ACTIONS(1335), + [anon_sym_SEMI] = ACTIONS(1335), + [anon_sym___extension__] = ACTIONS(1333), + [anon_sym_typedef] = ACTIONS(1333), + [anon_sym_extern] = ACTIONS(1333), + [anon_sym___attribute__] = ACTIONS(1333), + [anon_sym___scanf] = ACTIONS(1333), + [anon_sym___printf] = ACTIONS(1333), + [anon_sym___read_mostly] = ACTIONS(1333), + [anon_sym___must_hold] = ACTIONS(1333), + [anon_sym___ro_after_init] = ACTIONS(1333), + [anon_sym___noreturn] = ACTIONS(1333), + [anon_sym___cold] = ACTIONS(1333), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1335), + [anon_sym___declspec] = ACTIONS(1333), + [anon_sym___init] = ACTIONS(1333), + [anon_sym___exit] = ACTIONS(1333), + [anon_sym___cdecl] = ACTIONS(1333), + [anon_sym___clrcall] = ACTIONS(1333), + [anon_sym___stdcall] = ACTIONS(1333), + [anon_sym___fastcall] = ACTIONS(1333), + [anon_sym___thiscall] = ACTIONS(1333), + [anon_sym___vectorcall] = ACTIONS(1333), + [anon_sym_LBRACE] = ACTIONS(1335), + [anon_sym_signed] = ACTIONS(1333), + [anon_sym_unsigned] = ACTIONS(1333), + [anon_sym_long] = ACTIONS(1333), + [anon_sym_short] = ACTIONS(1333), + [anon_sym_static] = ACTIONS(1333), + [anon_sym_auto] = ACTIONS(1333), + [anon_sym_register] = ACTIONS(1333), + [anon_sym_inline] = ACTIONS(1333), + [anon_sym___inline] = ACTIONS(1333), + [anon_sym___inline__] = ACTIONS(1333), + [anon_sym___forceinline] = ACTIONS(1333), + [anon_sym_thread_local] = ACTIONS(1333), + [anon_sym___thread] = ACTIONS(1333), + [anon_sym_const] = ACTIONS(1333), + [anon_sym_constexpr] = ACTIONS(1333), + [anon_sym_volatile] = ACTIONS(1333), + [anon_sym_restrict] = ACTIONS(1333), + [anon_sym___restrict__] = ACTIONS(1333), + [anon_sym__Atomic] = ACTIONS(1333), + [anon_sym__Noreturn] = ACTIONS(1333), + [anon_sym_noreturn] = ACTIONS(1333), + [anon_sym_alignas] = ACTIONS(1333), + [anon_sym__Alignas] = ACTIONS(1333), + [sym_primitive_type] = ACTIONS(1333), + [anon_sym_enum] = ACTIONS(1333), + [anon_sym_struct] = ACTIONS(1333), + [anon_sym_union] = ACTIONS(1333), + [anon_sym_if] = ACTIONS(1333), + [anon_sym_switch] = ACTIONS(1333), + [anon_sym_case] = ACTIONS(1333), + [anon_sym_default] = ACTIONS(1333), + [anon_sym_while] = ACTIONS(1333), + [anon_sym_do] = ACTIONS(1333), + [anon_sym_for] = ACTIONS(1333), + [anon_sym_return] = ACTIONS(1333), + [anon_sym_break] = ACTIONS(1333), + [anon_sym_continue] = ACTIONS(1333), + [anon_sym_goto] = ACTIONS(1333), + [anon_sym___try] = ACTIONS(1333), + [anon_sym___leave] = ACTIONS(1333), + [anon_sym_DASH_DASH] = ACTIONS(1335), + [anon_sym_PLUS_PLUS] = ACTIONS(1335), + [anon_sym_sizeof] = ACTIONS(1333), + [anon_sym___alignof__] = ACTIONS(1333), + [anon_sym___alignof] = ACTIONS(1333), + [anon_sym__alignof] = ACTIONS(1333), + [anon_sym_alignof] = ACTIONS(1333), + [anon_sym__Alignof] = ACTIONS(1333), + [anon_sym_offsetof] = ACTIONS(1333), + [anon_sym__Generic] = ACTIONS(1333), + [anon_sym_asm] = ACTIONS(1333), + [anon_sym___asm__] = ACTIONS(1333), + [sym_number_literal] = ACTIONS(1335), + [anon_sym_L_SQUOTE] = ACTIONS(1335), + [anon_sym_u_SQUOTE] = ACTIONS(1335), + [anon_sym_U_SQUOTE] = ACTIONS(1335), + [anon_sym_u8_SQUOTE] = ACTIONS(1335), + [anon_sym_SQUOTE] = ACTIONS(1335), + [anon_sym_L_DQUOTE] = ACTIONS(1335), + [anon_sym_u_DQUOTE] = ACTIONS(1335), + [anon_sym_U_DQUOTE] = ACTIONS(1335), + [anon_sym_u8_DQUOTE] = ACTIONS(1335), + [anon_sym_DQUOTE] = ACTIONS(1335), + [sym_true] = ACTIONS(1333), + [sym_false] = ACTIONS(1333), + [anon_sym_NULL] = ACTIONS(1333), + [anon_sym_nullptr] = ACTIONS(1333), [sym_comment] = ACTIONS(3), }, - [269] = { - [sym_identifier] = ACTIONS(1351), - [aux_sym_preproc_include_token1] = ACTIONS(1351), - [aux_sym_preproc_def_token1] = ACTIONS(1351), - [aux_sym_preproc_if_token1] = ACTIONS(1351), - [aux_sym_preproc_if_token2] = ACTIONS(1351), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1351), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1351), - [sym_preproc_directive] = ACTIONS(1351), - [anon_sym_LPAREN2] = ACTIONS(1353), - [anon_sym_BANG] = ACTIONS(1353), - [anon_sym_TILDE] = ACTIONS(1353), - [anon_sym_DASH] = ACTIONS(1351), - [anon_sym_PLUS] = ACTIONS(1351), - [anon_sym_STAR] = ACTIONS(1353), - [anon_sym_AMP] = ACTIONS(1353), - [anon_sym_SEMI] = ACTIONS(1353), - [anon_sym___extension__] = ACTIONS(1351), - [anon_sym_typedef] = ACTIONS(1351), - [anon_sym_extern] = ACTIONS(1351), - [anon_sym___attribute__] = ACTIONS(1351), - [anon_sym___scanf] = ACTIONS(1351), - [anon_sym___printf] = ACTIONS(1351), - [anon_sym___read_mostly] = ACTIONS(1351), - [anon_sym___must_hold] = ACTIONS(1351), - [anon_sym___ro_after_init] = ACTIONS(1351), - [anon_sym___init] = ACTIONS(1351), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1353), - [anon_sym___declspec] = ACTIONS(1351), - [anon_sym___cdecl] = ACTIONS(1351), - [anon_sym___clrcall] = ACTIONS(1351), - [anon_sym___stdcall] = ACTIONS(1351), - [anon_sym___fastcall] = ACTIONS(1351), - [anon_sym___thiscall] = ACTIONS(1351), - [anon_sym___vectorcall] = ACTIONS(1351), - [anon_sym_LBRACE] = ACTIONS(1353), - [anon_sym_signed] = ACTIONS(1351), - [anon_sym_unsigned] = ACTIONS(1351), - [anon_sym_long] = ACTIONS(1351), - [anon_sym_short] = ACTIONS(1351), - [anon_sym_static] = ACTIONS(1351), - [anon_sym_auto] = ACTIONS(1351), - [anon_sym_register] = ACTIONS(1351), - [anon_sym_inline] = ACTIONS(1351), - [anon_sym___inline] = ACTIONS(1351), - [anon_sym___inline__] = ACTIONS(1351), - [anon_sym___forceinline] = ACTIONS(1351), - [anon_sym_thread_local] = ACTIONS(1351), - [anon_sym___thread] = ACTIONS(1351), - [anon_sym_const] = ACTIONS(1351), - [anon_sym_constexpr] = ACTIONS(1351), - [anon_sym_volatile] = ACTIONS(1351), - [anon_sym_restrict] = ACTIONS(1351), - [anon_sym___restrict__] = ACTIONS(1351), - [anon_sym__Atomic] = ACTIONS(1351), - [anon_sym__Noreturn] = ACTIONS(1351), - [anon_sym_noreturn] = ACTIONS(1351), - [anon_sym_alignas] = ACTIONS(1351), - [anon_sym__Alignas] = ACTIONS(1351), - [sym_primitive_type] = ACTIONS(1351), - [anon_sym_enum] = ACTIONS(1351), - [anon_sym_struct] = ACTIONS(1351), - [anon_sym_union] = ACTIONS(1351), - [anon_sym_if] = ACTIONS(1351), - [anon_sym_switch] = ACTIONS(1351), - [anon_sym_case] = ACTIONS(1351), - [anon_sym_default] = ACTIONS(1351), - [anon_sym_while] = ACTIONS(1351), - [anon_sym_do] = ACTIONS(1351), - [anon_sym_for] = ACTIONS(1351), - [anon_sym_return] = ACTIONS(1351), - [anon_sym_break] = ACTIONS(1351), - [anon_sym_continue] = ACTIONS(1351), - [anon_sym_goto] = ACTIONS(1351), - [anon_sym___try] = ACTIONS(1351), - [anon_sym___leave] = ACTIONS(1351), - [anon_sym_DASH_DASH] = ACTIONS(1353), - [anon_sym_PLUS_PLUS] = ACTIONS(1353), - [anon_sym_sizeof] = ACTIONS(1351), - [anon_sym___alignof__] = ACTIONS(1351), - [anon_sym___alignof] = ACTIONS(1351), - [anon_sym__alignof] = ACTIONS(1351), - [anon_sym_alignof] = ACTIONS(1351), - [anon_sym__Alignof] = ACTIONS(1351), - [anon_sym_offsetof] = ACTIONS(1351), - [anon_sym__Generic] = ACTIONS(1351), - [anon_sym_asm] = ACTIONS(1351), - [anon_sym___asm__] = ACTIONS(1351), - [sym_number_literal] = ACTIONS(1353), - [anon_sym_L_SQUOTE] = ACTIONS(1353), - [anon_sym_u_SQUOTE] = ACTIONS(1353), - [anon_sym_U_SQUOTE] = ACTIONS(1353), - [anon_sym_u8_SQUOTE] = ACTIONS(1353), - [anon_sym_SQUOTE] = ACTIONS(1353), - [anon_sym_L_DQUOTE] = ACTIONS(1353), - [anon_sym_u_DQUOTE] = ACTIONS(1353), - [anon_sym_U_DQUOTE] = ACTIONS(1353), - [anon_sym_u8_DQUOTE] = ACTIONS(1353), - [anon_sym_DQUOTE] = ACTIONS(1353), - [sym_true] = ACTIONS(1351), - [sym_false] = ACTIONS(1351), - [anon_sym_NULL] = ACTIONS(1351), - [anon_sym_nullptr] = ACTIONS(1351), + [309] = { + [sym_identifier] = ACTIONS(1357), + [aux_sym_preproc_include_token1] = ACTIONS(1357), + [aux_sym_preproc_def_token1] = ACTIONS(1357), + [aux_sym_preproc_if_token1] = ACTIONS(1357), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1357), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1357), + [sym_preproc_directive] = ACTIONS(1357), + [anon_sym_LPAREN2] = ACTIONS(1359), + [anon_sym_BANG] = ACTIONS(1359), + [anon_sym_TILDE] = ACTIONS(1359), + [anon_sym_DASH] = ACTIONS(1357), + [anon_sym_PLUS] = ACTIONS(1357), + [anon_sym_STAR] = ACTIONS(1359), + [anon_sym_AMP] = ACTIONS(1359), + [anon_sym_SEMI] = ACTIONS(1359), + [anon_sym___extension__] = ACTIONS(1357), + [anon_sym_typedef] = ACTIONS(1357), + [anon_sym_extern] = ACTIONS(1357), + [anon_sym___attribute__] = ACTIONS(1357), + [anon_sym___scanf] = ACTIONS(1357), + [anon_sym___printf] = ACTIONS(1357), + [anon_sym___read_mostly] = ACTIONS(1357), + [anon_sym___must_hold] = ACTIONS(1357), + [anon_sym___ro_after_init] = ACTIONS(1357), + [anon_sym___noreturn] = ACTIONS(1357), + [anon_sym___cold] = ACTIONS(1357), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1359), + [anon_sym___declspec] = ACTIONS(1357), + [anon_sym___init] = ACTIONS(1357), + [anon_sym___exit] = ACTIONS(1357), + [anon_sym___cdecl] = ACTIONS(1357), + [anon_sym___clrcall] = ACTIONS(1357), + [anon_sym___stdcall] = ACTIONS(1357), + [anon_sym___fastcall] = ACTIONS(1357), + [anon_sym___thiscall] = ACTIONS(1357), + [anon_sym___vectorcall] = ACTIONS(1357), + [anon_sym_LBRACE] = ACTIONS(1359), + [anon_sym_RBRACE] = ACTIONS(1359), + [anon_sym_signed] = ACTIONS(1357), + [anon_sym_unsigned] = ACTIONS(1357), + [anon_sym_long] = ACTIONS(1357), + [anon_sym_short] = ACTIONS(1357), + [anon_sym_static] = ACTIONS(1357), + [anon_sym_auto] = ACTIONS(1357), + [anon_sym_register] = ACTIONS(1357), + [anon_sym_inline] = ACTIONS(1357), + [anon_sym___inline] = ACTIONS(1357), + [anon_sym___inline__] = ACTIONS(1357), + [anon_sym___forceinline] = ACTIONS(1357), + [anon_sym_thread_local] = ACTIONS(1357), + [anon_sym___thread] = ACTIONS(1357), + [anon_sym_const] = ACTIONS(1357), + [anon_sym_constexpr] = ACTIONS(1357), + [anon_sym_volatile] = ACTIONS(1357), + [anon_sym_restrict] = ACTIONS(1357), + [anon_sym___restrict__] = ACTIONS(1357), + [anon_sym__Atomic] = ACTIONS(1357), + [anon_sym__Noreturn] = ACTIONS(1357), + [anon_sym_noreturn] = ACTIONS(1357), + [anon_sym_alignas] = ACTIONS(1357), + [anon_sym__Alignas] = ACTIONS(1357), + [sym_primitive_type] = ACTIONS(1357), + [anon_sym_enum] = ACTIONS(1357), + [anon_sym_struct] = ACTIONS(1357), + [anon_sym_union] = ACTIONS(1357), + [anon_sym_if] = ACTIONS(1357), + [anon_sym_switch] = ACTIONS(1357), + [anon_sym_case] = ACTIONS(1357), + [anon_sym_default] = ACTIONS(1357), + [anon_sym_while] = ACTIONS(1357), + [anon_sym_do] = ACTIONS(1357), + [anon_sym_for] = ACTIONS(1357), + [anon_sym_return] = ACTIONS(1357), + [anon_sym_break] = ACTIONS(1357), + [anon_sym_continue] = ACTIONS(1357), + [anon_sym_goto] = ACTIONS(1357), + [anon_sym___try] = ACTIONS(1357), + [anon_sym___leave] = ACTIONS(1357), + [anon_sym_DASH_DASH] = ACTIONS(1359), + [anon_sym_PLUS_PLUS] = ACTIONS(1359), + [anon_sym_sizeof] = ACTIONS(1357), + [anon_sym___alignof__] = ACTIONS(1357), + [anon_sym___alignof] = ACTIONS(1357), + [anon_sym__alignof] = ACTIONS(1357), + [anon_sym_alignof] = ACTIONS(1357), + [anon_sym__Alignof] = ACTIONS(1357), + [anon_sym_offsetof] = ACTIONS(1357), + [anon_sym__Generic] = ACTIONS(1357), + [anon_sym_asm] = ACTIONS(1357), + [anon_sym___asm__] = ACTIONS(1357), + [sym_number_literal] = ACTIONS(1359), + [anon_sym_L_SQUOTE] = ACTIONS(1359), + [anon_sym_u_SQUOTE] = ACTIONS(1359), + [anon_sym_U_SQUOTE] = ACTIONS(1359), + [anon_sym_u8_SQUOTE] = ACTIONS(1359), + [anon_sym_SQUOTE] = ACTIONS(1359), + [anon_sym_L_DQUOTE] = ACTIONS(1359), + [anon_sym_u_DQUOTE] = ACTIONS(1359), + [anon_sym_U_DQUOTE] = ACTIONS(1359), + [anon_sym_u8_DQUOTE] = ACTIONS(1359), + [anon_sym_DQUOTE] = ACTIONS(1359), + [sym_true] = ACTIONS(1357), + [sym_false] = ACTIONS(1357), + [anon_sym_NULL] = ACTIONS(1357), + [anon_sym_nullptr] = ACTIONS(1357), [sym_comment] = ACTIONS(3), }, - [270] = { - [sym_identifier] = ACTIONS(1379), - [aux_sym_preproc_include_token1] = ACTIONS(1379), - [aux_sym_preproc_def_token1] = ACTIONS(1379), - [aux_sym_preproc_if_token1] = ACTIONS(1379), - [aux_sym_preproc_if_token2] = ACTIONS(1379), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1379), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1379), - [sym_preproc_directive] = ACTIONS(1379), - [anon_sym_LPAREN2] = ACTIONS(1381), - [anon_sym_BANG] = ACTIONS(1381), - [anon_sym_TILDE] = ACTIONS(1381), - [anon_sym_DASH] = ACTIONS(1379), - [anon_sym_PLUS] = ACTIONS(1379), - [anon_sym_STAR] = ACTIONS(1381), - [anon_sym_AMP] = ACTIONS(1381), - [anon_sym_SEMI] = ACTIONS(1381), - [anon_sym___extension__] = ACTIONS(1379), - [anon_sym_typedef] = ACTIONS(1379), - [anon_sym_extern] = ACTIONS(1379), - [anon_sym___attribute__] = ACTIONS(1379), - [anon_sym___scanf] = ACTIONS(1379), - [anon_sym___printf] = ACTIONS(1379), - [anon_sym___read_mostly] = ACTIONS(1379), - [anon_sym___must_hold] = ACTIONS(1379), - [anon_sym___ro_after_init] = ACTIONS(1379), - [anon_sym___init] = ACTIONS(1379), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1381), - [anon_sym___declspec] = ACTIONS(1379), - [anon_sym___cdecl] = ACTIONS(1379), - [anon_sym___clrcall] = ACTIONS(1379), - [anon_sym___stdcall] = ACTIONS(1379), - [anon_sym___fastcall] = ACTIONS(1379), - [anon_sym___thiscall] = ACTIONS(1379), - [anon_sym___vectorcall] = ACTIONS(1379), - [anon_sym_LBRACE] = ACTIONS(1381), - [anon_sym_signed] = ACTIONS(1379), - [anon_sym_unsigned] = ACTIONS(1379), - [anon_sym_long] = ACTIONS(1379), - [anon_sym_short] = ACTIONS(1379), - [anon_sym_static] = ACTIONS(1379), - [anon_sym_auto] = ACTIONS(1379), - [anon_sym_register] = ACTIONS(1379), - [anon_sym_inline] = ACTIONS(1379), - [anon_sym___inline] = ACTIONS(1379), - [anon_sym___inline__] = ACTIONS(1379), - [anon_sym___forceinline] = ACTIONS(1379), - [anon_sym_thread_local] = ACTIONS(1379), - [anon_sym___thread] = ACTIONS(1379), - [anon_sym_const] = ACTIONS(1379), - [anon_sym_constexpr] = ACTIONS(1379), - [anon_sym_volatile] = ACTIONS(1379), - [anon_sym_restrict] = ACTIONS(1379), - [anon_sym___restrict__] = ACTIONS(1379), - [anon_sym__Atomic] = ACTIONS(1379), - [anon_sym__Noreturn] = ACTIONS(1379), - [anon_sym_noreturn] = ACTIONS(1379), - [anon_sym_alignas] = ACTIONS(1379), - [anon_sym__Alignas] = ACTIONS(1379), - [sym_primitive_type] = ACTIONS(1379), - [anon_sym_enum] = ACTIONS(1379), - [anon_sym_struct] = ACTIONS(1379), - [anon_sym_union] = ACTIONS(1379), - [anon_sym_if] = ACTIONS(1379), - [anon_sym_switch] = ACTIONS(1379), - [anon_sym_case] = ACTIONS(1379), - [anon_sym_default] = ACTIONS(1379), - [anon_sym_while] = ACTIONS(1379), - [anon_sym_do] = ACTIONS(1379), - [anon_sym_for] = ACTIONS(1379), - [anon_sym_return] = ACTIONS(1379), - [anon_sym_break] = ACTIONS(1379), - [anon_sym_continue] = ACTIONS(1379), - [anon_sym_goto] = ACTIONS(1379), - [anon_sym___try] = ACTIONS(1379), - [anon_sym___leave] = ACTIONS(1379), - [anon_sym_DASH_DASH] = ACTIONS(1381), - [anon_sym_PLUS_PLUS] = ACTIONS(1381), - [anon_sym_sizeof] = ACTIONS(1379), - [anon_sym___alignof__] = ACTIONS(1379), - [anon_sym___alignof] = ACTIONS(1379), - [anon_sym__alignof] = ACTIONS(1379), - [anon_sym_alignof] = ACTIONS(1379), - [anon_sym__Alignof] = ACTIONS(1379), - [anon_sym_offsetof] = ACTIONS(1379), - [anon_sym__Generic] = ACTIONS(1379), - [anon_sym_asm] = ACTIONS(1379), - [anon_sym___asm__] = ACTIONS(1379), - [sym_number_literal] = ACTIONS(1381), - [anon_sym_L_SQUOTE] = ACTIONS(1381), - [anon_sym_u_SQUOTE] = ACTIONS(1381), - [anon_sym_U_SQUOTE] = ACTIONS(1381), - [anon_sym_u8_SQUOTE] = ACTIONS(1381), - [anon_sym_SQUOTE] = ACTIONS(1381), - [anon_sym_L_DQUOTE] = ACTIONS(1381), - [anon_sym_u_DQUOTE] = ACTIONS(1381), - [anon_sym_U_DQUOTE] = ACTIONS(1381), - [anon_sym_u8_DQUOTE] = ACTIONS(1381), - [anon_sym_DQUOTE] = ACTIONS(1381), - [sym_true] = ACTIONS(1379), - [sym_false] = ACTIONS(1379), - [anon_sym_NULL] = ACTIONS(1379), - [anon_sym_nullptr] = ACTIONS(1379), + [310] = { + [sym_identifier] = ACTIONS(1401), + [aux_sym_preproc_include_token1] = ACTIONS(1401), + [aux_sym_preproc_def_token1] = ACTIONS(1401), + [aux_sym_preproc_if_token1] = ACTIONS(1401), + [aux_sym_preproc_if_token2] = ACTIONS(1401), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1401), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1401), + [sym_preproc_directive] = ACTIONS(1401), + [anon_sym_LPAREN2] = ACTIONS(1404), + [anon_sym_BANG] = ACTIONS(1404), + [anon_sym_TILDE] = ACTIONS(1404), + [anon_sym_DASH] = ACTIONS(1401), + [anon_sym_PLUS] = ACTIONS(1401), + [anon_sym_STAR] = ACTIONS(1404), + [anon_sym_AMP] = ACTIONS(1404), + [anon_sym_SEMI] = ACTIONS(1404), + [anon_sym___extension__] = ACTIONS(1401), + [anon_sym_typedef] = ACTIONS(1401), + [anon_sym_extern] = ACTIONS(1401), + [anon_sym___attribute__] = ACTIONS(1401), + [anon_sym___scanf] = ACTIONS(1401), + [anon_sym___printf] = ACTIONS(1401), + [anon_sym___read_mostly] = ACTIONS(1401), + [anon_sym___must_hold] = ACTIONS(1401), + [anon_sym___ro_after_init] = ACTIONS(1401), + [anon_sym___noreturn] = ACTIONS(1401), + [anon_sym___cold] = ACTIONS(1401), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1404), + [anon_sym___declspec] = ACTIONS(1401), + [anon_sym___init] = ACTIONS(1401), + [anon_sym___exit] = ACTIONS(1401), + [anon_sym___cdecl] = ACTIONS(1401), + [anon_sym___clrcall] = ACTIONS(1401), + [anon_sym___stdcall] = ACTIONS(1401), + [anon_sym___fastcall] = ACTIONS(1401), + [anon_sym___thiscall] = ACTIONS(1401), + [anon_sym___vectorcall] = ACTIONS(1401), + [anon_sym_LBRACE] = ACTIONS(1404), + [anon_sym_signed] = ACTIONS(1401), + [anon_sym_unsigned] = ACTIONS(1401), + [anon_sym_long] = ACTIONS(1401), + [anon_sym_short] = ACTIONS(1401), + [anon_sym_static] = ACTIONS(1401), + [anon_sym_auto] = ACTIONS(1401), + [anon_sym_register] = ACTIONS(1401), + [anon_sym_inline] = ACTIONS(1401), + [anon_sym___inline] = ACTIONS(1401), + [anon_sym___inline__] = ACTIONS(1401), + [anon_sym___forceinline] = ACTIONS(1401), + [anon_sym_thread_local] = ACTIONS(1401), + [anon_sym___thread] = ACTIONS(1401), + [anon_sym_const] = ACTIONS(1401), + [anon_sym_constexpr] = ACTIONS(1401), + [anon_sym_volatile] = ACTIONS(1401), + [anon_sym_restrict] = ACTIONS(1401), + [anon_sym___restrict__] = ACTIONS(1401), + [anon_sym__Atomic] = ACTIONS(1401), + [anon_sym__Noreturn] = ACTIONS(1401), + [anon_sym_noreturn] = ACTIONS(1401), + [anon_sym_alignas] = ACTIONS(1401), + [anon_sym__Alignas] = ACTIONS(1401), + [sym_primitive_type] = ACTIONS(1401), + [anon_sym_enum] = ACTIONS(1401), + [anon_sym_struct] = ACTIONS(1401), + [anon_sym_union] = ACTIONS(1401), + [anon_sym_if] = ACTIONS(1401), + [anon_sym_switch] = ACTIONS(1401), + [anon_sym_case] = ACTIONS(1401), + [anon_sym_default] = ACTIONS(1401), + [anon_sym_while] = ACTIONS(1401), + [anon_sym_do] = ACTIONS(1401), + [anon_sym_for] = ACTIONS(1401), + [anon_sym_return] = ACTIONS(1401), + [anon_sym_break] = ACTIONS(1401), + [anon_sym_continue] = ACTIONS(1401), + [anon_sym_goto] = ACTIONS(1401), + [anon_sym___try] = ACTIONS(1401), + [anon_sym___leave] = ACTIONS(1401), + [anon_sym_DASH_DASH] = ACTIONS(1404), + [anon_sym_PLUS_PLUS] = ACTIONS(1404), + [anon_sym_sizeof] = ACTIONS(1401), + [anon_sym___alignof__] = ACTIONS(1401), + [anon_sym___alignof] = ACTIONS(1401), + [anon_sym__alignof] = ACTIONS(1401), + [anon_sym_alignof] = ACTIONS(1401), + [anon_sym__Alignof] = ACTIONS(1401), + [anon_sym_offsetof] = ACTIONS(1401), + [anon_sym__Generic] = ACTIONS(1401), + [anon_sym_asm] = ACTIONS(1401), + [anon_sym___asm__] = ACTIONS(1401), + [sym_number_literal] = ACTIONS(1404), + [anon_sym_L_SQUOTE] = ACTIONS(1404), + [anon_sym_u_SQUOTE] = ACTIONS(1404), + [anon_sym_U_SQUOTE] = ACTIONS(1404), + [anon_sym_u8_SQUOTE] = ACTIONS(1404), + [anon_sym_SQUOTE] = ACTIONS(1404), + [anon_sym_L_DQUOTE] = ACTIONS(1404), + [anon_sym_u_DQUOTE] = ACTIONS(1404), + [anon_sym_U_DQUOTE] = ACTIONS(1404), + [anon_sym_u8_DQUOTE] = ACTIONS(1404), + [anon_sym_DQUOTE] = ACTIONS(1404), + [sym_true] = ACTIONS(1401), + [sym_false] = ACTIONS(1401), + [anon_sym_NULL] = ACTIONS(1401), + [anon_sym_nullptr] = ACTIONS(1401), [sym_comment] = ACTIONS(3), }, - [271] = { - [sym_identifier] = ACTIONS(1347), - [aux_sym_preproc_include_token1] = ACTIONS(1347), - [aux_sym_preproc_def_token1] = ACTIONS(1347), - [aux_sym_preproc_if_token1] = ACTIONS(1347), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1347), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1347), - [sym_preproc_directive] = ACTIONS(1347), - [anon_sym_LPAREN2] = ACTIONS(1349), - [anon_sym_BANG] = ACTIONS(1349), - [anon_sym_TILDE] = ACTIONS(1349), - [anon_sym_DASH] = ACTIONS(1347), - [anon_sym_PLUS] = ACTIONS(1347), - [anon_sym_STAR] = ACTIONS(1349), - [anon_sym_AMP] = ACTIONS(1349), - [anon_sym_SEMI] = ACTIONS(1349), - [anon_sym___extension__] = ACTIONS(1347), - [anon_sym_typedef] = ACTIONS(1347), - [anon_sym_extern] = ACTIONS(1347), - [anon_sym___attribute__] = ACTIONS(1347), - [anon_sym___scanf] = ACTIONS(1347), - [anon_sym___printf] = ACTIONS(1347), - [anon_sym___read_mostly] = ACTIONS(1347), - [anon_sym___must_hold] = ACTIONS(1347), - [anon_sym___ro_after_init] = ACTIONS(1347), - [anon_sym___init] = ACTIONS(1347), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1349), - [anon_sym___declspec] = ACTIONS(1347), - [anon_sym___cdecl] = ACTIONS(1347), - [anon_sym___clrcall] = ACTIONS(1347), - [anon_sym___stdcall] = ACTIONS(1347), - [anon_sym___fastcall] = ACTIONS(1347), - [anon_sym___thiscall] = ACTIONS(1347), - [anon_sym___vectorcall] = ACTIONS(1347), - [anon_sym_LBRACE] = ACTIONS(1349), - [anon_sym_RBRACE] = ACTIONS(1349), - [anon_sym_signed] = ACTIONS(1347), - [anon_sym_unsigned] = ACTIONS(1347), - [anon_sym_long] = ACTIONS(1347), - [anon_sym_short] = ACTIONS(1347), - [anon_sym_static] = ACTIONS(1347), - [anon_sym_auto] = ACTIONS(1347), - [anon_sym_register] = ACTIONS(1347), - [anon_sym_inline] = ACTIONS(1347), - [anon_sym___inline] = ACTIONS(1347), - [anon_sym___inline__] = ACTIONS(1347), - [anon_sym___forceinline] = ACTIONS(1347), - [anon_sym_thread_local] = ACTIONS(1347), - [anon_sym___thread] = ACTIONS(1347), - [anon_sym_const] = ACTIONS(1347), - [anon_sym_constexpr] = ACTIONS(1347), - [anon_sym_volatile] = ACTIONS(1347), - [anon_sym_restrict] = ACTIONS(1347), - [anon_sym___restrict__] = ACTIONS(1347), - [anon_sym__Atomic] = ACTIONS(1347), - [anon_sym__Noreturn] = ACTIONS(1347), - [anon_sym_noreturn] = ACTIONS(1347), - [anon_sym_alignas] = ACTIONS(1347), - [anon_sym__Alignas] = ACTIONS(1347), - [sym_primitive_type] = ACTIONS(1347), - [anon_sym_enum] = ACTIONS(1347), - [anon_sym_struct] = ACTIONS(1347), - [anon_sym_union] = ACTIONS(1347), - [anon_sym_if] = ACTIONS(1347), - [anon_sym_switch] = ACTIONS(1347), - [anon_sym_case] = ACTIONS(1347), - [anon_sym_default] = ACTIONS(1347), - [anon_sym_while] = ACTIONS(1347), - [anon_sym_do] = ACTIONS(1347), - [anon_sym_for] = ACTIONS(1347), - [anon_sym_return] = ACTIONS(1347), - [anon_sym_break] = ACTIONS(1347), - [anon_sym_continue] = ACTIONS(1347), - [anon_sym_goto] = ACTIONS(1347), - [anon_sym___try] = ACTIONS(1347), - [anon_sym___leave] = ACTIONS(1347), - [anon_sym_DASH_DASH] = ACTIONS(1349), - [anon_sym_PLUS_PLUS] = ACTIONS(1349), - [anon_sym_sizeof] = ACTIONS(1347), - [anon_sym___alignof__] = ACTIONS(1347), - [anon_sym___alignof] = ACTIONS(1347), - [anon_sym__alignof] = ACTIONS(1347), - [anon_sym_alignof] = ACTIONS(1347), - [anon_sym__Alignof] = ACTIONS(1347), - [anon_sym_offsetof] = ACTIONS(1347), - [anon_sym__Generic] = ACTIONS(1347), - [anon_sym_asm] = ACTIONS(1347), - [anon_sym___asm__] = ACTIONS(1347), - [sym_number_literal] = ACTIONS(1349), - [anon_sym_L_SQUOTE] = ACTIONS(1349), - [anon_sym_u_SQUOTE] = ACTIONS(1349), - [anon_sym_U_SQUOTE] = ACTIONS(1349), - [anon_sym_u8_SQUOTE] = ACTIONS(1349), - [anon_sym_SQUOTE] = ACTIONS(1349), - [anon_sym_L_DQUOTE] = ACTIONS(1349), - [anon_sym_u_DQUOTE] = ACTIONS(1349), - [anon_sym_U_DQUOTE] = ACTIONS(1349), - [anon_sym_u8_DQUOTE] = ACTIONS(1349), - [anon_sym_DQUOTE] = ACTIONS(1349), - [sym_true] = ACTIONS(1347), - [sym_false] = ACTIONS(1347), - [anon_sym_NULL] = ACTIONS(1347), - [anon_sym_nullptr] = ACTIONS(1347), + [311] = { + [sym_identifier] = ACTIONS(1415), + [aux_sym_preproc_include_token1] = ACTIONS(1415), + [aux_sym_preproc_def_token1] = ACTIONS(1415), + [aux_sym_preproc_if_token1] = ACTIONS(1415), + [aux_sym_preproc_if_token2] = ACTIONS(1415), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1415), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1415), + [sym_preproc_directive] = ACTIONS(1415), + [anon_sym_LPAREN2] = ACTIONS(1417), + [anon_sym_BANG] = ACTIONS(1417), + [anon_sym_TILDE] = ACTIONS(1417), + [anon_sym_DASH] = ACTIONS(1415), + [anon_sym_PLUS] = ACTIONS(1415), + [anon_sym_STAR] = ACTIONS(1417), + [anon_sym_AMP] = ACTIONS(1417), + [anon_sym_SEMI] = ACTIONS(1417), + [anon_sym___extension__] = ACTIONS(1415), + [anon_sym_typedef] = ACTIONS(1415), + [anon_sym_extern] = ACTIONS(1415), + [anon_sym___attribute__] = ACTIONS(1415), + [anon_sym___scanf] = ACTIONS(1415), + [anon_sym___printf] = ACTIONS(1415), + [anon_sym___read_mostly] = ACTIONS(1415), + [anon_sym___must_hold] = ACTIONS(1415), + [anon_sym___ro_after_init] = ACTIONS(1415), + [anon_sym___noreturn] = ACTIONS(1415), + [anon_sym___cold] = ACTIONS(1415), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1417), + [anon_sym___declspec] = ACTIONS(1415), + [anon_sym___init] = ACTIONS(1415), + [anon_sym___exit] = ACTIONS(1415), + [anon_sym___cdecl] = ACTIONS(1415), + [anon_sym___clrcall] = ACTIONS(1415), + [anon_sym___stdcall] = ACTIONS(1415), + [anon_sym___fastcall] = ACTIONS(1415), + [anon_sym___thiscall] = ACTIONS(1415), + [anon_sym___vectorcall] = ACTIONS(1415), + [anon_sym_LBRACE] = ACTIONS(1417), + [anon_sym_signed] = ACTIONS(1415), + [anon_sym_unsigned] = ACTIONS(1415), + [anon_sym_long] = ACTIONS(1415), + [anon_sym_short] = ACTIONS(1415), + [anon_sym_static] = ACTIONS(1415), + [anon_sym_auto] = ACTIONS(1415), + [anon_sym_register] = ACTIONS(1415), + [anon_sym_inline] = ACTIONS(1415), + [anon_sym___inline] = ACTIONS(1415), + [anon_sym___inline__] = ACTIONS(1415), + [anon_sym___forceinline] = ACTIONS(1415), + [anon_sym_thread_local] = ACTIONS(1415), + [anon_sym___thread] = ACTIONS(1415), + [anon_sym_const] = ACTIONS(1415), + [anon_sym_constexpr] = ACTIONS(1415), + [anon_sym_volatile] = ACTIONS(1415), + [anon_sym_restrict] = ACTIONS(1415), + [anon_sym___restrict__] = ACTIONS(1415), + [anon_sym__Atomic] = ACTIONS(1415), + [anon_sym__Noreturn] = ACTIONS(1415), + [anon_sym_noreturn] = ACTIONS(1415), + [anon_sym_alignas] = ACTIONS(1415), + [anon_sym__Alignas] = ACTIONS(1415), + [sym_primitive_type] = ACTIONS(1415), + [anon_sym_enum] = ACTIONS(1415), + [anon_sym_struct] = ACTIONS(1415), + [anon_sym_union] = ACTIONS(1415), + [anon_sym_if] = ACTIONS(1415), + [anon_sym_switch] = ACTIONS(1415), + [anon_sym_case] = ACTIONS(1415), + [anon_sym_default] = ACTIONS(1415), + [anon_sym_while] = ACTIONS(1415), + [anon_sym_do] = ACTIONS(1415), + [anon_sym_for] = ACTIONS(1415), + [anon_sym_return] = ACTIONS(1415), + [anon_sym_break] = ACTIONS(1415), + [anon_sym_continue] = ACTIONS(1415), + [anon_sym_goto] = ACTIONS(1415), + [anon_sym___try] = ACTIONS(1415), + [anon_sym___leave] = ACTIONS(1415), + [anon_sym_DASH_DASH] = ACTIONS(1417), + [anon_sym_PLUS_PLUS] = ACTIONS(1417), + [anon_sym_sizeof] = ACTIONS(1415), + [anon_sym___alignof__] = ACTIONS(1415), + [anon_sym___alignof] = ACTIONS(1415), + [anon_sym__alignof] = ACTIONS(1415), + [anon_sym_alignof] = ACTIONS(1415), + [anon_sym__Alignof] = ACTIONS(1415), + [anon_sym_offsetof] = ACTIONS(1415), + [anon_sym__Generic] = ACTIONS(1415), + [anon_sym_asm] = ACTIONS(1415), + [anon_sym___asm__] = ACTIONS(1415), + [sym_number_literal] = ACTIONS(1417), + [anon_sym_L_SQUOTE] = ACTIONS(1417), + [anon_sym_u_SQUOTE] = ACTIONS(1417), + [anon_sym_U_SQUOTE] = ACTIONS(1417), + [anon_sym_u8_SQUOTE] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1417), + [anon_sym_L_DQUOTE] = ACTIONS(1417), + [anon_sym_u_DQUOTE] = ACTIONS(1417), + [anon_sym_U_DQUOTE] = ACTIONS(1417), + [anon_sym_u8_DQUOTE] = ACTIONS(1417), + [anon_sym_DQUOTE] = ACTIONS(1417), + [sym_true] = ACTIONS(1415), + [sym_false] = ACTIONS(1415), + [anon_sym_NULL] = ACTIONS(1415), + [anon_sym_nullptr] = ACTIONS(1415), [sym_comment] = ACTIONS(3), }, - [272] = { - [sym_identifier] = ACTIONS(1277), - [aux_sym_preproc_include_token1] = ACTIONS(1277), - [aux_sym_preproc_def_token1] = ACTIONS(1277), - [aux_sym_preproc_if_token1] = ACTIONS(1277), - [aux_sym_preproc_if_token2] = ACTIONS(1277), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1277), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1277), - [sym_preproc_directive] = ACTIONS(1277), - [anon_sym_LPAREN2] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1279), - [anon_sym_TILDE] = ACTIONS(1279), - [anon_sym_DASH] = ACTIONS(1277), - [anon_sym_PLUS] = ACTIONS(1277), - [anon_sym_STAR] = ACTIONS(1279), - [anon_sym_AMP] = ACTIONS(1279), - [anon_sym_SEMI] = ACTIONS(1279), - [anon_sym___extension__] = ACTIONS(1277), - [anon_sym_typedef] = ACTIONS(1277), - [anon_sym_extern] = ACTIONS(1277), - [anon_sym___attribute__] = ACTIONS(1277), - [anon_sym___scanf] = ACTIONS(1277), - [anon_sym___printf] = ACTIONS(1277), - [anon_sym___read_mostly] = ACTIONS(1277), - [anon_sym___must_hold] = ACTIONS(1277), - [anon_sym___ro_after_init] = ACTIONS(1277), - [anon_sym___init] = ACTIONS(1277), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1279), - [anon_sym___declspec] = ACTIONS(1277), - [anon_sym___cdecl] = ACTIONS(1277), - [anon_sym___clrcall] = ACTIONS(1277), - [anon_sym___stdcall] = ACTIONS(1277), - [anon_sym___fastcall] = ACTIONS(1277), - [anon_sym___thiscall] = ACTIONS(1277), - [anon_sym___vectorcall] = ACTIONS(1277), - [anon_sym_LBRACE] = ACTIONS(1279), - [anon_sym_signed] = ACTIONS(1277), - [anon_sym_unsigned] = ACTIONS(1277), - [anon_sym_long] = ACTIONS(1277), - [anon_sym_short] = ACTIONS(1277), - [anon_sym_static] = ACTIONS(1277), - [anon_sym_auto] = ACTIONS(1277), - [anon_sym_register] = ACTIONS(1277), - [anon_sym_inline] = ACTIONS(1277), - [anon_sym___inline] = ACTIONS(1277), - [anon_sym___inline__] = ACTIONS(1277), - [anon_sym___forceinline] = ACTIONS(1277), - [anon_sym_thread_local] = ACTIONS(1277), - [anon_sym___thread] = ACTIONS(1277), - [anon_sym_const] = ACTIONS(1277), - [anon_sym_constexpr] = ACTIONS(1277), - [anon_sym_volatile] = ACTIONS(1277), - [anon_sym_restrict] = ACTIONS(1277), - [anon_sym___restrict__] = ACTIONS(1277), - [anon_sym__Atomic] = ACTIONS(1277), - [anon_sym__Noreturn] = ACTIONS(1277), - [anon_sym_noreturn] = ACTIONS(1277), - [anon_sym_alignas] = ACTIONS(1277), - [anon_sym__Alignas] = ACTIONS(1277), - [sym_primitive_type] = ACTIONS(1277), - [anon_sym_enum] = ACTIONS(1277), - [anon_sym_struct] = ACTIONS(1277), - [anon_sym_union] = ACTIONS(1277), - [anon_sym_if] = ACTIONS(1277), - [anon_sym_switch] = ACTIONS(1277), - [anon_sym_case] = ACTIONS(1277), - [anon_sym_default] = ACTIONS(1277), - [anon_sym_while] = ACTIONS(1277), - [anon_sym_do] = ACTIONS(1277), - [anon_sym_for] = ACTIONS(1277), - [anon_sym_return] = ACTIONS(1277), - [anon_sym_break] = ACTIONS(1277), - [anon_sym_continue] = ACTIONS(1277), - [anon_sym_goto] = ACTIONS(1277), - [anon_sym___try] = ACTIONS(1277), - [anon_sym___leave] = ACTIONS(1277), - [anon_sym_DASH_DASH] = ACTIONS(1279), - [anon_sym_PLUS_PLUS] = ACTIONS(1279), - [anon_sym_sizeof] = ACTIONS(1277), - [anon_sym___alignof__] = ACTIONS(1277), - [anon_sym___alignof] = ACTIONS(1277), - [anon_sym__alignof] = ACTIONS(1277), - [anon_sym_alignof] = ACTIONS(1277), - [anon_sym__Alignof] = ACTIONS(1277), - [anon_sym_offsetof] = ACTIONS(1277), - [anon_sym__Generic] = ACTIONS(1277), - [anon_sym_asm] = ACTIONS(1277), - [anon_sym___asm__] = ACTIONS(1277), - [sym_number_literal] = ACTIONS(1279), - [anon_sym_L_SQUOTE] = ACTIONS(1279), - [anon_sym_u_SQUOTE] = ACTIONS(1279), - [anon_sym_U_SQUOTE] = ACTIONS(1279), - [anon_sym_u8_SQUOTE] = ACTIONS(1279), - [anon_sym_SQUOTE] = ACTIONS(1279), - [anon_sym_L_DQUOTE] = ACTIONS(1279), - [anon_sym_u_DQUOTE] = ACTIONS(1279), - [anon_sym_U_DQUOTE] = ACTIONS(1279), - [anon_sym_u8_DQUOTE] = ACTIONS(1279), - [anon_sym_DQUOTE] = ACTIONS(1279), - [sym_true] = ACTIONS(1277), - [sym_false] = ACTIONS(1277), - [anon_sym_NULL] = ACTIONS(1277), - [anon_sym_nullptr] = ACTIONS(1277), + [312] = { + [sym_identifier] = ACTIONS(1397), + [aux_sym_preproc_include_token1] = ACTIONS(1397), + [aux_sym_preproc_def_token1] = ACTIONS(1397), + [aux_sym_preproc_if_token1] = ACTIONS(1397), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1397), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1397), + [sym_preproc_directive] = ACTIONS(1397), + [anon_sym_LPAREN2] = ACTIONS(1399), + [anon_sym_BANG] = ACTIONS(1399), + [anon_sym_TILDE] = ACTIONS(1399), + [anon_sym_DASH] = ACTIONS(1397), + [anon_sym_PLUS] = ACTIONS(1397), + [anon_sym_STAR] = ACTIONS(1399), + [anon_sym_AMP] = ACTIONS(1399), + [anon_sym_SEMI] = ACTIONS(1399), + [anon_sym___extension__] = ACTIONS(1397), + [anon_sym_typedef] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1397), + [anon_sym___attribute__] = ACTIONS(1397), + [anon_sym___scanf] = ACTIONS(1397), + [anon_sym___printf] = ACTIONS(1397), + [anon_sym___read_mostly] = ACTIONS(1397), + [anon_sym___must_hold] = ACTIONS(1397), + [anon_sym___ro_after_init] = ACTIONS(1397), + [anon_sym___noreturn] = ACTIONS(1397), + [anon_sym___cold] = ACTIONS(1397), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1399), + [anon_sym___declspec] = ACTIONS(1397), + [anon_sym___init] = ACTIONS(1397), + [anon_sym___exit] = ACTIONS(1397), + [anon_sym___cdecl] = ACTIONS(1397), + [anon_sym___clrcall] = ACTIONS(1397), + [anon_sym___stdcall] = ACTIONS(1397), + [anon_sym___fastcall] = ACTIONS(1397), + [anon_sym___thiscall] = ACTIONS(1397), + [anon_sym___vectorcall] = ACTIONS(1397), + [anon_sym_LBRACE] = ACTIONS(1399), + [anon_sym_RBRACE] = ACTIONS(1399), + [anon_sym_signed] = ACTIONS(1397), + [anon_sym_unsigned] = ACTIONS(1397), + [anon_sym_long] = ACTIONS(1397), + [anon_sym_short] = ACTIONS(1397), + [anon_sym_static] = ACTIONS(1397), + [anon_sym_auto] = ACTIONS(1397), + [anon_sym_register] = ACTIONS(1397), + [anon_sym_inline] = ACTIONS(1397), + [anon_sym___inline] = ACTIONS(1397), + [anon_sym___inline__] = ACTIONS(1397), + [anon_sym___forceinline] = ACTIONS(1397), + [anon_sym_thread_local] = ACTIONS(1397), + [anon_sym___thread] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_constexpr] = ACTIONS(1397), + [anon_sym_volatile] = ACTIONS(1397), + [anon_sym_restrict] = ACTIONS(1397), + [anon_sym___restrict__] = ACTIONS(1397), + [anon_sym__Atomic] = ACTIONS(1397), + [anon_sym__Noreturn] = ACTIONS(1397), + [anon_sym_noreturn] = ACTIONS(1397), + [anon_sym_alignas] = ACTIONS(1397), + [anon_sym__Alignas] = ACTIONS(1397), + [sym_primitive_type] = ACTIONS(1397), + [anon_sym_enum] = ACTIONS(1397), + [anon_sym_struct] = ACTIONS(1397), + [anon_sym_union] = ACTIONS(1397), + [anon_sym_if] = ACTIONS(1397), + [anon_sym_switch] = ACTIONS(1397), + [anon_sym_case] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(1397), + [anon_sym_while] = ACTIONS(1397), + [anon_sym_do] = ACTIONS(1397), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_return] = ACTIONS(1397), + [anon_sym_break] = ACTIONS(1397), + [anon_sym_continue] = ACTIONS(1397), + [anon_sym_goto] = ACTIONS(1397), + [anon_sym___try] = ACTIONS(1397), + [anon_sym___leave] = ACTIONS(1397), + [anon_sym_DASH_DASH] = ACTIONS(1399), + [anon_sym_PLUS_PLUS] = ACTIONS(1399), + [anon_sym_sizeof] = ACTIONS(1397), + [anon_sym___alignof__] = ACTIONS(1397), + [anon_sym___alignof] = ACTIONS(1397), + [anon_sym__alignof] = ACTIONS(1397), + [anon_sym_alignof] = ACTIONS(1397), + [anon_sym__Alignof] = ACTIONS(1397), + [anon_sym_offsetof] = ACTIONS(1397), + [anon_sym__Generic] = ACTIONS(1397), + [anon_sym_asm] = ACTIONS(1397), + [anon_sym___asm__] = ACTIONS(1397), + [sym_number_literal] = ACTIONS(1399), + [anon_sym_L_SQUOTE] = ACTIONS(1399), + [anon_sym_u_SQUOTE] = ACTIONS(1399), + [anon_sym_U_SQUOTE] = ACTIONS(1399), + [anon_sym_u8_SQUOTE] = ACTIONS(1399), + [anon_sym_SQUOTE] = ACTIONS(1399), + [anon_sym_L_DQUOTE] = ACTIONS(1399), + [anon_sym_u_DQUOTE] = ACTIONS(1399), + [anon_sym_U_DQUOTE] = ACTIONS(1399), + [anon_sym_u8_DQUOTE] = ACTIONS(1399), + [anon_sym_DQUOTE] = ACTIONS(1399), + [sym_true] = ACTIONS(1397), + [sym_false] = ACTIONS(1397), + [anon_sym_NULL] = ACTIONS(1397), + [anon_sym_nullptr] = ACTIONS(1397), [sym_comment] = ACTIONS(3), }, - [273] = { - [sym_identifier] = ACTIONS(1347), - [aux_sym_preproc_include_token1] = ACTIONS(1347), - [aux_sym_preproc_def_token1] = ACTIONS(1347), - [aux_sym_preproc_if_token1] = ACTIONS(1347), - [aux_sym_preproc_if_token2] = ACTIONS(1347), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1347), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1347), - [sym_preproc_directive] = ACTIONS(1347), - [anon_sym_LPAREN2] = ACTIONS(1349), - [anon_sym_BANG] = ACTIONS(1349), - [anon_sym_TILDE] = ACTIONS(1349), - [anon_sym_DASH] = ACTIONS(1347), - [anon_sym_PLUS] = ACTIONS(1347), - [anon_sym_STAR] = ACTIONS(1349), - [anon_sym_AMP] = ACTIONS(1349), - [anon_sym_SEMI] = ACTIONS(1349), - [anon_sym___extension__] = ACTIONS(1347), - [anon_sym_typedef] = ACTIONS(1347), - [anon_sym_extern] = ACTIONS(1347), - [anon_sym___attribute__] = ACTIONS(1347), - [anon_sym___scanf] = ACTIONS(1347), - [anon_sym___printf] = ACTIONS(1347), - [anon_sym___read_mostly] = ACTIONS(1347), - [anon_sym___must_hold] = ACTIONS(1347), - [anon_sym___ro_after_init] = ACTIONS(1347), - [anon_sym___init] = ACTIONS(1347), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1349), - [anon_sym___declspec] = ACTIONS(1347), - [anon_sym___cdecl] = ACTIONS(1347), - [anon_sym___clrcall] = ACTIONS(1347), - [anon_sym___stdcall] = ACTIONS(1347), - [anon_sym___fastcall] = ACTIONS(1347), - [anon_sym___thiscall] = ACTIONS(1347), - [anon_sym___vectorcall] = ACTIONS(1347), - [anon_sym_LBRACE] = ACTIONS(1349), - [anon_sym_signed] = ACTIONS(1347), - [anon_sym_unsigned] = ACTIONS(1347), - [anon_sym_long] = ACTIONS(1347), - [anon_sym_short] = ACTIONS(1347), - [anon_sym_static] = ACTIONS(1347), - [anon_sym_auto] = ACTIONS(1347), - [anon_sym_register] = ACTIONS(1347), - [anon_sym_inline] = ACTIONS(1347), - [anon_sym___inline] = ACTIONS(1347), - [anon_sym___inline__] = ACTIONS(1347), - [anon_sym___forceinline] = ACTIONS(1347), - [anon_sym_thread_local] = ACTIONS(1347), - [anon_sym___thread] = ACTIONS(1347), - [anon_sym_const] = ACTIONS(1347), - [anon_sym_constexpr] = ACTIONS(1347), - [anon_sym_volatile] = ACTIONS(1347), - [anon_sym_restrict] = ACTIONS(1347), - [anon_sym___restrict__] = ACTIONS(1347), - [anon_sym__Atomic] = ACTIONS(1347), - [anon_sym__Noreturn] = ACTIONS(1347), - [anon_sym_noreturn] = ACTIONS(1347), - [anon_sym_alignas] = ACTIONS(1347), - [anon_sym__Alignas] = ACTIONS(1347), - [sym_primitive_type] = ACTIONS(1347), - [anon_sym_enum] = ACTIONS(1347), - [anon_sym_struct] = ACTIONS(1347), - [anon_sym_union] = ACTIONS(1347), - [anon_sym_if] = ACTIONS(1347), - [anon_sym_switch] = ACTIONS(1347), - [anon_sym_case] = ACTIONS(1347), - [anon_sym_default] = ACTIONS(1347), - [anon_sym_while] = ACTIONS(1347), - [anon_sym_do] = ACTIONS(1347), - [anon_sym_for] = ACTIONS(1347), - [anon_sym_return] = ACTIONS(1347), - [anon_sym_break] = ACTIONS(1347), - [anon_sym_continue] = ACTIONS(1347), - [anon_sym_goto] = ACTIONS(1347), - [anon_sym___try] = ACTIONS(1347), - [anon_sym___leave] = ACTIONS(1347), - [anon_sym_DASH_DASH] = ACTIONS(1349), - [anon_sym_PLUS_PLUS] = ACTIONS(1349), - [anon_sym_sizeof] = ACTIONS(1347), - [anon_sym___alignof__] = ACTIONS(1347), - [anon_sym___alignof] = ACTIONS(1347), - [anon_sym__alignof] = ACTIONS(1347), - [anon_sym_alignof] = ACTIONS(1347), - [anon_sym__Alignof] = ACTIONS(1347), - [anon_sym_offsetof] = ACTIONS(1347), - [anon_sym__Generic] = ACTIONS(1347), - [anon_sym_asm] = ACTIONS(1347), - [anon_sym___asm__] = ACTIONS(1347), - [sym_number_literal] = ACTIONS(1349), - [anon_sym_L_SQUOTE] = ACTIONS(1349), - [anon_sym_u_SQUOTE] = ACTIONS(1349), - [anon_sym_U_SQUOTE] = ACTIONS(1349), - [anon_sym_u8_SQUOTE] = ACTIONS(1349), - [anon_sym_SQUOTE] = ACTIONS(1349), - [anon_sym_L_DQUOTE] = ACTIONS(1349), - [anon_sym_u_DQUOTE] = ACTIONS(1349), - [anon_sym_U_DQUOTE] = ACTIONS(1349), - [anon_sym_u8_DQUOTE] = ACTIONS(1349), - [anon_sym_DQUOTE] = ACTIONS(1349), - [sym_true] = ACTIONS(1347), - [sym_false] = ACTIONS(1347), - [anon_sym_NULL] = ACTIONS(1347), - [anon_sym_nullptr] = ACTIONS(1347), + [313] = { + [sym_identifier] = ACTIONS(1385), + [aux_sym_preproc_include_token1] = ACTIONS(1385), + [aux_sym_preproc_def_token1] = ACTIONS(1385), + [aux_sym_preproc_if_token1] = ACTIONS(1385), + [aux_sym_preproc_if_token2] = ACTIONS(1385), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1385), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1385), + [sym_preproc_directive] = ACTIONS(1385), + [anon_sym_LPAREN2] = ACTIONS(1387), + [anon_sym_BANG] = ACTIONS(1387), + [anon_sym_TILDE] = ACTIONS(1387), + [anon_sym_DASH] = ACTIONS(1385), + [anon_sym_PLUS] = ACTIONS(1385), + [anon_sym_STAR] = ACTIONS(1387), + [anon_sym_AMP] = ACTIONS(1387), + [anon_sym_SEMI] = ACTIONS(1387), + [anon_sym___extension__] = ACTIONS(1385), + [anon_sym_typedef] = ACTIONS(1385), + [anon_sym_extern] = ACTIONS(1385), + [anon_sym___attribute__] = ACTIONS(1385), + [anon_sym___scanf] = ACTIONS(1385), + [anon_sym___printf] = ACTIONS(1385), + [anon_sym___read_mostly] = ACTIONS(1385), + [anon_sym___must_hold] = ACTIONS(1385), + [anon_sym___ro_after_init] = ACTIONS(1385), + [anon_sym___noreturn] = ACTIONS(1385), + [anon_sym___cold] = ACTIONS(1385), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1387), + [anon_sym___declspec] = ACTIONS(1385), + [anon_sym___init] = ACTIONS(1385), + [anon_sym___exit] = ACTIONS(1385), + [anon_sym___cdecl] = ACTIONS(1385), + [anon_sym___clrcall] = ACTIONS(1385), + [anon_sym___stdcall] = ACTIONS(1385), + [anon_sym___fastcall] = ACTIONS(1385), + [anon_sym___thiscall] = ACTIONS(1385), + [anon_sym___vectorcall] = ACTIONS(1385), + [anon_sym_LBRACE] = ACTIONS(1387), + [anon_sym_signed] = ACTIONS(1385), + [anon_sym_unsigned] = ACTIONS(1385), + [anon_sym_long] = ACTIONS(1385), + [anon_sym_short] = ACTIONS(1385), + [anon_sym_static] = ACTIONS(1385), + [anon_sym_auto] = ACTIONS(1385), + [anon_sym_register] = ACTIONS(1385), + [anon_sym_inline] = ACTIONS(1385), + [anon_sym___inline] = ACTIONS(1385), + [anon_sym___inline__] = ACTIONS(1385), + [anon_sym___forceinline] = ACTIONS(1385), + [anon_sym_thread_local] = ACTIONS(1385), + [anon_sym___thread] = ACTIONS(1385), + [anon_sym_const] = ACTIONS(1385), + [anon_sym_constexpr] = ACTIONS(1385), + [anon_sym_volatile] = ACTIONS(1385), + [anon_sym_restrict] = ACTIONS(1385), + [anon_sym___restrict__] = ACTIONS(1385), + [anon_sym__Atomic] = ACTIONS(1385), + [anon_sym__Noreturn] = ACTIONS(1385), + [anon_sym_noreturn] = ACTIONS(1385), + [anon_sym_alignas] = ACTIONS(1385), + [anon_sym__Alignas] = ACTIONS(1385), + [sym_primitive_type] = ACTIONS(1385), + [anon_sym_enum] = ACTIONS(1385), + [anon_sym_struct] = ACTIONS(1385), + [anon_sym_union] = ACTIONS(1385), + [anon_sym_if] = ACTIONS(1385), + [anon_sym_switch] = ACTIONS(1385), + [anon_sym_case] = ACTIONS(1385), + [anon_sym_default] = ACTIONS(1385), + [anon_sym_while] = ACTIONS(1385), + [anon_sym_do] = ACTIONS(1385), + [anon_sym_for] = ACTIONS(1385), + [anon_sym_return] = ACTIONS(1385), + [anon_sym_break] = ACTIONS(1385), + [anon_sym_continue] = ACTIONS(1385), + [anon_sym_goto] = ACTIONS(1385), + [anon_sym___try] = ACTIONS(1385), + [anon_sym___leave] = ACTIONS(1385), + [anon_sym_DASH_DASH] = ACTIONS(1387), + [anon_sym_PLUS_PLUS] = ACTIONS(1387), + [anon_sym_sizeof] = ACTIONS(1385), + [anon_sym___alignof__] = ACTIONS(1385), + [anon_sym___alignof] = ACTIONS(1385), + [anon_sym__alignof] = ACTIONS(1385), + [anon_sym_alignof] = ACTIONS(1385), + [anon_sym__Alignof] = ACTIONS(1385), + [anon_sym_offsetof] = ACTIONS(1385), + [anon_sym__Generic] = ACTIONS(1385), + [anon_sym_asm] = ACTIONS(1385), + [anon_sym___asm__] = ACTIONS(1385), + [sym_number_literal] = ACTIONS(1387), + [anon_sym_L_SQUOTE] = ACTIONS(1387), + [anon_sym_u_SQUOTE] = ACTIONS(1387), + [anon_sym_U_SQUOTE] = ACTIONS(1387), + [anon_sym_u8_SQUOTE] = ACTIONS(1387), + [anon_sym_SQUOTE] = ACTIONS(1387), + [anon_sym_L_DQUOTE] = ACTIONS(1387), + [anon_sym_u_DQUOTE] = ACTIONS(1387), + [anon_sym_U_DQUOTE] = ACTIONS(1387), + [anon_sym_u8_DQUOTE] = ACTIONS(1387), + [anon_sym_DQUOTE] = ACTIONS(1387), + [sym_true] = ACTIONS(1385), + [sym_false] = ACTIONS(1385), + [anon_sym_NULL] = ACTIONS(1385), + [anon_sym_nullptr] = ACTIONS(1385), [sym_comment] = ACTIONS(3), }, - [274] = { - [sym_identifier] = ACTIONS(1277), - [aux_sym_preproc_include_token1] = ACTIONS(1277), - [aux_sym_preproc_def_token1] = ACTIONS(1277), - [aux_sym_preproc_if_token1] = ACTIONS(1277), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1277), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1277), - [sym_preproc_directive] = ACTIONS(1277), - [anon_sym_LPAREN2] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1279), - [anon_sym_TILDE] = ACTIONS(1279), - [anon_sym_DASH] = ACTIONS(1277), - [anon_sym_PLUS] = ACTIONS(1277), - [anon_sym_STAR] = ACTIONS(1279), - [anon_sym_AMP] = ACTIONS(1279), - [anon_sym_SEMI] = ACTIONS(1279), - [anon_sym___extension__] = ACTIONS(1277), - [anon_sym_typedef] = ACTIONS(1277), - [anon_sym_extern] = ACTIONS(1277), - [anon_sym___attribute__] = ACTIONS(1277), - [anon_sym___scanf] = ACTIONS(1277), - [anon_sym___printf] = ACTIONS(1277), - [anon_sym___read_mostly] = ACTIONS(1277), - [anon_sym___must_hold] = ACTIONS(1277), - [anon_sym___ro_after_init] = ACTIONS(1277), - [anon_sym___init] = ACTIONS(1277), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1279), - [anon_sym___declspec] = ACTIONS(1277), - [anon_sym___cdecl] = ACTIONS(1277), - [anon_sym___clrcall] = ACTIONS(1277), - [anon_sym___stdcall] = ACTIONS(1277), - [anon_sym___fastcall] = ACTIONS(1277), - [anon_sym___thiscall] = ACTIONS(1277), - [anon_sym___vectorcall] = ACTIONS(1277), - [anon_sym_LBRACE] = ACTIONS(1279), - [anon_sym_RBRACE] = ACTIONS(1279), - [anon_sym_signed] = ACTIONS(1277), - [anon_sym_unsigned] = ACTIONS(1277), - [anon_sym_long] = ACTIONS(1277), - [anon_sym_short] = ACTIONS(1277), - [anon_sym_static] = ACTIONS(1277), - [anon_sym_auto] = ACTIONS(1277), - [anon_sym_register] = ACTIONS(1277), - [anon_sym_inline] = ACTIONS(1277), - [anon_sym___inline] = ACTIONS(1277), - [anon_sym___inline__] = ACTIONS(1277), - [anon_sym___forceinline] = ACTIONS(1277), - [anon_sym_thread_local] = ACTIONS(1277), - [anon_sym___thread] = ACTIONS(1277), - [anon_sym_const] = ACTIONS(1277), - [anon_sym_constexpr] = ACTIONS(1277), - [anon_sym_volatile] = ACTIONS(1277), - [anon_sym_restrict] = ACTIONS(1277), - [anon_sym___restrict__] = ACTIONS(1277), - [anon_sym__Atomic] = ACTIONS(1277), - [anon_sym__Noreturn] = ACTIONS(1277), - [anon_sym_noreturn] = ACTIONS(1277), - [anon_sym_alignas] = ACTIONS(1277), - [anon_sym__Alignas] = ACTIONS(1277), - [sym_primitive_type] = ACTIONS(1277), - [anon_sym_enum] = ACTIONS(1277), - [anon_sym_struct] = ACTIONS(1277), - [anon_sym_union] = ACTIONS(1277), - [anon_sym_if] = ACTIONS(1277), - [anon_sym_switch] = ACTIONS(1277), - [anon_sym_case] = ACTIONS(1277), - [anon_sym_default] = ACTIONS(1277), - [anon_sym_while] = ACTIONS(1277), - [anon_sym_do] = ACTIONS(1277), - [anon_sym_for] = ACTIONS(1277), - [anon_sym_return] = ACTIONS(1277), - [anon_sym_break] = ACTIONS(1277), - [anon_sym_continue] = ACTIONS(1277), - [anon_sym_goto] = ACTIONS(1277), - [anon_sym___try] = ACTIONS(1277), - [anon_sym___leave] = ACTIONS(1277), - [anon_sym_DASH_DASH] = ACTIONS(1279), - [anon_sym_PLUS_PLUS] = ACTIONS(1279), - [anon_sym_sizeof] = ACTIONS(1277), - [anon_sym___alignof__] = ACTIONS(1277), - [anon_sym___alignof] = ACTIONS(1277), - [anon_sym__alignof] = ACTIONS(1277), - [anon_sym_alignof] = ACTIONS(1277), - [anon_sym__Alignof] = ACTIONS(1277), - [anon_sym_offsetof] = ACTIONS(1277), - [anon_sym__Generic] = ACTIONS(1277), - [anon_sym_asm] = ACTIONS(1277), - [anon_sym___asm__] = ACTIONS(1277), - [sym_number_literal] = ACTIONS(1279), - [anon_sym_L_SQUOTE] = ACTIONS(1279), - [anon_sym_u_SQUOTE] = ACTIONS(1279), - [anon_sym_U_SQUOTE] = ACTIONS(1279), - [anon_sym_u8_SQUOTE] = ACTIONS(1279), - [anon_sym_SQUOTE] = ACTIONS(1279), - [anon_sym_L_DQUOTE] = ACTIONS(1279), - [anon_sym_u_DQUOTE] = ACTIONS(1279), - [anon_sym_U_DQUOTE] = ACTIONS(1279), - [anon_sym_u8_DQUOTE] = ACTIONS(1279), - [anon_sym_DQUOTE] = ACTIONS(1279), - [sym_true] = ACTIONS(1277), - [sym_false] = ACTIONS(1277), - [anon_sym_NULL] = ACTIONS(1277), - [anon_sym_nullptr] = ACTIONS(1277), + [314] = { + [sym_identifier] = ACTIONS(1349), + [aux_sym_preproc_include_token1] = ACTIONS(1349), + [aux_sym_preproc_def_token1] = ACTIONS(1349), + [aux_sym_preproc_if_token1] = ACTIONS(1349), + [aux_sym_preproc_if_token2] = ACTIONS(1349), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1349), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1349), + [sym_preproc_directive] = ACTIONS(1349), + [anon_sym_LPAREN2] = ACTIONS(1351), + [anon_sym_BANG] = ACTIONS(1351), + [anon_sym_TILDE] = ACTIONS(1351), + [anon_sym_DASH] = ACTIONS(1349), + [anon_sym_PLUS] = ACTIONS(1349), + [anon_sym_STAR] = ACTIONS(1351), + [anon_sym_AMP] = ACTIONS(1351), + [anon_sym_SEMI] = ACTIONS(1351), + [anon_sym___extension__] = ACTIONS(1349), + [anon_sym_typedef] = ACTIONS(1349), + [anon_sym_extern] = ACTIONS(1349), + [anon_sym___attribute__] = ACTIONS(1349), + [anon_sym___scanf] = ACTIONS(1349), + [anon_sym___printf] = ACTIONS(1349), + [anon_sym___read_mostly] = ACTIONS(1349), + [anon_sym___must_hold] = ACTIONS(1349), + [anon_sym___ro_after_init] = ACTIONS(1349), + [anon_sym___noreturn] = ACTIONS(1349), + [anon_sym___cold] = ACTIONS(1349), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1351), + [anon_sym___declspec] = ACTIONS(1349), + [anon_sym___init] = ACTIONS(1349), + [anon_sym___exit] = ACTIONS(1349), + [anon_sym___cdecl] = ACTIONS(1349), + [anon_sym___clrcall] = ACTIONS(1349), + [anon_sym___stdcall] = ACTIONS(1349), + [anon_sym___fastcall] = ACTIONS(1349), + [anon_sym___thiscall] = ACTIONS(1349), + [anon_sym___vectorcall] = ACTIONS(1349), + [anon_sym_LBRACE] = ACTIONS(1351), + [anon_sym_signed] = ACTIONS(1349), + [anon_sym_unsigned] = ACTIONS(1349), + [anon_sym_long] = ACTIONS(1349), + [anon_sym_short] = ACTIONS(1349), + [anon_sym_static] = ACTIONS(1349), + [anon_sym_auto] = ACTIONS(1349), + [anon_sym_register] = ACTIONS(1349), + [anon_sym_inline] = ACTIONS(1349), + [anon_sym___inline] = ACTIONS(1349), + [anon_sym___inline__] = ACTIONS(1349), + [anon_sym___forceinline] = ACTIONS(1349), + [anon_sym_thread_local] = ACTIONS(1349), + [anon_sym___thread] = ACTIONS(1349), + [anon_sym_const] = ACTIONS(1349), + [anon_sym_constexpr] = ACTIONS(1349), + [anon_sym_volatile] = ACTIONS(1349), + [anon_sym_restrict] = ACTIONS(1349), + [anon_sym___restrict__] = ACTIONS(1349), + [anon_sym__Atomic] = ACTIONS(1349), + [anon_sym__Noreturn] = ACTIONS(1349), + [anon_sym_noreturn] = ACTIONS(1349), + [anon_sym_alignas] = ACTIONS(1349), + [anon_sym__Alignas] = ACTIONS(1349), + [sym_primitive_type] = ACTIONS(1349), + [anon_sym_enum] = ACTIONS(1349), + [anon_sym_struct] = ACTIONS(1349), + [anon_sym_union] = ACTIONS(1349), + [anon_sym_if] = ACTIONS(1349), + [anon_sym_switch] = ACTIONS(1349), + [anon_sym_case] = ACTIONS(1349), + [anon_sym_default] = ACTIONS(1349), + [anon_sym_while] = ACTIONS(1349), + [anon_sym_do] = ACTIONS(1349), + [anon_sym_for] = ACTIONS(1349), + [anon_sym_return] = ACTIONS(1349), + [anon_sym_break] = ACTIONS(1349), + [anon_sym_continue] = ACTIONS(1349), + [anon_sym_goto] = ACTIONS(1349), + [anon_sym___try] = ACTIONS(1349), + [anon_sym___leave] = ACTIONS(1349), + [anon_sym_DASH_DASH] = ACTIONS(1351), + [anon_sym_PLUS_PLUS] = ACTIONS(1351), + [anon_sym_sizeof] = ACTIONS(1349), + [anon_sym___alignof__] = ACTIONS(1349), + [anon_sym___alignof] = ACTIONS(1349), + [anon_sym__alignof] = ACTIONS(1349), + [anon_sym_alignof] = ACTIONS(1349), + [anon_sym__Alignof] = ACTIONS(1349), + [anon_sym_offsetof] = ACTIONS(1349), + [anon_sym__Generic] = ACTIONS(1349), + [anon_sym_asm] = ACTIONS(1349), + [anon_sym___asm__] = ACTIONS(1349), + [sym_number_literal] = ACTIONS(1351), + [anon_sym_L_SQUOTE] = ACTIONS(1351), + [anon_sym_u_SQUOTE] = ACTIONS(1351), + [anon_sym_U_SQUOTE] = ACTIONS(1351), + [anon_sym_u8_SQUOTE] = ACTIONS(1351), + [anon_sym_SQUOTE] = ACTIONS(1351), + [anon_sym_L_DQUOTE] = ACTIONS(1351), + [anon_sym_u_DQUOTE] = ACTIONS(1351), + [anon_sym_U_DQUOTE] = ACTIONS(1351), + [anon_sym_u8_DQUOTE] = ACTIONS(1351), + [anon_sym_DQUOTE] = ACTIONS(1351), + [sym_true] = ACTIONS(1349), + [sym_false] = ACTIONS(1349), + [anon_sym_NULL] = ACTIONS(1349), + [anon_sym_nullptr] = ACTIONS(1349), [sym_comment] = ACTIONS(3), }, - [275] = { - [sym_identifier] = ACTIONS(1331), - [aux_sym_preproc_include_token1] = ACTIONS(1331), - [aux_sym_preproc_def_token1] = ACTIONS(1331), - [aux_sym_preproc_if_token1] = ACTIONS(1331), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1331), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1331), - [sym_preproc_directive] = ACTIONS(1331), - [anon_sym_LPAREN2] = ACTIONS(1333), - [anon_sym_BANG] = ACTIONS(1333), - [anon_sym_TILDE] = ACTIONS(1333), - [anon_sym_DASH] = ACTIONS(1331), - [anon_sym_PLUS] = ACTIONS(1331), - [anon_sym_STAR] = ACTIONS(1333), - [anon_sym_AMP] = ACTIONS(1333), - [anon_sym_SEMI] = ACTIONS(1333), - [anon_sym___extension__] = ACTIONS(1331), - [anon_sym_typedef] = ACTIONS(1331), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym___attribute__] = ACTIONS(1331), - [anon_sym___scanf] = ACTIONS(1331), - [anon_sym___printf] = ACTIONS(1331), - [anon_sym___read_mostly] = ACTIONS(1331), - [anon_sym___must_hold] = ACTIONS(1331), - [anon_sym___ro_after_init] = ACTIONS(1331), - [anon_sym___init] = ACTIONS(1331), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1333), - [anon_sym___declspec] = ACTIONS(1331), - [anon_sym___cdecl] = ACTIONS(1331), - [anon_sym___clrcall] = ACTIONS(1331), - [anon_sym___stdcall] = ACTIONS(1331), - [anon_sym___fastcall] = ACTIONS(1331), - [anon_sym___thiscall] = ACTIONS(1331), - [anon_sym___vectorcall] = ACTIONS(1331), - [anon_sym_LBRACE] = ACTIONS(1333), - [anon_sym_RBRACE] = ACTIONS(1333), - [anon_sym_signed] = ACTIONS(1331), - [anon_sym_unsigned] = ACTIONS(1331), - [anon_sym_long] = ACTIONS(1331), - [anon_sym_short] = ACTIONS(1331), - [anon_sym_static] = ACTIONS(1331), - [anon_sym_auto] = ACTIONS(1331), - [anon_sym_register] = ACTIONS(1331), - [anon_sym_inline] = ACTIONS(1331), - [anon_sym___inline] = ACTIONS(1331), - [anon_sym___inline__] = ACTIONS(1331), - [anon_sym___forceinline] = ACTIONS(1331), - [anon_sym_thread_local] = ACTIONS(1331), - [anon_sym___thread] = ACTIONS(1331), - [anon_sym_const] = ACTIONS(1331), - [anon_sym_constexpr] = ACTIONS(1331), - [anon_sym_volatile] = ACTIONS(1331), - [anon_sym_restrict] = ACTIONS(1331), - [anon_sym___restrict__] = ACTIONS(1331), - [anon_sym__Atomic] = ACTIONS(1331), - [anon_sym__Noreturn] = ACTIONS(1331), - [anon_sym_noreturn] = ACTIONS(1331), - [anon_sym_alignas] = ACTIONS(1331), - [anon_sym__Alignas] = ACTIONS(1331), - [sym_primitive_type] = ACTIONS(1331), - [anon_sym_enum] = ACTIONS(1331), - [anon_sym_struct] = ACTIONS(1331), - [anon_sym_union] = ACTIONS(1331), - [anon_sym_if] = ACTIONS(1331), - [anon_sym_switch] = ACTIONS(1331), - [anon_sym_case] = ACTIONS(1331), - [anon_sym_default] = ACTIONS(1331), - [anon_sym_while] = ACTIONS(1331), - [anon_sym_do] = ACTIONS(1331), - [anon_sym_for] = ACTIONS(1331), - [anon_sym_return] = ACTIONS(1331), - [anon_sym_break] = ACTIONS(1331), - [anon_sym_continue] = ACTIONS(1331), - [anon_sym_goto] = ACTIONS(1331), - [anon_sym___try] = ACTIONS(1331), - [anon_sym___leave] = ACTIONS(1331), - [anon_sym_DASH_DASH] = ACTIONS(1333), - [anon_sym_PLUS_PLUS] = ACTIONS(1333), - [anon_sym_sizeof] = ACTIONS(1331), - [anon_sym___alignof__] = ACTIONS(1331), - [anon_sym___alignof] = ACTIONS(1331), - [anon_sym__alignof] = ACTIONS(1331), - [anon_sym_alignof] = ACTIONS(1331), - [anon_sym__Alignof] = ACTIONS(1331), - [anon_sym_offsetof] = ACTIONS(1331), - [anon_sym__Generic] = ACTIONS(1331), - [anon_sym_asm] = ACTIONS(1331), - [anon_sym___asm__] = ACTIONS(1331), - [sym_number_literal] = ACTIONS(1333), - [anon_sym_L_SQUOTE] = ACTIONS(1333), - [anon_sym_u_SQUOTE] = ACTIONS(1333), - [anon_sym_U_SQUOTE] = ACTIONS(1333), - [anon_sym_u8_SQUOTE] = ACTIONS(1333), - [anon_sym_SQUOTE] = ACTIONS(1333), - [anon_sym_L_DQUOTE] = ACTIONS(1333), - [anon_sym_u_DQUOTE] = ACTIONS(1333), - [anon_sym_U_DQUOTE] = ACTIONS(1333), - [anon_sym_u8_DQUOTE] = ACTIONS(1333), - [anon_sym_DQUOTE] = ACTIONS(1333), - [sym_true] = ACTIONS(1331), - [sym_false] = ACTIONS(1331), - [anon_sym_NULL] = ACTIONS(1331), - [anon_sym_nullptr] = ACTIONS(1331), + [315] = { + [sym_identifier] = ACTIONS(1345), + [aux_sym_preproc_include_token1] = ACTIONS(1345), + [aux_sym_preproc_def_token1] = ACTIONS(1345), + [aux_sym_preproc_if_token1] = ACTIONS(1345), + [aux_sym_preproc_if_token2] = ACTIONS(1345), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1345), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1345), + [sym_preproc_directive] = ACTIONS(1345), + [anon_sym_LPAREN2] = ACTIONS(1347), + [anon_sym_BANG] = ACTIONS(1347), + [anon_sym_TILDE] = ACTIONS(1347), + [anon_sym_DASH] = ACTIONS(1345), + [anon_sym_PLUS] = ACTIONS(1345), + [anon_sym_STAR] = ACTIONS(1347), + [anon_sym_AMP] = ACTIONS(1347), + [anon_sym_SEMI] = ACTIONS(1347), + [anon_sym___extension__] = ACTIONS(1345), + [anon_sym_typedef] = ACTIONS(1345), + [anon_sym_extern] = ACTIONS(1345), + [anon_sym___attribute__] = ACTIONS(1345), + [anon_sym___scanf] = ACTIONS(1345), + [anon_sym___printf] = ACTIONS(1345), + [anon_sym___read_mostly] = ACTIONS(1345), + [anon_sym___must_hold] = ACTIONS(1345), + [anon_sym___ro_after_init] = ACTIONS(1345), + [anon_sym___noreturn] = ACTIONS(1345), + [anon_sym___cold] = ACTIONS(1345), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1347), + [anon_sym___declspec] = ACTIONS(1345), + [anon_sym___init] = ACTIONS(1345), + [anon_sym___exit] = ACTIONS(1345), + [anon_sym___cdecl] = ACTIONS(1345), + [anon_sym___clrcall] = ACTIONS(1345), + [anon_sym___stdcall] = ACTIONS(1345), + [anon_sym___fastcall] = ACTIONS(1345), + [anon_sym___thiscall] = ACTIONS(1345), + [anon_sym___vectorcall] = ACTIONS(1345), + [anon_sym_LBRACE] = ACTIONS(1347), + [anon_sym_signed] = ACTIONS(1345), + [anon_sym_unsigned] = ACTIONS(1345), + [anon_sym_long] = ACTIONS(1345), + [anon_sym_short] = ACTIONS(1345), + [anon_sym_static] = ACTIONS(1345), + [anon_sym_auto] = ACTIONS(1345), + [anon_sym_register] = ACTIONS(1345), + [anon_sym_inline] = ACTIONS(1345), + [anon_sym___inline] = ACTIONS(1345), + [anon_sym___inline__] = ACTIONS(1345), + [anon_sym___forceinline] = ACTIONS(1345), + [anon_sym_thread_local] = ACTIONS(1345), + [anon_sym___thread] = ACTIONS(1345), + [anon_sym_const] = ACTIONS(1345), + [anon_sym_constexpr] = ACTIONS(1345), + [anon_sym_volatile] = ACTIONS(1345), + [anon_sym_restrict] = ACTIONS(1345), + [anon_sym___restrict__] = ACTIONS(1345), + [anon_sym__Atomic] = ACTIONS(1345), + [anon_sym__Noreturn] = ACTIONS(1345), + [anon_sym_noreturn] = ACTIONS(1345), + [anon_sym_alignas] = ACTIONS(1345), + [anon_sym__Alignas] = ACTIONS(1345), + [sym_primitive_type] = ACTIONS(1345), + [anon_sym_enum] = ACTIONS(1345), + [anon_sym_struct] = ACTIONS(1345), + [anon_sym_union] = ACTIONS(1345), + [anon_sym_if] = ACTIONS(1345), + [anon_sym_switch] = ACTIONS(1345), + [anon_sym_case] = ACTIONS(1345), + [anon_sym_default] = ACTIONS(1345), + [anon_sym_while] = ACTIONS(1345), + [anon_sym_do] = ACTIONS(1345), + [anon_sym_for] = ACTIONS(1345), + [anon_sym_return] = ACTIONS(1345), + [anon_sym_break] = ACTIONS(1345), + [anon_sym_continue] = ACTIONS(1345), + [anon_sym_goto] = ACTIONS(1345), + [anon_sym___try] = ACTIONS(1345), + [anon_sym___leave] = ACTIONS(1345), + [anon_sym_DASH_DASH] = ACTIONS(1347), + [anon_sym_PLUS_PLUS] = ACTIONS(1347), + [anon_sym_sizeof] = ACTIONS(1345), + [anon_sym___alignof__] = ACTIONS(1345), + [anon_sym___alignof] = ACTIONS(1345), + [anon_sym__alignof] = ACTIONS(1345), + [anon_sym_alignof] = ACTIONS(1345), + [anon_sym__Alignof] = ACTIONS(1345), + [anon_sym_offsetof] = ACTIONS(1345), + [anon_sym__Generic] = ACTIONS(1345), + [anon_sym_asm] = ACTIONS(1345), + [anon_sym___asm__] = ACTIONS(1345), + [sym_number_literal] = ACTIONS(1347), + [anon_sym_L_SQUOTE] = ACTIONS(1347), + [anon_sym_u_SQUOTE] = ACTIONS(1347), + [anon_sym_U_SQUOTE] = ACTIONS(1347), + [anon_sym_u8_SQUOTE] = ACTIONS(1347), + [anon_sym_SQUOTE] = ACTIONS(1347), + [anon_sym_L_DQUOTE] = ACTIONS(1347), + [anon_sym_u_DQUOTE] = ACTIONS(1347), + [anon_sym_U_DQUOTE] = ACTIONS(1347), + [anon_sym_u8_DQUOTE] = ACTIONS(1347), + [anon_sym_DQUOTE] = ACTIONS(1347), + [sym_true] = ACTIONS(1345), + [sym_false] = ACTIONS(1345), + [anon_sym_NULL] = ACTIONS(1345), + [anon_sym_nullptr] = ACTIONS(1345), [sym_comment] = ACTIONS(3), }, - [276] = { - [sym_identifier] = ACTIONS(1383), - [aux_sym_preproc_include_token1] = ACTIONS(1383), - [aux_sym_preproc_def_token1] = ACTIONS(1383), - [aux_sym_preproc_if_token1] = ACTIONS(1383), - [aux_sym_preproc_if_token2] = ACTIONS(1383), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1383), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1383), - [sym_preproc_directive] = ACTIONS(1383), - [anon_sym_LPAREN2] = ACTIONS(1385), - [anon_sym_BANG] = ACTIONS(1385), - [anon_sym_TILDE] = ACTIONS(1385), - [anon_sym_DASH] = ACTIONS(1383), - [anon_sym_PLUS] = ACTIONS(1383), - [anon_sym_STAR] = ACTIONS(1385), - [anon_sym_AMP] = ACTIONS(1385), - [anon_sym_SEMI] = ACTIONS(1385), - [anon_sym___extension__] = ACTIONS(1383), - [anon_sym_typedef] = ACTIONS(1383), - [anon_sym_extern] = ACTIONS(1383), - [anon_sym___attribute__] = ACTIONS(1383), - [anon_sym___scanf] = ACTIONS(1383), - [anon_sym___printf] = ACTIONS(1383), - [anon_sym___read_mostly] = ACTIONS(1383), - [anon_sym___must_hold] = ACTIONS(1383), - [anon_sym___ro_after_init] = ACTIONS(1383), - [anon_sym___init] = ACTIONS(1383), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1385), - [anon_sym___declspec] = ACTIONS(1383), - [anon_sym___cdecl] = ACTIONS(1383), - [anon_sym___clrcall] = ACTIONS(1383), - [anon_sym___stdcall] = ACTIONS(1383), - [anon_sym___fastcall] = ACTIONS(1383), - [anon_sym___thiscall] = ACTIONS(1383), - [anon_sym___vectorcall] = ACTIONS(1383), - [anon_sym_LBRACE] = ACTIONS(1385), - [anon_sym_signed] = ACTIONS(1383), - [anon_sym_unsigned] = ACTIONS(1383), - [anon_sym_long] = ACTIONS(1383), - [anon_sym_short] = ACTIONS(1383), - [anon_sym_static] = ACTIONS(1383), - [anon_sym_auto] = ACTIONS(1383), - [anon_sym_register] = ACTIONS(1383), - [anon_sym_inline] = ACTIONS(1383), - [anon_sym___inline] = ACTIONS(1383), - [anon_sym___inline__] = ACTIONS(1383), - [anon_sym___forceinline] = ACTIONS(1383), - [anon_sym_thread_local] = ACTIONS(1383), - [anon_sym___thread] = ACTIONS(1383), - [anon_sym_const] = ACTIONS(1383), - [anon_sym_constexpr] = ACTIONS(1383), - [anon_sym_volatile] = ACTIONS(1383), - [anon_sym_restrict] = ACTIONS(1383), - [anon_sym___restrict__] = ACTIONS(1383), - [anon_sym__Atomic] = ACTIONS(1383), - [anon_sym__Noreturn] = ACTIONS(1383), - [anon_sym_noreturn] = ACTIONS(1383), - [anon_sym_alignas] = ACTIONS(1383), - [anon_sym__Alignas] = ACTIONS(1383), - [sym_primitive_type] = ACTIONS(1383), - [anon_sym_enum] = ACTIONS(1383), - [anon_sym_struct] = ACTIONS(1383), - [anon_sym_union] = ACTIONS(1383), - [anon_sym_if] = ACTIONS(1383), - [anon_sym_switch] = ACTIONS(1383), - [anon_sym_case] = ACTIONS(1383), - [anon_sym_default] = ACTIONS(1383), - [anon_sym_while] = ACTIONS(1383), - [anon_sym_do] = ACTIONS(1383), - [anon_sym_for] = ACTIONS(1383), - [anon_sym_return] = ACTIONS(1383), - [anon_sym_break] = ACTIONS(1383), - [anon_sym_continue] = ACTIONS(1383), - [anon_sym_goto] = ACTIONS(1383), - [anon_sym___try] = ACTIONS(1383), - [anon_sym___leave] = ACTIONS(1383), - [anon_sym_DASH_DASH] = ACTIONS(1385), - [anon_sym_PLUS_PLUS] = ACTIONS(1385), - [anon_sym_sizeof] = ACTIONS(1383), - [anon_sym___alignof__] = ACTIONS(1383), - [anon_sym___alignof] = ACTIONS(1383), - [anon_sym__alignof] = ACTIONS(1383), - [anon_sym_alignof] = ACTIONS(1383), - [anon_sym__Alignof] = ACTIONS(1383), - [anon_sym_offsetof] = ACTIONS(1383), - [anon_sym__Generic] = ACTIONS(1383), - [anon_sym_asm] = ACTIONS(1383), - [anon_sym___asm__] = ACTIONS(1383), - [sym_number_literal] = ACTIONS(1385), - [anon_sym_L_SQUOTE] = ACTIONS(1385), - [anon_sym_u_SQUOTE] = ACTIONS(1385), - [anon_sym_U_SQUOTE] = ACTIONS(1385), - [anon_sym_u8_SQUOTE] = ACTIONS(1385), - [anon_sym_SQUOTE] = ACTIONS(1385), - [anon_sym_L_DQUOTE] = ACTIONS(1385), - [anon_sym_u_DQUOTE] = ACTIONS(1385), - [anon_sym_U_DQUOTE] = ACTIONS(1385), - [anon_sym_u8_DQUOTE] = ACTIONS(1385), - [anon_sym_DQUOTE] = ACTIONS(1385), - [sym_true] = ACTIONS(1383), - [sym_false] = ACTIONS(1383), - [anon_sym_NULL] = ACTIONS(1383), - [anon_sym_nullptr] = ACTIONS(1383), + [316] = { + [sym_identifier] = ACTIONS(1341), + [aux_sym_preproc_include_token1] = ACTIONS(1341), + [aux_sym_preproc_def_token1] = ACTIONS(1341), + [aux_sym_preproc_if_token1] = ACTIONS(1341), + [aux_sym_preproc_if_token2] = ACTIONS(1341), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1341), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1341), + [sym_preproc_directive] = ACTIONS(1341), + [anon_sym_LPAREN2] = ACTIONS(1343), + [anon_sym_BANG] = ACTIONS(1343), + [anon_sym_TILDE] = ACTIONS(1343), + [anon_sym_DASH] = ACTIONS(1341), + [anon_sym_PLUS] = ACTIONS(1341), + [anon_sym_STAR] = ACTIONS(1343), + [anon_sym_AMP] = ACTIONS(1343), + [anon_sym_SEMI] = ACTIONS(1343), + [anon_sym___extension__] = ACTIONS(1341), + [anon_sym_typedef] = ACTIONS(1341), + [anon_sym_extern] = ACTIONS(1341), + [anon_sym___attribute__] = ACTIONS(1341), + [anon_sym___scanf] = ACTIONS(1341), + [anon_sym___printf] = ACTIONS(1341), + [anon_sym___read_mostly] = ACTIONS(1341), + [anon_sym___must_hold] = ACTIONS(1341), + [anon_sym___ro_after_init] = ACTIONS(1341), + [anon_sym___noreturn] = ACTIONS(1341), + [anon_sym___cold] = ACTIONS(1341), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1343), + [anon_sym___declspec] = ACTIONS(1341), + [anon_sym___init] = ACTIONS(1341), + [anon_sym___exit] = ACTIONS(1341), + [anon_sym___cdecl] = ACTIONS(1341), + [anon_sym___clrcall] = ACTIONS(1341), + [anon_sym___stdcall] = ACTIONS(1341), + [anon_sym___fastcall] = ACTIONS(1341), + [anon_sym___thiscall] = ACTIONS(1341), + [anon_sym___vectorcall] = ACTIONS(1341), + [anon_sym_LBRACE] = ACTIONS(1343), + [anon_sym_signed] = ACTIONS(1341), + [anon_sym_unsigned] = ACTIONS(1341), + [anon_sym_long] = ACTIONS(1341), + [anon_sym_short] = ACTIONS(1341), + [anon_sym_static] = ACTIONS(1341), + [anon_sym_auto] = ACTIONS(1341), + [anon_sym_register] = ACTIONS(1341), + [anon_sym_inline] = ACTIONS(1341), + [anon_sym___inline] = ACTIONS(1341), + [anon_sym___inline__] = ACTIONS(1341), + [anon_sym___forceinline] = ACTIONS(1341), + [anon_sym_thread_local] = ACTIONS(1341), + [anon_sym___thread] = ACTIONS(1341), + [anon_sym_const] = ACTIONS(1341), + [anon_sym_constexpr] = ACTIONS(1341), + [anon_sym_volatile] = ACTIONS(1341), + [anon_sym_restrict] = ACTIONS(1341), + [anon_sym___restrict__] = ACTIONS(1341), + [anon_sym__Atomic] = ACTIONS(1341), + [anon_sym__Noreturn] = ACTIONS(1341), + [anon_sym_noreturn] = ACTIONS(1341), + [anon_sym_alignas] = ACTIONS(1341), + [anon_sym__Alignas] = ACTIONS(1341), + [sym_primitive_type] = ACTIONS(1341), + [anon_sym_enum] = ACTIONS(1341), + [anon_sym_struct] = ACTIONS(1341), + [anon_sym_union] = ACTIONS(1341), + [anon_sym_if] = ACTIONS(1341), + [anon_sym_switch] = ACTIONS(1341), + [anon_sym_case] = ACTIONS(1341), + [anon_sym_default] = ACTIONS(1341), + [anon_sym_while] = ACTIONS(1341), + [anon_sym_do] = ACTIONS(1341), + [anon_sym_for] = ACTIONS(1341), + [anon_sym_return] = ACTIONS(1341), + [anon_sym_break] = ACTIONS(1341), + [anon_sym_continue] = ACTIONS(1341), + [anon_sym_goto] = ACTIONS(1341), + [anon_sym___try] = ACTIONS(1341), + [anon_sym___leave] = ACTIONS(1341), + [anon_sym_DASH_DASH] = ACTIONS(1343), + [anon_sym_PLUS_PLUS] = ACTIONS(1343), + [anon_sym_sizeof] = ACTIONS(1341), + [anon_sym___alignof__] = ACTIONS(1341), + [anon_sym___alignof] = ACTIONS(1341), + [anon_sym__alignof] = ACTIONS(1341), + [anon_sym_alignof] = ACTIONS(1341), + [anon_sym__Alignof] = ACTIONS(1341), + [anon_sym_offsetof] = ACTIONS(1341), + [anon_sym__Generic] = ACTIONS(1341), + [anon_sym_asm] = ACTIONS(1341), + [anon_sym___asm__] = ACTIONS(1341), + [sym_number_literal] = ACTIONS(1343), + [anon_sym_L_SQUOTE] = ACTIONS(1343), + [anon_sym_u_SQUOTE] = ACTIONS(1343), + [anon_sym_U_SQUOTE] = ACTIONS(1343), + [anon_sym_u8_SQUOTE] = ACTIONS(1343), + [anon_sym_SQUOTE] = ACTIONS(1343), + [anon_sym_L_DQUOTE] = ACTIONS(1343), + [anon_sym_u_DQUOTE] = ACTIONS(1343), + [anon_sym_U_DQUOTE] = ACTIONS(1343), + [anon_sym_u8_DQUOTE] = ACTIONS(1343), + [anon_sym_DQUOTE] = ACTIONS(1343), + [sym_true] = ACTIONS(1341), + [sym_false] = ACTIONS(1341), + [anon_sym_NULL] = ACTIONS(1341), + [anon_sym_nullptr] = ACTIONS(1341), [sym_comment] = ACTIONS(3), }, - [277] = { - [sym_identifier] = ACTIONS(1387), - [aux_sym_preproc_include_token1] = ACTIONS(1387), - [aux_sym_preproc_def_token1] = ACTIONS(1387), - [aux_sym_preproc_if_token1] = ACTIONS(1387), - [aux_sym_preproc_if_token2] = ACTIONS(1387), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1387), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1387), - [sym_preproc_directive] = ACTIONS(1387), - [anon_sym_LPAREN2] = ACTIONS(1389), - [anon_sym_BANG] = ACTIONS(1389), - [anon_sym_TILDE] = ACTIONS(1389), - [anon_sym_DASH] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(1387), - [anon_sym_STAR] = ACTIONS(1389), - [anon_sym_AMP] = ACTIONS(1389), - [anon_sym_SEMI] = ACTIONS(1389), - [anon_sym___extension__] = ACTIONS(1387), - [anon_sym_typedef] = ACTIONS(1387), - [anon_sym_extern] = ACTIONS(1387), - [anon_sym___attribute__] = ACTIONS(1387), - [anon_sym___scanf] = ACTIONS(1387), - [anon_sym___printf] = ACTIONS(1387), - [anon_sym___read_mostly] = ACTIONS(1387), - [anon_sym___must_hold] = ACTIONS(1387), - [anon_sym___ro_after_init] = ACTIONS(1387), - [anon_sym___init] = ACTIONS(1387), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1389), - [anon_sym___declspec] = ACTIONS(1387), - [anon_sym___cdecl] = ACTIONS(1387), - [anon_sym___clrcall] = ACTIONS(1387), - [anon_sym___stdcall] = ACTIONS(1387), - [anon_sym___fastcall] = ACTIONS(1387), - [anon_sym___thiscall] = ACTIONS(1387), - [anon_sym___vectorcall] = ACTIONS(1387), - [anon_sym_LBRACE] = ACTIONS(1389), - [anon_sym_signed] = ACTIONS(1387), - [anon_sym_unsigned] = ACTIONS(1387), - [anon_sym_long] = ACTIONS(1387), - [anon_sym_short] = ACTIONS(1387), - [anon_sym_static] = ACTIONS(1387), - [anon_sym_auto] = ACTIONS(1387), - [anon_sym_register] = ACTIONS(1387), - [anon_sym_inline] = ACTIONS(1387), - [anon_sym___inline] = ACTIONS(1387), - [anon_sym___inline__] = ACTIONS(1387), - [anon_sym___forceinline] = ACTIONS(1387), - [anon_sym_thread_local] = ACTIONS(1387), - [anon_sym___thread] = ACTIONS(1387), - [anon_sym_const] = ACTIONS(1387), - [anon_sym_constexpr] = ACTIONS(1387), - [anon_sym_volatile] = ACTIONS(1387), - [anon_sym_restrict] = ACTIONS(1387), - [anon_sym___restrict__] = ACTIONS(1387), - [anon_sym__Atomic] = ACTIONS(1387), - [anon_sym__Noreturn] = ACTIONS(1387), - [anon_sym_noreturn] = ACTIONS(1387), - [anon_sym_alignas] = ACTIONS(1387), - [anon_sym__Alignas] = ACTIONS(1387), - [sym_primitive_type] = ACTIONS(1387), - [anon_sym_enum] = ACTIONS(1387), - [anon_sym_struct] = ACTIONS(1387), - [anon_sym_union] = ACTIONS(1387), - [anon_sym_if] = ACTIONS(1387), - [anon_sym_switch] = ACTIONS(1387), - [anon_sym_case] = ACTIONS(1387), - [anon_sym_default] = ACTIONS(1387), - [anon_sym_while] = ACTIONS(1387), - [anon_sym_do] = ACTIONS(1387), - [anon_sym_for] = ACTIONS(1387), - [anon_sym_return] = ACTIONS(1387), - [anon_sym_break] = ACTIONS(1387), - [anon_sym_continue] = ACTIONS(1387), - [anon_sym_goto] = ACTIONS(1387), - [anon_sym___try] = ACTIONS(1387), - [anon_sym___leave] = ACTIONS(1387), - [anon_sym_DASH_DASH] = ACTIONS(1389), - [anon_sym_PLUS_PLUS] = ACTIONS(1389), - [anon_sym_sizeof] = ACTIONS(1387), - [anon_sym___alignof__] = ACTIONS(1387), - [anon_sym___alignof] = ACTIONS(1387), - [anon_sym__alignof] = ACTIONS(1387), - [anon_sym_alignof] = ACTIONS(1387), - [anon_sym__Alignof] = ACTIONS(1387), - [anon_sym_offsetof] = ACTIONS(1387), - [anon_sym__Generic] = ACTIONS(1387), - [anon_sym_asm] = ACTIONS(1387), - [anon_sym___asm__] = ACTIONS(1387), - [sym_number_literal] = ACTIONS(1389), - [anon_sym_L_SQUOTE] = ACTIONS(1389), - [anon_sym_u_SQUOTE] = ACTIONS(1389), - [anon_sym_U_SQUOTE] = ACTIONS(1389), - [anon_sym_u8_SQUOTE] = ACTIONS(1389), - [anon_sym_SQUOTE] = ACTIONS(1389), - [anon_sym_L_DQUOTE] = ACTIONS(1389), - [anon_sym_u_DQUOTE] = ACTIONS(1389), - [anon_sym_U_DQUOTE] = ACTIONS(1389), - [anon_sym_u8_DQUOTE] = ACTIONS(1389), - [anon_sym_DQUOTE] = ACTIONS(1389), - [sym_true] = ACTIONS(1387), - [sym_false] = ACTIONS(1387), - [anon_sym_NULL] = ACTIONS(1387), - [anon_sym_nullptr] = ACTIONS(1387), + [317] = { + [sym_identifier] = ACTIONS(1325), + [aux_sym_preproc_include_token1] = ACTIONS(1325), + [aux_sym_preproc_def_token1] = ACTIONS(1325), + [aux_sym_preproc_if_token1] = ACTIONS(1325), + [aux_sym_preproc_if_token2] = ACTIONS(1325), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1325), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1325), + [sym_preproc_directive] = ACTIONS(1325), + [anon_sym_LPAREN2] = ACTIONS(1327), + [anon_sym_BANG] = ACTIONS(1327), + [anon_sym_TILDE] = ACTIONS(1327), + [anon_sym_DASH] = ACTIONS(1325), + [anon_sym_PLUS] = ACTIONS(1325), + [anon_sym_STAR] = ACTIONS(1327), + [anon_sym_AMP] = ACTIONS(1327), + [anon_sym_SEMI] = ACTIONS(1327), + [anon_sym___extension__] = ACTIONS(1325), + [anon_sym_typedef] = ACTIONS(1325), + [anon_sym_extern] = ACTIONS(1325), + [anon_sym___attribute__] = ACTIONS(1325), + [anon_sym___scanf] = ACTIONS(1325), + [anon_sym___printf] = ACTIONS(1325), + [anon_sym___read_mostly] = ACTIONS(1325), + [anon_sym___must_hold] = ACTIONS(1325), + [anon_sym___ro_after_init] = ACTIONS(1325), + [anon_sym___noreturn] = ACTIONS(1325), + [anon_sym___cold] = ACTIONS(1325), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1327), + [anon_sym___declspec] = ACTIONS(1325), + [anon_sym___init] = ACTIONS(1325), + [anon_sym___exit] = ACTIONS(1325), + [anon_sym___cdecl] = ACTIONS(1325), + [anon_sym___clrcall] = ACTIONS(1325), + [anon_sym___stdcall] = ACTIONS(1325), + [anon_sym___fastcall] = ACTIONS(1325), + [anon_sym___thiscall] = ACTIONS(1325), + [anon_sym___vectorcall] = ACTIONS(1325), + [anon_sym_LBRACE] = ACTIONS(1327), + [anon_sym_signed] = ACTIONS(1325), + [anon_sym_unsigned] = ACTIONS(1325), + [anon_sym_long] = ACTIONS(1325), + [anon_sym_short] = ACTIONS(1325), + [anon_sym_static] = ACTIONS(1325), + [anon_sym_auto] = ACTIONS(1325), + [anon_sym_register] = ACTIONS(1325), + [anon_sym_inline] = ACTIONS(1325), + [anon_sym___inline] = ACTIONS(1325), + [anon_sym___inline__] = ACTIONS(1325), + [anon_sym___forceinline] = ACTIONS(1325), + [anon_sym_thread_local] = ACTIONS(1325), + [anon_sym___thread] = ACTIONS(1325), + [anon_sym_const] = ACTIONS(1325), + [anon_sym_constexpr] = ACTIONS(1325), + [anon_sym_volatile] = ACTIONS(1325), + [anon_sym_restrict] = ACTIONS(1325), + [anon_sym___restrict__] = ACTIONS(1325), + [anon_sym__Atomic] = ACTIONS(1325), + [anon_sym__Noreturn] = ACTIONS(1325), + [anon_sym_noreturn] = ACTIONS(1325), + [anon_sym_alignas] = ACTIONS(1325), + [anon_sym__Alignas] = ACTIONS(1325), + [sym_primitive_type] = ACTIONS(1325), + [anon_sym_enum] = ACTIONS(1325), + [anon_sym_struct] = ACTIONS(1325), + [anon_sym_union] = ACTIONS(1325), + [anon_sym_if] = ACTIONS(1325), + [anon_sym_switch] = ACTIONS(1325), + [anon_sym_case] = ACTIONS(1325), + [anon_sym_default] = ACTIONS(1325), + [anon_sym_while] = ACTIONS(1325), + [anon_sym_do] = ACTIONS(1325), + [anon_sym_for] = ACTIONS(1325), + [anon_sym_return] = ACTIONS(1325), + [anon_sym_break] = ACTIONS(1325), + [anon_sym_continue] = ACTIONS(1325), + [anon_sym_goto] = ACTIONS(1325), + [anon_sym___try] = ACTIONS(1325), + [anon_sym___leave] = ACTIONS(1325), + [anon_sym_DASH_DASH] = ACTIONS(1327), + [anon_sym_PLUS_PLUS] = ACTIONS(1327), + [anon_sym_sizeof] = ACTIONS(1325), + [anon_sym___alignof__] = ACTIONS(1325), + [anon_sym___alignof] = ACTIONS(1325), + [anon_sym__alignof] = ACTIONS(1325), + [anon_sym_alignof] = ACTIONS(1325), + [anon_sym__Alignof] = ACTIONS(1325), + [anon_sym_offsetof] = ACTIONS(1325), + [anon_sym__Generic] = ACTIONS(1325), + [anon_sym_asm] = ACTIONS(1325), + [anon_sym___asm__] = ACTIONS(1325), + [sym_number_literal] = ACTIONS(1327), + [anon_sym_L_SQUOTE] = ACTIONS(1327), + [anon_sym_u_SQUOTE] = ACTIONS(1327), + [anon_sym_U_SQUOTE] = ACTIONS(1327), + [anon_sym_u8_SQUOTE] = ACTIONS(1327), + [anon_sym_SQUOTE] = ACTIONS(1327), + [anon_sym_L_DQUOTE] = ACTIONS(1327), + [anon_sym_u_DQUOTE] = ACTIONS(1327), + [anon_sym_U_DQUOTE] = ACTIONS(1327), + [anon_sym_u8_DQUOTE] = ACTIONS(1327), + [anon_sym_DQUOTE] = ACTIONS(1327), + [sym_true] = ACTIONS(1325), + [sym_false] = ACTIONS(1325), + [anon_sym_NULL] = ACTIONS(1325), + [anon_sym_nullptr] = ACTIONS(1325), [sym_comment] = ACTIONS(3), }, - [278] = { - [sym_identifier] = ACTIONS(1299), - [aux_sym_preproc_include_token1] = ACTIONS(1299), - [aux_sym_preproc_def_token1] = ACTIONS(1299), - [aux_sym_preproc_if_token1] = ACTIONS(1299), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1299), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1299), - [sym_preproc_directive] = ACTIONS(1299), - [anon_sym_LPAREN2] = ACTIONS(1301), - [anon_sym_BANG] = ACTIONS(1301), - [anon_sym_TILDE] = ACTIONS(1301), - [anon_sym_DASH] = ACTIONS(1299), - [anon_sym_PLUS] = ACTIONS(1299), - [anon_sym_STAR] = ACTIONS(1301), - [anon_sym_AMP] = ACTIONS(1301), - [anon_sym_SEMI] = ACTIONS(1301), - [anon_sym___extension__] = ACTIONS(1299), - [anon_sym_typedef] = ACTIONS(1299), - [anon_sym_extern] = ACTIONS(1299), - [anon_sym___attribute__] = ACTIONS(1299), - [anon_sym___scanf] = ACTIONS(1299), - [anon_sym___printf] = ACTIONS(1299), - [anon_sym___read_mostly] = ACTIONS(1299), - [anon_sym___must_hold] = ACTIONS(1299), - [anon_sym___ro_after_init] = ACTIONS(1299), - [anon_sym___init] = ACTIONS(1299), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1301), - [anon_sym___declspec] = ACTIONS(1299), - [anon_sym___cdecl] = ACTIONS(1299), - [anon_sym___clrcall] = ACTIONS(1299), - [anon_sym___stdcall] = ACTIONS(1299), - [anon_sym___fastcall] = ACTIONS(1299), - [anon_sym___thiscall] = ACTIONS(1299), - [anon_sym___vectorcall] = ACTIONS(1299), - [anon_sym_LBRACE] = ACTIONS(1301), - [anon_sym_RBRACE] = ACTIONS(1301), - [anon_sym_signed] = ACTIONS(1299), - [anon_sym_unsigned] = ACTIONS(1299), - [anon_sym_long] = ACTIONS(1299), - [anon_sym_short] = ACTIONS(1299), - [anon_sym_static] = ACTIONS(1299), - [anon_sym_auto] = ACTIONS(1299), - [anon_sym_register] = ACTIONS(1299), - [anon_sym_inline] = ACTIONS(1299), - [anon_sym___inline] = ACTIONS(1299), - [anon_sym___inline__] = ACTIONS(1299), - [anon_sym___forceinline] = ACTIONS(1299), - [anon_sym_thread_local] = ACTIONS(1299), - [anon_sym___thread] = ACTIONS(1299), - [anon_sym_const] = ACTIONS(1299), - [anon_sym_constexpr] = ACTIONS(1299), - [anon_sym_volatile] = ACTIONS(1299), - [anon_sym_restrict] = ACTIONS(1299), - [anon_sym___restrict__] = ACTIONS(1299), - [anon_sym__Atomic] = ACTIONS(1299), - [anon_sym__Noreturn] = ACTIONS(1299), - [anon_sym_noreturn] = ACTIONS(1299), - [anon_sym_alignas] = ACTIONS(1299), - [anon_sym__Alignas] = ACTIONS(1299), - [sym_primitive_type] = ACTIONS(1299), - [anon_sym_enum] = ACTIONS(1299), - [anon_sym_struct] = ACTIONS(1299), - [anon_sym_union] = ACTIONS(1299), - [anon_sym_if] = ACTIONS(1299), - [anon_sym_switch] = ACTIONS(1299), - [anon_sym_case] = ACTIONS(1299), - [anon_sym_default] = ACTIONS(1299), - [anon_sym_while] = ACTIONS(1299), - [anon_sym_do] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(1299), - [anon_sym_return] = ACTIONS(1299), - [anon_sym_break] = ACTIONS(1299), - [anon_sym_continue] = ACTIONS(1299), - [anon_sym_goto] = ACTIONS(1299), - [anon_sym___try] = ACTIONS(1299), - [anon_sym___leave] = ACTIONS(1299), - [anon_sym_DASH_DASH] = ACTIONS(1301), - [anon_sym_PLUS_PLUS] = ACTIONS(1301), - [anon_sym_sizeof] = ACTIONS(1299), - [anon_sym___alignof__] = ACTIONS(1299), - [anon_sym___alignof] = ACTIONS(1299), - [anon_sym__alignof] = ACTIONS(1299), - [anon_sym_alignof] = ACTIONS(1299), - [anon_sym__Alignof] = ACTIONS(1299), - [anon_sym_offsetof] = ACTIONS(1299), - [anon_sym__Generic] = ACTIONS(1299), - [anon_sym_asm] = ACTIONS(1299), - [anon_sym___asm__] = ACTIONS(1299), - [sym_number_literal] = ACTIONS(1301), - [anon_sym_L_SQUOTE] = ACTIONS(1301), - [anon_sym_u_SQUOTE] = ACTIONS(1301), - [anon_sym_U_SQUOTE] = ACTIONS(1301), - [anon_sym_u8_SQUOTE] = ACTIONS(1301), - [anon_sym_SQUOTE] = ACTIONS(1301), - [anon_sym_L_DQUOTE] = ACTIONS(1301), - [anon_sym_u_DQUOTE] = ACTIONS(1301), - [anon_sym_U_DQUOTE] = ACTIONS(1301), - [anon_sym_u8_DQUOTE] = ACTIONS(1301), - [anon_sym_DQUOTE] = ACTIONS(1301), - [sym_true] = ACTIONS(1299), - [sym_false] = ACTIONS(1299), - [anon_sym_NULL] = ACTIONS(1299), - [anon_sym_nullptr] = ACTIONS(1299), + [318] = { + [sym_identifier] = ACTIONS(1321), + [aux_sym_preproc_include_token1] = ACTIONS(1321), + [aux_sym_preproc_def_token1] = ACTIONS(1321), + [aux_sym_preproc_if_token1] = ACTIONS(1321), + [aux_sym_preproc_if_token2] = ACTIONS(1321), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1321), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1321), + [sym_preproc_directive] = ACTIONS(1321), + [anon_sym_LPAREN2] = ACTIONS(1323), + [anon_sym_BANG] = ACTIONS(1323), + [anon_sym_TILDE] = ACTIONS(1323), + [anon_sym_DASH] = ACTIONS(1321), + [anon_sym_PLUS] = ACTIONS(1321), + [anon_sym_STAR] = ACTIONS(1323), + [anon_sym_AMP] = ACTIONS(1323), + [anon_sym_SEMI] = ACTIONS(1323), + [anon_sym___extension__] = ACTIONS(1321), + [anon_sym_typedef] = ACTIONS(1321), + [anon_sym_extern] = ACTIONS(1321), + [anon_sym___attribute__] = ACTIONS(1321), + [anon_sym___scanf] = ACTIONS(1321), + [anon_sym___printf] = ACTIONS(1321), + [anon_sym___read_mostly] = ACTIONS(1321), + [anon_sym___must_hold] = ACTIONS(1321), + [anon_sym___ro_after_init] = ACTIONS(1321), + [anon_sym___noreturn] = ACTIONS(1321), + [anon_sym___cold] = ACTIONS(1321), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1323), + [anon_sym___declspec] = ACTIONS(1321), + [anon_sym___init] = ACTIONS(1321), + [anon_sym___exit] = ACTIONS(1321), + [anon_sym___cdecl] = ACTIONS(1321), + [anon_sym___clrcall] = ACTIONS(1321), + [anon_sym___stdcall] = ACTIONS(1321), + [anon_sym___fastcall] = ACTIONS(1321), + [anon_sym___thiscall] = ACTIONS(1321), + [anon_sym___vectorcall] = ACTIONS(1321), + [anon_sym_LBRACE] = ACTIONS(1323), + [anon_sym_signed] = ACTIONS(1321), + [anon_sym_unsigned] = ACTIONS(1321), + [anon_sym_long] = ACTIONS(1321), + [anon_sym_short] = ACTIONS(1321), + [anon_sym_static] = ACTIONS(1321), + [anon_sym_auto] = ACTIONS(1321), + [anon_sym_register] = ACTIONS(1321), + [anon_sym_inline] = ACTIONS(1321), + [anon_sym___inline] = ACTIONS(1321), + [anon_sym___inline__] = ACTIONS(1321), + [anon_sym___forceinline] = ACTIONS(1321), + [anon_sym_thread_local] = ACTIONS(1321), + [anon_sym___thread] = ACTIONS(1321), + [anon_sym_const] = ACTIONS(1321), + [anon_sym_constexpr] = ACTIONS(1321), + [anon_sym_volatile] = ACTIONS(1321), + [anon_sym_restrict] = ACTIONS(1321), + [anon_sym___restrict__] = ACTIONS(1321), + [anon_sym__Atomic] = ACTIONS(1321), + [anon_sym__Noreturn] = ACTIONS(1321), + [anon_sym_noreturn] = ACTIONS(1321), + [anon_sym_alignas] = ACTIONS(1321), + [anon_sym__Alignas] = ACTIONS(1321), + [sym_primitive_type] = ACTIONS(1321), + [anon_sym_enum] = ACTIONS(1321), + [anon_sym_struct] = ACTIONS(1321), + [anon_sym_union] = ACTIONS(1321), + [anon_sym_if] = ACTIONS(1321), + [anon_sym_switch] = ACTIONS(1321), + [anon_sym_case] = ACTIONS(1321), + [anon_sym_default] = ACTIONS(1321), + [anon_sym_while] = ACTIONS(1321), + [anon_sym_do] = ACTIONS(1321), + [anon_sym_for] = ACTIONS(1321), + [anon_sym_return] = ACTIONS(1321), + [anon_sym_break] = ACTIONS(1321), + [anon_sym_continue] = ACTIONS(1321), + [anon_sym_goto] = ACTIONS(1321), + [anon_sym___try] = ACTIONS(1321), + [anon_sym___leave] = ACTIONS(1321), + [anon_sym_DASH_DASH] = ACTIONS(1323), + [anon_sym_PLUS_PLUS] = ACTIONS(1323), + [anon_sym_sizeof] = ACTIONS(1321), + [anon_sym___alignof__] = ACTIONS(1321), + [anon_sym___alignof] = ACTIONS(1321), + [anon_sym__alignof] = ACTIONS(1321), + [anon_sym_alignof] = ACTIONS(1321), + [anon_sym__Alignof] = ACTIONS(1321), + [anon_sym_offsetof] = ACTIONS(1321), + [anon_sym__Generic] = ACTIONS(1321), + [anon_sym_asm] = ACTIONS(1321), + [anon_sym___asm__] = ACTIONS(1321), + [sym_number_literal] = ACTIONS(1323), + [anon_sym_L_SQUOTE] = ACTIONS(1323), + [anon_sym_u_SQUOTE] = ACTIONS(1323), + [anon_sym_U_SQUOTE] = ACTIONS(1323), + [anon_sym_u8_SQUOTE] = ACTIONS(1323), + [anon_sym_SQUOTE] = ACTIONS(1323), + [anon_sym_L_DQUOTE] = ACTIONS(1323), + [anon_sym_u_DQUOTE] = ACTIONS(1323), + [anon_sym_U_DQUOTE] = ACTIONS(1323), + [anon_sym_u8_DQUOTE] = ACTIONS(1323), + [anon_sym_DQUOTE] = ACTIONS(1323), + [sym_true] = ACTIONS(1321), + [sym_false] = ACTIONS(1321), + [anon_sym_NULL] = ACTIONS(1321), + [anon_sym_nullptr] = ACTIONS(1321), [sym_comment] = ACTIONS(3), }, - [279] = { - [sym_identifier] = ACTIONS(1285), - [aux_sym_preproc_include_token1] = ACTIONS(1285), - [aux_sym_preproc_def_token1] = ACTIONS(1285), - [aux_sym_preproc_if_token1] = ACTIONS(1285), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1285), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1285), - [sym_preproc_directive] = ACTIONS(1285), - [anon_sym_LPAREN2] = ACTIONS(1287), - [anon_sym_BANG] = ACTIONS(1287), - [anon_sym_TILDE] = ACTIONS(1287), - [anon_sym_DASH] = ACTIONS(1285), - [anon_sym_PLUS] = ACTIONS(1285), - [anon_sym_STAR] = ACTIONS(1287), - [anon_sym_AMP] = ACTIONS(1287), - [anon_sym_SEMI] = ACTIONS(1287), - [anon_sym___extension__] = ACTIONS(1285), - [anon_sym_typedef] = ACTIONS(1285), - [anon_sym_extern] = ACTIONS(1285), - [anon_sym___attribute__] = ACTIONS(1285), - [anon_sym___scanf] = ACTIONS(1285), - [anon_sym___printf] = ACTIONS(1285), - [anon_sym___read_mostly] = ACTIONS(1285), - [anon_sym___must_hold] = ACTIONS(1285), - [anon_sym___ro_after_init] = ACTIONS(1285), - [anon_sym___init] = ACTIONS(1285), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1287), - [anon_sym___declspec] = ACTIONS(1285), - [anon_sym___cdecl] = ACTIONS(1285), - [anon_sym___clrcall] = ACTIONS(1285), - [anon_sym___stdcall] = ACTIONS(1285), - [anon_sym___fastcall] = ACTIONS(1285), - [anon_sym___thiscall] = ACTIONS(1285), - [anon_sym___vectorcall] = ACTIONS(1285), - [anon_sym_LBRACE] = ACTIONS(1287), - [anon_sym_RBRACE] = ACTIONS(1287), - [anon_sym_signed] = ACTIONS(1285), - [anon_sym_unsigned] = ACTIONS(1285), - [anon_sym_long] = ACTIONS(1285), - [anon_sym_short] = ACTIONS(1285), - [anon_sym_static] = ACTIONS(1285), - [anon_sym_auto] = ACTIONS(1285), - [anon_sym_register] = ACTIONS(1285), - [anon_sym_inline] = ACTIONS(1285), - [anon_sym___inline] = ACTIONS(1285), - [anon_sym___inline__] = ACTIONS(1285), - [anon_sym___forceinline] = ACTIONS(1285), - [anon_sym_thread_local] = ACTIONS(1285), - [anon_sym___thread] = ACTIONS(1285), - [anon_sym_const] = ACTIONS(1285), - [anon_sym_constexpr] = ACTIONS(1285), - [anon_sym_volatile] = ACTIONS(1285), - [anon_sym_restrict] = ACTIONS(1285), - [anon_sym___restrict__] = ACTIONS(1285), - [anon_sym__Atomic] = ACTIONS(1285), - [anon_sym__Noreturn] = ACTIONS(1285), - [anon_sym_noreturn] = ACTIONS(1285), - [anon_sym_alignas] = ACTIONS(1285), - [anon_sym__Alignas] = ACTIONS(1285), - [sym_primitive_type] = ACTIONS(1285), - [anon_sym_enum] = ACTIONS(1285), - [anon_sym_struct] = ACTIONS(1285), - [anon_sym_union] = ACTIONS(1285), - [anon_sym_if] = ACTIONS(1285), - [anon_sym_switch] = ACTIONS(1285), - [anon_sym_case] = ACTIONS(1285), - [anon_sym_default] = ACTIONS(1285), - [anon_sym_while] = ACTIONS(1285), - [anon_sym_do] = ACTIONS(1285), - [anon_sym_for] = ACTIONS(1285), - [anon_sym_return] = ACTIONS(1285), - [anon_sym_break] = ACTIONS(1285), - [anon_sym_continue] = ACTIONS(1285), - [anon_sym_goto] = ACTIONS(1285), - [anon_sym___try] = ACTIONS(1285), - [anon_sym___leave] = ACTIONS(1285), - [anon_sym_DASH_DASH] = ACTIONS(1287), - [anon_sym_PLUS_PLUS] = ACTIONS(1287), - [anon_sym_sizeof] = ACTIONS(1285), - [anon_sym___alignof__] = ACTIONS(1285), - [anon_sym___alignof] = ACTIONS(1285), - [anon_sym__alignof] = ACTIONS(1285), - [anon_sym_alignof] = ACTIONS(1285), - [anon_sym__Alignof] = ACTIONS(1285), - [anon_sym_offsetof] = ACTIONS(1285), - [anon_sym__Generic] = ACTIONS(1285), - [anon_sym_asm] = ACTIONS(1285), - [anon_sym___asm__] = ACTIONS(1285), - [sym_number_literal] = ACTIONS(1287), - [anon_sym_L_SQUOTE] = ACTIONS(1287), - [anon_sym_u_SQUOTE] = ACTIONS(1287), - [anon_sym_U_SQUOTE] = ACTIONS(1287), - [anon_sym_u8_SQUOTE] = ACTIONS(1287), - [anon_sym_SQUOTE] = ACTIONS(1287), - [anon_sym_L_DQUOTE] = ACTIONS(1287), - [anon_sym_u_DQUOTE] = ACTIONS(1287), - [anon_sym_U_DQUOTE] = ACTIONS(1287), - [anon_sym_u8_DQUOTE] = ACTIONS(1287), - [anon_sym_DQUOTE] = ACTIONS(1287), - [sym_true] = ACTIONS(1285), - [sym_false] = ACTIONS(1285), - [anon_sym_NULL] = ACTIONS(1285), - [anon_sym_nullptr] = ACTIONS(1285), + [319] = { + [sym_identifier] = ACTIONS(1325), + [aux_sym_preproc_include_token1] = ACTIONS(1325), + [aux_sym_preproc_def_token1] = ACTIONS(1325), + [aux_sym_preproc_if_token1] = ACTIONS(1325), + [aux_sym_preproc_if_token2] = ACTIONS(1325), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1325), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1325), + [sym_preproc_directive] = ACTIONS(1325), + [anon_sym_LPAREN2] = ACTIONS(1327), + [anon_sym_BANG] = ACTIONS(1327), + [anon_sym_TILDE] = ACTIONS(1327), + [anon_sym_DASH] = ACTIONS(1325), + [anon_sym_PLUS] = ACTIONS(1325), + [anon_sym_STAR] = ACTIONS(1327), + [anon_sym_AMP] = ACTIONS(1327), + [anon_sym_SEMI] = ACTIONS(1327), + [anon_sym___extension__] = ACTIONS(1325), + [anon_sym_typedef] = ACTIONS(1325), + [anon_sym_extern] = ACTIONS(1325), + [anon_sym___attribute__] = ACTIONS(1325), + [anon_sym___scanf] = ACTIONS(1325), + [anon_sym___printf] = ACTIONS(1325), + [anon_sym___read_mostly] = ACTIONS(1325), + [anon_sym___must_hold] = ACTIONS(1325), + [anon_sym___ro_after_init] = ACTIONS(1325), + [anon_sym___noreturn] = ACTIONS(1325), + [anon_sym___cold] = ACTIONS(1325), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1327), + [anon_sym___declspec] = ACTIONS(1325), + [anon_sym___init] = ACTIONS(1325), + [anon_sym___exit] = ACTIONS(1325), + [anon_sym___cdecl] = ACTIONS(1325), + [anon_sym___clrcall] = ACTIONS(1325), + [anon_sym___stdcall] = ACTIONS(1325), + [anon_sym___fastcall] = ACTIONS(1325), + [anon_sym___thiscall] = ACTIONS(1325), + [anon_sym___vectorcall] = ACTIONS(1325), + [anon_sym_LBRACE] = ACTIONS(1327), + [anon_sym_signed] = ACTIONS(1325), + [anon_sym_unsigned] = ACTIONS(1325), + [anon_sym_long] = ACTIONS(1325), + [anon_sym_short] = ACTIONS(1325), + [anon_sym_static] = ACTIONS(1325), + [anon_sym_auto] = ACTIONS(1325), + [anon_sym_register] = ACTIONS(1325), + [anon_sym_inline] = ACTIONS(1325), + [anon_sym___inline] = ACTIONS(1325), + [anon_sym___inline__] = ACTIONS(1325), + [anon_sym___forceinline] = ACTIONS(1325), + [anon_sym_thread_local] = ACTIONS(1325), + [anon_sym___thread] = ACTIONS(1325), + [anon_sym_const] = ACTIONS(1325), + [anon_sym_constexpr] = ACTIONS(1325), + [anon_sym_volatile] = ACTIONS(1325), + [anon_sym_restrict] = ACTIONS(1325), + [anon_sym___restrict__] = ACTIONS(1325), + [anon_sym__Atomic] = ACTIONS(1325), + [anon_sym__Noreturn] = ACTIONS(1325), + [anon_sym_noreturn] = ACTIONS(1325), + [anon_sym_alignas] = ACTIONS(1325), + [anon_sym__Alignas] = ACTIONS(1325), + [sym_primitive_type] = ACTIONS(1325), + [anon_sym_enum] = ACTIONS(1325), + [anon_sym_struct] = ACTIONS(1325), + [anon_sym_union] = ACTIONS(1325), + [anon_sym_if] = ACTIONS(1325), + [anon_sym_switch] = ACTIONS(1325), + [anon_sym_case] = ACTIONS(1325), + [anon_sym_default] = ACTIONS(1325), + [anon_sym_while] = ACTIONS(1325), + [anon_sym_do] = ACTIONS(1325), + [anon_sym_for] = ACTIONS(1325), + [anon_sym_return] = ACTIONS(1325), + [anon_sym_break] = ACTIONS(1325), + [anon_sym_continue] = ACTIONS(1325), + [anon_sym_goto] = ACTIONS(1325), + [anon_sym___try] = ACTIONS(1325), + [anon_sym___leave] = ACTIONS(1325), + [anon_sym_DASH_DASH] = ACTIONS(1327), + [anon_sym_PLUS_PLUS] = ACTIONS(1327), + [anon_sym_sizeof] = ACTIONS(1325), + [anon_sym___alignof__] = ACTIONS(1325), + [anon_sym___alignof] = ACTIONS(1325), + [anon_sym__alignof] = ACTIONS(1325), + [anon_sym_alignof] = ACTIONS(1325), + [anon_sym__Alignof] = ACTIONS(1325), + [anon_sym_offsetof] = ACTIONS(1325), + [anon_sym__Generic] = ACTIONS(1325), + [anon_sym_asm] = ACTIONS(1325), + [anon_sym___asm__] = ACTIONS(1325), + [sym_number_literal] = ACTIONS(1327), + [anon_sym_L_SQUOTE] = ACTIONS(1327), + [anon_sym_u_SQUOTE] = ACTIONS(1327), + [anon_sym_U_SQUOTE] = ACTIONS(1327), + [anon_sym_u8_SQUOTE] = ACTIONS(1327), + [anon_sym_SQUOTE] = ACTIONS(1327), + [anon_sym_L_DQUOTE] = ACTIONS(1327), + [anon_sym_u_DQUOTE] = ACTIONS(1327), + [anon_sym_U_DQUOTE] = ACTIONS(1327), + [anon_sym_u8_DQUOTE] = ACTIONS(1327), + [anon_sym_DQUOTE] = ACTIONS(1327), + [sym_true] = ACTIONS(1325), + [sym_false] = ACTIONS(1325), + [anon_sym_NULL] = ACTIONS(1325), + [anon_sym_nullptr] = ACTIONS(1325), + [sym_comment] = ACTIONS(3), + }, + [320] = { + [sym_identifier] = ACTIONS(1419), + [aux_sym_preproc_include_token1] = ACTIONS(1419), + [aux_sym_preproc_def_token1] = ACTIONS(1419), + [aux_sym_preproc_if_token1] = ACTIONS(1419), + [aux_sym_preproc_if_token2] = ACTIONS(1419), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1419), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1419), + [sym_preproc_directive] = ACTIONS(1419), + [anon_sym_LPAREN2] = ACTIONS(1421), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1419), + [anon_sym_PLUS] = ACTIONS(1419), + [anon_sym_STAR] = ACTIONS(1421), + [anon_sym_AMP] = ACTIONS(1421), + [anon_sym_SEMI] = ACTIONS(1421), + [anon_sym___extension__] = ACTIONS(1419), + [anon_sym_typedef] = ACTIONS(1419), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym___attribute__] = ACTIONS(1419), + [anon_sym___scanf] = ACTIONS(1419), + [anon_sym___printf] = ACTIONS(1419), + [anon_sym___read_mostly] = ACTIONS(1419), + [anon_sym___must_hold] = ACTIONS(1419), + [anon_sym___ro_after_init] = ACTIONS(1419), + [anon_sym___noreturn] = ACTIONS(1419), + [anon_sym___cold] = ACTIONS(1419), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1421), + [anon_sym___declspec] = ACTIONS(1419), + [anon_sym___init] = ACTIONS(1419), + [anon_sym___exit] = ACTIONS(1419), + [anon_sym___cdecl] = ACTIONS(1419), + [anon_sym___clrcall] = ACTIONS(1419), + [anon_sym___stdcall] = ACTIONS(1419), + [anon_sym___fastcall] = ACTIONS(1419), + [anon_sym___thiscall] = ACTIONS(1419), + [anon_sym___vectorcall] = ACTIONS(1419), + [anon_sym_LBRACE] = ACTIONS(1421), + [anon_sym_signed] = ACTIONS(1419), + [anon_sym_unsigned] = ACTIONS(1419), + [anon_sym_long] = ACTIONS(1419), + [anon_sym_short] = ACTIONS(1419), + [anon_sym_static] = ACTIONS(1419), + [anon_sym_auto] = ACTIONS(1419), + [anon_sym_register] = ACTIONS(1419), + [anon_sym_inline] = ACTIONS(1419), + [anon_sym___inline] = ACTIONS(1419), + [anon_sym___inline__] = ACTIONS(1419), + [anon_sym___forceinline] = ACTIONS(1419), + [anon_sym_thread_local] = ACTIONS(1419), + [anon_sym___thread] = ACTIONS(1419), + [anon_sym_const] = ACTIONS(1419), + [anon_sym_constexpr] = ACTIONS(1419), + [anon_sym_volatile] = ACTIONS(1419), + [anon_sym_restrict] = ACTIONS(1419), + [anon_sym___restrict__] = ACTIONS(1419), + [anon_sym__Atomic] = ACTIONS(1419), + [anon_sym__Noreturn] = ACTIONS(1419), + [anon_sym_noreturn] = ACTIONS(1419), + [anon_sym_alignas] = ACTIONS(1419), + [anon_sym__Alignas] = ACTIONS(1419), + [sym_primitive_type] = ACTIONS(1419), + [anon_sym_enum] = ACTIONS(1419), + [anon_sym_struct] = ACTIONS(1419), + [anon_sym_union] = ACTIONS(1419), + [anon_sym_if] = ACTIONS(1419), + [anon_sym_switch] = ACTIONS(1419), + [anon_sym_case] = ACTIONS(1419), + [anon_sym_default] = ACTIONS(1419), + [anon_sym_while] = ACTIONS(1419), + [anon_sym_do] = ACTIONS(1419), + [anon_sym_for] = ACTIONS(1419), + [anon_sym_return] = ACTIONS(1419), + [anon_sym_break] = ACTIONS(1419), + [anon_sym_continue] = ACTIONS(1419), + [anon_sym_goto] = ACTIONS(1419), + [anon_sym___try] = ACTIONS(1419), + [anon_sym___leave] = ACTIONS(1419), + [anon_sym_DASH_DASH] = ACTIONS(1421), + [anon_sym_PLUS_PLUS] = ACTIONS(1421), + [anon_sym_sizeof] = ACTIONS(1419), + [anon_sym___alignof__] = ACTIONS(1419), + [anon_sym___alignof] = ACTIONS(1419), + [anon_sym__alignof] = ACTIONS(1419), + [anon_sym_alignof] = ACTIONS(1419), + [anon_sym__Alignof] = ACTIONS(1419), + [anon_sym_offsetof] = ACTIONS(1419), + [anon_sym__Generic] = ACTIONS(1419), + [anon_sym_asm] = ACTIONS(1419), + [anon_sym___asm__] = ACTIONS(1419), + [sym_number_literal] = ACTIONS(1421), + [anon_sym_L_SQUOTE] = ACTIONS(1421), + [anon_sym_u_SQUOTE] = ACTIONS(1421), + [anon_sym_U_SQUOTE] = ACTIONS(1421), + [anon_sym_u8_SQUOTE] = ACTIONS(1421), + [anon_sym_SQUOTE] = ACTIONS(1421), + [anon_sym_L_DQUOTE] = ACTIONS(1421), + [anon_sym_u_DQUOTE] = ACTIONS(1421), + [anon_sym_U_DQUOTE] = ACTIONS(1421), + [anon_sym_u8_DQUOTE] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1421), + [sym_true] = ACTIONS(1419), + [sym_false] = ACTIONS(1419), + [anon_sym_NULL] = ACTIONS(1419), + [anon_sym_nullptr] = ACTIONS(1419), + [sym_comment] = ACTIONS(3), + }, + [321] = { + [sym_identifier] = ACTIONS(1407), + [aux_sym_preproc_include_token1] = ACTIONS(1407), + [aux_sym_preproc_def_token1] = ACTIONS(1407), + [aux_sym_preproc_if_token1] = ACTIONS(1407), + [aux_sym_preproc_if_token2] = ACTIONS(1407), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1407), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1407), + [sym_preproc_directive] = ACTIONS(1407), + [anon_sym_LPAREN2] = ACTIONS(1409), + [anon_sym_BANG] = ACTIONS(1409), + [anon_sym_TILDE] = ACTIONS(1409), + [anon_sym_DASH] = ACTIONS(1407), + [anon_sym_PLUS] = ACTIONS(1407), + [anon_sym_STAR] = ACTIONS(1409), + [anon_sym_AMP] = ACTIONS(1409), + [anon_sym_SEMI] = ACTIONS(1409), + [anon_sym___extension__] = ACTIONS(1407), + [anon_sym_typedef] = ACTIONS(1407), + [anon_sym_extern] = ACTIONS(1407), + [anon_sym___attribute__] = ACTIONS(1407), + [anon_sym___scanf] = ACTIONS(1407), + [anon_sym___printf] = ACTIONS(1407), + [anon_sym___read_mostly] = ACTIONS(1407), + [anon_sym___must_hold] = ACTIONS(1407), + [anon_sym___ro_after_init] = ACTIONS(1407), + [anon_sym___noreturn] = ACTIONS(1407), + [anon_sym___cold] = ACTIONS(1407), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1409), + [anon_sym___declspec] = ACTIONS(1407), + [anon_sym___init] = ACTIONS(1407), + [anon_sym___exit] = ACTIONS(1407), + [anon_sym___cdecl] = ACTIONS(1407), + [anon_sym___clrcall] = ACTIONS(1407), + [anon_sym___stdcall] = ACTIONS(1407), + [anon_sym___fastcall] = ACTIONS(1407), + [anon_sym___thiscall] = ACTIONS(1407), + [anon_sym___vectorcall] = ACTIONS(1407), + [anon_sym_LBRACE] = ACTIONS(1409), + [anon_sym_signed] = ACTIONS(1407), + [anon_sym_unsigned] = ACTIONS(1407), + [anon_sym_long] = ACTIONS(1407), + [anon_sym_short] = ACTIONS(1407), + [anon_sym_static] = ACTIONS(1407), + [anon_sym_auto] = ACTIONS(1407), + [anon_sym_register] = ACTIONS(1407), + [anon_sym_inline] = ACTIONS(1407), + [anon_sym___inline] = ACTIONS(1407), + [anon_sym___inline__] = ACTIONS(1407), + [anon_sym___forceinline] = ACTIONS(1407), + [anon_sym_thread_local] = ACTIONS(1407), + [anon_sym___thread] = ACTIONS(1407), + [anon_sym_const] = ACTIONS(1407), + [anon_sym_constexpr] = ACTIONS(1407), + [anon_sym_volatile] = ACTIONS(1407), + [anon_sym_restrict] = ACTIONS(1407), + [anon_sym___restrict__] = ACTIONS(1407), + [anon_sym__Atomic] = ACTIONS(1407), + [anon_sym__Noreturn] = ACTIONS(1407), + [anon_sym_noreturn] = ACTIONS(1407), + [anon_sym_alignas] = ACTIONS(1407), + [anon_sym__Alignas] = ACTIONS(1407), + [sym_primitive_type] = ACTIONS(1407), + [anon_sym_enum] = ACTIONS(1407), + [anon_sym_struct] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1407), + [anon_sym_if] = ACTIONS(1407), + [anon_sym_switch] = ACTIONS(1407), + [anon_sym_case] = ACTIONS(1407), + [anon_sym_default] = ACTIONS(1407), + [anon_sym_while] = ACTIONS(1407), + [anon_sym_do] = ACTIONS(1407), + [anon_sym_for] = ACTIONS(1407), + [anon_sym_return] = ACTIONS(1407), + [anon_sym_break] = ACTIONS(1407), + [anon_sym_continue] = ACTIONS(1407), + [anon_sym_goto] = ACTIONS(1407), + [anon_sym___try] = ACTIONS(1407), + [anon_sym___leave] = ACTIONS(1407), + [anon_sym_DASH_DASH] = ACTIONS(1409), + [anon_sym_PLUS_PLUS] = ACTIONS(1409), + [anon_sym_sizeof] = ACTIONS(1407), + [anon_sym___alignof__] = ACTIONS(1407), + [anon_sym___alignof] = ACTIONS(1407), + [anon_sym__alignof] = ACTIONS(1407), + [anon_sym_alignof] = ACTIONS(1407), + [anon_sym__Alignof] = ACTIONS(1407), + [anon_sym_offsetof] = ACTIONS(1407), + [anon_sym__Generic] = ACTIONS(1407), + [anon_sym_asm] = ACTIONS(1407), + [anon_sym___asm__] = ACTIONS(1407), + [sym_number_literal] = ACTIONS(1409), + [anon_sym_L_SQUOTE] = ACTIONS(1409), + [anon_sym_u_SQUOTE] = ACTIONS(1409), + [anon_sym_U_SQUOTE] = ACTIONS(1409), + [anon_sym_u8_SQUOTE] = ACTIONS(1409), + [anon_sym_SQUOTE] = ACTIONS(1409), + [anon_sym_L_DQUOTE] = ACTIONS(1409), + [anon_sym_u_DQUOTE] = ACTIONS(1409), + [anon_sym_U_DQUOTE] = ACTIONS(1409), + [anon_sym_u8_DQUOTE] = ACTIONS(1409), + [anon_sym_DQUOTE] = ACTIONS(1409), + [sym_true] = ACTIONS(1407), + [sym_false] = ACTIONS(1407), + [anon_sym_NULL] = ACTIONS(1407), + [anon_sym_nullptr] = ACTIONS(1407), + [sym_comment] = ACTIONS(3), + }, + [322] = { + [sym_identifier] = ACTIONS(1407), + [aux_sym_preproc_include_token1] = ACTIONS(1407), + [aux_sym_preproc_def_token1] = ACTIONS(1407), + [aux_sym_preproc_if_token1] = ACTIONS(1407), + [aux_sym_preproc_if_token2] = ACTIONS(1407), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1407), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1407), + [sym_preproc_directive] = ACTIONS(1407), + [anon_sym_LPAREN2] = ACTIONS(1409), + [anon_sym_BANG] = ACTIONS(1409), + [anon_sym_TILDE] = ACTIONS(1409), + [anon_sym_DASH] = ACTIONS(1407), + [anon_sym_PLUS] = ACTIONS(1407), + [anon_sym_STAR] = ACTIONS(1409), + [anon_sym_AMP] = ACTIONS(1409), + [anon_sym_SEMI] = ACTIONS(1409), + [anon_sym___extension__] = ACTIONS(1407), + [anon_sym_typedef] = ACTIONS(1407), + [anon_sym_extern] = ACTIONS(1407), + [anon_sym___attribute__] = ACTIONS(1407), + [anon_sym___scanf] = ACTIONS(1407), + [anon_sym___printf] = ACTIONS(1407), + [anon_sym___read_mostly] = ACTIONS(1407), + [anon_sym___must_hold] = ACTIONS(1407), + [anon_sym___ro_after_init] = ACTIONS(1407), + [anon_sym___noreturn] = ACTIONS(1407), + [anon_sym___cold] = ACTIONS(1407), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1409), + [anon_sym___declspec] = ACTIONS(1407), + [anon_sym___init] = ACTIONS(1407), + [anon_sym___exit] = ACTIONS(1407), + [anon_sym___cdecl] = ACTIONS(1407), + [anon_sym___clrcall] = ACTIONS(1407), + [anon_sym___stdcall] = ACTIONS(1407), + [anon_sym___fastcall] = ACTIONS(1407), + [anon_sym___thiscall] = ACTIONS(1407), + [anon_sym___vectorcall] = ACTIONS(1407), + [anon_sym_LBRACE] = ACTIONS(1409), + [anon_sym_signed] = ACTIONS(1407), + [anon_sym_unsigned] = ACTIONS(1407), + [anon_sym_long] = ACTIONS(1407), + [anon_sym_short] = ACTIONS(1407), + [anon_sym_static] = ACTIONS(1407), + [anon_sym_auto] = ACTIONS(1407), + [anon_sym_register] = ACTIONS(1407), + [anon_sym_inline] = ACTIONS(1407), + [anon_sym___inline] = ACTIONS(1407), + [anon_sym___inline__] = ACTIONS(1407), + [anon_sym___forceinline] = ACTIONS(1407), + [anon_sym_thread_local] = ACTIONS(1407), + [anon_sym___thread] = ACTIONS(1407), + [anon_sym_const] = ACTIONS(1407), + [anon_sym_constexpr] = ACTIONS(1407), + [anon_sym_volatile] = ACTIONS(1407), + [anon_sym_restrict] = ACTIONS(1407), + [anon_sym___restrict__] = ACTIONS(1407), + [anon_sym__Atomic] = ACTIONS(1407), + [anon_sym__Noreturn] = ACTIONS(1407), + [anon_sym_noreturn] = ACTIONS(1407), + [anon_sym_alignas] = ACTIONS(1407), + [anon_sym__Alignas] = ACTIONS(1407), + [sym_primitive_type] = ACTIONS(1407), + [anon_sym_enum] = ACTIONS(1407), + [anon_sym_struct] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1407), + [anon_sym_if] = ACTIONS(1407), + [anon_sym_switch] = ACTIONS(1407), + [anon_sym_case] = ACTIONS(1407), + [anon_sym_default] = ACTIONS(1407), + [anon_sym_while] = ACTIONS(1407), + [anon_sym_do] = ACTIONS(1407), + [anon_sym_for] = ACTIONS(1407), + [anon_sym_return] = ACTIONS(1407), + [anon_sym_break] = ACTIONS(1407), + [anon_sym_continue] = ACTIONS(1407), + [anon_sym_goto] = ACTIONS(1407), + [anon_sym___try] = ACTIONS(1407), + [anon_sym___leave] = ACTIONS(1407), + [anon_sym_DASH_DASH] = ACTIONS(1409), + [anon_sym_PLUS_PLUS] = ACTIONS(1409), + [anon_sym_sizeof] = ACTIONS(1407), + [anon_sym___alignof__] = ACTIONS(1407), + [anon_sym___alignof] = ACTIONS(1407), + [anon_sym__alignof] = ACTIONS(1407), + [anon_sym_alignof] = ACTIONS(1407), + [anon_sym__Alignof] = ACTIONS(1407), + [anon_sym_offsetof] = ACTIONS(1407), + [anon_sym__Generic] = ACTIONS(1407), + [anon_sym_asm] = ACTIONS(1407), + [anon_sym___asm__] = ACTIONS(1407), + [sym_number_literal] = ACTIONS(1409), + [anon_sym_L_SQUOTE] = ACTIONS(1409), + [anon_sym_u_SQUOTE] = ACTIONS(1409), + [anon_sym_U_SQUOTE] = ACTIONS(1409), + [anon_sym_u8_SQUOTE] = ACTIONS(1409), + [anon_sym_SQUOTE] = ACTIONS(1409), + [anon_sym_L_DQUOTE] = ACTIONS(1409), + [anon_sym_u_DQUOTE] = ACTIONS(1409), + [anon_sym_U_DQUOTE] = ACTIONS(1409), + [anon_sym_u8_DQUOTE] = ACTIONS(1409), + [anon_sym_DQUOTE] = ACTIONS(1409), + [sym_true] = ACTIONS(1407), + [sym_false] = ACTIONS(1407), + [anon_sym_NULL] = ACTIONS(1407), + [anon_sym_nullptr] = ACTIONS(1407), [sym_comment] = ACTIONS(3), }, - [280] = { + [323] = { + [sym_identifier] = ACTIONS(1385), + [aux_sym_preproc_include_token1] = ACTIONS(1385), + [aux_sym_preproc_def_token1] = ACTIONS(1385), + [aux_sym_preproc_if_token1] = ACTIONS(1385), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1385), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1385), + [sym_preproc_directive] = ACTIONS(1385), + [anon_sym_LPAREN2] = ACTIONS(1387), + [anon_sym_BANG] = ACTIONS(1387), + [anon_sym_TILDE] = ACTIONS(1387), + [anon_sym_DASH] = ACTIONS(1385), + [anon_sym_PLUS] = ACTIONS(1385), + [anon_sym_STAR] = ACTIONS(1387), + [anon_sym_AMP] = ACTIONS(1387), + [anon_sym_SEMI] = ACTIONS(1387), + [anon_sym___extension__] = ACTIONS(1385), + [anon_sym_typedef] = ACTIONS(1385), + [anon_sym_extern] = ACTIONS(1385), + [anon_sym___attribute__] = ACTIONS(1385), + [anon_sym___scanf] = ACTIONS(1385), + [anon_sym___printf] = ACTIONS(1385), + [anon_sym___read_mostly] = ACTIONS(1385), + [anon_sym___must_hold] = ACTIONS(1385), + [anon_sym___ro_after_init] = ACTIONS(1385), + [anon_sym___noreturn] = ACTIONS(1385), + [anon_sym___cold] = ACTIONS(1385), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1387), + [anon_sym___declspec] = ACTIONS(1385), + [anon_sym___init] = ACTIONS(1385), + [anon_sym___exit] = ACTIONS(1385), + [anon_sym___cdecl] = ACTIONS(1385), + [anon_sym___clrcall] = ACTIONS(1385), + [anon_sym___stdcall] = ACTIONS(1385), + [anon_sym___fastcall] = ACTIONS(1385), + [anon_sym___thiscall] = ACTIONS(1385), + [anon_sym___vectorcall] = ACTIONS(1385), + [anon_sym_LBRACE] = ACTIONS(1387), + [anon_sym_RBRACE] = ACTIONS(1387), + [anon_sym_signed] = ACTIONS(1385), + [anon_sym_unsigned] = ACTIONS(1385), + [anon_sym_long] = ACTIONS(1385), + [anon_sym_short] = ACTIONS(1385), + [anon_sym_static] = ACTIONS(1385), + [anon_sym_auto] = ACTIONS(1385), + [anon_sym_register] = ACTIONS(1385), + [anon_sym_inline] = ACTIONS(1385), + [anon_sym___inline] = ACTIONS(1385), + [anon_sym___inline__] = ACTIONS(1385), + [anon_sym___forceinline] = ACTIONS(1385), + [anon_sym_thread_local] = ACTIONS(1385), + [anon_sym___thread] = ACTIONS(1385), + [anon_sym_const] = ACTIONS(1385), + [anon_sym_constexpr] = ACTIONS(1385), + [anon_sym_volatile] = ACTIONS(1385), + [anon_sym_restrict] = ACTIONS(1385), + [anon_sym___restrict__] = ACTIONS(1385), + [anon_sym__Atomic] = ACTIONS(1385), + [anon_sym__Noreturn] = ACTIONS(1385), + [anon_sym_noreturn] = ACTIONS(1385), + [anon_sym_alignas] = ACTIONS(1385), + [anon_sym__Alignas] = ACTIONS(1385), + [sym_primitive_type] = ACTIONS(1385), + [anon_sym_enum] = ACTIONS(1385), + [anon_sym_struct] = ACTIONS(1385), + [anon_sym_union] = ACTIONS(1385), + [anon_sym_if] = ACTIONS(1385), + [anon_sym_switch] = ACTIONS(1385), + [anon_sym_case] = ACTIONS(1385), + [anon_sym_default] = ACTIONS(1385), + [anon_sym_while] = ACTIONS(1385), + [anon_sym_do] = ACTIONS(1385), + [anon_sym_for] = ACTIONS(1385), + [anon_sym_return] = ACTIONS(1385), + [anon_sym_break] = ACTIONS(1385), + [anon_sym_continue] = ACTIONS(1385), + [anon_sym_goto] = ACTIONS(1385), + [anon_sym___try] = ACTIONS(1385), + [anon_sym___leave] = ACTIONS(1385), + [anon_sym_DASH_DASH] = ACTIONS(1387), + [anon_sym_PLUS_PLUS] = ACTIONS(1387), + [anon_sym_sizeof] = ACTIONS(1385), + [anon_sym___alignof__] = ACTIONS(1385), + [anon_sym___alignof] = ACTIONS(1385), + [anon_sym__alignof] = ACTIONS(1385), + [anon_sym_alignof] = ACTIONS(1385), + [anon_sym__Alignof] = ACTIONS(1385), + [anon_sym_offsetof] = ACTIONS(1385), + [anon_sym__Generic] = ACTIONS(1385), + [anon_sym_asm] = ACTIONS(1385), + [anon_sym___asm__] = ACTIONS(1385), + [sym_number_literal] = ACTIONS(1387), + [anon_sym_L_SQUOTE] = ACTIONS(1387), + [anon_sym_u_SQUOTE] = ACTIONS(1387), + [anon_sym_U_SQUOTE] = ACTIONS(1387), + [anon_sym_u8_SQUOTE] = ACTIONS(1387), + [anon_sym_SQUOTE] = ACTIONS(1387), + [anon_sym_L_DQUOTE] = ACTIONS(1387), + [anon_sym_u_DQUOTE] = ACTIONS(1387), + [anon_sym_U_DQUOTE] = ACTIONS(1387), + [anon_sym_u8_DQUOTE] = ACTIONS(1387), + [anon_sym_DQUOTE] = ACTIONS(1387), + [sym_true] = ACTIONS(1385), + [sym_false] = ACTIONS(1385), + [anon_sym_NULL] = ACTIONS(1385), + [anon_sym_nullptr] = ACTIONS(1385), + [sym_comment] = ACTIONS(3), + }, + [324] = { + [sym_identifier] = ACTIONS(1389), + [aux_sym_preproc_include_token1] = ACTIONS(1389), + [aux_sym_preproc_def_token1] = ACTIONS(1389), + [aux_sym_preproc_if_token1] = ACTIONS(1389), + [aux_sym_preproc_if_token2] = ACTIONS(1389), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1389), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1389), + [sym_preproc_directive] = ACTIONS(1389), + [anon_sym_LPAREN2] = ACTIONS(1391), + [anon_sym_BANG] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1391), + [anon_sym_DASH] = ACTIONS(1389), + [anon_sym_PLUS] = ACTIONS(1389), + [anon_sym_STAR] = ACTIONS(1391), + [anon_sym_AMP] = ACTIONS(1391), + [anon_sym_SEMI] = ACTIONS(1391), + [anon_sym___extension__] = ACTIONS(1389), + [anon_sym_typedef] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1389), + [anon_sym___attribute__] = ACTIONS(1389), + [anon_sym___scanf] = ACTIONS(1389), + [anon_sym___printf] = ACTIONS(1389), + [anon_sym___read_mostly] = ACTIONS(1389), + [anon_sym___must_hold] = ACTIONS(1389), + [anon_sym___ro_after_init] = ACTIONS(1389), + [anon_sym___noreturn] = ACTIONS(1389), + [anon_sym___cold] = ACTIONS(1389), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1391), + [anon_sym___declspec] = ACTIONS(1389), + [anon_sym___init] = ACTIONS(1389), + [anon_sym___exit] = ACTIONS(1389), + [anon_sym___cdecl] = ACTIONS(1389), + [anon_sym___clrcall] = ACTIONS(1389), + [anon_sym___stdcall] = ACTIONS(1389), + [anon_sym___fastcall] = ACTIONS(1389), + [anon_sym___thiscall] = ACTIONS(1389), + [anon_sym___vectorcall] = ACTIONS(1389), + [anon_sym_LBRACE] = ACTIONS(1391), + [anon_sym_signed] = ACTIONS(1389), + [anon_sym_unsigned] = ACTIONS(1389), + [anon_sym_long] = ACTIONS(1389), + [anon_sym_short] = ACTIONS(1389), + [anon_sym_static] = ACTIONS(1389), + [anon_sym_auto] = ACTIONS(1389), + [anon_sym_register] = ACTIONS(1389), + [anon_sym_inline] = ACTIONS(1389), + [anon_sym___inline] = ACTIONS(1389), + [anon_sym___inline__] = ACTIONS(1389), + [anon_sym___forceinline] = ACTIONS(1389), + [anon_sym_thread_local] = ACTIONS(1389), + [anon_sym___thread] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_constexpr] = ACTIONS(1389), + [anon_sym_volatile] = ACTIONS(1389), + [anon_sym_restrict] = ACTIONS(1389), + [anon_sym___restrict__] = ACTIONS(1389), + [anon_sym__Atomic] = ACTIONS(1389), + [anon_sym__Noreturn] = ACTIONS(1389), + [anon_sym_noreturn] = ACTIONS(1389), + [anon_sym_alignas] = ACTIONS(1389), + [anon_sym__Alignas] = ACTIONS(1389), + [sym_primitive_type] = ACTIONS(1389), + [anon_sym_enum] = ACTIONS(1389), + [anon_sym_struct] = ACTIONS(1389), + [anon_sym_union] = ACTIONS(1389), + [anon_sym_if] = ACTIONS(1389), + [anon_sym_switch] = ACTIONS(1389), + [anon_sym_case] = ACTIONS(1389), + [anon_sym_default] = ACTIONS(1389), + [anon_sym_while] = ACTIONS(1389), + [anon_sym_do] = ACTIONS(1389), + [anon_sym_for] = ACTIONS(1389), + [anon_sym_return] = ACTIONS(1389), + [anon_sym_break] = ACTIONS(1389), + [anon_sym_continue] = ACTIONS(1389), + [anon_sym_goto] = ACTIONS(1389), + [anon_sym___try] = ACTIONS(1389), + [anon_sym___leave] = ACTIONS(1389), + [anon_sym_DASH_DASH] = ACTIONS(1391), + [anon_sym_PLUS_PLUS] = ACTIONS(1391), + [anon_sym_sizeof] = ACTIONS(1389), + [anon_sym___alignof__] = ACTIONS(1389), + [anon_sym___alignof] = ACTIONS(1389), + [anon_sym__alignof] = ACTIONS(1389), + [anon_sym_alignof] = ACTIONS(1389), + [anon_sym__Alignof] = ACTIONS(1389), + [anon_sym_offsetof] = ACTIONS(1389), + [anon_sym__Generic] = ACTIONS(1389), + [anon_sym_asm] = ACTIONS(1389), + [anon_sym___asm__] = ACTIONS(1389), + [sym_number_literal] = ACTIONS(1391), + [anon_sym_L_SQUOTE] = ACTIONS(1391), + [anon_sym_u_SQUOTE] = ACTIONS(1391), + [anon_sym_U_SQUOTE] = ACTIONS(1391), + [anon_sym_u8_SQUOTE] = ACTIONS(1391), + [anon_sym_SQUOTE] = ACTIONS(1391), + [anon_sym_L_DQUOTE] = ACTIONS(1391), + [anon_sym_u_DQUOTE] = ACTIONS(1391), + [anon_sym_U_DQUOTE] = ACTIONS(1391), + [anon_sym_u8_DQUOTE] = ACTIONS(1391), + [anon_sym_DQUOTE] = ACTIONS(1391), + [sym_true] = ACTIONS(1389), + [sym_false] = ACTIONS(1389), + [anon_sym_NULL] = ACTIONS(1389), + [anon_sym_nullptr] = ACTIONS(1389), + [sym_comment] = ACTIONS(3), + }, + [325] = { + [sym_identifier] = ACTIONS(1381), + [aux_sym_preproc_include_token1] = ACTIONS(1381), + [aux_sym_preproc_def_token1] = ACTIONS(1381), + [aux_sym_preproc_if_token1] = ACTIONS(1381), + [aux_sym_preproc_if_token2] = ACTIONS(1381), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1381), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1381), + [sym_preproc_directive] = ACTIONS(1381), + [anon_sym_LPAREN2] = ACTIONS(1383), + [anon_sym_BANG] = ACTIONS(1383), + [anon_sym_TILDE] = ACTIONS(1383), + [anon_sym_DASH] = ACTIONS(1381), + [anon_sym_PLUS] = ACTIONS(1381), + [anon_sym_STAR] = ACTIONS(1383), + [anon_sym_AMP] = ACTIONS(1383), + [anon_sym_SEMI] = ACTIONS(1383), + [anon_sym___extension__] = ACTIONS(1381), + [anon_sym_typedef] = ACTIONS(1381), + [anon_sym_extern] = ACTIONS(1381), + [anon_sym___attribute__] = ACTIONS(1381), + [anon_sym___scanf] = ACTIONS(1381), + [anon_sym___printf] = ACTIONS(1381), + [anon_sym___read_mostly] = ACTIONS(1381), + [anon_sym___must_hold] = ACTIONS(1381), + [anon_sym___ro_after_init] = ACTIONS(1381), + [anon_sym___noreturn] = ACTIONS(1381), + [anon_sym___cold] = ACTIONS(1381), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1383), + [anon_sym___declspec] = ACTIONS(1381), + [anon_sym___init] = ACTIONS(1381), + [anon_sym___exit] = ACTIONS(1381), + [anon_sym___cdecl] = ACTIONS(1381), + [anon_sym___clrcall] = ACTIONS(1381), + [anon_sym___stdcall] = ACTIONS(1381), + [anon_sym___fastcall] = ACTIONS(1381), + [anon_sym___thiscall] = ACTIONS(1381), + [anon_sym___vectorcall] = ACTIONS(1381), + [anon_sym_LBRACE] = ACTIONS(1383), + [anon_sym_signed] = ACTIONS(1381), + [anon_sym_unsigned] = ACTIONS(1381), + [anon_sym_long] = ACTIONS(1381), + [anon_sym_short] = ACTIONS(1381), + [anon_sym_static] = ACTIONS(1381), + [anon_sym_auto] = ACTIONS(1381), + [anon_sym_register] = ACTIONS(1381), + [anon_sym_inline] = ACTIONS(1381), + [anon_sym___inline] = ACTIONS(1381), + [anon_sym___inline__] = ACTIONS(1381), + [anon_sym___forceinline] = ACTIONS(1381), + [anon_sym_thread_local] = ACTIONS(1381), + [anon_sym___thread] = ACTIONS(1381), + [anon_sym_const] = ACTIONS(1381), + [anon_sym_constexpr] = ACTIONS(1381), + [anon_sym_volatile] = ACTIONS(1381), + [anon_sym_restrict] = ACTIONS(1381), + [anon_sym___restrict__] = ACTIONS(1381), + [anon_sym__Atomic] = ACTIONS(1381), + [anon_sym__Noreturn] = ACTIONS(1381), + [anon_sym_noreturn] = ACTIONS(1381), + [anon_sym_alignas] = ACTIONS(1381), + [anon_sym__Alignas] = ACTIONS(1381), + [sym_primitive_type] = ACTIONS(1381), + [anon_sym_enum] = ACTIONS(1381), + [anon_sym_struct] = ACTIONS(1381), + [anon_sym_union] = ACTIONS(1381), + [anon_sym_if] = ACTIONS(1381), + [anon_sym_switch] = ACTIONS(1381), + [anon_sym_case] = ACTIONS(1381), + [anon_sym_default] = ACTIONS(1381), + [anon_sym_while] = ACTIONS(1381), + [anon_sym_do] = ACTIONS(1381), + [anon_sym_for] = ACTIONS(1381), + [anon_sym_return] = ACTIONS(1381), + [anon_sym_break] = ACTIONS(1381), + [anon_sym_continue] = ACTIONS(1381), + [anon_sym_goto] = ACTIONS(1381), + [anon_sym___try] = ACTIONS(1381), + [anon_sym___leave] = ACTIONS(1381), + [anon_sym_DASH_DASH] = ACTIONS(1383), + [anon_sym_PLUS_PLUS] = ACTIONS(1383), + [anon_sym_sizeof] = ACTIONS(1381), + [anon_sym___alignof__] = ACTIONS(1381), + [anon_sym___alignof] = ACTIONS(1381), + [anon_sym__alignof] = ACTIONS(1381), + [anon_sym_alignof] = ACTIONS(1381), + [anon_sym__Alignof] = ACTIONS(1381), + [anon_sym_offsetof] = ACTIONS(1381), + [anon_sym__Generic] = ACTIONS(1381), + [anon_sym_asm] = ACTIONS(1381), + [anon_sym___asm__] = ACTIONS(1381), + [sym_number_literal] = ACTIONS(1383), + [anon_sym_L_SQUOTE] = ACTIONS(1383), + [anon_sym_u_SQUOTE] = ACTIONS(1383), + [anon_sym_U_SQUOTE] = ACTIONS(1383), + [anon_sym_u8_SQUOTE] = ACTIONS(1383), + [anon_sym_SQUOTE] = ACTIONS(1383), + [anon_sym_L_DQUOTE] = ACTIONS(1383), + [anon_sym_u_DQUOTE] = ACTIONS(1383), + [anon_sym_U_DQUOTE] = ACTIONS(1383), + [anon_sym_u8_DQUOTE] = ACTIONS(1383), + [anon_sym_DQUOTE] = ACTIONS(1383), + [sym_true] = ACTIONS(1381), + [sym_false] = ACTIONS(1381), + [anon_sym_NULL] = ACTIONS(1381), + [anon_sym_nullptr] = ACTIONS(1381), + [sym_comment] = ACTIONS(3), + }, + [326] = { + [sym_identifier] = ACTIONS(1377), + [aux_sym_preproc_include_token1] = ACTIONS(1377), + [aux_sym_preproc_def_token1] = ACTIONS(1377), + [aux_sym_preproc_if_token1] = ACTIONS(1377), + [aux_sym_preproc_if_token2] = ACTIONS(1377), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1377), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1377), + [sym_preproc_directive] = ACTIONS(1377), + [anon_sym_LPAREN2] = ACTIONS(1379), + [anon_sym_BANG] = ACTIONS(1379), + [anon_sym_TILDE] = ACTIONS(1379), + [anon_sym_DASH] = ACTIONS(1377), + [anon_sym_PLUS] = ACTIONS(1377), + [anon_sym_STAR] = ACTIONS(1379), + [anon_sym_AMP] = ACTIONS(1379), + [anon_sym_SEMI] = ACTIONS(1379), + [anon_sym___extension__] = ACTIONS(1377), + [anon_sym_typedef] = ACTIONS(1377), + [anon_sym_extern] = ACTIONS(1377), + [anon_sym___attribute__] = ACTIONS(1377), + [anon_sym___scanf] = ACTIONS(1377), + [anon_sym___printf] = ACTIONS(1377), + [anon_sym___read_mostly] = ACTIONS(1377), + [anon_sym___must_hold] = ACTIONS(1377), + [anon_sym___ro_after_init] = ACTIONS(1377), + [anon_sym___noreturn] = ACTIONS(1377), + [anon_sym___cold] = ACTIONS(1377), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1379), + [anon_sym___declspec] = ACTIONS(1377), + [anon_sym___init] = ACTIONS(1377), + [anon_sym___exit] = ACTIONS(1377), + [anon_sym___cdecl] = ACTIONS(1377), + [anon_sym___clrcall] = ACTIONS(1377), + [anon_sym___stdcall] = ACTIONS(1377), + [anon_sym___fastcall] = ACTIONS(1377), + [anon_sym___thiscall] = ACTIONS(1377), + [anon_sym___vectorcall] = ACTIONS(1377), + [anon_sym_LBRACE] = ACTIONS(1379), + [anon_sym_signed] = ACTIONS(1377), + [anon_sym_unsigned] = ACTIONS(1377), + [anon_sym_long] = ACTIONS(1377), + [anon_sym_short] = ACTIONS(1377), + [anon_sym_static] = ACTIONS(1377), + [anon_sym_auto] = ACTIONS(1377), + [anon_sym_register] = ACTIONS(1377), + [anon_sym_inline] = ACTIONS(1377), + [anon_sym___inline] = ACTIONS(1377), + [anon_sym___inline__] = ACTIONS(1377), + [anon_sym___forceinline] = ACTIONS(1377), + [anon_sym_thread_local] = ACTIONS(1377), + [anon_sym___thread] = ACTIONS(1377), + [anon_sym_const] = ACTIONS(1377), + [anon_sym_constexpr] = ACTIONS(1377), + [anon_sym_volatile] = ACTIONS(1377), + [anon_sym_restrict] = ACTIONS(1377), + [anon_sym___restrict__] = ACTIONS(1377), + [anon_sym__Atomic] = ACTIONS(1377), + [anon_sym__Noreturn] = ACTIONS(1377), + [anon_sym_noreturn] = ACTIONS(1377), + [anon_sym_alignas] = ACTIONS(1377), + [anon_sym__Alignas] = ACTIONS(1377), + [sym_primitive_type] = ACTIONS(1377), + [anon_sym_enum] = ACTIONS(1377), + [anon_sym_struct] = ACTIONS(1377), + [anon_sym_union] = ACTIONS(1377), + [anon_sym_if] = ACTIONS(1377), + [anon_sym_switch] = ACTIONS(1377), + [anon_sym_case] = ACTIONS(1377), + [anon_sym_default] = ACTIONS(1377), + [anon_sym_while] = ACTIONS(1377), + [anon_sym_do] = ACTIONS(1377), + [anon_sym_for] = ACTIONS(1377), + [anon_sym_return] = ACTIONS(1377), + [anon_sym_break] = ACTIONS(1377), + [anon_sym_continue] = ACTIONS(1377), + [anon_sym_goto] = ACTIONS(1377), + [anon_sym___try] = ACTIONS(1377), + [anon_sym___leave] = ACTIONS(1377), + [anon_sym_DASH_DASH] = ACTIONS(1379), + [anon_sym_PLUS_PLUS] = ACTIONS(1379), + [anon_sym_sizeof] = ACTIONS(1377), + [anon_sym___alignof__] = ACTIONS(1377), + [anon_sym___alignof] = ACTIONS(1377), + [anon_sym__alignof] = ACTIONS(1377), + [anon_sym_alignof] = ACTIONS(1377), + [anon_sym__Alignof] = ACTIONS(1377), + [anon_sym_offsetof] = ACTIONS(1377), + [anon_sym__Generic] = ACTIONS(1377), + [anon_sym_asm] = ACTIONS(1377), + [anon_sym___asm__] = ACTIONS(1377), + [sym_number_literal] = ACTIONS(1379), + [anon_sym_L_SQUOTE] = ACTIONS(1379), + [anon_sym_u_SQUOTE] = ACTIONS(1379), + [anon_sym_U_SQUOTE] = ACTIONS(1379), + [anon_sym_u8_SQUOTE] = ACTIONS(1379), + [anon_sym_SQUOTE] = ACTIONS(1379), + [anon_sym_L_DQUOTE] = ACTIONS(1379), + [anon_sym_u_DQUOTE] = ACTIONS(1379), + [anon_sym_U_DQUOTE] = ACTIONS(1379), + [anon_sym_u8_DQUOTE] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1379), + [sym_true] = ACTIONS(1377), + [sym_false] = ACTIONS(1377), + [anon_sym_NULL] = ACTIONS(1377), + [anon_sym_nullptr] = ACTIONS(1377), + [sym_comment] = ACTIONS(3), + }, + [327] = { + [sym_identifier] = ACTIONS(1373), + [aux_sym_preproc_include_token1] = ACTIONS(1373), + [aux_sym_preproc_def_token1] = ACTIONS(1373), + [aux_sym_preproc_if_token1] = ACTIONS(1373), + [aux_sym_preproc_if_token2] = ACTIONS(1373), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1373), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1373), + [sym_preproc_directive] = ACTIONS(1373), + [anon_sym_LPAREN2] = ACTIONS(1375), + [anon_sym_BANG] = ACTIONS(1375), + [anon_sym_TILDE] = ACTIONS(1375), + [anon_sym_DASH] = ACTIONS(1373), + [anon_sym_PLUS] = ACTIONS(1373), + [anon_sym_STAR] = ACTIONS(1375), + [anon_sym_AMP] = ACTIONS(1375), + [anon_sym_SEMI] = ACTIONS(1375), + [anon_sym___extension__] = ACTIONS(1373), + [anon_sym_typedef] = ACTIONS(1373), + [anon_sym_extern] = ACTIONS(1373), + [anon_sym___attribute__] = ACTIONS(1373), + [anon_sym___scanf] = ACTIONS(1373), + [anon_sym___printf] = ACTIONS(1373), + [anon_sym___read_mostly] = ACTIONS(1373), + [anon_sym___must_hold] = ACTIONS(1373), + [anon_sym___ro_after_init] = ACTIONS(1373), + [anon_sym___noreturn] = ACTIONS(1373), + [anon_sym___cold] = ACTIONS(1373), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1375), + [anon_sym___declspec] = ACTIONS(1373), + [anon_sym___init] = ACTIONS(1373), + [anon_sym___exit] = ACTIONS(1373), + [anon_sym___cdecl] = ACTIONS(1373), + [anon_sym___clrcall] = ACTIONS(1373), + [anon_sym___stdcall] = ACTIONS(1373), + [anon_sym___fastcall] = ACTIONS(1373), + [anon_sym___thiscall] = ACTIONS(1373), + [anon_sym___vectorcall] = ACTIONS(1373), + [anon_sym_LBRACE] = ACTIONS(1375), + [anon_sym_signed] = ACTIONS(1373), + [anon_sym_unsigned] = ACTIONS(1373), + [anon_sym_long] = ACTIONS(1373), + [anon_sym_short] = ACTIONS(1373), + [anon_sym_static] = ACTIONS(1373), + [anon_sym_auto] = ACTIONS(1373), + [anon_sym_register] = ACTIONS(1373), + [anon_sym_inline] = ACTIONS(1373), + [anon_sym___inline] = ACTIONS(1373), + [anon_sym___inline__] = ACTIONS(1373), + [anon_sym___forceinline] = ACTIONS(1373), + [anon_sym_thread_local] = ACTIONS(1373), + [anon_sym___thread] = ACTIONS(1373), + [anon_sym_const] = ACTIONS(1373), + [anon_sym_constexpr] = ACTIONS(1373), + [anon_sym_volatile] = ACTIONS(1373), + [anon_sym_restrict] = ACTIONS(1373), + [anon_sym___restrict__] = ACTIONS(1373), + [anon_sym__Atomic] = ACTIONS(1373), + [anon_sym__Noreturn] = ACTIONS(1373), + [anon_sym_noreturn] = ACTIONS(1373), + [anon_sym_alignas] = ACTIONS(1373), + [anon_sym__Alignas] = ACTIONS(1373), + [sym_primitive_type] = ACTIONS(1373), + [anon_sym_enum] = ACTIONS(1373), + [anon_sym_struct] = ACTIONS(1373), + [anon_sym_union] = ACTIONS(1373), + [anon_sym_if] = ACTIONS(1373), + [anon_sym_switch] = ACTIONS(1373), + [anon_sym_case] = ACTIONS(1373), + [anon_sym_default] = ACTIONS(1373), + [anon_sym_while] = ACTIONS(1373), + [anon_sym_do] = ACTIONS(1373), + [anon_sym_for] = ACTIONS(1373), + [anon_sym_return] = ACTIONS(1373), + [anon_sym_break] = ACTIONS(1373), + [anon_sym_continue] = ACTIONS(1373), + [anon_sym_goto] = ACTIONS(1373), + [anon_sym___try] = ACTIONS(1373), + [anon_sym___leave] = ACTIONS(1373), + [anon_sym_DASH_DASH] = ACTIONS(1375), + [anon_sym_PLUS_PLUS] = ACTIONS(1375), + [anon_sym_sizeof] = ACTIONS(1373), + [anon_sym___alignof__] = ACTIONS(1373), + [anon_sym___alignof] = ACTIONS(1373), + [anon_sym__alignof] = ACTIONS(1373), + [anon_sym_alignof] = ACTIONS(1373), + [anon_sym__Alignof] = ACTIONS(1373), + [anon_sym_offsetof] = ACTIONS(1373), + [anon_sym__Generic] = ACTIONS(1373), + [anon_sym_asm] = ACTIONS(1373), + [anon_sym___asm__] = ACTIONS(1373), + [sym_number_literal] = ACTIONS(1375), + [anon_sym_L_SQUOTE] = ACTIONS(1375), + [anon_sym_u_SQUOTE] = ACTIONS(1375), + [anon_sym_U_SQUOTE] = ACTIONS(1375), + [anon_sym_u8_SQUOTE] = ACTIONS(1375), + [anon_sym_SQUOTE] = ACTIONS(1375), + [anon_sym_L_DQUOTE] = ACTIONS(1375), + [anon_sym_u_DQUOTE] = ACTIONS(1375), + [anon_sym_U_DQUOTE] = ACTIONS(1375), + [anon_sym_u8_DQUOTE] = ACTIONS(1375), + [anon_sym_DQUOTE] = ACTIONS(1375), + [sym_true] = ACTIONS(1373), + [sym_false] = ACTIONS(1373), + [anon_sym_NULL] = ACTIONS(1373), + [anon_sym_nullptr] = ACTIONS(1373), + [sym_comment] = ACTIONS(3), + }, + [328] = { + [sym_identifier] = ACTIONS(1357), + [aux_sym_preproc_include_token1] = ACTIONS(1357), + [aux_sym_preproc_def_token1] = ACTIONS(1357), + [aux_sym_preproc_if_token1] = ACTIONS(1357), + [aux_sym_preproc_if_token2] = ACTIONS(1357), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1357), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1357), + [sym_preproc_directive] = ACTIONS(1357), + [anon_sym_LPAREN2] = ACTIONS(1359), + [anon_sym_BANG] = ACTIONS(1359), + [anon_sym_TILDE] = ACTIONS(1359), + [anon_sym_DASH] = ACTIONS(1357), + [anon_sym_PLUS] = ACTIONS(1357), + [anon_sym_STAR] = ACTIONS(1359), + [anon_sym_AMP] = ACTIONS(1359), + [anon_sym_SEMI] = ACTIONS(1359), + [anon_sym___extension__] = ACTIONS(1357), + [anon_sym_typedef] = ACTIONS(1357), + [anon_sym_extern] = ACTIONS(1357), + [anon_sym___attribute__] = ACTIONS(1357), + [anon_sym___scanf] = ACTIONS(1357), + [anon_sym___printf] = ACTIONS(1357), + [anon_sym___read_mostly] = ACTIONS(1357), + [anon_sym___must_hold] = ACTIONS(1357), + [anon_sym___ro_after_init] = ACTIONS(1357), + [anon_sym___noreturn] = ACTIONS(1357), + [anon_sym___cold] = ACTIONS(1357), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1359), + [anon_sym___declspec] = ACTIONS(1357), + [anon_sym___init] = ACTIONS(1357), + [anon_sym___exit] = ACTIONS(1357), + [anon_sym___cdecl] = ACTIONS(1357), + [anon_sym___clrcall] = ACTIONS(1357), + [anon_sym___stdcall] = ACTIONS(1357), + [anon_sym___fastcall] = ACTIONS(1357), + [anon_sym___thiscall] = ACTIONS(1357), + [anon_sym___vectorcall] = ACTIONS(1357), + [anon_sym_LBRACE] = ACTIONS(1359), + [anon_sym_signed] = ACTIONS(1357), + [anon_sym_unsigned] = ACTIONS(1357), + [anon_sym_long] = ACTIONS(1357), + [anon_sym_short] = ACTIONS(1357), + [anon_sym_static] = ACTIONS(1357), + [anon_sym_auto] = ACTIONS(1357), + [anon_sym_register] = ACTIONS(1357), + [anon_sym_inline] = ACTIONS(1357), + [anon_sym___inline] = ACTIONS(1357), + [anon_sym___inline__] = ACTIONS(1357), + [anon_sym___forceinline] = ACTIONS(1357), + [anon_sym_thread_local] = ACTIONS(1357), + [anon_sym___thread] = ACTIONS(1357), + [anon_sym_const] = ACTIONS(1357), + [anon_sym_constexpr] = ACTIONS(1357), + [anon_sym_volatile] = ACTIONS(1357), + [anon_sym_restrict] = ACTIONS(1357), + [anon_sym___restrict__] = ACTIONS(1357), + [anon_sym__Atomic] = ACTIONS(1357), + [anon_sym__Noreturn] = ACTIONS(1357), + [anon_sym_noreturn] = ACTIONS(1357), + [anon_sym_alignas] = ACTIONS(1357), + [anon_sym__Alignas] = ACTIONS(1357), + [sym_primitive_type] = ACTIONS(1357), + [anon_sym_enum] = ACTIONS(1357), + [anon_sym_struct] = ACTIONS(1357), + [anon_sym_union] = ACTIONS(1357), + [anon_sym_if] = ACTIONS(1357), + [anon_sym_switch] = ACTIONS(1357), + [anon_sym_case] = ACTIONS(1357), + [anon_sym_default] = ACTIONS(1357), + [anon_sym_while] = ACTIONS(1357), + [anon_sym_do] = ACTIONS(1357), + [anon_sym_for] = ACTIONS(1357), + [anon_sym_return] = ACTIONS(1357), + [anon_sym_break] = ACTIONS(1357), + [anon_sym_continue] = ACTIONS(1357), + [anon_sym_goto] = ACTIONS(1357), + [anon_sym___try] = ACTIONS(1357), + [anon_sym___leave] = ACTIONS(1357), + [anon_sym_DASH_DASH] = ACTIONS(1359), + [anon_sym_PLUS_PLUS] = ACTIONS(1359), + [anon_sym_sizeof] = ACTIONS(1357), + [anon_sym___alignof__] = ACTIONS(1357), + [anon_sym___alignof] = ACTIONS(1357), + [anon_sym__alignof] = ACTIONS(1357), + [anon_sym_alignof] = ACTIONS(1357), + [anon_sym__Alignof] = ACTIONS(1357), + [anon_sym_offsetof] = ACTIONS(1357), + [anon_sym__Generic] = ACTIONS(1357), + [anon_sym_asm] = ACTIONS(1357), + [anon_sym___asm__] = ACTIONS(1357), + [sym_number_literal] = ACTIONS(1359), + [anon_sym_L_SQUOTE] = ACTIONS(1359), + [anon_sym_u_SQUOTE] = ACTIONS(1359), + [anon_sym_U_SQUOTE] = ACTIONS(1359), + [anon_sym_u8_SQUOTE] = ACTIONS(1359), + [anon_sym_SQUOTE] = ACTIONS(1359), + [anon_sym_L_DQUOTE] = ACTIONS(1359), + [anon_sym_u_DQUOTE] = ACTIONS(1359), + [anon_sym_U_DQUOTE] = ACTIONS(1359), + [anon_sym_u8_DQUOTE] = ACTIONS(1359), + [anon_sym_DQUOTE] = ACTIONS(1359), + [sym_true] = ACTIONS(1357), + [sym_false] = ACTIONS(1357), + [anon_sym_NULL] = ACTIONS(1357), + [anon_sym_nullptr] = ACTIONS(1357), + [sym_comment] = ACTIONS(3), + }, + [329] = { + [sym_identifier] = ACTIONS(1411), + [aux_sym_preproc_include_token1] = ACTIONS(1411), + [aux_sym_preproc_def_token1] = ACTIONS(1411), + [aux_sym_preproc_if_token1] = ACTIONS(1411), + [aux_sym_preproc_if_token2] = ACTIONS(1411), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1411), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1411), + [sym_preproc_directive] = ACTIONS(1411), + [anon_sym_LPAREN2] = ACTIONS(1413), + [anon_sym_BANG] = ACTIONS(1413), + [anon_sym_TILDE] = ACTIONS(1413), + [anon_sym_DASH] = ACTIONS(1411), + [anon_sym_PLUS] = ACTIONS(1411), + [anon_sym_STAR] = ACTIONS(1413), + [anon_sym_AMP] = ACTIONS(1413), + [anon_sym_SEMI] = ACTIONS(1413), + [anon_sym___extension__] = ACTIONS(1411), + [anon_sym_typedef] = ACTIONS(1411), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym___attribute__] = ACTIONS(1411), + [anon_sym___scanf] = ACTIONS(1411), + [anon_sym___printf] = ACTIONS(1411), + [anon_sym___read_mostly] = ACTIONS(1411), + [anon_sym___must_hold] = ACTIONS(1411), + [anon_sym___ro_after_init] = ACTIONS(1411), + [anon_sym___noreturn] = ACTIONS(1411), + [anon_sym___cold] = ACTIONS(1411), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1413), + [anon_sym___declspec] = ACTIONS(1411), + [anon_sym___init] = ACTIONS(1411), + [anon_sym___exit] = ACTIONS(1411), + [anon_sym___cdecl] = ACTIONS(1411), + [anon_sym___clrcall] = ACTIONS(1411), + [anon_sym___stdcall] = ACTIONS(1411), + [anon_sym___fastcall] = ACTIONS(1411), + [anon_sym___thiscall] = ACTIONS(1411), + [anon_sym___vectorcall] = ACTIONS(1411), + [anon_sym_LBRACE] = ACTIONS(1413), + [anon_sym_signed] = ACTIONS(1411), + [anon_sym_unsigned] = ACTIONS(1411), + [anon_sym_long] = ACTIONS(1411), + [anon_sym_short] = ACTIONS(1411), + [anon_sym_static] = ACTIONS(1411), + [anon_sym_auto] = ACTIONS(1411), + [anon_sym_register] = ACTIONS(1411), + [anon_sym_inline] = ACTIONS(1411), + [anon_sym___inline] = ACTIONS(1411), + [anon_sym___inline__] = ACTIONS(1411), + [anon_sym___forceinline] = ACTIONS(1411), + [anon_sym_thread_local] = ACTIONS(1411), + [anon_sym___thread] = ACTIONS(1411), + [anon_sym_const] = ACTIONS(1411), + [anon_sym_constexpr] = ACTIONS(1411), + [anon_sym_volatile] = ACTIONS(1411), + [anon_sym_restrict] = ACTIONS(1411), + [anon_sym___restrict__] = ACTIONS(1411), + [anon_sym__Atomic] = ACTIONS(1411), + [anon_sym__Noreturn] = ACTIONS(1411), + [anon_sym_noreturn] = ACTIONS(1411), + [anon_sym_alignas] = ACTIONS(1411), + [anon_sym__Alignas] = ACTIONS(1411), + [sym_primitive_type] = ACTIONS(1411), + [anon_sym_enum] = ACTIONS(1411), + [anon_sym_struct] = ACTIONS(1411), + [anon_sym_union] = ACTIONS(1411), + [anon_sym_if] = ACTIONS(1411), + [anon_sym_switch] = ACTIONS(1411), + [anon_sym_case] = ACTIONS(1411), + [anon_sym_default] = ACTIONS(1411), + [anon_sym_while] = ACTIONS(1411), + [anon_sym_do] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1411), + [anon_sym_return] = ACTIONS(1411), + [anon_sym_break] = ACTIONS(1411), + [anon_sym_continue] = ACTIONS(1411), + [anon_sym_goto] = ACTIONS(1411), + [anon_sym___try] = ACTIONS(1411), + [anon_sym___leave] = ACTIONS(1411), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_sizeof] = ACTIONS(1411), + [anon_sym___alignof__] = ACTIONS(1411), + [anon_sym___alignof] = ACTIONS(1411), + [anon_sym__alignof] = ACTIONS(1411), + [anon_sym_alignof] = ACTIONS(1411), + [anon_sym__Alignof] = ACTIONS(1411), + [anon_sym_offsetof] = ACTIONS(1411), + [anon_sym__Generic] = ACTIONS(1411), + [anon_sym_asm] = ACTIONS(1411), + [anon_sym___asm__] = ACTIONS(1411), + [sym_number_literal] = ACTIONS(1413), + [anon_sym_L_SQUOTE] = ACTIONS(1413), + [anon_sym_u_SQUOTE] = ACTIONS(1413), + [anon_sym_U_SQUOTE] = ACTIONS(1413), + [anon_sym_u8_SQUOTE] = ACTIONS(1413), + [anon_sym_SQUOTE] = ACTIONS(1413), + [anon_sym_L_DQUOTE] = ACTIONS(1413), + [anon_sym_u_DQUOTE] = ACTIONS(1413), + [anon_sym_U_DQUOTE] = ACTIONS(1413), + [anon_sym_u8_DQUOTE] = ACTIONS(1413), + [anon_sym_DQUOTE] = ACTIONS(1413), + [sym_true] = ACTIONS(1411), + [sym_false] = ACTIONS(1411), + [anon_sym_NULL] = ACTIONS(1411), + [anon_sym_nullptr] = ACTIONS(1411), + [sym_comment] = ACTIONS(3), + }, + [330] = { + [sym_identifier] = ACTIONS(1365), + [aux_sym_preproc_include_token1] = ACTIONS(1365), + [aux_sym_preproc_def_token1] = ACTIONS(1365), + [aux_sym_preproc_if_token1] = ACTIONS(1365), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1365), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1365), + [sym_preproc_directive] = ACTIONS(1365), + [anon_sym_LPAREN2] = ACTIONS(1367), + [anon_sym_BANG] = ACTIONS(1367), + [anon_sym_TILDE] = ACTIONS(1367), + [anon_sym_DASH] = ACTIONS(1365), + [anon_sym_PLUS] = ACTIONS(1365), + [anon_sym_STAR] = ACTIONS(1367), + [anon_sym_AMP] = ACTIONS(1367), + [anon_sym_SEMI] = ACTIONS(1367), + [anon_sym___extension__] = ACTIONS(1365), + [anon_sym_typedef] = ACTIONS(1365), + [anon_sym_extern] = ACTIONS(1365), + [anon_sym___attribute__] = ACTIONS(1365), + [anon_sym___scanf] = ACTIONS(1365), + [anon_sym___printf] = ACTIONS(1365), + [anon_sym___read_mostly] = ACTIONS(1365), + [anon_sym___must_hold] = ACTIONS(1365), + [anon_sym___ro_after_init] = ACTIONS(1365), + [anon_sym___noreturn] = ACTIONS(1365), + [anon_sym___cold] = ACTIONS(1365), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1367), + [anon_sym___declspec] = ACTIONS(1365), + [anon_sym___init] = ACTIONS(1365), + [anon_sym___exit] = ACTIONS(1365), + [anon_sym___cdecl] = ACTIONS(1365), + [anon_sym___clrcall] = ACTIONS(1365), + [anon_sym___stdcall] = ACTIONS(1365), + [anon_sym___fastcall] = ACTIONS(1365), + [anon_sym___thiscall] = ACTIONS(1365), + [anon_sym___vectorcall] = ACTIONS(1365), + [anon_sym_LBRACE] = ACTIONS(1367), + [anon_sym_RBRACE] = ACTIONS(1367), + [anon_sym_signed] = ACTIONS(1365), + [anon_sym_unsigned] = ACTIONS(1365), + [anon_sym_long] = ACTIONS(1365), + [anon_sym_short] = ACTIONS(1365), + [anon_sym_static] = ACTIONS(1365), + [anon_sym_auto] = ACTIONS(1365), + [anon_sym_register] = ACTIONS(1365), + [anon_sym_inline] = ACTIONS(1365), + [anon_sym___inline] = ACTIONS(1365), + [anon_sym___inline__] = ACTIONS(1365), + [anon_sym___forceinline] = ACTIONS(1365), + [anon_sym_thread_local] = ACTIONS(1365), + [anon_sym___thread] = ACTIONS(1365), + [anon_sym_const] = ACTIONS(1365), + [anon_sym_constexpr] = ACTIONS(1365), + [anon_sym_volatile] = ACTIONS(1365), + [anon_sym_restrict] = ACTIONS(1365), + [anon_sym___restrict__] = ACTIONS(1365), + [anon_sym__Atomic] = ACTIONS(1365), + [anon_sym__Noreturn] = ACTIONS(1365), + [anon_sym_noreturn] = ACTIONS(1365), + [anon_sym_alignas] = ACTIONS(1365), + [anon_sym__Alignas] = ACTIONS(1365), + [sym_primitive_type] = ACTIONS(1365), + [anon_sym_enum] = ACTIONS(1365), + [anon_sym_struct] = ACTIONS(1365), + [anon_sym_union] = ACTIONS(1365), + [anon_sym_if] = ACTIONS(1365), + [anon_sym_switch] = ACTIONS(1365), + [anon_sym_case] = ACTIONS(1365), + [anon_sym_default] = ACTIONS(1365), + [anon_sym_while] = ACTIONS(1365), + [anon_sym_do] = ACTIONS(1365), + [anon_sym_for] = ACTIONS(1365), + [anon_sym_return] = ACTIONS(1365), + [anon_sym_break] = ACTIONS(1365), + [anon_sym_continue] = ACTIONS(1365), + [anon_sym_goto] = ACTIONS(1365), + [anon_sym___try] = ACTIONS(1365), + [anon_sym___leave] = ACTIONS(1365), + [anon_sym_DASH_DASH] = ACTIONS(1367), + [anon_sym_PLUS_PLUS] = ACTIONS(1367), + [anon_sym_sizeof] = ACTIONS(1365), + [anon_sym___alignof__] = ACTIONS(1365), + [anon_sym___alignof] = ACTIONS(1365), + [anon_sym__alignof] = ACTIONS(1365), + [anon_sym_alignof] = ACTIONS(1365), + [anon_sym__Alignof] = ACTIONS(1365), + [anon_sym_offsetof] = ACTIONS(1365), + [anon_sym__Generic] = ACTIONS(1365), + [anon_sym_asm] = ACTIONS(1365), + [anon_sym___asm__] = ACTIONS(1365), + [sym_number_literal] = ACTIONS(1367), + [anon_sym_L_SQUOTE] = ACTIONS(1367), + [anon_sym_u_SQUOTE] = ACTIONS(1367), + [anon_sym_U_SQUOTE] = ACTIONS(1367), + [anon_sym_u8_SQUOTE] = ACTIONS(1367), + [anon_sym_SQUOTE] = ACTIONS(1367), + [anon_sym_L_DQUOTE] = ACTIONS(1367), + [anon_sym_u_DQUOTE] = ACTIONS(1367), + [anon_sym_U_DQUOTE] = ACTIONS(1367), + [anon_sym_u8_DQUOTE] = ACTIONS(1367), + [anon_sym_DQUOTE] = ACTIONS(1367), + [sym_true] = ACTIONS(1365), + [sym_false] = ACTIONS(1365), + [anon_sym_NULL] = ACTIONS(1365), + [anon_sym_nullptr] = ACTIONS(1365), + [sym_comment] = ACTIONS(3), + }, + [331] = { + [sym_identifier] = ACTIONS(1369), + [aux_sym_preproc_include_token1] = ACTIONS(1369), + [aux_sym_preproc_def_token1] = ACTIONS(1369), + [aux_sym_preproc_if_token1] = ACTIONS(1369), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1369), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1369), + [sym_preproc_directive] = ACTIONS(1369), + [anon_sym_LPAREN2] = ACTIONS(1371), + [anon_sym_BANG] = ACTIONS(1371), + [anon_sym_TILDE] = ACTIONS(1371), + [anon_sym_DASH] = ACTIONS(1369), + [anon_sym_PLUS] = ACTIONS(1369), + [anon_sym_STAR] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1371), + [anon_sym_SEMI] = ACTIONS(1371), + [anon_sym___extension__] = ACTIONS(1369), + [anon_sym_typedef] = ACTIONS(1369), + [anon_sym_extern] = ACTIONS(1369), + [anon_sym___attribute__] = ACTIONS(1369), + [anon_sym___scanf] = ACTIONS(1369), + [anon_sym___printf] = ACTIONS(1369), + [anon_sym___read_mostly] = ACTIONS(1369), + [anon_sym___must_hold] = ACTIONS(1369), + [anon_sym___ro_after_init] = ACTIONS(1369), + [anon_sym___noreturn] = ACTIONS(1369), + [anon_sym___cold] = ACTIONS(1369), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1371), + [anon_sym___declspec] = ACTIONS(1369), + [anon_sym___init] = ACTIONS(1369), + [anon_sym___exit] = ACTIONS(1369), + [anon_sym___cdecl] = ACTIONS(1369), + [anon_sym___clrcall] = ACTIONS(1369), + [anon_sym___stdcall] = ACTIONS(1369), + [anon_sym___fastcall] = ACTIONS(1369), + [anon_sym___thiscall] = ACTIONS(1369), + [anon_sym___vectorcall] = ACTIONS(1369), + [anon_sym_LBRACE] = ACTIONS(1371), + [anon_sym_RBRACE] = ACTIONS(1371), + [anon_sym_signed] = ACTIONS(1369), + [anon_sym_unsigned] = ACTIONS(1369), + [anon_sym_long] = ACTIONS(1369), + [anon_sym_short] = ACTIONS(1369), + [anon_sym_static] = ACTIONS(1369), + [anon_sym_auto] = ACTIONS(1369), + [anon_sym_register] = ACTIONS(1369), + [anon_sym_inline] = ACTIONS(1369), + [anon_sym___inline] = ACTIONS(1369), + [anon_sym___inline__] = ACTIONS(1369), + [anon_sym___forceinline] = ACTIONS(1369), + [anon_sym_thread_local] = ACTIONS(1369), + [anon_sym___thread] = ACTIONS(1369), + [anon_sym_const] = ACTIONS(1369), + [anon_sym_constexpr] = ACTIONS(1369), + [anon_sym_volatile] = ACTIONS(1369), + [anon_sym_restrict] = ACTIONS(1369), + [anon_sym___restrict__] = ACTIONS(1369), + [anon_sym__Atomic] = ACTIONS(1369), + [anon_sym__Noreturn] = ACTIONS(1369), + [anon_sym_noreturn] = ACTIONS(1369), + [anon_sym_alignas] = ACTIONS(1369), + [anon_sym__Alignas] = ACTIONS(1369), + [sym_primitive_type] = ACTIONS(1369), + [anon_sym_enum] = ACTIONS(1369), + [anon_sym_struct] = ACTIONS(1369), + [anon_sym_union] = ACTIONS(1369), + [anon_sym_if] = ACTIONS(1369), + [anon_sym_switch] = ACTIONS(1369), + [anon_sym_case] = ACTIONS(1369), + [anon_sym_default] = ACTIONS(1369), + [anon_sym_while] = ACTIONS(1369), + [anon_sym_do] = ACTIONS(1369), + [anon_sym_for] = ACTIONS(1369), + [anon_sym_return] = ACTIONS(1369), + [anon_sym_break] = ACTIONS(1369), + [anon_sym_continue] = ACTIONS(1369), + [anon_sym_goto] = ACTIONS(1369), + [anon_sym___try] = ACTIONS(1369), + [anon_sym___leave] = ACTIONS(1369), + [anon_sym_DASH_DASH] = ACTIONS(1371), + [anon_sym_PLUS_PLUS] = ACTIONS(1371), + [anon_sym_sizeof] = ACTIONS(1369), + [anon_sym___alignof__] = ACTIONS(1369), + [anon_sym___alignof] = ACTIONS(1369), + [anon_sym__alignof] = ACTIONS(1369), + [anon_sym_alignof] = ACTIONS(1369), + [anon_sym__Alignof] = ACTIONS(1369), + [anon_sym_offsetof] = ACTIONS(1369), + [anon_sym__Generic] = ACTIONS(1369), + [anon_sym_asm] = ACTIONS(1369), + [anon_sym___asm__] = ACTIONS(1369), + [sym_number_literal] = ACTIONS(1371), + [anon_sym_L_SQUOTE] = ACTIONS(1371), + [anon_sym_u_SQUOTE] = ACTIONS(1371), + [anon_sym_U_SQUOTE] = ACTIONS(1371), + [anon_sym_u8_SQUOTE] = ACTIONS(1371), + [anon_sym_SQUOTE] = ACTIONS(1371), + [anon_sym_L_DQUOTE] = ACTIONS(1371), + [anon_sym_u_DQUOTE] = ACTIONS(1371), + [anon_sym_U_DQUOTE] = ACTIONS(1371), + [anon_sym_u8_DQUOTE] = ACTIONS(1371), + [anon_sym_DQUOTE] = ACTIONS(1371), + [sym_true] = ACTIONS(1369), + [sym_false] = ACTIONS(1369), + [anon_sym_NULL] = ACTIONS(1369), + [anon_sym_nullptr] = ACTIONS(1369), + [sym_comment] = ACTIONS(3), + }, + [332] = { + [sym_identifier] = ACTIONS(1313), + [aux_sym_preproc_include_token1] = ACTIONS(1313), + [aux_sym_preproc_def_token1] = ACTIONS(1313), + [aux_sym_preproc_if_token1] = ACTIONS(1313), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1313), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1313), + [sym_preproc_directive] = ACTIONS(1313), + [anon_sym_LPAREN2] = ACTIONS(1315), + [anon_sym_BANG] = ACTIONS(1315), + [anon_sym_TILDE] = ACTIONS(1315), + [anon_sym_DASH] = ACTIONS(1313), + [anon_sym_PLUS] = ACTIONS(1313), + [anon_sym_STAR] = ACTIONS(1315), + [anon_sym_AMP] = ACTIONS(1315), + [anon_sym_SEMI] = ACTIONS(1315), + [anon_sym___extension__] = ACTIONS(1313), + [anon_sym_typedef] = ACTIONS(1313), + [anon_sym_extern] = ACTIONS(1313), + [anon_sym___attribute__] = ACTIONS(1313), + [anon_sym___scanf] = ACTIONS(1313), + [anon_sym___printf] = ACTIONS(1313), + [anon_sym___read_mostly] = ACTIONS(1313), + [anon_sym___must_hold] = ACTIONS(1313), + [anon_sym___ro_after_init] = ACTIONS(1313), + [anon_sym___noreturn] = ACTIONS(1313), + [anon_sym___cold] = ACTIONS(1313), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1315), + [anon_sym___declspec] = ACTIONS(1313), + [anon_sym___init] = ACTIONS(1313), + [anon_sym___exit] = ACTIONS(1313), + [anon_sym___cdecl] = ACTIONS(1313), + [anon_sym___clrcall] = ACTIONS(1313), + [anon_sym___stdcall] = ACTIONS(1313), + [anon_sym___fastcall] = ACTIONS(1313), + [anon_sym___thiscall] = ACTIONS(1313), + [anon_sym___vectorcall] = ACTIONS(1313), + [anon_sym_LBRACE] = ACTIONS(1315), + [anon_sym_RBRACE] = ACTIONS(1315), + [anon_sym_signed] = ACTIONS(1313), + [anon_sym_unsigned] = ACTIONS(1313), + [anon_sym_long] = ACTIONS(1313), + [anon_sym_short] = ACTIONS(1313), + [anon_sym_static] = ACTIONS(1313), + [anon_sym_auto] = ACTIONS(1313), + [anon_sym_register] = ACTIONS(1313), + [anon_sym_inline] = ACTIONS(1313), + [anon_sym___inline] = ACTIONS(1313), + [anon_sym___inline__] = ACTIONS(1313), + [anon_sym___forceinline] = ACTIONS(1313), + [anon_sym_thread_local] = ACTIONS(1313), + [anon_sym___thread] = ACTIONS(1313), + [anon_sym_const] = ACTIONS(1313), + [anon_sym_constexpr] = ACTIONS(1313), + [anon_sym_volatile] = ACTIONS(1313), + [anon_sym_restrict] = ACTIONS(1313), + [anon_sym___restrict__] = ACTIONS(1313), + [anon_sym__Atomic] = ACTIONS(1313), + [anon_sym__Noreturn] = ACTIONS(1313), + [anon_sym_noreturn] = ACTIONS(1313), + [anon_sym_alignas] = ACTIONS(1313), + [anon_sym__Alignas] = ACTIONS(1313), + [sym_primitive_type] = ACTIONS(1313), + [anon_sym_enum] = ACTIONS(1313), + [anon_sym_struct] = ACTIONS(1313), + [anon_sym_union] = ACTIONS(1313), + [anon_sym_if] = ACTIONS(1313), + [anon_sym_switch] = ACTIONS(1313), + [anon_sym_case] = ACTIONS(1313), + [anon_sym_default] = ACTIONS(1313), + [anon_sym_while] = ACTIONS(1313), + [anon_sym_do] = ACTIONS(1313), + [anon_sym_for] = ACTIONS(1313), + [anon_sym_return] = ACTIONS(1313), + [anon_sym_break] = ACTIONS(1313), + [anon_sym_continue] = ACTIONS(1313), + [anon_sym_goto] = ACTIONS(1313), + [anon_sym___try] = ACTIONS(1313), + [anon_sym___leave] = ACTIONS(1313), + [anon_sym_DASH_DASH] = ACTIONS(1315), + [anon_sym_PLUS_PLUS] = ACTIONS(1315), + [anon_sym_sizeof] = ACTIONS(1313), + [anon_sym___alignof__] = ACTIONS(1313), + [anon_sym___alignof] = ACTIONS(1313), + [anon_sym__alignof] = ACTIONS(1313), + [anon_sym_alignof] = ACTIONS(1313), + [anon_sym__Alignof] = ACTIONS(1313), + [anon_sym_offsetof] = ACTIONS(1313), + [anon_sym__Generic] = ACTIONS(1313), + [anon_sym_asm] = ACTIONS(1313), + [anon_sym___asm__] = ACTIONS(1313), + [sym_number_literal] = ACTIONS(1315), + [anon_sym_L_SQUOTE] = ACTIONS(1315), + [anon_sym_u_SQUOTE] = ACTIONS(1315), + [anon_sym_U_SQUOTE] = ACTIONS(1315), + [anon_sym_u8_SQUOTE] = ACTIONS(1315), + [anon_sym_SQUOTE] = ACTIONS(1315), + [anon_sym_L_DQUOTE] = ACTIONS(1315), + [anon_sym_u_DQUOTE] = ACTIONS(1315), + [anon_sym_U_DQUOTE] = ACTIONS(1315), + [anon_sym_u8_DQUOTE] = ACTIONS(1315), + [anon_sym_DQUOTE] = ACTIONS(1315), + [sym_true] = ACTIONS(1313), + [sym_false] = ACTIONS(1313), + [anon_sym_NULL] = ACTIONS(1313), + [anon_sym_nullptr] = ACTIONS(1313), + [sym_comment] = ACTIONS(3), + }, + [333] = { + [sym_identifier] = ACTIONS(1373), + [aux_sym_preproc_include_token1] = ACTIONS(1373), + [aux_sym_preproc_def_token1] = ACTIONS(1373), + [aux_sym_preproc_if_token1] = ACTIONS(1373), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1373), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1373), + [sym_preproc_directive] = ACTIONS(1373), + [anon_sym_LPAREN2] = ACTIONS(1375), + [anon_sym_BANG] = ACTIONS(1375), + [anon_sym_TILDE] = ACTIONS(1375), + [anon_sym_DASH] = ACTIONS(1373), + [anon_sym_PLUS] = ACTIONS(1373), + [anon_sym_STAR] = ACTIONS(1375), + [anon_sym_AMP] = ACTIONS(1375), + [anon_sym_SEMI] = ACTIONS(1375), + [anon_sym___extension__] = ACTIONS(1373), + [anon_sym_typedef] = ACTIONS(1373), + [anon_sym_extern] = ACTIONS(1373), + [anon_sym___attribute__] = ACTIONS(1373), + [anon_sym___scanf] = ACTIONS(1373), + [anon_sym___printf] = ACTIONS(1373), + [anon_sym___read_mostly] = ACTIONS(1373), + [anon_sym___must_hold] = ACTIONS(1373), + [anon_sym___ro_after_init] = ACTIONS(1373), + [anon_sym___noreturn] = ACTIONS(1373), + [anon_sym___cold] = ACTIONS(1373), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1375), + [anon_sym___declspec] = ACTIONS(1373), + [anon_sym___init] = ACTIONS(1373), + [anon_sym___exit] = ACTIONS(1373), + [anon_sym___cdecl] = ACTIONS(1373), + [anon_sym___clrcall] = ACTIONS(1373), + [anon_sym___stdcall] = ACTIONS(1373), + [anon_sym___fastcall] = ACTIONS(1373), + [anon_sym___thiscall] = ACTIONS(1373), + [anon_sym___vectorcall] = ACTIONS(1373), + [anon_sym_LBRACE] = ACTIONS(1375), + [anon_sym_RBRACE] = ACTIONS(1375), + [anon_sym_signed] = ACTIONS(1373), + [anon_sym_unsigned] = ACTIONS(1373), + [anon_sym_long] = ACTIONS(1373), + [anon_sym_short] = ACTIONS(1373), + [anon_sym_static] = ACTIONS(1373), + [anon_sym_auto] = ACTIONS(1373), + [anon_sym_register] = ACTIONS(1373), + [anon_sym_inline] = ACTIONS(1373), + [anon_sym___inline] = ACTIONS(1373), + [anon_sym___inline__] = ACTIONS(1373), + [anon_sym___forceinline] = ACTIONS(1373), + [anon_sym_thread_local] = ACTIONS(1373), + [anon_sym___thread] = ACTIONS(1373), + [anon_sym_const] = ACTIONS(1373), + [anon_sym_constexpr] = ACTIONS(1373), + [anon_sym_volatile] = ACTIONS(1373), + [anon_sym_restrict] = ACTIONS(1373), + [anon_sym___restrict__] = ACTIONS(1373), + [anon_sym__Atomic] = ACTIONS(1373), + [anon_sym__Noreturn] = ACTIONS(1373), + [anon_sym_noreturn] = ACTIONS(1373), + [anon_sym_alignas] = ACTIONS(1373), + [anon_sym__Alignas] = ACTIONS(1373), + [sym_primitive_type] = ACTIONS(1373), + [anon_sym_enum] = ACTIONS(1373), + [anon_sym_struct] = ACTIONS(1373), + [anon_sym_union] = ACTIONS(1373), + [anon_sym_if] = ACTIONS(1373), + [anon_sym_switch] = ACTIONS(1373), + [anon_sym_case] = ACTIONS(1373), + [anon_sym_default] = ACTIONS(1373), + [anon_sym_while] = ACTIONS(1373), + [anon_sym_do] = ACTIONS(1373), + [anon_sym_for] = ACTIONS(1373), + [anon_sym_return] = ACTIONS(1373), + [anon_sym_break] = ACTIONS(1373), + [anon_sym_continue] = ACTIONS(1373), + [anon_sym_goto] = ACTIONS(1373), + [anon_sym___try] = ACTIONS(1373), + [anon_sym___leave] = ACTIONS(1373), + [anon_sym_DASH_DASH] = ACTIONS(1375), + [anon_sym_PLUS_PLUS] = ACTIONS(1375), + [anon_sym_sizeof] = ACTIONS(1373), + [anon_sym___alignof__] = ACTIONS(1373), + [anon_sym___alignof] = ACTIONS(1373), + [anon_sym__alignof] = ACTIONS(1373), + [anon_sym_alignof] = ACTIONS(1373), + [anon_sym__Alignof] = ACTIONS(1373), + [anon_sym_offsetof] = ACTIONS(1373), + [anon_sym__Generic] = ACTIONS(1373), + [anon_sym_asm] = ACTIONS(1373), + [anon_sym___asm__] = ACTIONS(1373), + [sym_number_literal] = ACTIONS(1375), + [anon_sym_L_SQUOTE] = ACTIONS(1375), + [anon_sym_u_SQUOTE] = ACTIONS(1375), + [anon_sym_U_SQUOTE] = ACTIONS(1375), + [anon_sym_u8_SQUOTE] = ACTIONS(1375), + [anon_sym_SQUOTE] = ACTIONS(1375), + [anon_sym_L_DQUOTE] = ACTIONS(1375), + [anon_sym_u_DQUOTE] = ACTIONS(1375), + [anon_sym_U_DQUOTE] = ACTIONS(1375), + [anon_sym_u8_DQUOTE] = ACTIONS(1375), + [anon_sym_DQUOTE] = ACTIONS(1375), + [sym_true] = ACTIONS(1373), + [sym_false] = ACTIONS(1373), + [anon_sym_NULL] = ACTIONS(1373), + [anon_sym_nullptr] = ACTIONS(1373), + [sym_comment] = ACTIONS(3), + }, + [334] = { + [sym_identifier] = ACTIONS(1309), + [aux_sym_preproc_include_token1] = ACTIONS(1309), + [aux_sym_preproc_def_token1] = ACTIONS(1309), + [aux_sym_preproc_if_token1] = ACTIONS(1309), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1309), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1309), + [sym_preproc_directive] = ACTIONS(1309), + [anon_sym_LPAREN2] = ACTIONS(1311), + [anon_sym_BANG] = ACTIONS(1311), + [anon_sym_TILDE] = ACTIONS(1311), + [anon_sym_DASH] = ACTIONS(1309), + [anon_sym_PLUS] = ACTIONS(1309), + [anon_sym_STAR] = ACTIONS(1311), + [anon_sym_AMP] = ACTIONS(1311), + [anon_sym_SEMI] = ACTIONS(1311), + [anon_sym___extension__] = ACTIONS(1309), + [anon_sym_typedef] = ACTIONS(1309), + [anon_sym_extern] = ACTIONS(1309), + [anon_sym___attribute__] = ACTIONS(1309), + [anon_sym___scanf] = ACTIONS(1309), + [anon_sym___printf] = ACTIONS(1309), + [anon_sym___read_mostly] = ACTIONS(1309), + [anon_sym___must_hold] = ACTIONS(1309), + [anon_sym___ro_after_init] = ACTIONS(1309), + [anon_sym___noreturn] = ACTIONS(1309), + [anon_sym___cold] = ACTIONS(1309), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1311), + [anon_sym___declspec] = ACTIONS(1309), + [anon_sym___init] = ACTIONS(1309), + [anon_sym___exit] = ACTIONS(1309), + [anon_sym___cdecl] = ACTIONS(1309), + [anon_sym___clrcall] = ACTIONS(1309), + [anon_sym___stdcall] = ACTIONS(1309), + [anon_sym___fastcall] = ACTIONS(1309), + [anon_sym___thiscall] = ACTIONS(1309), + [anon_sym___vectorcall] = ACTIONS(1309), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_RBRACE] = ACTIONS(1311), + [anon_sym_signed] = ACTIONS(1309), + [anon_sym_unsigned] = ACTIONS(1309), + [anon_sym_long] = ACTIONS(1309), + [anon_sym_short] = ACTIONS(1309), + [anon_sym_static] = ACTIONS(1309), + [anon_sym_auto] = ACTIONS(1309), + [anon_sym_register] = ACTIONS(1309), + [anon_sym_inline] = ACTIONS(1309), + [anon_sym___inline] = ACTIONS(1309), + [anon_sym___inline__] = ACTIONS(1309), + [anon_sym___forceinline] = ACTIONS(1309), + [anon_sym_thread_local] = ACTIONS(1309), + [anon_sym___thread] = ACTIONS(1309), + [anon_sym_const] = ACTIONS(1309), + [anon_sym_constexpr] = ACTIONS(1309), + [anon_sym_volatile] = ACTIONS(1309), + [anon_sym_restrict] = ACTIONS(1309), + [anon_sym___restrict__] = ACTIONS(1309), + [anon_sym__Atomic] = ACTIONS(1309), + [anon_sym__Noreturn] = ACTIONS(1309), + [anon_sym_noreturn] = ACTIONS(1309), + [anon_sym_alignas] = ACTIONS(1309), + [anon_sym__Alignas] = ACTIONS(1309), + [sym_primitive_type] = ACTIONS(1309), + [anon_sym_enum] = ACTIONS(1309), + [anon_sym_struct] = ACTIONS(1309), + [anon_sym_union] = ACTIONS(1309), + [anon_sym_if] = ACTIONS(1309), + [anon_sym_switch] = ACTIONS(1309), + [anon_sym_case] = ACTIONS(1309), + [anon_sym_default] = ACTIONS(1309), + [anon_sym_while] = ACTIONS(1309), + [anon_sym_do] = ACTIONS(1309), + [anon_sym_for] = ACTIONS(1309), + [anon_sym_return] = ACTIONS(1309), + [anon_sym_break] = ACTIONS(1309), + [anon_sym_continue] = ACTIONS(1309), + [anon_sym_goto] = ACTIONS(1309), + [anon_sym___try] = ACTIONS(1309), + [anon_sym___leave] = ACTIONS(1309), + [anon_sym_DASH_DASH] = ACTIONS(1311), + [anon_sym_PLUS_PLUS] = ACTIONS(1311), + [anon_sym_sizeof] = ACTIONS(1309), + [anon_sym___alignof__] = ACTIONS(1309), + [anon_sym___alignof] = ACTIONS(1309), + [anon_sym__alignof] = ACTIONS(1309), + [anon_sym_alignof] = ACTIONS(1309), + [anon_sym__Alignof] = ACTIONS(1309), + [anon_sym_offsetof] = ACTIONS(1309), + [anon_sym__Generic] = ACTIONS(1309), + [anon_sym_asm] = ACTIONS(1309), + [anon_sym___asm__] = ACTIONS(1309), + [sym_number_literal] = ACTIONS(1311), + [anon_sym_L_SQUOTE] = ACTIONS(1311), + [anon_sym_u_SQUOTE] = ACTIONS(1311), + [anon_sym_U_SQUOTE] = ACTIONS(1311), + [anon_sym_u8_SQUOTE] = ACTIONS(1311), + [anon_sym_SQUOTE] = ACTIONS(1311), + [anon_sym_L_DQUOTE] = ACTIONS(1311), + [anon_sym_u_DQUOTE] = ACTIONS(1311), + [anon_sym_U_DQUOTE] = ACTIONS(1311), + [anon_sym_u8_DQUOTE] = ACTIONS(1311), + [anon_sym_DQUOTE] = ACTIONS(1311), + [sym_true] = ACTIONS(1309), + [sym_false] = ACTIONS(1309), + [anon_sym_NULL] = ACTIONS(1309), + [anon_sym_nullptr] = ACTIONS(1309), + [sym_comment] = ACTIONS(3), + }, + [335] = { + [sym_identifier] = ACTIONS(1325), + [aux_sym_preproc_include_token1] = ACTIONS(1325), + [aux_sym_preproc_def_token1] = ACTIONS(1325), + [aux_sym_preproc_if_token1] = ACTIONS(1325), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1325), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1325), + [sym_preproc_directive] = ACTIONS(1325), + [anon_sym_LPAREN2] = ACTIONS(1327), + [anon_sym_BANG] = ACTIONS(1327), + [anon_sym_TILDE] = ACTIONS(1327), + [anon_sym_DASH] = ACTIONS(1325), + [anon_sym_PLUS] = ACTIONS(1325), + [anon_sym_STAR] = ACTIONS(1327), + [anon_sym_AMP] = ACTIONS(1327), + [anon_sym_SEMI] = ACTIONS(1327), + [anon_sym___extension__] = ACTIONS(1325), + [anon_sym_typedef] = ACTIONS(1325), + [anon_sym_extern] = ACTIONS(1325), + [anon_sym___attribute__] = ACTIONS(1325), + [anon_sym___scanf] = ACTIONS(1325), + [anon_sym___printf] = ACTIONS(1325), + [anon_sym___read_mostly] = ACTIONS(1325), + [anon_sym___must_hold] = ACTIONS(1325), + [anon_sym___ro_after_init] = ACTIONS(1325), + [anon_sym___noreturn] = ACTIONS(1325), + [anon_sym___cold] = ACTIONS(1325), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1327), + [anon_sym___declspec] = ACTIONS(1325), + [anon_sym___init] = ACTIONS(1325), + [anon_sym___exit] = ACTIONS(1325), + [anon_sym___cdecl] = ACTIONS(1325), + [anon_sym___clrcall] = ACTIONS(1325), + [anon_sym___stdcall] = ACTIONS(1325), + [anon_sym___fastcall] = ACTIONS(1325), + [anon_sym___thiscall] = ACTIONS(1325), + [anon_sym___vectorcall] = ACTIONS(1325), + [anon_sym_LBRACE] = ACTIONS(1327), + [anon_sym_RBRACE] = ACTIONS(1327), + [anon_sym_signed] = ACTIONS(1325), + [anon_sym_unsigned] = ACTIONS(1325), + [anon_sym_long] = ACTIONS(1325), + [anon_sym_short] = ACTIONS(1325), + [anon_sym_static] = ACTIONS(1325), + [anon_sym_auto] = ACTIONS(1325), + [anon_sym_register] = ACTIONS(1325), + [anon_sym_inline] = ACTIONS(1325), + [anon_sym___inline] = ACTIONS(1325), + [anon_sym___inline__] = ACTIONS(1325), + [anon_sym___forceinline] = ACTIONS(1325), + [anon_sym_thread_local] = ACTIONS(1325), + [anon_sym___thread] = ACTIONS(1325), + [anon_sym_const] = ACTIONS(1325), + [anon_sym_constexpr] = ACTIONS(1325), + [anon_sym_volatile] = ACTIONS(1325), + [anon_sym_restrict] = ACTIONS(1325), + [anon_sym___restrict__] = ACTIONS(1325), + [anon_sym__Atomic] = ACTIONS(1325), + [anon_sym__Noreturn] = ACTIONS(1325), + [anon_sym_noreturn] = ACTIONS(1325), + [anon_sym_alignas] = ACTIONS(1325), + [anon_sym__Alignas] = ACTIONS(1325), + [sym_primitive_type] = ACTIONS(1325), + [anon_sym_enum] = ACTIONS(1325), + [anon_sym_struct] = ACTIONS(1325), + [anon_sym_union] = ACTIONS(1325), + [anon_sym_if] = ACTIONS(1325), + [anon_sym_switch] = ACTIONS(1325), + [anon_sym_case] = ACTIONS(1325), + [anon_sym_default] = ACTIONS(1325), + [anon_sym_while] = ACTIONS(1325), + [anon_sym_do] = ACTIONS(1325), + [anon_sym_for] = ACTIONS(1325), + [anon_sym_return] = ACTIONS(1325), + [anon_sym_break] = ACTIONS(1325), + [anon_sym_continue] = ACTIONS(1325), + [anon_sym_goto] = ACTIONS(1325), + [anon_sym___try] = ACTIONS(1325), + [anon_sym___leave] = ACTIONS(1325), + [anon_sym_DASH_DASH] = ACTIONS(1327), + [anon_sym_PLUS_PLUS] = ACTIONS(1327), + [anon_sym_sizeof] = ACTIONS(1325), + [anon_sym___alignof__] = ACTIONS(1325), + [anon_sym___alignof] = ACTIONS(1325), + [anon_sym__alignof] = ACTIONS(1325), + [anon_sym_alignof] = ACTIONS(1325), + [anon_sym__Alignof] = ACTIONS(1325), + [anon_sym_offsetof] = ACTIONS(1325), + [anon_sym__Generic] = ACTIONS(1325), + [anon_sym_asm] = ACTIONS(1325), + [anon_sym___asm__] = ACTIONS(1325), + [sym_number_literal] = ACTIONS(1327), + [anon_sym_L_SQUOTE] = ACTIONS(1327), + [anon_sym_u_SQUOTE] = ACTIONS(1327), + [anon_sym_U_SQUOTE] = ACTIONS(1327), + [anon_sym_u8_SQUOTE] = ACTIONS(1327), + [anon_sym_SQUOTE] = ACTIONS(1327), + [anon_sym_L_DQUOTE] = ACTIONS(1327), + [anon_sym_u_DQUOTE] = ACTIONS(1327), + [anon_sym_U_DQUOTE] = ACTIONS(1327), + [anon_sym_u8_DQUOTE] = ACTIONS(1327), + [anon_sym_DQUOTE] = ACTIONS(1327), + [sym_true] = ACTIONS(1325), + [sym_false] = ACTIONS(1325), + [anon_sym_NULL] = ACTIONS(1325), + [anon_sym_nullptr] = ACTIONS(1325), + [sym_comment] = ACTIONS(3), + }, + [336] = { + [sym_identifier] = ACTIONS(1341), + [aux_sym_preproc_include_token1] = ACTIONS(1341), + [aux_sym_preproc_def_token1] = ACTIONS(1341), + [aux_sym_preproc_if_token1] = ACTIONS(1341), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1341), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1341), + [sym_preproc_directive] = ACTIONS(1341), + [anon_sym_LPAREN2] = ACTIONS(1343), + [anon_sym_BANG] = ACTIONS(1343), + [anon_sym_TILDE] = ACTIONS(1343), + [anon_sym_DASH] = ACTIONS(1341), + [anon_sym_PLUS] = ACTIONS(1341), + [anon_sym_STAR] = ACTIONS(1343), + [anon_sym_AMP] = ACTIONS(1343), + [anon_sym_SEMI] = ACTIONS(1343), + [anon_sym___extension__] = ACTIONS(1341), + [anon_sym_typedef] = ACTIONS(1341), + [anon_sym_extern] = ACTIONS(1341), + [anon_sym___attribute__] = ACTIONS(1341), + [anon_sym___scanf] = ACTIONS(1341), + [anon_sym___printf] = ACTIONS(1341), + [anon_sym___read_mostly] = ACTIONS(1341), + [anon_sym___must_hold] = ACTIONS(1341), + [anon_sym___ro_after_init] = ACTIONS(1341), + [anon_sym___noreturn] = ACTIONS(1341), + [anon_sym___cold] = ACTIONS(1341), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1343), + [anon_sym___declspec] = ACTIONS(1341), + [anon_sym___init] = ACTIONS(1341), + [anon_sym___exit] = ACTIONS(1341), + [anon_sym___cdecl] = ACTIONS(1341), + [anon_sym___clrcall] = ACTIONS(1341), + [anon_sym___stdcall] = ACTIONS(1341), + [anon_sym___fastcall] = ACTIONS(1341), + [anon_sym___thiscall] = ACTIONS(1341), + [anon_sym___vectorcall] = ACTIONS(1341), + [anon_sym_LBRACE] = ACTIONS(1343), + [anon_sym_RBRACE] = ACTIONS(1343), + [anon_sym_signed] = ACTIONS(1341), + [anon_sym_unsigned] = ACTIONS(1341), + [anon_sym_long] = ACTIONS(1341), + [anon_sym_short] = ACTIONS(1341), + [anon_sym_static] = ACTIONS(1341), + [anon_sym_auto] = ACTIONS(1341), + [anon_sym_register] = ACTIONS(1341), + [anon_sym_inline] = ACTIONS(1341), + [anon_sym___inline] = ACTIONS(1341), + [anon_sym___inline__] = ACTIONS(1341), + [anon_sym___forceinline] = ACTIONS(1341), + [anon_sym_thread_local] = ACTIONS(1341), + [anon_sym___thread] = ACTIONS(1341), + [anon_sym_const] = ACTIONS(1341), + [anon_sym_constexpr] = ACTIONS(1341), + [anon_sym_volatile] = ACTIONS(1341), + [anon_sym_restrict] = ACTIONS(1341), + [anon_sym___restrict__] = ACTIONS(1341), + [anon_sym__Atomic] = ACTIONS(1341), + [anon_sym__Noreturn] = ACTIONS(1341), + [anon_sym_noreturn] = ACTIONS(1341), + [anon_sym_alignas] = ACTIONS(1341), + [anon_sym__Alignas] = ACTIONS(1341), + [sym_primitive_type] = ACTIONS(1341), + [anon_sym_enum] = ACTIONS(1341), + [anon_sym_struct] = ACTIONS(1341), + [anon_sym_union] = ACTIONS(1341), + [anon_sym_if] = ACTIONS(1341), + [anon_sym_switch] = ACTIONS(1341), + [anon_sym_case] = ACTIONS(1341), + [anon_sym_default] = ACTIONS(1341), + [anon_sym_while] = ACTIONS(1341), + [anon_sym_do] = ACTIONS(1341), + [anon_sym_for] = ACTIONS(1341), + [anon_sym_return] = ACTIONS(1341), + [anon_sym_break] = ACTIONS(1341), + [anon_sym_continue] = ACTIONS(1341), + [anon_sym_goto] = ACTIONS(1341), + [anon_sym___try] = ACTIONS(1341), + [anon_sym___leave] = ACTIONS(1341), + [anon_sym_DASH_DASH] = ACTIONS(1343), + [anon_sym_PLUS_PLUS] = ACTIONS(1343), + [anon_sym_sizeof] = ACTIONS(1341), + [anon_sym___alignof__] = ACTIONS(1341), + [anon_sym___alignof] = ACTIONS(1341), + [anon_sym__alignof] = ACTIONS(1341), + [anon_sym_alignof] = ACTIONS(1341), + [anon_sym__Alignof] = ACTIONS(1341), + [anon_sym_offsetof] = ACTIONS(1341), + [anon_sym__Generic] = ACTIONS(1341), + [anon_sym_asm] = ACTIONS(1341), + [anon_sym___asm__] = ACTIONS(1341), + [sym_number_literal] = ACTIONS(1343), + [anon_sym_L_SQUOTE] = ACTIONS(1343), + [anon_sym_u_SQUOTE] = ACTIONS(1343), + [anon_sym_U_SQUOTE] = ACTIONS(1343), + [anon_sym_u8_SQUOTE] = ACTIONS(1343), + [anon_sym_SQUOTE] = ACTIONS(1343), + [anon_sym_L_DQUOTE] = ACTIONS(1343), + [anon_sym_u_DQUOTE] = ACTIONS(1343), + [anon_sym_U_DQUOTE] = ACTIONS(1343), + [anon_sym_u8_DQUOTE] = ACTIONS(1343), + [anon_sym_DQUOTE] = ACTIONS(1343), + [sym_true] = ACTIONS(1341), + [sym_false] = ACTIONS(1341), + [anon_sym_NULL] = ACTIONS(1341), + [anon_sym_nullptr] = ACTIONS(1341), + [sym_comment] = ACTIONS(3), + }, + [337] = { + [sym_identifier] = ACTIONS(1415), + [aux_sym_preproc_include_token1] = ACTIONS(1415), + [aux_sym_preproc_def_token1] = ACTIONS(1415), + [aux_sym_preproc_if_token1] = ACTIONS(1415), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1415), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1415), + [sym_preproc_directive] = ACTIONS(1415), + [anon_sym_LPAREN2] = ACTIONS(1417), + [anon_sym_BANG] = ACTIONS(1417), + [anon_sym_TILDE] = ACTIONS(1417), + [anon_sym_DASH] = ACTIONS(1415), + [anon_sym_PLUS] = ACTIONS(1415), + [anon_sym_STAR] = ACTIONS(1417), + [anon_sym_AMP] = ACTIONS(1417), + [anon_sym_SEMI] = ACTIONS(1417), + [anon_sym___extension__] = ACTIONS(1415), + [anon_sym_typedef] = ACTIONS(1415), + [anon_sym_extern] = ACTIONS(1415), + [anon_sym___attribute__] = ACTIONS(1415), + [anon_sym___scanf] = ACTIONS(1415), + [anon_sym___printf] = ACTIONS(1415), + [anon_sym___read_mostly] = ACTIONS(1415), + [anon_sym___must_hold] = ACTIONS(1415), + [anon_sym___ro_after_init] = ACTIONS(1415), + [anon_sym___noreturn] = ACTIONS(1415), + [anon_sym___cold] = ACTIONS(1415), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1417), + [anon_sym___declspec] = ACTIONS(1415), + [anon_sym___init] = ACTIONS(1415), + [anon_sym___exit] = ACTIONS(1415), + [anon_sym___cdecl] = ACTIONS(1415), + [anon_sym___clrcall] = ACTIONS(1415), + [anon_sym___stdcall] = ACTIONS(1415), + [anon_sym___fastcall] = ACTIONS(1415), + [anon_sym___thiscall] = ACTIONS(1415), + [anon_sym___vectorcall] = ACTIONS(1415), + [anon_sym_LBRACE] = ACTIONS(1417), + [anon_sym_RBRACE] = ACTIONS(1417), + [anon_sym_signed] = ACTIONS(1415), + [anon_sym_unsigned] = ACTIONS(1415), + [anon_sym_long] = ACTIONS(1415), + [anon_sym_short] = ACTIONS(1415), + [anon_sym_static] = ACTIONS(1415), + [anon_sym_auto] = ACTIONS(1415), + [anon_sym_register] = ACTIONS(1415), + [anon_sym_inline] = ACTIONS(1415), + [anon_sym___inline] = ACTIONS(1415), + [anon_sym___inline__] = ACTIONS(1415), + [anon_sym___forceinline] = ACTIONS(1415), + [anon_sym_thread_local] = ACTIONS(1415), + [anon_sym___thread] = ACTIONS(1415), + [anon_sym_const] = ACTIONS(1415), + [anon_sym_constexpr] = ACTIONS(1415), + [anon_sym_volatile] = ACTIONS(1415), + [anon_sym_restrict] = ACTIONS(1415), + [anon_sym___restrict__] = ACTIONS(1415), + [anon_sym__Atomic] = ACTIONS(1415), + [anon_sym__Noreturn] = ACTIONS(1415), + [anon_sym_noreturn] = ACTIONS(1415), + [anon_sym_alignas] = ACTIONS(1415), + [anon_sym__Alignas] = ACTIONS(1415), + [sym_primitive_type] = ACTIONS(1415), + [anon_sym_enum] = ACTIONS(1415), + [anon_sym_struct] = ACTIONS(1415), + [anon_sym_union] = ACTIONS(1415), + [anon_sym_if] = ACTIONS(1415), + [anon_sym_switch] = ACTIONS(1415), + [anon_sym_case] = ACTIONS(1415), + [anon_sym_default] = ACTIONS(1415), + [anon_sym_while] = ACTIONS(1415), + [anon_sym_do] = ACTIONS(1415), + [anon_sym_for] = ACTIONS(1415), + [anon_sym_return] = ACTIONS(1415), + [anon_sym_break] = ACTIONS(1415), + [anon_sym_continue] = ACTIONS(1415), + [anon_sym_goto] = ACTIONS(1415), + [anon_sym___try] = ACTIONS(1415), + [anon_sym___leave] = ACTIONS(1415), + [anon_sym_DASH_DASH] = ACTIONS(1417), + [anon_sym_PLUS_PLUS] = ACTIONS(1417), + [anon_sym_sizeof] = ACTIONS(1415), + [anon_sym___alignof__] = ACTIONS(1415), + [anon_sym___alignof] = ACTIONS(1415), + [anon_sym__alignof] = ACTIONS(1415), + [anon_sym_alignof] = ACTIONS(1415), + [anon_sym__Alignof] = ACTIONS(1415), + [anon_sym_offsetof] = ACTIONS(1415), + [anon_sym__Generic] = ACTIONS(1415), + [anon_sym_asm] = ACTIONS(1415), + [anon_sym___asm__] = ACTIONS(1415), + [sym_number_literal] = ACTIONS(1417), + [anon_sym_L_SQUOTE] = ACTIONS(1417), + [anon_sym_u_SQUOTE] = ACTIONS(1417), + [anon_sym_U_SQUOTE] = ACTIONS(1417), + [anon_sym_u8_SQUOTE] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1417), + [anon_sym_L_DQUOTE] = ACTIONS(1417), + [anon_sym_u_DQUOTE] = ACTIONS(1417), + [anon_sym_U_DQUOTE] = ACTIONS(1417), + [anon_sym_u8_DQUOTE] = ACTIONS(1417), + [anon_sym_DQUOTE] = ACTIONS(1417), + [sym_true] = ACTIONS(1415), + [sym_false] = ACTIONS(1415), + [anon_sym_NULL] = ACTIONS(1415), + [anon_sym_nullptr] = ACTIONS(1415), + [sym_comment] = ACTIONS(3), + }, + [338] = { + [sym_identifier] = ACTIONS(1317), + [aux_sym_preproc_include_token1] = ACTIONS(1317), + [aux_sym_preproc_def_token1] = ACTIONS(1317), + [aux_sym_preproc_if_token1] = ACTIONS(1317), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1317), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1317), + [sym_preproc_directive] = ACTIONS(1317), + [anon_sym_LPAREN2] = ACTIONS(1319), + [anon_sym_BANG] = ACTIONS(1319), + [anon_sym_TILDE] = ACTIONS(1319), + [anon_sym_DASH] = ACTIONS(1317), + [anon_sym_PLUS] = ACTIONS(1317), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(1319), + [anon_sym___extension__] = ACTIONS(1317), + [anon_sym_typedef] = ACTIONS(1317), + [anon_sym_extern] = ACTIONS(1317), + [anon_sym___attribute__] = ACTIONS(1317), + [anon_sym___scanf] = ACTIONS(1317), + [anon_sym___printf] = ACTIONS(1317), + [anon_sym___read_mostly] = ACTIONS(1317), + [anon_sym___must_hold] = ACTIONS(1317), + [anon_sym___ro_after_init] = ACTIONS(1317), + [anon_sym___noreturn] = ACTIONS(1317), + [anon_sym___cold] = ACTIONS(1317), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1319), + [anon_sym___declspec] = ACTIONS(1317), + [anon_sym___init] = ACTIONS(1317), + [anon_sym___exit] = ACTIONS(1317), + [anon_sym___cdecl] = ACTIONS(1317), + [anon_sym___clrcall] = ACTIONS(1317), + [anon_sym___stdcall] = ACTIONS(1317), + [anon_sym___fastcall] = ACTIONS(1317), + [anon_sym___thiscall] = ACTIONS(1317), + [anon_sym___vectorcall] = ACTIONS(1317), + [anon_sym_LBRACE] = ACTIONS(1319), + [anon_sym_RBRACE] = ACTIONS(1319), + [anon_sym_signed] = ACTIONS(1317), + [anon_sym_unsigned] = ACTIONS(1317), + [anon_sym_long] = ACTIONS(1317), + [anon_sym_short] = ACTIONS(1317), + [anon_sym_static] = ACTIONS(1317), + [anon_sym_auto] = ACTIONS(1317), + [anon_sym_register] = ACTIONS(1317), + [anon_sym_inline] = ACTIONS(1317), + [anon_sym___inline] = ACTIONS(1317), + [anon_sym___inline__] = ACTIONS(1317), + [anon_sym___forceinline] = ACTIONS(1317), + [anon_sym_thread_local] = ACTIONS(1317), + [anon_sym___thread] = ACTIONS(1317), + [anon_sym_const] = ACTIONS(1317), + [anon_sym_constexpr] = ACTIONS(1317), + [anon_sym_volatile] = ACTIONS(1317), + [anon_sym_restrict] = ACTIONS(1317), + [anon_sym___restrict__] = ACTIONS(1317), + [anon_sym__Atomic] = ACTIONS(1317), + [anon_sym__Noreturn] = ACTIONS(1317), + [anon_sym_noreturn] = ACTIONS(1317), + [anon_sym_alignas] = ACTIONS(1317), + [anon_sym__Alignas] = ACTIONS(1317), + [sym_primitive_type] = ACTIONS(1317), + [anon_sym_enum] = ACTIONS(1317), + [anon_sym_struct] = ACTIONS(1317), + [anon_sym_union] = ACTIONS(1317), + [anon_sym_if] = ACTIONS(1317), + [anon_sym_switch] = ACTIONS(1317), + [anon_sym_case] = ACTIONS(1317), + [anon_sym_default] = ACTIONS(1317), + [anon_sym_while] = ACTIONS(1317), + [anon_sym_do] = ACTIONS(1317), + [anon_sym_for] = ACTIONS(1317), + [anon_sym_return] = ACTIONS(1317), + [anon_sym_break] = ACTIONS(1317), + [anon_sym_continue] = ACTIONS(1317), + [anon_sym_goto] = ACTIONS(1317), + [anon_sym___try] = ACTIONS(1317), + [anon_sym___leave] = ACTIONS(1317), + [anon_sym_DASH_DASH] = ACTIONS(1319), + [anon_sym_PLUS_PLUS] = ACTIONS(1319), + [anon_sym_sizeof] = ACTIONS(1317), + [anon_sym___alignof__] = ACTIONS(1317), + [anon_sym___alignof] = ACTIONS(1317), + [anon_sym__alignof] = ACTIONS(1317), + [anon_sym_alignof] = ACTIONS(1317), + [anon_sym__Alignof] = ACTIONS(1317), + [anon_sym_offsetof] = ACTIONS(1317), + [anon_sym__Generic] = ACTIONS(1317), + [anon_sym_asm] = ACTIONS(1317), + [anon_sym___asm__] = ACTIONS(1317), + [sym_number_literal] = ACTIONS(1319), + [anon_sym_L_SQUOTE] = ACTIONS(1319), + [anon_sym_u_SQUOTE] = ACTIONS(1319), + [anon_sym_U_SQUOTE] = ACTIONS(1319), + [anon_sym_u8_SQUOTE] = ACTIONS(1319), + [anon_sym_SQUOTE] = ACTIONS(1319), + [anon_sym_L_DQUOTE] = ACTIONS(1319), + [anon_sym_u_DQUOTE] = ACTIONS(1319), + [anon_sym_U_DQUOTE] = ACTIONS(1319), + [anon_sym_u8_DQUOTE] = ACTIONS(1319), + [anon_sym_DQUOTE] = ACTIONS(1319), + [sym_true] = ACTIONS(1317), + [sym_false] = ACTIONS(1317), + [anon_sym_NULL] = ACTIONS(1317), + [anon_sym_nullptr] = ACTIONS(1317), + [sym_comment] = ACTIONS(3), + }, + [339] = { + [sym_identifier] = ACTIONS(1317), + [aux_sym_preproc_include_token1] = ACTIONS(1317), + [aux_sym_preproc_def_token1] = ACTIONS(1317), + [aux_sym_preproc_if_token1] = ACTIONS(1317), + [aux_sym_preproc_if_token2] = ACTIONS(1317), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1317), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1317), + [sym_preproc_directive] = ACTIONS(1317), + [anon_sym_LPAREN2] = ACTIONS(1319), + [anon_sym_BANG] = ACTIONS(1319), + [anon_sym_TILDE] = ACTIONS(1319), + [anon_sym_DASH] = ACTIONS(1317), + [anon_sym_PLUS] = ACTIONS(1317), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(1319), + [anon_sym___extension__] = ACTIONS(1317), + [anon_sym_typedef] = ACTIONS(1317), + [anon_sym_extern] = ACTIONS(1317), + [anon_sym___attribute__] = ACTIONS(1317), + [anon_sym___scanf] = ACTIONS(1317), + [anon_sym___printf] = ACTIONS(1317), + [anon_sym___read_mostly] = ACTIONS(1317), + [anon_sym___must_hold] = ACTIONS(1317), + [anon_sym___ro_after_init] = ACTIONS(1317), + [anon_sym___noreturn] = ACTIONS(1317), + [anon_sym___cold] = ACTIONS(1317), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1319), + [anon_sym___declspec] = ACTIONS(1317), + [anon_sym___init] = ACTIONS(1317), + [anon_sym___exit] = ACTIONS(1317), + [anon_sym___cdecl] = ACTIONS(1317), + [anon_sym___clrcall] = ACTIONS(1317), + [anon_sym___stdcall] = ACTIONS(1317), + [anon_sym___fastcall] = ACTIONS(1317), + [anon_sym___thiscall] = ACTIONS(1317), + [anon_sym___vectorcall] = ACTIONS(1317), + [anon_sym_LBRACE] = ACTIONS(1319), + [anon_sym_signed] = ACTIONS(1317), + [anon_sym_unsigned] = ACTIONS(1317), + [anon_sym_long] = ACTIONS(1317), + [anon_sym_short] = ACTIONS(1317), + [anon_sym_static] = ACTIONS(1317), + [anon_sym_auto] = ACTIONS(1317), + [anon_sym_register] = ACTIONS(1317), + [anon_sym_inline] = ACTIONS(1317), + [anon_sym___inline] = ACTIONS(1317), + [anon_sym___inline__] = ACTIONS(1317), + [anon_sym___forceinline] = ACTIONS(1317), + [anon_sym_thread_local] = ACTIONS(1317), + [anon_sym___thread] = ACTIONS(1317), + [anon_sym_const] = ACTIONS(1317), + [anon_sym_constexpr] = ACTIONS(1317), + [anon_sym_volatile] = ACTIONS(1317), + [anon_sym_restrict] = ACTIONS(1317), + [anon_sym___restrict__] = ACTIONS(1317), + [anon_sym__Atomic] = ACTIONS(1317), + [anon_sym__Noreturn] = ACTIONS(1317), + [anon_sym_noreturn] = ACTIONS(1317), + [anon_sym_alignas] = ACTIONS(1317), + [anon_sym__Alignas] = ACTIONS(1317), + [sym_primitive_type] = ACTIONS(1317), + [anon_sym_enum] = ACTIONS(1317), + [anon_sym_struct] = ACTIONS(1317), + [anon_sym_union] = ACTIONS(1317), + [anon_sym_if] = ACTIONS(1317), + [anon_sym_switch] = ACTIONS(1317), + [anon_sym_case] = ACTIONS(1317), + [anon_sym_default] = ACTIONS(1317), + [anon_sym_while] = ACTIONS(1317), + [anon_sym_do] = ACTIONS(1317), + [anon_sym_for] = ACTIONS(1317), + [anon_sym_return] = ACTIONS(1317), + [anon_sym_break] = ACTIONS(1317), + [anon_sym_continue] = ACTIONS(1317), + [anon_sym_goto] = ACTIONS(1317), + [anon_sym___try] = ACTIONS(1317), + [anon_sym___leave] = ACTIONS(1317), + [anon_sym_DASH_DASH] = ACTIONS(1319), + [anon_sym_PLUS_PLUS] = ACTIONS(1319), + [anon_sym_sizeof] = ACTIONS(1317), + [anon_sym___alignof__] = ACTIONS(1317), + [anon_sym___alignof] = ACTIONS(1317), + [anon_sym__alignof] = ACTIONS(1317), + [anon_sym_alignof] = ACTIONS(1317), + [anon_sym__Alignof] = ACTIONS(1317), + [anon_sym_offsetof] = ACTIONS(1317), + [anon_sym__Generic] = ACTIONS(1317), + [anon_sym_asm] = ACTIONS(1317), + [anon_sym___asm__] = ACTIONS(1317), + [sym_number_literal] = ACTIONS(1319), + [anon_sym_L_SQUOTE] = ACTIONS(1319), + [anon_sym_u_SQUOTE] = ACTIONS(1319), + [anon_sym_U_SQUOTE] = ACTIONS(1319), + [anon_sym_u8_SQUOTE] = ACTIONS(1319), + [anon_sym_SQUOTE] = ACTIONS(1319), + [anon_sym_L_DQUOTE] = ACTIONS(1319), + [anon_sym_u_DQUOTE] = ACTIONS(1319), + [anon_sym_U_DQUOTE] = ACTIONS(1319), + [anon_sym_u8_DQUOTE] = ACTIONS(1319), + [anon_sym_DQUOTE] = ACTIONS(1319), + [sym_true] = ACTIONS(1317), + [sym_false] = ACTIONS(1317), + [anon_sym_NULL] = ACTIONS(1317), + [anon_sym_nullptr] = ACTIONS(1317), + [sym_comment] = ACTIONS(3), + }, + [340] = { + [sym_identifier] = ACTIONS(1345), + [aux_sym_preproc_include_token1] = ACTIONS(1345), + [aux_sym_preproc_def_token1] = ACTIONS(1345), + [aux_sym_preproc_if_token1] = ACTIONS(1345), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1345), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1345), + [sym_preproc_directive] = ACTIONS(1345), + [anon_sym_LPAREN2] = ACTIONS(1347), + [anon_sym_BANG] = ACTIONS(1347), + [anon_sym_TILDE] = ACTIONS(1347), + [anon_sym_DASH] = ACTIONS(1345), + [anon_sym_PLUS] = ACTIONS(1345), + [anon_sym_STAR] = ACTIONS(1347), + [anon_sym_AMP] = ACTIONS(1347), + [anon_sym_SEMI] = ACTIONS(1347), + [anon_sym___extension__] = ACTIONS(1345), + [anon_sym_typedef] = ACTIONS(1345), + [anon_sym_extern] = ACTIONS(1345), + [anon_sym___attribute__] = ACTIONS(1345), + [anon_sym___scanf] = ACTIONS(1345), + [anon_sym___printf] = ACTIONS(1345), + [anon_sym___read_mostly] = ACTIONS(1345), + [anon_sym___must_hold] = ACTIONS(1345), + [anon_sym___ro_after_init] = ACTIONS(1345), + [anon_sym___noreturn] = ACTIONS(1345), + [anon_sym___cold] = ACTIONS(1345), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1347), + [anon_sym___declspec] = ACTIONS(1345), + [anon_sym___init] = ACTIONS(1345), + [anon_sym___exit] = ACTIONS(1345), + [anon_sym___cdecl] = ACTIONS(1345), + [anon_sym___clrcall] = ACTIONS(1345), + [anon_sym___stdcall] = ACTIONS(1345), + [anon_sym___fastcall] = ACTIONS(1345), + [anon_sym___thiscall] = ACTIONS(1345), + [anon_sym___vectorcall] = ACTIONS(1345), + [anon_sym_LBRACE] = ACTIONS(1347), + [anon_sym_RBRACE] = ACTIONS(1347), + [anon_sym_signed] = ACTIONS(1345), + [anon_sym_unsigned] = ACTIONS(1345), + [anon_sym_long] = ACTIONS(1345), + [anon_sym_short] = ACTIONS(1345), + [anon_sym_static] = ACTIONS(1345), + [anon_sym_auto] = ACTIONS(1345), + [anon_sym_register] = ACTIONS(1345), + [anon_sym_inline] = ACTIONS(1345), + [anon_sym___inline] = ACTIONS(1345), + [anon_sym___inline__] = ACTIONS(1345), + [anon_sym___forceinline] = ACTIONS(1345), + [anon_sym_thread_local] = ACTIONS(1345), + [anon_sym___thread] = ACTIONS(1345), + [anon_sym_const] = ACTIONS(1345), + [anon_sym_constexpr] = ACTIONS(1345), + [anon_sym_volatile] = ACTIONS(1345), + [anon_sym_restrict] = ACTIONS(1345), + [anon_sym___restrict__] = ACTIONS(1345), + [anon_sym__Atomic] = ACTIONS(1345), + [anon_sym__Noreturn] = ACTIONS(1345), + [anon_sym_noreturn] = ACTIONS(1345), + [anon_sym_alignas] = ACTIONS(1345), + [anon_sym__Alignas] = ACTIONS(1345), + [sym_primitive_type] = ACTIONS(1345), + [anon_sym_enum] = ACTIONS(1345), + [anon_sym_struct] = ACTIONS(1345), + [anon_sym_union] = ACTIONS(1345), + [anon_sym_if] = ACTIONS(1345), + [anon_sym_switch] = ACTIONS(1345), + [anon_sym_case] = ACTIONS(1345), + [anon_sym_default] = ACTIONS(1345), + [anon_sym_while] = ACTIONS(1345), + [anon_sym_do] = ACTIONS(1345), + [anon_sym_for] = ACTIONS(1345), + [anon_sym_return] = ACTIONS(1345), + [anon_sym_break] = ACTIONS(1345), + [anon_sym_continue] = ACTIONS(1345), + [anon_sym_goto] = ACTIONS(1345), + [anon_sym___try] = ACTIONS(1345), + [anon_sym___leave] = ACTIONS(1345), + [anon_sym_DASH_DASH] = ACTIONS(1347), + [anon_sym_PLUS_PLUS] = ACTIONS(1347), + [anon_sym_sizeof] = ACTIONS(1345), + [anon_sym___alignof__] = ACTIONS(1345), + [anon_sym___alignof] = ACTIONS(1345), + [anon_sym__alignof] = ACTIONS(1345), + [anon_sym_alignof] = ACTIONS(1345), + [anon_sym__Alignof] = ACTIONS(1345), + [anon_sym_offsetof] = ACTIONS(1345), + [anon_sym__Generic] = ACTIONS(1345), + [anon_sym_asm] = ACTIONS(1345), + [anon_sym___asm__] = ACTIONS(1345), + [sym_number_literal] = ACTIONS(1347), + [anon_sym_L_SQUOTE] = ACTIONS(1347), + [anon_sym_u_SQUOTE] = ACTIONS(1347), + [anon_sym_U_SQUOTE] = ACTIONS(1347), + [anon_sym_u8_SQUOTE] = ACTIONS(1347), + [anon_sym_SQUOTE] = ACTIONS(1347), + [anon_sym_L_DQUOTE] = ACTIONS(1347), + [anon_sym_u_DQUOTE] = ACTIONS(1347), + [anon_sym_U_DQUOTE] = ACTIONS(1347), + [anon_sym_u8_DQUOTE] = ACTIONS(1347), + [anon_sym_DQUOTE] = ACTIONS(1347), + [sym_true] = ACTIONS(1345), + [sym_false] = ACTIONS(1345), + [anon_sym_NULL] = ACTIONS(1345), + [anon_sym_nullptr] = ACTIONS(1345), + [sym_comment] = ACTIONS(3), + }, + [341] = { + [sym_identifier] = ACTIONS(1349), + [aux_sym_preproc_include_token1] = ACTIONS(1349), + [aux_sym_preproc_def_token1] = ACTIONS(1349), + [aux_sym_preproc_if_token1] = ACTIONS(1349), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1349), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1349), + [sym_preproc_directive] = ACTIONS(1349), + [anon_sym_LPAREN2] = ACTIONS(1351), + [anon_sym_BANG] = ACTIONS(1351), + [anon_sym_TILDE] = ACTIONS(1351), + [anon_sym_DASH] = ACTIONS(1349), + [anon_sym_PLUS] = ACTIONS(1349), + [anon_sym_STAR] = ACTIONS(1351), + [anon_sym_AMP] = ACTIONS(1351), + [anon_sym_SEMI] = ACTIONS(1351), + [anon_sym___extension__] = ACTIONS(1349), + [anon_sym_typedef] = ACTIONS(1349), + [anon_sym_extern] = ACTIONS(1349), + [anon_sym___attribute__] = ACTIONS(1349), + [anon_sym___scanf] = ACTIONS(1349), + [anon_sym___printf] = ACTIONS(1349), + [anon_sym___read_mostly] = ACTIONS(1349), + [anon_sym___must_hold] = ACTIONS(1349), + [anon_sym___ro_after_init] = ACTIONS(1349), + [anon_sym___noreturn] = ACTIONS(1349), + [anon_sym___cold] = ACTIONS(1349), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1351), + [anon_sym___declspec] = ACTIONS(1349), + [anon_sym___init] = ACTIONS(1349), + [anon_sym___exit] = ACTIONS(1349), + [anon_sym___cdecl] = ACTIONS(1349), + [anon_sym___clrcall] = ACTIONS(1349), + [anon_sym___stdcall] = ACTIONS(1349), + [anon_sym___fastcall] = ACTIONS(1349), + [anon_sym___thiscall] = ACTIONS(1349), + [anon_sym___vectorcall] = ACTIONS(1349), + [anon_sym_LBRACE] = ACTIONS(1351), + [anon_sym_RBRACE] = ACTIONS(1351), + [anon_sym_signed] = ACTIONS(1349), + [anon_sym_unsigned] = ACTIONS(1349), + [anon_sym_long] = ACTIONS(1349), + [anon_sym_short] = ACTIONS(1349), + [anon_sym_static] = ACTIONS(1349), + [anon_sym_auto] = ACTIONS(1349), + [anon_sym_register] = ACTIONS(1349), + [anon_sym_inline] = ACTIONS(1349), + [anon_sym___inline] = ACTIONS(1349), + [anon_sym___inline__] = ACTIONS(1349), + [anon_sym___forceinline] = ACTIONS(1349), + [anon_sym_thread_local] = ACTIONS(1349), + [anon_sym___thread] = ACTIONS(1349), + [anon_sym_const] = ACTIONS(1349), + [anon_sym_constexpr] = ACTIONS(1349), + [anon_sym_volatile] = ACTIONS(1349), + [anon_sym_restrict] = ACTIONS(1349), + [anon_sym___restrict__] = ACTIONS(1349), + [anon_sym__Atomic] = ACTIONS(1349), + [anon_sym__Noreturn] = ACTIONS(1349), + [anon_sym_noreturn] = ACTIONS(1349), + [anon_sym_alignas] = ACTIONS(1349), + [anon_sym__Alignas] = ACTIONS(1349), + [sym_primitive_type] = ACTIONS(1349), + [anon_sym_enum] = ACTIONS(1349), + [anon_sym_struct] = ACTIONS(1349), + [anon_sym_union] = ACTIONS(1349), + [anon_sym_if] = ACTIONS(1349), + [anon_sym_switch] = ACTIONS(1349), + [anon_sym_case] = ACTIONS(1349), + [anon_sym_default] = ACTIONS(1349), + [anon_sym_while] = ACTIONS(1349), + [anon_sym_do] = ACTIONS(1349), + [anon_sym_for] = ACTIONS(1349), + [anon_sym_return] = ACTIONS(1349), + [anon_sym_break] = ACTIONS(1349), + [anon_sym_continue] = ACTIONS(1349), + [anon_sym_goto] = ACTIONS(1349), + [anon_sym___try] = ACTIONS(1349), + [anon_sym___leave] = ACTIONS(1349), + [anon_sym_DASH_DASH] = ACTIONS(1351), + [anon_sym_PLUS_PLUS] = ACTIONS(1351), + [anon_sym_sizeof] = ACTIONS(1349), + [anon_sym___alignof__] = ACTIONS(1349), + [anon_sym___alignof] = ACTIONS(1349), + [anon_sym__alignof] = ACTIONS(1349), + [anon_sym_alignof] = ACTIONS(1349), + [anon_sym__Alignof] = ACTIONS(1349), + [anon_sym_offsetof] = ACTIONS(1349), + [anon_sym__Generic] = ACTIONS(1349), + [anon_sym_asm] = ACTIONS(1349), + [anon_sym___asm__] = ACTIONS(1349), + [sym_number_literal] = ACTIONS(1351), + [anon_sym_L_SQUOTE] = ACTIONS(1351), + [anon_sym_u_SQUOTE] = ACTIONS(1351), + [anon_sym_U_SQUOTE] = ACTIONS(1351), + [anon_sym_u8_SQUOTE] = ACTIONS(1351), + [anon_sym_SQUOTE] = ACTIONS(1351), + [anon_sym_L_DQUOTE] = ACTIONS(1351), + [anon_sym_u_DQUOTE] = ACTIONS(1351), + [anon_sym_U_DQUOTE] = ACTIONS(1351), + [anon_sym_u8_DQUOTE] = ACTIONS(1351), + [anon_sym_DQUOTE] = ACTIONS(1351), + [sym_true] = ACTIONS(1349), + [sym_false] = ACTIONS(1349), + [anon_sym_NULL] = ACTIONS(1349), + [anon_sym_nullptr] = ACTIONS(1349), + [sym_comment] = ACTIONS(3), + }, + [342] = { + [sym_identifier] = ACTIONS(1301), + [aux_sym_preproc_include_token1] = ACTIONS(1301), + [aux_sym_preproc_def_token1] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1301), + [aux_sym_preproc_if_token2] = ACTIONS(1301), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1301), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1301), + [sym_preproc_directive] = ACTIONS(1301), + [anon_sym_LPAREN2] = ACTIONS(1303), + [anon_sym_BANG] = ACTIONS(1303), + [anon_sym_TILDE] = ACTIONS(1303), + [anon_sym_DASH] = ACTIONS(1301), + [anon_sym_PLUS] = ACTIONS(1301), + [anon_sym_STAR] = ACTIONS(1303), + [anon_sym_AMP] = ACTIONS(1303), + [anon_sym_SEMI] = ACTIONS(1303), + [anon_sym___extension__] = ACTIONS(1301), + [anon_sym_typedef] = ACTIONS(1301), + [anon_sym_extern] = ACTIONS(1301), + [anon_sym___attribute__] = ACTIONS(1301), + [anon_sym___scanf] = ACTIONS(1301), + [anon_sym___printf] = ACTIONS(1301), + [anon_sym___read_mostly] = ACTIONS(1301), + [anon_sym___must_hold] = ACTIONS(1301), + [anon_sym___ro_after_init] = ACTIONS(1301), + [anon_sym___noreturn] = ACTIONS(1301), + [anon_sym___cold] = ACTIONS(1301), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1303), + [anon_sym___declspec] = ACTIONS(1301), + [anon_sym___init] = ACTIONS(1301), + [anon_sym___exit] = ACTIONS(1301), + [anon_sym___cdecl] = ACTIONS(1301), + [anon_sym___clrcall] = ACTIONS(1301), + [anon_sym___stdcall] = ACTIONS(1301), + [anon_sym___fastcall] = ACTIONS(1301), + [anon_sym___thiscall] = ACTIONS(1301), + [anon_sym___vectorcall] = ACTIONS(1301), + [anon_sym_LBRACE] = ACTIONS(1303), + [anon_sym_signed] = ACTIONS(1301), + [anon_sym_unsigned] = ACTIONS(1301), + [anon_sym_long] = ACTIONS(1301), + [anon_sym_short] = ACTIONS(1301), + [anon_sym_static] = ACTIONS(1301), + [anon_sym_auto] = ACTIONS(1301), + [anon_sym_register] = ACTIONS(1301), + [anon_sym_inline] = ACTIONS(1301), + [anon_sym___inline] = ACTIONS(1301), + [anon_sym___inline__] = ACTIONS(1301), + [anon_sym___forceinline] = ACTIONS(1301), + [anon_sym_thread_local] = ACTIONS(1301), + [anon_sym___thread] = ACTIONS(1301), + [anon_sym_const] = ACTIONS(1301), + [anon_sym_constexpr] = ACTIONS(1301), + [anon_sym_volatile] = ACTIONS(1301), + [anon_sym_restrict] = ACTIONS(1301), + [anon_sym___restrict__] = ACTIONS(1301), + [anon_sym__Atomic] = ACTIONS(1301), + [anon_sym__Noreturn] = ACTIONS(1301), + [anon_sym_noreturn] = ACTIONS(1301), + [anon_sym_alignas] = ACTIONS(1301), + [anon_sym__Alignas] = ACTIONS(1301), + [sym_primitive_type] = ACTIONS(1301), + [anon_sym_enum] = ACTIONS(1301), + [anon_sym_struct] = ACTIONS(1301), + [anon_sym_union] = ACTIONS(1301), + [anon_sym_if] = ACTIONS(1301), + [anon_sym_switch] = ACTIONS(1301), + [anon_sym_case] = ACTIONS(1301), + [anon_sym_default] = ACTIONS(1301), + [anon_sym_while] = ACTIONS(1301), + [anon_sym_do] = ACTIONS(1301), + [anon_sym_for] = ACTIONS(1301), + [anon_sym_return] = ACTIONS(1301), + [anon_sym_break] = ACTIONS(1301), + [anon_sym_continue] = ACTIONS(1301), + [anon_sym_goto] = ACTIONS(1301), + [anon_sym___try] = ACTIONS(1301), + [anon_sym___leave] = ACTIONS(1301), + [anon_sym_DASH_DASH] = ACTIONS(1303), + [anon_sym_PLUS_PLUS] = ACTIONS(1303), + [anon_sym_sizeof] = ACTIONS(1301), + [anon_sym___alignof__] = ACTIONS(1301), + [anon_sym___alignof] = ACTIONS(1301), + [anon_sym__alignof] = ACTIONS(1301), + [anon_sym_alignof] = ACTIONS(1301), + [anon_sym__Alignof] = ACTIONS(1301), + [anon_sym_offsetof] = ACTIONS(1301), + [anon_sym__Generic] = ACTIONS(1301), + [anon_sym_asm] = ACTIONS(1301), + [anon_sym___asm__] = ACTIONS(1301), + [sym_number_literal] = ACTIONS(1303), + [anon_sym_L_SQUOTE] = ACTIONS(1303), + [anon_sym_u_SQUOTE] = ACTIONS(1303), + [anon_sym_U_SQUOTE] = ACTIONS(1303), + [anon_sym_u8_SQUOTE] = ACTIONS(1303), + [anon_sym_SQUOTE] = ACTIONS(1303), + [anon_sym_L_DQUOTE] = ACTIONS(1303), + [anon_sym_u_DQUOTE] = ACTIONS(1303), + [anon_sym_U_DQUOTE] = ACTIONS(1303), + [anon_sym_u8_DQUOTE] = ACTIONS(1303), + [anon_sym_DQUOTE] = ACTIONS(1303), + [sym_true] = ACTIONS(1301), + [sym_false] = ACTIONS(1301), + [anon_sym_NULL] = ACTIONS(1301), + [anon_sym_nullptr] = ACTIONS(1301), + [sym_comment] = ACTIONS(3), + }, + [343] = { + [sym_identifier] = ACTIONS(1297), + [aux_sym_preproc_include_token1] = ACTIONS(1297), + [aux_sym_preproc_def_token1] = ACTIONS(1297), + [aux_sym_preproc_if_token1] = ACTIONS(1297), + [aux_sym_preproc_if_token2] = ACTIONS(1297), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1297), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1297), + [sym_preproc_directive] = ACTIONS(1297), + [anon_sym_LPAREN2] = ACTIONS(1299), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_TILDE] = ACTIONS(1299), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_STAR] = ACTIONS(1299), + [anon_sym_AMP] = ACTIONS(1299), + [anon_sym_SEMI] = ACTIONS(1299), + [anon_sym___extension__] = ACTIONS(1297), + [anon_sym_typedef] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1297), + [anon_sym___attribute__] = ACTIONS(1297), + [anon_sym___scanf] = ACTIONS(1297), + [anon_sym___printf] = ACTIONS(1297), + [anon_sym___read_mostly] = ACTIONS(1297), + [anon_sym___must_hold] = ACTIONS(1297), + [anon_sym___ro_after_init] = ACTIONS(1297), + [anon_sym___noreturn] = ACTIONS(1297), + [anon_sym___cold] = ACTIONS(1297), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1299), + [anon_sym___declspec] = ACTIONS(1297), + [anon_sym___init] = ACTIONS(1297), + [anon_sym___exit] = ACTIONS(1297), + [anon_sym___cdecl] = ACTIONS(1297), + [anon_sym___clrcall] = ACTIONS(1297), + [anon_sym___stdcall] = ACTIONS(1297), + [anon_sym___fastcall] = ACTIONS(1297), + [anon_sym___thiscall] = ACTIONS(1297), + [anon_sym___vectorcall] = ACTIONS(1297), + [anon_sym_LBRACE] = ACTIONS(1299), + [anon_sym_signed] = ACTIONS(1297), + [anon_sym_unsigned] = ACTIONS(1297), + [anon_sym_long] = ACTIONS(1297), + [anon_sym_short] = ACTIONS(1297), + [anon_sym_static] = ACTIONS(1297), + [anon_sym_auto] = ACTIONS(1297), + [anon_sym_register] = ACTIONS(1297), + [anon_sym_inline] = ACTIONS(1297), + [anon_sym___inline] = ACTIONS(1297), + [anon_sym___inline__] = ACTIONS(1297), + [anon_sym___forceinline] = ACTIONS(1297), + [anon_sym_thread_local] = ACTIONS(1297), + [anon_sym___thread] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1297), + [anon_sym_constexpr] = ACTIONS(1297), + [anon_sym_volatile] = ACTIONS(1297), + [anon_sym_restrict] = ACTIONS(1297), + [anon_sym___restrict__] = ACTIONS(1297), + [anon_sym__Atomic] = ACTIONS(1297), + [anon_sym__Noreturn] = ACTIONS(1297), + [anon_sym_noreturn] = ACTIONS(1297), + [anon_sym_alignas] = ACTIONS(1297), + [anon_sym__Alignas] = ACTIONS(1297), + [sym_primitive_type] = ACTIONS(1297), + [anon_sym_enum] = ACTIONS(1297), + [anon_sym_struct] = ACTIONS(1297), + [anon_sym_union] = ACTIONS(1297), + [anon_sym_if] = ACTIONS(1297), + [anon_sym_switch] = ACTIONS(1297), + [anon_sym_case] = ACTIONS(1297), + [anon_sym_default] = ACTIONS(1297), + [anon_sym_while] = ACTIONS(1297), + [anon_sym_do] = ACTIONS(1297), + [anon_sym_for] = ACTIONS(1297), + [anon_sym_return] = ACTIONS(1297), + [anon_sym_break] = ACTIONS(1297), + [anon_sym_continue] = ACTIONS(1297), + [anon_sym_goto] = ACTIONS(1297), + [anon_sym___try] = ACTIONS(1297), + [anon_sym___leave] = ACTIONS(1297), + [anon_sym_DASH_DASH] = ACTIONS(1299), + [anon_sym_PLUS_PLUS] = ACTIONS(1299), + [anon_sym_sizeof] = ACTIONS(1297), + [anon_sym___alignof__] = ACTIONS(1297), + [anon_sym___alignof] = ACTIONS(1297), + [anon_sym__alignof] = ACTIONS(1297), + [anon_sym_alignof] = ACTIONS(1297), + [anon_sym__Alignof] = ACTIONS(1297), + [anon_sym_offsetof] = ACTIONS(1297), + [anon_sym__Generic] = ACTIONS(1297), + [anon_sym_asm] = ACTIONS(1297), + [anon_sym___asm__] = ACTIONS(1297), + [sym_number_literal] = ACTIONS(1299), + [anon_sym_L_SQUOTE] = ACTIONS(1299), + [anon_sym_u_SQUOTE] = ACTIONS(1299), + [anon_sym_U_SQUOTE] = ACTIONS(1299), + [anon_sym_u8_SQUOTE] = ACTIONS(1299), + [anon_sym_SQUOTE] = ACTIONS(1299), + [anon_sym_L_DQUOTE] = ACTIONS(1299), + [anon_sym_u_DQUOTE] = ACTIONS(1299), + [anon_sym_U_DQUOTE] = ACTIONS(1299), + [anon_sym_u8_DQUOTE] = ACTIONS(1299), + [anon_sym_DQUOTE] = ACTIONS(1299), + [sym_true] = ACTIONS(1297), + [sym_false] = ACTIONS(1297), + [anon_sym_NULL] = ACTIONS(1297), + [anon_sym_nullptr] = ACTIONS(1297), + [sym_comment] = ACTIONS(3), + }, + [344] = { [sym_identifier] = ACTIONS(1289), [aux_sym_preproc_include_token1] = ACTIONS(1289), [aux_sym_preproc_def_token1] = ACTIONS(1289), @@ -46447,14 +54953,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_ifdef_token1] = ACTIONS(1289), [aux_sym_preproc_ifdef_token2] = ACTIONS(1289), [sym_preproc_directive] = ACTIONS(1289), - [anon_sym_LPAREN2] = ACTIONS(1292), - [anon_sym_BANG] = ACTIONS(1292), - [anon_sym_TILDE] = ACTIONS(1292), + [anon_sym_LPAREN2] = ACTIONS(1291), + [anon_sym_BANG] = ACTIONS(1291), + [anon_sym_TILDE] = ACTIONS(1291), [anon_sym_DASH] = ACTIONS(1289), [anon_sym_PLUS] = ACTIONS(1289), - [anon_sym_STAR] = ACTIONS(1292), - [anon_sym_AMP] = ACTIONS(1292), - [anon_sym_SEMI] = ACTIONS(1292), + [anon_sym_STAR] = ACTIONS(1291), + [anon_sym_AMP] = ACTIONS(1291), + [anon_sym_SEMI] = ACTIONS(1291), [anon_sym___extension__] = ACTIONS(1289), [anon_sym_typedef] = ACTIONS(1289), [anon_sym_extern] = ACTIONS(1289), @@ -46464,17 +54970,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___read_mostly] = ACTIONS(1289), [anon_sym___must_hold] = ACTIONS(1289), [anon_sym___ro_after_init] = ACTIONS(1289), - [anon_sym___init] = ACTIONS(1289), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1292), + [anon_sym___noreturn] = ACTIONS(1289), + [anon_sym___cold] = ACTIONS(1289), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1291), [anon_sym___declspec] = ACTIONS(1289), + [anon_sym___init] = ACTIONS(1289), + [anon_sym___exit] = ACTIONS(1289), [anon_sym___cdecl] = ACTIONS(1289), [anon_sym___clrcall] = ACTIONS(1289), [anon_sym___stdcall] = ACTIONS(1289), [anon_sym___fastcall] = ACTIONS(1289), [anon_sym___thiscall] = ACTIONS(1289), [anon_sym___vectorcall] = ACTIONS(1289), - [anon_sym_LBRACE] = ACTIONS(1292), - [anon_sym_RBRACE] = ACTIONS(1292), + [anon_sym_LBRACE] = ACTIONS(1291), + [anon_sym_RBRACE] = ACTIONS(1291), [anon_sym_signed] = ACTIONS(1289), [anon_sym_unsigned] = ACTIONS(1289), [anon_sym_long] = ACTIONS(1289), @@ -46515,8 +55024,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_goto] = ACTIONS(1289), [anon_sym___try] = ACTIONS(1289), [anon_sym___leave] = ACTIONS(1289), - [anon_sym_DASH_DASH] = ACTIONS(1292), - [anon_sym_PLUS_PLUS] = ACTIONS(1292), + [anon_sym_DASH_DASH] = ACTIONS(1291), + [anon_sym_PLUS_PLUS] = ACTIONS(1291), [anon_sym_sizeof] = ACTIONS(1289), [anon_sym___alignof__] = ACTIONS(1289), [anon_sym___alignof] = ACTIONS(1289), @@ -46527,6573 +55036,6630 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(1289), [anon_sym_asm] = ACTIONS(1289), [anon_sym___asm__] = ACTIONS(1289), - [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_number_literal] = ACTIONS(1291), + [anon_sym_L_SQUOTE] = ACTIONS(1291), + [anon_sym_u_SQUOTE] = ACTIONS(1291), + [anon_sym_U_SQUOTE] = ACTIONS(1291), + [anon_sym_u8_SQUOTE] = ACTIONS(1291), + [anon_sym_SQUOTE] = ACTIONS(1291), + [anon_sym_L_DQUOTE] = ACTIONS(1291), + [anon_sym_u_DQUOTE] = ACTIONS(1291), + [anon_sym_U_DQUOTE] = ACTIONS(1291), + [anon_sym_u8_DQUOTE] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1291), [sym_true] = ACTIONS(1289), [sym_false] = ACTIONS(1289), [anon_sym_NULL] = ACTIONS(1289), [anon_sym_nullptr] = ACTIONS(1289), [sym_comment] = ACTIONS(3), }, - [281] = { - [sym_identifier] = ACTIONS(1295), - [aux_sym_preproc_include_token1] = ACTIONS(1295), - [aux_sym_preproc_def_token1] = ACTIONS(1295), - [aux_sym_preproc_if_token1] = ACTIONS(1295), - [aux_sym_preproc_if_token2] = ACTIONS(1295), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1295), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1295), - [sym_preproc_directive] = ACTIONS(1295), - [anon_sym_LPAREN2] = ACTIONS(1297), - [anon_sym_BANG] = ACTIONS(1297), - [anon_sym_TILDE] = ACTIONS(1297), - [anon_sym_DASH] = ACTIONS(1295), - [anon_sym_PLUS] = ACTIONS(1295), - [anon_sym_STAR] = ACTIONS(1297), - [anon_sym_AMP] = ACTIONS(1297), - [anon_sym_SEMI] = ACTIONS(1297), - [anon_sym___extension__] = ACTIONS(1295), - [anon_sym_typedef] = ACTIONS(1295), - [anon_sym_extern] = ACTIONS(1295), - [anon_sym___attribute__] = ACTIONS(1295), - [anon_sym___scanf] = ACTIONS(1295), - [anon_sym___printf] = ACTIONS(1295), - [anon_sym___read_mostly] = ACTIONS(1295), - [anon_sym___must_hold] = ACTIONS(1295), - [anon_sym___ro_after_init] = ACTIONS(1295), - [anon_sym___init] = ACTIONS(1295), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1297), - [anon_sym___declspec] = ACTIONS(1295), - [anon_sym___cdecl] = ACTIONS(1295), - [anon_sym___clrcall] = ACTIONS(1295), - [anon_sym___stdcall] = ACTIONS(1295), - [anon_sym___fastcall] = ACTIONS(1295), - [anon_sym___thiscall] = ACTIONS(1295), - [anon_sym___vectorcall] = ACTIONS(1295), - [anon_sym_LBRACE] = ACTIONS(1297), - [anon_sym_signed] = ACTIONS(1295), - [anon_sym_unsigned] = ACTIONS(1295), - [anon_sym_long] = ACTIONS(1295), - [anon_sym_short] = ACTIONS(1295), - [anon_sym_static] = ACTIONS(1295), - [anon_sym_auto] = ACTIONS(1295), - [anon_sym_register] = ACTIONS(1295), - [anon_sym_inline] = ACTIONS(1295), - [anon_sym___inline] = ACTIONS(1295), - [anon_sym___inline__] = ACTIONS(1295), - [anon_sym___forceinline] = ACTIONS(1295), - [anon_sym_thread_local] = ACTIONS(1295), - [anon_sym___thread] = ACTIONS(1295), - [anon_sym_const] = ACTIONS(1295), - [anon_sym_constexpr] = ACTIONS(1295), - [anon_sym_volatile] = ACTIONS(1295), - [anon_sym_restrict] = ACTIONS(1295), - [anon_sym___restrict__] = ACTIONS(1295), - [anon_sym__Atomic] = ACTIONS(1295), - [anon_sym__Noreturn] = ACTIONS(1295), - [anon_sym_noreturn] = ACTIONS(1295), - [anon_sym_alignas] = ACTIONS(1295), - [anon_sym__Alignas] = ACTIONS(1295), - [sym_primitive_type] = ACTIONS(1295), - [anon_sym_enum] = ACTIONS(1295), - [anon_sym_struct] = ACTIONS(1295), - [anon_sym_union] = ACTIONS(1295), - [anon_sym_if] = ACTIONS(1295), - [anon_sym_switch] = ACTIONS(1295), - [anon_sym_case] = ACTIONS(1295), - [anon_sym_default] = ACTIONS(1295), - [anon_sym_while] = ACTIONS(1295), - [anon_sym_do] = ACTIONS(1295), - [anon_sym_for] = ACTIONS(1295), - [anon_sym_return] = ACTIONS(1295), - [anon_sym_break] = ACTIONS(1295), - [anon_sym_continue] = ACTIONS(1295), - [anon_sym_goto] = ACTIONS(1295), - [anon_sym___try] = ACTIONS(1295), - [anon_sym___leave] = ACTIONS(1295), - [anon_sym_DASH_DASH] = ACTIONS(1297), - [anon_sym_PLUS_PLUS] = ACTIONS(1297), - [anon_sym_sizeof] = ACTIONS(1295), - [anon_sym___alignof__] = ACTIONS(1295), - [anon_sym___alignof] = ACTIONS(1295), - [anon_sym__alignof] = ACTIONS(1295), - [anon_sym_alignof] = ACTIONS(1295), - [anon_sym__Alignof] = ACTIONS(1295), - [anon_sym_offsetof] = ACTIONS(1295), - [anon_sym__Generic] = ACTIONS(1295), - [anon_sym_asm] = ACTIONS(1295), - [anon_sym___asm__] = ACTIONS(1295), - [sym_number_literal] = ACTIONS(1297), - [anon_sym_L_SQUOTE] = ACTIONS(1297), - [anon_sym_u_SQUOTE] = ACTIONS(1297), - [anon_sym_U_SQUOTE] = ACTIONS(1297), - [anon_sym_u8_SQUOTE] = ACTIONS(1297), - [anon_sym_SQUOTE] = ACTIONS(1297), - [anon_sym_L_DQUOTE] = ACTIONS(1297), - [anon_sym_u_DQUOTE] = ACTIONS(1297), - [anon_sym_U_DQUOTE] = ACTIONS(1297), - [anon_sym_u8_DQUOTE] = ACTIONS(1297), - [anon_sym_DQUOTE] = ACTIONS(1297), - [sym_true] = ACTIONS(1295), - [sym_false] = ACTIONS(1295), - [anon_sym_NULL] = ACTIONS(1295), - [anon_sym_nullptr] = ACTIONS(1295), - [sym_comment] = ACTIONS(3), - }, - [282] = { - [sym_identifier] = ACTIONS(1327), - [aux_sym_preproc_include_token1] = ACTIONS(1327), - [aux_sym_preproc_def_token1] = ACTIONS(1327), - [aux_sym_preproc_if_token1] = ACTIONS(1327), - [aux_sym_preproc_if_token2] = ACTIONS(1327), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1327), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1327), - [sym_preproc_directive] = ACTIONS(1327), - [anon_sym_LPAREN2] = ACTIONS(1329), - [anon_sym_BANG] = ACTIONS(1329), - [anon_sym_TILDE] = ACTIONS(1329), - [anon_sym_DASH] = ACTIONS(1327), - [anon_sym_PLUS] = ACTIONS(1327), - [anon_sym_STAR] = ACTIONS(1329), - [anon_sym_AMP] = ACTIONS(1329), - [anon_sym_SEMI] = ACTIONS(1329), - [anon_sym___extension__] = ACTIONS(1327), - [anon_sym_typedef] = ACTIONS(1327), - [anon_sym_extern] = ACTIONS(1327), - [anon_sym___attribute__] = ACTIONS(1327), - [anon_sym___scanf] = ACTIONS(1327), - [anon_sym___printf] = ACTIONS(1327), - [anon_sym___read_mostly] = ACTIONS(1327), - [anon_sym___must_hold] = ACTIONS(1327), - [anon_sym___ro_after_init] = ACTIONS(1327), - [anon_sym___init] = ACTIONS(1327), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1329), - [anon_sym___declspec] = ACTIONS(1327), - [anon_sym___cdecl] = ACTIONS(1327), - [anon_sym___clrcall] = ACTIONS(1327), - [anon_sym___stdcall] = ACTIONS(1327), - [anon_sym___fastcall] = ACTIONS(1327), - [anon_sym___thiscall] = ACTIONS(1327), - [anon_sym___vectorcall] = ACTIONS(1327), - [anon_sym_LBRACE] = ACTIONS(1329), - [anon_sym_signed] = ACTIONS(1327), - [anon_sym_unsigned] = ACTIONS(1327), - [anon_sym_long] = ACTIONS(1327), - [anon_sym_short] = ACTIONS(1327), - [anon_sym_static] = ACTIONS(1327), - [anon_sym_auto] = ACTIONS(1327), - [anon_sym_register] = ACTIONS(1327), - [anon_sym_inline] = ACTIONS(1327), - [anon_sym___inline] = ACTIONS(1327), - [anon_sym___inline__] = ACTIONS(1327), - [anon_sym___forceinline] = ACTIONS(1327), - [anon_sym_thread_local] = ACTIONS(1327), - [anon_sym___thread] = ACTIONS(1327), - [anon_sym_const] = ACTIONS(1327), - [anon_sym_constexpr] = ACTIONS(1327), - [anon_sym_volatile] = ACTIONS(1327), - [anon_sym_restrict] = ACTIONS(1327), - [anon_sym___restrict__] = ACTIONS(1327), - [anon_sym__Atomic] = ACTIONS(1327), - [anon_sym__Noreturn] = ACTIONS(1327), - [anon_sym_noreturn] = ACTIONS(1327), - [anon_sym_alignas] = ACTIONS(1327), - [anon_sym__Alignas] = ACTIONS(1327), - [sym_primitive_type] = ACTIONS(1327), - [anon_sym_enum] = ACTIONS(1327), - [anon_sym_struct] = ACTIONS(1327), - [anon_sym_union] = ACTIONS(1327), - [anon_sym_if] = ACTIONS(1327), - [anon_sym_switch] = ACTIONS(1327), - [anon_sym_case] = ACTIONS(1327), - [anon_sym_default] = ACTIONS(1327), - [anon_sym_while] = ACTIONS(1327), - [anon_sym_do] = ACTIONS(1327), - [anon_sym_for] = ACTIONS(1327), - [anon_sym_return] = ACTIONS(1327), - [anon_sym_break] = ACTIONS(1327), - [anon_sym_continue] = ACTIONS(1327), - [anon_sym_goto] = ACTIONS(1327), - [anon_sym___try] = ACTIONS(1327), - [anon_sym___leave] = ACTIONS(1327), - [anon_sym_DASH_DASH] = ACTIONS(1329), - [anon_sym_PLUS_PLUS] = ACTIONS(1329), - [anon_sym_sizeof] = ACTIONS(1327), - [anon_sym___alignof__] = ACTIONS(1327), - [anon_sym___alignof] = ACTIONS(1327), - [anon_sym__alignof] = ACTIONS(1327), - [anon_sym_alignof] = ACTIONS(1327), - [anon_sym__Alignof] = ACTIONS(1327), - [anon_sym_offsetof] = ACTIONS(1327), - [anon_sym__Generic] = ACTIONS(1327), - [anon_sym_asm] = ACTIONS(1327), - [anon_sym___asm__] = ACTIONS(1327), - [sym_number_literal] = ACTIONS(1329), - [anon_sym_L_SQUOTE] = ACTIONS(1329), - [anon_sym_u_SQUOTE] = ACTIONS(1329), - [anon_sym_U_SQUOTE] = ACTIONS(1329), - [anon_sym_u8_SQUOTE] = ACTIONS(1329), - [anon_sym_SQUOTE] = ACTIONS(1329), - [anon_sym_L_DQUOTE] = ACTIONS(1329), - [anon_sym_u_DQUOTE] = ACTIONS(1329), - [anon_sym_U_DQUOTE] = ACTIONS(1329), - [anon_sym_u8_DQUOTE] = ACTIONS(1329), - [anon_sym_DQUOTE] = ACTIONS(1329), - [sym_true] = ACTIONS(1327), - [sym_false] = ACTIONS(1327), - [anon_sym_NULL] = ACTIONS(1327), - [anon_sym_nullptr] = ACTIONS(1327), - [sym_comment] = ACTIONS(3), - }, - [283] = { - [sym_identifier] = ACTIONS(1363), - [aux_sym_preproc_include_token1] = ACTIONS(1363), - [aux_sym_preproc_def_token1] = ACTIONS(1363), - [aux_sym_preproc_if_token1] = ACTIONS(1363), - [aux_sym_preproc_if_token2] = ACTIONS(1363), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1363), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1363), - [sym_preproc_directive] = ACTIONS(1363), - [anon_sym_LPAREN2] = ACTIONS(1365), - [anon_sym_BANG] = ACTIONS(1365), - [anon_sym_TILDE] = ACTIONS(1365), - [anon_sym_DASH] = ACTIONS(1363), - [anon_sym_PLUS] = ACTIONS(1363), - [anon_sym_STAR] = ACTIONS(1365), - [anon_sym_AMP] = ACTIONS(1365), - [anon_sym_SEMI] = ACTIONS(1365), - [anon_sym___extension__] = ACTIONS(1363), - [anon_sym_typedef] = ACTIONS(1363), - [anon_sym_extern] = ACTIONS(1363), - [anon_sym___attribute__] = ACTIONS(1363), - [anon_sym___scanf] = ACTIONS(1363), - [anon_sym___printf] = ACTIONS(1363), - [anon_sym___read_mostly] = ACTIONS(1363), - [anon_sym___must_hold] = ACTIONS(1363), - [anon_sym___ro_after_init] = ACTIONS(1363), - [anon_sym___init] = ACTIONS(1363), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1365), - [anon_sym___declspec] = ACTIONS(1363), - [anon_sym___cdecl] = ACTIONS(1363), - [anon_sym___clrcall] = ACTIONS(1363), - [anon_sym___stdcall] = ACTIONS(1363), - [anon_sym___fastcall] = ACTIONS(1363), - [anon_sym___thiscall] = ACTIONS(1363), - [anon_sym___vectorcall] = ACTIONS(1363), - [anon_sym_LBRACE] = ACTIONS(1365), - [anon_sym_signed] = ACTIONS(1363), - [anon_sym_unsigned] = ACTIONS(1363), - [anon_sym_long] = ACTIONS(1363), - [anon_sym_short] = ACTIONS(1363), - [anon_sym_static] = ACTIONS(1363), - [anon_sym_auto] = ACTIONS(1363), - [anon_sym_register] = ACTIONS(1363), - [anon_sym_inline] = ACTIONS(1363), - [anon_sym___inline] = ACTIONS(1363), - [anon_sym___inline__] = ACTIONS(1363), - [anon_sym___forceinline] = ACTIONS(1363), - [anon_sym_thread_local] = ACTIONS(1363), - [anon_sym___thread] = ACTIONS(1363), - [anon_sym_const] = ACTIONS(1363), - [anon_sym_constexpr] = ACTIONS(1363), - [anon_sym_volatile] = ACTIONS(1363), - [anon_sym_restrict] = ACTIONS(1363), - [anon_sym___restrict__] = ACTIONS(1363), - [anon_sym__Atomic] = ACTIONS(1363), - [anon_sym__Noreturn] = ACTIONS(1363), - [anon_sym_noreturn] = ACTIONS(1363), - [anon_sym_alignas] = ACTIONS(1363), - [anon_sym__Alignas] = ACTIONS(1363), - [sym_primitive_type] = ACTIONS(1363), - [anon_sym_enum] = ACTIONS(1363), - [anon_sym_struct] = ACTIONS(1363), - [anon_sym_union] = ACTIONS(1363), - [anon_sym_if] = ACTIONS(1363), - [anon_sym_switch] = ACTIONS(1363), - [anon_sym_case] = ACTIONS(1363), - [anon_sym_default] = ACTIONS(1363), - [anon_sym_while] = ACTIONS(1363), - [anon_sym_do] = ACTIONS(1363), - [anon_sym_for] = ACTIONS(1363), - [anon_sym_return] = ACTIONS(1363), - [anon_sym_break] = ACTIONS(1363), - [anon_sym_continue] = ACTIONS(1363), - [anon_sym_goto] = ACTIONS(1363), - [anon_sym___try] = ACTIONS(1363), - [anon_sym___leave] = ACTIONS(1363), - [anon_sym_DASH_DASH] = ACTIONS(1365), - [anon_sym_PLUS_PLUS] = ACTIONS(1365), - [anon_sym_sizeof] = ACTIONS(1363), - [anon_sym___alignof__] = ACTIONS(1363), - [anon_sym___alignof] = ACTIONS(1363), - [anon_sym__alignof] = ACTIONS(1363), - [anon_sym_alignof] = ACTIONS(1363), - [anon_sym__Alignof] = ACTIONS(1363), - [anon_sym_offsetof] = ACTIONS(1363), - [anon_sym__Generic] = ACTIONS(1363), - [anon_sym_asm] = ACTIONS(1363), - [anon_sym___asm__] = ACTIONS(1363), - [sym_number_literal] = ACTIONS(1365), - [anon_sym_L_SQUOTE] = ACTIONS(1365), - [anon_sym_u_SQUOTE] = ACTIONS(1365), - [anon_sym_U_SQUOTE] = ACTIONS(1365), - [anon_sym_u8_SQUOTE] = ACTIONS(1365), - [anon_sym_SQUOTE] = ACTIONS(1365), - [anon_sym_L_DQUOTE] = ACTIONS(1365), - [anon_sym_u_DQUOTE] = ACTIONS(1365), - [anon_sym_U_DQUOTE] = ACTIONS(1365), - [anon_sym_u8_DQUOTE] = ACTIONS(1365), - [anon_sym_DQUOTE] = ACTIONS(1365), - [sym_true] = ACTIONS(1363), - [sym_false] = ACTIONS(1363), - [anon_sym_NULL] = ACTIONS(1363), - [anon_sym_nullptr] = ACTIONS(1363), - [sym_comment] = ACTIONS(3), - }, - [284] = { - [sym_identifier] = ACTIONS(1367), - [aux_sym_preproc_include_token1] = ACTIONS(1367), - [aux_sym_preproc_def_token1] = ACTIONS(1367), - [aux_sym_preproc_if_token1] = ACTIONS(1367), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1367), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1367), - [sym_preproc_directive] = ACTIONS(1367), - [anon_sym_LPAREN2] = ACTIONS(1369), - [anon_sym_BANG] = ACTIONS(1369), - [anon_sym_TILDE] = ACTIONS(1369), - [anon_sym_DASH] = ACTIONS(1367), - [anon_sym_PLUS] = ACTIONS(1367), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_AMP] = ACTIONS(1369), - [anon_sym_SEMI] = ACTIONS(1369), - [anon_sym___extension__] = ACTIONS(1367), - [anon_sym_typedef] = ACTIONS(1367), - [anon_sym_extern] = ACTIONS(1367), - [anon_sym___attribute__] = ACTIONS(1367), - [anon_sym___scanf] = ACTIONS(1367), - [anon_sym___printf] = ACTIONS(1367), - [anon_sym___read_mostly] = ACTIONS(1367), - [anon_sym___must_hold] = ACTIONS(1367), - [anon_sym___ro_after_init] = ACTIONS(1367), - [anon_sym___init] = ACTIONS(1367), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1369), - [anon_sym___declspec] = ACTIONS(1367), - [anon_sym___cdecl] = ACTIONS(1367), - [anon_sym___clrcall] = ACTIONS(1367), - [anon_sym___stdcall] = ACTIONS(1367), - [anon_sym___fastcall] = ACTIONS(1367), - [anon_sym___thiscall] = ACTIONS(1367), - [anon_sym___vectorcall] = ACTIONS(1367), - [anon_sym_LBRACE] = ACTIONS(1369), - [anon_sym_RBRACE] = ACTIONS(1369), - [anon_sym_signed] = ACTIONS(1367), - [anon_sym_unsigned] = ACTIONS(1367), - [anon_sym_long] = ACTIONS(1367), - [anon_sym_short] = ACTIONS(1367), - [anon_sym_static] = ACTIONS(1367), - [anon_sym_auto] = ACTIONS(1367), - [anon_sym_register] = ACTIONS(1367), - [anon_sym_inline] = ACTIONS(1367), - [anon_sym___inline] = ACTIONS(1367), - [anon_sym___inline__] = ACTIONS(1367), - [anon_sym___forceinline] = ACTIONS(1367), - [anon_sym_thread_local] = ACTIONS(1367), - [anon_sym___thread] = ACTIONS(1367), - [anon_sym_const] = ACTIONS(1367), - [anon_sym_constexpr] = ACTIONS(1367), - [anon_sym_volatile] = ACTIONS(1367), - [anon_sym_restrict] = ACTIONS(1367), - [anon_sym___restrict__] = ACTIONS(1367), - [anon_sym__Atomic] = ACTIONS(1367), - [anon_sym__Noreturn] = ACTIONS(1367), - [anon_sym_noreturn] = ACTIONS(1367), - [anon_sym_alignas] = ACTIONS(1367), - [anon_sym__Alignas] = ACTIONS(1367), - [sym_primitive_type] = ACTIONS(1367), - [anon_sym_enum] = ACTIONS(1367), - [anon_sym_struct] = ACTIONS(1367), - [anon_sym_union] = ACTIONS(1367), - [anon_sym_if] = ACTIONS(1367), - [anon_sym_switch] = ACTIONS(1367), - [anon_sym_case] = ACTIONS(1367), - [anon_sym_default] = ACTIONS(1367), - [anon_sym_while] = ACTIONS(1367), - [anon_sym_do] = ACTIONS(1367), - [anon_sym_for] = ACTIONS(1367), - [anon_sym_return] = ACTIONS(1367), - [anon_sym_break] = ACTIONS(1367), - [anon_sym_continue] = ACTIONS(1367), - [anon_sym_goto] = ACTIONS(1367), - [anon_sym___try] = ACTIONS(1367), - [anon_sym___leave] = ACTIONS(1367), - [anon_sym_DASH_DASH] = ACTIONS(1369), - [anon_sym_PLUS_PLUS] = ACTIONS(1369), - [anon_sym_sizeof] = ACTIONS(1367), - [anon_sym___alignof__] = ACTIONS(1367), - [anon_sym___alignof] = ACTIONS(1367), - [anon_sym__alignof] = ACTIONS(1367), - [anon_sym_alignof] = ACTIONS(1367), - [anon_sym__Alignof] = ACTIONS(1367), - [anon_sym_offsetof] = ACTIONS(1367), - [anon_sym__Generic] = ACTIONS(1367), - [anon_sym_asm] = ACTIONS(1367), - [anon_sym___asm__] = ACTIONS(1367), - [sym_number_literal] = ACTIONS(1369), - [anon_sym_L_SQUOTE] = ACTIONS(1369), - [anon_sym_u_SQUOTE] = ACTIONS(1369), - [anon_sym_U_SQUOTE] = ACTIONS(1369), - [anon_sym_u8_SQUOTE] = ACTIONS(1369), - [anon_sym_SQUOTE] = ACTIONS(1369), - [anon_sym_L_DQUOTE] = ACTIONS(1369), - [anon_sym_u_DQUOTE] = ACTIONS(1369), - [anon_sym_U_DQUOTE] = ACTIONS(1369), - [anon_sym_u8_DQUOTE] = ACTIONS(1369), - [anon_sym_DQUOTE] = ACTIONS(1369), - [sym_true] = ACTIONS(1367), - [sym_false] = ACTIONS(1367), - [anon_sym_NULL] = ACTIONS(1367), - [anon_sym_nullptr] = ACTIONS(1367), - [sym_comment] = ACTIONS(3), - }, - [285] = { - [sym_identifier] = ACTIONS(1363), - [aux_sym_preproc_include_token1] = ACTIONS(1363), - [aux_sym_preproc_def_token1] = ACTIONS(1363), - [aux_sym_preproc_if_token1] = ACTIONS(1363), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1363), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1363), - [sym_preproc_directive] = ACTIONS(1363), - [anon_sym_LPAREN2] = ACTIONS(1365), - [anon_sym_BANG] = ACTIONS(1365), - [anon_sym_TILDE] = ACTIONS(1365), - [anon_sym_DASH] = ACTIONS(1363), - [anon_sym_PLUS] = ACTIONS(1363), - [anon_sym_STAR] = ACTIONS(1365), - [anon_sym_AMP] = ACTIONS(1365), - [anon_sym_SEMI] = ACTIONS(1365), - [anon_sym___extension__] = ACTIONS(1363), - [anon_sym_typedef] = ACTIONS(1363), - [anon_sym_extern] = ACTIONS(1363), - [anon_sym___attribute__] = ACTIONS(1363), - [anon_sym___scanf] = ACTIONS(1363), - [anon_sym___printf] = ACTIONS(1363), - [anon_sym___read_mostly] = ACTIONS(1363), - [anon_sym___must_hold] = ACTIONS(1363), - [anon_sym___ro_after_init] = ACTIONS(1363), - [anon_sym___init] = ACTIONS(1363), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1365), - [anon_sym___declspec] = ACTIONS(1363), - [anon_sym___cdecl] = ACTIONS(1363), - [anon_sym___clrcall] = ACTIONS(1363), - [anon_sym___stdcall] = ACTIONS(1363), - [anon_sym___fastcall] = ACTIONS(1363), - [anon_sym___thiscall] = ACTIONS(1363), - [anon_sym___vectorcall] = ACTIONS(1363), - [anon_sym_LBRACE] = ACTIONS(1365), - [anon_sym_RBRACE] = ACTIONS(1365), - [anon_sym_signed] = ACTIONS(1363), - [anon_sym_unsigned] = ACTIONS(1363), - [anon_sym_long] = ACTIONS(1363), - [anon_sym_short] = ACTIONS(1363), - [anon_sym_static] = ACTIONS(1363), - [anon_sym_auto] = ACTIONS(1363), - [anon_sym_register] = ACTIONS(1363), - [anon_sym_inline] = ACTIONS(1363), - [anon_sym___inline] = ACTIONS(1363), - [anon_sym___inline__] = ACTIONS(1363), - [anon_sym___forceinline] = ACTIONS(1363), - [anon_sym_thread_local] = ACTIONS(1363), - [anon_sym___thread] = ACTIONS(1363), - [anon_sym_const] = ACTIONS(1363), - [anon_sym_constexpr] = ACTIONS(1363), - [anon_sym_volatile] = ACTIONS(1363), - [anon_sym_restrict] = ACTIONS(1363), - [anon_sym___restrict__] = ACTIONS(1363), - [anon_sym__Atomic] = ACTIONS(1363), - [anon_sym__Noreturn] = ACTIONS(1363), - [anon_sym_noreturn] = ACTIONS(1363), - [anon_sym_alignas] = ACTIONS(1363), - [anon_sym__Alignas] = ACTIONS(1363), - [sym_primitive_type] = ACTIONS(1363), - [anon_sym_enum] = ACTIONS(1363), - [anon_sym_struct] = ACTIONS(1363), - [anon_sym_union] = ACTIONS(1363), - [anon_sym_if] = ACTIONS(1363), - [anon_sym_switch] = ACTIONS(1363), - [anon_sym_case] = ACTIONS(1363), - [anon_sym_default] = ACTIONS(1363), - [anon_sym_while] = ACTIONS(1363), - [anon_sym_do] = ACTIONS(1363), - [anon_sym_for] = ACTIONS(1363), - [anon_sym_return] = ACTIONS(1363), - [anon_sym_break] = ACTIONS(1363), - [anon_sym_continue] = ACTIONS(1363), - [anon_sym_goto] = ACTIONS(1363), - [anon_sym___try] = ACTIONS(1363), - [anon_sym___leave] = ACTIONS(1363), - [anon_sym_DASH_DASH] = ACTIONS(1365), - [anon_sym_PLUS_PLUS] = ACTIONS(1365), - [anon_sym_sizeof] = ACTIONS(1363), - [anon_sym___alignof__] = ACTIONS(1363), - [anon_sym___alignof] = ACTIONS(1363), - [anon_sym__alignof] = ACTIONS(1363), - [anon_sym_alignof] = ACTIONS(1363), - [anon_sym__Alignof] = ACTIONS(1363), - [anon_sym_offsetof] = ACTIONS(1363), - [anon_sym__Generic] = ACTIONS(1363), - [anon_sym_asm] = ACTIONS(1363), - [anon_sym___asm__] = ACTIONS(1363), - [sym_number_literal] = ACTIONS(1365), - [anon_sym_L_SQUOTE] = ACTIONS(1365), - [anon_sym_u_SQUOTE] = ACTIONS(1365), - [anon_sym_U_SQUOTE] = ACTIONS(1365), - [anon_sym_u8_SQUOTE] = ACTIONS(1365), - [anon_sym_SQUOTE] = ACTIONS(1365), - [anon_sym_L_DQUOTE] = ACTIONS(1365), - [anon_sym_u_DQUOTE] = ACTIONS(1365), - [anon_sym_U_DQUOTE] = ACTIONS(1365), - [anon_sym_u8_DQUOTE] = ACTIONS(1365), - [anon_sym_DQUOTE] = ACTIONS(1365), - [sym_true] = ACTIONS(1363), - [sym_false] = ACTIONS(1363), - [anon_sym_NULL] = ACTIONS(1363), - [anon_sym_nullptr] = ACTIONS(1363), + [345] = { + [sym_identifier] = ACTIONS(1411), + [aux_sym_preproc_include_token1] = ACTIONS(1411), + [aux_sym_preproc_def_token1] = ACTIONS(1411), + [aux_sym_preproc_if_token1] = ACTIONS(1411), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1411), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1411), + [sym_preproc_directive] = ACTIONS(1411), + [anon_sym_LPAREN2] = ACTIONS(1413), + [anon_sym_BANG] = ACTIONS(1413), + [anon_sym_TILDE] = ACTIONS(1413), + [anon_sym_DASH] = ACTIONS(1411), + [anon_sym_PLUS] = ACTIONS(1411), + [anon_sym_STAR] = ACTIONS(1413), + [anon_sym_AMP] = ACTIONS(1413), + [anon_sym_SEMI] = ACTIONS(1413), + [anon_sym___extension__] = ACTIONS(1411), + [anon_sym_typedef] = ACTIONS(1411), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym___attribute__] = ACTIONS(1411), + [anon_sym___scanf] = ACTIONS(1411), + [anon_sym___printf] = ACTIONS(1411), + [anon_sym___read_mostly] = ACTIONS(1411), + [anon_sym___must_hold] = ACTIONS(1411), + [anon_sym___ro_after_init] = ACTIONS(1411), + [anon_sym___noreturn] = ACTIONS(1411), + [anon_sym___cold] = ACTIONS(1411), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1413), + [anon_sym___declspec] = ACTIONS(1411), + [anon_sym___init] = ACTIONS(1411), + [anon_sym___exit] = ACTIONS(1411), + [anon_sym___cdecl] = ACTIONS(1411), + [anon_sym___clrcall] = ACTIONS(1411), + [anon_sym___stdcall] = ACTIONS(1411), + [anon_sym___fastcall] = ACTIONS(1411), + [anon_sym___thiscall] = ACTIONS(1411), + [anon_sym___vectorcall] = ACTIONS(1411), + [anon_sym_LBRACE] = ACTIONS(1413), + [anon_sym_RBRACE] = ACTIONS(1413), + [anon_sym_signed] = ACTIONS(1411), + [anon_sym_unsigned] = ACTIONS(1411), + [anon_sym_long] = ACTIONS(1411), + [anon_sym_short] = ACTIONS(1411), + [anon_sym_static] = ACTIONS(1411), + [anon_sym_auto] = ACTIONS(1411), + [anon_sym_register] = ACTIONS(1411), + [anon_sym_inline] = ACTIONS(1411), + [anon_sym___inline] = ACTIONS(1411), + [anon_sym___inline__] = ACTIONS(1411), + [anon_sym___forceinline] = ACTIONS(1411), + [anon_sym_thread_local] = ACTIONS(1411), + [anon_sym___thread] = ACTIONS(1411), + [anon_sym_const] = ACTIONS(1411), + [anon_sym_constexpr] = ACTIONS(1411), + [anon_sym_volatile] = ACTIONS(1411), + [anon_sym_restrict] = ACTIONS(1411), + [anon_sym___restrict__] = ACTIONS(1411), + [anon_sym__Atomic] = ACTIONS(1411), + [anon_sym__Noreturn] = ACTIONS(1411), + [anon_sym_noreturn] = ACTIONS(1411), + [anon_sym_alignas] = ACTIONS(1411), + [anon_sym__Alignas] = ACTIONS(1411), + [sym_primitive_type] = ACTIONS(1411), + [anon_sym_enum] = ACTIONS(1411), + [anon_sym_struct] = ACTIONS(1411), + [anon_sym_union] = ACTIONS(1411), + [anon_sym_if] = ACTIONS(1411), + [anon_sym_switch] = ACTIONS(1411), + [anon_sym_case] = ACTIONS(1411), + [anon_sym_default] = ACTIONS(1411), + [anon_sym_while] = ACTIONS(1411), + [anon_sym_do] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1411), + [anon_sym_return] = ACTIONS(1411), + [anon_sym_break] = ACTIONS(1411), + [anon_sym_continue] = ACTIONS(1411), + [anon_sym_goto] = ACTIONS(1411), + [anon_sym___try] = ACTIONS(1411), + [anon_sym___leave] = ACTIONS(1411), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_sizeof] = ACTIONS(1411), + [anon_sym___alignof__] = ACTIONS(1411), + [anon_sym___alignof] = ACTIONS(1411), + [anon_sym__alignof] = ACTIONS(1411), + [anon_sym_alignof] = ACTIONS(1411), + [anon_sym__Alignof] = ACTIONS(1411), + [anon_sym_offsetof] = ACTIONS(1411), + [anon_sym__Generic] = ACTIONS(1411), + [anon_sym_asm] = ACTIONS(1411), + [anon_sym___asm__] = ACTIONS(1411), + [sym_number_literal] = ACTIONS(1413), + [anon_sym_L_SQUOTE] = ACTIONS(1413), + [anon_sym_u_SQUOTE] = ACTIONS(1413), + [anon_sym_U_SQUOTE] = ACTIONS(1413), + [anon_sym_u8_SQUOTE] = ACTIONS(1413), + [anon_sym_SQUOTE] = ACTIONS(1413), + [anon_sym_L_DQUOTE] = ACTIONS(1413), + [anon_sym_u_DQUOTE] = ACTIONS(1413), + [anon_sym_U_DQUOTE] = ACTIONS(1413), + [anon_sym_u8_DQUOTE] = ACTIONS(1413), + [anon_sym_DQUOTE] = ACTIONS(1413), + [sym_true] = ACTIONS(1411), + [sym_false] = ACTIONS(1411), + [anon_sym_NULL] = ACTIONS(1411), + [anon_sym_nullptr] = ACTIONS(1411), [sym_comment] = ACTIONS(3), }, - [286] = { - [sym_identifier] = ACTIONS(1359), - [aux_sym_preproc_include_token1] = ACTIONS(1359), - [aux_sym_preproc_def_token1] = ACTIONS(1359), - [aux_sym_preproc_if_token1] = ACTIONS(1359), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1359), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1359), - [sym_preproc_directive] = ACTIONS(1359), - [anon_sym_LPAREN2] = ACTIONS(1361), - [anon_sym_BANG] = ACTIONS(1361), - [anon_sym_TILDE] = ACTIONS(1361), - [anon_sym_DASH] = ACTIONS(1359), - [anon_sym_PLUS] = ACTIONS(1359), - [anon_sym_STAR] = ACTIONS(1361), - [anon_sym_AMP] = ACTIONS(1361), - [anon_sym_SEMI] = ACTIONS(1361), - [anon_sym___extension__] = ACTIONS(1359), - [anon_sym_typedef] = ACTIONS(1359), - [anon_sym_extern] = ACTIONS(1359), - [anon_sym___attribute__] = ACTIONS(1359), - [anon_sym___scanf] = ACTIONS(1359), - [anon_sym___printf] = ACTIONS(1359), - [anon_sym___read_mostly] = ACTIONS(1359), - [anon_sym___must_hold] = ACTIONS(1359), - [anon_sym___ro_after_init] = ACTIONS(1359), - [anon_sym___init] = ACTIONS(1359), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1361), - [anon_sym___declspec] = ACTIONS(1359), - [anon_sym___cdecl] = ACTIONS(1359), - [anon_sym___clrcall] = ACTIONS(1359), - [anon_sym___stdcall] = ACTIONS(1359), - [anon_sym___fastcall] = ACTIONS(1359), - [anon_sym___thiscall] = ACTIONS(1359), - [anon_sym___vectorcall] = ACTIONS(1359), - [anon_sym_LBRACE] = ACTIONS(1361), - [anon_sym_RBRACE] = ACTIONS(1361), - [anon_sym_signed] = ACTIONS(1359), - [anon_sym_unsigned] = ACTIONS(1359), - [anon_sym_long] = ACTIONS(1359), - [anon_sym_short] = ACTIONS(1359), - [anon_sym_static] = ACTIONS(1359), - [anon_sym_auto] = ACTIONS(1359), - [anon_sym_register] = ACTIONS(1359), - [anon_sym_inline] = ACTIONS(1359), - [anon_sym___inline] = ACTIONS(1359), - [anon_sym___inline__] = ACTIONS(1359), - [anon_sym___forceinline] = ACTIONS(1359), - [anon_sym_thread_local] = ACTIONS(1359), - [anon_sym___thread] = ACTIONS(1359), - [anon_sym_const] = ACTIONS(1359), - [anon_sym_constexpr] = ACTIONS(1359), - [anon_sym_volatile] = ACTIONS(1359), - [anon_sym_restrict] = ACTIONS(1359), - [anon_sym___restrict__] = ACTIONS(1359), - [anon_sym__Atomic] = ACTIONS(1359), - [anon_sym__Noreturn] = ACTIONS(1359), - [anon_sym_noreturn] = ACTIONS(1359), - [anon_sym_alignas] = ACTIONS(1359), - [anon_sym__Alignas] = ACTIONS(1359), - [sym_primitive_type] = ACTIONS(1359), - [anon_sym_enum] = ACTIONS(1359), - [anon_sym_struct] = ACTIONS(1359), - [anon_sym_union] = ACTIONS(1359), - [anon_sym_if] = ACTIONS(1359), - [anon_sym_switch] = ACTIONS(1359), - [anon_sym_case] = ACTIONS(1359), - [anon_sym_default] = ACTIONS(1359), - [anon_sym_while] = ACTIONS(1359), - [anon_sym_do] = ACTIONS(1359), - [anon_sym_for] = ACTIONS(1359), - [anon_sym_return] = ACTIONS(1359), - [anon_sym_break] = ACTIONS(1359), - [anon_sym_continue] = ACTIONS(1359), - [anon_sym_goto] = ACTIONS(1359), - [anon_sym___try] = ACTIONS(1359), - [anon_sym___leave] = ACTIONS(1359), - [anon_sym_DASH_DASH] = ACTIONS(1361), - [anon_sym_PLUS_PLUS] = ACTIONS(1361), - [anon_sym_sizeof] = ACTIONS(1359), - [anon_sym___alignof__] = ACTIONS(1359), - [anon_sym___alignof] = ACTIONS(1359), - [anon_sym__alignof] = ACTIONS(1359), - [anon_sym_alignof] = ACTIONS(1359), - [anon_sym__Alignof] = ACTIONS(1359), - [anon_sym_offsetof] = ACTIONS(1359), - [anon_sym__Generic] = ACTIONS(1359), - [anon_sym_asm] = ACTIONS(1359), - [anon_sym___asm__] = ACTIONS(1359), - [sym_number_literal] = ACTIONS(1361), - [anon_sym_L_SQUOTE] = ACTIONS(1361), - [anon_sym_u_SQUOTE] = ACTIONS(1361), - [anon_sym_U_SQUOTE] = ACTIONS(1361), - [anon_sym_u8_SQUOTE] = ACTIONS(1361), - [anon_sym_SQUOTE] = ACTIONS(1361), - [anon_sym_L_DQUOTE] = ACTIONS(1361), - [anon_sym_u_DQUOTE] = ACTIONS(1361), - [anon_sym_U_DQUOTE] = ACTIONS(1361), - [anon_sym_u8_DQUOTE] = ACTIONS(1361), - [anon_sym_DQUOTE] = ACTIONS(1361), - [sym_true] = ACTIONS(1359), - [sym_false] = ACTIONS(1359), - [anon_sym_NULL] = ACTIONS(1359), - [anon_sym_nullptr] = ACTIONS(1359), + [346] = { + [sym_identifier] = ACTIONS(1377), + [aux_sym_preproc_include_token1] = ACTIONS(1377), + [aux_sym_preproc_def_token1] = ACTIONS(1377), + [aux_sym_preproc_if_token1] = ACTIONS(1377), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1377), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1377), + [sym_preproc_directive] = ACTIONS(1377), + [anon_sym_LPAREN2] = ACTIONS(1379), + [anon_sym_BANG] = ACTIONS(1379), + [anon_sym_TILDE] = ACTIONS(1379), + [anon_sym_DASH] = ACTIONS(1377), + [anon_sym_PLUS] = ACTIONS(1377), + [anon_sym_STAR] = ACTIONS(1379), + [anon_sym_AMP] = ACTIONS(1379), + [anon_sym_SEMI] = ACTIONS(1379), + [anon_sym___extension__] = ACTIONS(1377), + [anon_sym_typedef] = ACTIONS(1377), + [anon_sym_extern] = ACTIONS(1377), + [anon_sym___attribute__] = ACTIONS(1377), + [anon_sym___scanf] = ACTIONS(1377), + [anon_sym___printf] = ACTIONS(1377), + [anon_sym___read_mostly] = ACTIONS(1377), + [anon_sym___must_hold] = ACTIONS(1377), + [anon_sym___ro_after_init] = ACTIONS(1377), + [anon_sym___noreturn] = ACTIONS(1377), + [anon_sym___cold] = ACTIONS(1377), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1379), + [anon_sym___declspec] = ACTIONS(1377), + [anon_sym___init] = ACTIONS(1377), + [anon_sym___exit] = ACTIONS(1377), + [anon_sym___cdecl] = ACTIONS(1377), + [anon_sym___clrcall] = ACTIONS(1377), + [anon_sym___stdcall] = ACTIONS(1377), + [anon_sym___fastcall] = ACTIONS(1377), + [anon_sym___thiscall] = ACTIONS(1377), + [anon_sym___vectorcall] = ACTIONS(1377), + [anon_sym_LBRACE] = ACTIONS(1379), + [anon_sym_RBRACE] = ACTIONS(1379), + [anon_sym_signed] = ACTIONS(1377), + [anon_sym_unsigned] = ACTIONS(1377), + [anon_sym_long] = ACTIONS(1377), + [anon_sym_short] = ACTIONS(1377), + [anon_sym_static] = ACTIONS(1377), + [anon_sym_auto] = ACTIONS(1377), + [anon_sym_register] = ACTIONS(1377), + [anon_sym_inline] = ACTIONS(1377), + [anon_sym___inline] = ACTIONS(1377), + [anon_sym___inline__] = ACTIONS(1377), + [anon_sym___forceinline] = ACTIONS(1377), + [anon_sym_thread_local] = ACTIONS(1377), + [anon_sym___thread] = ACTIONS(1377), + [anon_sym_const] = ACTIONS(1377), + [anon_sym_constexpr] = ACTIONS(1377), + [anon_sym_volatile] = ACTIONS(1377), + [anon_sym_restrict] = ACTIONS(1377), + [anon_sym___restrict__] = ACTIONS(1377), + [anon_sym__Atomic] = ACTIONS(1377), + [anon_sym__Noreturn] = ACTIONS(1377), + [anon_sym_noreturn] = ACTIONS(1377), + [anon_sym_alignas] = ACTIONS(1377), + [anon_sym__Alignas] = ACTIONS(1377), + [sym_primitive_type] = ACTIONS(1377), + [anon_sym_enum] = ACTIONS(1377), + [anon_sym_struct] = ACTIONS(1377), + [anon_sym_union] = ACTIONS(1377), + [anon_sym_if] = ACTIONS(1377), + [anon_sym_switch] = ACTIONS(1377), + [anon_sym_case] = ACTIONS(1377), + [anon_sym_default] = ACTIONS(1377), + [anon_sym_while] = ACTIONS(1377), + [anon_sym_do] = ACTIONS(1377), + [anon_sym_for] = ACTIONS(1377), + [anon_sym_return] = ACTIONS(1377), + [anon_sym_break] = ACTIONS(1377), + [anon_sym_continue] = ACTIONS(1377), + [anon_sym_goto] = ACTIONS(1377), + [anon_sym___try] = ACTIONS(1377), + [anon_sym___leave] = ACTIONS(1377), + [anon_sym_DASH_DASH] = ACTIONS(1379), + [anon_sym_PLUS_PLUS] = ACTIONS(1379), + [anon_sym_sizeof] = ACTIONS(1377), + [anon_sym___alignof__] = ACTIONS(1377), + [anon_sym___alignof] = ACTIONS(1377), + [anon_sym__alignof] = ACTIONS(1377), + [anon_sym_alignof] = ACTIONS(1377), + [anon_sym__Alignof] = ACTIONS(1377), + [anon_sym_offsetof] = ACTIONS(1377), + [anon_sym__Generic] = ACTIONS(1377), + [anon_sym_asm] = ACTIONS(1377), + [anon_sym___asm__] = ACTIONS(1377), + [sym_number_literal] = ACTIONS(1379), + [anon_sym_L_SQUOTE] = ACTIONS(1379), + [anon_sym_u_SQUOTE] = ACTIONS(1379), + [anon_sym_U_SQUOTE] = ACTIONS(1379), + [anon_sym_u8_SQUOTE] = ACTIONS(1379), + [anon_sym_SQUOTE] = ACTIONS(1379), + [anon_sym_L_DQUOTE] = ACTIONS(1379), + [anon_sym_u_DQUOTE] = ACTIONS(1379), + [anon_sym_U_DQUOTE] = ACTIONS(1379), + [anon_sym_u8_DQUOTE] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1379), + [sym_true] = ACTIONS(1377), + [sym_false] = ACTIONS(1377), + [anon_sym_NULL] = ACTIONS(1377), + [anon_sym_nullptr] = ACTIONS(1377), [sym_comment] = ACTIONS(3), }, - [287] = { - [sym_identifier] = ACTIONS(1355), - [aux_sym_preproc_include_token1] = ACTIONS(1355), - [aux_sym_preproc_def_token1] = ACTIONS(1355), - [aux_sym_preproc_if_token1] = ACTIONS(1355), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1355), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1355), - [sym_preproc_directive] = ACTIONS(1355), - [anon_sym_LPAREN2] = ACTIONS(1357), - [anon_sym_BANG] = ACTIONS(1357), - [anon_sym_TILDE] = ACTIONS(1357), - [anon_sym_DASH] = ACTIONS(1355), - [anon_sym_PLUS] = ACTIONS(1355), - [anon_sym_STAR] = ACTIONS(1357), - [anon_sym_AMP] = ACTIONS(1357), - [anon_sym_SEMI] = ACTIONS(1357), - [anon_sym___extension__] = ACTIONS(1355), - [anon_sym_typedef] = ACTIONS(1355), - [anon_sym_extern] = ACTIONS(1355), - [anon_sym___attribute__] = ACTIONS(1355), - [anon_sym___scanf] = ACTIONS(1355), - [anon_sym___printf] = ACTIONS(1355), - [anon_sym___read_mostly] = ACTIONS(1355), - [anon_sym___must_hold] = ACTIONS(1355), - [anon_sym___ro_after_init] = ACTIONS(1355), - [anon_sym___init] = ACTIONS(1355), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1357), - [anon_sym___declspec] = ACTIONS(1355), - [anon_sym___cdecl] = ACTIONS(1355), - [anon_sym___clrcall] = ACTIONS(1355), - [anon_sym___stdcall] = ACTIONS(1355), - [anon_sym___fastcall] = ACTIONS(1355), - [anon_sym___thiscall] = ACTIONS(1355), - [anon_sym___vectorcall] = ACTIONS(1355), - [anon_sym_LBRACE] = ACTIONS(1357), - [anon_sym_RBRACE] = ACTIONS(1357), - [anon_sym_signed] = ACTIONS(1355), - [anon_sym_unsigned] = ACTIONS(1355), - [anon_sym_long] = ACTIONS(1355), - [anon_sym_short] = ACTIONS(1355), - [anon_sym_static] = ACTIONS(1355), - [anon_sym_auto] = ACTIONS(1355), - [anon_sym_register] = ACTIONS(1355), - [anon_sym_inline] = ACTIONS(1355), - [anon_sym___inline] = ACTIONS(1355), - [anon_sym___inline__] = ACTIONS(1355), - [anon_sym___forceinline] = ACTIONS(1355), - [anon_sym_thread_local] = ACTIONS(1355), - [anon_sym___thread] = ACTIONS(1355), - [anon_sym_const] = ACTIONS(1355), - [anon_sym_constexpr] = ACTIONS(1355), - [anon_sym_volatile] = ACTIONS(1355), - [anon_sym_restrict] = ACTIONS(1355), - [anon_sym___restrict__] = ACTIONS(1355), - [anon_sym__Atomic] = ACTIONS(1355), - [anon_sym__Noreturn] = ACTIONS(1355), - [anon_sym_noreturn] = ACTIONS(1355), - [anon_sym_alignas] = ACTIONS(1355), - [anon_sym__Alignas] = ACTIONS(1355), - [sym_primitive_type] = ACTIONS(1355), - [anon_sym_enum] = ACTIONS(1355), - [anon_sym_struct] = ACTIONS(1355), - [anon_sym_union] = ACTIONS(1355), - [anon_sym_if] = ACTIONS(1355), - [anon_sym_switch] = ACTIONS(1355), - [anon_sym_case] = ACTIONS(1355), - [anon_sym_default] = ACTIONS(1355), - [anon_sym_while] = ACTIONS(1355), - [anon_sym_do] = ACTIONS(1355), - [anon_sym_for] = ACTIONS(1355), - [anon_sym_return] = ACTIONS(1355), - [anon_sym_break] = ACTIONS(1355), - [anon_sym_continue] = ACTIONS(1355), - [anon_sym_goto] = ACTIONS(1355), - [anon_sym___try] = ACTIONS(1355), - [anon_sym___leave] = ACTIONS(1355), - [anon_sym_DASH_DASH] = ACTIONS(1357), - [anon_sym_PLUS_PLUS] = ACTIONS(1357), - [anon_sym_sizeof] = ACTIONS(1355), - [anon_sym___alignof__] = ACTIONS(1355), - [anon_sym___alignof] = ACTIONS(1355), - [anon_sym__alignof] = ACTIONS(1355), - [anon_sym_alignof] = ACTIONS(1355), - [anon_sym__Alignof] = ACTIONS(1355), - [anon_sym_offsetof] = ACTIONS(1355), - [anon_sym__Generic] = ACTIONS(1355), - [anon_sym_asm] = ACTIONS(1355), - [anon_sym___asm__] = ACTIONS(1355), - [sym_number_literal] = ACTIONS(1357), - [anon_sym_L_SQUOTE] = ACTIONS(1357), - [anon_sym_u_SQUOTE] = ACTIONS(1357), - [anon_sym_U_SQUOTE] = ACTIONS(1357), - [anon_sym_u8_SQUOTE] = ACTIONS(1357), - [anon_sym_SQUOTE] = ACTIONS(1357), - [anon_sym_L_DQUOTE] = ACTIONS(1357), - [anon_sym_u_DQUOTE] = ACTIONS(1357), - [anon_sym_U_DQUOTE] = ACTIONS(1357), - [anon_sym_u8_DQUOTE] = ACTIONS(1357), - [anon_sym_DQUOTE] = ACTIONS(1357), - [sym_true] = ACTIONS(1355), - [sym_false] = ACTIONS(1355), - [anon_sym_NULL] = ACTIONS(1355), - [anon_sym_nullptr] = ACTIONS(1355), + [347] = { + [sym_identifier] = ACTIONS(1381), + [aux_sym_preproc_include_token1] = ACTIONS(1381), + [aux_sym_preproc_def_token1] = ACTIONS(1381), + [aux_sym_preproc_if_token1] = ACTIONS(1381), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1381), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1381), + [sym_preproc_directive] = ACTIONS(1381), + [anon_sym_LPAREN2] = ACTIONS(1383), + [anon_sym_BANG] = ACTIONS(1383), + [anon_sym_TILDE] = ACTIONS(1383), + [anon_sym_DASH] = ACTIONS(1381), + [anon_sym_PLUS] = ACTIONS(1381), + [anon_sym_STAR] = ACTIONS(1383), + [anon_sym_AMP] = ACTIONS(1383), + [anon_sym_SEMI] = ACTIONS(1383), + [anon_sym___extension__] = ACTIONS(1381), + [anon_sym_typedef] = ACTIONS(1381), + [anon_sym_extern] = ACTIONS(1381), + [anon_sym___attribute__] = ACTIONS(1381), + [anon_sym___scanf] = ACTIONS(1381), + [anon_sym___printf] = ACTIONS(1381), + [anon_sym___read_mostly] = ACTIONS(1381), + [anon_sym___must_hold] = ACTIONS(1381), + [anon_sym___ro_after_init] = ACTIONS(1381), + [anon_sym___noreturn] = ACTIONS(1381), + [anon_sym___cold] = ACTIONS(1381), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1383), + [anon_sym___declspec] = ACTIONS(1381), + [anon_sym___init] = ACTIONS(1381), + [anon_sym___exit] = ACTIONS(1381), + [anon_sym___cdecl] = ACTIONS(1381), + [anon_sym___clrcall] = ACTIONS(1381), + [anon_sym___stdcall] = ACTIONS(1381), + [anon_sym___fastcall] = ACTIONS(1381), + [anon_sym___thiscall] = ACTIONS(1381), + [anon_sym___vectorcall] = ACTIONS(1381), + [anon_sym_LBRACE] = ACTIONS(1383), + [anon_sym_RBRACE] = ACTIONS(1383), + [anon_sym_signed] = ACTIONS(1381), + [anon_sym_unsigned] = ACTIONS(1381), + [anon_sym_long] = ACTIONS(1381), + [anon_sym_short] = ACTIONS(1381), + [anon_sym_static] = ACTIONS(1381), + [anon_sym_auto] = ACTIONS(1381), + [anon_sym_register] = ACTIONS(1381), + [anon_sym_inline] = ACTIONS(1381), + [anon_sym___inline] = ACTIONS(1381), + [anon_sym___inline__] = ACTIONS(1381), + [anon_sym___forceinline] = ACTIONS(1381), + [anon_sym_thread_local] = ACTIONS(1381), + [anon_sym___thread] = ACTIONS(1381), + [anon_sym_const] = ACTIONS(1381), + [anon_sym_constexpr] = ACTIONS(1381), + [anon_sym_volatile] = ACTIONS(1381), + [anon_sym_restrict] = ACTIONS(1381), + [anon_sym___restrict__] = ACTIONS(1381), + [anon_sym__Atomic] = ACTIONS(1381), + [anon_sym__Noreturn] = ACTIONS(1381), + [anon_sym_noreturn] = ACTIONS(1381), + [anon_sym_alignas] = ACTIONS(1381), + [anon_sym__Alignas] = ACTIONS(1381), + [sym_primitive_type] = ACTIONS(1381), + [anon_sym_enum] = ACTIONS(1381), + [anon_sym_struct] = ACTIONS(1381), + [anon_sym_union] = ACTIONS(1381), + [anon_sym_if] = ACTIONS(1381), + [anon_sym_switch] = ACTIONS(1381), + [anon_sym_case] = ACTIONS(1381), + [anon_sym_default] = ACTIONS(1381), + [anon_sym_while] = ACTIONS(1381), + [anon_sym_do] = ACTIONS(1381), + [anon_sym_for] = ACTIONS(1381), + [anon_sym_return] = ACTIONS(1381), + [anon_sym_break] = ACTIONS(1381), + [anon_sym_continue] = ACTIONS(1381), + [anon_sym_goto] = ACTIONS(1381), + [anon_sym___try] = ACTIONS(1381), + [anon_sym___leave] = ACTIONS(1381), + [anon_sym_DASH_DASH] = ACTIONS(1383), + [anon_sym_PLUS_PLUS] = ACTIONS(1383), + [anon_sym_sizeof] = ACTIONS(1381), + [anon_sym___alignof__] = ACTIONS(1381), + [anon_sym___alignof] = ACTIONS(1381), + [anon_sym__alignof] = ACTIONS(1381), + [anon_sym_alignof] = ACTIONS(1381), + [anon_sym__Alignof] = ACTIONS(1381), + [anon_sym_offsetof] = ACTIONS(1381), + [anon_sym__Generic] = ACTIONS(1381), + [anon_sym_asm] = ACTIONS(1381), + [anon_sym___asm__] = ACTIONS(1381), + [sym_number_literal] = ACTIONS(1383), + [anon_sym_L_SQUOTE] = ACTIONS(1383), + [anon_sym_u_SQUOTE] = ACTIONS(1383), + [anon_sym_U_SQUOTE] = ACTIONS(1383), + [anon_sym_u8_SQUOTE] = ACTIONS(1383), + [anon_sym_SQUOTE] = ACTIONS(1383), + [anon_sym_L_DQUOTE] = ACTIONS(1383), + [anon_sym_u_DQUOTE] = ACTIONS(1383), + [anon_sym_U_DQUOTE] = ACTIONS(1383), + [anon_sym_u8_DQUOTE] = ACTIONS(1383), + [anon_sym_DQUOTE] = ACTIONS(1383), + [sym_true] = ACTIONS(1381), + [sym_false] = ACTIONS(1381), + [anon_sym_NULL] = ACTIONS(1381), + [anon_sym_nullptr] = ACTIONS(1381), [sym_comment] = ACTIONS(3), }, - [288] = { - [sym_identifier] = ACTIONS(1351), - [aux_sym_preproc_include_token1] = ACTIONS(1351), - [aux_sym_preproc_def_token1] = ACTIONS(1351), - [aux_sym_preproc_if_token1] = ACTIONS(1351), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1351), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1351), - [sym_preproc_directive] = ACTIONS(1351), - [anon_sym_LPAREN2] = ACTIONS(1353), - [anon_sym_BANG] = ACTIONS(1353), - [anon_sym_TILDE] = ACTIONS(1353), - [anon_sym_DASH] = ACTIONS(1351), - [anon_sym_PLUS] = ACTIONS(1351), - [anon_sym_STAR] = ACTIONS(1353), - [anon_sym_AMP] = ACTIONS(1353), - [anon_sym_SEMI] = ACTIONS(1353), - [anon_sym___extension__] = ACTIONS(1351), - [anon_sym_typedef] = ACTIONS(1351), - [anon_sym_extern] = ACTIONS(1351), - [anon_sym___attribute__] = ACTIONS(1351), - [anon_sym___scanf] = ACTIONS(1351), - [anon_sym___printf] = ACTIONS(1351), - [anon_sym___read_mostly] = ACTIONS(1351), - [anon_sym___must_hold] = ACTIONS(1351), - [anon_sym___ro_after_init] = ACTIONS(1351), - [anon_sym___init] = ACTIONS(1351), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1353), - [anon_sym___declspec] = ACTIONS(1351), - [anon_sym___cdecl] = ACTIONS(1351), - [anon_sym___clrcall] = ACTIONS(1351), - [anon_sym___stdcall] = ACTIONS(1351), - [anon_sym___fastcall] = ACTIONS(1351), - [anon_sym___thiscall] = ACTIONS(1351), - [anon_sym___vectorcall] = ACTIONS(1351), - [anon_sym_LBRACE] = ACTIONS(1353), - [anon_sym_RBRACE] = ACTIONS(1353), - [anon_sym_signed] = ACTIONS(1351), - [anon_sym_unsigned] = ACTIONS(1351), - [anon_sym_long] = ACTIONS(1351), - [anon_sym_short] = ACTIONS(1351), - [anon_sym_static] = ACTIONS(1351), - [anon_sym_auto] = ACTIONS(1351), - [anon_sym_register] = ACTIONS(1351), - [anon_sym_inline] = ACTIONS(1351), - [anon_sym___inline] = ACTIONS(1351), - [anon_sym___inline__] = ACTIONS(1351), - [anon_sym___forceinline] = ACTIONS(1351), - [anon_sym_thread_local] = ACTIONS(1351), - [anon_sym___thread] = ACTIONS(1351), - [anon_sym_const] = ACTIONS(1351), - [anon_sym_constexpr] = ACTIONS(1351), - [anon_sym_volatile] = ACTIONS(1351), - [anon_sym_restrict] = ACTIONS(1351), - [anon_sym___restrict__] = ACTIONS(1351), - [anon_sym__Atomic] = ACTIONS(1351), - [anon_sym__Noreturn] = ACTIONS(1351), - [anon_sym_noreturn] = ACTIONS(1351), - [anon_sym_alignas] = ACTIONS(1351), - [anon_sym__Alignas] = ACTIONS(1351), - [sym_primitive_type] = ACTIONS(1351), - [anon_sym_enum] = ACTIONS(1351), - [anon_sym_struct] = ACTIONS(1351), - [anon_sym_union] = ACTIONS(1351), - [anon_sym_if] = ACTIONS(1351), - [anon_sym_switch] = ACTIONS(1351), - [anon_sym_case] = ACTIONS(1351), - [anon_sym_default] = ACTIONS(1351), - [anon_sym_while] = ACTIONS(1351), - [anon_sym_do] = ACTIONS(1351), - [anon_sym_for] = ACTIONS(1351), - [anon_sym_return] = ACTIONS(1351), - [anon_sym_break] = ACTIONS(1351), - [anon_sym_continue] = ACTIONS(1351), - [anon_sym_goto] = ACTIONS(1351), - [anon_sym___try] = ACTIONS(1351), - [anon_sym___leave] = ACTIONS(1351), - [anon_sym_DASH_DASH] = ACTIONS(1353), - [anon_sym_PLUS_PLUS] = ACTIONS(1353), - [anon_sym_sizeof] = ACTIONS(1351), - [anon_sym___alignof__] = ACTIONS(1351), - [anon_sym___alignof] = ACTIONS(1351), - [anon_sym__alignof] = ACTIONS(1351), - [anon_sym_alignof] = ACTIONS(1351), - [anon_sym__Alignof] = ACTIONS(1351), - [anon_sym_offsetof] = ACTIONS(1351), - [anon_sym__Generic] = ACTIONS(1351), - [anon_sym_asm] = ACTIONS(1351), - [anon_sym___asm__] = ACTIONS(1351), - [sym_number_literal] = ACTIONS(1353), - [anon_sym_L_SQUOTE] = ACTIONS(1353), - [anon_sym_u_SQUOTE] = ACTIONS(1353), - [anon_sym_U_SQUOTE] = ACTIONS(1353), - [anon_sym_u8_SQUOTE] = ACTIONS(1353), - [anon_sym_SQUOTE] = ACTIONS(1353), - [anon_sym_L_DQUOTE] = ACTIONS(1353), - [anon_sym_u_DQUOTE] = ACTIONS(1353), - [anon_sym_U_DQUOTE] = ACTIONS(1353), - [anon_sym_u8_DQUOTE] = ACTIONS(1353), - [anon_sym_DQUOTE] = ACTIONS(1353), - [sym_true] = ACTIONS(1351), - [sym_false] = ACTIONS(1351), - [anon_sym_NULL] = ACTIONS(1351), - [anon_sym_nullptr] = ACTIONS(1351), + [348] = { + [sym_identifier] = ACTIONS(1411), + [aux_sym_preproc_include_token1] = ACTIONS(1411), + [aux_sym_preproc_def_token1] = ACTIONS(1411), + [aux_sym_preproc_if_token1] = ACTIONS(1411), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1411), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1411), + [sym_preproc_directive] = ACTIONS(1411), + [anon_sym_LPAREN2] = ACTIONS(1413), + [anon_sym_BANG] = ACTIONS(1413), + [anon_sym_TILDE] = ACTIONS(1413), + [anon_sym_DASH] = ACTIONS(1411), + [anon_sym_PLUS] = ACTIONS(1411), + [anon_sym_STAR] = ACTIONS(1413), + [anon_sym_AMP] = ACTIONS(1413), + [anon_sym_SEMI] = ACTIONS(1413), + [anon_sym___extension__] = ACTIONS(1411), + [anon_sym_typedef] = ACTIONS(1411), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym___attribute__] = ACTIONS(1411), + [anon_sym___scanf] = ACTIONS(1411), + [anon_sym___printf] = ACTIONS(1411), + [anon_sym___read_mostly] = ACTIONS(1411), + [anon_sym___must_hold] = ACTIONS(1411), + [anon_sym___ro_after_init] = ACTIONS(1411), + [anon_sym___noreturn] = ACTIONS(1411), + [anon_sym___cold] = ACTIONS(1411), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1413), + [anon_sym___declspec] = ACTIONS(1411), + [anon_sym___init] = ACTIONS(1411), + [anon_sym___exit] = ACTIONS(1411), + [anon_sym___cdecl] = ACTIONS(1411), + [anon_sym___clrcall] = ACTIONS(1411), + [anon_sym___stdcall] = ACTIONS(1411), + [anon_sym___fastcall] = ACTIONS(1411), + [anon_sym___thiscall] = ACTIONS(1411), + [anon_sym___vectorcall] = ACTIONS(1411), + [anon_sym_LBRACE] = ACTIONS(1413), + [anon_sym_RBRACE] = ACTIONS(1413), + [anon_sym_signed] = ACTIONS(1411), + [anon_sym_unsigned] = ACTIONS(1411), + [anon_sym_long] = ACTIONS(1411), + [anon_sym_short] = ACTIONS(1411), + [anon_sym_static] = ACTIONS(1411), + [anon_sym_auto] = ACTIONS(1411), + [anon_sym_register] = ACTIONS(1411), + [anon_sym_inline] = ACTIONS(1411), + [anon_sym___inline] = ACTIONS(1411), + [anon_sym___inline__] = ACTIONS(1411), + [anon_sym___forceinline] = ACTIONS(1411), + [anon_sym_thread_local] = ACTIONS(1411), + [anon_sym___thread] = ACTIONS(1411), + [anon_sym_const] = ACTIONS(1411), + [anon_sym_constexpr] = ACTIONS(1411), + [anon_sym_volatile] = ACTIONS(1411), + [anon_sym_restrict] = ACTIONS(1411), + [anon_sym___restrict__] = ACTIONS(1411), + [anon_sym__Atomic] = ACTIONS(1411), + [anon_sym__Noreturn] = ACTIONS(1411), + [anon_sym_noreturn] = ACTIONS(1411), + [anon_sym_alignas] = ACTIONS(1411), + [anon_sym__Alignas] = ACTIONS(1411), + [sym_primitive_type] = ACTIONS(1411), + [anon_sym_enum] = ACTIONS(1411), + [anon_sym_struct] = ACTIONS(1411), + [anon_sym_union] = ACTIONS(1411), + [anon_sym_if] = ACTIONS(1411), + [anon_sym_switch] = ACTIONS(1411), + [anon_sym_case] = ACTIONS(1411), + [anon_sym_default] = ACTIONS(1411), + [anon_sym_while] = ACTIONS(1411), + [anon_sym_do] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1411), + [anon_sym_return] = ACTIONS(1411), + [anon_sym_break] = ACTIONS(1411), + [anon_sym_continue] = ACTIONS(1411), + [anon_sym_goto] = ACTIONS(1411), + [anon_sym___try] = ACTIONS(1411), + [anon_sym___leave] = ACTIONS(1411), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_sizeof] = ACTIONS(1411), + [anon_sym___alignof__] = ACTIONS(1411), + [anon_sym___alignof] = ACTIONS(1411), + [anon_sym__alignof] = ACTIONS(1411), + [anon_sym_alignof] = ACTIONS(1411), + [anon_sym__Alignof] = ACTIONS(1411), + [anon_sym_offsetof] = ACTIONS(1411), + [anon_sym__Generic] = ACTIONS(1411), + [anon_sym_asm] = ACTIONS(1411), + [anon_sym___asm__] = ACTIONS(1411), + [sym_number_literal] = ACTIONS(1413), + [anon_sym_L_SQUOTE] = ACTIONS(1413), + [anon_sym_u_SQUOTE] = ACTIONS(1413), + [anon_sym_U_SQUOTE] = ACTIONS(1413), + [anon_sym_u8_SQUOTE] = ACTIONS(1413), + [anon_sym_SQUOTE] = ACTIONS(1413), + [anon_sym_L_DQUOTE] = ACTIONS(1413), + [anon_sym_u_DQUOTE] = ACTIONS(1413), + [anon_sym_U_DQUOTE] = ACTIONS(1413), + [anon_sym_u8_DQUOTE] = ACTIONS(1413), + [anon_sym_DQUOTE] = ACTIONS(1413), + [sym_true] = ACTIONS(1411), + [sym_false] = ACTIONS(1411), + [anon_sym_NULL] = ACTIONS(1411), + [anon_sym_nullptr] = ACTIONS(1411), [sym_comment] = ACTIONS(3), }, - [289] = { - [sym_identifier] = ACTIONS(1273), - [aux_sym_preproc_include_token1] = ACTIONS(1273), - [aux_sym_preproc_def_token1] = ACTIONS(1273), - [aux_sym_preproc_if_token1] = ACTIONS(1273), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1273), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1273), - [sym_preproc_directive] = ACTIONS(1273), - [anon_sym_LPAREN2] = ACTIONS(1275), - [anon_sym_BANG] = ACTIONS(1275), - [anon_sym_TILDE] = ACTIONS(1275), - [anon_sym_DASH] = ACTIONS(1273), - [anon_sym_PLUS] = ACTIONS(1273), - [anon_sym_STAR] = ACTIONS(1275), - [anon_sym_AMP] = ACTIONS(1275), - [anon_sym_SEMI] = ACTIONS(1275), - [anon_sym___extension__] = ACTIONS(1273), - [anon_sym_typedef] = ACTIONS(1273), - [anon_sym_extern] = ACTIONS(1273), - [anon_sym___attribute__] = ACTIONS(1273), - [anon_sym___scanf] = ACTIONS(1273), - [anon_sym___printf] = ACTIONS(1273), - [anon_sym___read_mostly] = ACTIONS(1273), - [anon_sym___must_hold] = ACTIONS(1273), - [anon_sym___ro_after_init] = ACTIONS(1273), - [anon_sym___init] = ACTIONS(1273), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1275), - [anon_sym___declspec] = ACTIONS(1273), - [anon_sym___cdecl] = ACTIONS(1273), - [anon_sym___clrcall] = ACTIONS(1273), - [anon_sym___stdcall] = ACTIONS(1273), - [anon_sym___fastcall] = ACTIONS(1273), - [anon_sym___thiscall] = ACTIONS(1273), - [anon_sym___vectorcall] = ACTIONS(1273), - [anon_sym_LBRACE] = ACTIONS(1275), - [anon_sym_RBRACE] = ACTIONS(1275), - [anon_sym_signed] = ACTIONS(1273), - [anon_sym_unsigned] = ACTIONS(1273), - [anon_sym_long] = ACTIONS(1273), - [anon_sym_short] = ACTIONS(1273), - [anon_sym_static] = ACTIONS(1273), - [anon_sym_auto] = ACTIONS(1273), - [anon_sym_register] = ACTIONS(1273), - [anon_sym_inline] = ACTIONS(1273), - [anon_sym___inline] = ACTIONS(1273), - [anon_sym___inline__] = ACTIONS(1273), - [anon_sym___forceinline] = ACTIONS(1273), - [anon_sym_thread_local] = ACTIONS(1273), - [anon_sym___thread] = ACTIONS(1273), - [anon_sym_const] = ACTIONS(1273), - [anon_sym_constexpr] = ACTIONS(1273), - [anon_sym_volatile] = ACTIONS(1273), - [anon_sym_restrict] = ACTIONS(1273), - [anon_sym___restrict__] = ACTIONS(1273), - [anon_sym__Atomic] = ACTIONS(1273), - [anon_sym__Noreturn] = ACTIONS(1273), - [anon_sym_noreturn] = ACTIONS(1273), - [anon_sym_alignas] = ACTIONS(1273), - [anon_sym__Alignas] = ACTIONS(1273), - [sym_primitive_type] = ACTIONS(1273), - [anon_sym_enum] = ACTIONS(1273), - [anon_sym_struct] = ACTIONS(1273), - [anon_sym_union] = ACTIONS(1273), - [anon_sym_if] = ACTIONS(1273), - [anon_sym_switch] = ACTIONS(1273), - [anon_sym_case] = ACTIONS(1273), - [anon_sym_default] = ACTIONS(1273), - [anon_sym_while] = ACTIONS(1273), - [anon_sym_do] = ACTIONS(1273), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_return] = ACTIONS(1273), - [anon_sym_break] = ACTIONS(1273), - [anon_sym_continue] = ACTIONS(1273), - [anon_sym_goto] = ACTIONS(1273), - [anon_sym___try] = ACTIONS(1273), - [anon_sym___leave] = ACTIONS(1273), - [anon_sym_DASH_DASH] = ACTIONS(1275), - [anon_sym_PLUS_PLUS] = ACTIONS(1275), - [anon_sym_sizeof] = ACTIONS(1273), - [anon_sym___alignof__] = ACTIONS(1273), - [anon_sym___alignof] = ACTIONS(1273), - [anon_sym__alignof] = ACTIONS(1273), - [anon_sym_alignof] = ACTIONS(1273), - [anon_sym__Alignof] = ACTIONS(1273), - [anon_sym_offsetof] = ACTIONS(1273), - [anon_sym__Generic] = ACTIONS(1273), - [anon_sym_asm] = ACTIONS(1273), - [anon_sym___asm__] = ACTIONS(1273), - [sym_number_literal] = ACTIONS(1275), - [anon_sym_L_SQUOTE] = ACTIONS(1275), - [anon_sym_u_SQUOTE] = ACTIONS(1275), - [anon_sym_U_SQUOTE] = ACTIONS(1275), - [anon_sym_u8_SQUOTE] = ACTIONS(1275), - [anon_sym_SQUOTE] = ACTIONS(1275), - [anon_sym_L_DQUOTE] = ACTIONS(1275), - [anon_sym_u_DQUOTE] = ACTIONS(1275), - [anon_sym_U_DQUOTE] = ACTIONS(1275), - [anon_sym_u8_DQUOTE] = ACTIONS(1275), - [anon_sym_DQUOTE] = ACTIONS(1275), - [sym_true] = ACTIONS(1273), - [sym_false] = ACTIONS(1273), - [anon_sym_NULL] = ACTIONS(1273), - [anon_sym_nullptr] = ACTIONS(1273), + [349] = { + [sym_identifier] = ACTIONS(1289), + [aux_sym_preproc_include_token1] = ACTIONS(1289), + [aux_sym_preproc_def_token1] = ACTIONS(1289), + [aux_sym_preproc_if_token1] = ACTIONS(1289), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1289), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1289), + [sym_preproc_directive] = ACTIONS(1289), + [anon_sym_LPAREN2] = ACTIONS(1291), + [anon_sym_BANG] = ACTIONS(1291), + [anon_sym_TILDE] = ACTIONS(1291), + [anon_sym_DASH] = ACTIONS(1289), + [anon_sym_PLUS] = ACTIONS(1289), + [anon_sym_STAR] = ACTIONS(1291), + [anon_sym_AMP] = ACTIONS(1291), + [anon_sym_SEMI] = ACTIONS(1291), + [anon_sym___extension__] = ACTIONS(1289), + [anon_sym_typedef] = ACTIONS(1289), + [anon_sym_extern] = ACTIONS(1289), + [anon_sym___attribute__] = ACTIONS(1289), + [anon_sym___scanf] = ACTIONS(1289), + [anon_sym___printf] = ACTIONS(1289), + [anon_sym___read_mostly] = ACTIONS(1289), + [anon_sym___must_hold] = ACTIONS(1289), + [anon_sym___ro_after_init] = ACTIONS(1289), + [anon_sym___noreturn] = ACTIONS(1289), + [anon_sym___cold] = ACTIONS(1289), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1291), + [anon_sym___declspec] = ACTIONS(1289), + [anon_sym___init] = ACTIONS(1289), + [anon_sym___exit] = ACTIONS(1289), + [anon_sym___cdecl] = ACTIONS(1289), + [anon_sym___clrcall] = ACTIONS(1289), + [anon_sym___stdcall] = ACTIONS(1289), + [anon_sym___fastcall] = ACTIONS(1289), + [anon_sym___thiscall] = ACTIONS(1289), + [anon_sym___vectorcall] = ACTIONS(1289), + [anon_sym_LBRACE] = ACTIONS(1291), + [anon_sym_RBRACE] = ACTIONS(1291), + [anon_sym_signed] = ACTIONS(1289), + [anon_sym_unsigned] = ACTIONS(1289), + [anon_sym_long] = ACTIONS(1289), + [anon_sym_short] = ACTIONS(1289), + [anon_sym_static] = ACTIONS(1289), + [anon_sym_auto] = ACTIONS(1289), + [anon_sym_register] = ACTIONS(1289), + [anon_sym_inline] = ACTIONS(1289), + [anon_sym___inline] = ACTIONS(1289), + [anon_sym___inline__] = ACTIONS(1289), + [anon_sym___forceinline] = ACTIONS(1289), + [anon_sym_thread_local] = ACTIONS(1289), + [anon_sym___thread] = ACTIONS(1289), + [anon_sym_const] = ACTIONS(1289), + [anon_sym_constexpr] = ACTIONS(1289), + [anon_sym_volatile] = ACTIONS(1289), + [anon_sym_restrict] = ACTIONS(1289), + [anon_sym___restrict__] = ACTIONS(1289), + [anon_sym__Atomic] = ACTIONS(1289), + [anon_sym__Noreturn] = ACTIONS(1289), + [anon_sym_noreturn] = ACTIONS(1289), + [anon_sym_alignas] = ACTIONS(1289), + [anon_sym__Alignas] = ACTIONS(1289), + [sym_primitive_type] = ACTIONS(1289), + [anon_sym_enum] = ACTIONS(1289), + [anon_sym_struct] = ACTIONS(1289), + [anon_sym_union] = ACTIONS(1289), + [anon_sym_if] = ACTIONS(1289), + [anon_sym_switch] = ACTIONS(1289), + [anon_sym_case] = ACTIONS(1289), + [anon_sym_default] = ACTIONS(1289), + [anon_sym_while] = ACTIONS(1289), + [anon_sym_do] = ACTIONS(1289), + [anon_sym_for] = ACTIONS(1289), + [anon_sym_return] = ACTIONS(1289), + [anon_sym_break] = ACTIONS(1289), + [anon_sym_continue] = ACTIONS(1289), + [anon_sym_goto] = ACTIONS(1289), + [anon_sym___try] = ACTIONS(1289), + [anon_sym___leave] = ACTIONS(1289), + [anon_sym_DASH_DASH] = ACTIONS(1291), + [anon_sym_PLUS_PLUS] = ACTIONS(1291), + [anon_sym_sizeof] = ACTIONS(1289), + [anon_sym___alignof__] = ACTIONS(1289), + [anon_sym___alignof] = ACTIONS(1289), + [anon_sym__alignof] = ACTIONS(1289), + [anon_sym_alignof] = ACTIONS(1289), + [anon_sym__Alignof] = ACTIONS(1289), + [anon_sym_offsetof] = ACTIONS(1289), + [anon_sym__Generic] = ACTIONS(1289), + [anon_sym_asm] = ACTIONS(1289), + [anon_sym___asm__] = ACTIONS(1289), + [sym_number_literal] = ACTIONS(1291), + [anon_sym_L_SQUOTE] = ACTIONS(1291), + [anon_sym_u_SQUOTE] = ACTIONS(1291), + [anon_sym_U_SQUOTE] = ACTIONS(1291), + [anon_sym_u8_SQUOTE] = ACTIONS(1291), + [anon_sym_SQUOTE] = ACTIONS(1291), + [anon_sym_L_DQUOTE] = ACTIONS(1291), + [anon_sym_u_DQUOTE] = ACTIONS(1291), + [anon_sym_U_DQUOTE] = ACTIONS(1291), + [anon_sym_u8_DQUOTE] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1291), + [sym_true] = ACTIONS(1289), + [sym_false] = ACTIONS(1289), + [anon_sym_NULL] = ACTIONS(1289), + [anon_sym_nullptr] = ACTIONS(1289), [sym_comment] = ACTIONS(3), }, - [290] = { - [sym_identifier] = ACTIONS(1343), - [aux_sym_preproc_include_token1] = ACTIONS(1343), - [aux_sym_preproc_def_token1] = ACTIONS(1343), - [aux_sym_preproc_if_token1] = ACTIONS(1343), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1343), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1343), - [sym_preproc_directive] = ACTIONS(1343), - [anon_sym_LPAREN2] = ACTIONS(1345), - [anon_sym_BANG] = ACTIONS(1345), - [anon_sym_TILDE] = ACTIONS(1345), - [anon_sym_DASH] = ACTIONS(1343), - [anon_sym_PLUS] = ACTIONS(1343), - [anon_sym_STAR] = ACTIONS(1345), - [anon_sym_AMP] = ACTIONS(1345), - [anon_sym_SEMI] = ACTIONS(1345), - [anon_sym___extension__] = ACTIONS(1343), - [anon_sym_typedef] = ACTIONS(1343), - [anon_sym_extern] = ACTIONS(1343), - [anon_sym___attribute__] = ACTIONS(1343), - [anon_sym___scanf] = ACTIONS(1343), - [anon_sym___printf] = ACTIONS(1343), - [anon_sym___read_mostly] = ACTIONS(1343), - [anon_sym___must_hold] = ACTIONS(1343), - [anon_sym___ro_after_init] = ACTIONS(1343), - [anon_sym___init] = ACTIONS(1343), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1345), - [anon_sym___declspec] = ACTIONS(1343), - [anon_sym___cdecl] = ACTIONS(1343), - [anon_sym___clrcall] = ACTIONS(1343), - [anon_sym___stdcall] = ACTIONS(1343), - [anon_sym___fastcall] = ACTIONS(1343), - [anon_sym___thiscall] = ACTIONS(1343), - [anon_sym___vectorcall] = ACTIONS(1343), - [anon_sym_LBRACE] = ACTIONS(1345), - [anon_sym_RBRACE] = ACTIONS(1345), - [anon_sym_signed] = ACTIONS(1343), - [anon_sym_unsigned] = ACTIONS(1343), - [anon_sym_long] = ACTIONS(1343), - [anon_sym_short] = ACTIONS(1343), - [anon_sym_static] = ACTIONS(1343), - [anon_sym_auto] = ACTIONS(1343), - [anon_sym_register] = ACTIONS(1343), - [anon_sym_inline] = ACTIONS(1343), - [anon_sym___inline] = ACTIONS(1343), - [anon_sym___inline__] = ACTIONS(1343), - [anon_sym___forceinline] = ACTIONS(1343), - [anon_sym_thread_local] = ACTIONS(1343), - [anon_sym___thread] = ACTIONS(1343), - [anon_sym_const] = ACTIONS(1343), - [anon_sym_constexpr] = ACTIONS(1343), - [anon_sym_volatile] = ACTIONS(1343), - [anon_sym_restrict] = ACTIONS(1343), - [anon_sym___restrict__] = ACTIONS(1343), - [anon_sym__Atomic] = ACTIONS(1343), - [anon_sym__Noreturn] = ACTIONS(1343), - [anon_sym_noreturn] = ACTIONS(1343), - [anon_sym_alignas] = ACTIONS(1343), - [anon_sym__Alignas] = ACTIONS(1343), - [sym_primitive_type] = ACTIONS(1343), - [anon_sym_enum] = ACTIONS(1343), - [anon_sym_struct] = ACTIONS(1343), - [anon_sym_union] = ACTIONS(1343), - [anon_sym_if] = ACTIONS(1343), - [anon_sym_switch] = ACTIONS(1343), - [anon_sym_case] = ACTIONS(1343), - [anon_sym_default] = ACTIONS(1343), - [anon_sym_while] = ACTIONS(1343), - [anon_sym_do] = ACTIONS(1343), - [anon_sym_for] = ACTIONS(1343), - [anon_sym_return] = ACTIONS(1343), - [anon_sym_break] = ACTIONS(1343), - [anon_sym_continue] = ACTIONS(1343), - [anon_sym_goto] = ACTIONS(1343), - [anon_sym___try] = ACTIONS(1343), - [anon_sym___leave] = ACTIONS(1343), - [anon_sym_DASH_DASH] = ACTIONS(1345), - [anon_sym_PLUS_PLUS] = ACTIONS(1345), - [anon_sym_sizeof] = ACTIONS(1343), - [anon_sym___alignof__] = ACTIONS(1343), - [anon_sym___alignof] = ACTIONS(1343), - [anon_sym__alignof] = ACTIONS(1343), - [anon_sym_alignof] = ACTIONS(1343), - [anon_sym__Alignof] = ACTIONS(1343), - [anon_sym_offsetof] = ACTIONS(1343), - [anon_sym__Generic] = ACTIONS(1343), - [anon_sym_asm] = ACTIONS(1343), - [anon_sym___asm__] = ACTIONS(1343), - [sym_number_literal] = ACTIONS(1345), - [anon_sym_L_SQUOTE] = ACTIONS(1345), - [anon_sym_u_SQUOTE] = ACTIONS(1345), - [anon_sym_U_SQUOTE] = ACTIONS(1345), - [anon_sym_u8_SQUOTE] = ACTIONS(1345), - [anon_sym_SQUOTE] = ACTIONS(1345), - [anon_sym_L_DQUOTE] = ACTIONS(1345), - [anon_sym_u_DQUOTE] = ACTIONS(1345), - [anon_sym_U_DQUOTE] = ACTIONS(1345), - [anon_sym_u8_DQUOTE] = ACTIONS(1345), - [anon_sym_DQUOTE] = ACTIONS(1345), - [sym_true] = ACTIONS(1343), - [sym_false] = ACTIONS(1343), - [anon_sym_NULL] = ACTIONS(1343), - [anon_sym_nullptr] = ACTIONS(1343), + [350] = { + [sym_identifier] = ACTIONS(1389), + [aux_sym_preproc_include_token1] = ACTIONS(1389), + [aux_sym_preproc_def_token1] = ACTIONS(1389), + [aux_sym_preproc_if_token1] = ACTIONS(1389), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1389), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1389), + [sym_preproc_directive] = ACTIONS(1389), + [anon_sym_LPAREN2] = ACTIONS(1391), + [anon_sym_BANG] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1391), + [anon_sym_DASH] = ACTIONS(1389), + [anon_sym_PLUS] = ACTIONS(1389), + [anon_sym_STAR] = ACTIONS(1391), + [anon_sym_AMP] = ACTIONS(1391), + [anon_sym_SEMI] = ACTIONS(1391), + [anon_sym___extension__] = ACTIONS(1389), + [anon_sym_typedef] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1389), + [anon_sym___attribute__] = ACTIONS(1389), + [anon_sym___scanf] = ACTIONS(1389), + [anon_sym___printf] = ACTIONS(1389), + [anon_sym___read_mostly] = ACTIONS(1389), + [anon_sym___must_hold] = ACTIONS(1389), + [anon_sym___ro_after_init] = ACTIONS(1389), + [anon_sym___noreturn] = ACTIONS(1389), + [anon_sym___cold] = ACTIONS(1389), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1391), + [anon_sym___declspec] = ACTIONS(1389), + [anon_sym___init] = ACTIONS(1389), + [anon_sym___exit] = ACTIONS(1389), + [anon_sym___cdecl] = ACTIONS(1389), + [anon_sym___clrcall] = ACTIONS(1389), + [anon_sym___stdcall] = ACTIONS(1389), + [anon_sym___fastcall] = ACTIONS(1389), + [anon_sym___thiscall] = ACTIONS(1389), + [anon_sym___vectorcall] = ACTIONS(1389), + [anon_sym_LBRACE] = ACTIONS(1391), + [anon_sym_RBRACE] = ACTIONS(1391), + [anon_sym_signed] = ACTIONS(1389), + [anon_sym_unsigned] = ACTIONS(1389), + [anon_sym_long] = ACTIONS(1389), + [anon_sym_short] = ACTIONS(1389), + [anon_sym_static] = ACTIONS(1389), + [anon_sym_auto] = ACTIONS(1389), + [anon_sym_register] = ACTIONS(1389), + [anon_sym_inline] = ACTIONS(1389), + [anon_sym___inline] = ACTIONS(1389), + [anon_sym___inline__] = ACTIONS(1389), + [anon_sym___forceinline] = ACTIONS(1389), + [anon_sym_thread_local] = ACTIONS(1389), + [anon_sym___thread] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_constexpr] = ACTIONS(1389), + [anon_sym_volatile] = ACTIONS(1389), + [anon_sym_restrict] = ACTIONS(1389), + [anon_sym___restrict__] = ACTIONS(1389), + [anon_sym__Atomic] = ACTIONS(1389), + [anon_sym__Noreturn] = ACTIONS(1389), + [anon_sym_noreturn] = ACTIONS(1389), + [anon_sym_alignas] = ACTIONS(1389), + [anon_sym__Alignas] = ACTIONS(1389), + [sym_primitive_type] = ACTIONS(1389), + [anon_sym_enum] = ACTIONS(1389), + [anon_sym_struct] = ACTIONS(1389), + [anon_sym_union] = ACTIONS(1389), + [anon_sym_if] = ACTIONS(1389), + [anon_sym_switch] = ACTIONS(1389), + [anon_sym_case] = ACTIONS(1389), + [anon_sym_default] = ACTIONS(1389), + [anon_sym_while] = ACTIONS(1389), + [anon_sym_do] = ACTIONS(1389), + [anon_sym_for] = ACTIONS(1389), + [anon_sym_return] = ACTIONS(1389), + [anon_sym_break] = ACTIONS(1389), + [anon_sym_continue] = ACTIONS(1389), + [anon_sym_goto] = ACTIONS(1389), + [anon_sym___try] = ACTIONS(1389), + [anon_sym___leave] = ACTIONS(1389), + [anon_sym_DASH_DASH] = ACTIONS(1391), + [anon_sym_PLUS_PLUS] = ACTIONS(1391), + [anon_sym_sizeof] = ACTIONS(1389), + [anon_sym___alignof__] = ACTIONS(1389), + [anon_sym___alignof] = ACTIONS(1389), + [anon_sym__alignof] = ACTIONS(1389), + [anon_sym_alignof] = ACTIONS(1389), + [anon_sym__Alignof] = ACTIONS(1389), + [anon_sym_offsetof] = ACTIONS(1389), + [anon_sym__Generic] = ACTIONS(1389), + [anon_sym_asm] = ACTIONS(1389), + [anon_sym___asm__] = ACTIONS(1389), + [sym_number_literal] = ACTIONS(1391), + [anon_sym_L_SQUOTE] = ACTIONS(1391), + [anon_sym_u_SQUOTE] = ACTIONS(1391), + [anon_sym_U_SQUOTE] = ACTIONS(1391), + [anon_sym_u8_SQUOTE] = ACTIONS(1391), + [anon_sym_SQUOTE] = ACTIONS(1391), + [anon_sym_L_DQUOTE] = ACTIONS(1391), + [anon_sym_u_DQUOTE] = ACTIONS(1391), + [anon_sym_U_DQUOTE] = ACTIONS(1391), + [anon_sym_u8_DQUOTE] = ACTIONS(1391), + [anon_sym_DQUOTE] = ACTIONS(1391), + [sym_true] = ACTIONS(1389), + [sym_false] = ACTIONS(1389), + [anon_sym_NULL] = ACTIONS(1389), + [anon_sym_nullptr] = ACTIONS(1389), [sym_comment] = ACTIONS(3), }, - [291] = { - [sym_identifier] = ACTIONS(1335), - [aux_sym_preproc_include_token1] = ACTIONS(1335), - [aux_sym_preproc_def_token1] = ACTIONS(1335), - [aux_sym_preproc_if_token1] = ACTIONS(1335), - [aux_sym_preproc_if_token2] = ACTIONS(1335), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1335), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1335), - [sym_preproc_directive] = ACTIONS(1335), - [anon_sym_LPAREN2] = ACTIONS(1337), - [anon_sym_BANG] = ACTIONS(1337), - [anon_sym_TILDE] = ACTIONS(1337), - [anon_sym_DASH] = ACTIONS(1335), - [anon_sym_PLUS] = ACTIONS(1335), - [anon_sym_STAR] = ACTIONS(1337), - [anon_sym_AMP] = ACTIONS(1337), - [anon_sym_SEMI] = ACTIONS(1337), - [anon_sym___extension__] = ACTIONS(1335), - [anon_sym_typedef] = ACTIONS(1335), - [anon_sym_extern] = ACTIONS(1335), - [anon_sym___attribute__] = ACTIONS(1335), - [anon_sym___scanf] = ACTIONS(1335), - [anon_sym___printf] = ACTIONS(1335), - [anon_sym___read_mostly] = ACTIONS(1335), - [anon_sym___must_hold] = ACTIONS(1335), - [anon_sym___ro_after_init] = ACTIONS(1335), - [anon_sym___init] = ACTIONS(1335), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1337), - [anon_sym___declspec] = ACTIONS(1335), - [anon_sym___cdecl] = ACTIONS(1335), - [anon_sym___clrcall] = ACTIONS(1335), - [anon_sym___stdcall] = ACTIONS(1335), - [anon_sym___fastcall] = ACTIONS(1335), - [anon_sym___thiscall] = ACTIONS(1335), - [anon_sym___vectorcall] = ACTIONS(1335), - [anon_sym_LBRACE] = ACTIONS(1337), - [anon_sym_signed] = ACTIONS(1335), - [anon_sym_unsigned] = ACTIONS(1335), - [anon_sym_long] = ACTIONS(1335), - [anon_sym_short] = ACTIONS(1335), - [anon_sym_static] = ACTIONS(1335), - [anon_sym_auto] = ACTIONS(1335), - [anon_sym_register] = ACTIONS(1335), - [anon_sym_inline] = ACTIONS(1335), - [anon_sym___inline] = ACTIONS(1335), - [anon_sym___inline__] = ACTIONS(1335), - [anon_sym___forceinline] = ACTIONS(1335), - [anon_sym_thread_local] = ACTIONS(1335), - [anon_sym___thread] = ACTIONS(1335), - [anon_sym_const] = ACTIONS(1335), - [anon_sym_constexpr] = ACTIONS(1335), - [anon_sym_volatile] = ACTIONS(1335), - [anon_sym_restrict] = ACTIONS(1335), - [anon_sym___restrict__] = ACTIONS(1335), - [anon_sym__Atomic] = ACTIONS(1335), - [anon_sym__Noreturn] = ACTIONS(1335), - [anon_sym_noreturn] = ACTIONS(1335), - [anon_sym_alignas] = ACTIONS(1335), - [anon_sym__Alignas] = ACTIONS(1335), - [sym_primitive_type] = ACTIONS(1335), - [anon_sym_enum] = ACTIONS(1335), - [anon_sym_struct] = ACTIONS(1335), - [anon_sym_union] = ACTIONS(1335), - [anon_sym_if] = ACTIONS(1335), - [anon_sym_switch] = ACTIONS(1335), - [anon_sym_case] = ACTIONS(1335), - [anon_sym_default] = ACTIONS(1335), - [anon_sym_while] = ACTIONS(1335), - [anon_sym_do] = ACTIONS(1335), - [anon_sym_for] = ACTIONS(1335), - [anon_sym_return] = ACTIONS(1335), - [anon_sym_break] = ACTIONS(1335), - [anon_sym_continue] = ACTIONS(1335), - [anon_sym_goto] = ACTIONS(1335), - [anon_sym___try] = ACTIONS(1335), - [anon_sym___leave] = ACTIONS(1335), - [anon_sym_DASH_DASH] = ACTIONS(1337), - [anon_sym_PLUS_PLUS] = ACTIONS(1337), - [anon_sym_sizeof] = ACTIONS(1335), - [anon_sym___alignof__] = ACTIONS(1335), - [anon_sym___alignof] = ACTIONS(1335), - [anon_sym__alignof] = ACTIONS(1335), - [anon_sym_alignof] = ACTIONS(1335), - [anon_sym__Alignof] = ACTIONS(1335), - [anon_sym_offsetof] = ACTIONS(1335), - [anon_sym__Generic] = ACTIONS(1335), - [anon_sym_asm] = ACTIONS(1335), - [anon_sym___asm__] = ACTIONS(1335), - [sym_number_literal] = ACTIONS(1337), - [anon_sym_L_SQUOTE] = ACTIONS(1337), - [anon_sym_u_SQUOTE] = ACTIONS(1337), - [anon_sym_U_SQUOTE] = ACTIONS(1337), - [anon_sym_u8_SQUOTE] = ACTIONS(1337), - [anon_sym_SQUOTE] = ACTIONS(1337), - [anon_sym_L_DQUOTE] = ACTIONS(1337), - [anon_sym_u_DQUOTE] = ACTIONS(1337), - [anon_sym_U_DQUOTE] = ACTIONS(1337), - [anon_sym_u8_DQUOTE] = ACTIONS(1337), - [anon_sym_DQUOTE] = ACTIONS(1337), - [sym_true] = ACTIONS(1335), - [sym_false] = ACTIONS(1335), - [anon_sym_NULL] = ACTIONS(1335), - [anon_sym_nullptr] = ACTIONS(1335), + [351] = { + [sym_identifier] = ACTIONS(1353), + [aux_sym_preproc_include_token1] = ACTIONS(1353), + [aux_sym_preproc_def_token1] = ACTIONS(1353), + [aux_sym_preproc_if_token1] = ACTIONS(1353), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1353), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1353), + [sym_preproc_directive] = ACTIONS(1353), + [anon_sym_LPAREN2] = ACTIONS(1355), + [anon_sym_BANG] = ACTIONS(1355), + [anon_sym_TILDE] = ACTIONS(1355), + [anon_sym_DASH] = ACTIONS(1353), + [anon_sym_PLUS] = ACTIONS(1353), + [anon_sym_STAR] = ACTIONS(1355), + [anon_sym_AMP] = ACTIONS(1355), + [anon_sym_SEMI] = ACTIONS(1355), + [anon_sym___extension__] = ACTIONS(1353), + [anon_sym_typedef] = ACTIONS(1353), + [anon_sym_extern] = ACTIONS(1353), + [anon_sym___attribute__] = ACTIONS(1353), + [anon_sym___scanf] = ACTIONS(1353), + [anon_sym___printf] = ACTIONS(1353), + [anon_sym___read_mostly] = ACTIONS(1353), + [anon_sym___must_hold] = ACTIONS(1353), + [anon_sym___ro_after_init] = ACTIONS(1353), + [anon_sym___noreturn] = ACTIONS(1353), + [anon_sym___cold] = ACTIONS(1353), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1355), + [anon_sym___declspec] = ACTIONS(1353), + [anon_sym___init] = ACTIONS(1353), + [anon_sym___exit] = ACTIONS(1353), + [anon_sym___cdecl] = ACTIONS(1353), + [anon_sym___clrcall] = ACTIONS(1353), + [anon_sym___stdcall] = ACTIONS(1353), + [anon_sym___fastcall] = ACTIONS(1353), + [anon_sym___thiscall] = ACTIONS(1353), + [anon_sym___vectorcall] = ACTIONS(1353), + [anon_sym_LBRACE] = ACTIONS(1355), + [anon_sym_RBRACE] = ACTIONS(1355), + [anon_sym_signed] = ACTIONS(1353), + [anon_sym_unsigned] = ACTIONS(1353), + [anon_sym_long] = ACTIONS(1353), + [anon_sym_short] = ACTIONS(1353), + [anon_sym_static] = ACTIONS(1353), + [anon_sym_auto] = ACTIONS(1353), + [anon_sym_register] = ACTIONS(1353), + [anon_sym_inline] = ACTIONS(1353), + [anon_sym___inline] = ACTIONS(1353), + [anon_sym___inline__] = ACTIONS(1353), + [anon_sym___forceinline] = ACTIONS(1353), + [anon_sym_thread_local] = ACTIONS(1353), + [anon_sym___thread] = ACTIONS(1353), + [anon_sym_const] = ACTIONS(1353), + [anon_sym_constexpr] = ACTIONS(1353), + [anon_sym_volatile] = ACTIONS(1353), + [anon_sym_restrict] = ACTIONS(1353), + [anon_sym___restrict__] = ACTIONS(1353), + [anon_sym__Atomic] = ACTIONS(1353), + [anon_sym__Noreturn] = ACTIONS(1353), + [anon_sym_noreturn] = ACTIONS(1353), + [anon_sym_alignas] = ACTIONS(1353), + [anon_sym__Alignas] = ACTIONS(1353), + [sym_primitive_type] = ACTIONS(1353), + [anon_sym_enum] = ACTIONS(1353), + [anon_sym_struct] = ACTIONS(1353), + [anon_sym_union] = ACTIONS(1353), + [anon_sym_if] = ACTIONS(1353), + [anon_sym_switch] = ACTIONS(1353), + [anon_sym_case] = ACTIONS(1353), + [anon_sym_default] = ACTIONS(1353), + [anon_sym_while] = ACTIONS(1353), + [anon_sym_do] = ACTIONS(1353), + [anon_sym_for] = ACTIONS(1353), + [anon_sym_return] = ACTIONS(1353), + [anon_sym_break] = ACTIONS(1353), + [anon_sym_continue] = ACTIONS(1353), + [anon_sym_goto] = ACTIONS(1353), + [anon_sym___try] = ACTIONS(1353), + [anon_sym___leave] = ACTIONS(1353), + [anon_sym_DASH_DASH] = ACTIONS(1355), + [anon_sym_PLUS_PLUS] = ACTIONS(1355), + [anon_sym_sizeof] = ACTIONS(1353), + [anon_sym___alignof__] = ACTIONS(1353), + [anon_sym___alignof] = ACTIONS(1353), + [anon_sym__alignof] = ACTIONS(1353), + [anon_sym_alignof] = ACTIONS(1353), + [anon_sym__Alignof] = ACTIONS(1353), + [anon_sym_offsetof] = ACTIONS(1353), + [anon_sym__Generic] = ACTIONS(1353), + [anon_sym_asm] = ACTIONS(1353), + [anon_sym___asm__] = ACTIONS(1353), + [sym_number_literal] = ACTIONS(1355), + [anon_sym_L_SQUOTE] = ACTIONS(1355), + [anon_sym_u_SQUOTE] = ACTIONS(1355), + [anon_sym_U_SQUOTE] = ACTIONS(1355), + [anon_sym_u8_SQUOTE] = ACTIONS(1355), + [anon_sym_SQUOTE] = ACTIONS(1355), + [anon_sym_L_DQUOTE] = ACTIONS(1355), + [anon_sym_u_DQUOTE] = ACTIONS(1355), + [anon_sym_U_DQUOTE] = ACTIONS(1355), + [anon_sym_u8_DQUOTE] = ACTIONS(1355), + [anon_sym_DQUOTE] = ACTIONS(1355), + [sym_true] = ACTIONS(1353), + [sym_false] = ACTIONS(1353), + [anon_sym_NULL] = ACTIONS(1353), + [anon_sym_nullptr] = ACTIONS(1353), [sym_comment] = ACTIONS(3), }, - [292] = { - [sym_identifier] = ACTIONS(1371), - [aux_sym_preproc_include_token1] = ACTIONS(1371), - [aux_sym_preproc_def_token1] = ACTIONS(1371), - [aux_sym_preproc_if_token1] = ACTIONS(1371), - [aux_sym_preproc_if_token2] = ACTIONS(1371), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1371), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1371), - [sym_preproc_directive] = ACTIONS(1371), - [anon_sym_LPAREN2] = ACTIONS(1373), - [anon_sym_BANG] = ACTIONS(1373), - [anon_sym_TILDE] = ACTIONS(1373), - [anon_sym_DASH] = ACTIONS(1371), - [anon_sym_PLUS] = ACTIONS(1371), - [anon_sym_STAR] = ACTIONS(1373), - [anon_sym_AMP] = ACTIONS(1373), - [anon_sym_SEMI] = ACTIONS(1373), - [anon_sym___extension__] = ACTIONS(1371), - [anon_sym_typedef] = ACTIONS(1371), - [anon_sym_extern] = ACTIONS(1371), - [anon_sym___attribute__] = ACTIONS(1371), - [anon_sym___scanf] = ACTIONS(1371), - [anon_sym___printf] = ACTIONS(1371), - [anon_sym___read_mostly] = ACTIONS(1371), - [anon_sym___must_hold] = ACTIONS(1371), - [anon_sym___ro_after_init] = ACTIONS(1371), - [anon_sym___init] = ACTIONS(1371), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1373), - [anon_sym___declspec] = ACTIONS(1371), - [anon_sym___cdecl] = ACTIONS(1371), - [anon_sym___clrcall] = ACTIONS(1371), - [anon_sym___stdcall] = ACTIONS(1371), - [anon_sym___fastcall] = ACTIONS(1371), - [anon_sym___thiscall] = ACTIONS(1371), - [anon_sym___vectorcall] = ACTIONS(1371), - [anon_sym_LBRACE] = ACTIONS(1373), - [anon_sym_signed] = ACTIONS(1371), - [anon_sym_unsigned] = ACTIONS(1371), - [anon_sym_long] = ACTIONS(1371), - [anon_sym_short] = ACTIONS(1371), - [anon_sym_static] = ACTIONS(1371), - [anon_sym_auto] = ACTIONS(1371), - [anon_sym_register] = ACTIONS(1371), - [anon_sym_inline] = ACTIONS(1371), - [anon_sym___inline] = ACTIONS(1371), - [anon_sym___inline__] = ACTIONS(1371), - [anon_sym___forceinline] = ACTIONS(1371), - [anon_sym_thread_local] = ACTIONS(1371), - [anon_sym___thread] = ACTIONS(1371), - [anon_sym_const] = ACTIONS(1371), - [anon_sym_constexpr] = ACTIONS(1371), - [anon_sym_volatile] = ACTIONS(1371), - [anon_sym_restrict] = ACTIONS(1371), - [anon_sym___restrict__] = ACTIONS(1371), - [anon_sym__Atomic] = ACTIONS(1371), - [anon_sym__Noreturn] = ACTIONS(1371), - [anon_sym_noreturn] = ACTIONS(1371), - [anon_sym_alignas] = ACTIONS(1371), - [anon_sym__Alignas] = ACTIONS(1371), - [sym_primitive_type] = ACTIONS(1371), - [anon_sym_enum] = ACTIONS(1371), - [anon_sym_struct] = ACTIONS(1371), - [anon_sym_union] = ACTIONS(1371), - [anon_sym_if] = ACTIONS(1371), - [anon_sym_switch] = ACTIONS(1371), - [anon_sym_case] = ACTIONS(1371), - [anon_sym_default] = ACTIONS(1371), - [anon_sym_while] = ACTIONS(1371), - [anon_sym_do] = ACTIONS(1371), - [anon_sym_for] = ACTIONS(1371), - [anon_sym_return] = ACTIONS(1371), - [anon_sym_break] = ACTIONS(1371), - [anon_sym_continue] = ACTIONS(1371), - [anon_sym_goto] = ACTIONS(1371), - [anon_sym___try] = ACTIONS(1371), - [anon_sym___leave] = ACTIONS(1371), - [anon_sym_DASH_DASH] = ACTIONS(1373), - [anon_sym_PLUS_PLUS] = ACTIONS(1373), - [anon_sym_sizeof] = ACTIONS(1371), - [anon_sym___alignof__] = ACTIONS(1371), - [anon_sym___alignof] = ACTIONS(1371), - [anon_sym__alignof] = ACTIONS(1371), - [anon_sym_alignof] = ACTIONS(1371), - [anon_sym__Alignof] = ACTIONS(1371), - [anon_sym_offsetof] = ACTIONS(1371), - [anon_sym__Generic] = ACTIONS(1371), - [anon_sym_asm] = ACTIONS(1371), - [anon_sym___asm__] = ACTIONS(1371), - [sym_number_literal] = ACTIONS(1373), - [anon_sym_L_SQUOTE] = ACTIONS(1373), - [anon_sym_u_SQUOTE] = ACTIONS(1373), - [anon_sym_U_SQUOTE] = ACTIONS(1373), - [anon_sym_u8_SQUOTE] = ACTIONS(1373), - [anon_sym_SQUOTE] = ACTIONS(1373), - [anon_sym_L_DQUOTE] = ACTIONS(1373), - [anon_sym_u_DQUOTE] = ACTIONS(1373), - [anon_sym_U_DQUOTE] = ACTIONS(1373), - [anon_sym_u8_DQUOTE] = ACTIONS(1373), - [anon_sym_DQUOTE] = ACTIONS(1373), - [sym_true] = ACTIONS(1371), - [sym_false] = ACTIONS(1371), - [anon_sym_NULL] = ACTIONS(1371), - [anon_sym_nullptr] = ACTIONS(1371), + [352] = { + [sym_identifier] = ACTIONS(1305), + [aux_sym_preproc_include_token1] = ACTIONS(1305), + [aux_sym_preproc_def_token1] = ACTIONS(1305), + [aux_sym_preproc_if_token1] = ACTIONS(1305), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1305), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1305), + [sym_preproc_directive] = ACTIONS(1305), + [anon_sym_LPAREN2] = ACTIONS(1307), + [anon_sym_BANG] = ACTIONS(1307), + [anon_sym_TILDE] = ACTIONS(1307), + [anon_sym_DASH] = ACTIONS(1305), + [anon_sym_PLUS] = ACTIONS(1305), + [anon_sym_STAR] = ACTIONS(1307), + [anon_sym_AMP] = ACTIONS(1307), + [anon_sym_SEMI] = ACTIONS(1307), + [anon_sym___extension__] = ACTIONS(1305), + [anon_sym_typedef] = ACTIONS(1305), + [anon_sym_extern] = ACTIONS(1305), + [anon_sym___attribute__] = ACTIONS(1305), + [anon_sym___scanf] = ACTIONS(1305), + [anon_sym___printf] = ACTIONS(1305), + [anon_sym___read_mostly] = ACTIONS(1305), + [anon_sym___must_hold] = ACTIONS(1305), + [anon_sym___ro_after_init] = ACTIONS(1305), + [anon_sym___noreturn] = ACTIONS(1305), + [anon_sym___cold] = ACTIONS(1305), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1307), + [anon_sym___declspec] = ACTIONS(1305), + [anon_sym___init] = ACTIONS(1305), + [anon_sym___exit] = ACTIONS(1305), + [anon_sym___cdecl] = ACTIONS(1305), + [anon_sym___clrcall] = ACTIONS(1305), + [anon_sym___stdcall] = ACTIONS(1305), + [anon_sym___fastcall] = ACTIONS(1305), + [anon_sym___thiscall] = ACTIONS(1305), + [anon_sym___vectorcall] = ACTIONS(1305), + [anon_sym_LBRACE] = ACTIONS(1307), + [anon_sym_RBRACE] = ACTIONS(1307), + [anon_sym_signed] = ACTIONS(1305), + [anon_sym_unsigned] = ACTIONS(1305), + [anon_sym_long] = ACTIONS(1305), + [anon_sym_short] = ACTIONS(1305), + [anon_sym_static] = ACTIONS(1305), + [anon_sym_auto] = ACTIONS(1305), + [anon_sym_register] = ACTIONS(1305), + [anon_sym_inline] = ACTIONS(1305), + [anon_sym___inline] = ACTIONS(1305), + [anon_sym___inline__] = ACTIONS(1305), + [anon_sym___forceinline] = ACTIONS(1305), + [anon_sym_thread_local] = ACTIONS(1305), + [anon_sym___thread] = ACTIONS(1305), + [anon_sym_const] = ACTIONS(1305), + [anon_sym_constexpr] = ACTIONS(1305), + [anon_sym_volatile] = ACTIONS(1305), + [anon_sym_restrict] = ACTIONS(1305), + [anon_sym___restrict__] = ACTIONS(1305), + [anon_sym__Atomic] = ACTIONS(1305), + [anon_sym__Noreturn] = ACTIONS(1305), + [anon_sym_noreturn] = ACTIONS(1305), + [anon_sym_alignas] = ACTIONS(1305), + [anon_sym__Alignas] = ACTIONS(1305), + [sym_primitive_type] = ACTIONS(1305), + [anon_sym_enum] = ACTIONS(1305), + [anon_sym_struct] = ACTIONS(1305), + [anon_sym_union] = ACTIONS(1305), + [anon_sym_if] = ACTIONS(1305), + [anon_sym_switch] = ACTIONS(1305), + [anon_sym_case] = ACTIONS(1305), + [anon_sym_default] = ACTIONS(1305), + [anon_sym_while] = ACTIONS(1305), + [anon_sym_do] = ACTIONS(1305), + [anon_sym_for] = ACTIONS(1305), + [anon_sym_return] = ACTIONS(1305), + [anon_sym_break] = ACTIONS(1305), + [anon_sym_continue] = ACTIONS(1305), + [anon_sym_goto] = ACTIONS(1305), + [anon_sym___try] = ACTIONS(1305), + [anon_sym___leave] = ACTIONS(1305), + [anon_sym_DASH_DASH] = ACTIONS(1307), + [anon_sym_PLUS_PLUS] = ACTIONS(1307), + [anon_sym_sizeof] = ACTIONS(1305), + [anon_sym___alignof__] = ACTIONS(1305), + [anon_sym___alignof] = ACTIONS(1305), + [anon_sym__alignof] = ACTIONS(1305), + [anon_sym_alignof] = ACTIONS(1305), + [anon_sym__Alignof] = ACTIONS(1305), + [anon_sym_offsetof] = ACTIONS(1305), + [anon_sym__Generic] = ACTIONS(1305), + [anon_sym_asm] = ACTIONS(1305), + [anon_sym___asm__] = ACTIONS(1305), + [sym_number_literal] = ACTIONS(1307), + [anon_sym_L_SQUOTE] = ACTIONS(1307), + [anon_sym_u_SQUOTE] = ACTIONS(1307), + [anon_sym_U_SQUOTE] = ACTIONS(1307), + [anon_sym_u8_SQUOTE] = ACTIONS(1307), + [anon_sym_SQUOTE] = ACTIONS(1307), + [anon_sym_L_DQUOTE] = ACTIONS(1307), + [anon_sym_u_DQUOTE] = ACTIONS(1307), + [anon_sym_U_DQUOTE] = ACTIONS(1307), + [anon_sym_u8_DQUOTE] = ACTIONS(1307), + [anon_sym_DQUOTE] = ACTIONS(1307), + [sym_true] = ACTIONS(1305), + [sym_false] = ACTIONS(1305), + [anon_sym_NULL] = ACTIONS(1305), + [anon_sym_nullptr] = ACTIONS(1305), [sym_comment] = ACTIONS(3), }, - [293] = { - [sym_identifier] = ACTIONS(1339), - [aux_sym_preproc_include_token1] = ACTIONS(1339), - [aux_sym_preproc_def_token1] = ACTIONS(1339), - [aux_sym_preproc_if_token1] = ACTIONS(1339), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1339), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1339), - [sym_preproc_directive] = ACTIONS(1339), - [anon_sym_LPAREN2] = ACTIONS(1341), - [anon_sym_BANG] = ACTIONS(1341), - [anon_sym_TILDE] = ACTIONS(1341), - [anon_sym_DASH] = ACTIONS(1339), - [anon_sym_PLUS] = ACTIONS(1339), - [anon_sym_STAR] = ACTIONS(1341), - [anon_sym_AMP] = ACTIONS(1341), - [anon_sym_SEMI] = ACTIONS(1341), - [anon_sym___extension__] = ACTIONS(1339), - [anon_sym_typedef] = ACTIONS(1339), - [anon_sym_extern] = ACTIONS(1339), - [anon_sym___attribute__] = ACTIONS(1339), - [anon_sym___scanf] = ACTIONS(1339), - [anon_sym___printf] = ACTIONS(1339), - [anon_sym___read_mostly] = ACTIONS(1339), - [anon_sym___must_hold] = ACTIONS(1339), - [anon_sym___ro_after_init] = ACTIONS(1339), - [anon_sym___init] = ACTIONS(1339), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1341), - [anon_sym___declspec] = ACTIONS(1339), - [anon_sym___cdecl] = ACTIONS(1339), - [anon_sym___clrcall] = ACTIONS(1339), - [anon_sym___stdcall] = ACTIONS(1339), - [anon_sym___fastcall] = ACTIONS(1339), - [anon_sym___thiscall] = ACTIONS(1339), - [anon_sym___vectorcall] = ACTIONS(1339), - [anon_sym_LBRACE] = ACTIONS(1341), - [anon_sym_RBRACE] = ACTIONS(1341), - [anon_sym_signed] = ACTIONS(1339), - [anon_sym_unsigned] = ACTIONS(1339), - [anon_sym_long] = ACTIONS(1339), - [anon_sym_short] = ACTIONS(1339), - [anon_sym_static] = ACTIONS(1339), - [anon_sym_auto] = ACTIONS(1339), - [anon_sym_register] = ACTIONS(1339), - [anon_sym_inline] = ACTIONS(1339), - [anon_sym___inline] = ACTIONS(1339), - [anon_sym___inline__] = ACTIONS(1339), - [anon_sym___forceinline] = ACTIONS(1339), - [anon_sym_thread_local] = ACTIONS(1339), - [anon_sym___thread] = ACTIONS(1339), - [anon_sym_const] = ACTIONS(1339), - [anon_sym_constexpr] = ACTIONS(1339), - [anon_sym_volatile] = ACTIONS(1339), - [anon_sym_restrict] = ACTIONS(1339), - [anon_sym___restrict__] = ACTIONS(1339), - [anon_sym__Atomic] = ACTIONS(1339), - [anon_sym__Noreturn] = ACTIONS(1339), - [anon_sym_noreturn] = ACTIONS(1339), - [anon_sym_alignas] = ACTIONS(1339), - [anon_sym__Alignas] = ACTIONS(1339), - [sym_primitive_type] = ACTIONS(1339), - [anon_sym_enum] = ACTIONS(1339), - [anon_sym_struct] = ACTIONS(1339), - [anon_sym_union] = ACTIONS(1339), - [anon_sym_if] = ACTIONS(1339), - [anon_sym_switch] = ACTIONS(1339), - [anon_sym_case] = ACTIONS(1339), - [anon_sym_default] = ACTIONS(1339), - [anon_sym_while] = ACTIONS(1339), - [anon_sym_do] = ACTIONS(1339), - [anon_sym_for] = ACTIONS(1339), - [anon_sym_return] = ACTIONS(1339), - [anon_sym_break] = ACTIONS(1339), - [anon_sym_continue] = ACTIONS(1339), - [anon_sym_goto] = ACTIONS(1339), - [anon_sym___try] = ACTIONS(1339), - [anon_sym___leave] = ACTIONS(1339), - [anon_sym_DASH_DASH] = ACTIONS(1341), - [anon_sym_PLUS_PLUS] = ACTIONS(1341), - [anon_sym_sizeof] = ACTIONS(1339), - [anon_sym___alignof__] = ACTIONS(1339), - [anon_sym___alignof] = ACTIONS(1339), - [anon_sym__alignof] = ACTIONS(1339), - [anon_sym_alignof] = ACTIONS(1339), - [anon_sym__Alignof] = ACTIONS(1339), - [anon_sym_offsetof] = ACTIONS(1339), - [anon_sym__Generic] = ACTIONS(1339), - [anon_sym_asm] = ACTIONS(1339), - [anon_sym___asm__] = ACTIONS(1339), - [sym_number_literal] = ACTIONS(1341), - [anon_sym_L_SQUOTE] = ACTIONS(1341), - [anon_sym_u_SQUOTE] = ACTIONS(1341), - [anon_sym_U_SQUOTE] = ACTIONS(1341), - [anon_sym_u8_SQUOTE] = ACTIONS(1341), - [anon_sym_SQUOTE] = ACTIONS(1341), - [anon_sym_L_DQUOTE] = ACTIONS(1341), - [anon_sym_u_DQUOTE] = ACTIONS(1341), - [anon_sym_U_DQUOTE] = ACTIONS(1341), - [anon_sym_u8_DQUOTE] = ACTIONS(1341), - [anon_sym_DQUOTE] = ACTIONS(1341), - [sym_true] = ACTIONS(1339), - [sym_false] = ACTIONS(1339), - [anon_sym_NULL] = ACTIONS(1339), - [anon_sym_nullptr] = ACTIONS(1339), + [353] = { + [sym_identifier] = ACTIONS(1301), + [aux_sym_preproc_include_token1] = ACTIONS(1301), + [aux_sym_preproc_def_token1] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1301), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1301), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1301), + [sym_preproc_directive] = ACTIONS(1301), + [anon_sym_LPAREN2] = ACTIONS(1303), + [anon_sym_BANG] = ACTIONS(1303), + [anon_sym_TILDE] = ACTIONS(1303), + [anon_sym_DASH] = ACTIONS(1301), + [anon_sym_PLUS] = ACTIONS(1301), + [anon_sym_STAR] = ACTIONS(1303), + [anon_sym_AMP] = ACTIONS(1303), + [anon_sym_SEMI] = ACTIONS(1303), + [anon_sym___extension__] = ACTIONS(1301), + [anon_sym_typedef] = ACTIONS(1301), + [anon_sym_extern] = ACTIONS(1301), + [anon_sym___attribute__] = ACTIONS(1301), + [anon_sym___scanf] = ACTIONS(1301), + [anon_sym___printf] = ACTIONS(1301), + [anon_sym___read_mostly] = ACTIONS(1301), + [anon_sym___must_hold] = ACTIONS(1301), + [anon_sym___ro_after_init] = ACTIONS(1301), + [anon_sym___noreturn] = ACTIONS(1301), + [anon_sym___cold] = ACTIONS(1301), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1303), + [anon_sym___declspec] = ACTIONS(1301), + [anon_sym___init] = ACTIONS(1301), + [anon_sym___exit] = ACTIONS(1301), + [anon_sym___cdecl] = ACTIONS(1301), + [anon_sym___clrcall] = ACTIONS(1301), + [anon_sym___stdcall] = ACTIONS(1301), + [anon_sym___fastcall] = ACTIONS(1301), + [anon_sym___thiscall] = ACTIONS(1301), + [anon_sym___vectorcall] = ACTIONS(1301), + [anon_sym_LBRACE] = ACTIONS(1303), + [anon_sym_RBRACE] = ACTIONS(1303), + [anon_sym_signed] = ACTIONS(1301), + [anon_sym_unsigned] = ACTIONS(1301), + [anon_sym_long] = ACTIONS(1301), + [anon_sym_short] = ACTIONS(1301), + [anon_sym_static] = ACTIONS(1301), + [anon_sym_auto] = ACTIONS(1301), + [anon_sym_register] = ACTIONS(1301), + [anon_sym_inline] = ACTIONS(1301), + [anon_sym___inline] = ACTIONS(1301), + [anon_sym___inline__] = ACTIONS(1301), + [anon_sym___forceinline] = ACTIONS(1301), + [anon_sym_thread_local] = ACTIONS(1301), + [anon_sym___thread] = ACTIONS(1301), + [anon_sym_const] = ACTIONS(1301), + [anon_sym_constexpr] = ACTIONS(1301), + [anon_sym_volatile] = ACTIONS(1301), + [anon_sym_restrict] = ACTIONS(1301), + [anon_sym___restrict__] = ACTIONS(1301), + [anon_sym__Atomic] = ACTIONS(1301), + [anon_sym__Noreturn] = ACTIONS(1301), + [anon_sym_noreturn] = ACTIONS(1301), + [anon_sym_alignas] = ACTIONS(1301), + [anon_sym__Alignas] = ACTIONS(1301), + [sym_primitive_type] = ACTIONS(1301), + [anon_sym_enum] = ACTIONS(1301), + [anon_sym_struct] = ACTIONS(1301), + [anon_sym_union] = ACTIONS(1301), + [anon_sym_if] = ACTIONS(1301), + [anon_sym_switch] = ACTIONS(1301), + [anon_sym_case] = ACTIONS(1301), + [anon_sym_default] = ACTIONS(1301), + [anon_sym_while] = ACTIONS(1301), + [anon_sym_do] = ACTIONS(1301), + [anon_sym_for] = ACTIONS(1301), + [anon_sym_return] = ACTIONS(1301), + [anon_sym_break] = ACTIONS(1301), + [anon_sym_continue] = ACTIONS(1301), + [anon_sym_goto] = ACTIONS(1301), + [anon_sym___try] = ACTIONS(1301), + [anon_sym___leave] = ACTIONS(1301), + [anon_sym_DASH_DASH] = ACTIONS(1303), + [anon_sym_PLUS_PLUS] = ACTIONS(1303), + [anon_sym_sizeof] = ACTIONS(1301), + [anon_sym___alignof__] = ACTIONS(1301), + [anon_sym___alignof] = ACTIONS(1301), + [anon_sym__alignof] = ACTIONS(1301), + [anon_sym_alignof] = ACTIONS(1301), + [anon_sym__Alignof] = ACTIONS(1301), + [anon_sym_offsetof] = ACTIONS(1301), + [anon_sym__Generic] = ACTIONS(1301), + [anon_sym_asm] = ACTIONS(1301), + [anon_sym___asm__] = ACTIONS(1301), + [sym_number_literal] = ACTIONS(1303), + [anon_sym_L_SQUOTE] = ACTIONS(1303), + [anon_sym_u_SQUOTE] = ACTIONS(1303), + [anon_sym_U_SQUOTE] = ACTIONS(1303), + [anon_sym_u8_SQUOTE] = ACTIONS(1303), + [anon_sym_SQUOTE] = ACTIONS(1303), + [anon_sym_L_DQUOTE] = ACTIONS(1303), + [anon_sym_u_DQUOTE] = ACTIONS(1303), + [anon_sym_U_DQUOTE] = ACTIONS(1303), + [anon_sym_u8_DQUOTE] = ACTIONS(1303), + [anon_sym_DQUOTE] = ACTIONS(1303), + [sym_true] = ACTIONS(1301), + [sym_false] = ACTIONS(1301), + [anon_sym_NULL] = ACTIONS(1301), + [anon_sym_nullptr] = ACTIONS(1301), [sym_comment] = ACTIONS(3), }, - [294] = { - [sym_identifier] = ACTIONS(1367), - [aux_sym_preproc_include_token1] = ACTIONS(1367), - [aux_sym_preproc_def_token1] = ACTIONS(1367), - [aux_sym_preproc_if_token1] = ACTIONS(1367), - [aux_sym_preproc_if_token2] = ACTIONS(1367), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1367), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1367), - [sym_preproc_directive] = ACTIONS(1367), - [anon_sym_LPAREN2] = ACTIONS(1369), - [anon_sym_BANG] = ACTIONS(1369), - [anon_sym_TILDE] = ACTIONS(1369), - [anon_sym_DASH] = ACTIONS(1367), - [anon_sym_PLUS] = ACTIONS(1367), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_AMP] = ACTIONS(1369), - [anon_sym_SEMI] = ACTIONS(1369), - [anon_sym___extension__] = ACTIONS(1367), - [anon_sym_typedef] = ACTIONS(1367), - [anon_sym_extern] = ACTIONS(1367), - [anon_sym___attribute__] = ACTIONS(1367), - [anon_sym___scanf] = ACTIONS(1367), - [anon_sym___printf] = ACTIONS(1367), - [anon_sym___read_mostly] = ACTIONS(1367), - [anon_sym___must_hold] = ACTIONS(1367), - [anon_sym___ro_after_init] = ACTIONS(1367), - [anon_sym___init] = ACTIONS(1367), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1369), - [anon_sym___declspec] = ACTIONS(1367), - [anon_sym___cdecl] = ACTIONS(1367), - [anon_sym___clrcall] = ACTIONS(1367), - [anon_sym___stdcall] = ACTIONS(1367), - [anon_sym___fastcall] = ACTIONS(1367), - [anon_sym___thiscall] = ACTIONS(1367), - [anon_sym___vectorcall] = ACTIONS(1367), - [anon_sym_LBRACE] = ACTIONS(1369), - [anon_sym_signed] = ACTIONS(1367), - [anon_sym_unsigned] = ACTIONS(1367), - [anon_sym_long] = ACTIONS(1367), - [anon_sym_short] = ACTIONS(1367), - [anon_sym_static] = ACTIONS(1367), - [anon_sym_auto] = ACTIONS(1367), - [anon_sym_register] = ACTIONS(1367), - [anon_sym_inline] = ACTIONS(1367), - [anon_sym___inline] = ACTIONS(1367), - [anon_sym___inline__] = ACTIONS(1367), - [anon_sym___forceinline] = ACTIONS(1367), - [anon_sym_thread_local] = ACTIONS(1367), - [anon_sym___thread] = ACTIONS(1367), - [anon_sym_const] = ACTIONS(1367), - [anon_sym_constexpr] = ACTIONS(1367), - [anon_sym_volatile] = ACTIONS(1367), - [anon_sym_restrict] = ACTIONS(1367), - [anon_sym___restrict__] = ACTIONS(1367), - [anon_sym__Atomic] = ACTIONS(1367), - [anon_sym__Noreturn] = ACTIONS(1367), - [anon_sym_noreturn] = ACTIONS(1367), - [anon_sym_alignas] = ACTIONS(1367), - [anon_sym__Alignas] = ACTIONS(1367), - [sym_primitive_type] = ACTIONS(1367), - [anon_sym_enum] = ACTIONS(1367), - [anon_sym_struct] = ACTIONS(1367), - [anon_sym_union] = ACTIONS(1367), - [anon_sym_if] = ACTIONS(1367), - [anon_sym_switch] = ACTIONS(1367), - [anon_sym_case] = ACTIONS(1367), - [anon_sym_default] = ACTIONS(1367), - [anon_sym_while] = ACTIONS(1367), - [anon_sym_do] = ACTIONS(1367), - [anon_sym_for] = ACTIONS(1367), - [anon_sym_return] = ACTIONS(1367), - [anon_sym_break] = ACTIONS(1367), - [anon_sym_continue] = ACTIONS(1367), - [anon_sym_goto] = ACTIONS(1367), - [anon_sym___try] = ACTIONS(1367), - [anon_sym___leave] = ACTIONS(1367), - [anon_sym_DASH_DASH] = ACTIONS(1369), - [anon_sym_PLUS_PLUS] = ACTIONS(1369), - [anon_sym_sizeof] = ACTIONS(1367), - [anon_sym___alignof__] = ACTIONS(1367), - [anon_sym___alignof] = ACTIONS(1367), - [anon_sym__alignof] = ACTIONS(1367), - [anon_sym_alignof] = ACTIONS(1367), - [anon_sym__Alignof] = ACTIONS(1367), - [anon_sym_offsetof] = ACTIONS(1367), - [anon_sym__Generic] = ACTIONS(1367), - [anon_sym_asm] = ACTIONS(1367), - [anon_sym___asm__] = ACTIONS(1367), - [sym_number_literal] = ACTIONS(1369), - [anon_sym_L_SQUOTE] = ACTIONS(1369), - [anon_sym_u_SQUOTE] = ACTIONS(1369), - [anon_sym_U_SQUOTE] = ACTIONS(1369), - [anon_sym_u8_SQUOTE] = ACTIONS(1369), - [anon_sym_SQUOTE] = ACTIONS(1369), - [anon_sym_L_DQUOTE] = ACTIONS(1369), - [anon_sym_u_DQUOTE] = ACTIONS(1369), - [anon_sym_U_DQUOTE] = ACTIONS(1369), - [anon_sym_u8_DQUOTE] = ACTIONS(1369), - [anon_sym_DQUOTE] = ACTIONS(1369), - [sym_true] = ACTIONS(1367), - [sym_false] = ACTIONS(1367), - [anon_sym_NULL] = ACTIONS(1367), - [anon_sym_nullptr] = ACTIONS(1367), + [354] = { + [sym_identifier] = ACTIONS(1407), + [aux_sym_preproc_include_token1] = ACTIONS(1407), + [aux_sym_preproc_def_token1] = ACTIONS(1407), + [aux_sym_preproc_if_token1] = ACTIONS(1407), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1407), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1407), + [sym_preproc_directive] = ACTIONS(1407), + [anon_sym_LPAREN2] = ACTIONS(1409), + [anon_sym_BANG] = ACTIONS(1409), + [anon_sym_TILDE] = ACTIONS(1409), + [anon_sym_DASH] = ACTIONS(1407), + [anon_sym_PLUS] = ACTIONS(1407), + [anon_sym_STAR] = ACTIONS(1409), + [anon_sym_AMP] = ACTIONS(1409), + [anon_sym_SEMI] = ACTIONS(1409), + [anon_sym___extension__] = ACTIONS(1407), + [anon_sym_typedef] = ACTIONS(1407), + [anon_sym_extern] = ACTIONS(1407), + [anon_sym___attribute__] = ACTIONS(1407), + [anon_sym___scanf] = ACTIONS(1407), + [anon_sym___printf] = ACTIONS(1407), + [anon_sym___read_mostly] = ACTIONS(1407), + [anon_sym___must_hold] = ACTIONS(1407), + [anon_sym___ro_after_init] = ACTIONS(1407), + [anon_sym___noreturn] = ACTIONS(1407), + [anon_sym___cold] = ACTIONS(1407), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1409), + [anon_sym___declspec] = ACTIONS(1407), + [anon_sym___init] = ACTIONS(1407), + [anon_sym___exit] = ACTIONS(1407), + [anon_sym___cdecl] = ACTIONS(1407), + [anon_sym___clrcall] = ACTIONS(1407), + [anon_sym___stdcall] = ACTIONS(1407), + [anon_sym___fastcall] = ACTIONS(1407), + [anon_sym___thiscall] = ACTIONS(1407), + [anon_sym___vectorcall] = ACTIONS(1407), + [anon_sym_LBRACE] = ACTIONS(1409), + [anon_sym_RBRACE] = ACTIONS(1409), + [anon_sym_signed] = ACTIONS(1407), + [anon_sym_unsigned] = ACTIONS(1407), + [anon_sym_long] = ACTIONS(1407), + [anon_sym_short] = ACTIONS(1407), + [anon_sym_static] = ACTIONS(1407), + [anon_sym_auto] = ACTIONS(1407), + [anon_sym_register] = ACTIONS(1407), + [anon_sym_inline] = ACTIONS(1407), + [anon_sym___inline] = ACTIONS(1407), + [anon_sym___inline__] = ACTIONS(1407), + [anon_sym___forceinline] = ACTIONS(1407), + [anon_sym_thread_local] = ACTIONS(1407), + [anon_sym___thread] = ACTIONS(1407), + [anon_sym_const] = ACTIONS(1407), + [anon_sym_constexpr] = ACTIONS(1407), + [anon_sym_volatile] = ACTIONS(1407), + [anon_sym_restrict] = ACTIONS(1407), + [anon_sym___restrict__] = ACTIONS(1407), + [anon_sym__Atomic] = ACTIONS(1407), + [anon_sym__Noreturn] = ACTIONS(1407), + [anon_sym_noreturn] = ACTIONS(1407), + [anon_sym_alignas] = ACTIONS(1407), + [anon_sym__Alignas] = ACTIONS(1407), + [sym_primitive_type] = ACTIONS(1407), + [anon_sym_enum] = ACTIONS(1407), + [anon_sym_struct] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1407), + [anon_sym_if] = ACTIONS(1407), + [anon_sym_switch] = ACTIONS(1407), + [anon_sym_case] = ACTIONS(1407), + [anon_sym_default] = ACTIONS(1407), + [anon_sym_while] = ACTIONS(1407), + [anon_sym_do] = ACTIONS(1407), + [anon_sym_for] = ACTIONS(1407), + [anon_sym_return] = ACTIONS(1407), + [anon_sym_break] = ACTIONS(1407), + [anon_sym_continue] = ACTIONS(1407), + [anon_sym_goto] = ACTIONS(1407), + [anon_sym___try] = ACTIONS(1407), + [anon_sym___leave] = ACTIONS(1407), + [anon_sym_DASH_DASH] = ACTIONS(1409), + [anon_sym_PLUS_PLUS] = ACTIONS(1409), + [anon_sym_sizeof] = ACTIONS(1407), + [anon_sym___alignof__] = ACTIONS(1407), + [anon_sym___alignof] = ACTIONS(1407), + [anon_sym__alignof] = ACTIONS(1407), + [anon_sym_alignof] = ACTIONS(1407), + [anon_sym__Alignof] = ACTIONS(1407), + [anon_sym_offsetof] = ACTIONS(1407), + [anon_sym__Generic] = ACTIONS(1407), + [anon_sym_asm] = ACTIONS(1407), + [anon_sym___asm__] = ACTIONS(1407), + [sym_number_literal] = ACTIONS(1409), + [anon_sym_L_SQUOTE] = ACTIONS(1409), + [anon_sym_u_SQUOTE] = ACTIONS(1409), + [anon_sym_U_SQUOTE] = ACTIONS(1409), + [anon_sym_u8_SQUOTE] = ACTIONS(1409), + [anon_sym_SQUOTE] = ACTIONS(1409), + [anon_sym_L_DQUOTE] = ACTIONS(1409), + [anon_sym_u_DQUOTE] = ACTIONS(1409), + [anon_sym_U_DQUOTE] = ACTIONS(1409), + [anon_sym_u8_DQUOTE] = ACTIONS(1409), + [anon_sym_DQUOTE] = ACTIONS(1409), + [sym_true] = ACTIONS(1407), + [sym_false] = ACTIONS(1407), + [anon_sym_NULL] = ACTIONS(1407), + [anon_sym_nullptr] = ACTIONS(1407), [sym_comment] = ACTIONS(3), }, - [295] = { - [sym_identifier] = ACTIONS(1323), - [aux_sym_preproc_include_token1] = ACTIONS(1323), - [aux_sym_preproc_def_token1] = ACTIONS(1323), - [aux_sym_preproc_if_token1] = ACTIONS(1323), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1323), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1323), - [sym_preproc_directive] = ACTIONS(1323), - [anon_sym_LPAREN2] = ACTIONS(1325), - [anon_sym_BANG] = ACTIONS(1325), - [anon_sym_TILDE] = ACTIONS(1325), - [anon_sym_DASH] = ACTIONS(1323), - [anon_sym_PLUS] = ACTIONS(1323), - [anon_sym_STAR] = ACTIONS(1325), - [anon_sym_AMP] = ACTIONS(1325), - [anon_sym_SEMI] = ACTIONS(1325), - [anon_sym___extension__] = ACTIONS(1323), - [anon_sym_typedef] = ACTIONS(1323), - [anon_sym_extern] = ACTIONS(1323), - [anon_sym___attribute__] = ACTIONS(1323), - [anon_sym___scanf] = ACTIONS(1323), - [anon_sym___printf] = ACTIONS(1323), - [anon_sym___read_mostly] = ACTIONS(1323), - [anon_sym___must_hold] = ACTIONS(1323), - [anon_sym___ro_after_init] = ACTIONS(1323), - [anon_sym___init] = ACTIONS(1323), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), - [anon_sym___declspec] = ACTIONS(1323), - [anon_sym___cdecl] = ACTIONS(1323), - [anon_sym___clrcall] = ACTIONS(1323), - [anon_sym___stdcall] = ACTIONS(1323), - [anon_sym___fastcall] = ACTIONS(1323), - [anon_sym___thiscall] = ACTIONS(1323), - [anon_sym___vectorcall] = ACTIONS(1323), - [anon_sym_LBRACE] = ACTIONS(1325), - [anon_sym_RBRACE] = ACTIONS(1325), - [anon_sym_signed] = ACTIONS(1323), - [anon_sym_unsigned] = ACTIONS(1323), - [anon_sym_long] = ACTIONS(1323), - [anon_sym_short] = ACTIONS(1323), - [anon_sym_static] = ACTIONS(1323), - [anon_sym_auto] = ACTIONS(1323), - [anon_sym_register] = ACTIONS(1323), - [anon_sym_inline] = ACTIONS(1323), - [anon_sym___inline] = ACTIONS(1323), - [anon_sym___inline__] = ACTIONS(1323), - [anon_sym___forceinline] = ACTIONS(1323), - [anon_sym_thread_local] = ACTIONS(1323), - [anon_sym___thread] = ACTIONS(1323), - [anon_sym_const] = ACTIONS(1323), - [anon_sym_constexpr] = ACTIONS(1323), - [anon_sym_volatile] = ACTIONS(1323), - [anon_sym_restrict] = ACTIONS(1323), - [anon_sym___restrict__] = ACTIONS(1323), - [anon_sym__Atomic] = ACTIONS(1323), - [anon_sym__Noreturn] = ACTIONS(1323), - [anon_sym_noreturn] = ACTIONS(1323), - [anon_sym_alignas] = ACTIONS(1323), - [anon_sym__Alignas] = ACTIONS(1323), - [sym_primitive_type] = ACTIONS(1323), - [anon_sym_enum] = ACTIONS(1323), - [anon_sym_struct] = ACTIONS(1323), - [anon_sym_union] = ACTIONS(1323), - [anon_sym_if] = ACTIONS(1323), - [anon_sym_switch] = ACTIONS(1323), - [anon_sym_case] = ACTIONS(1323), - [anon_sym_default] = ACTIONS(1323), - [anon_sym_while] = ACTIONS(1323), - [anon_sym_do] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1323), - [anon_sym_return] = ACTIONS(1323), - [anon_sym_break] = ACTIONS(1323), - [anon_sym_continue] = ACTIONS(1323), - [anon_sym_goto] = ACTIONS(1323), - [anon_sym___try] = ACTIONS(1323), - [anon_sym___leave] = ACTIONS(1323), - [anon_sym_DASH_DASH] = ACTIONS(1325), - [anon_sym_PLUS_PLUS] = ACTIONS(1325), - [anon_sym_sizeof] = ACTIONS(1323), - [anon_sym___alignof__] = ACTIONS(1323), - [anon_sym___alignof] = ACTIONS(1323), - [anon_sym__alignof] = ACTIONS(1323), - [anon_sym_alignof] = ACTIONS(1323), - [anon_sym__Alignof] = ACTIONS(1323), - [anon_sym_offsetof] = ACTIONS(1323), - [anon_sym__Generic] = ACTIONS(1323), - [anon_sym_asm] = ACTIONS(1323), - [anon_sym___asm__] = ACTIONS(1323), - [sym_number_literal] = ACTIONS(1325), - [anon_sym_L_SQUOTE] = ACTIONS(1325), - [anon_sym_u_SQUOTE] = ACTIONS(1325), - [anon_sym_U_SQUOTE] = ACTIONS(1325), - [anon_sym_u8_SQUOTE] = ACTIONS(1325), - [anon_sym_SQUOTE] = ACTIONS(1325), - [anon_sym_L_DQUOTE] = ACTIONS(1325), - [anon_sym_u_DQUOTE] = ACTIONS(1325), - [anon_sym_U_DQUOTE] = ACTIONS(1325), - [anon_sym_u8_DQUOTE] = ACTIONS(1325), - [anon_sym_DQUOTE] = ACTIONS(1325), - [sym_true] = ACTIONS(1323), - [sym_false] = ACTIONS(1323), - [anon_sym_NULL] = ACTIONS(1323), - [anon_sym_nullptr] = ACTIONS(1323), + [355] = { + [sym_identifier] = ACTIONS(1361), + [aux_sym_preproc_include_token1] = ACTIONS(1361), + [aux_sym_preproc_def_token1] = ACTIONS(1361), + [aux_sym_preproc_if_token1] = ACTIONS(1361), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1361), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1361), + [sym_preproc_directive] = ACTIONS(1361), + [anon_sym_LPAREN2] = ACTIONS(1363), + [anon_sym_BANG] = ACTIONS(1363), + [anon_sym_TILDE] = ACTIONS(1363), + [anon_sym_DASH] = ACTIONS(1361), + [anon_sym_PLUS] = ACTIONS(1361), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_AMP] = ACTIONS(1363), + [anon_sym_SEMI] = ACTIONS(1363), + [anon_sym___extension__] = ACTIONS(1361), + [anon_sym_typedef] = ACTIONS(1361), + [anon_sym_extern] = ACTIONS(1361), + [anon_sym___attribute__] = ACTIONS(1361), + [anon_sym___scanf] = ACTIONS(1361), + [anon_sym___printf] = ACTIONS(1361), + [anon_sym___read_mostly] = ACTIONS(1361), + [anon_sym___must_hold] = ACTIONS(1361), + [anon_sym___ro_after_init] = ACTIONS(1361), + [anon_sym___noreturn] = ACTIONS(1361), + [anon_sym___cold] = ACTIONS(1361), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1363), + [anon_sym___declspec] = ACTIONS(1361), + [anon_sym___init] = ACTIONS(1361), + [anon_sym___exit] = ACTIONS(1361), + [anon_sym___cdecl] = ACTIONS(1361), + [anon_sym___clrcall] = ACTIONS(1361), + [anon_sym___stdcall] = ACTIONS(1361), + [anon_sym___fastcall] = ACTIONS(1361), + [anon_sym___thiscall] = ACTIONS(1361), + [anon_sym___vectorcall] = ACTIONS(1361), + [anon_sym_LBRACE] = ACTIONS(1363), + [anon_sym_RBRACE] = ACTIONS(1363), + [anon_sym_signed] = ACTIONS(1361), + [anon_sym_unsigned] = ACTIONS(1361), + [anon_sym_long] = ACTIONS(1361), + [anon_sym_short] = ACTIONS(1361), + [anon_sym_static] = ACTIONS(1361), + [anon_sym_auto] = ACTIONS(1361), + [anon_sym_register] = ACTIONS(1361), + [anon_sym_inline] = ACTIONS(1361), + [anon_sym___inline] = ACTIONS(1361), + [anon_sym___inline__] = ACTIONS(1361), + [anon_sym___forceinline] = ACTIONS(1361), + [anon_sym_thread_local] = ACTIONS(1361), + [anon_sym___thread] = ACTIONS(1361), + [anon_sym_const] = ACTIONS(1361), + [anon_sym_constexpr] = ACTIONS(1361), + [anon_sym_volatile] = ACTIONS(1361), + [anon_sym_restrict] = ACTIONS(1361), + [anon_sym___restrict__] = ACTIONS(1361), + [anon_sym__Atomic] = ACTIONS(1361), + [anon_sym__Noreturn] = ACTIONS(1361), + [anon_sym_noreturn] = ACTIONS(1361), + [anon_sym_alignas] = ACTIONS(1361), + [anon_sym__Alignas] = ACTIONS(1361), + [sym_primitive_type] = ACTIONS(1361), + [anon_sym_enum] = ACTIONS(1361), + [anon_sym_struct] = ACTIONS(1361), + [anon_sym_union] = ACTIONS(1361), + [anon_sym_if] = ACTIONS(1361), + [anon_sym_switch] = ACTIONS(1361), + [anon_sym_case] = ACTIONS(1361), + [anon_sym_default] = ACTIONS(1361), + [anon_sym_while] = ACTIONS(1361), + [anon_sym_do] = ACTIONS(1361), + [anon_sym_for] = ACTIONS(1361), + [anon_sym_return] = ACTIONS(1361), + [anon_sym_break] = ACTIONS(1361), + [anon_sym_continue] = ACTIONS(1361), + [anon_sym_goto] = ACTIONS(1361), + [anon_sym___try] = ACTIONS(1361), + [anon_sym___leave] = ACTIONS(1361), + [anon_sym_DASH_DASH] = ACTIONS(1363), + [anon_sym_PLUS_PLUS] = ACTIONS(1363), + [anon_sym_sizeof] = ACTIONS(1361), + [anon_sym___alignof__] = ACTIONS(1361), + [anon_sym___alignof] = ACTIONS(1361), + [anon_sym__alignof] = ACTIONS(1361), + [anon_sym_alignof] = ACTIONS(1361), + [anon_sym__Alignof] = ACTIONS(1361), + [anon_sym_offsetof] = ACTIONS(1361), + [anon_sym__Generic] = ACTIONS(1361), + [anon_sym_asm] = ACTIONS(1361), + [anon_sym___asm__] = ACTIONS(1361), + [sym_number_literal] = ACTIONS(1363), + [anon_sym_L_SQUOTE] = ACTIONS(1363), + [anon_sym_u_SQUOTE] = ACTIONS(1363), + [anon_sym_U_SQUOTE] = ACTIONS(1363), + [anon_sym_u8_SQUOTE] = ACTIONS(1363), + [anon_sym_SQUOTE] = ACTIONS(1363), + [anon_sym_L_DQUOTE] = ACTIONS(1363), + [anon_sym_u_DQUOTE] = ACTIONS(1363), + [anon_sym_U_DQUOTE] = ACTIONS(1363), + [anon_sym_u8_DQUOTE] = ACTIONS(1363), + [anon_sym_DQUOTE] = ACTIONS(1363), + [sym_true] = ACTIONS(1361), + [sym_false] = ACTIONS(1361), + [anon_sym_NULL] = ACTIONS(1361), + [anon_sym_nullptr] = ACTIONS(1361), [sym_comment] = ACTIONS(3), }, - [296] = { - [sym_identifier] = ACTIONS(1303), - [aux_sym_preproc_include_token1] = ACTIONS(1303), - [aux_sym_preproc_def_token1] = ACTIONS(1303), - [aux_sym_preproc_if_token1] = ACTIONS(1303), - [aux_sym_preproc_if_token2] = ACTIONS(1303), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1303), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1303), - [sym_preproc_directive] = ACTIONS(1303), - [anon_sym_LPAREN2] = ACTIONS(1305), - [anon_sym_BANG] = ACTIONS(1305), - [anon_sym_TILDE] = ACTIONS(1305), - [anon_sym_DASH] = ACTIONS(1303), - [anon_sym_PLUS] = ACTIONS(1303), - [anon_sym_STAR] = ACTIONS(1305), - [anon_sym_AMP] = ACTIONS(1305), - [anon_sym_SEMI] = ACTIONS(1305), - [anon_sym___extension__] = ACTIONS(1303), - [anon_sym_typedef] = ACTIONS(1303), - [anon_sym_extern] = ACTIONS(1303), - [anon_sym___attribute__] = ACTIONS(1303), - [anon_sym___scanf] = ACTIONS(1303), - [anon_sym___printf] = ACTIONS(1303), - [anon_sym___read_mostly] = ACTIONS(1303), - [anon_sym___must_hold] = ACTIONS(1303), - [anon_sym___ro_after_init] = ACTIONS(1303), - [anon_sym___init] = ACTIONS(1303), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1305), - [anon_sym___declspec] = ACTIONS(1303), - [anon_sym___cdecl] = ACTIONS(1303), - [anon_sym___clrcall] = ACTIONS(1303), - [anon_sym___stdcall] = ACTIONS(1303), - [anon_sym___fastcall] = ACTIONS(1303), - [anon_sym___thiscall] = ACTIONS(1303), - [anon_sym___vectorcall] = ACTIONS(1303), - [anon_sym_LBRACE] = ACTIONS(1305), - [anon_sym_signed] = ACTIONS(1303), - [anon_sym_unsigned] = ACTIONS(1303), - [anon_sym_long] = ACTIONS(1303), - [anon_sym_short] = ACTIONS(1303), - [anon_sym_static] = ACTIONS(1303), - [anon_sym_auto] = ACTIONS(1303), - [anon_sym_register] = ACTIONS(1303), - [anon_sym_inline] = ACTIONS(1303), - [anon_sym___inline] = ACTIONS(1303), - [anon_sym___inline__] = ACTIONS(1303), - [anon_sym___forceinline] = ACTIONS(1303), - [anon_sym_thread_local] = ACTIONS(1303), - [anon_sym___thread] = ACTIONS(1303), - [anon_sym_const] = ACTIONS(1303), - [anon_sym_constexpr] = ACTIONS(1303), - [anon_sym_volatile] = ACTIONS(1303), - [anon_sym_restrict] = ACTIONS(1303), - [anon_sym___restrict__] = ACTIONS(1303), - [anon_sym__Atomic] = ACTIONS(1303), - [anon_sym__Noreturn] = ACTIONS(1303), - [anon_sym_noreturn] = ACTIONS(1303), - [anon_sym_alignas] = ACTIONS(1303), - [anon_sym__Alignas] = ACTIONS(1303), - [sym_primitive_type] = ACTIONS(1303), - [anon_sym_enum] = ACTIONS(1303), - [anon_sym_struct] = ACTIONS(1303), - [anon_sym_union] = ACTIONS(1303), - [anon_sym_if] = ACTIONS(1303), - [anon_sym_switch] = ACTIONS(1303), - [anon_sym_case] = ACTIONS(1303), - [anon_sym_default] = ACTIONS(1303), - [anon_sym_while] = ACTIONS(1303), - [anon_sym_do] = ACTIONS(1303), - [anon_sym_for] = ACTIONS(1303), - [anon_sym_return] = ACTIONS(1303), - [anon_sym_break] = ACTIONS(1303), - [anon_sym_continue] = ACTIONS(1303), - [anon_sym_goto] = ACTIONS(1303), - [anon_sym___try] = ACTIONS(1303), - [anon_sym___leave] = ACTIONS(1303), - [anon_sym_DASH_DASH] = ACTIONS(1305), - [anon_sym_PLUS_PLUS] = ACTIONS(1305), - [anon_sym_sizeof] = ACTIONS(1303), - [anon_sym___alignof__] = ACTIONS(1303), - [anon_sym___alignof] = ACTIONS(1303), - [anon_sym__alignof] = ACTIONS(1303), - [anon_sym_alignof] = ACTIONS(1303), - [anon_sym__Alignof] = ACTIONS(1303), - [anon_sym_offsetof] = ACTIONS(1303), - [anon_sym__Generic] = ACTIONS(1303), - [anon_sym_asm] = ACTIONS(1303), - [anon_sym___asm__] = ACTIONS(1303), - [sym_number_literal] = ACTIONS(1305), - [anon_sym_L_SQUOTE] = ACTIONS(1305), - [anon_sym_u_SQUOTE] = ACTIONS(1305), - [anon_sym_U_SQUOTE] = ACTIONS(1305), - [anon_sym_u8_SQUOTE] = ACTIONS(1305), - [anon_sym_SQUOTE] = ACTIONS(1305), - [anon_sym_L_DQUOTE] = ACTIONS(1305), - [anon_sym_u_DQUOTE] = ACTIONS(1305), - [anon_sym_U_DQUOTE] = ACTIONS(1305), - [anon_sym_u8_DQUOTE] = ACTIONS(1305), - [anon_sym_DQUOTE] = ACTIONS(1305), - [sym_true] = ACTIONS(1303), - [sym_false] = ACTIONS(1303), - [anon_sym_NULL] = ACTIONS(1303), - [anon_sym_nullptr] = ACTIONS(1303), + [356] = { + [sym_identifier] = ACTIONS(1333), + [aux_sym_preproc_include_token1] = ACTIONS(1333), + [aux_sym_preproc_def_token1] = ACTIONS(1333), + [aux_sym_preproc_if_token1] = ACTIONS(1333), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1333), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1333), + [sym_preproc_directive] = ACTIONS(1333), + [anon_sym_LPAREN2] = ACTIONS(1335), + [anon_sym_BANG] = ACTIONS(1335), + [anon_sym_TILDE] = ACTIONS(1335), + [anon_sym_DASH] = ACTIONS(1333), + [anon_sym_PLUS] = ACTIONS(1333), + [anon_sym_STAR] = ACTIONS(1335), + [anon_sym_AMP] = ACTIONS(1335), + [anon_sym_SEMI] = ACTIONS(1335), + [anon_sym___extension__] = ACTIONS(1333), + [anon_sym_typedef] = ACTIONS(1333), + [anon_sym_extern] = ACTIONS(1333), + [anon_sym___attribute__] = ACTIONS(1333), + [anon_sym___scanf] = ACTIONS(1333), + [anon_sym___printf] = ACTIONS(1333), + [anon_sym___read_mostly] = ACTIONS(1333), + [anon_sym___must_hold] = ACTIONS(1333), + [anon_sym___ro_after_init] = ACTIONS(1333), + [anon_sym___noreturn] = ACTIONS(1333), + [anon_sym___cold] = ACTIONS(1333), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1335), + [anon_sym___declspec] = ACTIONS(1333), + [anon_sym___init] = ACTIONS(1333), + [anon_sym___exit] = ACTIONS(1333), + [anon_sym___cdecl] = ACTIONS(1333), + [anon_sym___clrcall] = ACTIONS(1333), + [anon_sym___stdcall] = ACTIONS(1333), + [anon_sym___fastcall] = ACTIONS(1333), + [anon_sym___thiscall] = ACTIONS(1333), + [anon_sym___vectorcall] = ACTIONS(1333), + [anon_sym_LBRACE] = ACTIONS(1335), + [anon_sym_RBRACE] = ACTIONS(1335), + [anon_sym_signed] = ACTIONS(1333), + [anon_sym_unsigned] = ACTIONS(1333), + [anon_sym_long] = ACTIONS(1333), + [anon_sym_short] = ACTIONS(1333), + [anon_sym_static] = ACTIONS(1333), + [anon_sym_auto] = ACTIONS(1333), + [anon_sym_register] = ACTIONS(1333), + [anon_sym_inline] = ACTIONS(1333), + [anon_sym___inline] = ACTIONS(1333), + [anon_sym___inline__] = ACTIONS(1333), + [anon_sym___forceinline] = ACTIONS(1333), + [anon_sym_thread_local] = ACTIONS(1333), + [anon_sym___thread] = ACTIONS(1333), + [anon_sym_const] = ACTIONS(1333), + [anon_sym_constexpr] = ACTIONS(1333), + [anon_sym_volatile] = ACTIONS(1333), + [anon_sym_restrict] = ACTIONS(1333), + [anon_sym___restrict__] = ACTIONS(1333), + [anon_sym__Atomic] = ACTIONS(1333), + [anon_sym__Noreturn] = ACTIONS(1333), + [anon_sym_noreturn] = ACTIONS(1333), + [anon_sym_alignas] = ACTIONS(1333), + [anon_sym__Alignas] = ACTIONS(1333), + [sym_primitive_type] = ACTIONS(1333), + [anon_sym_enum] = ACTIONS(1333), + [anon_sym_struct] = ACTIONS(1333), + [anon_sym_union] = ACTIONS(1333), + [anon_sym_if] = ACTIONS(1333), + [anon_sym_switch] = ACTIONS(1333), + [anon_sym_case] = ACTIONS(1333), + [anon_sym_default] = ACTIONS(1333), + [anon_sym_while] = ACTIONS(1333), + [anon_sym_do] = ACTIONS(1333), + [anon_sym_for] = ACTIONS(1333), + [anon_sym_return] = ACTIONS(1333), + [anon_sym_break] = ACTIONS(1333), + [anon_sym_continue] = ACTIONS(1333), + [anon_sym_goto] = ACTIONS(1333), + [anon_sym___try] = ACTIONS(1333), + [anon_sym___leave] = ACTIONS(1333), + [anon_sym_DASH_DASH] = ACTIONS(1335), + [anon_sym_PLUS_PLUS] = ACTIONS(1335), + [anon_sym_sizeof] = ACTIONS(1333), + [anon_sym___alignof__] = ACTIONS(1333), + [anon_sym___alignof] = ACTIONS(1333), + [anon_sym__alignof] = ACTIONS(1333), + [anon_sym_alignof] = ACTIONS(1333), + [anon_sym__Alignof] = ACTIONS(1333), + [anon_sym_offsetof] = ACTIONS(1333), + [anon_sym__Generic] = ACTIONS(1333), + [anon_sym_asm] = ACTIONS(1333), + [anon_sym___asm__] = ACTIONS(1333), + [sym_number_literal] = ACTIONS(1335), + [anon_sym_L_SQUOTE] = ACTIONS(1335), + [anon_sym_u_SQUOTE] = ACTIONS(1335), + [anon_sym_U_SQUOTE] = ACTIONS(1335), + [anon_sym_u8_SQUOTE] = ACTIONS(1335), + [anon_sym_SQUOTE] = ACTIONS(1335), + [anon_sym_L_DQUOTE] = ACTIONS(1335), + [anon_sym_u_DQUOTE] = ACTIONS(1335), + [anon_sym_U_DQUOTE] = ACTIONS(1335), + [anon_sym_u8_DQUOTE] = ACTIONS(1335), + [anon_sym_DQUOTE] = ACTIONS(1335), + [sym_true] = ACTIONS(1333), + [sym_false] = ACTIONS(1333), + [anon_sym_NULL] = ACTIONS(1333), + [anon_sym_nullptr] = ACTIONS(1333), [sym_comment] = ACTIONS(3), }, - [297] = { - [sym_identifier] = ACTIONS(1299), - [aux_sym_preproc_include_token1] = ACTIONS(1299), - [aux_sym_preproc_def_token1] = ACTIONS(1299), - [aux_sym_preproc_if_token1] = ACTIONS(1299), - [aux_sym_preproc_if_token2] = ACTIONS(1299), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1299), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1299), - [sym_preproc_directive] = ACTIONS(1299), - [anon_sym_LPAREN2] = ACTIONS(1301), - [anon_sym_BANG] = ACTIONS(1301), - [anon_sym_TILDE] = ACTIONS(1301), - [anon_sym_DASH] = ACTIONS(1299), - [anon_sym_PLUS] = ACTIONS(1299), - [anon_sym_STAR] = ACTIONS(1301), - [anon_sym_AMP] = ACTIONS(1301), - [anon_sym_SEMI] = ACTIONS(1301), - [anon_sym___extension__] = ACTIONS(1299), - [anon_sym_typedef] = ACTIONS(1299), - [anon_sym_extern] = ACTIONS(1299), - [anon_sym___attribute__] = ACTIONS(1299), - [anon_sym___scanf] = ACTIONS(1299), - [anon_sym___printf] = ACTIONS(1299), - [anon_sym___read_mostly] = ACTIONS(1299), - [anon_sym___must_hold] = ACTIONS(1299), - [anon_sym___ro_after_init] = ACTIONS(1299), - [anon_sym___init] = ACTIONS(1299), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1301), - [anon_sym___declspec] = ACTIONS(1299), - [anon_sym___cdecl] = ACTIONS(1299), - [anon_sym___clrcall] = ACTIONS(1299), - [anon_sym___stdcall] = ACTIONS(1299), - [anon_sym___fastcall] = ACTIONS(1299), - [anon_sym___thiscall] = ACTIONS(1299), - [anon_sym___vectorcall] = ACTIONS(1299), - [anon_sym_LBRACE] = ACTIONS(1301), - [anon_sym_signed] = ACTIONS(1299), - [anon_sym_unsigned] = ACTIONS(1299), - [anon_sym_long] = ACTIONS(1299), - [anon_sym_short] = ACTIONS(1299), - [anon_sym_static] = ACTIONS(1299), - [anon_sym_auto] = ACTIONS(1299), - [anon_sym_register] = ACTIONS(1299), - [anon_sym_inline] = ACTIONS(1299), - [anon_sym___inline] = ACTIONS(1299), - [anon_sym___inline__] = ACTIONS(1299), - [anon_sym___forceinline] = ACTIONS(1299), - [anon_sym_thread_local] = ACTIONS(1299), - [anon_sym___thread] = ACTIONS(1299), - [anon_sym_const] = ACTIONS(1299), - [anon_sym_constexpr] = ACTIONS(1299), - [anon_sym_volatile] = ACTIONS(1299), - [anon_sym_restrict] = ACTIONS(1299), - [anon_sym___restrict__] = ACTIONS(1299), - [anon_sym__Atomic] = ACTIONS(1299), - [anon_sym__Noreturn] = ACTIONS(1299), - [anon_sym_noreturn] = ACTIONS(1299), - [anon_sym_alignas] = ACTIONS(1299), - [anon_sym__Alignas] = ACTIONS(1299), - [sym_primitive_type] = ACTIONS(1299), - [anon_sym_enum] = ACTIONS(1299), - [anon_sym_struct] = ACTIONS(1299), - [anon_sym_union] = ACTIONS(1299), - [anon_sym_if] = ACTIONS(1299), - [anon_sym_switch] = ACTIONS(1299), - [anon_sym_case] = ACTIONS(1299), - [anon_sym_default] = ACTIONS(1299), - [anon_sym_while] = ACTIONS(1299), - [anon_sym_do] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(1299), - [anon_sym_return] = ACTIONS(1299), - [anon_sym_break] = ACTIONS(1299), - [anon_sym_continue] = ACTIONS(1299), - [anon_sym_goto] = ACTIONS(1299), - [anon_sym___try] = ACTIONS(1299), - [anon_sym___leave] = ACTIONS(1299), - [anon_sym_DASH_DASH] = ACTIONS(1301), - [anon_sym_PLUS_PLUS] = ACTIONS(1301), - [anon_sym_sizeof] = ACTIONS(1299), - [anon_sym___alignof__] = ACTIONS(1299), - [anon_sym___alignof] = ACTIONS(1299), - [anon_sym__alignof] = ACTIONS(1299), - [anon_sym_alignof] = ACTIONS(1299), - [anon_sym__Alignof] = ACTIONS(1299), - [anon_sym_offsetof] = ACTIONS(1299), - [anon_sym__Generic] = ACTIONS(1299), - [anon_sym_asm] = ACTIONS(1299), - [anon_sym___asm__] = ACTIONS(1299), - [sym_number_literal] = ACTIONS(1301), - [anon_sym_L_SQUOTE] = ACTIONS(1301), - [anon_sym_u_SQUOTE] = ACTIONS(1301), - [anon_sym_U_SQUOTE] = ACTIONS(1301), - [anon_sym_u8_SQUOTE] = ACTIONS(1301), - [anon_sym_SQUOTE] = ACTIONS(1301), - [anon_sym_L_DQUOTE] = ACTIONS(1301), - [anon_sym_u_DQUOTE] = ACTIONS(1301), - [anon_sym_U_DQUOTE] = ACTIONS(1301), - [anon_sym_u8_DQUOTE] = ACTIONS(1301), - [anon_sym_DQUOTE] = ACTIONS(1301), - [sym_true] = ACTIONS(1299), - [sym_false] = ACTIONS(1299), - [anon_sym_NULL] = ACTIONS(1299), - [anon_sym_nullptr] = ACTIONS(1299), + [357] = { + [sym_identifier] = ACTIONS(1407), + [aux_sym_preproc_include_token1] = ACTIONS(1407), + [aux_sym_preproc_def_token1] = ACTIONS(1407), + [aux_sym_preproc_if_token1] = ACTIONS(1407), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1407), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1407), + [sym_preproc_directive] = ACTIONS(1407), + [anon_sym_LPAREN2] = ACTIONS(1409), + [anon_sym_BANG] = ACTIONS(1409), + [anon_sym_TILDE] = ACTIONS(1409), + [anon_sym_DASH] = ACTIONS(1407), + [anon_sym_PLUS] = ACTIONS(1407), + [anon_sym_STAR] = ACTIONS(1409), + [anon_sym_AMP] = ACTIONS(1409), + [anon_sym_SEMI] = ACTIONS(1409), + [anon_sym___extension__] = ACTIONS(1407), + [anon_sym_typedef] = ACTIONS(1407), + [anon_sym_extern] = ACTIONS(1407), + [anon_sym___attribute__] = ACTIONS(1407), + [anon_sym___scanf] = ACTIONS(1407), + [anon_sym___printf] = ACTIONS(1407), + [anon_sym___read_mostly] = ACTIONS(1407), + [anon_sym___must_hold] = ACTIONS(1407), + [anon_sym___ro_after_init] = ACTIONS(1407), + [anon_sym___noreturn] = ACTIONS(1407), + [anon_sym___cold] = ACTIONS(1407), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1409), + [anon_sym___declspec] = ACTIONS(1407), + [anon_sym___init] = ACTIONS(1407), + [anon_sym___exit] = ACTIONS(1407), + [anon_sym___cdecl] = ACTIONS(1407), + [anon_sym___clrcall] = ACTIONS(1407), + [anon_sym___stdcall] = ACTIONS(1407), + [anon_sym___fastcall] = ACTIONS(1407), + [anon_sym___thiscall] = ACTIONS(1407), + [anon_sym___vectorcall] = ACTIONS(1407), + [anon_sym_LBRACE] = ACTIONS(1409), + [anon_sym_RBRACE] = ACTIONS(1409), + [anon_sym_signed] = ACTIONS(1407), + [anon_sym_unsigned] = ACTIONS(1407), + [anon_sym_long] = ACTIONS(1407), + [anon_sym_short] = ACTIONS(1407), + [anon_sym_static] = ACTIONS(1407), + [anon_sym_auto] = ACTIONS(1407), + [anon_sym_register] = ACTIONS(1407), + [anon_sym_inline] = ACTIONS(1407), + [anon_sym___inline] = ACTIONS(1407), + [anon_sym___inline__] = ACTIONS(1407), + [anon_sym___forceinline] = ACTIONS(1407), + [anon_sym_thread_local] = ACTIONS(1407), + [anon_sym___thread] = ACTIONS(1407), + [anon_sym_const] = ACTIONS(1407), + [anon_sym_constexpr] = ACTIONS(1407), + [anon_sym_volatile] = ACTIONS(1407), + [anon_sym_restrict] = ACTIONS(1407), + [anon_sym___restrict__] = ACTIONS(1407), + [anon_sym__Atomic] = ACTIONS(1407), + [anon_sym__Noreturn] = ACTIONS(1407), + [anon_sym_noreturn] = ACTIONS(1407), + [anon_sym_alignas] = ACTIONS(1407), + [anon_sym__Alignas] = ACTIONS(1407), + [sym_primitive_type] = ACTIONS(1407), + [anon_sym_enum] = ACTIONS(1407), + [anon_sym_struct] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1407), + [anon_sym_if] = ACTIONS(1407), + [anon_sym_switch] = ACTIONS(1407), + [anon_sym_case] = ACTIONS(1407), + [anon_sym_default] = ACTIONS(1407), + [anon_sym_while] = ACTIONS(1407), + [anon_sym_do] = ACTIONS(1407), + [anon_sym_for] = ACTIONS(1407), + [anon_sym_return] = ACTIONS(1407), + [anon_sym_break] = ACTIONS(1407), + [anon_sym_continue] = ACTIONS(1407), + [anon_sym_goto] = ACTIONS(1407), + [anon_sym___try] = ACTIONS(1407), + [anon_sym___leave] = ACTIONS(1407), + [anon_sym_DASH_DASH] = ACTIONS(1409), + [anon_sym_PLUS_PLUS] = ACTIONS(1409), + [anon_sym_sizeof] = ACTIONS(1407), + [anon_sym___alignof__] = ACTIONS(1407), + [anon_sym___alignof] = ACTIONS(1407), + [anon_sym__alignof] = ACTIONS(1407), + [anon_sym_alignof] = ACTIONS(1407), + [anon_sym__Alignof] = ACTIONS(1407), + [anon_sym_offsetof] = ACTIONS(1407), + [anon_sym__Generic] = ACTIONS(1407), + [anon_sym_asm] = ACTIONS(1407), + [anon_sym___asm__] = ACTIONS(1407), + [sym_number_literal] = ACTIONS(1409), + [anon_sym_L_SQUOTE] = ACTIONS(1409), + [anon_sym_u_SQUOTE] = ACTIONS(1409), + [anon_sym_U_SQUOTE] = ACTIONS(1409), + [anon_sym_u8_SQUOTE] = ACTIONS(1409), + [anon_sym_SQUOTE] = ACTIONS(1409), + [anon_sym_L_DQUOTE] = ACTIONS(1409), + [anon_sym_u_DQUOTE] = ACTIONS(1409), + [anon_sym_U_DQUOTE] = ACTIONS(1409), + [anon_sym_u8_DQUOTE] = ACTIONS(1409), + [anon_sym_DQUOTE] = ACTIONS(1409), + [sym_true] = ACTIONS(1407), + [sym_false] = ACTIONS(1407), + [anon_sym_NULL] = ACTIONS(1407), + [anon_sym_nullptr] = ACTIONS(1407), [sym_comment] = ACTIONS(3), }, - [298] = { - [sym_identifier] = ACTIONS(1315), - [aux_sym_preproc_include_token1] = ACTIONS(1315), - [aux_sym_preproc_def_token1] = ACTIONS(1315), - [aux_sym_preproc_if_token1] = ACTIONS(1315), - [aux_sym_preproc_if_token2] = ACTIONS(1315), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1315), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1315), - [sym_preproc_directive] = ACTIONS(1315), - [anon_sym_LPAREN2] = ACTIONS(1317), - [anon_sym_BANG] = ACTIONS(1317), - [anon_sym_TILDE] = ACTIONS(1317), - [anon_sym_DASH] = ACTIONS(1315), - [anon_sym_PLUS] = ACTIONS(1315), - [anon_sym_STAR] = ACTIONS(1317), - [anon_sym_AMP] = ACTIONS(1317), - [anon_sym_SEMI] = ACTIONS(1317), - [anon_sym___extension__] = ACTIONS(1315), - [anon_sym_typedef] = ACTIONS(1315), - [anon_sym_extern] = ACTIONS(1315), - [anon_sym___attribute__] = ACTIONS(1315), - [anon_sym___scanf] = ACTIONS(1315), - [anon_sym___printf] = ACTIONS(1315), - [anon_sym___read_mostly] = ACTIONS(1315), - [anon_sym___must_hold] = ACTIONS(1315), - [anon_sym___ro_after_init] = ACTIONS(1315), - [anon_sym___init] = ACTIONS(1315), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1317), - [anon_sym___declspec] = ACTIONS(1315), - [anon_sym___cdecl] = ACTIONS(1315), - [anon_sym___clrcall] = ACTIONS(1315), - [anon_sym___stdcall] = ACTIONS(1315), - [anon_sym___fastcall] = ACTIONS(1315), - [anon_sym___thiscall] = ACTIONS(1315), - [anon_sym___vectorcall] = ACTIONS(1315), - [anon_sym_LBRACE] = ACTIONS(1317), - [anon_sym_signed] = ACTIONS(1315), - [anon_sym_unsigned] = ACTIONS(1315), - [anon_sym_long] = ACTIONS(1315), - [anon_sym_short] = ACTIONS(1315), - [anon_sym_static] = ACTIONS(1315), - [anon_sym_auto] = ACTIONS(1315), - [anon_sym_register] = ACTIONS(1315), - [anon_sym_inline] = ACTIONS(1315), - [anon_sym___inline] = ACTIONS(1315), - [anon_sym___inline__] = ACTIONS(1315), - [anon_sym___forceinline] = ACTIONS(1315), - [anon_sym_thread_local] = ACTIONS(1315), - [anon_sym___thread] = ACTIONS(1315), - [anon_sym_const] = ACTIONS(1315), - [anon_sym_constexpr] = ACTIONS(1315), - [anon_sym_volatile] = ACTIONS(1315), - [anon_sym_restrict] = ACTIONS(1315), - [anon_sym___restrict__] = ACTIONS(1315), - [anon_sym__Atomic] = ACTIONS(1315), - [anon_sym__Noreturn] = ACTIONS(1315), - [anon_sym_noreturn] = ACTIONS(1315), - [anon_sym_alignas] = ACTIONS(1315), - [anon_sym__Alignas] = ACTIONS(1315), - [sym_primitive_type] = ACTIONS(1315), - [anon_sym_enum] = ACTIONS(1315), - [anon_sym_struct] = ACTIONS(1315), - [anon_sym_union] = ACTIONS(1315), - [anon_sym_if] = ACTIONS(1315), - [anon_sym_switch] = ACTIONS(1315), - [anon_sym_case] = ACTIONS(1315), - [anon_sym_default] = ACTIONS(1315), - [anon_sym_while] = ACTIONS(1315), - [anon_sym_do] = ACTIONS(1315), - [anon_sym_for] = ACTIONS(1315), - [anon_sym_return] = ACTIONS(1315), - [anon_sym_break] = ACTIONS(1315), - [anon_sym_continue] = ACTIONS(1315), - [anon_sym_goto] = ACTIONS(1315), - [anon_sym___try] = ACTIONS(1315), - [anon_sym___leave] = ACTIONS(1315), - [anon_sym_DASH_DASH] = ACTIONS(1317), - [anon_sym_PLUS_PLUS] = ACTIONS(1317), - [anon_sym_sizeof] = ACTIONS(1315), - [anon_sym___alignof__] = ACTIONS(1315), - [anon_sym___alignof] = ACTIONS(1315), - [anon_sym__alignof] = ACTIONS(1315), - [anon_sym_alignof] = ACTIONS(1315), - [anon_sym__Alignof] = ACTIONS(1315), - [anon_sym_offsetof] = ACTIONS(1315), - [anon_sym__Generic] = ACTIONS(1315), - [anon_sym_asm] = ACTIONS(1315), - [anon_sym___asm__] = ACTIONS(1315), - [sym_number_literal] = ACTIONS(1317), - [anon_sym_L_SQUOTE] = ACTIONS(1317), - [anon_sym_u_SQUOTE] = ACTIONS(1317), - [anon_sym_U_SQUOTE] = ACTIONS(1317), - [anon_sym_u8_SQUOTE] = ACTIONS(1317), - [anon_sym_SQUOTE] = ACTIONS(1317), - [anon_sym_L_DQUOTE] = ACTIONS(1317), - [anon_sym_u_DQUOTE] = ACTIONS(1317), - [anon_sym_U_DQUOTE] = ACTIONS(1317), - [anon_sym_u8_DQUOTE] = ACTIONS(1317), - [anon_sym_DQUOTE] = ACTIONS(1317), - [sym_true] = ACTIONS(1315), - [sym_false] = ACTIONS(1315), - [anon_sym_NULL] = ACTIONS(1315), - [anon_sym_nullptr] = ACTIONS(1315), + [358] = { + [sym_identifier] = ACTIONS(1297), + [aux_sym_preproc_include_token1] = ACTIONS(1297), + [aux_sym_preproc_def_token1] = ACTIONS(1297), + [aux_sym_preproc_if_token1] = ACTIONS(1297), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1297), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1297), + [sym_preproc_directive] = ACTIONS(1297), + [anon_sym_LPAREN2] = ACTIONS(1299), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_TILDE] = ACTIONS(1299), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_STAR] = ACTIONS(1299), + [anon_sym_AMP] = ACTIONS(1299), + [anon_sym_SEMI] = ACTIONS(1299), + [anon_sym___extension__] = ACTIONS(1297), + [anon_sym_typedef] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1297), + [anon_sym___attribute__] = ACTIONS(1297), + [anon_sym___scanf] = ACTIONS(1297), + [anon_sym___printf] = ACTIONS(1297), + [anon_sym___read_mostly] = ACTIONS(1297), + [anon_sym___must_hold] = ACTIONS(1297), + [anon_sym___ro_after_init] = ACTIONS(1297), + [anon_sym___noreturn] = ACTIONS(1297), + [anon_sym___cold] = ACTIONS(1297), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1299), + [anon_sym___declspec] = ACTIONS(1297), + [anon_sym___init] = ACTIONS(1297), + [anon_sym___exit] = ACTIONS(1297), + [anon_sym___cdecl] = ACTIONS(1297), + [anon_sym___clrcall] = ACTIONS(1297), + [anon_sym___stdcall] = ACTIONS(1297), + [anon_sym___fastcall] = ACTIONS(1297), + [anon_sym___thiscall] = ACTIONS(1297), + [anon_sym___vectorcall] = ACTIONS(1297), + [anon_sym_LBRACE] = ACTIONS(1299), + [anon_sym_RBRACE] = ACTIONS(1299), + [anon_sym_signed] = ACTIONS(1297), + [anon_sym_unsigned] = ACTIONS(1297), + [anon_sym_long] = ACTIONS(1297), + [anon_sym_short] = ACTIONS(1297), + [anon_sym_static] = ACTIONS(1297), + [anon_sym_auto] = ACTIONS(1297), + [anon_sym_register] = ACTIONS(1297), + [anon_sym_inline] = ACTIONS(1297), + [anon_sym___inline] = ACTIONS(1297), + [anon_sym___inline__] = ACTIONS(1297), + [anon_sym___forceinline] = ACTIONS(1297), + [anon_sym_thread_local] = ACTIONS(1297), + [anon_sym___thread] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1297), + [anon_sym_constexpr] = ACTIONS(1297), + [anon_sym_volatile] = ACTIONS(1297), + [anon_sym_restrict] = ACTIONS(1297), + [anon_sym___restrict__] = ACTIONS(1297), + [anon_sym__Atomic] = ACTIONS(1297), + [anon_sym__Noreturn] = ACTIONS(1297), + [anon_sym_noreturn] = ACTIONS(1297), + [anon_sym_alignas] = ACTIONS(1297), + [anon_sym__Alignas] = ACTIONS(1297), + [sym_primitive_type] = ACTIONS(1297), + [anon_sym_enum] = ACTIONS(1297), + [anon_sym_struct] = ACTIONS(1297), + [anon_sym_union] = ACTIONS(1297), + [anon_sym_if] = ACTIONS(1297), + [anon_sym_switch] = ACTIONS(1297), + [anon_sym_case] = ACTIONS(1297), + [anon_sym_default] = ACTIONS(1297), + [anon_sym_while] = ACTIONS(1297), + [anon_sym_do] = ACTIONS(1297), + [anon_sym_for] = ACTIONS(1297), + [anon_sym_return] = ACTIONS(1297), + [anon_sym_break] = ACTIONS(1297), + [anon_sym_continue] = ACTIONS(1297), + [anon_sym_goto] = ACTIONS(1297), + [anon_sym___try] = ACTIONS(1297), + [anon_sym___leave] = ACTIONS(1297), + [anon_sym_DASH_DASH] = ACTIONS(1299), + [anon_sym_PLUS_PLUS] = ACTIONS(1299), + [anon_sym_sizeof] = ACTIONS(1297), + [anon_sym___alignof__] = ACTIONS(1297), + [anon_sym___alignof] = ACTIONS(1297), + [anon_sym__alignof] = ACTIONS(1297), + [anon_sym_alignof] = ACTIONS(1297), + [anon_sym__Alignof] = ACTIONS(1297), + [anon_sym_offsetof] = ACTIONS(1297), + [anon_sym__Generic] = ACTIONS(1297), + [anon_sym_asm] = ACTIONS(1297), + [anon_sym___asm__] = ACTIONS(1297), + [sym_number_literal] = ACTIONS(1299), + [anon_sym_L_SQUOTE] = ACTIONS(1299), + [anon_sym_u_SQUOTE] = ACTIONS(1299), + [anon_sym_U_SQUOTE] = ACTIONS(1299), + [anon_sym_u8_SQUOTE] = ACTIONS(1299), + [anon_sym_SQUOTE] = ACTIONS(1299), + [anon_sym_L_DQUOTE] = ACTIONS(1299), + [anon_sym_u_DQUOTE] = ACTIONS(1299), + [anon_sym_U_DQUOTE] = ACTIONS(1299), + [anon_sym_u8_DQUOTE] = ACTIONS(1299), + [anon_sym_DQUOTE] = ACTIONS(1299), + [sym_true] = ACTIONS(1297), + [sym_false] = ACTIONS(1297), + [anon_sym_NULL] = ACTIONS(1297), + [anon_sym_nullptr] = ACTIONS(1297), [sym_comment] = ACTIONS(3), }, - [299] = { - [sym_identifier] = ACTIONS(1311), - [aux_sym_preproc_include_token1] = ACTIONS(1311), - [aux_sym_preproc_def_token1] = ACTIONS(1311), - [aux_sym_preproc_if_token1] = ACTIONS(1311), - [aux_sym_preproc_if_token2] = ACTIONS(1311), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1311), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1311), - [sym_preproc_directive] = ACTIONS(1311), - [anon_sym_LPAREN2] = ACTIONS(1313), - [anon_sym_BANG] = ACTIONS(1313), - [anon_sym_TILDE] = ACTIONS(1313), - [anon_sym_DASH] = ACTIONS(1311), - [anon_sym_PLUS] = ACTIONS(1311), - [anon_sym_STAR] = ACTIONS(1313), - [anon_sym_AMP] = ACTIONS(1313), - [anon_sym_SEMI] = ACTIONS(1313), - [anon_sym___extension__] = ACTIONS(1311), - [anon_sym_typedef] = ACTIONS(1311), - [anon_sym_extern] = ACTIONS(1311), - [anon_sym___attribute__] = ACTIONS(1311), - [anon_sym___scanf] = ACTIONS(1311), - [anon_sym___printf] = ACTIONS(1311), - [anon_sym___read_mostly] = ACTIONS(1311), - [anon_sym___must_hold] = ACTIONS(1311), - [anon_sym___ro_after_init] = ACTIONS(1311), - [anon_sym___init] = ACTIONS(1311), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1313), - [anon_sym___declspec] = ACTIONS(1311), - [anon_sym___cdecl] = ACTIONS(1311), - [anon_sym___clrcall] = ACTIONS(1311), - [anon_sym___stdcall] = ACTIONS(1311), - [anon_sym___fastcall] = ACTIONS(1311), - [anon_sym___thiscall] = ACTIONS(1311), - [anon_sym___vectorcall] = ACTIONS(1311), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_signed] = ACTIONS(1311), - [anon_sym_unsigned] = ACTIONS(1311), - [anon_sym_long] = ACTIONS(1311), - [anon_sym_short] = ACTIONS(1311), - [anon_sym_static] = ACTIONS(1311), - [anon_sym_auto] = ACTIONS(1311), - [anon_sym_register] = ACTIONS(1311), - [anon_sym_inline] = ACTIONS(1311), - [anon_sym___inline] = ACTIONS(1311), - [anon_sym___inline__] = ACTIONS(1311), - [anon_sym___forceinline] = ACTIONS(1311), - [anon_sym_thread_local] = ACTIONS(1311), - [anon_sym___thread] = ACTIONS(1311), - [anon_sym_const] = ACTIONS(1311), - [anon_sym_constexpr] = ACTIONS(1311), - [anon_sym_volatile] = ACTIONS(1311), - [anon_sym_restrict] = ACTIONS(1311), - [anon_sym___restrict__] = ACTIONS(1311), - [anon_sym__Atomic] = ACTIONS(1311), - [anon_sym__Noreturn] = ACTIONS(1311), - [anon_sym_noreturn] = ACTIONS(1311), - [anon_sym_alignas] = ACTIONS(1311), - [anon_sym__Alignas] = ACTIONS(1311), - [sym_primitive_type] = ACTIONS(1311), - [anon_sym_enum] = ACTIONS(1311), - [anon_sym_struct] = ACTIONS(1311), - [anon_sym_union] = ACTIONS(1311), - [anon_sym_if] = ACTIONS(1311), - [anon_sym_switch] = ACTIONS(1311), - [anon_sym_case] = ACTIONS(1311), - [anon_sym_default] = ACTIONS(1311), - [anon_sym_while] = ACTIONS(1311), - [anon_sym_do] = ACTIONS(1311), - [anon_sym_for] = ACTIONS(1311), - [anon_sym_return] = ACTIONS(1311), - [anon_sym_break] = ACTIONS(1311), - [anon_sym_continue] = ACTIONS(1311), - [anon_sym_goto] = ACTIONS(1311), - [anon_sym___try] = ACTIONS(1311), - [anon_sym___leave] = ACTIONS(1311), - [anon_sym_DASH_DASH] = ACTIONS(1313), - [anon_sym_PLUS_PLUS] = ACTIONS(1313), - [anon_sym_sizeof] = ACTIONS(1311), - [anon_sym___alignof__] = ACTIONS(1311), - [anon_sym___alignof] = ACTIONS(1311), - [anon_sym__alignof] = ACTIONS(1311), - [anon_sym_alignof] = ACTIONS(1311), - [anon_sym__Alignof] = ACTIONS(1311), - [anon_sym_offsetof] = ACTIONS(1311), - [anon_sym__Generic] = ACTIONS(1311), - [anon_sym_asm] = ACTIONS(1311), - [anon_sym___asm__] = ACTIONS(1311), - [sym_number_literal] = ACTIONS(1313), - [anon_sym_L_SQUOTE] = ACTIONS(1313), - [anon_sym_u_SQUOTE] = ACTIONS(1313), - [anon_sym_U_SQUOTE] = ACTIONS(1313), - [anon_sym_u8_SQUOTE] = ACTIONS(1313), - [anon_sym_SQUOTE] = ACTIONS(1313), - [anon_sym_L_DQUOTE] = ACTIONS(1313), - [anon_sym_u_DQUOTE] = ACTIONS(1313), - [anon_sym_U_DQUOTE] = ACTIONS(1313), - [anon_sym_u8_DQUOTE] = ACTIONS(1313), - [anon_sym_DQUOTE] = ACTIONS(1313), - [sym_true] = ACTIONS(1311), - [sym_false] = ACTIONS(1311), - [anon_sym_NULL] = ACTIONS(1311), - [anon_sym_nullptr] = ACTIONS(1311), + [359] = { + [sym_identifier] = ACTIONS(1321), + [aux_sym_preproc_include_token1] = ACTIONS(1321), + [aux_sym_preproc_def_token1] = ACTIONS(1321), + [aux_sym_preproc_if_token1] = ACTIONS(1321), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1321), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1321), + [sym_preproc_directive] = ACTIONS(1321), + [anon_sym_LPAREN2] = ACTIONS(1323), + [anon_sym_BANG] = ACTIONS(1323), + [anon_sym_TILDE] = ACTIONS(1323), + [anon_sym_DASH] = ACTIONS(1321), + [anon_sym_PLUS] = ACTIONS(1321), + [anon_sym_STAR] = ACTIONS(1323), + [anon_sym_AMP] = ACTIONS(1323), + [anon_sym_SEMI] = ACTIONS(1323), + [anon_sym___extension__] = ACTIONS(1321), + [anon_sym_typedef] = ACTIONS(1321), + [anon_sym_extern] = ACTIONS(1321), + [anon_sym___attribute__] = ACTIONS(1321), + [anon_sym___scanf] = ACTIONS(1321), + [anon_sym___printf] = ACTIONS(1321), + [anon_sym___read_mostly] = ACTIONS(1321), + [anon_sym___must_hold] = ACTIONS(1321), + [anon_sym___ro_after_init] = ACTIONS(1321), + [anon_sym___noreturn] = ACTIONS(1321), + [anon_sym___cold] = ACTIONS(1321), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1323), + [anon_sym___declspec] = ACTIONS(1321), + [anon_sym___init] = ACTIONS(1321), + [anon_sym___exit] = ACTIONS(1321), + [anon_sym___cdecl] = ACTIONS(1321), + [anon_sym___clrcall] = ACTIONS(1321), + [anon_sym___stdcall] = ACTIONS(1321), + [anon_sym___fastcall] = ACTIONS(1321), + [anon_sym___thiscall] = ACTIONS(1321), + [anon_sym___vectorcall] = ACTIONS(1321), + [anon_sym_LBRACE] = ACTIONS(1323), + [anon_sym_RBRACE] = ACTIONS(1323), + [anon_sym_signed] = ACTIONS(1321), + [anon_sym_unsigned] = ACTIONS(1321), + [anon_sym_long] = ACTIONS(1321), + [anon_sym_short] = ACTIONS(1321), + [anon_sym_static] = ACTIONS(1321), + [anon_sym_auto] = ACTIONS(1321), + [anon_sym_register] = ACTIONS(1321), + [anon_sym_inline] = ACTIONS(1321), + [anon_sym___inline] = ACTIONS(1321), + [anon_sym___inline__] = ACTIONS(1321), + [anon_sym___forceinline] = ACTIONS(1321), + [anon_sym_thread_local] = ACTIONS(1321), + [anon_sym___thread] = ACTIONS(1321), + [anon_sym_const] = ACTIONS(1321), + [anon_sym_constexpr] = ACTIONS(1321), + [anon_sym_volatile] = ACTIONS(1321), + [anon_sym_restrict] = ACTIONS(1321), + [anon_sym___restrict__] = ACTIONS(1321), + [anon_sym__Atomic] = ACTIONS(1321), + [anon_sym__Noreturn] = ACTIONS(1321), + [anon_sym_noreturn] = ACTIONS(1321), + [anon_sym_alignas] = ACTIONS(1321), + [anon_sym__Alignas] = ACTIONS(1321), + [sym_primitive_type] = ACTIONS(1321), + [anon_sym_enum] = ACTIONS(1321), + [anon_sym_struct] = ACTIONS(1321), + [anon_sym_union] = ACTIONS(1321), + [anon_sym_if] = ACTIONS(1321), + [anon_sym_switch] = ACTIONS(1321), + [anon_sym_case] = ACTIONS(1321), + [anon_sym_default] = ACTIONS(1321), + [anon_sym_while] = ACTIONS(1321), + [anon_sym_do] = ACTIONS(1321), + [anon_sym_for] = ACTIONS(1321), + [anon_sym_return] = ACTIONS(1321), + [anon_sym_break] = ACTIONS(1321), + [anon_sym_continue] = ACTIONS(1321), + [anon_sym_goto] = ACTIONS(1321), + [anon_sym___try] = ACTIONS(1321), + [anon_sym___leave] = ACTIONS(1321), + [anon_sym_DASH_DASH] = ACTIONS(1323), + [anon_sym_PLUS_PLUS] = ACTIONS(1323), + [anon_sym_sizeof] = ACTIONS(1321), + [anon_sym___alignof__] = ACTIONS(1321), + [anon_sym___alignof] = ACTIONS(1321), + [anon_sym__alignof] = ACTIONS(1321), + [anon_sym_alignof] = ACTIONS(1321), + [anon_sym__Alignof] = ACTIONS(1321), + [anon_sym_offsetof] = ACTIONS(1321), + [anon_sym__Generic] = ACTIONS(1321), + [anon_sym_asm] = ACTIONS(1321), + [anon_sym___asm__] = ACTIONS(1321), + [sym_number_literal] = ACTIONS(1323), + [anon_sym_L_SQUOTE] = ACTIONS(1323), + [anon_sym_u_SQUOTE] = ACTIONS(1323), + [anon_sym_U_SQUOTE] = ACTIONS(1323), + [anon_sym_u8_SQUOTE] = ACTIONS(1323), + [anon_sym_SQUOTE] = ACTIONS(1323), + [anon_sym_L_DQUOTE] = ACTIONS(1323), + [anon_sym_u_DQUOTE] = ACTIONS(1323), + [anon_sym_U_DQUOTE] = ACTIONS(1323), + [anon_sym_u8_DQUOTE] = ACTIONS(1323), + [anon_sym_DQUOTE] = ACTIONS(1323), + [sym_true] = ACTIONS(1321), + [sym_false] = ACTIONS(1321), + [anon_sym_NULL] = ACTIONS(1321), + [anon_sym_nullptr] = ACTIONS(1321), [sym_comment] = ACTIONS(3), }, - [300] = { - [sym_identifier] = ACTIONS(1359), - [aux_sym_preproc_include_token1] = ACTIONS(1359), - [aux_sym_preproc_def_token1] = ACTIONS(1359), - [aux_sym_preproc_if_token1] = ACTIONS(1359), - [aux_sym_preproc_if_token2] = ACTIONS(1359), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1359), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1359), - [sym_preproc_directive] = ACTIONS(1359), - [anon_sym_LPAREN2] = ACTIONS(1361), - [anon_sym_BANG] = ACTIONS(1361), - [anon_sym_TILDE] = ACTIONS(1361), - [anon_sym_DASH] = ACTIONS(1359), - [anon_sym_PLUS] = ACTIONS(1359), - [anon_sym_STAR] = ACTIONS(1361), - [anon_sym_AMP] = ACTIONS(1361), - [anon_sym_SEMI] = ACTIONS(1361), - [anon_sym___extension__] = ACTIONS(1359), - [anon_sym_typedef] = ACTIONS(1359), - [anon_sym_extern] = ACTIONS(1359), - [anon_sym___attribute__] = ACTIONS(1359), - [anon_sym___scanf] = ACTIONS(1359), - [anon_sym___printf] = ACTIONS(1359), - [anon_sym___read_mostly] = ACTIONS(1359), - [anon_sym___must_hold] = ACTIONS(1359), - [anon_sym___ro_after_init] = ACTIONS(1359), - [anon_sym___init] = ACTIONS(1359), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1361), - [anon_sym___declspec] = ACTIONS(1359), - [anon_sym___cdecl] = ACTIONS(1359), - [anon_sym___clrcall] = ACTIONS(1359), - [anon_sym___stdcall] = ACTIONS(1359), - [anon_sym___fastcall] = ACTIONS(1359), - [anon_sym___thiscall] = ACTIONS(1359), - [anon_sym___vectorcall] = ACTIONS(1359), - [anon_sym_LBRACE] = ACTIONS(1361), - [anon_sym_signed] = ACTIONS(1359), - [anon_sym_unsigned] = ACTIONS(1359), - [anon_sym_long] = ACTIONS(1359), - [anon_sym_short] = ACTIONS(1359), - [anon_sym_static] = ACTIONS(1359), - [anon_sym_auto] = ACTIONS(1359), - [anon_sym_register] = ACTIONS(1359), - [anon_sym_inline] = ACTIONS(1359), - [anon_sym___inline] = ACTIONS(1359), - [anon_sym___inline__] = ACTIONS(1359), - [anon_sym___forceinline] = ACTIONS(1359), - [anon_sym_thread_local] = ACTIONS(1359), - [anon_sym___thread] = ACTIONS(1359), - [anon_sym_const] = ACTIONS(1359), - [anon_sym_constexpr] = ACTIONS(1359), - [anon_sym_volatile] = ACTIONS(1359), - [anon_sym_restrict] = ACTIONS(1359), - [anon_sym___restrict__] = ACTIONS(1359), - [anon_sym__Atomic] = ACTIONS(1359), - [anon_sym__Noreturn] = ACTIONS(1359), - [anon_sym_noreturn] = ACTIONS(1359), - [anon_sym_alignas] = ACTIONS(1359), - [anon_sym__Alignas] = ACTIONS(1359), - [sym_primitive_type] = ACTIONS(1359), - [anon_sym_enum] = ACTIONS(1359), - [anon_sym_struct] = ACTIONS(1359), - [anon_sym_union] = ACTIONS(1359), - [anon_sym_if] = ACTIONS(1359), - [anon_sym_switch] = ACTIONS(1359), - [anon_sym_case] = ACTIONS(1359), - [anon_sym_default] = ACTIONS(1359), - [anon_sym_while] = ACTIONS(1359), - [anon_sym_do] = ACTIONS(1359), - [anon_sym_for] = ACTIONS(1359), - [anon_sym_return] = ACTIONS(1359), - [anon_sym_break] = ACTIONS(1359), - [anon_sym_continue] = ACTIONS(1359), - [anon_sym_goto] = ACTIONS(1359), - [anon_sym___try] = ACTIONS(1359), - [anon_sym___leave] = ACTIONS(1359), - [anon_sym_DASH_DASH] = ACTIONS(1361), - [anon_sym_PLUS_PLUS] = ACTIONS(1361), - [anon_sym_sizeof] = ACTIONS(1359), - [anon_sym___alignof__] = ACTIONS(1359), - [anon_sym___alignof] = ACTIONS(1359), - [anon_sym__alignof] = ACTIONS(1359), - [anon_sym_alignof] = ACTIONS(1359), - [anon_sym__Alignof] = ACTIONS(1359), - [anon_sym_offsetof] = ACTIONS(1359), - [anon_sym__Generic] = ACTIONS(1359), - [anon_sym_asm] = ACTIONS(1359), - [anon_sym___asm__] = ACTIONS(1359), - [sym_number_literal] = ACTIONS(1361), - [anon_sym_L_SQUOTE] = ACTIONS(1361), - [anon_sym_u_SQUOTE] = ACTIONS(1361), - [anon_sym_U_SQUOTE] = ACTIONS(1361), - [anon_sym_u8_SQUOTE] = ACTIONS(1361), - [anon_sym_SQUOTE] = ACTIONS(1361), - [anon_sym_L_DQUOTE] = ACTIONS(1361), - [anon_sym_u_DQUOTE] = ACTIONS(1361), - [anon_sym_U_DQUOTE] = ACTIONS(1361), - [anon_sym_u8_DQUOTE] = ACTIONS(1361), - [anon_sym_DQUOTE] = ACTIONS(1361), - [sym_true] = ACTIONS(1359), - [sym_false] = ACTIONS(1359), - [anon_sym_NULL] = ACTIONS(1359), - [anon_sym_nullptr] = ACTIONS(1359), + [360] = { + [sym_identifier] = ACTIONS(1393), + [aux_sym_preproc_include_token1] = ACTIONS(1393), + [aux_sym_preproc_def_token1] = ACTIONS(1393), + [aux_sym_preproc_if_token1] = ACTIONS(1393), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1393), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1393), + [sym_preproc_directive] = ACTIONS(1393), + [anon_sym_LPAREN2] = ACTIONS(1395), + [anon_sym_BANG] = ACTIONS(1395), + [anon_sym_TILDE] = ACTIONS(1395), + [anon_sym_DASH] = ACTIONS(1393), + [anon_sym_PLUS] = ACTIONS(1393), + [anon_sym_STAR] = ACTIONS(1395), + [anon_sym_AMP] = ACTIONS(1395), + [anon_sym_SEMI] = ACTIONS(1395), + [anon_sym___extension__] = ACTIONS(1393), + [anon_sym_typedef] = ACTIONS(1393), + [anon_sym_extern] = ACTIONS(1393), + [anon_sym___attribute__] = ACTIONS(1393), + [anon_sym___scanf] = ACTIONS(1393), + [anon_sym___printf] = ACTIONS(1393), + [anon_sym___read_mostly] = ACTIONS(1393), + [anon_sym___must_hold] = ACTIONS(1393), + [anon_sym___ro_after_init] = ACTIONS(1393), + [anon_sym___noreturn] = ACTIONS(1393), + [anon_sym___cold] = ACTIONS(1393), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1395), + [anon_sym___declspec] = ACTIONS(1393), + [anon_sym___init] = ACTIONS(1393), + [anon_sym___exit] = ACTIONS(1393), + [anon_sym___cdecl] = ACTIONS(1393), + [anon_sym___clrcall] = ACTIONS(1393), + [anon_sym___stdcall] = ACTIONS(1393), + [anon_sym___fastcall] = ACTIONS(1393), + [anon_sym___thiscall] = ACTIONS(1393), + [anon_sym___vectorcall] = ACTIONS(1393), + [anon_sym_LBRACE] = ACTIONS(1395), + [anon_sym_RBRACE] = ACTIONS(1395), + [anon_sym_signed] = ACTIONS(1393), + [anon_sym_unsigned] = ACTIONS(1393), + [anon_sym_long] = ACTIONS(1393), + [anon_sym_short] = ACTIONS(1393), + [anon_sym_static] = ACTIONS(1393), + [anon_sym_auto] = ACTIONS(1393), + [anon_sym_register] = ACTIONS(1393), + [anon_sym_inline] = ACTIONS(1393), + [anon_sym___inline] = ACTIONS(1393), + [anon_sym___inline__] = ACTIONS(1393), + [anon_sym___forceinline] = ACTIONS(1393), + [anon_sym_thread_local] = ACTIONS(1393), + [anon_sym___thread] = ACTIONS(1393), + [anon_sym_const] = ACTIONS(1393), + [anon_sym_constexpr] = ACTIONS(1393), + [anon_sym_volatile] = ACTIONS(1393), + [anon_sym_restrict] = ACTIONS(1393), + [anon_sym___restrict__] = ACTIONS(1393), + [anon_sym__Atomic] = ACTIONS(1393), + [anon_sym__Noreturn] = ACTIONS(1393), + [anon_sym_noreturn] = ACTIONS(1393), + [anon_sym_alignas] = ACTIONS(1393), + [anon_sym__Alignas] = ACTIONS(1393), + [sym_primitive_type] = ACTIONS(1393), + [anon_sym_enum] = ACTIONS(1393), + [anon_sym_struct] = ACTIONS(1393), + [anon_sym_union] = ACTIONS(1393), + [anon_sym_if] = ACTIONS(1393), + [anon_sym_switch] = ACTIONS(1393), + [anon_sym_case] = ACTIONS(1393), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_while] = ACTIONS(1393), + [anon_sym_do] = ACTIONS(1393), + [anon_sym_for] = ACTIONS(1393), + [anon_sym_return] = ACTIONS(1393), + [anon_sym_break] = ACTIONS(1393), + [anon_sym_continue] = ACTIONS(1393), + [anon_sym_goto] = ACTIONS(1393), + [anon_sym___try] = ACTIONS(1393), + [anon_sym___leave] = ACTIONS(1393), + [anon_sym_DASH_DASH] = ACTIONS(1395), + [anon_sym_PLUS_PLUS] = ACTIONS(1395), + [anon_sym_sizeof] = ACTIONS(1393), + [anon_sym___alignof__] = ACTIONS(1393), + [anon_sym___alignof] = ACTIONS(1393), + [anon_sym__alignof] = ACTIONS(1393), + [anon_sym_alignof] = ACTIONS(1393), + [anon_sym__Alignof] = ACTIONS(1393), + [anon_sym_offsetof] = ACTIONS(1393), + [anon_sym__Generic] = ACTIONS(1393), + [anon_sym_asm] = ACTIONS(1393), + [anon_sym___asm__] = ACTIONS(1393), + [sym_number_literal] = ACTIONS(1395), + [anon_sym_L_SQUOTE] = ACTIONS(1395), + [anon_sym_u_SQUOTE] = ACTIONS(1395), + [anon_sym_U_SQUOTE] = ACTIONS(1395), + [anon_sym_u8_SQUOTE] = ACTIONS(1395), + [anon_sym_SQUOTE] = ACTIONS(1395), + [anon_sym_L_DQUOTE] = ACTIONS(1395), + [anon_sym_u_DQUOTE] = ACTIONS(1395), + [anon_sym_U_DQUOTE] = ACTIONS(1395), + [anon_sym_u8_DQUOTE] = ACTIONS(1395), + [anon_sym_DQUOTE] = ACTIONS(1395), + [sym_true] = ACTIONS(1393), + [sym_false] = ACTIONS(1393), + [anon_sym_NULL] = ACTIONS(1393), + [anon_sym_nullptr] = ACTIONS(1393), [sym_comment] = ACTIONS(3), }, - [301] = { - [sym_identifier] = ACTIONS(1319), - [aux_sym_preproc_include_token1] = ACTIONS(1319), - [aux_sym_preproc_def_token1] = ACTIONS(1319), - [aux_sym_preproc_if_token1] = ACTIONS(1319), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1319), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1319), - [sym_preproc_directive] = ACTIONS(1319), - [anon_sym_LPAREN2] = ACTIONS(1321), - [anon_sym_BANG] = ACTIONS(1321), - [anon_sym_TILDE] = ACTIONS(1321), - [anon_sym_DASH] = ACTIONS(1319), - [anon_sym_PLUS] = ACTIONS(1319), - [anon_sym_STAR] = ACTIONS(1321), - [anon_sym_AMP] = ACTIONS(1321), - [anon_sym_SEMI] = ACTIONS(1321), - [anon_sym___extension__] = ACTIONS(1319), - [anon_sym_typedef] = ACTIONS(1319), - [anon_sym_extern] = ACTIONS(1319), - [anon_sym___attribute__] = ACTIONS(1319), - [anon_sym___scanf] = ACTIONS(1319), - [anon_sym___printf] = ACTIONS(1319), - [anon_sym___read_mostly] = ACTIONS(1319), - [anon_sym___must_hold] = ACTIONS(1319), - [anon_sym___ro_after_init] = ACTIONS(1319), - [anon_sym___init] = ACTIONS(1319), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1321), - [anon_sym___declspec] = ACTIONS(1319), - [anon_sym___cdecl] = ACTIONS(1319), - [anon_sym___clrcall] = ACTIONS(1319), - [anon_sym___stdcall] = ACTIONS(1319), - [anon_sym___fastcall] = ACTIONS(1319), - [anon_sym___thiscall] = ACTIONS(1319), - [anon_sym___vectorcall] = ACTIONS(1319), - [anon_sym_LBRACE] = ACTIONS(1321), - [anon_sym_RBRACE] = ACTIONS(1321), - [anon_sym_signed] = ACTIONS(1319), - [anon_sym_unsigned] = ACTIONS(1319), - [anon_sym_long] = ACTIONS(1319), - [anon_sym_short] = ACTIONS(1319), - [anon_sym_static] = ACTIONS(1319), - [anon_sym_auto] = ACTIONS(1319), - [anon_sym_register] = ACTIONS(1319), - [anon_sym_inline] = ACTIONS(1319), - [anon_sym___inline] = ACTIONS(1319), - [anon_sym___inline__] = ACTIONS(1319), - [anon_sym___forceinline] = ACTIONS(1319), - [anon_sym_thread_local] = ACTIONS(1319), - [anon_sym___thread] = ACTIONS(1319), - [anon_sym_const] = ACTIONS(1319), - [anon_sym_constexpr] = ACTIONS(1319), - [anon_sym_volatile] = ACTIONS(1319), - [anon_sym_restrict] = ACTIONS(1319), - [anon_sym___restrict__] = ACTIONS(1319), - [anon_sym__Atomic] = ACTIONS(1319), - [anon_sym__Noreturn] = ACTIONS(1319), - [anon_sym_noreturn] = ACTIONS(1319), - [anon_sym_alignas] = ACTIONS(1319), - [anon_sym__Alignas] = ACTIONS(1319), - [sym_primitive_type] = ACTIONS(1319), - [anon_sym_enum] = ACTIONS(1319), - [anon_sym_struct] = ACTIONS(1319), - [anon_sym_union] = ACTIONS(1319), - [anon_sym_if] = ACTIONS(1319), - [anon_sym_switch] = ACTIONS(1319), - [anon_sym_case] = ACTIONS(1319), - [anon_sym_default] = ACTIONS(1319), - [anon_sym_while] = ACTIONS(1319), - [anon_sym_do] = ACTIONS(1319), - [anon_sym_for] = ACTIONS(1319), - [anon_sym_return] = ACTIONS(1319), - [anon_sym_break] = ACTIONS(1319), - [anon_sym_continue] = ACTIONS(1319), - [anon_sym_goto] = ACTIONS(1319), - [anon_sym___try] = ACTIONS(1319), - [anon_sym___leave] = ACTIONS(1319), - [anon_sym_DASH_DASH] = ACTIONS(1321), - [anon_sym_PLUS_PLUS] = ACTIONS(1321), - [anon_sym_sizeof] = ACTIONS(1319), - [anon_sym___alignof__] = ACTIONS(1319), - [anon_sym___alignof] = ACTIONS(1319), - [anon_sym__alignof] = ACTIONS(1319), - [anon_sym_alignof] = ACTIONS(1319), - [anon_sym__Alignof] = ACTIONS(1319), - [anon_sym_offsetof] = ACTIONS(1319), - [anon_sym__Generic] = ACTIONS(1319), - [anon_sym_asm] = ACTIONS(1319), - [anon_sym___asm__] = ACTIONS(1319), - [sym_number_literal] = ACTIONS(1321), - [anon_sym_L_SQUOTE] = ACTIONS(1321), - [anon_sym_u_SQUOTE] = ACTIONS(1321), - [anon_sym_U_SQUOTE] = ACTIONS(1321), - [anon_sym_u8_SQUOTE] = ACTIONS(1321), - [anon_sym_SQUOTE] = ACTIONS(1321), - [anon_sym_L_DQUOTE] = ACTIONS(1321), - [anon_sym_u_DQUOTE] = ACTIONS(1321), - [anon_sym_U_DQUOTE] = ACTIONS(1321), - [anon_sym_u8_DQUOTE] = ACTIONS(1321), - [anon_sym_DQUOTE] = ACTIONS(1321), - [sym_true] = ACTIONS(1319), - [sym_false] = ACTIONS(1319), - [anon_sym_NULL] = ACTIONS(1319), - [anon_sym_nullptr] = ACTIONS(1319), + [361] = { + [sym_identifier] = ACTIONS(1329), + [aux_sym_preproc_include_token1] = ACTIONS(1329), + [aux_sym_preproc_def_token1] = ACTIONS(1329), + [aux_sym_preproc_if_token1] = ACTIONS(1329), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1329), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1329), + [sym_preproc_directive] = ACTIONS(1329), + [anon_sym_LPAREN2] = ACTIONS(1331), + [anon_sym_BANG] = ACTIONS(1331), + [anon_sym_TILDE] = ACTIONS(1331), + [anon_sym_DASH] = ACTIONS(1329), + [anon_sym_PLUS] = ACTIONS(1329), + [anon_sym_STAR] = ACTIONS(1331), + [anon_sym_AMP] = ACTIONS(1331), + [anon_sym_SEMI] = ACTIONS(1331), + [anon_sym___extension__] = ACTIONS(1329), + [anon_sym_typedef] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1329), + [anon_sym___attribute__] = ACTIONS(1329), + [anon_sym___scanf] = ACTIONS(1329), + [anon_sym___printf] = ACTIONS(1329), + [anon_sym___read_mostly] = ACTIONS(1329), + [anon_sym___must_hold] = ACTIONS(1329), + [anon_sym___ro_after_init] = ACTIONS(1329), + [anon_sym___noreturn] = ACTIONS(1329), + [anon_sym___cold] = ACTIONS(1329), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1331), + [anon_sym___declspec] = ACTIONS(1329), + [anon_sym___init] = ACTIONS(1329), + [anon_sym___exit] = ACTIONS(1329), + [anon_sym___cdecl] = ACTIONS(1329), + [anon_sym___clrcall] = ACTIONS(1329), + [anon_sym___stdcall] = ACTIONS(1329), + [anon_sym___fastcall] = ACTIONS(1329), + [anon_sym___thiscall] = ACTIONS(1329), + [anon_sym___vectorcall] = ACTIONS(1329), + [anon_sym_LBRACE] = ACTIONS(1331), + [anon_sym_RBRACE] = ACTIONS(1331), + [anon_sym_signed] = ACTIONS(1329), + [anon_sym_unsigned] = ACTIONS(1329), + [anon_sym_long] = ACTIONS(1329), + [anon_sym_short] = ACTIONS(1329), + [anon_sym_static] = ACTIONS(1329), + [anon_sym_auto] = ACTIONS(1329), + [anon_sym_register] = ACTIONS(1329), + [anon_sym_inline] = ACTIONS(1329), + [anon_sym___inline] = ACTIONS(1329), + [anon_sym___inline__] = ACTIONS(1329), + [anon_sym___forceinline] = ACTIONS(1329), + [anon_sym_thread_local] = ACTIONS(1329), + [anon_sym___thread] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), + [anon_sym_constexpr] = ACTIONS(1329), + [anon_sym_volatile] = ACTIONS(1329), + [anon_sym_restrict] = ACTIONS(1329), + [anon_sym___restrict__] = ACTIONS(1329), + [anon_sym__Atomic] = ACTIONS(1329), + [anon_sym__Noreturn] = ACTIONS(1329), + [anon_sym_noreturn] = ACTIONS(1329), + [anon_sym_alignas] = ACTIONS(1329), + [anon_sym__Alignas] = ACTIONS(1329), + [sym_primitive_type] = ACTIONS(1329), + [anon_sym_enum] = ACTIONS(1329), + [anon_sym_struct] = ACTIONS(1329), + [anon_sym_union] = ACTIONS(1329), + [anon_sym_if] = ACTIONS(1329), + [anon_sym_switch] = ACTIONS(1329), + [anon_sym_case] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(1329), + [anon_sym_while] = ACTIONS(1329), + [anon_sym_do] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(1329), + [anon_sym_return] = ACTIONS(1329), + [anon_sym_break] = ACTIONS(1329), + [anon_sym_continue] = ACTIONS(1329), + [anon_sym_goto] = ACTIONS(1329), + [anon_sym___try] = ACTIONS(1329), + [anon_sym___leave] = ACTIONS(1329), + [anon_sym_DASH_DASH] = ACTIONS(1331), + [anon_sym_PLUS_PLUS] = ACTIONS(1331), + [anon_sym_sizeof] = ACTIONS(1329), + [anon_sym___alignof__] = ACTIONS(1329), + [anon_sym___alignof] = ACTIONS(1329), + [anon_sym__alignof] = ACTIONS(1329), + [anon_sym_alignof] = ACTIONS(1329), + [anon_sym__Alignof] = ACTIONS(1329), + [anon_sym_offsetof] = ACTIONS(1329), + [anon_sym__Generic] = ACTIONS(1329), + [anon_sym_asm] = ACTIONS(1329), + [anon_sym___asm__] = ACTIONS(1329), + [sym_number_literal] = ACTIONS(1331), + [anon_sym_L_SQUOTE] = ACTIONS(1331), + [anon_sym_u_SQUOTE] = ACTIONS(1331), + [anon_sym_U_SQUOTE] = ACTIONS(1331), + [anon_sym_u8_SQUOTE] = ACTIONS(1331), + [anon_sym_SQUOTE] = ACTIONS(1331), + [anon_sym_L_DQUOTE] = ACTIONS(1331), + [anon_sym_u_DQUOTE] = ACTIONS(1331), + [anon_sym_U_DQUOTE] = ACTIONS(1331), + [anon_sym_u8_DQUOTE] = ACTIONS(1331), + [anon_sym_DQUOTE] = ACTIONS(1331), + [sym_true] = ACTIONS(1329), + [sym_false] = ACTIONS(1329), + [anon_sym_NULL] = ACTIONS(1329), + [anon_sym_nullptr] = ACTIONS(1329), [sym_comment] = ACTIONS(3), }, - [302] = { - [sym_identifier] = ACTIONS(1323), - [aux_sym_preproc_include_token1] = ACTIONS(1323), - [aux_sym_preproc_def_token1] = ACTIONS(1323), - [aux_sym_preproc_if_token1] = ACTIONS(1323), - [aux_sym_preproc_if_token2] = ACTIONS(1323), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1323), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1323), - [sym_preproc_directive] = ACTIONS(1323), - [anon_sym_LPAREN2] = ACTIONS(1325), - [anon_sym_BANG] = ACTIONS(1325), - [anon_sym_TILDE] = ACTIONS(1325), - [anon_sym_DASH] = ACTIONS(1323), - [anon_sym_PLUS] = ACTIONS(1323), - [anon_sym_STAR] = ACTIONS(1325), - [anon_sym_AMP] = ACTIONS(1325), - [anon_sym_SEMI] = ACTIONS(1325), - [anon_sym___extension__] = ACTIONS(1323), - [anon_sym_typedef] = ACTIONS(1323), - [anon_sym_extern] = ACTIONS(1323), - [anon_sym___attribute__] = ACTIONS(1323), - [anon_sym___scanf] = ACTIONS(1323), - [anon_sym___printf] = ACTIONS(1323), - [anon_sym___read_mostly] = ACTIONS(1323), - [anon_sym___must_hold] = ACTIONS(1323), - [anon_sym___ro_after_init] = ACTIONS(1323), - [anon_sym___init] = ACTIONS(1323), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), - [anon_sym___declspec] = ACTIONS(1323), - [anon_sym___cdecl] = ACTIONS(1323), - [anon_sym___clrcall] = ACTIONS(1323), - [anon_sym___stdcall] = ACTIONS(1323), - [anon_sym___fastcall] = ACTIONS(1323), - [anon_sym___thiscall] = ACTIONS(1323), - [anon_sym___vectorcall] = ACTIONS(1323), - [anon_sym_LBRACE] = ACTIONS(1325), - [anon_sym_signed] = ACTIONS(1323), - [anon_sym_unsigned] = ACTIONS(1323), - [anon_sym_long] = ACTIONS(1323), - [anon_sym_short] = ACTIONS(1323), - [anon_sym_static] = ACTIONS(1323), - [anon_sym_auto] = ACTIONS(1323), - [anon_sym_register] = ACTIONS(1323), - [anon_sym_inline] = ACTIONS(1323), - [anon_sym___inline] = ACTIONS(1323), - [anon_sym___inline__] = ACTIONS(1323), - [anon_sym___forceinline] = ACTIONS(1323), - [anon_sym_thread_local] = ACTIONS(1323), - [anon_sym___thread] = ACTIONS(1323), - [anon_sym_const] = ACTIONS(1323), - [anon_sym_constexpr] = ACTIONS(1323), - [anon_sym_volatile] = ACTIONS(1323), - [anon_sym_restrict] = ACTIONS(1323), - [anon_sym___restrict__] = ACTIONS(1323), - [anon_sym__Atomic] = ACTIONS(1323), - [anon_sym__Noreturn] = ACTIONS(1323), - [anon_sym_noreturn] = ACTIONS(1323), - [anon_sym_alignas] = ACTIONS(1323), - [anon_sym__Alignas] = ACTIONS(1323), - [sym_primitive_type] = ACTIONS(1323), - [anon_sym_enum] = ACTIONS(1323), - [anon_sym_struct] = ACTIONS(1323), - [anon_sym_union] = ACTIONS(1323), - [anon_sym_if] = ACTIONS(1323), - [anon_sym_switch] = ACTIONS(1323), - [anon_sym_case] = ACTIONS(1323), - [anon_sym_default] = ACTIONS(1323), - [anon_sym_while] = ACTIONS(1323), - [anon_sym_do] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1323), - [anon_sym_return] = ACTIONS(1323), - [anon_sym_break] = ACTIONS(1323), - [anon_sym_continue] = ACTIONS(1323), - [anon_sym_goto] = ACTIONS(1323), - [anon_sym___try] = ACTIONS(1323), - [anon_sym___leave] = ACTIONS(1323), - [anon_sym_DASH_DASH] = ACTIONS(1325), - [anon_sym_PLUS_PLUS] = ACTIONS(1325), - [anon_sym_sizeof] = ACTIONS(1323), - [anon_sym___alignof__] = ACTIONS(1323), - [anon_sym___alignof] = ACTIONS(1323), - [anon_sym__alignof] = ACTIONS(1323), - [anon_sym_alignof] = ACTIONS(1323), - [anon_sym__Alignof] = ACTIONS(1323), - [anon_sym_offsetof] = ACTIONS(1323), - [anon_sym__Generic] = ACTIONS(1323), - [anon_sym_asm] = ACTIONS(1323), - [anon_sym___asm__] = ACTIONS(1323), - [sym_number_literal] = ACTIONS(1325), - [anon_sym_L_SQUOTE] = ACTIONS(1325), - [anon_sym_u_SQUOTE] = ACTIONS(1325), - [anon_sym_U_SQUOTE] = ACTIONS(1325), - [anon_sym_u8_SQUOTE] = ACTIONS(1325), - [anon_sym_SQUOTE] = ACTIONS(1325), - [anon_sym_L_DQUOTE] = ACTIONS(1325), - [anon_sym_u_DQUOTE] = ACTIONS(1325), - [anon_sym_U_DQUOTE] = ACTIONS(1325), - [anon_sym_u8_DQUOTE] = ACTIONS(1325), - [anon_sym_DQUOTE] = ACTIONS(1325), - [sym_true] = ACTIONS(1323), - [sym_false] = ACTIONS(1323), - [anon_sym_NULL] = ACTIONS(1323), - [anon_sym_nullptr] = ACTIONS(1323), + [362] = { + [sym_identifier] = ACTIONS(1419), + [aux_sym_preproc_include_token1] = ACTIONS(1419), + [aux_sym_preproc_def_token1] = ACTIONS(1419), + [aux_sym_preproc_if_token1] = ACTIONS(1419), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1419), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1419), + [sym_preproc_directive] = ACTIONS(1419), + [anon_sym_LPAREN2] = ACTIONS(1421), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1419), + [anon_sym_PLUS] = ACTIONS(1419), + [anon_sym_STAR] = ACTIONS(1421), + [anon_sym_AMP] = ACTIONS(1421), + [anon_sym_SEMI] = ACTIONS(1421), + [anon_sym___extension__] = ACTIONS(1419), + [anon_sym_typedef] = ACTIONS(1419), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym___attribute__] = ACTIONS(1419), + [anon_sym___scanf] = ACTIONS(1419), + [anon_sym___printf] = ACTIONS(1419), + [anon_sym___read_mostly] = ACTIONS(1419), + [anon_sym___must_hold] = ACTIONS(1419), + [anon_sym___ro_after_init] = ACTIONS(1419), + [anon_sym___noreturn] = ACTIONS(1419), + [anon_sym___cold] = ACTIONS(1419), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1421), + [anon_sym___declspec] = ACTIONS(1419), + [anon_sym___init] = ACTIONS(1419), + [anon_sym___exit] = ACTIONS(1419), + [anon_sym___cdecl] = ACTIONS(1419), + [anon_sym___clrcall] = ACTIONS(1419), + [anon_sym___stdcall] = ACTIONS(1419), + [anon_sym___fastcall] = ACTIONS(1419), + [anon_sym___thiscall] = ACTIONS(1419), + [anon_sym___vectorcall] = ACTIONS(1419), + [anon_sym_LBRACE] = ACTIONS(1421), + [anon_sym_RBRACE] = ACTIONS(1421), + [anon_sym_signed] = ACTIONS(1419), + [anon_sym_unsigned] = ACTIONS(1419), + [anon_sym_long] = ACTIONS(1419), + [anon_sym_short] = ACTIONS(1419), + [anon_sym_static] = ACTIONS(1419), + [anon_sym_auto] = ACTIONS(1419), + [anon_sym_register] = ACTIONS(1419), + [anon_sym_inline] = ACTIONS(1419), + [anon_sym___inline] = ACTIONS(1419), + [anon_sym___inline__] = ACTIONS(1419), + [anon_sym___forceinline] = ACTIONS(1419), + [anon_sym_thread_local] = ACTIONS(1419), + [anon_sym___thread] = ACTIONS(1419), + [anon_sym_const] = ACTIONS(1419), + [anon_sym_constexpr] = ACTIONS(1419), + [anon_sym_volatile] = ACTIONS(1419), + [anon_sym_restrict] = ACTIONS(1419), + [anon_sym___restrict__] = ACTIONS(1419), + [anon_sym__Atomic] = ACTIONS(1419), + [anon_sym__Noreturn] = ACTIONS(1419), + [anon_sym_noreturn] = ACTIONS(1419), + [anon_sym_alignas] = ACTIONS(1419), + [anon_sym__Alignas] = ACTIONS(1419), + [sym_primitive_type] = ACTIONS(1419), + [anon_sym_enum] = ACTIONS(1419), + [anon_sym_struct] = ACTIONS(1419), + [anon_sym_union] = ACTIONS(1419), + [anon_sym_if] = ACTIONS(1419), + [anon_sym_switch] = ACTIONS(1419), + [anon_sym_case] = ACTIONS(1419), + [anon_sym_default] = ACTIONS(1419), + [anon_sym_while] = ACTIONS(1419), + [anon_sym_do] = ACTIONS(1419), + [anon_sym_for] = ACTIONS(1419), + [anon_sym_return] = ACTIONS(1419), + [anon_sym_break] = ACTIONS(1419), + [anon_sym_continue] = ACTIONS(1419), + [anon_sym_goto] = ACTIONS(1419), + [anon_sym___try] = ACTIONS(1419), + [anon_sym___leave] = ACTIONS(1419), + [anon_sym_DASH_DASH] = ACTIONS(1421), + [anon_sym_PLUS_PLUS] = ACTIONS(1421), + [anon_sym_sizeof] = ACTIONS(1419), + [anon_sym___alignof__] = ACTIONS(1419), + [anon_sym___alignof] = ACTIONS(1419), + [anon_sym__alignof] = ACTIONS(1419), + [anon_sym_alignof] = ACTIONS(1419), + [anon_sym__Alignof] = ACTIONS(1419), + [anon_sym_offsetof] = ACTIONS(1419), + [anon_sym__Generic] = ACTIONS(1419), + [anon_sym_asm] = ACTIONS(1419), + [anon_sym___asm__] = ACTIONS(1419), + [sym_number_literal] = ACTIONS(1421), + [anon_sym_L_SQUOTE] = ACTIONS(1421), + [anon_sym_u_SQUOTE] = ACTIONS(1421), + [anon_sym_U_SQUOTE] = ACTIONS(1421), + [anon_sym_u8_SQUOTE] = ACTIONS(1421), + [anon_sym_SQUOTE] = ACTIONS(1421), + [anon_sym_L_DQUOTE] = ACTIONS(1421), + [anon_sym_u_DQUOTE] = ACTIONS(1421), + [anon_sym_U_DQUOTE] = ACTIONS(1421), + [anon_sym_u8_DQUOTE] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1421), + [sym_true] = ACTIONS(1419), + [sym_false] = ACTIONS(1419), + [anon_sym_NULL] = ACTIONS(1419), + [anon_sym_nullptr] = ACTIONS(1419), [sym_comment] = ACTIONS(3), }, - [303] = { - [sym_identifier] = ACTIONS(1355), - [aux_sym_preproc_include_token1] = ACTIONS(1355), - [aux_sym_preproc_def_token1] = ACTIONS(1355), - [aux_sym_preproc_if_token1] = ACTIONS(1355), - [aux_sym_preproc_if_token2] = ACTIONS(1355), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1355), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1355), - [sym_preproc_directive] = ACTIONS(1355), - [anon_sym_LPAREN2] = ACTIONS(1357), - [anon_sym_BANG] = ACTIONS(1357), - [anon_sym_TILDE] = ACTIONS(1357), - [anon_sym_DASH] = ACTIONS(1355), - [anon_sym_PLUS] = ACTIONS(1355), - [anon_sym_STAR] = ACTIONS(1357), - [anon_sym_AMP] = ACTIONS(1357), - [anon_sym_SEMI] = ACTIONS(1357), - [anon_sym___extension__] = ACTIONS(1355), - [anon_sym_typedef] = ACTIONS(1355), - [anon_sym_extern] = ACTIONS(1355), - [anon_sym___attribute__] = ACTIONS(1355), - [anon_sym___scanf] = ACTIONS(1355), - [anon_sym___printf] = ACTIONS(1355), - [anon_sym___read_mostly] = ACTIONS(1355), - [anon_sym___must_hold] = ACTIONS(1355), - [anon_sym___ro_after_init] = ACTIONS(1355), - [anon_sym___init] = ACTIONS(1355), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1357), - [anon_sym___declspec] = ACTIONS(1355), - [anon_sym___cdecl] = ACTIONS(1355), - [anon_sym___clrcall] = ACTIONS(1355), - [anon_sym___stdcall] = ACTIONS(1355), - [anon_sym___fastcall] = ACTIONS(1355), - [anon_sym___thiscall] = ACTIONS(1355), - [anon_sym___vectorcall] = ACTIONS(1355), - [anon_sym_LBRACE] = ACTIONS(1357), - [anon_sym_signed] = ACTIONS(1355), - [anon_sym_unsigned] = ACTIONS(1355), - [anon_sym_long] = ACTIONS(1355), - [anon_sym_short] = ACTIONS(1355), - [anon_sym_static] = ACTIONS(1355), - [anon_sym_auto] = ACTIONS(1355), - [anon_sym_register] = ACTIONS(1355), - [anon_sym_inline] = ACTIONS(1355), - [anon_sym___inline] = ACTIONS(1355), - [anon_sym___inline__] = ACTIONS(1355), - [anon_sym___forceinline] = ACTIONS(1355), - [anon_sym_thread_local] = ACTIONS(1355), - [anon_sym___thread] = ACTIONS(1355), - [anon_sym_const] = ACTIONS(1355), - [anon_sym_constexpr] = ACTIONS(1355), - [anon_sym_volatile] = ACTIONS(1355), - [anon_sym_restrict] = ACTIONS(1355), - [anon_sym___restrict__] = ACTIONS(1355), - [anon_sym__Atomic] = ACTIONS(1355), - [anon_sym__Noreturn] = ACTIONS(1355), - [anon_sym_noreturn] = ACTIONS(1355), - [anon_sym_alignas] = ACTIONS(1355), - [anon_sym__Alignas] = ACTIONS(1355), - [sym_primitive_type] = ACTIONS(1355), - [anon_sym_enum] = ACTIONS(1355), - [anon_sym_struct] = ACTIONS(1355), - [anon_sym_union] = ACTIONS(1355), - [anon_sym_if] = ACTIONS(1355), - [anon_sym_switch] = ACTIONS(1355), - [anon_sym_case] = ACTIONS(1355), - [anon_sym_default] = ACTIONS(1355), - [anon_sym_while] = ACTIONS(1355), - [anon_sym_do] = ACTIONS(1355), - [anon_sym_for] = ACTIONS(1355), - [anon_sym_return] = ACTIONS(1355), - [anon_sym_break] = ACTIONS(1355), - [anon_sym_continue] = ACTIONS(1355), - [anon_sym_goto] = ACTIONS(1355), - [anon_sym___try] = ACTIONS(1355), - [anon_sym___leave] = ACTIONS(1355), - [anon_sym_DASH_DASH] = ACTIONS(1357), - [anon_sym_PLUS_PLUS] = ACTIONS(1357), - [anon_sym_sizeof] = ACTIONS(1355), - [anon_sym___alignof__] = ACTIONS(1355), - [anon_sym___alignof] = ACTIONS(1355), - [anon_sym__alignof] = ACTIONS(1355), - [anon_sym_alignof] = ACTIONS(1355), - [anon_sym__Alignof] = ACTIONS(1355), - [anon_sym_offsetof] = ACTIONS(1355), - [anon_sym__Generic] = ACTIONS(1355), - [anon_sym_asm] = ACTIONS(1355), - [anon_sym___asm__] = ACTIONS(1355), - [sym_number_literal] = ACTIONS(1357), - [anon_sym_L_SQUOTE] = ACTIONS(1357), - [anon_sym_u_SQUOTE] = ACTIONS(1357), - [anon_sym_U_SQUOTE] = ACTIONS(1357), - [anon_sym_u8_SQUOTE] = ACTIONS(1357), - [anon_sym_SQUOTE] = ACTIONS(1357), - [anon_sym_L_DQUOTE] = ACTIONS(1357), - [anon_sym_u_DQUOTE] = ACTIONS(1357), - [anon_sym_U_DQUOTE] = ACTIONS(1357), - [anon_sym_u8_DQUOTE] = ACTIONS(1357), - [anon_sym_DQUOTE] = ACTIONS(1357), - [sym_true] = ACTIONS(1355), - [sym_false] = ACTIONS(1355), - [anon_sym_NULL] = ACTIONS(1355), - [anon_sym_nullptr] = ACTIONS(1355), + [363] = { + [sym_identifier] = ACTIONS(1293), + [aux_sym_preproc_include_token1] = ACTIONS(1293), + [aux_sym_preproc_def_token1] = ACTIONS(1293), + [aux_sym_preproc_if_token1] = ACTIONS(1293), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1293), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1293), + [sym_preproc_directive] = ACTIONS(1293), + [anon_sym_LPAREN2] = ACTIONS(1295), + [anon_sym_BANG] = ACTIONS(1295), + [anon_sym_TILDE] = ACTIONS(1295), + [anon_sym_DASH] = ACTIONS(1293), + [anon_sym_PLUS] = ACTIONS(1293), + [anon_sym_STAR] = ACTIONS(1295), + [anon_sym_AMP] = ACTIONS(1295), + [anon_sym_SEMI] = ACTIONS(1295), + [anon_sym___extension__] = ACTIONS(1293), + [anon_sym_typedef] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1293), + [anon_sym___attribute__] = ACTIONS(1293), + [anon_sym___scanf] = ACTIONS(1293), + [anon_sym___printf] = ACTIONS(1293), + [anon_sym___read_mostly] = ACTIONS(1293), + [anon_sym___must_hold] = ACTIONS(1293), + [anon_sym___ro_after_init] = ACTIONS(1293), + [anon_sym___noreturn] = ACTIONS(1293), + [anon_sym___cold] = ACTIONS(1293), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1295), + [anon_sym___declspec] = ACTIONS(1293), + [anon_sym___init] = ACTIONS(1293), + [anon_sym___exit] = ACTIONS(1293), + [anon_sym___cdecl] = ACTIONS(1293), + [anon_sym___clrcall] = ACTIONS(1293), + [anon_sym___stdcall] = ACTIONS(1293), + [anon_sym___fastcall] = ACTIONS(1293), + [anon_sym___thiscall] = ACTIONS(1293), + [anon_sym___vectorcall] = ACTIONS(1293), + [anon_sym_LBRACE] = ACTIONS(1295), + [anon_sym_RBRACE] = ACTIONS(1295), + [anon_sym_signed] = ACTIONS(1293), + [anon_sym_unsigned] = ACTIONS(1293), + [anon_sym_long] = ACTIONS(1293), + [anon_sym_short] = ACTIONS(1293), + [anon_sym_static] = ACTIONS(1293), + [anon_sym_auto] = ACTIONS(1293), + [anon_sym_register] = ACTIONS(1293), + [anon_sym_inline] = ACTIONS(1293), + [anon_sym___inline] = ACTIONS(1293), + [anon_sym___inline__] = ACTIONS(1293), + [anon_sym___forceinline] = ACTIONS(1293), + [anon_sym_thread_local] = ACTIONS(1293), + [anon_sym___thread] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1293), + [anon_sym_constexpr] = ACTIONS(1293), + [anon_sym_volatile] = ACTIONS(1293), + [anon_sym_restrict] = ACTIONS(1293), + [anon_sym___restrict__] = ACTIONS(1293), + [anon_sym__Atomic] = ACTIONS(1293), + [anon_sym__Noreturn] = ACTIONS(1293), + [anon_sym_noreturn] = ACTIONS(1293), + [anon_sym_alignas] = ACTIONS(1293), + [anon_sym__Alignas] = ACTIONS(1293), + [sym_primitive_type] = ACTIONS(1293), + [anon_sym_enum] = ACTIONS(1293), + [anon_sym_struct] = ACTIONS(1293), + [anon_sym_union] = ACTIONS(1293), + [anon_sym_if] = ACTIONS(1293), + [anon_sym_switch] = ACTIONS(1293), + [anon_sym_case] = ACTIONS(1293), + [anon_sym_default] = ACTIONS(1293), + [anon_sym_while] = ACTIONS(1293), + [anon_sym_do] = ACTIONS(1293), + [anon_sym_for] = ACTIONS(1293), + [anon_sym_return] = ACTIONS(1293), + [anon_sym_break] = ACTIONS(1293), + [anon_sym_continue] = ACTIONS(1293), + [anon_sym_goto] = ACTIONS(1293), + [anon_sym___try] = ACTIONS(1293), + [anon_sym___leave] = ACTIONS(1293), + [anon_sym_DASH_DASH] = ACTIONS(1295), + [anon_sym_PLUS_PLUS] = ACTIONS(1295), + [anon_sym_sizeof] = ACTIONS(1293), + [anon_sym___alignof__] = ACTIONS(1293), + [anon_sym___alignof] = ACTIONS(1293), + [anon_sym__alignof] = ACTIONS(1293), + [anon_sym_alignof] = ACTIONS(1293), + [anon_sym__Alignof] = ACTIONS(1293), + [anon_sym_offsetof] = ACTIONS(1293), + [anon_sym__Generic] = ACTIONS(1293), + [anon_sym_asm] = ACTIONS(1293), + [anon_sym___asm__] = ACTIONS(1293), + [sym_number_literal] = ACTIONS(1295), + [anon_sym_L_SQUOTE] = ACTIONS(1295), + [anon_sym_u_SQUOTE] = ACTIONS(1295), + [anon_sym_U_SQUOTE] = ACTIONS(1295), + [anon_sym_u8_SQUOTE] = ACTIONS(1295), + [anon_sym_SQUOTE] = ACTIONS(1295), + [anon_sym_L_DQUOTE] = ACTIONS(1295), + [anon_sym_u_DQUOTE] = ACTIONS(1295), + [anon_sym_U_DQUOTE] = ACTIONS(1295), + [anon_sym_u8_DQUOTE] = ACTIONS(1295), + [anon_sym_DQUOTE] = ACTIONS(1295), + [sym_true] = ACTIONS(1293), + [sym_false] = ACTIONS(1293), + [anon_sym_NULL] = ACTIONS(1293), + [anon_sym_nullptr] = ACTIONS(1293), [sym_comment] = ACTIONS(3), }, - [304] = { - [sym_identifier] = ACTIONS(1315), - [aux_sym_preproc_include_token1] = ACTIONS(1315), - [aux_sym_preproc_def_token1] = ACTIONS(1315), - [aux_sym_preproc_if_token1] = ACTIONS(1315), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1315), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1315), - [sym_preproc_directive] = ACTIONS(1315), - [anon_sym_LPAREN2] = ACTIONS(1317), - [anon_sym_BANG] = ACTIONS(1317), - [anon_sym_TILDE] = ACTIONS(1317), - [anon_sym_DASH] = ACTIONS(1315), - [anon_sym_PLUS] = ACTIONS(1315), - [anon_sym_STAR] = ACTIONS(1317), - [anon_sym_AMP] = ACTIONS(1317), - [anon_sym_SEMI] = ACTIONS(1317), - [anon_sym___extension__] = ACTIONS(1315), - [anon_sym_typedef] = ACTIONS(1315), - [anon_sym_extern] = ACTIONS(1315), - [anon_sym___attribute__] = ACTIONS(1315), - [anon_sym___scanf] = ACTIONS(1315), - [anon_sym___printf] = ACTIONS(1315), - [anon_sym___read_mostly] = ACTIONS(1315), - [anon_sym___must_hold] = ACTIONS(1315), - [anon_sym___ro_after_init] = ACTIONS(1315), - [anon_sym___init] = ACTIONS(1315), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1317), - [anon_sym___declspec] = ACTIONS(1315), - [anon_sym___cdecl] = ACTIONS(1315), - [anon_sym___clrcall] = ACTIONS(1315), - [anon_sym___stdcall] = ACTIONS(1315), - [anon_sym___fastcall] = ACTIONS(1315), - [anon_sym___thiscall] = ACTIONS(1315), - [anon_sym___vectorcall] = ACTIONS(1315), - [anon_sym_LBRACE] = ACTIONS(1317), - [anon_sym_RBRACE] = ACTIONS(1317), - [anon_sym_signed] = ACTIONS(1315), - [anon_sym_unsigned] = ACTIONS(1315), - [anon_sym_long] = ACTIONS(1315), - [anon_sym_short] = ACTIONS(1315), - [anon_sym_static] = ACTIONS(1315), - [anon_sym_auto] = ACTIONS(1315), - [anon_sym_register] = ACTIONS(1315), - [anon_sym_inline] = ACTIONS(1315), - [anon_sym___inline] = ACTIONS(1315), - [anon_sym___inline__] = ACTIONS(1315), - [anon_sym___forceinline] = ACTIONS(1315), - [anon_sym_thread_local] = ACTIONS(1315), - [anon_sym___thread] = ACTIONS(1315), - [anon_sym_const] = ACTIONS(1315), - [anon_sym_constexpr] = ACTIONS(1315), - [anon_sym_volatile] = ACTIONS(1315), - [anon_sym_restrict] = ACTIONS(1315), - [anon_sym___restrict__] = ACTIONS(1315), - [anon_sym__Atomic] = ACTIONS(1315), - [anon_sym__Noreturn] = ACTIONS(1315), - [anon_sym_noreturn] = ACTIONS(1315), - [anon_sym_alignas] = ACTIONS(1315), - [anon_sym__Alignas] = ACTIONS(1315), - [sym_primitive_type] = ACTIONS(1315), - [anon_sym_enum] = ACTIONS(1315), - [anon_sym_struct] = ACTIONS(1315), - [anon_sym_union] = ACTIONS(1315), - [anon_sym_if] = ACTIONS(1315), - [anon_sym_switch] = ACTIONS(1315), - [anon_sym_case] = ACTIONS(1315), - [anon_sym_default] = ACTIONS(1315), - [anon_sym_while] = ACTIONS(1315), - [anon_sym_do] = ACTIONS(1315), - [anon_sym_for] = ACTIONS(1315), - [anon_sym_return] = ACTIONS(1315), - [anon_sym_break] = ACTIONS(1315), - [anon_sym_continue] = ACTIONS(1315), - [anon_sym_goto] = ACTIONS(1315), - [anon_sym___try] = ACTIONS(1315), - [anon_sym___leave] = ACTIONS(1315), - [anon_sym_DASH_DASH] = ACTIONS(1317), - [anon_sym_PLUS_PLUS] = ACTIONS(1317), - [anon_sym_sizeof] = ACTIONS(1315), - [anon_sym___alignof__] = ACTIONS(1315), - [anon_sym___alignof] = ACTIONS(1315), - [anon_sym__alignof] = ACTIONS(1315), - [anon_sym_alignof] = ACTIONS(1315), - [anon_sym__Alignof] = ACTIONS(1315), - [anon_sym_offsetof] = ACTIONS(1315), - [anon_sym__Generic] = ACTIONS(1315), - [anon_sym_asm] = ACTIONS(1315), - [anon_sym___asm__] = ACTIONS(1315), - [sym_number_literal] = ACTIONS(1317), - [anon_sym_L_SQUOTE] = ACTIONS(1317), - [anon_sym_u_SQUOTE] = ACTIONS(1317), - [anon_sym_U_SQUOTE] = ACTIONS(1317), - [anon_sym_u8_SQUOTE] = ACTIONS(1317), - [anon_sym_SQUOTE] = ACTIONS(1317), - [anon_sym_L_DQUOTE] = ACTIONS(1317), - [anon_sym_u_DQUOTE] = ACTIONS(1317), - [anon_sym_U_DQUOTE] = ACTIONS(1317), - [anon_sym_u8_DQUOTE] = ACTIONS(1317), - [anon_sym_DQUOTE] = ACTIONS(1317), - [sym_true] = ACTIONS(1315), - [sym_false] = ACTIONS(1315), - [anon_sym_NULL] = ACTIONS(1315), - [anon_sym_nullptr] = ACTIONS(1315), + [364] = { + [sym_identifier] = ACTIONS(1397), + [aux_sym_preproc_include_token1] = ACTIONS(1397), + [aux_sym_preproc_def_token1] = ACTIONS(1397), + [aux_sym_preproc_if_token1] = ACTIONS(1397), + [aux_sym_preproc_if_token2] = ACTIONS(1397), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1397), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1397), + [sym_preproc_directive] = ACTIONS(1397), + [anon_sym_LPAREN2] = ACTIONS(1399), + [anon_sym_BANG] = ACTIONS(1399), + [anon_sym_TILDE] = ACTIONS(1399), + [anon_sym_DASH] = ACTIONS(1397), + [anon_sym_PLUS] = ACTIONS(1397), + [anon_sym_STAR] = ACTIONS(1399), + [anon_sym_AMP] = ACTIONS(1399), + [anon_sym_SEMI] = ACTIONS(1399), + [anon_sym___extension__] = ACTIONS(1397), + [anon_sym_typedef] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1397), + [anon_sym___attribute__] = ACTIONS(1397), + [anon_sym___scanf] = ACTIONS(1397), + [anon_sym___printf] = ACTIONS(1397), + [anon_sym___read_mostly] = ACTIONS(1397), + [anon_sym___must_hold] = ACTIONS(1397), + [anon_sym___ro_after_init] = ACTIONS(1397), + [anon_sym___noreturn] = ACTIONS(1397), + [anon_sym___cold] = ACTIONS(1397), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1399), + [anon_sym___declspec] = ACTIONS(1397), + [anon_sym___init] = ACTIONS(1397), + [anon_sym___exit] = ACTIONS(1397), + [anon_sym___cdecl] = ACTIONS(1397), + [anon_sym___clrcall] = ACTIONS(1397), + [anon_sym___stdcall] = ACTIONS(1397), + [anon_sym___fastcall] = ACTIONS(1397), + [anon_sym___thiscall] = ACTIONS(1397), + [anon_sym___vectorcall] = ACTIONS(1397), + [anon_sym_LBRACE] = ACTIONS(1399), + [anon_sym_signed] = ACTIONS(1397), + [anon_sym_unsigned] = ACTIONS(1397), + [anon_sym_long] = ACTIONS(1397), + [anon_sym_short] = ACTIONS(1397), + [anon_sym_static] = ACTIONS(1397), + [anon_sym_auto] = ACTIONS(1397), + [anon_sym_register] = ACTIONS(1397), + [anon_sym_inline] = ACTIONS(1397), + [anon_sym___inline] = ACTIONS(1397), + [anon_sym___inline__] = ACTIONS(1397), + [anon_sym___forceinline] = ACTIONS(1397), + [anon_sym_thread_local] = ACTIONS(1397), + [anon_sym___thread] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_constexpr] = ACTIONS(1397), + [anon_sym_volatile] = ACTIONS(1397), + [anon_sym_restrict] = ACTIONS(1397), + [anon_sym___restrict__] = ACTIONS(1397), + [anon_sym__Atomic] = ACTIONS(1397), + [anon_sym__Noreturn] = ACTIONS(1397), + [anon_sym_noreturn] = ACTIONS(1397), + [anon_sym_alignas] = ACTIONS(1397), + [anon_sym__Alignas] = ACTIONS(1397), + [sym_primitive_type] = ACTIONS(1397), + [anon_sym_enum] = ACTIONS(1397), + [anon_sym_struct] = ACTIONS(1397), + [anon_sym_union] = ACTIONS(1397), + [anon_sym_if] = ACTIONS(1397), + [anon_sym_switch] = ACTIONS(1397), + [anon_sym_case] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(1397), + [anon_sym_while] = ACTIONS(1397), + [anon_sym_do] = ACTIONS(1397), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_return] = ACTIONS(1397), + [anon_sym_break] = ACTIONS(1397), + [anon_sym_continue] = ACTIONS(1397), + [anon_sym_goto] = ACTIONS(1397), + [anon_sym___try] = ACTIONS(1397), + [anon_sym___leave] = ACTIONS(1397), + [anon_sym_DASH_DASH] = ACTIONS(1399), + [anon_sym_PLUS_PLUS] = ACTIONS(1399), + [anon_sym_sizeof] = ACTIONS(1397), + [anon_sym___alignof__] = ACTIONS(1397), + [anon_sym___alignof] = ACTIONS(1397), + [anon_sym__alignof] = ACTIONS(1397), + [anon_sym_alignof] = ACTIONS(1397), + [anon_sym__Alignof] = ACTIONS(1397), + [anon_sym_offsetof] = ACTIONS(1397), + [anon_sym__Generic] = ACTIONS(1397), + [anon_sym_asm] = ACTIONS(1397), + [anon_sym___asm__] = ACTIONS(1397), + [sym_number_literal] = ACTIONS(1399), + [anon_sym_L_SQUOTE] = ACTIONS(1399), + [anon_sym_u_SQUOTE] = ACTIONS(1399), + [anon_sym_U_SQUOTE] = ACTIONS(1399), + [anon_sym_u8_SQUOTE] = ACTIONS(1399), + [anon_sym_SQUOTE] = ACTIONS(1399), + [anon_sym_L_DQUOTE] = ACTIONS(1399), + [anon_sym_u_DQUOTE] = ACTIONS(1399), + [anon_sym_U_DQUOTE] = ACTIONS(1399), + [anon_sym_u8_DQUOTE] = ACTIONS(1399), + [anon_sym_DQUOTE] = ACTIONS(1399), + [sym_true] = ACTIONS(1397), + [sym_false] = ACTIONS(1397), + [anon_sym_NULL] = ACTIONS(1397), + [anon_sym_nullptr] = ACTIONS(1397), [sym_comment] = ACTIONS(3), }, - [305] = { - [sym_identifier] = ACTIONS(1311), - [aux_sym_preproc_include_token1] = ACTIONS(1311), - [aux_sym_preproc_def_token1] = ACTIONS(1311), - [aux_sym_preproc_if_token1] = ACTIONS(1311), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1311), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1311), - [sym_preproc_directive] = ACTIONS(1311), - [anon_sym_LPAREN2] = ACTIONS(1313), - [anon_sym_BANG] = ACTIONS(1313), - [anon_sym_TILDE] = ACTIONS(1313), - [anon_sym_DASH] = ACTIONS(1311), - [anon_sym_PLUS] = ACTIONS(1311), - [anon_sym_STAR] = ACTIONS(1313), - [anon_sym_AMP] = ACTIONS(1313), - [anon_sym_SEMI] = ACTIONS(1313), - [anon_sym___extension__] = ACTIONS(1311), - [anon_sym_typedef] = ACTIONS(1311), - [anon_sym_extern] = ACTIONS(1311), - [anon_sym___attribute__] = ACTIONS(1311), - [anon_sym___scanf] = ACTIONS(1311), - [anon_sym___printf] = ACTIONS(1311), - [anon_sym___read_mostly] = ACTIONS(1311), - [anon_sym___must_hold] = ACTIONS(1311), - [anon_sym___ro_after_init] = ACTIONS(1311), - [anon_sym___init] = ACTIONS(1311), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1313), - [anon_sym___declspec] = ACTIONS(1311), - [anon_sym___cdecl] = ACTIONS(1311), - [anon_sym___clrcall] = ACTIONS(1311), - [anon_sym___stdcall] = ACTIONS(1311), - [anon_sym___fastcall] = ACTIONS(1311), - [anon_sym___thiscall] = ACTIONS(1311), - [anon_sym___vectorcall] = ACTIONS(1311), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_RBRACE] = ACTIONS(1313), - [anon_sym_signed] = ACTIONS(1311), - [anon_sym_unsigned] = ACTIONS(1311), - [anon_sym_long] = ACTIONS(1311), - [anon_sym_short] = ACTIONS(1311), - [anon_sym_static] = ACTIONS(1311), - [anon_sym_auto] = ACTIONS(1311), - [anon_sym_register] = ACTIONS(1311), - [anon_sym_inline] = ACTIONS(1311), - [anon_sym___inline] = ACTIONS(1311), - [anon_sym___inline__] = ACTIONS(1311), - [anon_sym___forceinline] = ACTIONS(1311), - [anon_sym_thread_local] = ACTIONS(1311), - [anon_sym___thread] = ACTIONS(1311), - [anon_sym_const] = ACTIONS(1311), - [anon_sym_constexpr] = ACTIONS(1311), - [anon_sym_volatile] = ACTIONS(1311), - [anon_sym_restrict] = ACTIONS(1311), - [anon_sym___restrict__] = ACTIONS(1311), - [anon_sym__Atomic] = ACTIONS(1311), - [anon_sym__Noreturn] = ACTIONS(1311), - [anon_sym_noreturn] = ACTIONS(1311), - [anon_sym_alignas] = ACTIONS(1311), - [anon_sym__Alignas] = ACTIONS(1311), - [sym_primitive_type] = ACTIONS(1311), - [anon_sym_enum] = ACTIONS(1311), - [anon_sym_struct] = ACTIONS(1311), - [anon_sym_union] = ACTIONS(1311), - [anon_sym_if] = ACTIONS(1311), - [anon_sym_switch] = ACTIONS(1311), - [anon_sym_case] = ACTIONS(1311), - [anon_sym_default] = ACTIONS(1311), - [anon_sym_while] = ACTIONS(1311), - [anon_sym_do] = ACTIONS(1311), - [anon_sym_for] = ACTIONS(1311), - [anon_sym_return] = ACTIONS(1311), - [anon_sym_break] = ACTIONS(1311), - [anon_sym_continue] = ACTIONS(1311), - [anon_sym_goto] = ACTIONS(1311), - [anon_sym___try] = ACTIONS(1311), - [anon_sym___leave] = ACTIONS(1311), - [anon_sym_DASH_DASH] = ACTIONS(1313), - [anon_sym_PLUS_PLUS] = ACTIONS(1313), - [anon_sym_sizeof] = ACTIONS(1311), - [anon_sym___alignof__] = ACTIONS(1311), - [anon_sym___alignof] = ACTIONS(1311), - [anon_sym__alignof] = ACTIONS(1311), - [anon_sym_alignof] = ACTIONS(1311), - [anon_sym__Alignof] = ACTIONS(1311), - [anon_sym_offsetof] = ACTIONS(1311), - [anon_sym__Generic] = ACTIONS(1311), - [anon_sym_asm] = ACTIONS(1311), - [anon_sym___asm__] = ACTIONS(1311), - [sym_number_literal] = ACTIONS(1313), - [anon_sym_L_SQUOTE] = ACTIONS(1313), - [anon_sym_u_SQUOTE] = ACTIONS(1313), - [anon_sym_U_SQUOTE] = ACTIONS(1313), - [anon_sym_u8_SQUOTE] = ACTIONS(1313), - [anon_sym_SQUOTE] = ACTIONS(1313), - [anon_sym_L_DQUOTE] = ACTIONS(1313), - [anon_sym_u_DQUOTE] = ACTIONS(1313), - [anon_sym_U_DQUOTE] = ACTIONS(1313), - [anon_sym_u8_DQUOTE] = ACTIONS(1313), - [anon_sym_DQUOTE] = ACTIONS(1313), - [sym_true] = ACTIONS(1311), - [sym_false] = ACTIONS(1311), - [anon_sym_NULL] = ACTIONS(1311), - [anon_sym_nullptr] = ACTIONS(1311), + [365] = { + [sym_identifier] = ACTIONS(1325), + [aux_sym_preproc_include_token1] = ACTIONS(1325), + [aux_sym_preproc_def_token1] = ACTIONS(1325), + [aux_sym_preproc_if_token1] = ACTIONS(1325), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1325), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1325), + [sym_preproc_directive] = ACTIONS(1325), + [anon_sym_LPAREN2] = ACTIONS(1327), + [anon_sym_BANG] = ACTIONS(1327), + [anon_sym_TILDE] = ACTIONS(1327), + [anon_sym_DASH] = ACTIONS(1325), + [anon_sym_PLUS] = ACTIONS(1325), + [anon_sym_STAR] = ACTIONS(1327), + [anon_sym_AMP] = ACTIONS(1327), + [anon_sym_SEMI] = ACTIONS(1327), + [anon_sym___extension__] = ACTIONS(1325), + [anon_sym_typedef] = ACTIONS(1325), + [anon_sym_extern] = ACTIONS(1325), + [anon_sym___attribute__] = ACTIONS(1325), + [anon_sym___scanf] = ACTIONS(1325), + [anon_sym___printf] = ACTIONS(1325), + [anon_sym___read_mostly] = ACTIONS(1325), + [anon_sym___must_hold] = ACTIONS(1325), + [anon_sym___ro_after_init] = ACTIONS(1325), + [anon_sym___noreturn] = ACTIONS(1325), + [anon_sym___cold] = ACTIONS(1325), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1327), + [anon_sym___declspec] = ACTIONS(1325), + [anon_sym___init] = ACTIONS(1325), + [anon_sym___exit] = ACTIONS(1325), + [anon_sym___cdecl] = ACTIONS(1325), + [anon_sym___clrcall] = ACTIONS(1325), + [anon_sym___stdcall] = ACTIONS(1325), + [anon_sym___fastcall] = ACTIONS(1325), + [anon_sym___thiscall] = ACTIONS(1325), + [anon_sym___vectorcall] = ACTIONS(1325), + [anon_sym_LBRACE] = ACTIONS(1327), + [anon_sym_RBRACE] = ACTIONS(1327), + [anon_sym_signed] = ACTIONS(1325), + [anon_sym_unsigned] = ACTIONS(1325), + [anon_sym_long] = ACTIONS(1325), + [anon_sym_short] = ACTIONS(1325), + [anon_sym_static] = ACTIONS(1325), + [anon_sym_auto] = ACTIONS(1325), + [anon_sym_register] = ACTIONS(1325), + [anon_sym_inline] = ACTIONS(1325), + [anon_sym___inline] = ACTIONS(1325), + [anon_sym___inline__] = ACTIONS(1325), + [anon_sym___forceinline] = ACTIONS(1325), + [anon_sym_thread_local] = ACTIONS(1325), + [anon_sym___thread] = ACTIONS(1325), + [anon_sym_const] = ACTIONS(1325), + [anon_sym_constexpr] = ACTIONS(1325), + [anon_sym_volatile] = ACTIONS(1325), + [anon_sym_restrict] = ACTIONS(1325), + [anon_sym___restrict__] = ACTIONS(1325), + [anon_sym__Atomic] = ACTIONS(1325), + [anon_sym__Noreturn] = ACTIONS(1325), + [anon_sym_noreturn] = ACTIONS(1325), + [anon_sym_alignas] = ACTIONS(1325), + [anon_sym__Alignas] = ACTIONS(1325), + [sym_primitive_type] = ACTIONS(1325), + [anon_sym_enum] = ACTIONS(1325), + [anon_sym_struct] = ACTIONS(1325), + [anon_sym_union] = ACTIONS(1325), + [anon_sym_if] = ACTIONS(1325), + [anon_sym_switch] = ACTIONS(1325), + [anon_sym_case] = ACTIONS(1325), + [anon_sym_default] = ACTIONS(1325), + [anon_sym_while] = ACTIONS(1325), + [anon_sym_do] = ACTIONS(1325), + [anon_sym_for] = ACTIONS(1325), + [anon_sym_return] = ACTIONS(1325), + [anon_sym_break] = ACTIONS(1325), + [anon_sym_continue] = ACTIONS(1325), + [anon_sym_goto] = ACTIONS(1325), + [anon_sym___try] = ACTIONS(1325), + [anon_sym___leave] = ACTIONS(1325), + [anon_sym_DASH_DASH] = ACTIONS(1327), + [anon_sym_PLUS_PLUS] = ACTIONS(1327), + [anon_sym_sizeof] = ACTIONS(1325), + [anon_sym___alignof__] = ACTIONS(1325), + [anon_sym___alignof] = ACTIONS(1325), + [anon_sym__alignof] = ACTIONS(1325), + [anon_sym_alignof] = ACTIONS(1325), + [anon_sym__Alignof] = ACTIONS(1325), + [anon_sym_offsetof] = ACTIONS(1325), + [anon_sym__Generic] = ACTIONS(1325), + [anon_sym_asm] = ACTIONS(1325), + [anon_sym___asm__] = ACTIONS(1325), + [sym_number_literal] = ACTIONS(1327), + [anon_sym_L_SQUOTE] = ACTIONS(1327), + [anon_sym_u_SQUOTE] = ACTIONS(1327), + [anon_sym_U_SQUOTE] = ACTIONS(1327), + [anon_sym_u8_SQUOTE] = ACTIONS(1327), + [anon_sym_SQUOTE] = ACTIONS(1327), + [anon_sym_L_DQUOTE] = ACTIONS(1327), + [anon_sym_u_DQUOTE] = ACTIONS(1327), + [anon_sym_U_DQUOTE] = ACTIONS(1327), + [anon_sym_u8_DQUOTE] = ACTIONS(1327), + [anon_sym_DQUOTE] = ACTIONS(1327), + [sym_true] = ACTIONS(1325), + [sym_false] = ACTIONS(1325), + [anon_sym_NULL] = ACTIONS(1325), + [anon_sym_nullptr] = ACTIONS(1325), [sym_comment] = ACTIONS(3), }, - [306] = { - [sym_identifier] = ACTIONS(1307), - [aux_sym_preproc_include_token1] = ACTIONS(1307), - [aux_sym_preproc_def_token1] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1307), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1307), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1307), - [sym_preproc_directive] = ACTIONS(1307), - [anon_sym_LPAREN2] = ACTIONS(1309), - [anon_sym_BANG] = ACTIONS(1309), - [anon_sym_TILDE] = ACTIONS(1309), - [anon_sym_DASH] = ACTIONS(1307), - [anon_sym_PLUS] = ACTIONS(1307), - [anon_sym_STAR] = ACTIONS(1309), - [anon_sym_AMP] = ACTIONS(1309), - [anon_sym_SEMI] = ACTIONS(1309), - [anon_sym___extension__] = ACTIONS(1307), - [anon_sym_typedef] = ACTIONS(1307), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym___attribute__] = ACTIONS(1307), - [anon_sym___scanf] = ACTIONS(1307), - [anon_sym___printf] = ACTIONS(1307), - [anon_sym___read_mostly] = ACTIONS(1307), - [anon_sym___must_hold] = ACTIONS(1307), - [anon_sym___ro_after_init] = ACTIONS(1307), - [anon_sym___init] = ACTIONS(1307), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1309), - [anon_sym___declspec] = ACTIONS(1307), - [anon_sym___cdecl] = ACTIONS(1307), - [anon_sym___clrcall] = ACTIONS(1307), - [anon_sym___stdcall] = ACTIONS(1307), - [anon_sym___fastcall] = ACTIONS(1307), - [anon_sym___thiscall] = ACTIONS(1307), - [anon_sym___vectorcall] = ACTIONS(1307), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_RBRACE] = ACTIONS(1309), - [anon_sym_signed] = ACTIONS(1307), - [anon_sym_unsigned] = ACTIONS(1307), - [anon_sym_long] = ACTIONS(1307), - [anon_sym_short] = ACTIONS(1307), - [anon_sym_static] = ACTIONS(1307), - [anon_sym_auto] = ACTIONS(1307), - [anon_sym_register] = ACTIONS(1307), - [anon_sym_inline] = ACTIONS(1307), - [anon_sym___inline] = ACTIONS(1307), - [anon_sym___inline__] = ACTIONS(1307), - [anon_sym___forceinline] = ACTIONS(1307), - [anon_sym_thread_local] = ACTIONS(1307), - [anon_sym___thread] = ACTIONS(1307), - [anon_sym_const] = ACTIONS(1307), - [anon_sym_constexpr] = ACTIONS(1307), - [anon_sym_volatile] = ACTIONS(1307), - [anon_sym_restrict] = ACTIONS(1307), - [anon_sym___restrict__] = ACTIONS(1307), - [anon_sym__Atomic] = ACTIONS(1307), - [anon_sym__Noreturn] = ACTIONS(1307), - [anon_sym_noreturn] = ACTIONS(1307), - [anon_sym_alignas] = ACTIONS(1307), - [anon_sym__Alignas] = ACTIONS(1307), - [sym_primitive_type] = ACTIONS(1307), - [anon_sym_enum] = ACTIONS(1307), - [anon_sym_struct] = ACTIONS(1307), - [anon_sym_union] = ACTIONS(1307), - [anon_sym_if] = ACTIONS(1307), - [anon_sym_switch] = ACTIONS(1307), - [anon_sym_case] = ACTIONS(1307), - [anon_sym_default] = ACTIONS(1307), - [anon_sym_while] = ACTIONS(1307), - [anon_sym_do] = ACTIONS(1307), - [anon_sym_for] = ACTIONS(1307), - [anon_sym_return] = ACTIONS(1307), - [anon_sym_break] = ACTIONS(1307), - [anon_sym_continue] = ACTIONS(1307), - [anon_sym_goto] = ACTIONS(1307), - [anon_sym___try] = ACTIONS(1307), - [anon_sym___leave] = ACTIONS(1307), - [anon_sym_DASH_DASH] = ACTIONS(1309), - [anon_sym_PLUS_PLUS] = ACTIONS(1309), - [anon_sym_sizeof] = ACTIONS(1307), - [anon_sym___alignof__] = ACTIONS(1307), - [anon_sym___alignof] = ACTIONS(1307), - [anon_sym__alignof] = ACTIONS(1307), - [anon_sym_alignof] = ACTIONS(1307), - [anon_sym__Alignof] = ACTIONS(1307), - [anon_sym_offsetof] = ACTIONS(1307), - [anon_sym__Generic] = ACTIONS(1307), - [anon_sym_asm] = ACTIONS(1307), - [anon_sym___asm__] = ACTIONS(1307), - [sym_number_literal] = ACTIONS(1309), - [anon_sym_L_SQUOTE] = ACTIONS(1309), - [anon_sym_u_SQUOTE] = ACTIONS(1309), - [anon_sym_U_SQUOTE] = ACTIONS(1309), - [anon_sym_u8_SQUOTE] = ACTIONS(1309), - [anon_sym_SQUOTE] = ACTIONS(1309), - [anon_sym_L_DQUOTE] = ACTIONS(1309), - [anon_sym_u_DQUOTE] = ACTIONS(1309), - [anon_sym_U_DQUOTE] = ACTIONS(1309), - [anon_sym_u8_DQUOTE] = ACTIONS(1309), - [anon_sym_DQUOTE] = ACTIONS(1309), - [sym_true] = ACTIONS(1307), - [sym_false] = ACTIONS(1307), - [anon_sym_NULL] = ACTIONS(1307), - [anon_sym_nullptr] = ACTIONS(1307), + [366] = { + [ts_builtin_sym_end] = ACTIONS(1395), + [sym_identifier] = ACTIONS(1393), + [aux_sym_preproc_include_token1] = ACTIONS(1393), + [aux_sym_preproc_def_token1] = ACTIONS(1393), + [anon_sym_COMMA] = ACTIONS(1395), + [aux_sym_preproc_if_token1] = ACTIONS(1393), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1393), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1393), + [sym_preproc_directive] = ACTIONS(1393), + [anon_sym_LPAREN2] = ACTIONS(1395), + [anon_sym_BANG] = ACTIONS(1395), + [anon_sym_TILDE] = ACTIONS(1395), + [anon_sym_DASH] = ACTIONS(1393), + [anon_sym_PLUS] = ACTIONS(1393), + [anon_sym_STAR] = ACTIONS(1395), + [anon_sym_AMP] = ACTIONS(1395), + [anon_sym___extension__] = ACTIONS(1393), + [anon_sym_typedef] = ACTIONS(1393), + [anon_sym_extern] = ACTIONS(1393), + [anon_sym___attribute__] = ACTIONS(1393), + [anon_sym___scanf] = ACTIONS(1393), + [anon_sym___printf] = ACTIONS(1393), + [anon_sym___read_mostly] = ACTIONS(1393), + [anon_sym___must_hold] = ACTIONS(1393), + [anon_sym___ro_after_init] = ACTIONS(1393), + [anon_sym___noreturn] = ACTIONS(1393), + [anon_sym___cold] = ACTIONS(1393), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1395), + [anon_sym___declspec] = ACTIONS(1393), + [anon_sym___init] = ACTIONS(1393), + [anon_sym___exit] = ACTIONS(1393), + [anon_sym___cdecl] = ACTIONS(1393), + [anon_sym___clrcall] = ACTIONS(1393), + [anon_sym___stdcall] = ACTIONS(1393), + [anon_sym___fastcall] = ACTIONS(1393), + [anon_sym___thiscall] = ACTIONS(1393), + [anon_sym___vectorcall] = ACTIONS(1393), + [anon_sym_LBRACE] = ACTIONS(1395), + [anon_sym_RBRACE] = ACTIONS(1395), + [anon_sym_signed] = ACTIONS(1393), + [anon_sym_unsigned] = ACTIONS(1393), + [anon_sym_long] = ACTIONS(1393), + [anon_sym_short] = ACTIONS(1393), + [anon_sym_static] = ACTIONS(1393), + [anon_sym_auto] = ACTIONS(1393), + [anon_sym_register] = ACTIONS(1393), + [anon_sym_inline] = ACTIONS(1393), + [anon_sym___inline] = ACTIONS(1393), + [anon_sym___inline__] = ACTIONS(1393), + [anon_sym___forceinline] = ACTIONS(1393), + [anon_sym_thread_local] = ACTIONS(1393), + [anon_sym___thread] = ACTIONS(1393), + [anon_sym_const] = ACTIONS(1393), + [anon_sym_constexpr] = ACTIONS(1393), + [anon_sym_volatile] = ACTIONS(1393), + [anon_sym_restrict] = ACTIONS(1393), + [anon_sym___restrict__] = ACTIONS(1393), + [anon_sym__Atomic] = ACTIONS(1393), + [anon_sym__Noreturn] = ACTIONS(1393), + [anon_sym_noreturn] = ACTIONS(1393), + [anon_sym_alignas] = ACTIONS(1393), + [anon_sym__Alignas] = ACTIONS(1393), + [sym_primitive_type] = ACTIONS(1393), + [anon_sym_enum] = ACTIONS(1393), + [anon_sym_struct] = ACTIONS(1393), + [anon_sym_union] = ACTIONS(1393), + [anon_sym_if] = ACTIONS(1393), + [anon_sym_switch] = ACTIONS(1393), + [anon_sym_case] = ACTIONS(1393), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_while] = ACTIONS(1393), + [anon_sym_do] = ACTIONS(1393), + [anon_sym_for] = ACTIONS(1393), + [anon_sym_return] = ACTIONS(1393), + [anon_sym_break] = ACTIONS(1393), + [anon_sym_continue] = ACTIONS(1393), + [anon_sym_goto] = ACTIONS(1393), + [anon_sym_DASH_DASH] = ACTIONS(1395), + [anon_sym_PLUS_PLUS] = ACTIONS(1395), + [anon_sym_sizeof] = ACTIONS(1393), + [anon_sym___alignof__] = ACTIONS(1393), + [anon_sym___alignof] = ACTIONS(1393), + [anon_sym__alignof] = ACTIONS(1393), + [anon_sym_alignof] = ACTIONS(1393), + [anon_sym__Alignof] = ACTIONS(1393), + [anon_sym_offsetof] = ACTIONS(1393), + [anon_sym__Generic] = ACTIONS(1393), + [anon_sym_asm] = ACTIONS(1393), + [anon_sym___asm__] = ACTIONS(1393), + [sym_number_literal] = ACTIONS(1395), + [anon_sym_L_SQUOTE] = ACTIONS(1395), + [anon_sym_u_SQUOTE] = ACTIONS(1395), + [anon_sym_U_SQUOTE] = ACTIONS(1395), + [anon_sym_u8_SQUOTE] = ACTIONS(1395), + [anon_sym_SQUOTE] = ACTIONS(1395), + [anon_sym_L_DQUOTE] = ACTIONS(1395), + [anon_sym_u_DQUOTE] = ACTIONS(1395), + [anon_sym_U_DQUOTE] = ACTIONS(1395), + [anon_sym_u8_DQUOTE] = ACTIONS(1395), + [anon_sym_DQUOTE] = ACTIONS(1395), + [sym_true] = ACTIONS(1393), + [sym_false] = ACTIONS(1393), + [anon_sym_NULL] = ACTIONS(1393), + [anon_sym_nullptr] = ACTIONS(1393), [sym_comment] = ACTIONS(3), }, - [307] = { - [sym_identifier] = ACTIONS(1375), - [aux_sym_preproc_include_token1] = ACTIONS(1375), - [aux_sym_preproc_def_token1] = ACTIONS(1375), - [aux_sym_preproc_if_token1] = ACTIONS(1375), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1375), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1375), - [sym_preproc_directive] = ACTIONS(1375), - [anon_sym_LPAREN2] = ACTIONS(1377), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_TILDE] = ACTIONS(1377), - [anon_sym_DASH] = ACTIONS(1375), - [anon_sym_PLUS] = ACTIONS(1375), - [anon_sym_STAR] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1377), - [anon_sym_SEMI] = ACTIONS(1377), - [anon_sym___extension__] = ACTIONS(1375), - [anon_sym_typedef] = ACTIONS(1375), - [anon_sym_extern] = ACTIONS(1375), - [anon_sym___attribute__] = ACTIONS(1375), - [anon_sym___scanf] = ACTIONS(1375), - [anon_sym___printf] = ACTIONS(1375), - [anon_sym___read_mostly] = ACTIONS(1375), - [anon_sym___must_hold] = ACTIONS(1375), - [anon_sym___ro_after_init] = ACTIONS(1375), - [anon_sym___init] = ACTIONS(1375), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1377), - [anon_sym___declspec] = ACTIONS(1375), - [anon_sym___cdecl] = ACTIONS(1375), - [anon_sym___clrcall] = ACTIONS(1375), - [anon_sym___stdcall] = ACTIONS(1375), - [anon_sym___fastcall] = ACTIONS(1375), - [anon_sym___thiscall] = ACTIONS(1375), - [anon_sym___vectorcall] = ACTIONS(1375), - [anon_sym_LBRACE] = ACTIONS(1377), - [anon_sym_RBRACE] = ACTIONS(1377), - [anon_sym_signed] = ACTIONS(1375), - [anon_sym_unsigned] = ACTIONS(1375), - [anon_sym_long] = ACTIONS(1375), - [anon_sym_short] = ACTIONS(1375), - [anon_sym_static] = ACTIONS(1375), - [anon_sym_auto] = ACTIONS(1375), - [anon_sym_register] = ACTIONS(1375), - [anon_sym_inline] = ACTIONS(1375), - [anon_sym___inline] = ACTIONS(1375), - [anon_sym___inline__] = ACTIONS(1375), - [anon_sym___forceinline] = ACTIONS(1375), - [anon_sym_thread_local] = ACTIONS(1375), - [anon_sym___thread] = ACTIONS(1375), - [anon_sym_const] = ACTIONS(1375), - [anon_sym_constexpr] = ACTIONS(1375), - [anon_sym_volatile] = ACTIONS(1375), - [anon_sym_restrict] = ACTIONS(1375), - [anon_sym___restrict__] = ACTIONS(1375), - [anon_sym__Atomic] = ACTIONS(1375), - [anon_sym__Noreturn] = ACTIONS(1375), - [anon_sym_noreturn] = ACTIONS(1375), - [anon_sym_alignas] = ACTIONS(1375), - [anon_sym__Alignas] = ACTIONS(1375), - [sym_primitive_type] = ACTIONS(1375), - [anon_sym_enum] = ACTIONS(1375), - [anon_sym_struct] = ACTIONS(1375), - [anon_sym_union] = ACTIONS(1375), - [anon_sym_if] = ACTIONS(1375), - [anon_sym_switch] = ACTIONS(1375), - [anon_sym_case] = ACTIONS(1375), - [anon_sym_default] = ACTIONS(1375), - [anon_sym_while] = ACTIONS(1375), - [anon_sym_do] = ACTIONS(1375), - [anon_sym_for] = ACTIONS(1375), - [anon_sym_return] = ACTIONS(1375), - [anon_sym_break] = ACTIONS(1375), - [anon_sym_continue] = ACTIONS(1375), - [anon_sym_goto] = ACTIONS(1375), - [anon_sym___try] = ACTIONS(1375), - [anon_sym___leave] = ACTIONS(1375), - [anon_sym_DASH_DASH] = ACTIONS(1377), - [anon_sym_PLUS_PLUS] = ACTIONS(1377), - [anon_sym_sizeof] = ACTIONS(1375), - [anon_sym___alignof__] = ACTIONS(1375), - [anon_sym___alignof] = ACTIONS(1375), - [anon_sym__alignof] = ACTIONS(1375), - [anon_sym_alignof] = ACTIONS(1375), - [anon_sym__Alignof] = ACTIONS(1375), - [anon_sym_offsetof] = ACTIONS(1375), - [anon_sym__Generic] = ACTIONS(1375), - [anon_sym_asm] = ACTIONS(1375), - [anon_sym___asm__] = ACTIONS(1375), - [sym_number_literal] = ACTIONS(1377), - [anon_sym_L_SQUOTE] = ACTIONS(1377), - [anon_sym_u_SQUOTE] = ACTIONS(1377), - [anon_sym_U_SQUOTE] = ACTIONS(1377), - [anon_sym_u8_SQUOTE] = ACTIONS(1377), - [anon_sym_SQUOTE] = ACTIONS(1377), - [anon_sym_L_DQUOTE] = ACTIONS(1377), - [anon_sym_u_DQUOTE] = ACTIONS(1377), - [anon_sym_U_DQUOTE] = ACTIONS(1377), - [anon_sym_u8_DQUOTE] = ACTIONS(1377), - [anon_sym_DQUOTE] = ACTIONS(1377), - [sym_true] = ACTIONS(1375), - [sym_false] = ACTIONS(1375), - [anon_sym_NULL] = ACTIONS(1375), - [anon_sym_nullptr] = ACTIONS(1375), + [367] = { + [ts_builtin_sym_end] = ACTIONS(1315), + [sym_identifier] = ACTIONS(1313), + [aux_sym_preproc_include_token1] = ACTIONS(1313), + [aux_sym_preproc_def_token1] = ACTIONS(1313), + [anon_sym_COMMA] = ACTIONS(1315), + [aux_sym_preproc_if_token1] = ACTIONS(1313), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1313), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1313), + [sym_preproc_directive] = ACTIONS(1313), + [anon_sym_LPAREN2] = ACTIONS(1315), + [anon_sym_BANG] = ACTIONS(1315), + [anon_sym_TILDE] = ACTIONS(1315), + [anon_sym_DASH] = ACTIONS(1313), + [anon_sym_PLUS] = ACTIONS(1313), + [anon_sym_STAR] = ACTIONS(1315), + [anon_sym_AMP] = ACTIONS(1315), + [anon_sym___extension__] = ACTIONS(1313), + [anon_sym_typedef] = ACTIONS(1313), + [anon_sym_extern] = ACTIONS(1313), + [anon_sym___attribute__] = ACTIONS(1313), + [anon_sym___scanf] = ACTIONS(1313), + [anon_sym___printf] = ACTIONS(1313), + [anon_sym___read_mostly] = ACTIONS(1313), + [anon_sym___must_hold] = ACTIONS(1313), + [anon_sym___ro_after_init] = ACTIONS(1313), + [anon_sym___noreturn] = ACTIONS(1313), + [anon_sym___cold] = ACTIONS(1313), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1315), + [anon_sym___declspec] = ACTIONS(1313), + [anon_sym___init] = ACTIONS(1313), + [anon_sym___exit] = ACTIONS(1313), + [anon_sym___cdecl] = ACTIONS(1313), + [anon_sym___clrcall] = ACTIONS(1313), + [anon_sym___stdcall] = ACTIONS(1313), + [anon_sym___fastcall] = ACTIONS(1313), + [anon_sym___thiscall] = ACTIONS(1313), + [anon_sym___vectorcall] = ACTIONS(1313), + [anon_sym_LBRACE] = ACTIONS(1315), + [anon_sym_RBRACE] = ACTIONS(1315), + [anon_sym_signed] = ACTIONS(1313), + [anon_sym_unsigned] = ACTIONS(1313), + [anon_sym_long] = ACTIONS(1313), + [anon_sym_short] = ACTIONS(1313), + [anon_sym_static] = ACTIONS(1313), + [anon_sym_auto] = ACTIONS(1313), + [anon_sym_register] = ACTIONS(1313), + [anon_sym_inline] = ACTIONS(1313), + [anon_sym___inline] = ACTIONS(1313), + [anon_sym___inline__] = ACTIONS(1313), + [anon_sym___forceinline] = ACTIONS(1313), + [anon_sym_thread_local] = ACTIONS(1313), + [anon_sym___thread] = ACTIONS(1313), + [anon_sym_const] = ACTIONS(1313), + [anon_sym_constexpr] = ACTIONS(1313), + [anon_sym_volatile] = ACTIONS(1313), + [anon_sym_restrict] = ACTIONS(1313), + [anon_sym___restrict__] = ACTIONS(1313), + [anon_sym__Atomic] = ACTIONS(1313), + [anon_sym__Noreturn] = ACTIONS(1313), + [anon_sym_noreturn] = ACTIONS(1313), + [anon_sym_alignas] = ACTIONS(1313), + [anon_sym__Alignas] = ACTIONS(1313), + [sym_primitive_type] = ACTIONS(1313), + [anon_sym_enum] = ACTIONS(1313), + [anon_sym_struct] = ACTIONS(1313), + [anon_sym_union] = ACTIONS(1313), + [anon_sym_if] = ACTIONS(1313), + [anon_sym_switch] = ACTIONS(1313), + [anon_sym_case] = ACTIONS(1313), + [anon_sym_default] = ACTIONS(1313), + [anon_sym_while] = ACTIONS(1313), + [anon_sym_do] = ACTIONS(1313), + [anon_sym_for] = ACTIONS(1313), + [anon_sym_return] = ACTIONS(1313), + [anon_sym_break] = ACTIONS(1313), + [anon_sym_continue] = ACTIONS(1313), + [anon_sym_goto] = ACTIONS(1313), + [anon_sym_DASH_DASH] = ACTIONS(1315), + [anon_sym_PLUS_PLUS] = ACTIONS(1315), + [anon_sym_sizeof] = ACTIONS(1313), + [anon_sym___alignof__] = ACTIONS(1313), + [anon_sym___alignof] = ACTIONS(1313), + [anon_sym__alignof] = ACTIONS(1313), + [anon_sym_alignof] = ACTIONS(1313), + [anon_sym__Alignof] = ACTIONS(1313), + [anon_sym_offsetof] = ACTIONS(1313), + [anon_sym__Generic] = ACTIONS(1313), + [anon_sym_asm] = ACTIONS(1313), + [anon_sym___asm__] = ACTIONS(1313), + [sym_number_literal] = ACTIONS(1315), + [anon_sym_L_SQUOTE] = ACTIONS(1315), + [anon_sym_u_SQUOTE] = ACTIONS(1315), + [anon_sym_U_SQUOTE] = ACTIONS(1315), + [anon_sym_u8_SQUOTE] = ACTIONS(1315), + [anon_sym_SQUOTE] = ACTIONS(1315), + [anon_sym_L_DQUOTE] = ACTIONS(1315), + [anon_sym_u_DQUOTE] = ACTIONS(1315), + [anon_sym_U_DQUOTE] = ACTIONS(1315), + [anon_sym_u8_DQUOTE] = ACTIONS(1315), + [anon_sym_DQUOTE] = ACTIONS(1315), + [sym_true] = ACTIONS(1313), + [sym_false] = ACTIONS(1313), + [anon_sym_NULL] = ACTIONS(1313), + [anon_sym_nullptr] = ACTIONS(1313), [sym_comment] = ACTIONS(3), }, - [308] = { - [sym_identifier] = ACTIONS(1343), - [aux_sym_preproc_include_token1] = ACTIONS(1343), - [aux_sym_preproc_def_token1] = ACTIONS(1343), - [aux_sym_preproc_if_token1] = ACTIONS(1343), - [aux_sym_preproc_if_token2] = ACTIONS(1343), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1343), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1343), - [sym_preproc_directive] = ACTIONS(1343), - [anon_sym_LPAREN2] = ACTIONS(1345), - [anon_sym_BANG] = ACTIONS(1345), - [anon_sym_TILDE] = ACTIONS(1345), - [anon_sym_DASH] = ACTIONS(1343), - [anon_sym_PLUS] = ACTIONS(1343), - [anon_sym_STAR] = ACTIONS(1345), - [anon_sym_AMP] = ACTIONS(1345), - [anon_sym_SEMI] = ACTIONS(1345), - [anon_sym___extension__] = ACTIONS(1343), - [anon_sym_typedef] = ACTIONS(1343), - [anon_sym_extern] = ACTIONS(1343), - [anon_sym___attribute__] = ACTIONS(1343), - [anon_sym___scanf] = ACTIONS(1343), - [anon_sym___printf] = ACTIONS(1343), - [anon_sym___read_mostly] = ACTIONS(1343), - [anon_sym___must_hold] = ACTIONS(1343), - [anon_sym___ro_after_init] = ACTIONS(1343), - [anon_sym___init] = ACTIONS(1343), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1345), - [anon_sym___declspec] = ACTIONS(1343), - [anon_sym___cdecl] = ACTIONS(1343), - [anon_sym___clrcall] = ACTIONS(1343), - [anon_sym___stdcall] = ACTIONS(1343), - [anon_sym___fastcall] = ACTIONS(1343), - [anon_sym___thiscall] = ACTIONS(1343), - [anon_sym___vectorcall] = ACTIONS(1343), - [anon_sym_LBRACE] = ACTIONS(1345), - [anon_sym_signed] = ACTIONS(1343), - [anon_sym_unsigned] = ACTIONS(1343), - [anon_sym_long] = ACTIONS(1343), - [anon_sym_short] = ACTIONS(1343), - [anon_sym_static] = ACTIONS(1343), - [anon_sym_auto] = ACTIONS(1343), - [anon_sym_register] = ACTIONS(1343), - [anon_sym_inline] = ACTIONS(1343), - [anon_sym___inline] = ACTIONS(1343), - [anon_sym___inline__] = ACTIONS(1343), - [anon_sym___forceinline] = ACTIONS(1343), - [anon_sym_thread_local] = ACTIONS(1343), - [anon_sym___thread] = ACTIONS(1343), - [anon_sym_const] = ACTIONS(1343), - [anon_sym_constexpr] = ACTIONS(1343), - [anon_sym_volatile] = ACTIONS(1343), - [anon_sym_restrict] = ACTIONS(1343), - [anon_sym___restrict__] = ACTIONS(1343), - [anon_sym__Atomic] = ACTIONS(1343), - [anon_sym__Noreturn] = ACTIONS(1343), - [anon_sym_noreturn] = ACTIONS(1343), - [anon_sym_alignas] = ACTIONS(1343), - [anon_sym__Alignas] = ACTIONS(1343), - [sym_primitive_type] = ACTIONS(1343), - [anon_sym_enum] = ACTIONS(1343), - [anon_sym_struct] = ACTIONS(1343), - [anon_sym_union] = ACTIONS(1343), - [anon_sym_if] = ACTIONS(1343), - [anon_sym_switch] = ACTIONS(1343), - [anon_sym_case] = ACTIONS(1343), - [anon_sym_default] = ACTIONS(1343), - [anon_sym_while] = ACTIONS(1343), - [anon_sym_do] = ACTIONS(1343), - [anon_sym_for] = ACTIONS(1343), - [anon_sym_return] = ACTIONS(1343), - [anon_sym_break] = ACTIONS(1343), - [anon_sym_continue] = ACTIONS(1343), - [anon_sym_goto] = ACTIONS(1343), - [anon_sym___try] = ACTIONS(1343), - [anon_sym___leave] = ACTIONS(1343), - [anon_sym_DASH_DASH] = ACTIONS(1345), - [anon_sym_PLUS_PLUS] = ACTIONS(1345), - [anon_sym_sizeof] = ACTIONS(1343), - [anon_sym___alignof__] = ACTIONS(1343), - [anon_sym___alignof] = ACTIONS(1343), - [anon_sym__alignof] = ACTIONS(1343), - [anon_sym_alignof] = ACTIONS(1343), - [anon_sym__Alignof] = ACTIONS(1343), - [anon_sym_offsetof] = ACTIONS(1343), - [anon_sym__Generic] = ACTIONS(1343), - [anon_sym_asm] = ACTIONS(1343), - [anon_sym___asm__] = ACTIONS(1343), - [sym_number_literal] = ACTIONS(1345), - [anon_sym_L_SQUOTE] = ACTIONS(1345), - [anon_sym_u_SQUOTE] = ACTIONS(1345), - [anon_sym_U_SQUOTE] = ACTIONS(1345), - [anon_sym_u8_SQUOTE] = ACTIONS(1345), - [anon_sym_SQUOTE] = ACTIONS(1345), - [anon_sym_L_DQUOTE] = ACTIONS(1345), - [anon_sym_u_DQUOTE] = ACTIONS(1345), - [anon_sym_U_DQUOTE] = ACTIONS(1345), - [anon_sym_u8_DQUOTE] = ACTIONS(1345), - [anon_sym_DQUOTE] = ACTIONS(1345), - [sym_true] = ACTIONS(1343), - [sym_false] = ACTIONS(1343), - [anon_sym_NULL] = ACTIONS(1343), - [anon_sym_nullptr] = ACTIONS(1343), + [368] = { + [ts_builtin_sym_end] = ACTIONS(1295), + [sym_identifier] = ACTIONS(1293), + [aux_sym_preproc_include_token1] = ACTIONS(1293), + [aux_sym_preproc_def_token1] = ACTIONS(1293), + [aux_sym_preproc_if_token1] = ACTIONS(1293), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1293), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1293), + [sym_preproc_directive] = ACTIONS(1293), + [anon_sym_LPAREN2] = ACTIONS(1295), + [anon_sym_BANG] = ACTIONS(1295), + [anon_sym_TILDE] = ACTIONS(1295), + [anon_sym_DASH] = ACTIONS(1293), + [anon_sym_PLUS] = ACTIONS(1293), + [anon_sym_STAR] = ACTIONS(1295), + [anon_sym_AMP] = ACTIONS(1295), + [anon_sym___extension__] = ACTIONS(1293), + [anon_sym_typedef] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1293), + [anon_sym___attribute__] = ACTIONS(1293), + [anon_sym___scanf] = ACTIONS(1293), + [anon_sym___printf] = ACTIONS(1293), + [anon_sym___read_mostly] = ACTIONS(1293), + [anon_sym___must_hold] = ACTIONS(1293), + [anon_sym___ro_after_init] = ACTIONS(1293), + [anon_sym___noreturn] = ACTIONS(1293), + [anon_sym___cold] = ACTIONS(1293), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1295), + [anon_sym___declspec] = ACTIONS(1293), + [anon_sym___init] = ACTIONS(1293), + [anon_sym___exit] = ACTIONS(1293), + [anon_sym___cdecl] = ACTIONS(1293), + [anon_sym___clrcall] = ACTIONS(1293), + [anon_sym___stdcall] = ACTIONS(1293), + [anon_sym___fastcall] = ACTIONS(1293), + [anon_sym___thiscall] = ACTIONS(1293), + [anon_sym___vectorcall] = ACTIONS(1293), + [anon_sym_LBRACE] = ACTIONS(1295), + [anon_sym_signed] = ACTIONS(1293), + [anon_sym_unsigned] = ACTIONS(1293), + [anon_sym_long] = ACTIONS(1293), + [anon_sym_short] = ACTIONS(1293), + [anon_sym_static] = ACTIONS(1293), + [anon_sym_auto] = ACTIONS(1293), + [anon_sym_register] = ACTIONS(1293), + [anon_sym_inline] = ACTIONS(1293), + [anon_sym___inline] = ACTIONS(1293), + [anon_sym___inline__] = ACTIONS(1293), + [anon_sym___forceinline] = ACTIONS(1293), + [anon_sym_thread_local] = ACTIONS(1293), + [anon_sym___thread] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1293), + [anon_sym_constexpr] = ACTIONS(1293), + [anon_sym_volatile] = ACTIONS(1293), + [anon_sym_restrict] = ACTIONS(1293), + [anon_sym___restrict__] = ACTIONS(1293), + [anon_sym__Atomic] = ACTIONS(1293), + [anon_sym__Noreturn] = ACTIONS(1293), + [anon_sym_noreturn] = ACTIONS(1293), + [anon_sym_alignas] = ACTIONS(1293), + [anon_sym__Alignas] = ACTIONS(1293), + [sym_primitive_type] = ACTIONS(1293), + [anon_sym_enum] = ACTIONS(1293), + [anon_sym_struct] = ACTIONS(1293), + [anon_sym_union] = ACTIONS(1293), + [anon_sym_if] = ACTIONS(1293), + [anon_sym_switch] = ACTIONS(1293), + [anon_sym_case] = ACTIONS(1293), + [anon_sym_default] = ACTIONS(1293), + [anon_sym_while] = ACTIONS(1293), + [anon_sym_do] = ACTIONS(1293), + [anon_sym_for] = ACTIONS(1293), + [anon_sym_return] = ACTIONS(1293), + [anon_sym_break] = ACTIONS(1293), + [anon_sym_continue] = ACTIONS(1293), + [anon_sym_goto] = ACTIONS(1293), + [anon_sym_DASH_DASH] = ACTIONS(1295), + [anon_sym_PLUS_PLUS] = ACTIONS(1295), + [anon_sym_sizeof] = ACTIONS(1293), + [anon_sym___alignof__] = ACTIONS(1293), + [anon_sym___alignof] = ACTIONS(1293), + [anon_sym__alignof] = ACTIONS(1293), + [anon_sym_alignof] = ACTIONS(1293), + [anon_sym__Alignof] = ACTIONS(1293), + [anon_sym_offsetof] = ACTIONS(1293), + [anon_sym__Generic] = ACTIONS(1293), + [anon_sym_asm] = ACTIONS(1293), + [anon_sym___asm__] = ACTIONS(1293), + [sym_number_literal] = ACTIONS(1295), + [anon_sym_L_SQUOTE] = ACTIONS(1295), + [anon_sym_u_SQUOTE] = ACTIONS(1295), + [anon_sym_U_SQUOTE] = ACTIONS(1295), + [anon_sym_u8_SQUOTE] = ACTIONS(1295), + [anon_sym_SQUOTE] = ACTIONS(1295), + [anon_sym_L_DQUOTE] = ACTIONS(1295), + [anon_sym_u_DQUOTE] = ACTIONS(1295), + [anon_sym_U_DQUOTE] = ACTIONS(1295), + [anon_sym_u8_DQUOTE] = ACTIONS(1295), + [anon_sym_DQUOTE] = ACTIONS(1295), + [sym_true] = ACTIONS(1293), + [sym_false] = ACTIONS(1293), + [anon_sym_NULL] = ACTIONS(1293), + [anon_sym_nullptr] = ACTIONS(1293), [sym_comment] = ACTIONS(3), }, - [309] = { - [sym_identifier] = ACTIONS(1339), - [aux_sym_preproc_include_token1] = ACTIONS(1339), - [aux_sym_preproc_def_token1] = ACTIONS(1339), - [aux_sym_preproc_if_token1] = ACTIONS(1339), - [aux_sym_preproc_if_token2] = ACTIONS(1339), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1339), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1339), - [sym_preproc_directive] = ACTIONS(1339), - [anon_sym_LPAREN2] = ACTIONS(1341), - [anon_sym_BANG] = ACTIONS(1341), - [anon_sym_TILDE] = ACTIONS(1341), - [anon_sym_DASH] = ACTIONS(1339), - [anon_sym_PLUS] = ACTIONS(1339), - [anon_sym_STAR] = ACTIONS(1341), - [anon_sym_AMP] = ACTIONS(1341), - [anon_sym_SEMI] = ACTIONS(1341), - [anon_sym___extension__] = ACTIONS(1339), - [anon_sym_typedef] = ACTIONS(1339), - [anon_sym_extern] = ACTIONS(1339), - [anon_sym___attribute__] = ACTIONS(1339), - [anon_sym___scanf] = ACTIONS(1339), - [anon_sym___printf] = ACTIONS(1339), - [anon_sym___read_mostly] = ACTIONS(1339), - [anon_sym___must_hold] = ACTIONS(1339), - [anon_sym___ro_after_init] = ACTIONS(1339), - [anon_sym___init] = ACTIONS(1339), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1341), - [anon_sym___declspec] = ACTIONS(1339), - [anon_sym___cdecl] = ACTIONS(1339), - [anon_sym___clrcall] = ACTIONS(1339), - [anon_sym___stdcall] = ACTIONS(1339), - [anon_sym___fastcall] = ACTIONS(1339), - [anon_sym___thiscall] = ACTIONS(1339), - [anon_sym___vectorcall] = ACTIONS(1339), - [anon_sym_LBRACE] = ACTIONS(1341), - [anon_sym_signed] = ACTIONS(1339), - [anon_sym_unsigned] = ACTIONS(1339), - [anon_sym_long] = ACTIONS(1339), - [anon_sym_short] = ACTIONS(1339), - [anon_sym_static] = ACTIONS(1339), - [anon_sym_auto] = ACTIONS(1339), - [anon_sym_register] = ACTIONS(1339), - [anon_sym_inline] = ACTIONS(1339), - [anon_sym___inline] = ACTIONS(1339), - [anon_sym___inline__] = ACTIONS(1339), - [anon_sym___forceinline] = ACTIONS(1339), - [anon_sym_thread_local] = ACTIONS(1339), - [anon_sym___thread] = ACTIONS(1339), - [anon_sym_const] = ACTIONS(1339), - [anon_sym_constexpr] = ACTIONS(1339), - [anon_sym_volatile] = ACTIONS(1339), - [anon_sym_restrict] = ACTIONS(1339), - [anon_sym___restrict__] = ACTIONS(1339), - [anon_sym__Atomic] = ACTIONS(1339), - [anon_sym__Noreturn] = ACTIONS(1339), - [anon_sym_noreturn] = ACTIONS(1339), - [anon_sym_alignas] = ACTIONS(1339), - [anon_sym__Alignas] = ACTIONS(1339), - [sym_primitive_type] = ACTIONS(1339), - [anon_sym_enum] = ACTIONS(1339), - [anon_sym_struct] = ACTIONS(1339), - [anon_sym_union] = ACTIONS(1339), - [anon_sym_if] = ACTIONS(1339), - [anon_sym_switch] = ACTIONS(1339), - [anon_sym_case] = ACTIONS(1339), - [anon_sym_default] = ACTIONS(1339), - [anon_sym_while] = ACTIONS(1339), - [anon_sym_do] = ACTIONS(1339), - [anon_sym_for] = ACTIONS(1339), - [anon_sym_return] = ACTIONS(1339), - [anon_sym_break] = ACTIONS(1339), - [anon_sym_continue] = ACTIONS(1339), - [anon_sym_goto] = ACTIONS(1339), - [anon_sym___try] = ACTIONS(1339), - [anon_sym___leave] = ACTIONS(1339), - [anon_sym_DASH_DASH] = ACTIONS(1341), - [anon_sym_PLUS_PLUS] = ACTIONS(1341), - [anon_sym_sizeof] = ACTIONS(1339), - [anon_sym___alignof__] = ACTIONS(1339), - [anon_sym___alignof] = ACTIONS(1339), - [anon_sym__alignof] = ACTIONS(1339), - [anon_sym_alignof] = ACTIONS(1339), - [anon_sym__Alignof] = ACTIONS(1339), - [anon_sym_offsetof] = ACTIONS(1339), - [anon_sym__Generic] = ACTIONS(1339), - [anon_sym_asm] = ACTIONS(1339), - [anon_sym___asm__] = ACTIONS(1339), - [sym_number_literal] = ACTIONS(1341), - [anon_sym_L_SQUOTE] = ACTIONS(1341), - [anon_sym_u_SQUOTE] = ACTIONS(1341), - [anon_sym_U_SQUOTE] = ACTIONS(1341), - [anon_sym_u8_SQUOTE] = ACTIONS(1341), - [anon_sym_SQUOTE] = ACTIONS(1341), - [anon_sym_L_DQUOTE] = ACTIONS(1341), - [anon_sym_u_DQUOTE] = ACTIONS(1341), - [anon_sym_U_DQUOTE] = ACTIONS(1341), - [anon_sym_u8_DQUOTE] = ACTIONS(1341), - [anon_sym_DQUOTE] = ACTIONS(1341), - [sym_true] = ACTIONS(1339), - [sym_false] = ACTIONS(1339), - [anon_sym_NULL] = ACTIONS(1339), - [anon_sym_nullptr] = ACTIONS(1339), + [369] = { + [ts_builtin_sym_end] = ACTIONS(1291), + [sym_identifier] = ACTIONS(1289), + [aux_sym_preproc_include_token1] = ACTIONS(1289), + [aux_sym_preproc_def_token1] = ACTIONS(1289), + [aux_sym_preproc_if_token1] = ACTIONS(1289), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1289), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1289), + [sym_preproc_directive] = ACTIONS(1289), + [anon_sym_LPAREN2] = ACTIONS(1291), + [anon_sym_BANG] = ACTIONS(1291), + [anon_sym_TILDE] = ACTIONS(1291), + [anon_sym_DASH] = ACTIONS(1289), + [anon_sym_PLUS] = ACTIONS(1289), + [anon_sym_STAR] = ACTIONS(1291), + [anon_sym_AMP] = ACTIONS(1291), + [anon_sym___extension__] = ACTIONS(1289), + [anon_sym_typedef] = ACTIONS(1289), + [anon_sym_extern] = ACTIONS(1289), + [anon_sym___attribute__] = ACTIONS(1289), + [anon_sym___scanf] = ACTIONS(1289), + [anon_sym___printf] = ACTIONS(1289), + [anon_sym___read_mostly] = ACTIONS(1289), + [anon_sym___must_hold] = ACTIONS(1289), + [anon_sym___ro_after_init] = ACTIONS(1289), + [anon_sym___noreturn] = ACTIONS(1289), + [anon_sym___cold] = ACTIONS(1289), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1291), + [anon_sym___declspec] = ACTIONS(1289), + [anon_sym___init] = ACTIONS(1289), + [anon_sym___exit] = ACTIONS(1289), + [anon_sym___cdecl] = ACTIONS(1289), + [anon_sym___clrcall] = ACTIONS(1289), + [anon_sym___stdcall] = ACTIONS(1289), + [anon_sym___fastcall] = ACTIONS(1289), + [anon_sym___thiscall] = ACTIONS(1289), + [anon_sym___vectorcall] = ACTIONS(1289), + [anon_sym_LBRACE] = ACTIONS(1291), + [anon_sym_signed] = ACTIONS(1289), + [anon_sym_unsigned] = ACTIONS(1289), + [anon_sym_long] = ACTIONS(1289), + [anon_sym_short] = ACTIONS(1289), + [anon_sym_static] = ACTIONS(1289), + [anon_sym_auto] = ACTIONS(1289), + [anon_sym_register] = ACTIONS(1289), + [anon_sym_inline] = ACTIONS(1289), + [anon_sym___inline] = ACTIONS(1289), + [anon_sym___inline__] = ACTIONS(1289), + [anon_sym___forceinline] = ACTIONS(1289), + [anon_sym_thread_local] = ACTIONS(1289), + [anon_sym___thread] = ACTIONS(1289), + [anon_sym_const] = ACTIONS(1289), + [anon_sym_constexpr] = ACTIONS(1289), + [anon_sym_volatile] = ACTIONS(1289), + [anon_sym_restrict] = ACTIONS(1289), + [anon_sym___restrict__] = ACTIONS(1289), + [anon_sym__Atomic] = ACTIONS(1289), + [anon_sym__Noreturn] = ACTIONS(1289), + [anon_sym_noreturn] = ACTIONS(1289), + [anon_sym_alignas] = ACTIONS(1289), + [anon_sym__Alignas] = ACTIONS(1289), + [sym_primitive_type] = ACTIONS(1289), + [anon_sym_enum] = ACTIONS(1289), + [anon_sym_struct] = ACTIONS(1289), + [anon_sym_union] = ACTIONS(1289), + [anon_sym_if] = ACTIONS(1289), + [anon_sym_switch] = ACTIONS(1289), + [anon_sym_case] = ACTIONS(1289), + [anon_sym_default] = ACTIONS(1289), + [anon_sym_while] = ACTIONS(1289), + [anon_sym_do] = ACTIONS(1289), + [anon_sym_for] = ACTIONS(1289), + [anon_sym_return] = ACTIONS(1289), + [anon_sym_break] = ACTIONS(1289), + [anon_sym_continue] = ACTIONS(1289), + [anon_sym_goto] = ACTIONS(1289), + [anon_sym_DASH_DASH] = ACTIONS(1291), + [anon_sym_PLUS_PLUS] = ACTIONS(1291), + [anon_sym_sizeof] = ACTIONS(1289), + [anon_sym___alignof__] = ACTIONS(1289), + [anon_sym___alignof] = ACTIONS(1289), + [anon_sym__alignof] = ACTIONS(1289), + [anon_sym_alignof] = ACTIONS(1289), + [anon_sym__Alignof] = ACTIONS(1289), + [anon_sym_offsetof] = ACTIONS(1289), + [anon_sym__Generic] = ACTIONS(1289), + [anon_sym_asm] = ACTIONS(1289), + [anon_sym___asm__] = ACTIONS(1289), + [sym_number_literal] = ACTIONS(1291), + [anon_sym_L_SQUOTE] = ACTIONS(1291), + [anon_sym_u_SQUOTE] = ACTIONS(1291), + [anon_sym_U_SQUOTE] = ACTIONS(1291), + [anon_sym_u8_SQUOTE] = ACTIONS(1291), + [anon_sym_SQUOTE] = ACTIONS(1291), + [anon_sym_L_DQUOTE] = ACTIONS(1291), + [anon_sym_u_DQUOTE] = ACTIONS(1291), + [anon_sym_U_DQUOTE] = ACTIONS(1291), + [anon_sym_u8_DQUOTE] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1291), + [sym_true] = ACTIONS(1289), + [sym_false] = ACTIONS(1289), + [anon_sym_NULL] = ACTIONS(1289), + [anon_sym_nullptr] = ACTIONS(1289), [sym_comment] = ACTIONS(3), }, - [310] = { - [sym_expression] = STATE(683), - [sym__string] = STATE(663), - [sym_conditional_expression] = STATE(663), - [sym_assignment_expression] = STATE(663), - [sym_pointer_expression] = STATE(670), - [sym_unary_expression] = STATE(663), - [sym_binary_expression] = STATE(663), - [sym_update_expression] = STATE(663), - [sym_cast_expression] = STATE(663), - [sym_sizeof_expression] = STATE(663), - [sym_alignof_expression] = STATE(663), - [sym_offsetof_expression] = STATE(663), - [sym_generic_expression] = STATE(663), - [sym_subscript_expression] = STATE(670), - [sym_call_expression] = STATE(670), - [sym_gnu_asm_expression] = STATE(663), - [sym_field_expression] = STATE(670), - [sym_compound_literal_expression] = STATE(663), - [sym_parenthesized_expression] = STATE(670), - [sym_initializer_list] = STATE(661), - [sym_char_literal] = STATE(663), - [sym_concatenated_string] = STATE(663), - [sym_string_literal] = STATE(659), - [sym_null] = STATE(663), - [sym_identifier] = ACTIONS(1397), - [anon_sym_COMMA] = ACTIONS(1399), - [anon_sym_RPAREN] = ACTIONS(1399), - [anon_sym_LPAREN2] = ACTIONS(1399), - [anon_sym_BANG] = ACTIONS(1401), - [anon_sym_TILDE] = ACTIONS(1403), - [anon_sym_DASH] = ACTIONS(1405), - [anon_sym_PLUS] = ACTIONS(1405), - [anon_sym_STAR] = ACTIONS(1405), - [anon_sym_SLASH] = ACTIONS(1405), - [anon_sym_PERCENT] = ACTIONS(1405), - [anon_sym_PIPE_PIPE] = ACTIONS(1399), - [anon_sym_AMP_AMP] = ACTIONS(1399), - [anon_sym_PIPE] = ACTIONS(1405), - [anon_sym_CARET] = ACTIONS(1405), - [anon_sym_AMP] = ACTIONS(1405), - [anon_sym_EQ_EQ] = ACTIONS(1399), - [anon_sym_BANG_EQ] = ACTIONS(1399), - [anon_sym_GT] = ACTIONS(1405), - [anon_sym_GT_EQ] = ACTIONS(1399), - [anon_sym_LT_EQ] = ACTIONS(1399), - [anon_sym_LT] = ACTIONS(1405), - [anon_sym_LT_LT] = ACTIONS(1405), - [anon_sym_GT_GT] = ACTIONS(1405), - [anon_sym_SEMI] = ACTIONS(1399), - [anon_sym___attribute__] = ACTIONS(1405), - [anon_sym___scanf] = ACTIONS(1405), - [anon_sym___printf] = ACTIONS(1405), - [anon_sym___read_mostly] = ACTIONS(1405), - [anon_sym___must_hold] = ACTIONS(1405), - [anon_sym___ro_after_init] = ACTIONS(1405), - [anon_sym___init] = ACTIONS(1405), - [anon_sym_LBRACE] = ACTIONS(1407), - [anon_sym_RBRACE] = ACTIONS(1399), - [anon_sym_LBRACK] = ACTIONS(1399), - [anon_sym_EQ] = ACTIONS(1405), - [anon_sym_COLON] = ACTIONS(1399), - [anon_sym_QMARK] = ACTIONS(1399), - [anon_sym_STAR_EQ] = ACTIONS(1399), - [anon_sym_SLASH_EQ] = ACTIONS(1399), - [anon_sym_PERCENT_EQ] = ACTIONS(1399), - [anon_sym_PLUS_EQ] = ACTIONS(1399), - [anon_sym_DASH_EQ] = ACTIONS(1399), - [anon_sym_LT_LT_EQ] = ACTIONS(1399), - [anon_sym_GT_GT_EQ] = ACTIONS(1399), - [anon_sym_AMP_EQ] = ACTIONS(1399), - [anon_sym_CARET_EQ] = ACTIONS(1399), - [anon_sym_PIPE_EQ] = ACTIONS(1399), - [anon_sym_DASH_DASH] = ACTIONS(1399), - [anon_sym_PLUS_PLUS] = ACTIONS(1399), - [anon_sym_sizeof] = ACTIONS(1409), - [anon_sym___alignof__] = ACTIONS(89), - [anon_sym___alignof] = ACTIONS(89), - [anon_sym__alignof] = ACTIONS(89), - [anon_sym_alignof] = ACTIONS(89), - [anon_sym__Alignof] = ACTIONS(89), - [anon_sym_offsetof] = ACTIONS(91), - [anon_sym__Generic] = ACTIONS(93), - [anon_sym_asm] = ACTIONS(95), - [anon_sym___asm__] = ACTIONS(95), - [anon_sym_DOT] = ACTIONS(1405), - [anon_sym_DASH_GT] = ACTIONS(1399), - [sym_number_literal] = ACTIONS(163), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(165), - [sym_false] = ACTIONS(165), - [anon_sym_NULL] = ACTIONS(105), - [anon_sym_nullptr] = ACTIONS(105), + [370] = { + [ts_builtin_sym_end] = ACTIONS(1323), + [sym_identifier] = ACTIONS(1321), + [aux_sym_preproc_include_token1] = ACTIONS(1321), + [aux_sym_preproc_def_token1] = ACTIONS(1321), + [aux_sym_preproc_if_token1] = ACTIONS(1321), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1321), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1321), + [sym_preproc_directive] = ACTIONS(1321), + [anon_sym_LPAREN2] = ACTIONS(1323), + [anon_sym_BANG] = ACTIONS(1323), + [anon_sym_TILDE] = ACTIONS(1323), + [anon_sym_DASH] = ACTIONS(1321), + [anon_sym_PLUS] = ACTIONS(1321), + [anon_sym_STAR] = ACTIONS(1323), + [anon_sym_AMP] = ACTIONS(1323), + [anon_sym___extension__] = ACTIONS(1321), + [anon_sym_typedef] = ACTIONS(1321), + [anon_sym_extern] = ACTIONS(1321), + [anon_sym___attribute__] = ACTIONS(1321), + [anon_sym___scanf] = ACTIONS(1321), + [anon_sym___printf] = ACTIONS(1321), + [anon_sym___read_mostly] = ACTIONS(1321), + [anon_sym___must_hold] = ACTIONS(1321), + [anon_sym___ro_after_init] = ACTIONS(1321), + [anon_sym___noreturn] = ACTIONS(1321), + [anon_sym___cold] = ACTIONS(1321), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1323), + [anon_sym___declspec] = ACTIONS(1321), + [anon_sym___init] = ACTIONS(1321), + [anon_sym___exit] = ACTIONS(1321), + [anon_sym___cdecl] = ACTIONS(1321), + [anon_sym___clrcall] = ACTIONS(1321), + [anon_sym___stdcall] = ACTIONS(1321), + [anon_sym___fastcall] = ACTIONS(1321), + [anon_sym___thiscall] = ACTIONS(1321), + [anon_sym___vectorcall] = ACTIONS(1321), + [anon_sym_LBRACE] = ACTIONS(1323), + [anon_sym_signed] = ACTIONS(1321), + [anon_sym_unsigned] = ACTIONS(1321), + [anon_sym_long] = ACTIONS(1321), + [anon_sym_short] = ACTIONS(1321), + [anon_sym_static] = ACTIONS(1321), + [anon_sym_auto] = ACTIONS(1321), + [anon_sym_register] = ACTIONS(1321), + [anon_sym_inline] = ACTIONS(1321), + [anon_sym___inline] = ACTIONS(1321), + [anon_sym___inline__] = ACTIONS(1321), + [anon_sym___forceinline] = ACTIONS(1321), + [anon_sym_thread_local] = ACTIONS(1321), + [anon_sym___thread] = ACTIONS(1321), + [anon_sym_const] = ACTIONS(1321), + [anon_sym_constexpr] = ACTIONS(1321), + [anon_sym_volatile] = ACTIONS(1321), + [anon_sym_restrict] = ACTIONS(1321), + [anon_sym___restrict__] = ACTIONS(1321), + [anon_sym__Atomic] = ACTIONS(1321), + [anon_sym__Noreturn] = ACTIONS(1321), + [anon_sym_noreturn] = ACTIONS(1321), + [anon_sym_alignas] = ACTIONS(1321), + [anon_sym__Alignas] = ACTIONS(1321), + [sym_primitive_type] = ACTIONS(1321), + [anon_sym_enum] = ACTIONS(1321), + [anon_sym_struct] = ACTIONS(1321), + [anon_sym_union] = ACTIONS(1321), + [anon_sym_if] = ACTIONS(1321), + [anon_sym_switch] = ACTIONS(1321), + [anon_sym_case] = ACTIONS(1321), + [anon_sym_default] = ACTIONS(1321), + [anon_sym_while] = ACTIONS(1321), + [anon_sym_do] = ACTIONS(1321), + [anon_sym_for] = ACTIONS(1321), + [anon_sym_return] = ACTIONS(1321), + [anon_sym_break] = ACTIONS(1321), + [anon_sym_continue] = ACTIONS(1321), + [anon_sym_goto] = ACTIONS(1321), + [anon_sym_DASH_DASH] = ACTIONS(1323), + [anon_sym_PLUS_PLUS] = ACTIONS(1323), + [anon_sym_sizeof] = ACTIONS(1321), + [anon_sym___alignof__] = ACTIONS(1321), + [anon_sym___alignof] = ACTIONS(1321), + [anon_sym__alignof] = ACTIONS(1321), + [anon_sym_alignof] = ACTIONS(1321), + [anon_sym__Alignof] = ACTIONS(1321), + [anon_sym_offsetof] = ACTIONS(1321), + [anon_sym__Generic] = ACTIONS(1321), + [anon_sym_asm] = ACTIONS(1321), + [anon_sym___asm__] = ACTIONS(1321), + [sym_number_literal] = ACTIONS(1323), + [anon_sym_L_SQUOTE] = ACTIONS(1323), + [anon_sym_u_SQUOTE] = ACTIONS(1323), + [anon_sym_U_SQUOTE] = ACTIONS(1323), + [anon_sym_u8_SQUOTE] = ACTIONS(1323), + [anon_sym_SQUOTE] = ACTIONS(1323), + [anon_sym_L_DQUOTE] = ACTIONS(1323), + [anon_sym_u_DQUOTE] = ACTIONS(1323), + [anon_sym_U_DQUOTE] = ACTIONS(1323), + [anon_sym_u8_DQUOTE] = ACTIONS(1323), + [anon_sym_DQUOTE] = ACTIONS(1323), + [sym_true] = ACTIONS(1321), + [sym_false] = ACTIONS(1321), + [anon_sym_NULL] = ACTIONS(1321), + [anon_sym_nullptr] = ACTIONS(1321), [sym_comment] = ACTIONS(3), }, - [311] = { - [ts_builtin_sym_end] = ACTIONS(1301), - [sym_identifier] = ACTIONS(1299), - [aux_sym_preproc_include_token1] = ACTIONS(1299), - [aux_sym_preproc_def_token1] = ACTIONS(1299), - [anon_sym_COMMA] = ACTIONS(1301), - [aux_sym_preproc_if_token1] = ACTIONS(1299), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1299), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1299), - [sym_preproc_directive] = ACTIONS(1299), - [anon_sym_LPAREN2] = ACTIONS(1301), - [anon_sym_BANG] = ACTIONS(1301), - [anon_sym_TILDE] = ACTIONS(1301), - [anon_sym_DASH] = ACTIONS(1299), - [anon_sym_PLUS] = ACTIONS(1299), - [anon_sym_STAR] = ACTIONS(1301), - [anon_sym_AMP] = ACTIONS(1301), - [anon_sym___extension__] = ACTIONS(1299), - [anon_sym_typedef] = ACTIONS(1299), - [anon_sym_extern] = ACTIONS(1299), - [anon_sym___attribute__] = ACTIONS(1299), - [anon_sym___scanf] = ACTIONS(1299), - [anon_sym___printf] = ACTIONS(1299), - [anon_sym___read_mostly] = ACTIONS(1299), - [anon_sym___must_hold] = ACTIONS(1299), - [anon_sym___ro_after_init] = ACTIONS(1299), - [anon_sym___init] = ACTIONS(1299), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1301), - [anon_sym___declspec] = ACTIONS(1299), - [anon_sym___cdecl] = ACTIONS(1299), - [anon_sym___clrcall] = ACTIONS(1299), - [anon_sym___stdcall] = ACTIONS(1299), - [anon_sym___fastcall] = ACTIONS(1299), - [anon_sym___thiscall] = ACTIONS(1299), - [anon_sym___vectorcall] = ACTIONS(1299), - [anon_sym_LBRACE] = ACTIONS(1301), - [anon_sym_RBRACE] = ACTIONS(1301), - [anon_sym_signed] = ACTIONS(1299), - [anon_sym_unsigned] = ACTIONS(1299), - [anon_sym_long] = ACTIONS(1299), - [anon_sym_short] = ACTIONS(1299), - [anon_sym_static] = ACTIONS(1299), - [anon_sym_auto] = ACTIONS(1299), - [anon_sym_register] = ACTIONS(1299), - [anon_sym_inline] = ACTIONS(1299), - [anon_sym___inline] = ACTIONS(1299), - [anon_sym___inline__] = ACTIONS(1299), - [anon_sym___forceinline] = ACTIONS(1299), - [anon_sym_thread_local] = ACTIONS(1299), - [anon_sym___thread] = ACTIONS(1299), - [anon_sym_const] = ACTIONS(1299), - [anon_sym_constexpr] = ACTIONS(1299), - [anon_sym_volatile] = ACTIONS(1299), - [anon_sym_restrict] = ACTIONS(1299), - [anon_sym___restrict__] = ACTIONS(1299), - [anon_sym__Atomic] = ACTIONS(1299), - [anon_sym__Noreturn] = ACTIONS(1299), - [anon_sym_noreturn] = ACTIONS(1299), - [anon_sym_alignas] = ACTIONS(1299), - [anon_sym__Alignas] = ACTIONS(1299), - [sym_primitive_type] = ACTIONS(1299), - [anon_sym_enum] = ACTIONS(1299), - [anon_sym_struct] = ACTIONS(1299), - [anon_sym_union] = ACTIONS(1299), - [anon_sym_if] = ACTIONS(1299), - [anon_sym_switch] = ACTIONS(1299), - [anon_sym_case] = ACTIONS(1299), - [anon_sym_default] = ACTIONS(1299), - [anon_sym_while] = ACTIONS(1299), - [anon_sym_do] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(1299), - [anon_sym_return] = ACTIONS(1299), - [anon_sym_break] = ACTIONS(1299), - [anon_sym_continue] = ACTIONS(1299), - [anon_sym_goto] = ACTIONS(1299), - [anon_sym_DASH_DASH] = ACTIONS(1301), - [anon_sym_PLUS_PLUS] = ACTIONS(1301), - [anon_sym_sizeof] = ACTIONS(1299), - [anon_sym___alignof__] = ACTIONS(1299), - [anon_sym___alignof] = ACTIONS(1299), - [anon_sym__alignof] = ACTIONS(1299), - [anon_sym_alignof] = ACTIONS(1299), - [anon_sym__Alignof] = ACTIONS(1299), - [anon_sym_offsetof] = ACTIONS(1299), - [anon_sym__Generic] = ACTIONS(1299), - [anon_sym_asm] = ACTIONS(1299), - [anon_sym___asm__] = ACTIONS(1299), - [sym_number_literal] = ACTIONS(1301), - [anon_sym_L_SQUOTE] = ACTIONS(1301), - [anon_sym_u_SQUOTE] = ACTIONS(1301), - [anon_sym_U_SQUOTE] = ACTIONS(1301), - [anon_sym_u8_SQUOTE] = ACTIONS(1301), - [anon_sym_SQUOTE] = ACTIONS(1301), - [anon_sym_L_DQUOTE] = ACTIONS(1301), - [anon_sym_u_DQUOTE] = ACTIONS(1301), - [anon_sym_U_DQUOTE] = ACTIONS(1301), - [anon_sym_u8_DQUOTE] = ACTIONS(1301), - [anon_sym_DQUOTE] = ACTIONS(1301), - [sym_true] = ACTIONS(1299), - [sym_false] = ACTIONS(1299), - [anon_sym_NULL] = ACTIONS(1299), - [anon_sym_nullptr] = ACTIONS(1299), + [371] = { + [ts_builtin_sym_end] = ACTIONS(1347), + [sym_identifier] = ACTIONS(1345), + [aux_sym_preproc_include_token1] = ACTIONS(1345), + [aux_sym_preproc_def_token1] = ACTIONS(1345), + [aux_sym_preproc_if_token1] = ACTIONS(1345), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1345), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1345), + [sym_preproc_directive] = ACTIONS(1345), + [anon_sym_LPAREN2] = ACTIONS(1347), + [anon_sym_BANG] = ACTIONS(1347), + [anon_sym_TILDE] = ACTIONS(1347), + [anon_sym_DASH] = ACTIONS(1345), + [anon_sym_PLUS] = ACTIONS(1345), + [anon_sym_STAR] = ACTIONS(1347), + [anon_sym_AMP] = ACTIONS(1347), + [anon_sym___extension__] = ACTIONS(1345), + [anon_sym_typedef] = ACTIONS(1345), + [anon_sym_extern] = ACTIONS(1345), + [anon_sym___attribute__] = ACTIONS(1345), + [anon_sym___scanf] = ACTIONS(1345), + [anon_sym___printf] = ACTIONS(1345), + [anon_sym___read_mostly] = ACTIONS(1345), + [anon_sym___must_hold] = ACTIONS(1345), + [anon_sym___ro_after_init] = ACTIONS(1345), + [anon_sym___noreturn] = ACTIONS(1345), + [anon_sym___cold] = ACTIONS(1345), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1347), + [anon_sym___declspec] = ACTIONS(1345), + [anon_sym___init] = ACTIONS(1345), + [anon_sym___exit] = ACTIONS(1345), + [anon_sym___cdecl] = ACTIONS(1345), + [anon_sym___clrcall] = ACTIONS(1345), + [anon_sym___stdcall] = ACTIONS(1345), + [anon_sym___fastcall] = ACTIONS(1345), + [anon_sym___thiscall] = ACTIONS(1345), + [anon_sym___vectorcall] = ACTIONS(1345), + [anon_sym_LBRACE] = ACTIONS(1347), + [anon_sym_signed] = ACTIONS(1345), + [anon_sym_unsigned] = ACTIONS(1345), + [anon_sym_long] = ACTIONS(1345), + [anon_sym_short] = ACTIONS(1345), + [anon_sym_static] = ACTIONS(1345), + [anon_sym_auto] = ACTIONS(1345), + [anon_sym_register] = ACTIONS(1345), + [anon_sym_inline] = ACTIONS(1345), + [anon_sym___inline] = ACTIONS(1345), + [anon_sym___inline__] = ACTIONS(1345), + [anon_sym___forceinline] = ACTIONS(1345), + [anon_sym_thread_local] = ACTIONS(1345), + [anon_sym___thread] = ACTIONS(1345), + [anon_sym_const] = ACTIONS(1345), + [anon_sym_constexpr] = ACTIONS(1345), + [anon_sym_volatile] = ACTIONS(1345), + [anon_sym_restrict] = ACTIONS(1345), + [anon_sym___restrict__] = ACTIONS(1345), + [anon_sym__Atomic] = ACTIONS(1345), + [anon_sym__Noreturn] = ACTIONS(1345), + [anon_sym_noreturn] = ACTIONS(1345), + [anon_sym_alignas] = ACTIONS(1345), + [anon_sym__Alignas] = ACTIONS(1345), + [sym_primitive_type] = ACTIONS(1345), + [anon_sym_enum] = ACTIONS(1345), + [anon_sym_struct] = ACTIONS(1345), + [anon_sym_union] = ACTIONS(1345), + [anon_sym_if] = ACTIONS(1345), + [anon_sym_switch] = ACTIONS(1345), + [anon_sym_case] = ACTIONS(1345), + [anon_sym_default] = ACTIONS(1345), + [anon_sym_while] = ACTIONS(1345), + [anon_sym_do] = ACTIONS(1345), + [anon_sym_for] = ACTIONS(1345), + [anon_sym_return] = ACTIONS(1345), + [anon_sym_break] = ACTIONS(1345), + [anon_sym_continue] = ACTIONS(1345), + [anon_sym_goto] = ACTIONS(1345), + [anon_sym_DASH_DASH] = ACTIONS(1347), + [anon_sym_PLUS_PLUS] = ACTIONS(1347), + [anon_sym_sizeof] = ACTIONS(1345), + [anon_sym___alignof__] = ACTIONS(1345), + [anon_sym___alignof] = ACTIONS(1345), + [anon_sym__alignof] = ACTIONS(1345), + [anon_sym_alignof] = ACTIONS(1345), + [anon_sym__Alignof] = ACTIONS(1345), + [anon_sym_offsetof] = ACTIONS(1345), + [anon_sym__Generic] = ACTIONS(1345), + [anon_sym_asm] = ACTIONS(1345), + [anon_sym___asm__] = ACTIONS(1345), + [sym_number_literal] = ACTIONS(1347), + [anon_sym_L_SQUOTE] = ACTIONS(1347), + [anon_sym_u_SQUOTE] = ACTIONS(1347), + [anon_sym_U_SQUOTE] = ACTIONS(1347), + [anon_sym_u8_SQUOTE] = ACTIONS(1347), + [anon_sym_SQUOTE] = ACTIONS(1347), + [anon_sym_L_DQUOTE] = ACTIONS(1347), + [anon_sym_u_DQUOTE] = ACTIONS(1347), + [anon_sym_U_DQUOTE] = ACTIONS(1347), + [anon_sym_u8_DQUOTE] = ACTIONS(1347), + [anon_sym_DQUOTE] = ACTIONS(1347), + [sym_true] = ACTIONS(1345), + [sym_false] = ACTIONS(1345), + [anon_sym_NULL] = ACTIONS(1345), + [anon_sym_nullptr] = ACTIONS(1345), [sym_comment] = ACTIONS(3), }, - [312] = { - [ts_builtin_sym_end] = ACTIONS(1321), - [sym_identifier] = ACTIONS(1319), - [aux_sym_preproc_include_token1] = ACTIONS(1319), - [aux_sym_preproc_def_token1] = ACTIONS(1319), - [anon_sym_COMMA] = ACTIONS(1321), - [aux_sym_preproc_if_token1] = ACTIONS(1319), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1319), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1319), - [sym_preproc_directive] = ACTIONS(1319), - [anon_sym_LPAREN2] = ACTIONS(1321), - [anon_sym_BANG] = ACTIONS(1321), - [anon_sym_TILDE] = ACTIONS(1321), - [anon_sym_DASH] = ACTIONS(1319), - [anon_sym_PLUS] = ACTIONS(1319), - [anon_sym_STAR] = ACTIONS(1321), - [anon_sym_AMP] = ACTIONS(1321), - [anon_sym___extension__] = ACTIONS(1319), - [anon_sym_typedef] = ACTIONS(1319), - [anon_sym_extern] = ACTIONS(1319), - [anon_sym___attribute__] = ACTIONS(1319), - [anon_sym___scanf] = ACTIONS(1319), - [anon_sym___printf] = ACTIONS(1319), - [anon_sym___read_mostly] = ACTIONS(1319), - [anon_sym___must_hold] = ACTIONS(1319), - [anon_sym___ro_after_init] = ACTIONS(1319), - [anon_sym___init] = ACTIONS(1319), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1321), - [anon_sym___declspec] = ACTIONS(1319), - [anon_sym___cdecl] = ACTIONS(1319), - [anon_sym___clrcall] = ACTIONS(1319), - [anon_sym___stdcall] = ACTIONS(1319), - [anon_sym___fastcall] = ACTIONS(1319), - [anon_sym___thiscall] = ACTIONS(1319), - [anon_sym___vectorcall] = ACTIONS(1319), - [anon_sym_LBRACE] = ACTIONS(1321), - [anon_sym_RBRACE] = ACTIONS(1321), - [anon_sym_signed] = ACTIONS(1319), - [anon_sym_unsigned] = ACTIONS(1319), - [anon_sym_long] = ACTIONS(1319), - [anon_sym_short] = ACTIONS(1319), - [anon_sym_static] = ACTIONS(1319), - [anon_sym_auto] = ACTIONS(1319), - [anon_sym_register] = ACTIONS(1319), - [anon_sym_inline] = ACTIONS(1319), - [anon_sym___inline] = ACTIONS(1319), - [anon_sym___inline__] = ACTIONS(1319), - [anon_sym___forceinline] = ACTIONS(1319), - [anon_sym_thread_local] = ACTIONS(1319), - [anon_sym___thread] = ACTIONS(1319), - [anon_sym_const] = ACTIONS(1319), - [anon_sym_constexpr] = ACTIONS(1319), - [anon_sym_volatile] = ACTIONS(1319), - [anon_sym_restrict] = ACTIONS(1319), - [anon_sym___restrict__] = ACTIONS(1319), - [anon_sym__Atomic] = ACTIONS(1319), - [anon_sym__Noreturn] = ACTIONS(1319), - [anon_sym_noreturn] = ACTIONS(1319), - [anon_sym_alignas] = ACTIONS(1319), - [anon_sym__Alignas] = ACTIONS(1319), - [sym_primitive_type] = ACTIONS(1319), - [anon_sym_enum] = ACTIONS(1319), - [anon_sym_struct] = ACTIONS(1319), - [anon_sym_union] = ACTIONS(1319), - [anon_sym_if] = ACTIONS(1319), - [anon_sym_switch] = ACTIONS(1319), - [anon_sym_case] = ACTIONS(1319), - [anon_sym_default] = ACTIONS(1319), - [anon_sym_while] = ACTIONS(1319), - [anon_sym_do] = ACTIONS(1319), - [anon_sym_for] = ACTIONS(1319), - [anon_sym_return] = ACTIONS(1319), - [anon_sym_break] = ACTIONS(1319), - [anon_sym_continue] = ACTIONS(1319), - [anon_sym_goto] = ACTIONS(1319), - [anon_sym_DASH_DASH] = ACTIONS(1321), - [anon_sym_PLUS_PLUS] = ACTIONS(1321), - [anon_sym_sizeof] = ACTIONS(1319), - [anon_sym___alignof__] = ACTIONS(1319), - [anon_sym___alignof] = ACTIONS(1319), - [anon_sym__alignof] = ACTIONS(1319), - [anon_sym_alignof] = ACTIONS(1319), - [anon_sym__Alignof] = ACTIONS(1319), - [anon_sym_offsetof] = ACTIONS(1319), - [anon_sym__Generic] = ACTIONS(1319), - [anon_sym_asm] = ACTIONS(1319), - [anon_sym___asm__] = ACTIONS(1319), - [sym_number_literal] = ACTIONS(1321), - [anon_sym_L_SQUOTE] = ACTIONS(1321), - [anon_sym_u_SQUOTE] = ACTIONS(1321), - [anon_sym_U_SQUOTE] = ACTIONS(1321), - [anon_sym_u8_SQUOTE] = ACTIONS(1321), - [anon_sym_SQUOTE] = ACTIONS(1321), - [anon_sym_L_DQUOTE] = ACTIONS(1321), - [anon_sym_u_DQUOTE] = ACTIONS(1321), - [anon_sym_U_DQUOTE] = ACTIONS(1321), - [anon_sym_u8_DQUOTE] = ACTIONS(1321), - [anon_sym_DQUOTE] = ACTIONS(1321), - [sym_true] = ACTIONS(1319), - [sym_false] = ACTIONS(1319), - [anon_sym_NULL] = ACTIONS(1319), - [anon_sym_nullptr] = ACTIONS(1319), + [372] = { + [sym_expression] = STATE(771), + [sym__string] = STATE(758), + [sym_conditional_expression] = STATE(758), + [sym_assignment_expression] = STATE(758), + [sym_pointer_expression] = STATE(762), + [sym_unary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_cast_expression] = STATE(758), + [sym_sizeof_expression] = STATE(758), + [sym_alignof_expression] = STATE(758), + [sym_offsetof_expression] = STATE(758), + [sym_generic_expression] = STATE(758), + [sym_subscript_expression] = STATE(762), + [sym_call_expression] = STATE(762), + [sym_gnu_asm_expression] = STATE(758), + [sym_field_expression] = STATE(762), + [sym_compound_literal_expression] = STATE(758), + [sym_parenthesized_expression] = STATE(762), + [sym_initializer_list] = STATE(760), + [sym_char_literal] = STATE(758), + [sym_concatenated_string] = STATE(758), + [sym_string_literal] = STATE(671), + [sym_null] = STATE(758), + [sym_identifier] = ACTIONS(1429), + [anon_sym_COMMA] = ACTIONS(1431), + [anon_sym_RPAREN] = ACTIONS(1431), + [anon_sym_LPAREN2] = ACTIONS(1431), + [anon_sym_BANG] = ACTIONS(1433), + [anon_sym_TILDE] = ACTIONS(1435), + [anon_sym_DASH] = ACTIONS(1437), + [anon_sym_PLUS] = ACTIONS(1437), + [anon_sym_STAR] = ACTIONS(1437), + [anon_sym_SLASH] = ACTIONS(1437), + [anon_sym_PERCENT] = ACTIONS(1437), + [anon_sym_PIPE_PIPE] = ACTIONS(1431), + [anon_sym_AMP_AMP] = ACTIONS(1431), + [anon_sym_PIPE] = ACTIONS(1437), + [anon_sym_CARET] = ACTIONS(1437), + [anon_sym_AMP] = ACTIONS(1437), + [anon_sym_EQ_EQ] = ACTIONS(1431), + [anon_sym_BANG_EQ] = ACTIONS(1431), + [anon_sym_GT] = ACTIONS(1437), + [anon_sym_GT_EQ] = ACTIONS(1431), + [anon_sym_LT_EQ] = ACTIONS(1431), + [anon_sym_LT] = ACTIONS(1437), + [anon_sym_LT_LT] = ACTIONS(1437), + [anon_sym_GT_GT] = ACTIONS(1437), + [anon_sym_SEMI] = ACTIONS(1431), + [anon_sym___attribute__] = ACTIONS(1437), + [anon_sym___scanf] = ACTIONS(1437), + [anon_sym___printf] = ACTIONS(1437), + [anon_sym___read_mostly] = ACTIONS(1437), + [anon_sym___must_hold] = ACTIONS(1437), + [anon_sym___ro_after_init] = ACTIONS(1437), + [anon_sym___noreturn] = ACTIONS(1437), + [anon_sym___cold] = ACTIONS(1437), + [anon_sym_LBRACE] = ACTIONS(1439), + [anon_sym_RBRACE] = ACTIONS(1431), + [anon_sym_LBRACK] = ACTIONS(1431), + [anon_sym_EQ] = ACTIONS(1437), + [anon_sym_COLON] = ACTIONS(1431), + [anon_sym_QMARK] = ACTIONS(1431), + [anon_sym_STAR_EQ] = ACTIONS(1431), + [anon_sym_SLASH_EQ] = ACTIONS(1431), + [anon_sym_PERCENT_EQ] = ACTIONS(1431), + [anon_sym_PLUS_EQ] = ACTIONS(1431), + [anon_sym_DASH_EQ] = ACTIONS(1431), + [anon_sym_LT_LT_EQ] = ACTIONS(1431), + [anon_sym_GT_GT_EQ] = ACTIONS(1431), + [anon_sym_AMP_EQ] = ACTIONS(1431), + [anon_sym_CARET_EQ] = ACTIONS(1431), + [anon_sym_PIPE_EQ] = ACTIONS(1431), + [anon_sym_DASH_DASH] = ACTIONS(1431), + [anon_sym_PLUS_PLUS] = ACTIONS(1431), + [anon_sym_sizeof] = ACTIONS(1441), + [anon_sym___alignof__] = ACTIONS(91), + [anon_sym___alignof] = ACTIONS(91), + [anon_sym__alignof] = ACTIONS(91), + [anon_sym_alignof] = ACTIONS(91), + [anon_sym__Alignof] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(93), + [anon_sym__Generic] = ACTIONS(95), + [anon_sym_asm] = ACTIONS(97), + [anon_sym___asm__] = ACTIONS(97), + [anon_sym_DOT] = ACTIONS(1437), + [anon_sym_DASH_GT] = ACTIONS(1431), + [sym_number_literal] = ACTIONS(165), + [anon_sym_L_SQUOTE] = ACTIONS(101), + [anon_sym_u_SQUOTE] = ACTIONS(101), + [anon_sym_U_SQUOTE] = ACTIONS(101), + [anon_sym_u8_SQUOTE] = ACTIONS(101), + [anon_sym_SQUOTE] = ACTIONS(101), + [anon_sym_L_DQUOTE] = ACTIONS(103), + [anon_sym_u_DQUOTE] = ACTIONS(103), + [anon_sym_U_DQUOTE] = ACTIONS(103), + [anon_sym_u8_DQUOTE] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_true] = ACTIONS(167), + [sym_false] = ACTIONS(167), + [anon_sym_NULL] = ACTIONS(107), + [anon_sym_nullptr] = ACTIONS(107), [sym_comment] = ACTIONS(3), }, - [313] = { - [ts_builtin_sym_end] = ACTIONS(1389), - [sym_identifier] = ACTIONS(1387), - [aux_sym_preproc_include_token1] = ACTIONS(1387), - [aux_sym_preproc_def_token1] = ACTIONS(1387), - [aux_sym_preproc_if_token1] = ACTIONS(1387), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1387), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1387), - [sym_preproc_directive] = ACTIONS(1387), - [anon_sym_LPAREN2] = ACTIONS(1389), - [anon_sym_BANG] = ACTIONS(1389), - [anon_sym_TILDE] = ACTIONS(1389), - [anon_sym_DASH] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(1387), - [anon_sym_STAR] = ACTIONS(1389), - [anon_sym_AMP] = ACTIONS(1389), - [anon_sym___extension__] = ACTIONS(1387), - [anon_sym_typedef] = ACTIONS(1387), - [anon_sym_extern] = ACTIONS(1387), - [anon_sym___attribute__] = ACTIONS(1387), - [anon_sym___scanf] = ACTIONS(1387), - [anon_sym___printf] = ACTIONS(1387), - [anon_sym___read_mostly] = ACTIONS(1387), - [anon_sym___must_hold] = ACTIONS(1387), - [anon_sym___ro_after_init] = ACTIONS(1387), - [anon_sym___init] = ACTIONS(1387), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1389), - [anon_sym___declspec] = ACTIONS(1387), - [anon_sym___cdecl] = ACTIONS(1387), - [anon_sym___clrcall] = ACTIONS(1387), - [anon_sym___stdcall] = ACTIONS(1387), - [anon_sym___fastcall] = ACTIONS(1387), - [anon_sym___thiscall] = ACTIONS(1387), - [anon_sym___vectorcall] = ACTIONS(1387), - [anon_sym_LBRACE] = ACTIONS(1389), - [anon_sym_signed] = ACTIONS(1387), - [anon_sym_unsigned] = ACTIONS(1387), - [anon_sym_long] = ACTIONS(1387), - [anon_sym_short] = ACTIONS(1387), - [anon_sym_static] = ACTIONS(1387), - [anon_sym_auto] = ACTIONS(1387), - [anon_sym_register] = ACTIONS(1387), - [anon_sym_inline] = ACTIONS(1387), - [anon_sym___inline] = ACTIONS(1387), - [anon_sym___inline__] = ACTIONS(1387), - [anon_sym___forceinline] = ACTIONS(1387), - [anon_sym_thread_local] = ACTIONS(1387), - [anon_sym___thread] = ACTIONS(1387), - [anon_sym_const] = ACTIONS(1387), - [anon_sym_constexpr] = ACTIONS(1387), - [anon_sym_volatile] = ACTIONS(1387), - [anon_sym_restrict] = ACTIONS(1387), - [anon_sym___restrict__] = ACTIONS(1387), - [anon_sym__Atomic] = ACTIONS(1387), - [anon_sym__Noreturn] = ACTIONS(1387), - [anon_sym_noreturn] = ACTIONS(1387), - [anon_sym_alignas] = ACTIONS(1387), - [anon_sym__Alignas] = ACTIONS(1387), - [sym_primitive_type] = ACTIONS(1387), - [anon_sym_enum] = ACTIONS(1387), - [anon_sym_struct] = ACTIONS(1387), - [anon_sym_union] = ACTIONS(1387), - [anon_sym_if] = ACTIONS(1387), - [anon_sym_switch] = ACTIONS(1387), - [anon_sym_case] = ACTIONS(1387), - [anon_sym_default] = ACTIONS(1387), - [anon_sym_while] = ACTIONS(1387), - [anon_sym_do] = ACTIONS(1387), - [anon_sym_for] = ACTIONS(1387), - [anon_sym_return] = ACTIONS(1387), - [anon_sym_break] = ACTIONS(1387), - [anon_sym_continue] = ACTIONS(1387), - [anon_sym_goto] = ACTIONS(1387), - [anon_sym_DASH_DASH] = ACTIONS(1389), - [anon_sym_PLUS_PLUS] = ACTIONS(1389), - [anon_sym_sizeof] = ACTIONS(1387), - [anon_sym___alignof__] = ACTIONS(1387), - [anon_sym___alignof] = ACTIONS(1387), - [anon_sym__alignof] = ACTIONS(1387), - [anon_sym_alignof] = ACTIONS(1387), - [anon_sym__Alignof] = ACTIONS(1387), - [anon_sym_offsetof] = ACTIONS(1387), - [anon_sym__Generic] = ACTIONS(1387), - [anon_sym_asm] = ACTIONS(1387), - [anon_sym___asm__] = ACTIONS(1387), - [sym_number_literal] = ACTIONS(1389), - [anon_sym_L_SQUOTE] = ACTIONS(1389), - [anon_sym_u_SQUOTE] = ACTIONS(1389), - [anon_sym_U_SQUOTE] = ACTIONS(1389), - [anon_sym_u8_SQUOTE] = ACTIONS(1389), - [anon_sym_SQUOTE] = ACTIONS(1389), - [anon_sym_L_DQUOTE] = ACTIONS(1389), - [anon_sym_u_DQUOTE] = ACTIONS(1389), - [anon_sym_U_DQUOTE] = ACTIONS(1389), - [anon_sym_u8_DQUOTE] = ACTIONS(1389), - [anon_sym_DQUOTE] = ACTIONS(1389), - [sym_true] = ACTIONS(1387), - [sym_false] = ACTIONS(1387), - [anon_sym_NULL] = ACTIONS(1387), - [anon_sym_nullptr] = ACTIONS(1387), + [373] = { + [ts_builtin_sym_end] = ACTIONS(1343), + [sym_identifier] = ACTIONS(1341), + [aux_sym_preproc_include_token1] = ACTIONS(1341), + [aux_sym_preproc_def_token1] = ACTIONS(1341), + [aux_sym_preproc_if_token1] = ACTIONS(1341), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1341), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1341), + [sym_preproc_directive] = ACTIONS(1341), + [anon_sym_LPAREN2] = ACTIONS(1343), + [anon_sym_BANG] = ACTIONS(1343), + [anon_sym_TILDE] = ACTIONS(1343), + [anon_sym_DASH] = ACTIONS(1341), + [anon_sym_PLUS] = ACTIONS(1341), + [anon_sym_STAR] = ACTIONS(1343), + [anon_sym_AMP] = ACTIONS(1343), + [anon_sym___extension__] = ACTIONS(1341), + [anon_sym_typedef] = ACTIONS(1341), + [anon_sym_extern] = ACTIONS(1341), + [anon_sym___attribute__] = ACTIONS(1341), + [anon_sym___scanf] = ACTIONS(1341), + [anon_sym___printf] = ACTIONS(1341), + [anon_sym___read_mostly] = ACTIONS(1341), + [anon_sym___must_hold] = ACTIONS(1341), + [anon_sym___ro_after_init] = ACTIONS(1341), + [anon_sym___noreturn] = ACTIONS(1341), + [anon_sym___cold] = ACTIONS(1341), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1343), + [anon_sym___declspec] = ACTIONS(1341), + [anon_sym___init] = ACTIONS(1341), + [anon_sym___exit] = ACTIONS(1341), + [anon_sym___cdecl] = ACTIONS(1341), + [anon_sym___clrcall] = ACTIONS(1341), + [anon_sym___stdcall] = ACTIONS(1341), + [anon_sym___fastcall] = ACTIONS(1341), + [anon_sym___thiscall] = ACTIONS(1341), + [anon_sym___vectorcall] = ACTIONS(1341), + [anon_sym_LBRACE] = ACTIONS(1343), + [anon_sym_signed] = ACTIONS(1341), + [anon_sym_unsigned] = ACTIONS(1341), + [anon_sym_long] = ACTIONS(1341), + [anon_sym_short] = ACTIONS(1341), + [anon_sym_static] = ACTIONS(1341), + [anon_sym_auto] = ACTIONS(1341), + [anon_sym_register] = ACTIONS(1341), + [anon_sym_inline] = ACTIONS(1341), + [anon_sym___inline] = ACTIONS(1341), + [anon_sym___inline__] = ACTIONS(1341), + [anon_sym___forceinline] = ACTIONS(1341), + [anon_sym_thread_local] = ACTIONS(1341), + [anon_sym___thread] = ACTIONS(1341), + [anon_sym_const] = ACTIONS(1341), + [anon_sym_constexpr] = ACTIONS(1341), + [anon_sym_volatile] = ACTIONS(1341), + [anon_sym_restrict] = ACTIONS(1341), + [anon_sym___restrict__] = ACTIONS(1341), + [anon_sym__Atomic] = ACTIONS(1341), + [anon_sym__Noreturn] = ACTIONS(1341), + [anon_sym_noreturn] = ACTIONS(1341), + [anon_sym_alignas] = ACTIONS(1341), + [anon_sym__Alignas] = ACTIONS(1341), + [sym_primitive_type] = ACTIONS(1341), + [anon_sym_enum] = ACTIONS(1341), + [anon_sym_struct] = ACTIONS(1341), + [anon_sym_union] = ACTIONS(1341), + [anon_sym_if] = ACTIONS(1341), + [anon_sym_switch] = ACTIONS(1341), + [anon_sym_case] = ACTIONS(1341), + [anon_sym_default] = ACTIONS(1341), + [anon_sym_while] = ACTIONS(1341), + [anon_sym_do] = ACTIONS(1341), + [anon_sym_for] = ACTIONS(1341), + [anon_sym_return] = ACTIONS(1341), + [anon_sym_break] = ACTIONS(1341), + [anon_sym_continue] = ACTIONS(1341), + [anon_sym_goto] = ACTIONS(1341), + [anon_sym_DASH_DASH] = ACTIONS(1343), + [anon_sym_PLUS_PLUS] = ACTIONS(1343), + [anon_sym_sizeof] = ACTIONS(1341), + [anon_sym___alignof__] = ACTIONS(1341), + [anon_sym___alignof] = ACTIONS(1341), + [anon_sym__alignof] = ACTIONS(1341), + [anon_sym_alignof] = ACTIONS(1341), + [anon_sym__Alignof] = ACTIONS(1341), + [anon_sym_offsetof] = ACTIONS(1341), + [anon_sym__Generic] = ACTIONS(1341), + [anon_sym_asm] = ACTIONS(1341), + [anon_sym___asm__] = ACTIONS(1341), + [sym_number_literal] = ACTIONS(1343), + [anon_sym_L_SQUOTE] = ACTIONS(1343), + [anon_sym_u_SQUOTE] = ACTIONS(1343), + [anon_sym_U_SQUOTE] = ACTIONS(1343), + [anon_sym_u8_SQUOTE] = ACTIONS(1343), + [anon_sym_SQUOTE] = ACTIONS(1343), + [anon_sym_L_DQUOTE] = ACTIONS(1343), + [anon_sym_u_DQUOTE] = ACTIONS(1343), + [anon_sym_U_DQUOTE] = ACTIONS(1343), + [anon_sym_u8_DQUOTE] = ACTIONS(1343), + [anon_sym_DQUOTE] = ACTIONS(1343), + [sym_true] = ACTIONS(1341), + [sym_false] = ACTIONS(1341), + [anon_sym_NULL] = ACTIONS(1341), + [anon_sym_nullptr] = ACTIONS(1341), [sym_comment] = ACTIONS(3), }, - [314] = { - [ts_builtin_sym_end] = ACTIONS(1353), - [sym_identifier] = ACTIONS(1351), - [aux_sym_preproc_include_token1] = ACTIONS(1351), - [aux_sym_preproc_def_token1] = ACTIONS(1351), - [aux_sym_preproc_if_token1] = ACTIONS(1351), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1351), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1351), - [sym_preproc_directive] = ACTIONS(1351), - [anon_sym_LPAREN2] = ACTIONS(1353), - [anon_sym_BANG] = ACTIONS(1353), - [anon_sym_TILDE] = ACTIONS(1353), - [anon_sym_DASH] = ACTIONS(1351), - [anon_sym_PLUS] = ACTIONS(1351), - [anon_sym_STAR] = ACTIONS(1353), - [anon_sym_AMP] = ACTIONS(1353), - [anon_sym___extension__] = ACTIONS(1351), - [anon_sym_typedef] = ACTIONS(1351), - [anon_sym_extern] = ACTIONS(1351), - [anon_sym___attribute__] = ACTIONS(1351), - [anon_sym___scanf] = ACTIONS(1351), - [anon_sym___printf] = ACTIONS(1351), - [anon_sym___read_mostly] = ACTIONS(1351), - [anon_sym___must_hold] = ACTIONS(1351), - [anon_sym___ro_after_init] = ACTIONS(1351), - [anon_sym___init] = ACTIONS(1351), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1353), - [anon_sym___declspec] = ACTIONS(1351), - [anon_sym___cdecl] = ACTIONS(1351), - [anon_sym___clrcall] = ACTIONS(1351), - [anon_sym___stdcall] = ACTIONS(1351), - [anon_sym___fastcall] = ACTIONS(1351), - [anon_sym___thiscall] = ACTIONS(1351), - [anon_sym___vectorcall] = ACTIONS(1351), - [anon_sym_LBRACE] = ACTIONS(1353), - [anon_sym_signed] = ACTIONS(1351), - [anon_sym_unsigned] = ACTIONS(1351), - [anon_sym_long] = ACTIONS(1351), - [anon_sym_short] = ACTIONS(1351), - [anon_sym_static] = ACTIONS(1351), - [anon_sym_auto] = ACTIONS(1351), - [anon_sym_register] = ACTIONS(1351), - [anon_sym_inline] = ACTIONS(1351), - [anon_sym___inline] = ACTIONS(1351), - [anon_sym___inline__] = ACTIONS(1351), - [anon_sym___forceinline] = ACTIONS(1351), - [anon_sym_thread_local] = ACTIONS(1351), - [anon_sym___thread] = ACTIONS(1351), - [anon_sym_const] = ACTIONS(1351), - [anon_sym_constexpr] = ACTIONS(1351), - [anon_sym_volatile] = ACTIONS(1351), - [anon_sym_restrict] = ACTIONS(1351), - [anon_sym___restrict__] = ACTIONS(1351), - [anon_sym__Atomic] = ACTIONS(1351), - [anon_sym__Noreturn] = ACTIONS(1351), - [anon_sym_noreturn] = ACTIONS(1351), - [anon_sym_alignas] = ACTIONS(1351), - [anon_sym__Alignas] = ACTIONS(1351), - [sym_primitive_type] = ACTIONS(1351), - [anon_sym_enum] = ACTIONS(1351), - [anon_sym_struct] = ACTIONS(1351), - [anon_sym_union] = ACTIONS(1351), - [anon_sym_if] = ACTIONS(1351), - [anon_sym_switch] = ACTIONS(1351), - [anon_sym_case] = ACTIONS(1351), - [anon_sym_default] = ACTIONS(1351), - [anon_sym_while] = ACTIONS(1351), - [anon_sym_do] = ACTIONS(1351), - [anon_sym_for] = ACTIONS(1351), - [anon_sym_return] = ACTIONS(1351), - [anon_sym_break] = ACTIONS(1351), - [anon_sym_continue] = ACTIONS(1351), - [anon_sym_goto] = ACTIONS(1351), - [anon_sym_DASH_DASH] = ACTIONS(1353), - [anon_sym_PLUS_PLUS] = ACTIONS(1353), - [anon_sym_sizeof] = ACTIONS(1351), - [anon_sym___alignof__] = ACTIONS(1351), - [anon_sym___alignof] = ACTIONS(1351), - [anon_sym__alignof] = ACTIONS(1351), - [anon_sym_alignof] = ACTIONS(1351), - [anon_sym__Alignof] = ACTIONS(1351), - [anon_sym_offsetof] = ACTIONS(1351), - [anon_sym__Generic] = ACTIONS(1351), - [anon_sym_asm] = ACTIONS(1351), - [anon_sym___asm__] = ACTIONS(1351), - [sym_number_literal] = ACTIONS(1353), - [anon_sym_L_SQUOTE] = ACTIONS(1353), - [anon_sym_u_SQUOTE] = ACTIONS(1353), - [anon_sym_U_SQUOTE] = ACTIONS(1353), - [anon_sym_u8_SQUOTE] = ACTIONS(1353), - [anon_sym_SQUOTE] = ACTIONS(1353), - [anon_sym_L_DQUOTE] = ACTIONS(1353), - [anon_sym_u_DQUOTE] = ACTIONS(1353), - [anon_sym_U_DQUOTE] = ACTIONS(1353), - [anon_sym_u8_DQUOTE] = ACTIONS(1353), - [anon_sym_DQUOTE] = ACTIONS(1353), - [sym_true] = ACTIONS(1351), - [sym_false] = ACTIONS(1351), - [anon_sym_NULL] = ACTIONS(1351), - [anon_sym_nullptr] = ACTIONS(1351), + [374] = { + [ts_builtin_sym_end] = ACTIONS(1409), + [sym_identifier] = ACTIONS(1407), + [aux_sym_preproc_include_token1] = ACTIONS(1407), + [aux_sym_preproc_def_token1] = ACTIONS(1407), + [aux_sym_preproc_if_token1] = ACTIONS(1407), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1407), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1407), + [sym_preproc_directive] = ACTIONS(1407), + [anon_sym_LPAREN2] = ACTIONS(1409), + [anon_sym_BANG] = ACTIONS(1409), + [anon_sym_TILDE] = ACTIONS(1409), + [anon_sym_DASH] = ACTIONS(1407), + [anon_sym_PLUS] = ACTIONS(1407), + [anon_sym_STAR] = ACTIONS(1409), + [anon_sym_AMP] = ACTIONS(1409), + [anon_sym___extension__] = ACTIONS(1407), + [anon_sym_typedef] = ACTIONS(1407), + [anon_sym_extern] = ACTIONS(1407), + [anon_sym___attribute__] = ACTIONS(1407), + [anon_sym___scanf] = ACTIONS(1407), + [anon_sym___printf] = ACTIONS(1407), + [anon_sym___read_mostly] = ACTIONS(1407), + [anon_sym___must_hold] = ACTIONS(1407), + [anon_sym___ro_after_init] = ACTIONS(1407), + [anon_sym___noreturn] = ACTIONS(1407), + [anon_sym___cold] = ACTIONS(1407), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1409), + [anon_sym___declspec] = ACTIONS(1407), + [anon_sym___init] = ACTIONS(1407), + [anon_sym___exit] = ACTIONS(1407), + [anon_sym___cdecl] = ACTIONS(1407), + [anon_sym___clrcall] = ACTIONS(1407), + [anon_sym___stdcall] = ACTIONS(1407), + [anon_sym___fastcall] = ACTIONS(1407), + [anon_sym___thiscall] = ACTIONS(1407), + [anon_sym___vectorcall] = ACTIONS(1407), + [anon_sym_LBRACE] = ACTIONS(1409), + [anon_sym_signed] = ACTIONS(1407), + [anon_sym_unsigned] = ACTIONS(1407), + [anon_sym_long] = ACTIONS(1407), + [anon_sym_short] = ACTIONS(1407), + [anon_sym_static] = ACTIONS(1407), + [anon_sym_auto] = ACTIONS(1407), + [anon_sym_register] = ACTIONS(1407), + [anon_sym_inline] = ACTIONS(1407), + [anon_sym___inline] = ACTIONS(1407), + [anon_sym___inline__] = ACTIONS(1407), + [anon_sym___forceinline] = ACTIONS(1407), + [anon_sym_thread_local] = ACTIONS(1407), + [anon_sym___thread] = ACTIONS(1407), + [anon_sym_const] = ACTIONS(1407), + [anon_sym_constexpr] = ACTIONS(1407), + [anon_sym_volatile] = ACTIONS(1407), + [anon_sym_restrict] = ACTIONS(1407), + [anon_sym___restrict__] = ACTIONS(1407), + [anon_sym__Atomic] = ACTIONS(1407), + [anon_sym__Noreturn] = ACTIONS(1407), + [anon_sym_noreturn] = ACTIONS(1407), + [anon_sym_alignas] = ACTIONS(1407), + [anon_sym__Alignas] = ACTIONS(1407), + [sym_primitive_type] = ACTIONS(1407), + [anon_sym_enum] = ACTIONS(1407), + [anon_sym_struct] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1407), + [anon_sym_if] = ACTIONS(1407), + [anon_sym_switch] = ACTIONS(1407), + [anon_sym_case] = ACTIONS(1407), + [anon_sym_default] = ACTIONS(1407), + [anon_sym_while] = ACTIONS(1407), + [anon_sym_do] = ACTIONS(1407), + [anon_sym_for] = ACTIONS(1407), + [anon_sym_return] = ACTIONS(1407), + [anon_sym_break] = ACTIONS(1407), + [anon_sym_continue] = ACTIONS(1407), + [anon_sym_goto] = ACTIONS(1407), + [anon_sym_DASH_DASH] = ACTIONS(1409), + [anon_sym_PLUS_PLUS] = ACTIONS(1409), + [anon_sym_sizeof] = ACTIONS(1407), + [anon_sym___alignof__] = ACTIONS(1407), + [anon_sym___alignof] = ACTIONS(1407), + [anon_sym__alignof] = ACTIONS(1407), + [anon_sym_alignof] = ACTIONS(1407), + [anon_sym__Alignof] = ACTIONS(1407), + [anon_sym_offsetof] = ACTIONS(1407), + [anon_sym__Generic] = ACTIONS(1407), + [anon_sym_asm] = ACTIONS(1407), + [anon_sym___asm__] = ACTIONS(1407), + [sym_number_literal] = ACTIONS(1409), + [anon_sym_L_SQUOTE] = ACTIONS(1409), + [anon_sym_u_SQUOTE] = ACTIONS(1409), + [anon_sym_U_SQUOTE] = ACTIONS(1409), + [anon_sym_u8_SQUOTE] = ACTIONS(1409), + [anon_sym_SQUOTE] = ACTIONS(1409), + [anon_sym_L_DQUOTE] = ACTIONS(1409), + [anon_sym_u_DQUOTE] = ACTIONS(1409), + [anon_sym_U_DQUOTE] = ACTIONS(1409), + [anon_sym_u8_DQUOTE] = ACTIONS(1409), + [anon_sym_DQUOTE] = ACTIONS(1409), + [sym_true] = ACTIONS(1407), + [sym_false] = ACTIONS(1407), + [anon_sym_NULL] = ACTIONS(1407), + [anon_sym_nullptr] = ACTIONS(1407), [sym_comment] = ACTIONS(3), }, - [315] = { - [ts_builtin_sym_end] = ACTIONS(1275), - [sym_identifier] = ACTIONS(1273), - [aux_sym_preproc_include_token1] = ACTIONS(1273), - [aux_sym_preproc_def_token1] = ACTIONS(1273), - [aux_sym_preproc_if_token1] = ACTIONS(1273), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1273), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1273), - [sym_preproc_directive] = ACTIONS(1273), - [anon_sym_LPAREN2] = ACTIONS(1275), - [anon_sym_BANG] = ACTIONS(1275), - [anon_sym_TILDE] = ACTIONS(1275), - [anon_sym_DASH] = ACTIONS(1273), - [anon_sym_PLUS] = ACTIONS(1273), - [anon_sym_STAR] = ACTIONS(1275), - [anon_sym_AMP] = ACTIONS(1275), - [anon_sym___extension__] = ACTIONS(1273), - [anon_sym_typedef] = ACTIONS(1273), - [anon_sym_extern] = ACTIONS(1273), - [anon_sym___attribute__] = ACTIONS(1273), - [anon_sym___scanf] = ACTIONS(1273), - [anon_sym___printf] = ACTIONS(1273), - [anon_sym___read_mostly] = ACTIONS(1273), - [anon_sym___must_hold] = ACTIONS(1273), - [anon_sym___ro_after_init] = ACTIONS(1273), - [anon_sym___init] = ACTIONS(1273), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1275), - [anon_sym___declspec] = ACTIONS(1273), - [anon_sym___cdecl] = ACTIONS(1273), - [anon_sym___clrcall] = ACTIONS(1273), - [anon_sym___stdcall] = ACTIONS(1273), - [anon_sym___fastcall] = ACTIONS(1273), - [anon_sym___thiscall] = ACTIONS(1273), - [anon_sym___vectorcall] = ACTIONS(1273), - [anon_sym_LBRACE] = ACTIONS(1275), - [anon_sym_signed] = ACTIONS(1273), - [anon_sym_unsigned] = ACTIONS(1273), - [anon_sym_long] = ACTIONS(1273), - [anon_sym_short] = ACTIONS(1273), - [anon_sym_static] = ACTIONS(1273), - [anon_sym_auto] = ACTIONS(1273), - [anon_sym_register] = ACTIONS(1273), - [anon_sym_inline] = ACTIONS(1273), - [anon_sym___inline] = ACTIONS(1273), - [anon_sym___inline__] = ACTIONS(1273), - [anon_sym___forceinline] = ACTIONS(1273), - [anon_sym_thread_local] = ACTIONS(1273), - [anon_sym___thread] = ACTIONS(1273), - [anon_sym_const] = ACTIONS(1273), - [anon_sym_constexpr] = ACTIONS(1273), - [anon_sym_volatile] = ACTIONS(1273), - [anon_sym_restrict] = ACTIONS(1273), - [anon_sym___restrict__] = ACTIONS(1273), - [anon_sym__Atomic] = ACTIONS(1273), - [anon_sym__Noreturn] = ACTIONS(1273), - [anon_sym_noreturn] = ACTIONS(1273), - [anon_sym_alignas] = ACTIONS(1273), - [anon_sym__Alignas] = ACTIONS(1273), - [sym_primitive_type] = ACTIONS(1273), - [anon_sym_enum] = ACTIONS(1273), - [anon_sym_struct] = ACTIONS(1273), - [anon_sym_union] = ACTIONS(1273), - [anon_sym_if] = ACTIONS(1273), - [anon_sym_switch] = ACTIONS(1273), - [anon_sym_case] = ACTIONS(1273), - [anon_sym_default] = ACTIONS(1273), - [anon_sym_while] = ACTIONS(1273), - [anon_sym_do] = ACTIONS(1273), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_return] = ACTIONS(1273), - [anon_sym_break] = ACTIONS(1273), - [anon_sym_continue] = ACTIONS(1273), - [anon_sym_goto] = ACTIONS(1273), - [anon_sym_DASH_DASH] = ACTIONS(1275), - [anon_sym_PLUS_PLUS] = ACTIONS(1275), - [anon_sym_sizeof] = ACTIONS(1273), - [anon_sym___alignof__] = ACTIONS(1273), - [anon_sym___alignof] = ACTIONS(1273), - [anon_sym__alignof] = ACTIONS(1273), - [anon_sym_alignof] = ACTIONS(1273), - [anon_sym__Alignof] = ACTIONS(1273), - [anon_sym_offsetof] = ACTIONS(1273), - [anon_sym__Generic] = ACTIONS(1273), - [anon_sym_asm] = ACTIONS(1273), - [anon_sym___asm__] = ACTIONS(1273), - [sym_number_literal] = ACTIONS(1275), - [anon_sym_L_SQUOTE] = ACTIONS(1275), - [anon_sym_u_SQUOTE] = ACTIONS(1275), - [anon_sym_U_SQUOTE] = ACTIONS(1275), - [anon_sym_u8_SQUOTE] = ACTIONS(1275), - [anon_sym_SQUOTE] = ACTIONS(1275), - [anon_sym_L_DQUOTE] = ACTIONS(1275), - [anon_sym_u_DQUOTE] = ACTIONS(1275), - [anon_sym_U_DQUOTE] = ACTIONS(1275), - [anon_sym_u8_DQUOTE] = ACTIONS(1275), - [anon_sym_DQUOTE] = ACTIONS(1275), - [sym_true] = ACTIONS(1273), - [sym_false] = ACTIONS(1273), - [anon_sym_NULL] = ACTIONS(1273), - [anon_sym_nullptr] = ACTIONS(1273), + [375] = { + [ts_builtin_sym_end] = ACTIONS(1327), + [sym_identifier] = ACTIONS(1325), + [aux_sym_preproc_include_token1] = ACTIONS(1325), + [aux_sym_preproc_def_token1] = ACTIONS(1325), + [aux_sym_preproc_if_token1] = ACTIONS(1325), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1325), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1325), + [sym_preproc_directive] = ACTIONS(1325), + [anon_sym_LPAREN2] = ACTIONS(1327), + [anon_sym_BANG] = ACTIONS(1327), + [anon_sym_TILDE] = ACTIONS(1327), + [anon_sym_DASH] = ACTIONS(1325), + [anon_sym_PLUS] = ACTIONS(1325), + [anon_sym_STAR] = ACTIONS(1327), + [anon_sym_AMP] = ACTIONS(1327), + [anon_sym___extension__] = ACTIONS(1325), + [anon_sym_typedef] = ACTIONS(1325), + [anon_sym_extern] = ACTIONS(1325), + [anon_sym___attribute__] = ACTIONS(1325), + [anon_sym___scanf] = ACTIONS(1325), + [anon_sym___printf] = ACTIONS(1325), + [anon_sym___read_mostly] = ACTIONS(1325), + [anon_sym___must_hold] = ACTIONS(1325), + [anon_sym___ro_after_init] = ACTIONS(1325), + [anon_sym___noreturn] = ACTIONS(1325), + [anon_sym___cold] = ACTIONS(1325), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1327), + [anon_sym___declspec] = ACTIONS(1325), + [anon_sym___init] = ACTIONS(1325), + [anon_sym___exit] = ACTIONS(1325), + [anon_sym___cdecl] = ACTIONS(1325), + [anon_sym___clrcall] = ACTIONS(1325), + [anon_sym___stdcall] = ACTIONS(1325), + [anon_sym___fastcall] = ACTIONS(1325), + [anon_sym___thiscall] = ACTIONS(1325), + [anon_sym___vectorcall] = ACTIONS(1325), + [anon_sym_LBRACE] = ACTIONS(1327), + [anon_sym_signed] = ACTIONS(1325), + [anon_sym_unsigned] = ACTIONS(1325), + [anon_sym_long] = ACTIONS(1325), + [anon_sym_short] = ACTIONS(1325), + [anon_sym_static] = ACTIONS(1325), + [anon_sym_auto] = ACTIONS(1325), + [anon_sym_register] = ACTIONS(1325), + [anon_sym_inline] = ACTIONS(1325), + [anon_sym___inline] = ACTIONS(1325), + [anon_sym___inline__] = ACTIONS(1325), + [anon_sym___forceinline] = ACTIONS(1325), + [anon_sym_thread_local] = ACTIONS(1325), + [anon_sym___thread] = ACTIONS(1325), + [anon_sym_const] = ACTIONS(1325), + [anon_sym_constexpr] = ACTIONS(1325), + [anon_sym_volatile] = ACTIONS(1325), + [anon_sym_restrict] = ACTIONS(1325), + [anon_sym___restrict__] = ACTIONS(1325), + [anon_sym__Atomic] = ACTIONS(1325), + [anon_sym__Noreturn] = ACTIONS(1325), + [anon_sym_noreturn] = ACTIONS(1325), + [anon_sym_alignas] = ACTIONS(1325), + [anon_sym__Alignas] = ACTIONS(1325), + [sym_primitive_type] = ACTIONS(1325), + [anon_sym_enum] = ACTIONS(1325), + [anon_sym_struct] = ACTIONS(1325), + [anon_sym_union] = ACTIONS(1325), + [anon_sym_if] = ACTIONS(1325), + [anon_sym_switch] = ACTIONS(1325), + [anon_sym_case] = ACTIONS(1325), + [anon_sym_default] = ACTIONS(1325), + [anon_sym_while] = ACTIONS(1325), + [anon_sym_do] = ACTIONS(1325), + [anon_sym_for] = ACTIONS(1325), + [anon_sym_return] = ACTIONS(1325), + [anon_sym_break] = ACTIONS(1325), + [anon_sym_continue] = ACTIONS(1325), + [anon_sym_goto] = ACTIONS(1325), + [anon_sym_DASH_DASH] = ACTIONS(1327), + [anon_sym_PLUS_PLUS] = ACTIONS(1327), + [anon_sym_sizeof] = ACTIONS(1325), + [anon_sym___alignof__] = ACTIONS(1325), + [anon_sym___alignof] = ACTIONS(1325), + [anon_sym__alignof] = ACTIONS(1325), + [anon_sym_alignof] = ACTIONS(1325), + [anon_sym__Alignof] = ACTIONS(1325), + [anon_sym_offsetof] = ACTIONS(1325), + [anon_sym__Generic] = ACTIONS(1325), + [anon_sym_asm] = ACTIONS(1325), + [anon_sym___asm__] = ACTIONS(1325), + [sym_number_literal] = ACTIONS(1327), + [anon_sym_L_SQUOTE] = ACTIONS(1327), + [anon_sym_u_SQUOTE] = ACTIONS(1327), + [anon_sym_U_SQUOTE] = ACTIONS(1327), + [anon_sym_u8_SQUOTE] = ACTIONS(1327), + [anon_sym_SQUOTE] = ACTIONS(1327), + [anon_sym_L_DQUOTE] = ACTIONS(1327), + [anon_sym_u_DQUOTE] = ACTIONS(1327), + [anon_sym_U_DQUOTE] = ACTIONS(1327), + [anon_sym_u8_DQUOTE] = ACTIONS(1327), + [anon_sym_DQUOTE] = ACTIONS(1327), + [sym_true] = ACTIONS(1325), + [sym_false] = ACTIONS(1325), + [anon_sym_NULL] = ACTIONS(1325), + [anon_sym_nullptr] = ACTIONS(1325), [sym_comment] = ACTIONS(3), }, - [316] = { - [ts_builtin_sym_end] = ACTIONS(1361), - [sym_identifier] = ACTIONS(1359), - [aux_sym_preproc_include_token1] = ACTIONS(1359), - [aux_sym_preproc_def_token1] = ACTIONS(1359), - [aux_sym_preproc_if_token1] = ACTIONS(1359), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1359), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1359), - [sym_preproc_directive] = ACTIONS(1359), - [anon_sym_LPAREN2] = ACTIONS(1361), - [anon_sym_BANG] = ACTIONS(1361), - [anon_sym_TILDE] = ACTIONS(1361), - [anon_sym_DASH] = ACTIONS(1359), - [anon_sym_PLUS] = ACTIONS(1359), - [anon_sym_STAR] = ACTIONS(1361), - [anon_sym_AMP] = ACTIONS(1361), - [anon_sym___extension__] = ACTIONS(1359), - [anon_sym_typedef] = ACTIONS(1359), - [anon_sym_extern] = ACTIONS(1359), - [anon_sym___attribute__] = ACTIONS(1359), - [anon_sym___scanf] = ACTIONS(1359), - [anon_sym___printf] = ACTIONS(1359), - [anon_sym___read_mostly] = ACTIONS(1359), - [anon_sym___must_hold] = ACTIONS(1359), - [anon_sym___ro_after_init] = ACTIONS(1359), - [anon_sym___init] = ACTIONS(1359), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1361), - [anon_sym___declspec] = ACTIONS(1359), - [anon_sym___cdecl] = ACTIONS(1359), - [anon_sym___clrcall] = ACTIONS(1359), - [anon_sym___stdcall] = ACTIONS(1359), - [anon_sym___fastcall] = ACTIONS(1359), - [anon_sym___thiscall] = ACTIONS(1359), - [anon_sym___vectorcall] = ACTIONS(1359), - [anon_sym_LBRACE] = ACTIONS(1361), - [anon_sym_signed] = ACTIONS(1359), - [anon_sym_unsigned] = ACTIONS(1359), - [anon_sym_long] = ACTIONS(1359), - [anon_sym_short] = ACTIONS(1359), - [anon_sym_static] = ACTIONS(1359), - [anon_sym_auto] = ACTIONS(1359), - [anon_sym_register] = ACTIONS(1359), - [anon_sym_inline] = ACTIONS(1359), - [anon_sym___inline] = ACTIONS(1359), - [anon_sym___inline__] = ACTIONS(1359), - [anon_sym___forceinline] = ACTIONS(1359), - [anon_sym_thread_local] = ACTIONS(1359), - [anon_sym___thread] = ACTIONS(1359), - [anon_sym_const] = ACTIONS(1359), - [anon_sym_constexpr] = ACTIONS(1359), - [anon_sym_volatile] = ACTIONS(1359), - [anon_sym_restrict] = ACTIONS(1359), - [anon_sym___restrict__] = ACTIONS(1359), - [anon_sym__Atomic] = ACTIONS(1359), - [anon_sym__Noreturn] = ACTIONS(1359), - [anon_sym_noreturn] = ACTIONS(1359), - [anon_sym_alignas] = ACTIONS(1359), - [anon_sym__Alignas] = ACTIONS(1359), - [sym_primitive_type] = ACTIONS(1359), - [anon_sym_enum] = ACTIONS(1359), - [anon_sym_struct] = ACTIONS(1359), - [anon_sym_union] = ACTIONS(1359), - [anon_sym_if] = ACTIONS(1359), - [anon_sym_switch] = ACTIONS(1359), - [anon_sym_case] = ACTIONS(1359), - [anon_sym_default] = ACTIONS(1359), - [anon_sym_while] = ACTIONS(1359), - [anon_sym_do] = ACTIONS(1359), - [anon_sym_for] = ACTIONS(1359), - [anon_sym_return] = ACTIONS(1359), - [anon_sym_break] = ACTIONS(1359), - [anon_sym_continue] = ACTIONS(1359), - [anon_sym_goto] = ACTIONS(1359), - [anon_sym_DASH_DASH] = ACTIONS(1361), - [anon_sym_PLUS_PLUS] = ACTIONS(1361), - [anon_sym_sizeof] = ACTIONS(1359), - [anon_sym___alignof__] = ACTIONS(1359), - [anon_sym___alignof] = ACTIONS(1359), - [anon_sym__alignof] = ACTIONS(1359), - [anon_sym_alignof] = ACTIONS(1359), - [anon_sym__Alignof] = ACTIONS(1359), - [anon_sym_offsetof] = ACTIONS(1359), - [anon_sym__Generic] = ACTIONS(1359), - [anon_sym_asm] = ACTIONS(1359), - [anon_sym___asm__] = ACTIONS(1359), - [sym_number_literal] = ACTIONS(1361), - [anon_sym_L_SQUOTE] = ACTIONS(1361), - [anon_sym_u_SQUOTE] = ACTIONS(1361), - [anon_sym_U_SQUOTE] = ACTIONS(1361), - [anon_sym_u8_SQUOTE] = ACTIONS(1361), - [anon_sym_SQUOTE] = ACTIONS(1361), - [anon_sym_L_DQUOTE] = ACTIONS(1361), - [anon_sym_u_DQUOTE] = ACTIONS(1361), - [anon_sym_U_DQUOTE] = ACTIONS(1361), - [anon_sym_u8_DQUOTE] = ACTIONS(1361), - [anon_sym_DQUOTE] = ACTIONS(1361), - [sym_true] = ACTIONS(1359), - [sym_false] = ACTIONS(1359), - [anon_sym_NULL] = ACTIONS(1359), - [anon_sym_nullptr] = ACTIONS(1359), + [376] = { + [ts_builtin_sym_end] = ACTIONS(1335), + [sym_identifier] = ACTIONS(1333), + [aux_sym_preproc_include_token1] = ACTIONS(1333), + [aux_sym_preproc_def_token1] = ACTIONS(1333), + [aux_sym_preproc_if_token1] = ACTIONS(1333), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1333), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1333), + [sym_preproc_directive] = ACTIONS(1333), + [anon_sym_LPAREN2] = ACTIONS(1335), + [anon_sym_BANG] = ACTIONS(1335), + [anon_sym_TILDE] = ACTIONS(1335), + [anon_sym_DASH] = ACTIONS(1333), + [anon_sym_PLUS] = ACTIONS(1333), + [anon_sym_STAR] = ACTIONS(1335), + [anon_sym_AMP] = ACTIONS(1335), + [anon_sym___extension__] = ACTIONS(1333), + [anon_sym_typedef] = ACTIONS(1333), + [anon_sym_extern] = ACTIONS(1333), + [anon_sym___attribute__] = ACTIONS(1333), + [anon_sym___scanf] = ACTIONS(1333), + [anon_sym___printf] = ACTIONS(1333), + [anon_sym___read_mostly] = ACTIONS(1333), + [anon_sym___must_hold] = ACTIONS(1333), + [anon_sym___ro_after_init] = ACTIONS(1333), + [anon_sym___noreturn] = ACTIONS(1333), + [anon_sym___cold] = ACTIONS(1333), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1335), + [anon_sym___declspec] = ACTIONS(1333), + [anon_sym___init] = ACTIONS(1333), + [anon_sym___exit] = ACTIONS(1333), + [anon_sym___cdecl] = ACTIONS(1333), + [anon_sym___clrcall] = ACTIONS(1333), + [anon_sym___stdcall] = ACTIONS(1333), + [anon_sym___fastcall] = ACTIONS(1333), + [anon_sym___thiscall] = ACTIONS(1333), + [anon_sym___vectorcall] = ACTIONS(1333), + [anon_sym_LBRACE] = ACTIONS(1335), + [anon_sym_signed] = ACTIONS(1333), + [anon_sym_unsigned] = ACTIONS(1333), + [anon_sym_long] = ACTIONS(1333), + [anon_sym_short] = ACTIONS(1333), + [anon_sym_static] = ACTIONS(1333), + [anon_sym_auto] = ACTIONS(1333), + [anon_sym_register] = ACTIONS(1333), + [anon_sym_inline] = ACTIONS(1333), + [anon_sym___inline] = ACTIONS(1333), + [anon_sym___inline__] = ACTIONS(1333), + [anon_sym___forceinline] = ACTIONS(1333), + [anon_sym_thread_local] = ACTIONS(1333), + [anon_sym___thread] = ACTIONS(1333), + [anon_sym_const] = ACTIONS(1333), + [anon_sym_constexpr] = ACTIONS(1333), + [anon_sym_volatile] = ACTIONS(1333), + [anon_sym_restrict] = ACTIONS(1333), + [anon_sym___restrict__] = ACTIONS(1333), + [anon_sym__Atomic] = ACTIONS(1333), + [anon_sym__Noreturn] = ACTIONS(1333), + [anon_sym_noreturn] = ACTIONS(1333), + [anon_sym_alignas] = ACTIONS(1333), + [anon_sym__Alignas] = ACTIONS(1333), + [sym_primitive_type] = ACTIONS(1333), + [anon_sym_enum] = ACTIONS(1333), + [anon_sym_struct] = ACTIONS(1333), + [anon_sym_union] = ACTIONS(1333), + [anon_sym_if] = ACTIONS(1333), + [anon_sym_switch] = ACTIONS(1333), + [anon_sym_case] = ACTIONS(1333), + [anon_sym_default] = ACTIONS(1333), + [anon_sym_while] = ACTIONS(1333), + [anon_sym_do] = ACTIONS(1333), + [anon_sym_for] = ACTIONS(1333), + [anon_sym_return] = ACTIONS(1333), + [anon_sym_break] = ACTIONS(1333), + [anon_sym_continue] = ACTIONS(1333), + [anon_sym_goto] = ACTIONS(1333), + [anon_sym_DASH_DASH] = ACTIONS(1335), + [anon_sym_PLUS_PLUS] = ACTIONS(1335), + [anon_sym_sizeof] = ACTIONS(1333), + [anon_sym___alignof__] = ACTIONS(1333), + [anon_sym___alignof] = ACTIONS(1333), + [anon_sym__alignof] = ACTIONS(1333), + [anon_sym_alignof] = ACTIONS(1333), + [anon_sym__Alignof] = ACTIONS(1333), + [anon_sym_offsetof] = ACTIONS(1333), + [anon_sym__Generic] = ACTIONS(1333), + [anon_sym_asm] = ACTIONS(1333), + [anon_sym___asm__] = ACTIONS(1333), + [sym_number_literal] = ACTIONS(1335), + [anon_sym_L_SQUOTE] = ACTIONS(1335), + [anon_sym_u_SQUOTE] = ACTIONS(1335), + [anon_sym_U_SQUOTE] = ACTIONS(1335), + [anon_sym_u8_SQUOTE] = ACTIONS(1335), + [anon_sym_SQUOTE] = ACTIONS(1335), + [anon_sym_L_DQUOTE] = ACTIONS(1335), + [anon_sym_u_DQUOTE] = ACTIONS(1335), + [anon_sym_U_DQUOTE] = ACTIONS(1335), + [anon_sym_u8_DQUOTE] = ACTIONS(1335), + [anon_sym_DQUOTE] = ACTIONS(1335), + [sym_true] = ACTIONS(1333), + [sym_false] = ACTIONS(1333), + [anon_sym_NULL] = ACTIONS(1333), + [anon_sym_nullptr] = ACTIONS(1333), [sym_comment] = ACTIONS(3), }, - [317] = { - [ts_builtin_sym_end] = ACTIONS(1365), - [sym_identifier] = ACTIONS(1363), - [aux_sym_preproc_include_token1] = ACTIONS(1363), - [aux_sym_preproc_def_token1] = ACTIONS(1363), - [aux_sym_preproc_if_token1] = ACTIONS(1363), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1363), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1363), - [sym_preproc_directive] = ACTIONS(1363), - [anon_sym_LPAREN2] = ACTIONS(1365), - [anon_sym_BANG] = ACTIONS(1365), - [anon_sym_TILDE] = ACTIONS(1365), - [anon_sym_DASH] = ACTIONS(1363), - [anon_sym_PLUS] = ACTIONS(1363), - [anon_sym_STAR] = ACTIONS(1365), - [anon_sym_AMP] = ACTIONS(1365), - [anon_sym___extension__] = ACTIONS(1363), - [anon_sym_typedef] = ACTIONS(1363), - [anon_sym_extern] = ACTIONS(1363), - [anon_sym___attribute__] = ACTIONS(1363), - [anon_sym___scanf] = ACTIONS(1363), - [anon_sym___printf] = ACTIONS(1363), - [anon_sym___read_mostly] = ACTIONS(1363), - [anon_sym___must_hold] = ACTIONS(1363), - [anon_sym___ro_after_init] = ACTIONS(1363), - [anon_sym___init] = ACTIONS(1363), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1365), - [anon_sym___declspec] = ACTIONS(1363), - [anon_sym___cdecl] = ACTIONS(1363), - [anon_sym___clrcall] = ACTIONS(1363), - [anon_sym___stdcall] = ACTIONS(1363), - [anon_sym___fastcall] = ACTIONS(1363), - [anon_sym___thiscall] = ACTIONS(1363), - [anon_sym___vectorcall] = ACTIONS(1363), - [anon_sym_LBRACE] = ACTIONS(1365), - [anon_sym_signed] = ACTIONS(1363), - [anon_sym_unsigned] = ACTIONS(1363), - [anon_sym_long] = ACTIONS(1363), - [anon_sym_short] = ACTIONS(1363), - [anon_sym_static] = ACTIONS(1363), - [anon_sym_auto] = ACTIONS(1363), - [anon_sym_register] = ACTIONS(1363), - [anon_sym_inline] = ACTIONS(1363), - [anon_sym___inline] = ACTIONS(1363), - [anon_sym___inline__] = ACTIONS(1363), - [anon_sym___forceinline] = ACTIONS(1363), - [anon_sym_thread_local] = ACTIONS(1363), - [anon_sym___thread] = ACTIONS(1363), - [anon_sym_const] = ACTIONS(1363), - [anon_sym_constexpr] = ACTIONS(1363), - [anon_sym_volatile] = ACTIONS(1363), - [anon_sym_restrict] = ACTIONS(1363), - [anon_sym___restrict__] = ACTIONS(1363), - [anon_sym__Atomic] = ACTIONS(1363), - [anon_sym__Noreturn] = ACTIONS(1363), - [anon_sym_noreturn] = ACTIONS(1363), - [anon_sym_alignas] = ACTIONS(1363), - [anon_sym__Alignas] = ACTIONS(1363), - [sym_primitive_type] = ACTIONS(1363), - [anon_sym_enum] = ACTIONS(1363), - [anon_sym_struct] = ACTIONS(1363), - [anon_sym_union] = ACTIONS(1363), - [anon_sym_if] = ACTIONS(1363), - [anon_sym_switch] = ACTIONS(1363), - [anon_sym_case] = ACTIONS(1363), - [anon_sym_default] = ACTIONS(1363), - [anon_sym_while] = ACTIONS(1363), - [anon_sym_do] = ACTIONS(1363), - [anon_sym_for] = ACTIONS(1363), - [anon_sym_return] = ACTIONS(1363), - [anon_sym_break] = ACTIONS(1363), - [anon_sym_continue] = ACTIONS(1363), - [anon_sym_goto] = ACTIONS(1363), - [anon_sym_DASH_DASH] = ACTIONS(1365), - [anon_sym_PLUS_PLUS] = ACTIONS(1365), - [anon_sym_sizeof] = ACTIONS(1363), - [anon_sym___alignof__] = ACTIONS(1363), - [anon_sym___alignof] = ACTIONS(1363), - [anon_sym__alignof] = ACTIONS(1363), - [anon_sym_alignof] = ACTIONS(1363), - [anon_sym__Alignof] = ACTIONS(1363), - [anon_sym_offsetof] = ACTIONS(1363), - [anon_sym__Generic] = ACTIONS(1363), - [anon_sym_asm] = ACTIONS(1363), - [anon_sym___asm__] = ACTIONS(1363), - [sym_number_literal] = ACTIONS(1365), - [anon_sym_L_SQUOTE] = ACTIONS(1365), - [anon_sym_u_SQUOTE] = ACTIONS(1365), - [anon_sym_U_SQUOTE] = ACTIONS(1365), - [anon_sym_u8_SQUOTE] = ACTIONS(1365), - [anon_sym_SQUOTE] = ACTIONS(1365), - [anon_sym_L_DQUOTE] = ACTIONS(1365), - [anon_sym_u_DQUOTE] = ACTIONS(1365), - [anon_sym_U_DQUOTE] = ACTIONS(1365), - [anon_sym_u8_DQUOTE] = ACTIONS(1365), - [anon_sym_DQUOTE] = ACTIONS(1365), - [sym_true] = ACTIONS(1363), - [sym_false] = ACTIONS(1363), - [anon_sym_NULL] = ACTIONS(1363), - [anon_sym_nullptr] = ACTIONS(1363), + [377] = { + [ts_builtin_sym_end] = ACTIONS(1409), + [sym_identifier] = ACTIONS(1407), + [aux_sym_preproc_include_token1] = ACTIONS(1407), + [aux_sym_preproc_def_token1] = ACTIONS(1407), + [aux_sym_preproc_if_token1] = ACTIONS(1407), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1407), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1407), + [sym_preproc_directive] = ACTIONS(1407), + [anon_sym_LPAREN2] = ACTIONS(1409), + [anon_sym_BANG] = ACTIONS(1409), + [anon_sym_TILDE] = ACTIONS(1409), + [anon_sym_DASH] = ACTIONS(1407), + [anon_sym_PLUS] = ACTIONS(1407), + [anon_sym_STAR] = ACTIONS(1409), + [anon_sym_AMP] = ACTIONS(1409), + [anon_sym___extension__] = ACTIONS(1407), + [anon_sym_typedef] = ACTIONS(1407), + [anon_sym_extern] = ACTIONS(1407), + [anon_sym___attribute__] = ACTIONS(1407), + [anon_sym___scanf] = ACTIONS(1407), + [anon_sym___printf] = ACTIONS(1407), + [anon_sym___read_mostly] = ACTIONS(1407), + [anon_sym___must_hold] = ACTIONS(1407), + [anon_sym___ro_after_init] = ACTIONS(1407), + [anon_sym___noreturn] = ACTIONS(1407), + [anon_sym___cold] = ACTIONS(1407), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1409), + [anon_sym___declspec] = ACTIONS(1407), + [anon_sym___init] = ACTIONS(1407), + [anon_sym___exit] = ACTIONS(1407), + [anon_sym___cdecl] = ACTIONS(1407), + [anon_sym___clrcall] = ACTIONS(1407), + [anon_sym___stdcall] = ACTIONS(1407), + [anon_sym___fastcall] = ACTIONS(1407), + [anon_sym___thiscall] = ACTIONS(1407), + [anon_sym___vectorcall] = ACTIONS(1407), + [anon_sym_LBRACE] = ACTIONS(1409), + [anon_sym_signed] = ACTIONS(1407), + [anon_sym_unsigned] = ACTIONS(1407), + [anon_sym_long] = ACTIONS(1407), + [anon_sym_short] = ACTIONS(1407), + [anon_sym_static] = ACTIONS(1407), + [anon_sym_auto] = ACTIONS(1407), + [anon_sym_register] = ACTIONS(1407), + [anon_sym_inline] = ACTIONS(1407), + [anon_sym___inline] = ACTIONS(1407), + [anon_sym___inline__] = ACTIONS(1407), + [anon_sym___forceinline] = ACTIONS(1407), + [anon_sym_thread_local] = ACTIONS(1407), + [anon_sym___thread] = ACTIONS(1407), + [anon_sym_const] = ACTIONS(1407), + [anon_sym_constexpr] = ACTIONS(1407), + [anon_sym_volatile] = ACTIONS(1407), + [anon_sym_restrict] = ACTIONS(1407), + [anon_sym___restrict__] = ACTIONS(1407), + [anon_sym__Atomic] = ACTIONS(1407), + [anon_sym__Noreturn] = ACTIONS(1407), + [anon_sym_noreturn] = ACTIONS(1407), + [anon_sym_alignas] = ACTIONS(1407), + [anon_sym__Alignas] = ACTIONS(1407), + [sym_primitive_type] = ACTIONS(1407), + [anon_sym_enum] = ACTIONS(1407), + [anon_sym_struct] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1407), + [anon_sym_if] = ACTIONS(1407), + [anon_sym_switch] = ACTIONS(1407), + [anon_sym_case] = ACTIONS(1407), + [anon_sym_default] = ACTIONS(1407), + [anon_sym_while] = ACTIONS(1407), + [anon_sym_do] = ACTIONS(1407), + [anon_sym_for] = ACTIONS(1407), + [anon_sym_return] = ACTIONS(1407), + [anon_sym_break] = ACTIONS(1407), + [anon_sym_continue] = ACTIONS(1407), + [anon_sym_goto] = ACTIONS(1407), + [anon_sym_DASH_DASH] = ACTIONS(1409), + [anon_sym_PLUS_PLUS] = ACTIONS(1409), + [anon_sym_sizeof] = ACTIONS(1407), + [anon_sym___alignof__] = ACTIONS(1407), + [anon_sym___alignof] = ACTIONS(1407), + [anon_sym__alignof] = ACTIONS(1407), + [anon_sym_alignof] = ACTIONS(1407), + [anon_sym__Alignof] = ACTIONS(1407), + [anon_sym_offsetof] = ACTIONS(1407), + [anon_sym__Generic] = ACTIONS(1407), + [anon_sym_asm] = ACTIONS(1407), + [anon_sym___asm__] = ACTIONS(1407), + [sym_number_literal] = ACTIONS(1409), + [anon_sym_L_SQUOTE] = ACTIONS(1409), + [anon_sym_u_SQUOTE] = ACTIONS(1409), + [anon_sym_U_SQUOTE] = ACTIONS(1409), + [anon_sym_u8_SQUOTE] = ACTIONS(1409), + [anon_sym_SQUOTE] = ACTIONS(1409), + [anon_sym_L_DQUOTE] = ACTIONS(1409), + [anon_sym_u_DQUOTE] = ACTIONS(1409), + [anon_sym_U_DQUOTE] = ACTIONS(1409), + [anon_sym_u8_DQUOTE] = ACTIONS(1409), + [anon_sym_DQUOTE] = ACTIONS(1409), + [sym_true] = ACTIONS(1407), + [sym_false] = ACTIONS(1407), + [anon_sym_NULL] = ACTIONS(1407), + [anon_sym_nullptr] = ACTIONS(1407), [sym_comment] = ACTIONS(3), }, - [318] = { - [ts_builtin_sym_end] = ACTIONS(1341), - [sym_identifier] = ACTIONS(1339), - [aux_sym_preproc_include_token1] = ACTIONS(1339), - [aux_sym_preproc_def_token1] = ACTIONS(1339), - [aux_sym_preproc_if_token1] = ACTIONS(1339), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1339), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1339), - [sym_preproc_directive] = ACTIONS(1339), - [anon_sym_LPAREN2] = ACTIONS(1341), - [anon_sym_BANG] = ACTIONS(1341), - [anon_sym_TILDE] = ACTIONS(1341), - [anon_sym_DASH] = ACTIONS(1339), - [anon_sym_PLUS] = ACTIONS(1339), - [anon_sym_STAR] = ACTIONS(1341), - [anon_sym_AMP] = ACTIONS(1341), - [anon_sym___extension__] = ACTIONS(1339), - [anon_sym_typedef] = ACTIONS(1339), - [anon_sym_extern] = ACTIONS(1339), - [anon_sym___attribute__] = ACTIONS(1339), - [anon_sym___scanf] = ACTIONS(1339), - [anon_sym___printf] = ACTIONS(1339), - [anon_sym___read_mostly] = ACTIONS(1339), - [anon_sym___must_hold] = ACTIONS(1339), - [anon_sym___ro_after_init] = ACTIONS(1339), - [anon_sym___init] = ACTIONS(1339), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1341), - [anon_sym___declspec] = ACTIONS(1339), - [anon_sym___cdecl] = ACTIONS(1339), - [anon_sym___clrcall] = ACTIONS(1339), - [anon_sym___stdcall] = ACTIONS(1339), - [anon_sym___fastcall] = ACTIONS(1339), - [anon_sym___thiscall] = ACTIONS(1339), - [anon_sym___vectorcall] = ACTIONS(1339), - [anon_sym_LBRACE] = ACTIONS(1341), - [anon_sym_signed] = ACTIONS(1339), - [anon_sym_unsigned] = ACTIONS(1339), - [anon_sym_long] = ACTIONS(1339), - [anon_sym_short] = ACTIONS(1339), - [anon_sym_static] = ACTIONS(1339), - [anon_sym_auto] = ACTIONS(1339), - [anon_sym_register] = ACTIONS(1339), - [anon_sym_inline] = ACTIONS(1339), - [anon_sym___inline] = ACTIONS(1339), - [anon_sym___inline__] = ACTIONS(1339), - [anon_sym___forceinline] = ACTIONS(1339), - [anon_sym_thread_local] = ACTIONS(1339), - [anon_sym___thread] = ACTIONS(1339), - [anon_sym_const] = ACTIONS(1339), - [anon_sym_constexpr] = ACTIONS(1339), - [anon_sym_volatile] = ACTIONS(1339), - [anon_sym_restrict] = ACTIONS(1339), - [anon_sym___restrict__] = ACTIONS(1339), - [anon_sym__Atomic] = ACTIONS(1339), - [anon_sym__Noreturn] = ACTIONS(1339), - [anon_sym_noreturn] = ACTIONS(1339), - [anon_sym_alignas] = ACTIONS(1339), - [anon_sym__Alignas] = ACTIONS(1339), - [sym_primitive_type] = ACTIONS(1339), - [anon_sym_enum] = ACTIONS(1339), - [anon_sym_struct] = ACTIONS(1339), - [anon_sym_union] = ACTIONS(1339), - [anon_sym_if] = ACTIONS(1339), - [anon_sym_switch] = ACTIONS(1339), - [anon_sym_case] = ACTIONS(1339), - [anon_sym_default] = ACTIONS(1339), - [anon_sym_while] = ACTIONS(1339), - [anon_sym_do] = ACTIONS(1339), - [anon_sym_for] = ACTIONS(1339), - [anon_sym_return] = ACTIONS(1339), - [anon_sym_break] = ACTIONS(1339), - [anon_sym_continue] = ACTIONS(1339), - [anon_sym_goto] = ACTIONS(1339), - [anon_sym_DASH_DASH] = ACTIONS(1341), - [anon_sym_PLUS_PLUS] = ACTIONS(1341), - [anon_sym_sizeof] = ACTIONS(1339), - [anon_sym___alignof__] = ACTIONS(1339), - [anon_sym___alignof] = ACTIONS(1339), - [anon_sym__alignof] = ACTIONS(1339), - [anon_sym_alignof] = ACTIONS(1339), - [anon_sym__Alignof] = ACTIONS(1339), - [anon_sym_offsetof] = ACTIONS(1339), - [anon_sym__Generic] = ACTIONS(1339), - [anon_sym_asm] = ACTIONS(1339), - [anon_sym___asm__] = ACTIONS(1339), - [sym_number_literal] = ACTIONS(1341), - [anon_sym_L_SQUOTE] = ACTIONS(1341), - [anon_sym_u_SQUOTE] = ACTIONS(1341), - [anon_sym_U_SQUOTE] = ACTIONS(1341), - [anon_sym_u8_SQUOTE] = ACTIONS(1341), - [anon_sym_SQUOTE] = ACTIONS(1341), - [anon_sym_L_DQUOTE] = ACTIONS(1341), - [anon_sym_u_DQUOTE] = ACTIONS(1341), - [anon_sym_U_DQUOTE] = ACTIONS(1341), - [anon_sym_u8_DQUOTE] = ACTIONS(1341), - [anon_sym_DQUOTE] = ACTIONS(1341), - [sym_true] = ACTIONS(1339), - [sym_false] = ACTIONS(1339), - [anon_sym_NULL] = ACTIONS(1339), - [anon_sym_nullptr] = ACTIONS(1339), + [378] = { + [ts_builtin_sym_end] = ACTIONS(1421), + [sym_identifier] = ACTIONS(1419), + [aux_sym_preproc_include_token1] = ACTIONS(1419), + [aux_sym_preproc_def_token1] = ACTIONS(1419), + [aux_sym_preproc_if_token1] = ACTIONS(1419), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1419), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1419), + [sym_preproc_directive] = ACTIONS(1419), + [anon_sym_LPAREN2] = ACTIONS(1421), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1419), + [anon_sym_PLUS] = ACTIONS(1419), + [anon_sym_STAR] = ACTIONS(1421), + [anon_sym_AMP] = ACTIONS(1421), + [anon_sym___extension__] = ACTIONS(1419), + [anon_sym_typedef] = ACTIONS(1419), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym___attribute__] = ACTIONS(1419), + [anon_sym___scanf] = ACTIONS(1419), + [anon_sym___printf] = ACTIONS(1419), + [anon_sym___read_mostly] = ACTIONS(1419), + [anon_sym___must_hold] = ACTIONS(1419), + [anon_sym___ro_after_init] = ACTIONS(1419), + [anon_sym___noreturn] = ACTIONS(1419), + [anon_sym___cold] = ACTIONS(1419), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1421), + [anon_sym___declspec] = ACTIONS(1419), + [anon_sym___init] = ACTIONS(1419), + [anon_sym___exit] = ACTIONS(1419), + [anon_sym___cdecl] = ACTIONS(1419), + [anon_sym___clrcall] = ACTIONS(1419), + [anon_sym___stdcall] = ACTIONS(1419), + [anon_sym___fastcall] = ACTIONS(1419), + [anon_sym___thiscall] = ACTIONS(1419), + [anon_sym___vectorcall] = ACTIONS(1419), + [anon_sym_LBRACE] = ACTIONS(1421), + [anon_sym_signed] = ACTIONS(1419), + [anon_sym_unsigned] = ACTIONS(1419), + [anon_sym_long] = ACTIONS(1419), + [anon_sym_short] = ACTIONS(1419), + [anon_sym_static] = ACTIONS(1419), + [anon_sym_auto] = ACTIONS(1419), + [anon_sym_register] = ACTIONS(1419), + [anon_sym_inline] = ACTIONS(1419), + [anon_sym___inline] = ACTIONS(1419), + [anon_sym___inline__] = ACTIONS(1419), + [anon_sym___forceinline] = ACTIONS(1419), + [anon_sym_thread_local] = ACTIONS(1419), + [anon_sym___thread] = ACTIONS(1419), + [anon_sym_const] = ACTIONS(1419), + [anon_sym_constexpr] = ACTIONS(1419), + [anon_sym_volatile] = ACTIONS(1419), + [anon_sym_restrict] = ACTIONS(1419), + [anon_sym___restrict__] = ACTIONS(1419), + [anon_sym__Atomic] = ACTIONS(1419), + [anon_sym__Noreturn] = ACTIONS(1419), + [anon_sym_noreturn] = ACTIONS(1419), + [anon_sym_alignas] = ACTIONS(1419), + [anon_sym__Alignas] = ACTIONS(1419), + [sym_primitive_type] = ACTIONS(1419), + [anon_sym_enum] = ACTIONS(1419), + [anon_sym_struct] = ACTIONS(1419), + [anon_sym_union] = ACTIONS(1419), + [anon_sym_if] = ACTIONS(1419), + [anon_sym_switch] = ACTIONS(1419), + [anon_sym_case] = ACTIONS(1419), + [anon_sym_default] = ACTIONS(1419), + [anon_sym_while] = ACTIONS(1419), + [anon_sym_do] = ACTIONS(1419), + [anon_sym_for] = ACTIONS(1419), + [anon_sym_return] = ACTIONS(1419), + [anon_sym_break] = ACTIONS(1419), + [anon_sym_continue] = ACTIONS(1419), + [anon_sym_goto] = ACTIONS(1419), + [anon_sym_DASH_DASH] = ACTIONS(1421), + [anon_sym_PLUS_PLUS] = ACTIONS(1421), + [anon_sym_sizeof] = ACTIONS(1419), + [anon_sym___alignof__] = ACTIONS(1419), + [anon_sym___alignof] = ACTIONS(1419), + [anon_sym__alignof] = ACTIONS(1419), + [anon_sym_alignof] = ACTIONS(1419), + [anon_sym__Alignof] = ACTIONS(1419), + [anon_sym_offsetof] = ACTIONS(1419), + [anon_sym__Generic] = ACTIONS(1419), + [anon_sym_asm] = ACTIONS(1419), + [anon_sym___asm__] = ACTIONS(1419), + [sym_number_literal] = ACTIONS(1421), + [anon_sym_L_SQUOTE] = ACTIONS(1421), + [anon_sym_u_SQUOTE] = ACTIONS(1421), + [anon_sym_U_SQUOTE] = ACTIONS(1421), + [anon_sym_u8_SQUOTE] = ACTIONS(1421), + [anon_sym_SQUOTE] = ACTIONS(1421), + [anon_sym_L_DQUOTE] = ACTIONS(1421), + [anon_sym_u_DQUOTE] = ACTIONS(1421), + [anon_sym_U_DQUOTE] = ACTIONS(1421), + [anon_sym_u8_DQUOTE] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1421), + [sym_true] = ACTIONS(1419), + [sym_false] = ACTIONS(1419), + [anon_sym_NULL] = ACTIONS(1419), + [anon_sym_nullptr] = ACTIONS(1419), [sym_comment] = ACTIONS(3), }, - [319] = { - [ts_builtin_sym_end] = ACTIONS(1373), - [sym_identifier] = ACTIONS(1371), - [aux_sym_preproc_include_token1] = ACTIONS(1371), - [aux_sym_preproc_def_token1] = ACTIONS(1371), - [aux_sym_preproc_if_token1] = ACTIONS(1371), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1371), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1371), - [sym_preproc_directive] = ACTIONS(1371), - [anon_sym_LPAREN2] = ACTIONS(1373), - [anon_sym_BANG] = ACTIONS(1373), - [anon_sym_TILDE] = ACTIONS(1373), - [anon_sym_DASH] = ACTIONS(1371), - [anon_sym_PLUS] = ACTIONS(1371), - [anon_sym_STAR] = ACTIONS(1373), - [anon_sym_AMP] = ACTIONS(1373), - [anon_sym___extension__] = ACTIONS(1371), - [anon_sym_typedef] = ACTIONS(1371), - [anon_sym_extern] = ACTIONS(1371), - [anon_sym___attribute__] = ACTIONS(1371), - [anon_sym___scanf] = ACTIONS(1371), - [anon_sym___printf] = ACTIONS(1371), - [anon_sym___read_mostly] = ACTIONS(1371), - [anon_sym___must_hold] = ACTIONS(1371), - [anon_sym___ro_after_init] = ACTIONS(1371), - [anon_sym___init] = ACTIONS(1371), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1373), - [anon_sym___declspec] = ACTIONS(1371), - [anon_sym___cdecl] = ACTIONS(1371), - [anon_sym___clrcall] = ACTIONS(1371), - [anon_sym___stdcall] = ACTIONS(1371), - [anon_sym___fastcall] = ACTIONS(1371), - [anon_sym___thiscall] = ACTIONS(1371), - [anon_sym___vectorcall] = ACTIONS(1371), - [anon_sym_LBRACE] = ACTIONS(1373), - [anon_sym_signed] = ACTIONS(1371), - [anon_sym_unsigned] = ACTIONS(1371), - [anon_sym_long] = ACTIONS(1371), - [anon_sym_short] = ACTIONS(1371), - [anon_sym_static] = ACTIONS(1371), - [anon_sym_auto] = ACTIONS(1371), - [anon_sym_register] = ACTIONS(1371), - [anon_sym_inline] = ACTIONS(1371), - [anon_sym___inline] = ACTIONS(1371), - [anon_sym___inline__] = ACTIONS(1371), - [anon_sym___forceinline] = ACTIONS(1371), - [anon_sym_thread_local] = ACTIONS(1371), - [anon_sym___thread] = ACTIONS(1371), - [anon_sym_const] = ACTIONS(1371), - [anon_sym_constexpr] = ACTIONS(1371), - [anon_sym_volatile] = ACTIONS(1371), - [anon_sym_restrict] = ACTIONS(1371), - [anon_sym___restrict__] = ACTIONS(1371), - [anon_sym__Atomic] = ACTIONS(1371), - [anon_sym__Noreturn] = ACTIONS(1371), - [anon_sym_noreturn] = ACTIONS(1371), - [anon_sym_alignas] = ACTIONS(1371), - [anon_sym__Alignas] = ACTIONS(1371), - [sym_primitive_type] = ACTIONS(1371), - [anon_sym_enum] = ACTIONS(1371), - [anon_sym_struct] = ACTIONS(1371), - [anon_sym_union] = ACTIONS(1371), - [anon_sym_if] = ACTIONS(1371), - [anon_sym_switch] = ACTIONS(1371), - [anon_sym_case] = ACTIONS(1371), - [anon_sym_default] = ACTIONS(1371), - [anon_sym_while] = ACTIONS(1371), - [anon_sym_do] = ACTIONS(1371), - [anon_sym_for] = ACTIONS(1371), - [anon_sym_return] = ACTIONS(1371), - [anon_sym_break] = ACTIONS(1371), - [anon_sym_continue] = ACTIONS(1371), - [anon_sym_goto] = ACTIONS(1371), - [anon_sym_DASH_DASH] = ACTIONS(1373), - [anon_sym_PLUS_PLUS] = ACTIONS(1373), - [anon_sym_sizeof] = ACTIONS(1371), - [anon_sym___alignof__] = ACTIONS(1371), - [anon_sym___alignof] = ACTIONS(1371), - [anon_sym__alignof] = ACTIONS(1371), - [anon_sym_alignof] = ACTIONS(1371), - [anon_sym__Alignof] = ACTIONS(1371), - [anon_sym_offsetof] = ACTIONS(1371), - [anon_sym__Generic] = ACTIONS(1371), - [anon_sym_asm] = ACTIONS(1371), - [anon_sym___asm__] = ACTIONS(1371), - [sym_number_literal] = ACTIONS(1373), - [anon_sym_L_SQUOTE] = ACTIONS(1373), - [anon_sym_u_SQUOTE] = ACTIONS(1373), - [anon_sym_U_SQUOTE] = ACTIONS(1373), - [anon_sym_u8_SQUOTE] = ACTIONS(1373), - [anon_sym_SQUOTE] = ACTIONS(1373), - [anon_sym_L_DQUOTE] = ACTIONS(1373), - [anon_sym_u_DQUOTE] = ACTIONS(1373), - [anon_sym_U_DQUOTE] = ACTIONS(1373), - [anon_sym_u8_DQUOTE] = ACTIONS(1373), - [anon_sym_DQUOTE] = ACTIONS(1373), - [sym_true] = ACTIONS(1371), - [sym_false] = ACTIONS(1371), - [anon_sym_NULL] = ACTIONS(1371), - [anon_sym_nullptr] = ACTIONS(1371), + [379] = { + [ts_builtin_sym_end] = ACTIONS(1351), + [sym_identifier] = ACTIONS(1349), + [aux_sym_preproc_include_token1] = ACTIONS(1349), + [aux_sym_preproc_def_token1] = ACTIONS(1349), + [aux_sym_preproc_if_token1] = ACTIONS(1349), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1349), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1349), + [sym_preproc_directive] = ACTIONS(1349), + [anon_sym_LPAREN2] = ACTIONS(1351), + [anon_sym_BANG] = ACTIONS(1351), + [anon_sym_TILDE] = ACTIONS(1351), + [anon_sym_DASH] = ACTIONS(1349), + [anon_sym_PLUS] = ACTIONS(1349), + [anon_sym_STAR] = ACTIONS(1351), + [anon_sym_AMP] = ACTIONS(1351), + [anon_sym___extension__] = ACTIONS(1349), + [anon_sym_typedef] = ACTIONS(1349), + [anon_sym_extern] = ACTIONS(1349), + [anon_sym___attribute__] = ACTIONS(1349), + [anon_sym___scanf] = ACTIONS(1349), + [anon_sym___printf] = ACTIONS(1349), + [anon_sym___read_mostly] = ACTIONS(1349), + [anon_sym___must_hold] = ACTIONS(1349), + [anon_sym___ro_after_init] = ACTIONS(1349), + [anon_sym___noreturn] = ACTIONS(1349), + [anon_sym___cold] = ACTIONS(1349), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1351), + [anon_sym___declspec] = ACTIONS(1349), + [anon_sym___init] = ACTIONS(1349), + [anon_sym___exit] = ACTIONS(1349), + [anon_sym___cdecl] = ACTIONS(1349), + [anon_sym___clrcall] = ACTIONS(1349), + [anon_sym___stdcall] = ACTIONS(1349), + [anon_sym___fastcall] = ACTIONS(1349), + [anon_sym___thiscall] = ACTIONS(1349), + [anon_sym___vectorcall] = ACTIONS(1349), + [anon_sym_LBRACE] = ACTIONS(1351), + [anon_sym_signed] = ACTIONS(1349), + [anon_sym_unsigned] = ACTIONS(1349), + [anon_sym_long] = ACTIONS(1349), + [anon_sym_short] = ACTIONS(1349), + [anon_sym_static] = ACTIONS(1349), + [anon_sym_auto] = ACTIONS(1349), + [anon_sym_register] = ACTIONS(1349), + [anon_sym_inline] = ACTIONS(1349), + [anon_sym___inline] = ACTIONS(1349), + [anon_sym___inline__] = ACTIONS(1349), + [anon_sym___forceinline] = ACTIONS(1349), + [anon_sym_thread_local] = ACTIONS(1349), + [anon_sym___thread] = ACTIONS(1349), + [anon_sym_const] = ACTIONS(1349), + [anon_sym_constexpr] = ACTIONS(1349), + [anon_sym_volatile] = ACTIONS(1349), + [anon_sym_restrict] = ACTIONS(1349), + [anon_sym___restrict__] = ACTIONS(1349), + [anon_sym__Atomic] = ACTIONS(1349), + [anon_sym__Noreturn] = ACTIONS(1349), + [anon_sym_noreturn] = ACTIONS(1349), + [anon_sym_alignas] = ACTIONS(1349), + [anon_sym__Alignas] = ACTIONS(1349), + [sym_primitive_type] = ACTIONS(1349), + [anon_sym_enum] = ACTIONS(1349), + [anon_sym_struct] = ACTIONS(1349), + [anon_sym_union] = ACTIONS(1349), + [anon_sym_if] = ACTIONS(1349), + [anon_sym_switch] = ACTIONS(1349), + [anon_sym_case] = ACTIONS(1349), + [anon_sym_default] = ACTIONS(1349), + [anon_sym_while] = ACTIONS(1349), + [anon_sym_do] = ACTIONS(1349), + [anon_sym_for] = ACTIONS(1349), + [anon_sym_return] = ACTIONS(1349), + [anon_sym_break] = ACTIONS(1349), + [anon_sym_continue] = ACTIONS(1349), + [anon_sym_goto] = ACTIONS(1349), + [anon_sym_DASH_DASH] = ACTIONS(1351), + [anon_sym_PLUS_PLUS] = ACTIONS(1351), + [anon_sym_sizeof] = ACTIONS(1349), + [anon_sym___alignof__] = ACTIONS(1349), + [anon_sym___alignof] = ACTIONS(1349), + [anon_sym__alignof] = ACTIONS(1349), + [anon_sym_alignof] = ACTIONS(1349), + [anon_sym__Alignof] = ACTIONS(1349), + [anon_sym_offsetof] = ACTIONS(1349), + [anon_sym__Generic] = ACTIONS(1349), + [anon_sym_asm] = ACTIONS(1349), + [anon_sym___asm__] = ACTIONS(1349), + [sym_number_literal] = ACTIONS(1351), + [anon_sym_L_SQUOTE] = ACTIONS(1351), + [anon_sym_u_SQUOTE] = ACTIONS(1351), + [anon_sym_U_SQUOTE] = ACTIONS(1351), + [anon_sym_u8_SQUOTE] = ACTIONS(1351), + [anon_sym_SQUOTE] = ACTIONS(1351), + [anon_sym_L_DQUOTE] = ACTIONS(1351), + [anon_sym_u_DQUOTE] = ACTIONS(1351), + [anon_sym_U_DQUOTE] = ACTIONS(1351), + [anon_sym_u8_DQUOTE] = ACTIONS(1351), + [anon_sym_DQUOTE] = ACTIONS(1351), + [sym_true] = ACTIONS(1349), + [sym_false] = ACTIONS(1349), + [anon_sym_NULL] = ACTIONS(1349), + [anon_sym_nullptr] = ACTIONS(1349), [sym_comment] = ACTIONS(3), }, - [320] = { - [ts_builtin_sym_end] = ACTIONS(1305), - [sym_identifier] = ACTIONS(1303), - [aux_sym_preproc_include_token1] = ACTIONS(1303), - [aux_sym_preproc_def_token1] = ACTIONS(1303), - [aux_sym_preproc_if_token1] = ACTIONS(1303), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1303), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1303), - [sym_preproc_directive] = ACTIONS(1303), - [anon_sym_LPAREN2] = ACTIONS(1305), - [anon_sym_BANG] = ACTIONS(1305), - [anon_sym_TILDE] = ACTIONS(1305), - [anon_sym_DASH] = ACTIONS(1303), - [anon_sym_PLUS] = ACTIONS(1303), - [anon_sym_STAR] = ACTIONS(1305), - [anon_sym_AMP] = ACTIONS(1305), - [anon_sym___extension__] = ACTIONS(1303), - [anon_sym_typedef] = ACTIONS(1303), - [anon_sym_extern] = ACTIONS(1303), - [anon_sym___attribute__] = ACTIONS(1303), - [anon_sym___scanf] = ACTIONS(1303), - [anon_sym___printf] = ACTIONS(1303), - [anon_sym___read_mostly] = ACTIONS(1303), - [anon_sym___must_hold] = ACTIONS(1303), - [anon_sym___ro_after_init] = ACTIONS(1303), - [anon_sym___init] = ACTIONS(1303), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1305), - [anon_sym___declspec] = ACTIONS(1303), - [anon_sym___cdecl] = ACTIONS(1303), - [anon_sym___clrcall] = ACTIONS(1303), - [anon_sym___stdcall] = ACTIONS(1303), - [anon_sym___fastcall] = ACTIONS(1303), - [anon_sym___thiscall] = ACTIONS(1303), - [anon_sym___vectorcall] = ACTIONS(1303), - [anon_sym_LBRACE] = ACTIONS(1305), - [anon_sym_signed] = ACTIONS(1303), - [anon_sym_unsigned] = ACTIONS(1303), - [anon_sym_long] = ACTIONS(1303), - [anon_sym_short] = ACTIONS(1303), - [anon_sym_static] = ACTIONS(1303), - [anon_sym_auto] = ACTIONS(1303), - [anon_sym_register] = ACTIONS(1303), - [anon_sym_inline] = ACTIONS(1303), - [anon_sym___inline] = ACTIONS(1303), - [anon_sym___inline__] = ACTIONS(1303), - [anon_sym___forceinline] = ACTIONS(1303), - [anon_sym_thread_local] = ACTIONS(1303), - [anon_sym___thread] = ACTIONS(1303), - [anon_sym_const] = ACTIONS(1303), - [anon_sym_constexpr] = ACTIONS(1303), - [anon_sym_volatile] = ACTIONS(1303), - [anon_sym_restrict] = ACTIONS(1303), - [anon_sym___restrict__] = ACTIONS(1303), - [anon_sym__Atomic] = ACTIONS(1303), - [anon_sym__Noreturn] = ACTIONS(1303), - [anon_sym_noreturn] = ACTIONS(1303), - [anon_sym_alignas] = ACTIONS(1303), - [anon_sym__Alignas] = ACTIONS(1303), - [sym_primitive_type] = ACTIONS(1303), - [anon_sym_enum] = ACTIONS(1303), - [anon_sym_struct] = ACTIONS(1303), - [anon_sym_union] = ACTIONS(1303), - [anon_sym_if] = ACTIONS(1303), - [anon_sym_switch] = ACTIONS(1303), - [anon_sym_case] = ACTIONS(1303), - [anon_sym_default] = ACTIONS(1303), - [anon_sym_while] = ACTIONS(1303), - [anon_sym_do] = ACTIONS(1303), - [anon_sym_for] = ACTIONS(1303), - [anon_sym_return] = ACTIONS(1303), - [anon_sym_break] = ACTIONS(1303), - [anon_sym_continue] = ACTIONS(1303), - [anon_sym_goto] = ACTIONS(1303), - [anon_sym_DASH_DASH] = ACTIONS(1305), - [anon_sym_PLUS_PLUS] = ACTIONS(1305), - [anon_sym_sizeof] = ACTIONS(1303), - [anon_sym___alignof__] = ACTIONS(1303), - [anon_sym___alignof] = ACTIONS(1303), - [anon_sym__alignof] = ACTIONS(1303), - [anon_sym_alignof] = ACTIONS(1303), - [anon_sym__Alignof] = ACTIONS(1303), - [anon_sym_offsetof] = ACTIONS(1303), - [anon_sym__Generic] = ACTIONS(1303), - [anon_sym_asm] = ACTIONS(1303), - [anon_sym___asm__] = ACTIONS(1303), - [sym_number_literal] = ACTIONS(1305), - [anon_sym_L_SQUOTE] = ACTIONS(1305), - [anon_sym_u_SQUOTE] = ACTIONS(1305), - [anon_sym_U_SQUOTE] = ACTIONS(1305), - [anon_sym_u8_SQUOTE] = ACTIONS(1305), - [anon_sym_SQUOTE] = ACTIONS(1305), - [anon_sym_L_DQUOTE] = ACTIONS(1305), - [anon_sym_u_DQUOTE] = ACTIONS(1305), - [anon_sym_U_DQUOTE] = ACTIONS(1305), - [anon_sym_u8_DQUOTE] = ACTIONS(1305), - [anon_sym_DQUOTE] = ACTIONS(1305), - [sym_true] = ACTIONS(1303), - [sym_false] = ACTIONS(1303), - [anon_sym_NULL] = ACTIONS(1303), - [anon_sym_nullptr] = ACTIONS(1303), + [380] = { + [ts_builtin_sym_end] = ACTIONS(1327), + [sym_identifier] = ACTIONS(1325), + [aux_sym_preproc_include_token1] = ACTIONS(1325), + [aux_sym_preproc_def_token1] = ACTIONS(1325), + [aux_sym_preproc_if_token1] = ACTIONS(1325), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1325), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1325), + [sym_preproc_directive] = ACTIONS(1325), + [anon_sym_LPAREN2] = ACTIONS(1327), + [anon_sym_BANG] = ACTIONS(1327), + [anon_sym_TILDE] = ACTIONS(1327), + [anon_sym_DASH] = ACTIONS(1325), + [anon_sym_PLUS] = ACTIONS(1325), + [anon_sym_STAR] = ACTIONS(1327), + [anon_sym_AMP] = ACTIONS(1327), + [anon_sym___extension__] = ACTIONS(1325), + [anon_sym_typedef] = ACTIONS(1325), + [anon_sym_extern] = ACTIONS(1325), + [anon_sym___attribute__] = ACTIONS(1325), + [anon_sym___scanf] = ACTIONS(1325), + [anon_sym___printf] = ACTIONS(1325), + [anon_sym___read_mostly] = ACTIONS(1325), + [anon_sym___must_hold] = ACTIONS(1325), + [anon_sym___ro_after_init] = ACTIONS(1325), + [anon_sym___noreturn] = ACTIONS(1325), + [anon_sym___cold] = ACTIONS(1325), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1327), + [anon_sym___declspec] = ACTIONS(1325), + [anon_sym___init] = ACTIONS(1325), + [anon_sym___exit] = ACTIONS(1325), + [anon_sym___cdecl] = ACTIONS(1325), + [anon_sym___clrcall] = ACTIONS(1325), + [anon_sym___stdcall] = ACTIONS(1325), + [anon_sym___fastcall] = ACTIONS(1325), + [anon_sym___thiscall] = ACTIONS(1325), + [anon_sym___vectorcall] = ACTIONS(1325), + [anon_sym_LBRACE] = ACTIONS(1327), + [anon_sym_signed] = ACTIONS(1325), + [anon_sym_unsigned] = ACTIONS(1325), + [anon_sym_long] = ACTIONS(1325), + [anon_sym_short] = ACTIONS(1325), + [anon_sym_static] = ACTIONS(1325), + [anon_sym_auto] = ACTIONS(1325), + [anon_sym_register] = ACTIONS(1325), + [anon_sym_inline] = ACTIONS(1325), + [anon_sym___inline] = ACTIONS(1325), + [anon_sym___inline__] = ACTIONS(1325), + [anon_sym___forceinline] = ACTIONS(1325), + [anon_sym_thread_local] = ACTIONS(1325), + [anon_sym___thread] = ACTIONS(1325), + [anon_sym_const] = ACTIONS(1325), + [anon_sym_constexpr] = ACTIONS(1325), + [anon_sym_volatile] = ACTIONS(1325), + [anon_sym_restrict] = ACTIONS(1325), + [anon_sym___restrict__] = ACTIONS(1325), + [anon_sym__Atomic] = ACTIONS(1325), + [anon_sym__Noreturn] = ACTIONS(1325), + [anon_sym_noreturn] = ACTIONS(1325), + [anon_sym_alignas] = ACTIONS(1325), + [anon_sym__Alignas] = ACTIONS(1325), + [sym_primitive_type] = ACTIONS(1325), + [anon_sym_enum] = ACTIONS(1325), + [anon_sym_struct] = ACTIONS(1325), + [anon_sym_union] = ACTIONS(1325), + [anon_sym_if] = ACTIONS(1325), + [anon_sym_switch] = ACTIONS(1325), + [anon_sym_case] = ACTIONS(1325), + [anon_sym_default] = ACTIONS(1325), + [anon_sym_while] = ACTIONS(1325), + [anon_sym_do] = ACTIONS(1325), + [anon_sym_for] = ACTIONS(1325), + [anon_sym_return] = ACTIONS(1325), + [anon_sym_break] = ACTIONS(1325), + [anon_sym_continue] = ACTIONS(1325), + [anon_sym_goto] = ACTIONS(1325), + [anon_sym_DASH_DASH] = ACTIONS(1327), + [anon_sym_PLUS_PLUS] = ACTIONS(1327), + [anon_sym_sizeof] = ACTIONS(1325), + [anon_sym___alignof__] = ACTIONS(1325), + [anon_sym___alignof] = ACTIONS(1325), + [anon_sym__alignof] = ACTIONS(1325), + [anon_sym_alignof] = ACTIONS(1325), + [anon_sym__Alignof] = ACTIONS(1325), + [anon_sym_offsetof] = ACTIONS(1325), + [anon_sym__Generic] = ACTIONS(1325), + [anon_sym_asm] = ACTIONS(1325), + [anon_sym___asm__] = ACTIONS(1325), + [sym_number_literal] = ACTIONS(1327), + [anon_sym_L_SQUOTE] = ACTIONS(1327), + [anon_sym_u_SQUOTE] = ACTIONS(1327), + [anon_sym_U_SQUOTE] = ACTIONS(1327), + [anon_sym_u8_SQUOTE] = ACTIONS(1327), + [anon_sym_SQUOTE] = ACTIONS(1327), + [anon_sym_L_DQUOTE] = ACTIONS(1327), + [anon_sym_u_DQUOTE] = ACTIONS(1327), + [anon_sym_U_DQUOTE] = ACTIONS(1327), + [anon_sym_u8_DQUOTE] = ACTIONS(1327), + [anon_sym_DQUOTE] = ACTIONS(1327), + [sym_true] = ACTIONS(1325), + [sym_false] = ACTIONS(1325), + [anon_sym_NULL] = ACTIONS(1325), + [anon_sym_nullptr] = ACTIONS(1325), [sym_comment] = ACTIONS(3), }, - [321] = { - [ts_builtin_sym_end] = ACTIONS(1317), - [sym_identifier] = ACTIONS(1315), - [aux_sym_preproc_include_token1] = ACTIONS(1315), - [aux_sym_preproc_def_token1] = ACTIONS(1315), - [aux_sym_preproc_if_token1] = ACTIONS(1315), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1315), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1315), - [sym_preproc_directive] = ACTIONS(1315), - [anon_sym_LPAREN2] = ACTIONS(1317), - [anon_sym_BANG] = ACTIONS(1317), - [anon_sym_TILDE] = ACTIONS(1317), - [anon_sym_DASH] = ACTIONS(1315), - [anon_sym_PLUS] = ACTIONS(1315), - [anon_sym_STAR] = ACTIONS(1317), - [anon_sym_AMP] = ACTIONS(1317), - [anon_sym___extension__] = ACTIONS(1315), - [anon_sym_typedef] = ACTIONS(1315), - [anon_sym_extern] = ACTIONS(1315), - [anon_sym___attribute__] = ACTIONS(1315), - [anon_sym___scanf] = ACTIONS(1315), - [anon_sym___printf] = ACTIONS(1315), - [anon_sym___read_mostly] = ACTIONS(1315), - [anon_sym___must_hold] = ACTIONS(1315), - [anon_sym___ro_after_init] = ACTIONS(1315), - [anon_sym___init] = ACTIONS(1315), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1317), - [anon_sym___declspec] = ACTIONS(1315), - [anon_sym___cdecl] = ACTIONS(1315), - [anon_sym___clrcall] = ACTIONS(1315), - [anon_sym___stdcall] = ACTIONS(1315), - [anon_sym___fastcall] = ACTIONS(1315), - [anon_sym___thiscall] = ACTIONS(1315), - [anon_sym___vectorcall] = ACTIONS(1315), - [anon_sym_LBRACE] = ACTIONS(1317), - [anon_sym_signed] = ACTIONS(1315), - [anon_sym_unsigned] = ACTIONS(1315), - [anon_sym_long] = ACTIONS(1315), - [anon_sym_short] = ACTIONS(1315), - [anon_sym_static] = ACTIONS(1315), - [anon_sym_auto] = ACTIONS(1315), - [anon_sym_register] = ACTIONS(1315), - [anon_sym_inline] = ACTIONS(1315), - [anon_sym___inline] = ACTIONS(1315), - [anon_sym___inline__] = ACTIONS(1315), - [anon_sym___forceinline] = ACTIONS(1315), - [anon_sym_thread_local] = ACTIONS(1315), - [anon_sym___thread] = ACTIONS(1315), - [anon_sym_const] = ACTIONS(1315), - [anon_sym_constexpr] = ACTIONS(1315), - [anon_sym_volatile] = ACTIONS(1315), - [anon_sym_restrict] = ACTIONS(1315), - [anon_sym___restrict__] = ACTIONS(1315), - [anon_sym__Atomic] = ACTIONS(1315), - [anon_sym__Noreturn] = ACTIONS(1315), - [anon_sym_noreturn] = ACTIONS(1315), - [anon_sym_alignas] = ACTIONS(1315), - [anon_sym__Alignas] = ACTIONS(1315), - [sym_primitive_type] = ACTIONS(1315), - [anon_sym_enum] = ACTIONS(1315), - [anon_sym_struct] = ACTIONS(1315), - [anon_sym_union] = ACTIONS(1315), - [anon_sym_if] = ACTIONS(1315), - [anon_sym_switch] = ACTIONS(1315), - [anon_sym_case] = ACTIONS(1315), - [anon_sym_default] = ACTIONS(1315), - [anon_sym_while] = ACTIONS(1315), - [anon_sym_do] = ACTIONS(1315), - [anon_sym_for] = ACTIONS(1315), - [anon_sym_return] = ACTIONS(1315), - [anon_sym_break] = ACTIONS(1315), - [anon_sym_continue] = ACTIONS(1315), - [anon_sym_goto] = ACTIONS(1315), - [anon_sym_DASH_DASH] = ACTIONS(1317), - [anon_sym_PLUS_PLUS] = ACTIONS(1317), - [anon_sym_sizeof] = ACTIONS(1315), - [anon_sym___alignof__] = ACTIONS(1315), - [anon_sym___alignof] = ACTIONS(1315), - [anon_sym__alignof] = ACTIONS(1315), - [anon_sym_alignof] = ACTIONS(1315), - [anon_sym__Alignof] = ACTIONS(1315), - [anon_sym_offsetof] = ACTIONS(1315), - [anon_sym__Generic] = ACTIONS(1315), - [anon_sym_asm] = ACTIONS(1315), - [anon_sym___asm__] = ACTIONS(1315), - [sym_number_literal] = ACTIONS(1317), - [anon_sym_L_SQUOTE] = ACTIONS(1317), - [anon_sym_u_SQUOTE] = ACTIONS(1317), - [anon_sym_U_SQUOTE] = ACTIONS(1317), - [anon_sym_u8_SQUOTE] = ACTIONS(1317), - [anon_sym_SQUOTE] = ACTIONS(1317), - [anon_sym_L_DQUOTE] = ACTIONS(1317), - [anon_sym_u_DQUOTE] = ACTIONS(1317), - [anon_sym_U_DQUOTE] = ACTIONS(1317), - [anon_sym_u8_DQUOTE] = ACTIONS(1317), - [anon_sym_DQUOTE] = ACTIONS(1317), - [sym_true] = ACTIONS(1315), - [sym_false] = ACTIONS(1315), - [anon_sym_NULL] = ACTIONS(1315), - [anon_sym_nullptr] = ACTIONS(1315), + [381] = { + [ts_builtin_sym_end] = ACTIONS(1387), + [sym_identifier] = ACTIONS(1385), + [aux_sym_preproc_include_token1] = ACTIONS(1385), + [aux_sym_preproc_def_token1] = ACTIONS(1385), + [aux_sym_preproc_if_token1] = ACTIONS(1385), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1385), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1385), + [sym_preproc_directive] = ACTIONS(1385), + [anon_sym_LPAREN2] = ACTIONS(1387), + [anon_sym_BANG] = ACTIONS(1387), + [anon_sym_TILDE] = ACTIONS(1387), + [anon_sym_DASH] = ACTIONS(1385), + [anon_sym_PLUS] = ACTIONS(1385), + [anon_sym_STAR] = ACTIONS(1387), + [anon_sym_AMP] = ACTIONS(1387), + [anon_sym___extension__] = ACTIONS(1385), + [anon_sym_typedef] = ACTIONS(1385), + [anon_sym_extern] = ACTIONS(1385), + [anon_sym___attribute__] = ACTIONS(1385), + [anon_sym___scanf] = ACTIONS(1385), + [anon_sym___printf] = ACTIONS(1385), + [anon_sym___read_mostly] = ACTIONS(1385), + [anon_sym___must_hold] = ACTIONS(1385), + [anon_sym___ro_after_init] = ACTIONS(1385), + [anon_sym___noreturn] = ACTIONS(1385), + [anon_sym___cold] = ACTIONS(1385), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1387), + [anon_sym___declspec] = ACTIONS(1385), + [anon_sym___init] = ACTIONS(1385), + [anon_sym___exit] = ACTIONS(1385), + [anon_sym___cdecl] = ACTIONS(1385), + [anon_sym___clrcall] = ACTIONS(1385), + [anon_sym___stdcall] = ACTIONS(1385), + [anon_sym___fastcall] = ACTIONS(1385), + [anon_sym___thiscall] = ACTIONS(1385), + [anon_sym___vectorcall] = ACTIONS(1385), + [anon_sym_LBRACE] = ACTIONS(1387), + [anon_sym_signed] = ACTIONS(1385), + [anon_sym_unsigned] = ACTIONS(1385), + [anon_sym_long] = ACTIONS(1385), + [anon_sym_short] = ACTIONS(1385), + [anon_sym_static] = ACTIONS(1385), + [anon_sym_auto] = ACTIONS(1385), + [anon_sym_register] = ACTIONS(1385), + [anon_sym_inline] = ACTIONS(1385), + [anon_sym___inline] = ACTIONS(1385), + [anon_sym___inline__] = ACTIONS(1385), + [anon_sym___forceinline] = ACTIONS(1385), + [anon_sym_thread_local] = ACTIONS(1385), + [anon_sym___thread] = ACTIONS(1385), + [anon_sym_const] = ACTIONS(1385), + [anon_sym_constexpr] = ACTIONS(1385), + [anon_sym_volatile] = ACTIONS(1385), + [anon_sym_restrict] = ACTIONS(1385), + [anon_sym___restrict__] = ACTIONS(1385), + [anon_sym__Atomic] = ACTIONS(1385), + [anon_sym__Noreturn] = ACTIONS(1385), + [anon_sym_noreturn] = ACTIONS(1385), + [anon_sym_alignas] = ACTIONS(1385), + [anon_sym__Alignas] = ACTIONS(1385), + [sym_primitive_type] = ACTIONS(1385), + [anon_sym_enum] = ACTIONS(1385), + [anon_sym_struct] = ACTIONS(1385), + [anon_sym_union] = ACTIONS(1385), + [anon_sym_if] = ACTIONS(1385), + [anon_sym_switch] = ACTIONS(1385), + [anon_sym_case] = ACTIONS(1385), + [anon_sym_default] = ACTIONS(1385), + [anon_sym_while] = ACTIONS(1385), + [anon_sym_do] = ACTIONS(1385), + [anon_sym_for] = ACTIONS(1385), + [anon_sym_return] = ACTIONS(1385), + [anon_sym_break] = ACTIONS(1385), + [anon_sym_continue] = ACTIONS(1385), + [anon_sym_goto] = ACTIONS(1385), + [anon_sym_DASH_DASH] = ACTIONS(1387), + [anon_sym_PLUS_PLUS] = ACTIONS(1387), + [anon_sym_sizeof] = ACTIONS(1385), + [anon_sym___alignof__] = ACTIONS(1385), + [anon_sym___alignof] = ACTIONS(1385), + [anon_sym__alignof] = ACTIONS(1385), + [anon_sym_alignof] = ACTIONS(1385), + [anon_sym__Alignof] = ACTIONS(1385), + [anon_sym_offsetof] = ACTIONS(1385), + [anon_sym__Generic] = ACTIONS(1385), + [anon_sym_asm] = ACTIONS(1385), + [anon_sym___asm__] = ACTIONS(1385), + [sym_number_literal] = ACTIONS(1387), + [anon_sym_L_SQUOTE] = ACTIONS(1387), + [anon_sym_u_SQUOTE] = ACTIONS(1387), + [anon_sym_U_SQUOTE] = ACTIONS(1387), + [anon_sym_u8_SQUOTE] = ACTIONS(1387), + [anon_sym_SQUOTE] = ACTIONS(1387), + [anon_sym_L_DQUOTE] = ACTIONS(1387), + [anon_sym_u_DQUOTE] = ACTIONS(1387), + [anon_sym_U_DQUOTE] = ACTIONS(1387), + [anon_sym_u8_DQUOTE] = ACTIONS(1387), + [anon_sym_DQUOTE] = ACTIONS(1387), + [sym_true] = ACTIONS(1385), + [sym_false] = ACTIONS(1385), + [anon_sym_NULL] = ACTIONS(1385), + [anon_sym_nullptr] = ACTIONS(1385), [sym_comment] = ACTIONS(3), }, - [322] = { - [ts_builtin_sym_end] = ACTIONS(1411), - [sym_identifier] = ACTIONS(1413), - [aux_sym_preproc_include_token1] = ACTIONS(1413), - [aux_sym_preproc_def_token1] = ACTIONS(1413), - [aux_sym_preproc_if_token1] = ACTIONS(1413), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1413), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1413), - [sym_preproc_directive] = ACTIONS(1413), - [anon_sym_LPAREN2] = ACTIONS(1411), - [anon_sym_BANG] = ACTIONS(1411), - [anon_sym_TILDE] = ACTIONS(1411), - [anon_sym_DASH] = ACTIONS(1413), - [anon_sym_PLUS] = ACTIONS(1413), - [anon_sym_STAR] = ACTIONS(1411), - [anon_sym_AMP] = ACTIONS(1411), - [anon_sym___extension__] = ACTIONS(1413), - [anon_sym_typedef] = ACTIONS(1413), - [anon_sym_extern] = ACTIONS(1413), - [anon_sym___attribute__] = ACTIONS(1413), - [anon_sym___scanf] = ACTIONS(1413), - [anon_sym___printf] = ACTIONS(1413), - [anon_sym___read_mostly] = ACTIONS(1413), - [anon_sym___must_hold] = ACTIONS(1413), - [anon_sym___ro_after_init] = ACTIONS(1413), - [anon_sym___init] = ACTIONS(1413), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1411), - [anon_sym___declspec] = ACTIONS(1413), - [anon_sym___cdecl] = ACTIONS(1413), - [anon_sym___clrcall] = ACTIONS(1413), - [anon_sym___stdcall] = ACTIONS(1413), - [anon_sym___fastcall] = ACTIONS(1413), - [anon_sym___thiscall] = ACTIONS(1413), - [anon_sym___vectorcall] = ACTIONS(1413), - [anon_sym_LBRACE] = ACTIONS(1411), - [anon_sym_signed] = ACTIONS(1413), - [anon_sym_unsigned] = ACTIONS(1413), - [anon_sym_long] = ACTIONS(1413), - [anon_sym_short] = ACTIONS(1413), - [anon_sym_static] = ACTIONS(1413), - [anon_sym_auto] = ACTIONS(1413), - [anon_sym_register] = ACTIONS(1413), - [anon_sym_inline] = ACTIONS(1413), - [anon_sym___inline] = ACTIONS(1413), - [anon_sym___inline__] = ACTIONS(1413), - [anon_sym___forceinline] = ACTIONS(1413), - [anon_sym_thread_local] = ACTIONS(1413), - [anon_sym___thread] = ACTIONS(1413), - [anon_sym_const] = ACTIONS(1413), - [anon_sym_constexpr] = ACTIONS(1413), - [anon_sym_volatile] = ACTIONS(1413), - [anon_sym_restrict] = ACTIONS(1413), - [anon_sym___restrict__] = ACTIONS(1413), - [anon_sym__Atomic] = ACTIONS(1413), - [anon_sym__Noreturn] = ACTIONS(1413), - [anon_sym_noreturn] = ACTIONS(1413), - [anon_sym_alignas] = ACTIONS(1413), - [anon_sym__Alignas] = ACTIONS(1413), - [sym_primitive_type] = ACTIONS(1413), - [anon_sym_enum] = ACTIONS(1413), - [anon_sym_struct] = ACTIONS(1413), - [anon_sym_union] = ACTIONS(1413), - [anon_sym_if] = ACTIONS(1413), - [anon_sym_switch] = ACTIONS(1413), - [anon_sym_case] = ACTIONS(1413), - [anon_sym_default] = ACTIONS(1413), - [anon_sym_while] = ACTIONS(1413), - [anon_sym_do] = ACTIONS(1413), - [anon_sym_for] = ACTIONS(1413), - [anon_sym_return] = ACTIONS(1413), - [anon_sym_break] = ACTIONS(1413), - [anon_sym_continue] = ACTIONS(1413), - [anon_sym_goto] = ACTIONS(1413), - [anon_sym_DASH_DASH] = ACTIONS(1411), - [anon_sym_PLUS_PLUS] = ACTIONS(1411), - [anon_sym_sizeof] = ACTIONS(1413), - [anon_sym___alignof__] = ACTIONS(1413), - [anon_sym___alignof] = ACTIONS(1413), - [anon_sym__alignof] = ACTIONS(1413), - [anon_sym_alignof] = ACTIONS(1413), - [anon_sym__Alignof] = ACTIONS(1413), - [anon_sym_offsetof] = ACTIONS(1413), - [anon_sym__Generic] = ACTIONS(1413), - [anon_sym_asm] = ACTIONS(1413), - [anon_sym___asm__] = ACTIONS(1413), - [sym_number_literal] = ACTIONS(1411), - [anon_sym_L_SQUOTE] = ACTIONS(1411), - [anon_sym_u_SQUOTE] = ACTIONS(1411), - [anon_sym_U_SQUOTE] = ACTIONS(1411), - [anon_sym_u8_SQUOTE] = ACTIONS(1411), - [anon_sym_SQUOTE] = ACTIONS(1411), - [anon_sym_L_DQUOTE] = ACTIONS(1411), - [anon_sym_u_DQUOTE] = ACTIONS(1411), - [anon_sym_U_DQUOTE] = ACTIONS(1411), - [anon_sym_u8_DQUOTE] = ACTIONS(1411), - [anon_sym_DQUOTE] = ACTIONS(1411), - [sym_true] = ACTIONS(1413), - [sym_false] = ACTIONS(1413), - [anon_sym_NULL] = ACTIONS(1413), - [anon_sym_nullptr] = ACTIONS(1413), + [382] = { + [ts_builtin_sym_end] = ACTIONS(1417), + [sym_identifier] = ACTIONS(1415), + [aux_sym_preproc_include_token1] = ACTIONS(1415), + [aux_sym_preproc_def_token1] = ACTIONS(1415), + [aux_sym_preproc_if_token1] = ACTIONS(1415), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1415), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1415), + [sym_preproc_directive] = ACTIONS(1415), + [anon_sym_LPAREN2] = ACTIONS(1417), + [anon_sym_BANG] = ACTIONS(1417), + [anon_sym_TILDE] = ACTIONS(1417), + [anon_sym_DASH] = ACTIONS(1415), + [anon_sym_PLUS] = ACTIONS(1415), + [anon_sym_STAR] = ACTIONS(1417), + [anon_sym_AMP] = ACTIONS(1417), + [anon_sym___extension__] = ACTIONS(1415), + [anon_sym_typedef] = ACTIONS(1415), + [anon_sym_extern] = ACTIONS(1415), + [anon_sym___attribute__] = ACTIONS(1415), + [anon_sym___scanf] = ACTIONS(1415), + [anon_sym___printf] = ACTIONS(1415), + [anon_sym___read_mostly] = ACTIONS(1415), + [anon_sym___must_hold] = ACTIONS(1415), + [anon_sym___ro_after_init] = ACTIONS(1415), + [anon_sym___noreturn] = ACTIONS(1415), + [anon_sym___cold] = ACTIONS(1415), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1417), + [anon_sym___declspec] = ACTIONS(1415), + [anon_sym___init] = ACTIONS(1415), + [anon_sym___exit] = ACTIONS(1415), + [anon_sym___cdecl] = ACTIONS(1415), + [anon_sym___clrcall] = ACTIONS(1415), + [anon_sym___stdcall] = ACTIONS(1415), + [anon_sym___fastcall] = ACTIONS(1415), + [anon_sym___thiscall] = ACTIONS(1415), + [anon_sym___vectorcall] = ACTIONS(1415), + [anon_sym_LBRACE] = ACTIONS(1417), + [anon_sym_signed] = ACTIONS(1415), + [anon_sym_unsigned] = ACTIONS(1415), + [anon_sym_long] = ACTIONS(1415), + [anon_sym_short] = ACTIONS(1415), + [anon_sym_static] = ACTIONS(1415), + [anon_sym_auto] = ACTIONS(1415), + [anon_sym_register] = ACTIONS(1415), + [anon_sym_inline] = ACTIONS(1415), + [anon_sym___inline] = ACTIONS(1415), + [anon_sym___inline__] = ACTIONS(1415), + [anon_sym___forceinline] = ACTIONS(1415), + [anon_sym_thread_local] = ACTIONS(1415), + [anon_sym___thread] = ACTIONS(1415), + [anon_sym_const] = ACTIONS(1415), + [anon_sym_constexpr] = ACTIONS(1415), + [anon_sym_volatile] = ACTIONS(1415), + [anon_sym_restrict] = ACTIONS(1415), + [anon_sym___restrict__] = ACTIONS(1415), + [anon_sym__Atomic] = ACTIONS(1415), + [anon_sym__Noreturn] = ACTIONS(1415), + [anon_sym_noreturn] = ACTIONS(1415), + [anon_sym_alignas] = ACTIONS(1415), + [anon_sym__Alignas] = ACTIONS(1415), + [sym_primitive_type] = ACTIONS(1415), + [anon_sym_enum] = ACTIONS(1415), + [anon_sym_struct] = ACTIONS(1415), + [anon_sym_union] = ACTIONS(1415), + [anon_sym_if] = ACTIONS(1415), + [anon_sym_switch] = ACTIONS(1415), + [anon_sym_case] = ACTIONS(1415), + [anon_sym_default] = ACTIONS(1415), + [anon_sym_while] = ACTIONS(1415), + [anon_sym_do] = ACTIONS(1415), + [anon_sym_for] = ACTIONS(1415), + [anon_sym_return] = ACTIONS(1415), + [anon_sym_break] = ACTIONS(1415), + [anon_sym_continue] = ACTIONS(1415), + [anon_sym_goto] = ACTIONS(1415), + [anon_sym_DASH_DASH] = ACTIONS(1417), + [anon_sym_PLUS_PLUS] = ACTIONS(1417), + [anon_sym_sizeof] = ACTIONS(1415), + [anon_sym___alignof__] = ACTIONS(1415), + [anon_sym___alignof] = ACTIONS(1415), + [anon_sym__alignof] = ACTIONS(1415), + [anon_sym_alignof] = ACTIONS(1415), + [anon_sym__Alignof] = ACTIONS(1415), + [anon_sym_offsetof] = ACTIONS(1415), + [anon_sym__Generic] = ACTIONS(1415), + [anon_sym_asm] = ACTIONS(1415), + [anon_sym___asm__] = ACTIONS(1415), + [sym_number_literal] = ACTIONS(1417), + [anon_sym_L_SQUOTE] = ACTIONS(1417), + [anon_sym_u_SQUOTE] = ACTIONS(1417), + [anon_sym_U_SQUOTE] = ACTIONS(1417), + [anon_sym_u8_SQUOTE] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1417), + [anon_sym_L_DQUOTE] = ACTIONS(1417), + [anon_sym_u_DQUOTE] = ACTIONS(1417), + [anon_sym_U_DQUOTE] = ACTIONS(1417), + [anon_sym_u8_DQUOTE] = ACTIONS(1417), + [anon_sym_DQUOTE] = ACTIONS(1417), + [sym_true] = ACTIONS(1415), + [sym_false] = ACTIONS(1415), + [anon_sym_NULL] = ACTIONS(1415), + [anon_sym_nullptr] = ACTIONS(1415), [sym_comment] = ACTIONS(3), }, - [323] = { - [ts_builtin_sym_end] = ACTIONS(1369), - [sym_identifier] = ACTIONS(1367), - [aux_sym_preproc_include_token1] = ACTIONS(1367), - [aux_sym_preproc_def_token1] = ACTIONS(1367), - [aux_sym_preproc_if_token1] = ACTIONS(1367), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1367), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1367), - [sym_preproc_directive] = ACTIONS(1367), - [anon_sym_LPAREN2] = ACTIONS(1369), - [anon_sym_BANG] = ACTIONS(1369), - [anon_sym_TILDE] = ACTIONS(1369), - [anon_sym_DASH] = ACTIONS(1367), - [anon_sym_PLUS] = ACTIONS(1367), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_AMP] = ACTIONS(1369), - [anon_sym___extension__] = ACTIONS(1367), - [anon_sym_typedef] = ACTIONS(1367), - [anon_sym_extern] = ACTIONS(1367), - [anon_sym___attribute__] = ACTIONS(1367), - [anon_sym___scanf] = ACTIONS(1367), - [anon_sym___printf] = ACTIONS(1367), - [anon_sym___read_mostly] = ACTIONS(1367), - [anon_sym___must_hold] = ACTIONS(1367), - [anon_sym___ro_after_init] = ACTIONS(1367), - [anon_sym___init] = ACTIONS(1367), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1369), - [anon_sym___declspec] = ACTIONS(1367), - [anon_sym___cdecl] = ACTIONS(1367), - [anon_sym___clrcall] = ACTIONS(1367), - [anon_sym___stdcall] = ACTIONS(1367), - [anon_sym___fastcall] = ACTIONS(1367), - [anon_sym___thiscall] = ACTIONS(1367), - [anon_sym___vectorcall] = ACTIONS(1367), - [anon_sym_LBRACE] = ACTIONS(1369), - [anon_sym_signed] = ACTIONS(1367), - [anon_sym_unsigned] = ACTIONS(1367), - [anon_sym_long] = ACTIONS(1367), - [anon_sym_short] = ACTIONS(1367), - [anon_sym_static] = ACTIONS(1367), - [anon_sym_auto] = ACTIONS(1367), - [anon_sym_register] = ACTIONS(1367), - [anon_sym_inline] = ACTIONS(1367), - [anon_sym___inline] = ACTIONS(1367), - [anon_sym___inline__] = ACTIONS(1367), - [anon_sym___forceinline] = ACTIONS(1367), - [anon_sym_thread_local] = ACTIONS(1367), - [anon_sym___thread] = ACTIONS(1367), - [anon_sym_const] = ACTIONS(1367), - [anon_sym_constexpr] = ACTIONS(1367), - [anon_sym_volatile] = ACTIONS(1367), - [anon_sym_restrict] = ACTIONS(1367), - [anon_sym___restrict__] = ACTIONS(1367), - [anon_sym__Atomic] = ACTIONS(1367), - [anon_sym__Noreturn] = ACTIONS(1367), - [anon_sym_noreturn] = ACTIONS(1367), - [anon_sym_alignas] = ACTIONS(1367), - [anon_sym__Alignas] = ACTIONS(1367), - [sym_primitive_type] = ACTIONS(1367), - [anon_sym_enum] = ACTIONS(1367), - [anon_sym_struct] = ACTIONS(1367), - [anon_sym_union] = ACTIONS(1367), - [anon_sym_if] = ACTIONS(1367), - [anon_sym_switch] = ACTIONS(1367), - [anon_sym_case] = ACTIONS(1367), - [anon_sym_default] = ACTIONS(1367), - [anon_sym_while] = ACTIONS(1367), - [anon_sym_do] = ACTIONS(1367), - [anon_sym_for] = ACTIONS(1367), - [anon_sym_return] = ACTIONS(1367), - [anon_sym_break] = ACTIONS(1367), - [anon_sym_continue] = ACTIONS(1367), - [anon_sym_goto] = ACTIONS(1367), - [anon_sym_DASH_DASH] = ACTIONS(1369), - [anon_sym_PLUS_PLUS] = ACTIONS(1369), - [anon_sym_sizeof] = ACTIONS(1367), - [anon_sym___alignof__] = ACTIONS(1367), - [anon_sym___alignof] = ACTIONS(1367), - [anon_sym__alignof] = ACTIONS(1367), - [anon_sym_alignof] = ACTIONS(1367), - [anon_sym__Alignof] = ACTIONS(1367), - [anon_sym_offsetof] = ACTIONS(1367), - [anon_sym__Generic] = ACTIONS(1367), - [anon_sym_asm] = ACTIONS(1367), - [anon_sym___asm__] = ACTIONS(1367), - [sym_number_literal] = ACTIONS(1369), - [anon_sym_L_SQUOTE] = ACTIONS(1369), - [anon_sym_u_SQUOTE] = ACTIONS(1369), - [anon_sym_U_SQUOTE] = ACTIONS(1369), - [anon_sym_u8_SQUOTE] = ACTIONS(1369), - [anon_sym_SQUOTE] = ACTIONS(1369), - [anon_sym_L_DQUOTE] = ACTIONS(1369), - [anon_sym_u_DQUOTE] = ACTIONS(1369), - [anon_sym_U_DQUOTE] = ACTIONS(1369), - [anon_sym_u8_DQUOTE] = ACTIONS(1369), - [anon_sym_DQUOTE] = ACTIONS(1369), - [sym_true] = ACTIONS(1367), - [sym_false] = ACTIONS(1367), - [anon_sym_NULL] = ACTIONS(1367), - [anon_sym_nullptr] = ACTIONS(1367), + [383] = { + [ts_builtin_sym_end] = ACTIONS(1291), + [sym_identifier] = ACTIONS(1289), + [aux_sym_preproc_include_token1] = ACTIONS(1289), + [aux_sym_preproc_def_token1] = ACTIONS(1289), + [aux_sym_preproc_if_token1] = ACTIONS(1289), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1289), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1289), + [sym_preproc_directive] = ACTIONS(1289), + [anon_sym_LPAREN2] = ACTIONS(1291), + [anon_sym_BANG] = ACTIONS(1291), + [anon_sym_TILDE] = ACTIONS(1291), + [anon_sym_DASH] = ACTIONS(1289), + [anon_sym_PLUS] = ACTIONS(1289), + [anon_sym_STAR] = ACTIONS(1291), + [anon_sym_AMP] = ACTIONS(1291), + [anon_sym___extension__] = ACTIONS(1289), + [anon_sym_typedef] = ACTIONS(1289), + [anon_sym_extern] = ACTIONS(1289), + [anon_sym___attribute__] = ACTIONS(1289), + [anon_sym___scanf] = ACTIONS(1289), + [anon_sym___printf] = ACTIONS(1289), + [anon_sym___read_mostly] = ACTIONS(1289), + [anon_sym___must_hold] = ACTIONS(1289), + [anon_sym___ro_after_init] = ACTIONS(1289), + [anon_sym___noreturn] = ACTIONS(1289), + [anon_sym___cold] = ACTIONS(1289), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1291), + [anon_sym___declspec] = ACTIONS(1289), + [anon_sym___init] = ACTIONS(1289), + [anon_sym___exit] = ACTIONS(1289), + [anon_sym___cdecl] = ACTIONS(1289), + [anon_sym___clrcall] = ACTIONS(1289), + [anon_sym___stdcall] = ACTIONS(1289), + [anon_sym___fastcall] = ACTIONS(1289), + [anon_sym___thiscall] = ACTIONS(1289), + [anon_sym___vectorcall] = ACTIONS(1289), + [anon_sym_LBRACE] = ACTIONS(1291), + [anon_sym_signed] = ACTIONS(1289), + [anon_sym_unsigned] = ACTIONS(1289), + [anon_sym_long] = ACTIONS(1289), + [anon_sym_short] = ACTIONS(1289), + [anon_sym_static] = ACTIONS(1289), + [anon_sym_auto] = ACTIONS(1289), + [anon_sym_register] = ACTIONS(1289), + [anon_sym_inline] = ACTIONS(1289), + [anon_sym___inline] = ACTIONS(1289), + [anon_sym___inline__] = ACTIONS(1289), + [anon_sym___forceinline] = ACTIONS(1289), + [anon_sym_thread_local] = ACTIONS(1289), + [anon_sym___thread] = ACTIONS(1289), + [anon_sym_const] = ACTIONS(1289), + [anon_sym_constexpr] = ACTIONS(1289), + [anon_sym_volatile] = ACTIONS(1289), + [anon_sym_restrict] = ACTIONS(1289), + [anon_sym___restrict__] = ACTIONS(1289), + [anon_sym__Atomic] = ACTIONS(1289), + [anon_sym__Noreturn] = ACTIONS(1289), + [anon_sym_noreturn] = ACTIONS(1289), + [anon_sym_alignas] = ACTIONS(1289), + [anon_sym__Alignas] = ACTIONS(1289), + [sym_primitive_type] = ACTIONS(1289), + [anon_sym_enum] = ACTIONS(1289), + [anon_sym_struct] = ACTIONS(1289), + [anon_sym_union] = ACTIONS(1289), + [anon_sym_if] = ACTIONS(1289), + [anon_sym_switch] = ACTIONS(1289), + [anon_sym_case] = ACTIONS(1289), + [anon_sym_default] = ACTIONS(1289), + [anon_sym_while] = ACTIONS(1289), + [anon_sym_do] = ACTIONS(1289), + [anon_sym_for] = ACTIONS(1289), + [anon_sym_return] = ACTIONS(1289), + [anon_sym_break] = ACTIONS(1289), + [anon_sym_continue] = ACTIONS(1289), + [anon_sym_goto] = ACTIONS(1289), + [anon_sym_DASH_DASH] = ACTIONS(1291), + [anon_sym_PLUS_PLUS] = ACTIONS(1291), + [anon_sym_sizeof] = ACTIONS(1289), + [anon_sym___alignof__] = ACTIONS(1289), + [anon_sym___alignof] = ACTIONS(1289), + [anon_sym__alignof] = ACTIONS(1289), + [anon_sym_alignof] = ACTIONS(1289), + [anon_sym__Alignof] = ACTIONS(1289), + [anon_sym_offsetof] = ACTIONS(1289), + [anon_sym__Generic] = ACTIONS(1289), + [anon_sym_asm] = ACTIONS(1289), + [anon_sym___asm__] = ACTIONS(1289), + [sym_number_literal] = ACTIONS(1291), + [anon_sym_L_SQUOTE] = ACTIONS(1291), + [anon_sym_u_SQUOTE] = ACTIONS(1291), + [anon_sym_U_SQUOTE] = ACTIONS(1291), + [anon_sym_u8_SQUOTE] = ACTIONS(1291), + [anon_sym_SQUOTE] = ACTIONS(1291), + [anon_sym_L_DQUOTE] = ACTIONS(1291), + [anon_sym_u_DQUOTE] = ACTIONS(1291), + [anon_sym_U_DQUOTE] = ACTIONS(1291), + [anon_sym_u8_DQUOTE] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1291), + [sym_true] = ACTIONS(1289), + [sym_false] = ACTIONS(1289), + [anon_sym_NULL] = ACTIONS(1289), + [anon_sym_nullptr] = ACTIONS(1289), [sym_comment] = ACTIONS(3), }, - [324] = { - [ts_builtin_sym_end] = ACTIONS(1345), - [sym_identifier] = ACTIONS(1343), - [aux_sym_preproc_include_token1] = ACTIONS(1343), - [aux_sym_preproc_def_token1] = ACTIONS(1343), - [aux_sym_preproc_if_token1] = ACTIONS(1343), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1343), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1343), - [sym_preproc_directive] = ACTIONS(1343), - [anon_sym_LPAREN2] = ACTIONS(1345), - [anon_sym_BANG] = ACTIONS(1345), - [anon_sym_TILDE] = ACTIONS(1345), - [anon_sym_DASH] = ACTIONS(1343), - [anon_sym_PLUS] = ACTIONS(1343), - [anon_sym_STAR] = ACTIONS(1345), - [anon_sym_AMP] = ACTIONS(1345), - [anon_sym___extension__] = ACTIONS(1343), - [anon_sym_typedef] = ACTIONS(1343), - [anon_sym_extern] = ACTIONS(1343), - [anon_sym___attribute__] = ACTIONS(1343), - [anon_sym___scanf] = ACTIONS(1343), - [anon_sym___printf] = ACTIONS(1343), - [anon_sym___read_mostly] = ACTIONS(1343), - [anon_sym___must_hold] = ACTIONS(1343), - [anon_sym___ro_after_init] = ACTIONS(1343), - [anon_sym___init] = ACTIONS(1343), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1345), - [anon_sym___declspec] = ACTIONS(1343), - [anon_sym___cdecl] = ACTIONS(1343), - [anon_sym___clrcall] = ACTIONS(1343), - [anon_sym___stdcall] = ACTIONS(1343), - [anon_sym___fastcall] = ACTIONS(1343), - [anon_sym___thiscall] = ACTIONS(1343), - [anon_sym___vectorcall] = ACTIONS(1343), - [anon_sym_LBRACE] = ACTIONS(1345), - [anon_sym_signed] = ACTIONS(1343), - [anon_sym_unsigned] = ACTIONS(1343), - [anon_sym_long] = ACTIONS(1343), - [anon_sym_short] = ACTIONS(1343), - [anon_sym_static] = ACTIONS(1343), - [anon_sym_auto] = ACTIONS(1343), - [anon_sym_register] = ACTIONS(1343), - [anon_sym_inline] = ACTIONS(1343), - [anon_sym___inline] = ACTIONS(1343), - [anon_sym___inline__] = ACTIONS(1343), - [anon_sym___forceinline] = ACTIONS(1343), - [anon_sym_thread_local] = ACTIONS(1343), - [anon_sym___thread] = ACTIONS(1343), - [anon_sym_const] = ACTIONS(1343), - [anon_sym_constexpr] = ACTIONS(1343), - [anon_sym_volatile] = ACTIONS(1343), - [anon_sym_restrict] = ACTIONS(1343), - [anon_sym___restrict__] = ACTIONS(1343), - [anon_sym__Atomic] = ACTIONS(1343), - [anon_sym__Noreturn] = ACTIONS(1343), - [anon_sym_noreturn] = ACTIONS(1343), - [anon_sym_alignas] = ACTIONS(1343), - [anon_sym__Alignas] = ACTIONS(1343), - [sym_primitive_type] = ACTIONS(1343), - [anon_sym_enum] = ACTIONS(1343), - [anon_sym_struct] = ACTIONS(1343), - [anon_sym_union] = ACTIONS(1343), - [anon_sym_if] = ACTIONS(1343), - [anon_sym_switch] = ACTIONS(1343), - [anon_sym_case] = ACTIONS(1343), - [anon_sym_default] = ACTIONS(1343), - [anon_sym_while] = ACTIONS(1343), - [anon_sym_do] = ACTIONS(1343), - [anon_sym_for] = ACTIONS(1343), - [anon_sym_return] = ACTIONS(1343), - [anon_sym_break] = ACTIONS(1343), - [anon_sym_continue] = ACTIONS(1343), - [anon_sym_goto] = ACTIONS(1343), - [anon_sym_DASH_DASH] = ACTIONS(1345), - [anon_sym_PLUS_PLUS] = ACTIONS(1345), - [anon_sym_sizeof] = ACTIONS(1343), - [anon_sym___alignof__] = ACTIONS(1343), - [anon_sym___alignof] = ACTIONS(1343), - [anon_sym__alignof] = ACTIONS(1343), - [anon_sym_alignof] = ACTIONS(1343), - [anon_sym__Alignof] = ACTIONS(1343), - [anon_sym_offsetof] = ACTIONS(1343), - [anon_sym__Generic] = ACTIONS(1343), - [anon_sym_asm] = ACTIONS(1343), - [anon_sym___asm__] = ACTIONS(1343), - [sym_number_literal] = ACTIONS(1345), - [anon_sym_L_SQUOTE] = ACTIONS(1345), - [anon_sym_u_SQUOTE] = ACTIONS(1345), - [anon_sym_U_SQUOTE] = ACTIONS(1345), - [anon_sym_u8_SQUOTE] = ACTIONS(1345), - [anon_sym_SQUOTE] = ACTIONS(1345), - [anon_sym_L_DQUOTE] = ACTIONS(1345), - [anon_sym_u_DQUOTE] = ACTIONS(1345), - [anon_sym_U_DQUOTE] = ACTIONS(1345), - [anon_sym_u8_DQUOTE] = ACTIONS(1345), - [anon_sym_DQUOTE] = ACTIONS(1345), - [sym_true] = ACTIONS(1343), - [sym_false] = ACTIONS(1343), - [anon_sym_NULL] = ACTIONS(1343), - [anon_sym_nullptr] = ACTIONS(1343), + [384] = { + [ts_builtin_sym_end] = ACTIONS(1413), + [sym_identifier] = ACTIONS(1411), + [aux_sym_preproc_include_token1] = ACTIONS(1411), + [aux_sym_preproc_def_token1] = ACTIONS(1411), + [aux_sym_preproc_if_token1] = ACTIONS(1411), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1411), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1411), + [sym_preproc_directive] = ACTIONS(1411), + [anon_sym_LPAREN2] = ACTIONS(1413), + [anon_sym_BANG] = ACTIONS(1413), + [anon_sym_TILDE] = ACTIONS(1413), + [anon_sym_DASH] = ACTIONS(1411), + [anon_sym_PLUS] = ACTIONS(1411), + [anon_sym_STAR] = ACTIONS(1413), + [anon_sym_AMP] = ACTIONS(1413), + [anon_sym___extension__] = ACTIONS(1411), + [anon_sym_typedef] = ACTIONS(1411), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym___attribute__] = ACTIONS(1411), + [anon_sym___scanf] = ACTIONS(1411), + [anon_sym___printf] = ACTIONS(1411), + [anon_sym___read_mostly] = ACTIONS(1411), + [anon_sym___must_hold] = ACTIONS(1411), + [anon_sym___ro_after_init] = ACTIONS(1411), + [anon_sym___noreturn] = ACTIONS(1411), + [anon_sym___cold] = ACTIONS(1411), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1413), + [anon_sym___declspec] = ACTIONS(1411), + [anon_sym___init] = ACTIONS(1411), + [anon_sym___exit] = ACTIONS(1411), + [anon_sym___cdecl] = ACTIONS(1411), + [anon_sym___clrcall] = ACTIONS(1411), + [anon_sym___stdcall] = ACTIONS(1411), + [anon_sym___fastcall] = ACTIONS(1411), + [anon_sym___thiscall] = ACTIONS(1411), + [anon_sym___vectorcall] = ACTIONS(1411), + [anon_sym_LBRACE] = ACTIONS(1413), + [anon_sym_signed] = ACTIONS(1411), + [anon_sym_unsigned] = ACTIONS(1411), + [anon_sym_long] = ACTIONS(1411), + [anon_sym_short] = ACTIONS(1411), + [anon_sym_static] = ACTIONS(1411), + [anon_sym_auto] = ACTIONS(1411), + [anon_sym_register] = ACTIONS(1411), + [anon_sym_inline] = ACTIONS(1411), + [anon_sym___inline] = ACTIONS(1411), + [anon_sym___inline__] = ACTIONS(1411), + [anon_sym___forceinline] = ACTIONS(1411), + [anon_sym_thread_local] = ACTIONS(1411), + [anon_sym___thread] = ACTIONS(1411), + [anon_sym_const] = ACTIONS(1411), + [anon_sym_constexpr] = ACTIONS(1411), + [anon_sym_volatile] = ACTIONS(1411), + [anon_sym_restrict] = ACTIONS(1411), + [anon_sym___restrict__] = ACTIONS(1411), + [anon_sym__Atomic] = ACTIONS(1411), + [anon_sym__Noreturn] = ACTIONS(1411), + [anon_sym_noreturn] = ACTIONS(1411), + [anon_sym_alignas] = ACTIONS(1411), + [anon_sym__Alignas] = ACTIONS(1411), + [sym_primitive_type] = ACTIONS(1411), + [anon_sym_enum] = ACTIONS(1411), + [anon_sym_struct] = ACTIONS(1411), + [anon_sym_union] = ACTIONS(1411), + [anon_sym_if] = ACTIONS(1411), + [anon_sym_switch] = ACTIONS(1411), + [anon_sym_case] = ACTIONS(1411), + [anon_sym_default] = ACTIONS(1411), + [anon_sym_while] = ACTIONS(1411), + [anon_sym_do] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1411), + [anon_sym_return] = ACTIONS(1411), + [anon_sym_break] = ACTIONS(1411), + [anon_sym_continue] = ACTIONS(1411), + [anon_sym_goto] = ACTIONS(1411), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_sizeof] = ACTIONS(1411), + [anon_sym___alignof__] = ACTIONS(1411), + [anon_sym___alignof] = ACTIONS(1411), + [anon_sym__alignof] = ACTIONS(1411), + [anon_sym_alignof] = ACTIONS(1411), + [anon_sym__Alignof] = ACTIONS(1411), + [anon_sym_offsetof] = ACTIONS(1411), + [anon_sym__Generic] = ACTIONS(1411), + [anon_sym_asm] = ACTIONS(1411), + [anon_sym___asm__] = ACTIONS(1411), + [sym_number_literal] = ACTIONS(1413), + [anon_sym_L_SQUOTE] = ACTIONS(1413), + [anon_sym_u_SQUOTE] = ACTIONS(1413), + [anon_sym_U_SQUOTE] = ACTIONS(1413), + [anon_sym_u8_SQUOTE] = ACTIONS(1413), + [anon_sym_SQUOTE] = ACTIONS(1413), + [anon_sym_L_DQUOTE] = ACTIONS(1413), + [anon_sym_u_DQUOTE] = ACTIONS(1413), + [anon_sym_U_DQUOTE] = ACTIONS(1413), + [anon_sym_u8_DQUOTE] = ACTIONS(1413), + [anon_sym_DQUOTE] = ACTIONS(1413), + [sym_true] = ACTIONS(1411), + [sym_false] = ACTIONS(1411), + [anon_sym_NULL] = ACTIONS(1411), + [anon_sym_nullptr] = ACTIONS(1411), [sym_comment] = ACTIONS(3), }, - [325] = { - [ts_builtin_sym_end] = ACTIONS(1329), - [sym_identifier] = ACTIONS(1327), - [aux_sym_preproc_include_token1] = ACTIONS(1327), - [aux_sym_preproc_def_token1] = ACTIONS(1327), - [aux_sym_preproc_if_token1] = ACTIONS(1327), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1327), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1327), - [sym_preproc_directive] = ACTIONS(1327), - [anon_sym_LPAREN2] = ACTIONS(1329), - [anon_sym_BANG] = ACTIONS(1329), - [anon_sym_TILDE] = ACTIONS(1329), - [anon_sym_DASH] = ACTIONS(1327), - [anon_sym_PLUS] = ACTIONS(1327), - [anon_sym_STAR] = ACTIONS(1329), - [anon_sym_AMP] = ACTIONS(1329), - [anon_sym___extension__] = ACTIONS(1327), - [anon_sym_typedef] = ACTIONS(1327), - [anon_sym_extern] = ACTIONS(1327), - [anon_sym___attribute__] = ACTIONS(1327), - [anon_sym___scanf] = ACTIONS(1327), - [anon_sym___printf] = ACTIONS(1327), - [anon_sym___read_mostly] = ACTIONS(1327), - [anon_sym___must_hold] = ACTIONS(1327), - [anon_sym___ro_after_init] = ACTIONS(1327), - [anon_sym___init] = ACTIONS(1327), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1329), - [anon_sym___declspec] = ACTIONS(1327), - [anon_sym___cdecl] = ACTIONS(1327), - [anon_sym___clrcall] = ACTIONS(1327), - [anon_sym___stdcall] = ACTIONS(1327), - [anon_sym___fastcall] = ACTIONS(1327), - [anon_sym___thiscall] = ACTIONS(1327), - [anon_sym___vectorcall] = ACTIONS(1327), - [anon_sym_LBRACE] = ACTIONS(1329), - [anon_sym_signed] = ACTIONS(1327), - [anon_sym_unsigned] = ACTIONS(1327), - [anon_sym_long] = ACTIONS(1327), - [anon_sym_short] = ACTIONS(1327), - [anon_sym_static] = ACTIONS(1327), - [anon_sym_auto] = ACTIONS(1327), - [anon_sym_register] = ACTIONS(1327), - [anon_sym_inline] = ACTIONS(1327), - [anon_sym___inline] = ACTIONS(1327), - [anon_sym___inline__] = ACTIONS(1327), - [anon_sym___forceinline] = ACTIONS(1327), - [anon_sym_thread_local] = ACTIONS(1327), - [anon_sym___thread] = ACTIONS(1327), - [anon_sym_const] = ACTIONS(1327), - [anon_sym_constexpr] = ACTIONS(1327), - [anon_sym_volatile] = ACTIONS(1327), - [anon_sym_restrict] = ACTIONS(1327), - [anon_sym___restrict__] = ACTIONS(1327), - [anon_sym__Atomic] = ACTIONS(1327), - [anon_sym__Noreturn] = ACTIONS(1327), - [anon_sym_noreturn] = ACTIONS(1327), - [anon_sym_alignas] = ACTIONS(1327), - [anon_sym__Alignas] = ACTIONS(1327), - [sym_primitive_type] = ACTIONS(1327), - [anon_sym_enum] = ACTIONS(1327), - [anon_sym_struct] = ACTIONS(1327), - [anon_sym_union] = ACTIONS(1327), - [anon_sym_if] = ACTIONS(1327), - [anon_sym_switch] = ACTIONS(1327), - [anon_sym_case] = ACTIONS(1327), - [anon_sym_default] = ACTIONS(1327), - [anon_sym_while] = ACTIONS(1327), - [anon_sym_do] = ACTIONS(1327), - [anon_sym_for] = ACTIONS(1327), - [anon_sym_return] = ACTIONS(1327), - [anon_sym_break] = ACTIONS(1327), - [anon_sym_continue] = ACTIONS(1327), - [anon_sym_goto] = ACTIONS(1327), - [anon_sym_DASH_DASH] = ACTIONS(1329), - [anon_sym_PLUS_PLUS] = ACTIONS(1329), - [anon_sym_sizeof] = ACTIONS(1327), - [anon_sym___alignof__] = ACTIONS(1327), - [anon_sym___alignof] = ACTIONS(1327), - [anon_sym__alignof] = ACTIONS(1327), - [anon_sym_alignof] = ACTIONS(1327), - [anon_sym__Alignof] = ACTIONS(1327), - [anon_sym_offsetof] = ACTIONS(1327), - [anon_sym__Generic] = ACTIONS(1327), - [anon_sym_asm] = ACTIONS(1327), - [anon_sym___asm__] = ACTIONS(1327), - [sym_number_literal] = ACTIONS(1329), - [anon_sym_L_SQUOTE] = ACTIONS(1329), - [anon_sym_u_SQUOTE] = ACTIONS(1329), - [anon_sym_U_SQUOTE] = ACTIONS(1329), - [anon_sym_u8_SQUOTE] = ACTIONS(1329), - [anon_sym_SQUOTE] = ACTIONS(1329), - [anon_sym_L_DQUOTE] = ACTIONS(1329), - [anon_sym_u_DQUOTE] = ACTIONS(1329), - [anon_sym_U_DQUOTE] = ACTIONS(1329), - [anon_sym_u8_DQUOTE] = ACTIONS(1329), - [anon_sym_DQUOTE] = ACTIONS(1329), - [sym_true] = ACTIONS(1327), - [sym_false] = ACTIONS(1327), - [anon_sym_NULL] = ACTIONS(1327), - [anon_sym_nullptr] = ACTIONS(1327), + [385] = { + [ts_builtin_sym_end] = ACTIONS(1339), + [sym_identifier] = ACTIONS(1337), + [aux_sym_preproc_include_token1] = ACTIONS(1337), + [aux_sym_preproc_def_token1] = ACTIONS(1337), + [aux_sym_preproc_if_token1] = ACTIONS(1337), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1337), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1337), + [sym_preproc_directive] = ACTIONS(1337), + [anon_sym_LPAREN2] = ACTIONS(1339), + [anon_sym_BANG] = ACTIONS(1339), + [anon_sym_TILDE] = ACTIONS(1339), + [anon_sym_DASH] = ACTIONS(1337), + [anon_sym_PLUS] = ACTIONS(1337), + [anon_sym_STAR] = ACTIONS(1339), + [anon_sym_AMP] = ACTIONS(1339), + [anon_sym___extension__] = ACTIONS(1337), + [anon_sym_typedef] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1337), + [anon_sym___attribute__] = ACTIONS(1337), + [anon_sym___scanf] = ACTIONS(1337), + [anon_sym___printf] = ACTIONS(1337), + [anon_sym___read_mostly] = ACTIONS(1337), + [anon_sym___must_hold] = ACTIONS(1337), + [anon_sym___ro_after_init] = ACTIONS(1337), + [anon_sym___noreturn] = ACTIONS(1337), + [anon_sym___cold] = ACTIONS(1337), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1339), + [anon_sym___declspec] = ACTIONS(1337), + [anon_sym___init] = ACTIONS(1337), + [anon_sym___exit] = ACTIONS(1337), + [anon_sym___cdecl] = ACTIONS(1337), + [anon_sym___clrcall] = ACTIONS(1337), + [anon_sym___stdcall] = ACTIONS(1337), + [anon_sym___fastcall] = ACTIONS(1337), + [anon_sym___thiscall] = ACTIONS(1337), + [anon_sym___vectorcall] = ACTIONS(1337), + [anon_sym_LBRACE] = ACTIONS(1339), + [anon_sym_signed] = ACTIONS(1337), + [anon_sym_unsigned] = ACTIONS(1337), + [anon_sym_long] = ACTIONS(1337), + [anon_sym_short] = ACTIONS(1337), + [anon_sym_static] = ACTIONS(1337), + [anon_sym_auto] = ACTIONS(1337), + [anon_sym_register] = ACTIONS(1337), + [anon_sym_inline] = ACTIONS(1337), + [anon_sym___inline] = ACTIONS(1337), + [anon_sym___inline__] = ACTIONS(1337), + [anon_sym___forceinline] = ACTIONS(1337), + [anon_sym_thread_local] = ACTIONS(1337), + [anon_sym___thread] = ACTIONS(1337), + [anon_sym_const] = ACTIONS(1337), + [anon_sym_constexpr] = ACTIONS(1337), + [anon_sym_volatile] = ACTIONS(1337), + [anon_sym_restrict] = ACTIONS(1337), + [anon_sym___restrict__] = ACTIONS(1337), + [anon_sym__Atomic] = ACTIONS(1337), + [anon_sym__Noreturn] = ACTIONS(1337), + [anon_sym_noreturn] = ACTIONS(1337), + [anon_sym_alignas] = ACTIONS(1337), + [anon_sym__Alignas] = ACTIONS(1337), + [sym_primitive_type] = ACTIONS(1337), + [anon_sym_enum] = ACTIONS(1337), + [anon_sym_struct] = ACTIONS(1337), + [anon_sym_union] = ACTIONS(1337), + [anon_sym_if] = ACTIONS(1337), + [anon_sym_switch] = ACTIONS(1337), + [anon_sym_case] = ACTIONS(1337), + [anon_sym_default] = ACTIONS(1337), + [anon_sym_while] = ACTIONS(1337), + [anon_sym_do] = ACTIONS(1337), + [anon_sym_for] = ACTIONS(1337), + [anon_sym_return] = ACTIONS(1337), + [anon_sym_break] = ACTIONS(1337), + [anon_sym_continue] = ACTIONS(1337), + [anon_sym_goto] = ACTIONS(1337), + [anon_sym_DASH_DASH] = ACTIONS(1339), + [anon_sym_PLUS_PLUS] = ACTIONS(1339), + [anon_sym_sizeof] = ACTIONS(1337), + [anon_sym___alignof__] = ACTIONS(1337), + [anon_sym___alignof] = ACTIONS(1337), + [anon_sym__alignof] = ACTIONS(1337), + [anon_sym_alignof] = ACTIONS(1337), + [anon_sym__Alignof] = ACTIONS(1337), + [anon_sym_offsetof] = ACTIONS(1337), + [anon_sym__Generic] = ACTIONS(1337), + [anon_sym_asm] = ACTIONS(1337), + [anon_sym___asm__] = ACTIONS(1337), + [sym_number_literal] = ACTIONS(1339), + [anon_sym_L_SQUOTE] = ACTIONS(1339), + [anon_sym_u_SQUOTE] = ACTIONS(1339), + [anon_sym_U_SQUOTE] = ACTIONS(1339), + [anon_sym_u8_SQUOTE] = ACTIONS(1339), + [anon_sym_SQUOTE] = ACTIONS(1339), + [anon_sym_L_DQUOTE] = ACTIONS(1339), + [anon_sym_u_DQUOTE] = ACTIONS(1339), + [anon_sym_U_DQUOTE] = ACTIONS(1339), + [anon_sym_u8_DQUOTE] = ACTIONS(1339), + [anon_sym_DQUOTE] = ACTIONS(1339), + [sym_true] = ACTIONS(1337), + [sym_false] = ACTIONS(1337), + [anon_sym_NULL] = ACTIONS(1337), + [anon_sym_nullptr] = ACTIONS(1337), [sym_comment] = ACTIONS(3), }, - [326] = { - [ts_builtin_sym_end] = ACTIONS(1357), - [sym_identifier] = ACTIONS(1355), - [aux_sym_preproc_include_token1] = ACTIONS(1355), - [aux_sym_preproc_def_token1] = ACTIONS(1355), - [aux_sym_preproc_if_token1] = ACTIONS(1355), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1355), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1355), - [sym_preproc_directive] = ACTIONS(1355), - [anon_sym_LPAREN2] = ACTIONS(1357), - [anon_sym_BANG] = ACTIONS(1357), - [anon_sym_TILDE] = ACTIONS(1357), - [anon_sym_DASH] = ACTIONS(1355), - [anon_sym_PLUS] = ACTIONS(1355), - [anon_sym_STAR] = ACTIONS(1357), - [anon_sym_AMP] = ACTIONS(1357), - [anon_sym___extension__] = ACTIONS(1355), - [anon_sym_typedef] = ACTIONS(1355), - [anon_sym_extern] = ACTIONS(1355), - [anon_sym___attribute__] = ACTIONS(1355), - [anon_sym___scanf] = ACTIONS(1355), - [anon_sym___printf] = ACTIONS(1355), - [anon_sym___read_mostly] = ACTIONS(1355), - [anon_sym___must_hold] = ACTIONS(1355), - [anon_sym___ro_after_init] = ACTIONS(1355), - [anon_sym___init] = ACTIONS(1355), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1357), - [anon_sym___declspec] = ACTIONS(1355), - [anon_sym___cdecl] = ACTIONS(1355), - [anon_sym___clrcall] = ACTIONS(1355), - [anon_sym___stdcall] = ACTIONS(1355), - [anon_sym___fastcall] = ACTIONS(1355), - [anon_sym___thiscall] = ACTIONS(1355), - [anon_sym___vectorcall] = ACTIONS(1355), - [anon_sym_LBRACE] = ACTIONS(1357), - [anon_sym_signed] = ACTIONS(1355), - [anon_sym_unsigned] = ACTIONS(1355), - [anon_sym_long] = ACTIONS(1355), - [anon_sym_short] = ACTIONS(1355), - [anon_sym_static] = ACTIONS(1355), - [anon_sym_auto] = ACTIONS(1355), - [anon_sym_register] = ACTIONS(1355), - [anon_sym_inline] = ACTIONS(1355), - [anon_sym___inline] = ACTIONS(1355), - [anon_sym___inline__] = ACTIONS(1355), - [anon_sym___forceinline] = ACTIONS(1355), - [anon_sym_thread_local] = ACTIONS(1355), - [anon_sym___thread] = ACTIONS(1355), - [anon_sym_const] = ACTIONS(1355), - [anon_sym_constexpr] = ACTIONS(1355), - [anon_sym_volatile] = ACTIONS(1355), - [anon_sym_restrict] = ACTIONS(1355), - [anon_sym___restrict__] = ACTIONS(1355), - [anon_sym__Atomic] = ACTIONS(1355), - [anon_sym__Noreturn] = ACTIONS(1355), - [anon_sym_noreturn] = ACTIONS(1355), - [anon_sym_alignas] = ACTIONS(1355), - [anon_sym__Alignas] = ACTIONS(1355), - [sym_primitive_type] = ACTIONS(1355), - [anon_sym_enum] = ACTIONS(1355), - [anon_sym_struct] = ACTIONS(1355), - [anon_sym_union] = ACTIONS(1355), - [anon_sym_if] = ACTIONS(1355), - [anon_sym_switch] = ACTIONS(1355), - [anon_sym_case] = ACTIONS(1355), - [anon_sym_default] = ACTIONS(1355), - [anon_sym_while] = ACTIONS(1355), - [anon_sym_do] = ACTIONS(1355), - [anon_sym_for] = ACTIONS(1355), - [anon_sym_return] = ACTIONS(1355), - [anon_sym_break] = ACTIONS(1355), - [anon_sym_continue] = ACTIONS(1355), - [anon_sym_goto] = ACTIONS(1355), - [anon_sym_DASH_DASH] = ACTIONS(1357), - [anon_sym_PLUS_PLUS] = ACTIONS(1357), - [anon_sym_sizeof] = ACTIONS(1355), - [anon_sym___alignof__] = ACTIONS(1355), - [anon_sym___alignof] = ACTIONS(1355), - [anon_sym__alignof] = ACTIONS(1355), - [anon_sym_alignof] = ACTIONS(1355), - [anon_sym__Alignof] = ACTIONS(1355), - [anon_sym_offsetof] = ACTIONS(1355), - [anon_sym__Generic] = ACTIONS(1355), - [anon_sym_asm] = ACTIONS(1355), - [anon_sym___asm__] = ACTIONS(1355), - [sym_number_literal] = ACTIONS(1357), - [anon_sym_L_SQUOTE] = ACTIONS(1357), - [anon_sym_u_SQUOTE] = ACTIONS(1357), - [anon_sym_U_SQUOTE] = ACTIONS(1357), - [anon_sym_u8_SQUOTE] = ACTIONS(1357), - [anon_sym_SQUOTE] = ACTIONS(1357), - [anon_sym_L_DQUOTE] = ACTIONS(1357), - [anon_sym_u_DQUOTE] = ACTIONS(1357), - [anon_sym_U_DQUOTE] = ACTIONS(1357), - [anon_sym_u8_DQUOTE] = ACTIONS(1357), - [anon_sym_DQUOTE] = ACTIONS(1357), - [sym_true] = ACTIONS(1355), - [sym_false] = ACTIONS(1355), - [anon_sym_NULL] = ACTIONS(1355), - [anon_sym_nullptr] = ACTIONS(1355), + [386] = { + [ts_builtin_sym_end] = ACTIONS(1413), + [sym_identifier] = ACTIONS(1411), + [aux_sym_preproc_include_token1] = ACTIONS(1411), + [aux_sym_preproc_def_token1] = ACTIONS(1411), + [aux_sym_preproc_if_token1] = ACTIONS(1411), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1411), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1411), + [sym_preproc_directive] = ACTIONS(1411), + [anon_sym_LPAREN2] = ACTIONS(1413), + [anon_sym_BANG] = ACTIONS(1413), + [anon_sym_TILDE] = ACTIONS(1413), + [anon_sym_DASH] = ACTIONS(1411), + [anon_sym_PLUS] = ACTIONS(1411), + [anon_sym_STAR] = ACTIONS(1413), + [anon_sym_AMP] = ACTIONS(1413), + [anon_sym___extension__] = ACTIONS(1411), + [anon_sym_typedef] = ACTIONS(1411), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym___attribute__] = ACTIONS(1411), + [anon_sym___scanf] = ACTIONS(1411), + [anon_sym___printf] = ACTIONS(1411), + [anon_sym___read_mostly] = ACTIONS(1411), + [anon_sym___must_hold] = ACTIONS(1411), + [anon_sym___ro_after_init] = ACTIONS(1411), + [anon_sym___noreturn] = ACTIONS(1411), + [anon_sym___cold] = ACTIONS(1411), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1413), + [anon_sym___declspec] = ACTIONS(1411), + [anon_sym___init] = ACTIONS(1411), + [anon_sym___exit] = ACTIONS(1411), + [anon_sym___cdecl] = ACTIONS(1411), + [anon_sym___clrcall] = ACTIONS(1411), + [anon_sym___stdcall] = ACTIONS(1411), + [anon_sym___fastcall] = ACTIONS(1411), + [anon_sym___thiscall] = ACTIONS(1411), + [anon_sym___vectorcall] = ACTIONS(1411), + [anon_sym_LBRACE] = ACTIONS(1413), + [anon_sym_signed] = ACTIONS(1411), + [anon_sym_unsigned] = ACTIONS(1411), + [anon_sym_long] = ACTIONS(1411), + [anon_sym_short] = ACTIONS(1411), + [anon_sym_static] = ACTIONS(1411), + [anon_sym_auto] = ACTIONS(1411), + [anon_sym_register] = ACTIONS(1411), + [anon_sym_inline] = ACTIONS(1411), + [anon_sym___inline] = ACTIONS(1411), + [anon_sym___inline__] = ACTIONS(1411), + [anon_sym___forceinline] = ACTIONS(1411), + [anon_sym_thread_local] = ACTIONS(1411), + [anon_sym___thread] = ACTIONS(1411), + [anon_sym_const] = ACTIONS(1411), + [anon_sym_constexpr] = ACTIONS(1411), + [anon_sym_volatile] = ACTIONS(1411), + [anon_sym_restrict] = ACTIONS(1411), + [anon_sym___restrict__] = ACTIONS(1411), + [anon_sym__Atomic] = ACTIONS(1411), + [anon_sym__Noreturn] = ACTIONS(1411), + [anon_sym_noreturn] = ACTIONS(1411), + [anon_sym_alignas] = ACTIONS(1411), + [anon_sym__Alignas] = ACTIONS(1411), + [sym_primitive_type] = ACTIONS(1411), + [anon_sym_enum] = ACTIONS(1411), + [anon_sym_struct] = ACTIONS(1411), + [anon_sym_union] = ACTIONS(1411), + [anon_sym_if] = ACTIONS(1411), + [anon_sym_switch] = ACTIONS(1411), + [anon_sym_case] = ACTIONS(1411), + [anon_sym_default] = ACTIONS(1411), + [anon_sym_while] = ACTIONS(1411), + [anon_sym_do] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1411), + [anon_sym_return] = ACTIONS(1411), + [anon_sym_break] = ACTIONS(1411), + [anon_sym_continue] = ACTIONS(1411), + [anon_sym_goto] = ACTIONS(1411), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_sizeof] = ACTIONS(1411), + [anon_sym___alignof__] = ACTIONS(1411), + [anon_sym___alignof] = ACTIONS(1411), + [anon_sym__alignof] = ACTIONS(1411), + [anon_sym_alignof] = ACTIONS(1411), + [anon_sym__Alignof] = ACTIONS(1411), + [anon_sym_offsetof] = ACTIONS(1411), + [anon_sym__Generic] = ACTIONS(1411), + [anon_sym_asm] = ACTIONS(1411), + [anon_sym___asm__] = ACTIONS(1411), + [sym_number_literal] = ACTIONS(1413), + [anon_sym_L_SQUOTE] = ACTIONS(1413), + [anon_sym_u_SQUOTE] = ACTIONS(1413), + [anon_sym_U_SQUOTE] = ACTIONS(1413), + [anon_sym_u8_SQUOTE] = ACTIONS(1413), + [anon_sym_SQUOTE] = ACTIONS(1413), + [anon_sym_L_DQUOTE] = ACTIONS(1413), + [anon_sym_u_DQUOTE] = ACTIONS(1413), + [anon_sym_U_DQUOTE] = ACTIONS(1413), + [anon_sym_u8_DQUOTE] = ACTIONS(1413), + [anon_sym_DQUOTE] = ACTIONS(1413), + [sym_true] = ACTIONS(1411), + [sym_false] = ACTIONS(1411), + [anon_sym_NULL] = ACTIONS(1411), + [anon_sym_nullptr] = ACTIONS(1411), [sym_comment] = ACTIONS(3), }, - [327] = { - [ts_builtin_sym_end] = ACTIONS(1283), - [sym_identifier] = ACTIONS(1281), - [aux_sym_preproc_include_token1] = ACTIONS(1281), - [aux_sym_preproc_def_token1] = ACTIONS(1281), - [aux_sym_preproc_if_token1] = ACTIONS(1281), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1281), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1281), - [sym_preproc_directive] = ACTIONS(1281), - [anon_sym_LPAREN2] = ACTIONS(1283), - [anon_sym_BANG] = ACTIONS(1283), - [anon_sym_TILDE] = ACTIONS(1283), - [anon_sym_DASH] = ACTIONS(1281), - [anon_sym_PLUS] = ACTIONS(1281), - [anon_sym_STAR] = ACTIONS(1283), - [anon_sym_AMP] = ACTIONS(1283), - [anon_sym___extension__] = ACTIONS(1281), - [anon_sym_typedef] = ACTIONS(1281), - [anon_sym_extern] = ACTIONS(1281), - [anon_sym___attribute__] = ACTIONS(1281), - [anon_sym___scanf] = ACTIONS(1281), - [anon_sym___printf] = ACTIONS(1281), - [anon_sym___read_mostly] = ACTIONS(1281), - [anon_sym___must_hold] = ACTIONS(1281), - [anon_sym___ro_after_init] = ACTIONS(1281), - [anon_sym___init] = ACTIONS(1281), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1283), - [anon_sym___declspec] = ACTIONS(1281), - [anon_sym___cdecl] = ACTIONS(1281), - [anon_sym___clrcall] = ACTIONS(1281), - [anon_sym___stdcall] = ACTIONS(1281), - [anon_sym___fastcall] = ACTIONS(1281), - [anon_sym___thiscall] = ACTIONS(1281), - [anon_sym___vectorcall] = ACTIONS(1281), - [anon_sym_LBRACE] = ACTIONS(1283), - [anon_sym_signed] = ACTIONS(1281), - [anon_sym_unsigned] = ACTIONS(1281), - [anon_sym_long] = ACTIONS(1281), - [anon_sym_short] = ACTIONS(1281), - [anon_sym_static] = ACTIONS(1281), - [anon_sym_auto] = ACTIONS(1281), - [anon_sym_register] = ACTIONS(1281), - [anon_sym_inline] = ACTIONS(1281), - [anon_sym___inline] = ACTIONS(1281), - [anon_sym___inline__] = ACTIONS(1281), - [anon_sym___forceinline] = ACTIONS(1281), - [anon_sym_thread_local] = ACTIONS(1281), - [anon_sym___thread] = ACTIONS(1281), - [anon_sym_const] = ACTIONS(1281), - [anon_sym_constexpr] = ACTIONS(1281), - [anon_sym_volatile] = ACTIONS(1281), - [anon_sym_restrict] = ACTIONS(1281), - [anon_sym___restrict__] = ACTIONS(1281), - [anon_sym__Atomic] = ACTIONS(1281), - [anon_sym__Noreturn] = ACTIONS(1281), - [anon_sym_noreturn] = ACTIONS(1281), - [anon_sym_alignas] = ACTIONS(1281), - [anon_sym__Alignas] = ACTIONS(1281), - [sym_primitive_type] = ACTIONS(1281), - [anon_sym_enum] = ACTIONS(1281), - [anon_sym_struct] = ACTIONS(1281), - [anon_sym_union] = ACTIONS(1281), - [anon_sym_if] = ACTIONS(1281), - [anon_sym_switch] = ACTIONS(1281), - [anon_sym_case] = ACTIONS(1281), - [anon_sym_default] = ACTIONS(1281), - [anon_sym_while] = ACTIONS(1281), - [anon_sym_do] = ACTIONS(1281), - [anon_sym_for] = ACTIONS(1281), - [anon_sym_return] = ACTIONS(1281), - [anon_sym_break] = ACTIONS(1281), - [anon_sym_continue] = ACTIONS(1281), - [anon_sym_goto] = ACTIONS(1281), - [anon_sym_DASH_DASH] = ACTIONS(1283), - [anon_sym_PLUS_PLUS] = ACTIONS(1283), - [anon_sym_sizeof] = ACTIONS(1281), - [anon_sym___alignof__] = ACTIONS(1281), - [anon_sym___alignof] = ACTIONS(1281), - [anon_sym__alignof] = ACTIONS(1281), - [anon_sym_alignof] = ACTIONS(1281), - [anon_sym__Alignof] = ACTIONS(1281), - [anon_sym_offsetof] = ACTIONS(1281), - [anon_sym__Generic] = ACTIONS(1281), - [anon_sym_asm] = ACTIONS(1281), - [anon_sym___asm__] = ACTIONS(1281), - [sym_number_literal] = ACTIONS(1283), - [anon_sym_L_SQUOTE] = ACTIONS(1283), - [anon_sym_u_SQUOTE] = ACTIONS(1283), - [anon_sym_U_SQUOTE] = ACTIONS(1283), - [anon_sym_u8_SQUOTE] = ACTIONS(1283), - [anon_sym_SQUOTE] = ACTIONS(1283), - [anon_sym_L_DQUOTE] = ACTIONS(1283), - [anon_sym_u_DQUOTE] = ACTIONS(1283), - [anon_sym_U_DQUOTE] = ACTIONS(1283), - [anon_sym_u8_DQUOTE] = ACTIONS(1283), - [anon_sym_DQUOTE] = ACTIONS(1283), - [sym_true] = ACTIONS(1281), - [sym_false] = ACTIONS(1281), - [anon_sym_NULL] = ACTIONS(1281), - [anon_sym_nullptr] = ACTIONS(1281), + [387] = { + [ts_builtin_sym_end] = ACTIONS(1443), + [sym_identifier] = ACTIONS(1445), + [aux_sym_preproc_include_token1] = ACTIONS(1445), + [aux_sym_preproc_def_token1] = ACTIONS(1445), + [aux_sym_preproc_if_token1] = ACTIONS(1445), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1445), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1445), + [sym_preproc_directive] = ACTIONS(1445), + [anon_sym_LPAREN2] = ACTIONS(1443), + [anon_sym_BANG] = ACTIONS(1443), + [anon_sym_TILDE] = ACTIONS(1443), + [anon_sym_DASH] = ACTIONS(1445), + [anon_sym_PLUS] = ACTIONS(1445), + [anon_sym_STAR] = ACTIONS(1443), + [anon_sym_AMP] = ACTIONS(1443), + [anon_sym___extension__] = ACTIONS(1445), + [anon_sym_typedef] = ACTIONS(1445), + [anon_sym_extern] = ACTIONS(1445), + [anon_sym___attribute__] = ACTIONS(1445), + [anon_sym___scanf] = ACTIONS(1445), + [anon_sym___printf] = ACTIONS(1445), + [anon_sym___read_mostly] = ACTIONS(1445), + [anon_sym___must_hold] = ACTIONS(1445), + [anon_sym___ro_after_init] = ACTIONS(1445), + [anon_sym___noreturn] = ACTIONS(1445), + [anon_sym___cold] = ACTIONS(1445), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1443), + [anon_sym___declspec] = ACTIONS(1445), + [anon_sym___init] = ACTIONS(1445), + [anon_sym___exit] = ACTIONS(1445), + [anon_sym___cdecl] = ACTIONS(1445), + [anon_sym___clrcall] = ACTIONS(1445), + [anon_sym___stdcall] = ACTIONS(1445), + [anon_sym___fastcall] = ACTIONS(1445), + [anon_sym___thiscall] = ACTIONS(1445), + [anon_sym___vectorcall] = ACTIONS(1445), + [anon_sym_LBRACE] = ACTIONS(1443), + [anon_sym_signed] = ACTIONS(1445), + [anon_sym_unsigned] = ACTIONS(1445), + [anon_sym_long] = ACTIONS(1445), + [anon_sym_short] = ACTIONS(1445), + [anon_sym_static] = ACTIONS(1445), + [anon_sym_auto] = ACTIONS(1445), + [anon_sym_register] = ACTIONS(1445), + [anon_sym_inline] = ACTIONS(1445), + [anon_sym___inline] = ACTIONS(1445), + [anon_sym___inline__] = ACTIONS(1445), + [anon_sym___forceinline] = ACTIONS(1445), + [anon_sym_thread_local] = ACTIONS(1445), + [anon_sym___thread] = ACTIONS(1445), + [anon_sym_const] = ACTIONS(1445), + [anon_sym_constexpr] = ACTIONS(1445), + [anon_sym_volatile] = ACTIONS(1445), + [anon_sym_restrict] = ACTIONS(1445), + [anon_sym___restrict__] = ACTIONS(1445), + [anon_sym__Atomic] = ACTIONS(1445), + [anon_sym__Noreturn] = ACTIONS(1445), + [anon_sym_noreturn] = ACTIONS(1445), + [anon_sym_alignas] = ACTIONS(1445), + [anon_sym__Alignas] = ACTIONS(1445), + [sym_primitive_type] = ACTIONS(1445), + [anon_sym_enum] = ACTIONS(1445), + [anon_sym_struct] = ACTIONS(1445), + [anon_sym_union] = ACTIONS(1445), + [anon_sym_if] = ACTIONS(1445), + [anon_sym_switch] = ACTIONS(1445), + [anon_sym_case] = ACTIONS(1445), + [anon_sym_default] = ACTIONS(1445), + [anon_sym_while] = ACTIONS(1445), + [anon_sym_do] = ACTIONS(1445), + [anon_sym_for] = ACTIONS(1445), + [anon_sym_return] = ACTIONS(1445), + [anon_sym_break] = ACTIONS(1445), + [anon_sym_continue] = ACTIONS(1445), + [anon_sym_goto] = ACTIONS(1445), + [anon_sym_DASH_DASH] = ACTIONS(1443), + [anon_sym_PLUS_PLUS] = ACTIONS(1443), + [anon_sym_sizeof] = ACTIONS(1445), + [anon_sym___alignof__] = ACTIONS(1445), + [anon_sym___alignof] = ACTIONS(1445), + [anon_sym__alignof] = ACTIONS(1445), + [anon_sym_alignof] = ACTIONS(1445), + [anon_sym__Alignof] = ACTIONS(1445), + [anon_sym_offsetof] = ACTIONS(1445), + [anon_sym__Generic] = ACTIONS(1445), + [anon_sym_asm] = ACTIONS(1445), + [anon_sym___asm__] = ACTIONS(1445), + [sym_number_literal] = ACTIONS(1443), + [anon_sym_L_SQUOTE] = ACTIONS(1443), + [anon_sym_u_SQUOTE] = ACTIONS(1443), + [anon_sym_U_SQUOTE] = ACTIONS(1443), + [anon_sym_u8_SQUOTE] = ACTIONS(1443), + [anon_sym_SQUOTE] = ACTIONS(1443), + [anon_sym_L_DQUOTE] = ACTIONS(1443), + [anon_sym_u_DQUOTE] = ACTIONS(1443), + [anon_sym_U_DQUOTE] = ACTIONS(1443), + [anon_sym_u8_DQUOTE] = ACTIONS(1443), + [anon_sym_DQUOTE] = ACTIONS(1443), + [sym_true] = ACTIONS(1445), + [sym_false] = ACTIONS(1445), + [anon_sym_NULL] = ACTIONS(1445), + [anon_sym_nullptr] = ACTIONS(1445), [sym_comment] = ACTIONS(3), }, - [328] = { - [ts_builtin_sym_end] = ACTIONS(1381), - [sym_identifier] = ACTIONS(1379), - [aux_sym_preproc_include_token1] = ACTIONS(1379), - [aux_sym_preproc_def_token1] = ACTIONS(1379), - [aux_sym_preproc_if_token1] = ACTIONS(1379), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1379), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1379), - [sym_preproc_directive] = ACTIONS(1379), - [anon_sym_LPAREN2] = ACTIONS(1381), - [anon_sym_BANG] = ACTIONS(1381), - [anon_sym_TILDE] = ACTIONS(1381), - [anon_sym_DASH] = ACTIONS(1379), - [anon_sym_PLUS] = ACTIONS(1379), - [anon_sym_STAR] = ACTIONS(1381), - [anon_sym_AMP] = ACTIONS(1381), - [anon_sym___extension__] = ACTIONS(1379), - [anon_sym_typedef] = ACTIONS(1379), - [anon_sym_extern] = ACTIONS(1379), - [anon_sym___attribute__] = ACTIONS(1379), - [anon_sym___scanf] = ACTIONS(1379), - [anon_sym___printf] = ACTIONS(1379), - [anon_sym___read_mostly] = ACTIONS(1379), - [anon_sym___must_hold] = ACTIONS(1379), - [anon_sym___ro_after_init] = ACTIONS(1379), - [anon_sym___init] = ACTIONS(1379), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1381), - [anon_sym___declspec] = ACTIONS(1379), - [anon_sym___cdecl] = ACTIONS(1379), - [anon_sym___clrcall] = ACTIONS(1379), - [anon_sym___stdcall] = ACTIONS(1379), - [anon_sym___fastcall] = ACTIONS(1379), - [anon_sym___thiscall] = ACTIONS(1379), - [anon_sym___vectorcall] = ACTIONS(1379), - [anon_sym_LBRACE] = ACTIONS(1381), - [anon_sym_signed] = ACTIONS(1379), - [anon_sym_unsigned] = ACTIONS(1379), - [anon_sym_long] = ACTIONS(1379), - [anon_sym_short] = ACTIONS(1379), - [anon_sym_static] = ACTIONS(1379), - [anon_sym_auto] = ACTIONS(1379), - [anon_sym_register] = ACTIONS(1379), - [anon_sym_inline] = ACTIONS(1379), - [anon_sym___inline] = ACTIONS(1379), - [anon_sym___inline__] = ACTIONS(1379), - [anon_sym___forceinline] = ACTIONS(1379), - [anon_sym_thread_local] = ACTIONS(1379), - [anon_sym___thread] = ACTIONS(1379), - [anon_sym_const] = ACTIONS(1379), - [anon_sym_constexpr] = ACTIONS(1379), - [anon_sym_volatile] = ACTIONS(1379), - [anon_sym_restrict] = ACTIONS(1379), - [anon_sym___restrict__] = ACTIONS(1379), - [anon_sym__Atomic] = ACTIONS(1379), - [anon_sym__Noreturn] = ACTIONS(1379), - [anon_sym_noreturn] = ACTIONS(1379), - [anon_sym_alignas] = ACTIONS(1379), - [anon_sym__Alignas] = ACTIONS(1379), - [sym_primitive_type] = ACTIONS(1379), - [anon_sym_enum] = ACTIONS(1379), - [anon_sym_struct] = ACTIONS(1379), - [anon_sym_union] = ACTIONS(1379), - [anon_sym_if] = ACTIONS(1379), - [anon_sym_switch] = ACTIONS(1379), - [anon_sym_case] = ACTIONS(1379), - [anon_sym_default] = ACTIONS(1379), - [anon_sym_while] = ACTIONS(1379), - [anon_sym_do] = ACTIONS(1379), - [anon_sym_for] = ACTIONS(1379), - [anon_sym_return] = ACTIONS(1379), - [anon_sym_break] = ACTIONS(1379), - [anon_sym_continue] = ACTIONS(1379), - [anon_sym_goto] = ACTIONS(1379), - [anon_sym_DASH_DASH] = ACTIONS(1381), - [anon_sym_PLUS_PLUS] = ACTIONS(1381), - [anon_sym_sizeof] = ACTIONS(1379), - [anon_sym___alignof__] = ACTIONS(1379), - [anon_sym___alignof] = ACTIONS(1379), - [anon_sym__alignof] = ACTIONS(1379), - [anon_sym_alignof] = ACTIONS(1379), - [anon_sym__Alignof] = ACTIONS(1379), - [anon_sym_offsetof] = ACTIONS(1379), - [anon_sym__Generic] = ACTIONS(1379), - [anon_sym_asm] = ACTIONS(1379), - [anon_sym___asm__] = ACTIONS(1379), - [sym_number_literal] = ACTIONS(1381), - [anon_sym_L_SQUOTE] = ACTIONS(1381), - [anon_sym_u_SQUOTE] = ACTIONS(1381), - [anon_sym_U_SQUOTE] = ACTIONS(1381), - [anon_sym_u8_SQUOTE] = ACTIONS(1381), - [anon_sym_SQUOTE] = ACTIONS(1381), - [anon_sym_L_DQUOTE] = ACTIONS(1381), - [anon_sym_u_DQUOTE] = ACTIONS(1381), - [anon_sym_U_DQUOTE] = ACTIONS(1381), - [anon_sym_u8_DQUOTE] = ACTIONS(1381), - [anon_sym_DQUOTE] = ACTIONS(1381), - [sym_true] = ACTIONS(1379), - [sym_false] = ACTIONS(1379), - [anon_sym_NULL] = ACTIONS(1379), - [anon_sym_nullptr] = ACTIONS(1379), + [388] = { + [ts_builtin_sym_end] = ACTIONS(1355), + [sym_identifier] = ACTIONS(1353), + [aux_sym_preproc_include_token1] = ACTIONS(1353), + [aux_sym_preproc_def_token1] = ACTIONS(1353), + [aux_sym_preproc_if_token1] = ACTIONS(1353), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1353), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1353), + [sym_preproc_directive] = ACTIONS(1353), + [anon_sym_LPAREN2] = ACTIONS(1355), + [anon_sym_BANG] = ACTIONS(1355), + [anon_sym_TILDE] = ACTIONS(1355), + [anon_sym_DASH] = ACTIONS(1353), + [anon_sym_PLUS] = ACTIONS(1353), + [anon_sym_STAR] = ACTIONS(1355), + [anon_sym_AMP] = ACTIONS(1355), + [anon_sym___extension__] = ACTIONS(1353), + [anon_sym_typedef] = ACTIONS(1353), + [anon_sym_extern] = ACTIONS(1353), + [anon_sym___attribute__] = ACTIONS(1353), + [anon_sym___scanf] = ACTIONS(1353), + [anon_sym___printf] = ACTIONS(1353), + [anon_sym___read_mostly] = ACTIONS(1353), + [anon_sym___must_hold] = ACTIONS(1353), + [anon_sym___ro_after_init] = ACTIONS(1353), + [anon_sym___noreturn] = ACTIONS(1353), + [anon_sym___cold] = ACTIONS(1353), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1355), + [anon_sym___declspec] = ACTIONS(1353), + [anon_sym___init] = ACTIONS(1353), + [anon_sym___exit] = ACTIONS(1353), + [anon_sym___cdecl] = ACTIONS(1353), + [anon_sym___clrcall] = ACTIONS(1353), + [anon_sym___stdcall] = ACTIONS(1353), + [anon_sym___fastcall] = ACTIONS(1353), + [anon_sym___thiscall] = ACTIONS(1353), + [anon_sym___vectorcall] = ACTIONS(1353), + [anon_sym_LBRACE] = ACTIONS(1355), + [anon_sym_signed] = ACTIONS(1353), + [anon_sym_unsigned] = ACTIONS(1353), + [anon_sym_long] = ACTIONS(1353), + [anon_sym_short] = ACTIONS(1353), + [anon_sym_static] = ACTIONS(1353), + [anon_sym_auto] = ACTIONS(1353), + [anon_sym_register] = ACTIONS(1353), + [anon_sym_inline] = ACTIONS(1353), + [anon_sym___inline] = ACTIONS(1353), + [anon_sym___inline__] = ACTIONS(1353), + [anon_sym___forceinline] = ACTIONS(1353), + [anon_sym_thread_local] = ACTIONS(1353), + [anon_sym___thread] = ACTIONS(1353), + [anon_sym_const] = ACTIONS(1353), + [anon_sym_constexpr] = ACTIONS(1353), + [anon_sym_volatile] = ACTIONS(1353), + [anon_sym_restrict] = ACTIONS(1353), + [anon_sym___restrict__] = ACTIONS(1353), + [anon_sym__Atomic] = ACTIONS(1353), + [anon_sym__Noreturn] = ACTIONS(1353), + [anon_sym_noreturn] = ACTIONS(1353), + [anon_sym_alignas] = ACTIONS(1353), + [anon_sym__Alignas] = ACTIONS(1353), + [sym_primitive_type] = ACTIONS(1353), + [anon_sym_enum] = ACTIONS(1353), + [anon_sym_struct] = ACTIONS(1353), + [anon_sym_union] = ACTIONS(1353), + [anon_sym_if] = ACTIONS(1353), + [anon_sym_switch] = ACTIONS(1353), + [anon_sym_case] = ACTIONS(1353), + [anon_sym_default] = ACTIONS(1353), + [anon_sym_while] = ACTIONS(1353), + [anon_sym_do] = ACTIONS(1353), + [anon_sym_for] = ACTIONS(1353), + [anon_sym_return] = ACTIONS(1353), + [anon_sym_break] = ACTIONS(1353), + [anon_sym_continue] = ACTIONS(1353), + [anon_sym_goto] = ACTIONS(1353), + [anon_sym_DASH_DASH] = ACTIONS(1355), + [anon_sym_PLUS_PLUS] = ACTIONS(1355), + [anon_sym_sizeof] = ACTIONS(1353), + [anon_sym___alignof__] = ACTIONS(1353), + [anon_sym___alignof] = ACTIONS(1353), + [anon_sym__alignof] = ACTIONS(1353), + [anon_sym_alignof] = ACTIONS(1353), + [anon_sym__Alignof] = ACTIONS(1353), + [anon_sym_offsetof] = ACTIONS(1353), + [anon_sym__Generic] = ACTIONS(1353), + [anon_sym_asm] = ACTIONS(1353), + [anon_sym___asm__] = ACTIONS(1353), + [sym_number_literal] = ACTIONS(1355), + [anon_sym_L_SQUOTE] = ACTIONS(1355), + [anon_sym_u_SQUOTE] = ACTIONS(1355), + [anon_sym_U_SQUOTE] = ACTIONS(1355), + [anon_sym_u8_SQUOTE] = ACTIONS(1355), + [anon_sym_SQUOTE] = ACTIONS(1355), + [anon_sym_L_DQUOTE] = ACTIONS(1355), + [anon_sym_u_DQUOTE] = ACTIONS(1355), + [anon_sym_U_DQUOTE] = ACTIONS(1355), + [anon_sym_u8_DQUOTE] = ACTIONS(1355), + [anon_sym_DQUOTE] = ACTIONS(1355), + [sym_true] = ACTIONS(1353), + [sym_false] = ACTIONS(1353), + [anon_sym_NULL] = ACTIONS(1353), + [anon_sym_nullptr] = ACTIONS(1353), [sym_comment] = ACTIONS(3), }, - [329] = { - [ts_builtin_sym_end] = ACTIONS(1385), - [sym_identifier] = ACTIONS(1383), - [aux_sym_preproc_include_token1] = ACTIONS(1383), - [aux_sym_preproc_def_token1] = ACTIONS(1383), - [aux_sym_preproc_if_token1] = ACTIONS(1383), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1383), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1383), - [sym_preproc_directive] = ACTIONS(1383), - [anon_sym_LPAREN2] = ACTIONS(1385), - [anon_sym_BANG] = ACTIONS(1385), - [anon_sym_TILDE] = ACTIONS(1385), - [anon_sym_DASH] = ACTIONS(1383), - [anon_sym_PLUS] = ACTIONS(1383), - [anon_sym_STAR] = ACTIONS(1385), - [anon_sym_AMP] = ACTIONS(1385), - [anon_sym___extension__] = ACTIONS(1383), - [anon_sym_typedef] = ACTIONS(1383), - [anon_sym_extern] = ACTIONS(1383), - [anon_sym___attribute__] = ACTIONS(1383), - [anon_sym___scanf] = ACTIONS(1383), - [anon_sym___printf] = ACTIONS(1383), - [anon_sym___read_mostly] = ACTIONS(1383), - [anon_sym___must_hold] = ACTIONS(1383), - [anon_sym___ro_after_init] = ACTIONS(1383), - [anon_sym___init] = ACTIONS(1383), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1385), - [anon_sym___declspec] = ACTIONS(1383), - [anon_sym___cdecl] = ACTIONS(1383), - [anon_sym___clrcall] = ACTIONS(1383), - [anon_sym___stdcall] = ACTIONS(1383), - [anon_sym___fastcall] = ACTIONS(1383), - [anon_sym___thiscall] = ACTIONS(1383), - [anon_sym___vectorcall] = ACTIONS(1383), - [anon_sym_LBRACE] = ACTIONS(1385), - [anon_sym_signed] = ACTIONS(1383), - [anon_sym_unsigned] = ACTIONS(1383), - [anon_sym_long] = ACTIONS(1383), - [anon_sym_short] = ACTIONS(1383), - [anon_sym_static] = ACTIONS(1383), - [anon_sym_auto] = ACTIONS(1383), - [anon_sym_register] = ACTIONS(1383), - [anon_sym_inline] = ACTIONS(1383), - [anon_sym___inline] = ACTIONS(1383), - [anon_sym___inline__] = ACTIONS(1383), - [anon_sym___forceinline] = ACTIONS(1383), - [anon_sym_thread_local] = ACTIONS(1383), - [anon_sym___thread] = ACTIONS(1383), - [anon_sym_const] = ACTIONS(1383), - [anon_sym_constexpr] = ACTIONS(1383), - [anon_sym_volatile] = ACTIONS(1383), - [anon_sym_restrict] = ACTIONS(1383), - [anon_sym___restrict__] = ACTIONS(1383), - [anon_sym__Atomic] = ACTIONS(1383), - [anon_sym__Noreturn] = ACTIONS(1383), - [anon_sym_noreturn] = ACTIONS(1383), - [anon_sym_alignas] = ACTIONS(1383), - [anon_sym__Alignas] = ACTIONS(1383), - [sym_primitive_type] = ACTIONS(1383), - [anon_sym_enum] = ACTIONS(1383), - [anon_sym_struct] = ACTIONS(1383), - [anon_sym_union] = ACTIONS(1383), - [anon_sym_if] = ACTIONS(1383), - [anon_sym_switch] = ACTIONS(1383), - [anon_sym_case] = ACTIONS(1383), - [anon_sym_default] = ACTIONS(1383), - [anon_sym_while] = ACTIONS(1383), - [anon_sym_do] = ACTIONS(1383), - [anon_sym_for] = ACTIONS(1383), - [anon_sym_return] = ACTIONS(1383), - [anon_sym_break] = ACTIONS(1383), - [anon_sym_continue] = ACTIONS(1383), - [anon_sym_goto] = ACTIONS(1383), - [anon_sym_DASH_DASH] = ACTIONS(1385), - [anon_sym_PLUS_PLUS] = ACTIONS(1385), - [anon_sym_sizeof] = ACTIONS(1383), - [anon_sym___alignof__] = ACTIONS(1383), - [anon_sym___alignof] = ACTIONS(1383), - [anon_sym__alignof] = ACTIONS(1383), - [anon_sym_alignof] = ACTIONS(1383), - [anon_sym__Alignof] = ACTIONS(1383), - [anon_sym_offsetof] = ACTIONS(1383), - [anon_sym__Generic] = ACTIONS(1383), - [anon_sym_asm] = ACTIONS(1383), - [anon_sym___asm__] = ACTIONS(1383), - [sym_number_literal] = ACTIONS(1385), - [anon_sym_L_SQUOTE] = ACTIONS(1385), - [anon_sym_u_SQUOTE] = ACTIONS(1385), - [anon_sym_U_SQUOTE] = ACTIONS(1385), - [anon_sym_u8_SQUOTE] = ACTIONS(1385), - [anon_sym_SQUOTE] = ACTIONS(1385), - [anon_sym_L_DQUOTE] = ACTIONS(1385), - [anon_sym_u_DQUOTE] = ACTIONS(1385), - [anon_sym_U_DQUOTE] = ACTIONS(1385), - [anon_sym_u8_DQUOTE] = ACTIONS(1385), - [anon_sym_DQUOTE] = ACTIONS(1385), - [sym_true] = ACTIONS(1383), - [sym_false] = ACTIONS(1383), - [anon_sym_NULL] = ACTIONS(1383), - [anon_sym_nullptr] = ACTIONS(1383), + [389] = { + [ts_builtin_sym_end] = ACTIONS(1391), + [sym_identifier] = ACTIONS(1389), + [aux_sym_preproc_include_token1] = ACTIONS(1389), + [aux_sym_preproc_def_token1] = ACTIONS(1389), + [aux_sym_preproc_if_token1] = ACTIONS(1389), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1389), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1389), + [sym_preproc_directive] = ACTIONS(1389), + [anon_sym_LPAREN2] = ACTIONS(1391), + [anon_sym_BANG] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1391), + [anon_sym_DASH] = ACTIONS(1389), + [anon_sym_PLUS] = ACTIONS(1389), + [anon_sym_STAR] = ACTIONS(1391), + [anon_sym_AMP] = ACTIONS(1391), + [anon_sym___extension__] = ACTIONS(1389), + [anon_sym_typedef] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1389), + [anon_sym___attribute__] = ACTIONS(1389), + [anon_sym___scanf] = ACTIONS(1389), + [anon_sym___printf] = ACTIONS(1389), + [anon_sym___read_mostly] = ACTIONS(1389), + [anon_sym___must_hold] = ACTIONS(1389), + [anon_sym___ro_after_init] = ACTIONS(1389), + [anon_sym___noreturn] = ACTIONS(1389), + [anon_sym___cold] = ACTIONS(1389), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1391), + [anon_sym___declspec] = ACTIONS(1389), + [anon_sym___init] = ACTIONS(1389), + [anon_sym___exit] = ACTIONS(1389), + [anon_sym___cdecl] = ACTIONS(1389), + [anon_sym___clrcall] = ACTIONS(1389), + [anon_sym___stdcall] = ACTIONS(1389), + [anon_sym___fastcall] = ACTIONS(1389), + [anon_sym___thiscall] = ACTIONS(1389), + [anon_sym___vectorcall] = ACTIONS(1389), + [anon_sym_LBRACE] = ACTIONS(1391), + [anon_sym_signed] = ACTIONS(1389), + [anon_sym_unsigned] = ACTIONS(1389), + [anon_sym_long] = ACTIONS(1389), + [anon_sym_short] = ACTIONS(1389), + [anon_sym_static] = ACTIONS(1389), + [anon_sym_auto] = ACTIONS(1389), + [anon_sym_register] = ACTIONS(1389), + [anon_sym_inline] = ACTIONS(1389), + [anon_sym___inline] = ACTIONS(1389), + [anon_sym___inline__] = ACTIONS(1389), + [anon_sym___forceinline] = ACTIONS(1389), + [anon_sym_thread_local] = ACTIONS(1389), + [anon_sym___thread] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_constexpr] = ACTIONS(1389), + [anon_sym_volatile] = ACTIONS(1389), + [anon_sym_restrict] = ACTIONS(1389), + [anon_sym___restrict__] = ACTIONS(1389), + [anon_sym__Atomic] = ACTIONS(1389), + [anon_sym__Noreturn] = ACTIONS(1389), + [anon_sym_noreturn] = ACTIONS(1389), + [anon_sym_alignas] = ACTIONS(1389), + [anon_sym__Alignas] = ACTIONS(1389), + [sym_primitive_type] = ACTIONS(1389), + [anon_sym_enum] = ACTIONS(1389), + [anon_sym_struct] = ACTIONS(1389), + [anon_sym_union] = ACTIONS(1389), + [anon_sym_if] = ACTIONS(1389), + [anon_sym_switch] = ACTIONS(1389), + [anon_sym_case] = ACTIONS(1389), + [anon_sym_default] = ACTIONS(1389), + [anon_sym_while] = ACTIONS(1389), + [anon_sym_do] = ACTIONS(1389), + [anon_sym_for] = ACTIONS(1389), + [anon_sym_return] = ACTIONS(1389), + [anon_sym_break] = ACTIONS(1389), + [anon_sym_continue] = ACTIONS(1389), + [anon_sym_goto] = ACTIONS(1389), + [anon_sym_DASH_DASH] = ACTIONS(1391), + [anon_sym_PLUS_PLUS] = ACTIONS(1391), + [anon_sym_sizeof] = ACTIONS(1389), + [anon_sym___alignof__] = ACTIONS(1389), + [anon_sym___alignof] = ACTIONS(1389), + [anon_sym__alignof] = ACTIONS(1389), + [anon_sym_alignof] = ACTIONS(1389), + [anon_sym__Alignof] = ACTIONS(1389), + [anon_sym_offsetof] = ACTIONS(1389), + [anon_sym__Generic] = ACTIONS(1389), + [anon_sym_asm] = ACTIONS(1389), + [anon_sym___asm__] = ACTIONS(1389), + [sym_number_literal] = ACTIONS(1391), + [anon_sym_L_SQUOTE] = ACTIONS(1391), + [anon_sym_u_SQUOTE] = ACTIONS(1391), + [anon_sym_U_SQUOTE] = ACTIONS(1391), + [anon_sym_u8_SQUOTE] = ACTIONS(1391), + [anon_sym_SQUOTE] = ACTIONS(1391), + [anon_sym_L_DQUOTE] = ACTIONS(1391), + [anon_sym_u_DQUOTE] = ACTIONS(1391), + [anon_sym_U_DQUOTE] = ACTIONS(1391), + [anon_sym_u8_DQUOTE] = ACTIONS(1391), + [anon_sym_DQUOTE] = ACTIONS(1391), + [sym_true] = ACTIONS(1389), + [sym_false] = ACTIONS(1389), + [anon_sym_NULL] = ACTIONS(1389), + [anon_sym_nullptr] = ACTIONS(1389), [sym_comment] = ACTIONS(3), }, - [330] = { - [ts_builtin_sym_end] = ACTIONS(1313), - [sym_identifier] = ACTIONS(1311), - [aux_sym_preproc_include_token1] = ACTIONS(1311), - [aux_sym_preproc_def_token1] = ACTIONS(1311), - [aux_sym_preproc_if_token1] = ACTIONS(1311), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1311), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1311), - [sym_preproc_directive] = ACTIONS(1311), - [anon_sym_LPAREN2] = ACTIONS(1313), - [anon_sym_BANG] = ACTIONS(1313), - [anon_sym_TILDE] = ACTIONS(1313), - [anon_sym_DASH] = ACTIONS(1311), - [anon_sym_PLUS] = ACTIONS(1311), - [anon_sym_STAR] = ACTIONS(1313), - [anon_sym_AMP] = ACTIONS(1313), - [anon_sym___extension__] = ACTIONS(1311), - [anon_sym_typedef] = ACTIONS(1311), - [anon_sym_extern] = ACTIONS(1311), - [anon_sym___attribute__] = ACTIONS(1311), - [anon_sym___scanf] = ACTIONS(1311), - [anon_sym___printf] = ACTIONS(1311), - [anon_sym___read_mostly] = ACTIONS(1311), - [anon_sym___must_hold] = ACTIONS(1311), - [anon_sym___ro_after_init] = ACTIONS(1311), - [anon_sym___init] = ACTIONS(1311), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1313), - [anon_sym___declspec] = ACTIONS(1311), - [anon_sym___cdecl] = ACTIONS(1311), - [anon_sym___clrcall] = ACTIONS(1311), - [anon_sym___stdcall] = ACTIONS(1311), - [anon_sym___fastcall] = ACTIONS(1311), - [anon_sym___thiscall] = ACTIONS(1311), - [anon_sym___vectorcall] = ACTIONS(1311), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_signed] = ACTIONS(1311), - [anon_sym_unsigned] = ACTIONS(1311), - [anon_sym_long] = ACTIONS(1311), - [anon_sym_short] = ACTIONS(1311), - [anon_sym_static] = ACTIONS(1311), - [anon_sym_auto] = ACTIONS(1311), - [anon_sym_register] = ACTIONS(1311), - [anon_sym_inline] = ACTIONS(1311), - [anon_sym___inline] = ACTIONS(1311), - [anon_sym___inline__] = ACTIONS(1311), - [anon_sym___forceinline] = ACTIONS(1311), - [anon_sym_thread_local] = ACTIONS(1311), - [anon_sym___thread] = ACTIONS(1311), - [anon_sym_const] = ACTIONS(1311), - [anon_sym_constexpr] = ACTIONS(1311), - [anon_sym_volatile] = ACTIONS(1311), - [anon_sym_restrict] = ACTIONS(1311), - [anon_sym___restrict__] = ACTIONS(1311), - [anon_sym__Atomic] = ACTIONS(1311), - [anon_sym__Noreturn] = ACTIONS(1311), - [anon_sym_noreturn] = ACTIONS(1311), - [anon_sym_alignas] = ACTIONS(1311), - [anon_sym__Alignas] = ACTIONS(1311), - [sym_primitive_type] = ACTIONS(1311), - [anon_sym_enum] = ACTIONS(1311), - [anon_sym_struct] = ACTIONS(1311), - [anon_sym_union] = ACTIONS(1311), - [anon_sym_if] = ACTIONS(1311), - [anon_sym_switch] = ACTIONS(1311), - [anon_sym_case] = ACTIONS(1311), - [anon_sym_default] = ACTIONS(1311), - [anon_sym_while] = ACTIONS(1311), - [anon_sym_do] = ACTIONS(1311), - [anon_sym_for] = ACTIONS(1311), - [anon_sym_return] = ACTIONS(1311), - [anon_sym_break] = ACTIONS(1311), - [anon_sym_continue] = ACTIONS(1311), - [anon_sym_goto] = ACTIONS(1311), - [anon_sym_DASH_DASH] = ACTIONS(1313), - [anon_sym_PLUS_PLUS] = ACTIONS(1313), - [anon_sym_sizeof] = ACTIONS(1311), - [anon_sym___alignof__] = ACTIONS(1311), - [anon_sym___alignof] = ACTIONS(1311), - [anon_sym__alignof] = ACTIONS(1311), - [anon_sym_alignof] = ACTIONS(1311), - [anon_sym__Alignof] = ACTIONS(1311), - [anon_sym_offsetof] = ACTIONS(1311), - [anon_sym__Generic] = ACTIONS(1311), - [anon_sym_asm] = ACTIONS(1311), - [anon_sym___asm__] = ACTIONS(1311), - [sym_number_literal] = ACTIONS(1313), - [anon_sym_L_SQUOTE] = ACTIONS(1313), - [anon_sym_u_SQUOTE] = ACTIONS(1313), - [anon_sym_U_SQUOTE] = ACTIONS(1313), - [anon_sym_u8_SQUOTE] = ACTIONS(1313), - [anon_sym_SQUOTE] = ACTIONS(1313), - [anon_sym_L_DQUOTE] = ACTIONS(1313), - [anon_sym_u_DQUOTE] = ACTIONS(1313), - [anon_sym_U_DQUOTE] = ACTIONS(1313), - [anon_sym_u8_DQUOTE] = ACTIONS(1313), - [anon_sym_DQUOTE] = ACTIONS(1313), - [sym_true] = ACTIONS(1311), - [sym_false] = ACTIONS(1311), - [anon_sym_NULL] = ACTIONS(1311), - [anon_sym_nullptr] = ACTIONS(1311), + [390] = { + [ts_builtin_sym_end] = ACTIONS(1363), + [sym_identifier] = ACTIONS(1361), + [aux_sym_preproc_include_token1] = ACTIONS(1361), + [aux_sym_preproc_def_token1] = ACTIONS(1361), + [aux_sym_preproc_if_token1] = ACTIONS(1361), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1361), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1361), + [sym_preproc_directive] = ACTIONS(1361), + [anon_sym_LPAREN2] = ACTIONS(1363), + [anon_sym_BANG] = ACTIONS(1363), + [anon_sym_TILDE] = ACTIONS(1363), + [anon_sym_DASH] = ACTIONS(1361), + [anon_sym_PLUS] = ACTIONS(1361), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_AMP] = ACTIONS(1363), + [anon_sym___extension__] = ACTIONS(1361), + [anon_sym_typedef] = ACTIONS(1361), + [anon_sym_extern] = ACTIONS(1361), + [anon_sym___attribute__] = ACTIONS(1361), + [anon_sym___scanf] = ACTIONS(1361), + [anon_sym___printf] = ACTIONS(1361), + [anon_sym___read_mostly] = ACTIONS(1361), + [anon_sym___must_hold] = ACTIONS(1361), + [anon_sym___ro_after_init] = ACTIONS(1361), + [anon_sym___noreturn] = ACTIONS(1361), + [anon_sym___cold] = ACTIONS(1361), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1363), + [anon_sym___declspec] = ACTIONS(1361), + [anon_sym___init] = ACTIONS(1361), + [anon_sym___exit] = ACTIONS(1361), + [anon_sym___cdecl] = ACTIONS(1361), + [anon_sym___clrcall] = ACTIONS(1361), + [anon_sym___stdcall] = ACTIONS(1361), + [anon_sym___fastcall] = ACTIONS(1361), + [anon_sym___thiscall] = ACTIONS(1361), + [anon_sym___vectorcall] = ACTIONS(1361), + [anon_sym_LBRACE] = ACTIONS(1363), + [anon_sym_signed] = ACTIONS(1361), + [anon_sym_unsigned] = ACTIONS(1361), + [anon_sym_long] = ACTIONS(1361), + [anon_sym_short] = ACTIONS(1361), + [anon_sym_static] = ACTIONS(1361), + [anon_sym_auto] = ACTIONS(1361), + [anon_sym_register] = ACTIONS(1361), + [anon_sym_inline] = ACTIONS(1361), + [anon_sym___inline] = ACTIONS(1361), + [anon_sym___inline__] = ACTIONS(1361), + [anon_sym___forceinline] = ACTIONS(1361), + [anon_sym_thread_local] = ACTIONS(1361), + [anon_sym___thread] = ACTIONS(1361), + [anon_sym_const] = ACTIONS(1361), + [anon_sym_constexpr] = ACTIONS(1361), + [anon_sym_volatile] = ACTIONS(1361), + [anon_sym_restrict] = ACTIONS(1361), + [anon_sym___restrict__] = ACTIONS(1361), + [anon_sym__Atomic] = ACTIONS(1361), + [anon_sym__Noreturn] = ACTIONS(1361), + [anon_sym_noreturn] = ACTIONS(1361), + [anon_sym_alignas] = ACTIONS(1361), + [anon_sym__Alignas] = ACTIONS(1361), + [sym_primitive_type] = ACTIONS(1361), + [anon_sym_enum] = ACTIONS(1361), + [anon_sym_struct] = ACTIONS(1361), + [anon_sym_union] = ACTIONS(1361), + [anon_sym_if] = ACTIONS(1361), + [anon_sym_switch] = ACTIONS(1361), + [anon_sym_case] = ACTIONS(1361), + [anon_sym_default] = ACTIONS(1361), + [anon_sym_while] = ACTIONS(1361), + [anon_sym_do] = ACTIONS(1361), + [anon_sym_for] = ACTIONS(1361), + [anon_sym_return] = ACTIONS(1361), + [anon_sym_break] = ACTIONS(1361), + [anon_sym_continue] = ACTIONS(1361), + [anon_sym_goto] = ACTIONS(1361), + [anon_sym_DASH_DASH] = ACTIONS(1363), + [anon_sym_PLUS_PLUS] = ACTIONS(1363), + [anon_sym_sizeof] = ACTIONS(1361), + [anon_sym___alignof__] = ACTIONS(1361), + [anon_sym___alignof] = ACTIONS(1361), + [anon_sym__alignof] = ACTIONS(1361), + [anon_sym_alignof] = ACTIONS(1361), + [anon_sym__Alignof] = ACTIONS(1361), + [anon_sym_offsetof] = ACTIONS(1361), + [anon_sym__Generic] = ACTIONS(1361), + [anon_sym_asm] = ACTIONS(1361), + [anon_sym___asm__] = ACTIONS(1361), + [sym_number_literal] = ACTIONS(1363), + [anon_sym_L_SQUOTE] = ACTIONS(1363), + [anon_sym_u_SQUOTE] = ACTIONS(1363), + [anon_sym_U_SQUOTE] = ACTIONS(1363), + [anon_sym_u8_SQUOTE] = ACTIONS(1363), + [anon_sym_SQUOTE] = ACTIONS(1363), + [anon_sym_L_DQUOTE] = ACTIONS(1363), + [anon_sym_u_DQUOTE] = ACTIONS(1363), + [anon_sym_U_DQUOTE] = ACTIONS(1363), + [anon_sym_u8_DQUOTE] = ACTIONS(1363), + [anon_sym_DQUOTE] = ACTIONS(1363), + [sym_true] = ACTIONS(1361), + [sym_false] = ACTIONS(1361), + [anon_sym_NULL] = ACTIONS(1361), + [anon_sym_nullptr] = ACTIONS(1361), [sym_comment] = ACTIONS(3), }, - [331] = { - [ts_builtin_sym_end] = ACTIONS(1297), - [sym_identifier] = ACTIONS(1295), - [aux_sym_preproc_include_token1] = ACTIONS(1295), - [aux_sym_preproc_def_token1] = ACTIONS(1295), - [aux_sym_preproc_if_token1] = ACTIONS(1295), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1295), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1295), - [sym_preproc_directive] = ACTIONS(1295), - [anon_sym_LPAREN2] = ACTIONS(1297), - [anon_sym_BANG] = ACTIONS(1297), - [anon_sym_TILDE] = ACTIONS(1297), - [anon_sym_DASH] = ACTIONS(1295), - [anon_sym_PLUS] = ACTIONS(1295), - [anon_sym_STAR] = ACTIONS(1297), - [anon_sym_AMP] = ACTIONS(1297), - [anon_sym___extension__] = ACTIONS(1295), - [anon_sym_typedef] = ACTIONS(1295), - [anon_sym_extern] = ACTIONS(1295), - [anon_sym___attribute__] = ACTIONS(1295), - [anon_sym___scanf] = ACTIONS(1295), - [anon_sym___printf] = ACTIONS(1295), - [anon_sym___read_mostly] = ACTIONS(1295), - [anon_sym___must_hold] = ACTIONS(1295), - [anon_sym___ro_after_init] = ACTIONS(1295), - [anon_sym___init] = ACTIONS(1295), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1297), - [anon_sym___declspec] = ACTIONS(1295), - [anon_sym___cdecl] = ACTIONS(1295), - [anon_sym___clrcall] = ACTIONS(1295), - [anon_sym___stdcall] = ACTIONS(1295), - [anon_sym___fastcall] = ACTIONS(1295), - [anon_sym___thiscall] = ACTIONS(1295), - [anon_sym___vectorcall] = ACTIONS(1295), - [anon_sym_LBRACE] = ACTIONS(1297), - [anon_sym_signed] = ACTIONS(1295), - [anon_sym_unsigned] = ACTIONS(1295), - [anon_sym_long] = ACTIONS(1295), - [anon_sym_short] = ACTIONS(1295), - [anon_sym_static] = ACTIONS(1295), - [anon_sym_auto] = ACTIONS(1295), - [anon_sym_register] = ACTIONS(1295), - [anon_sym_inline] = ACTIONS(1295), - [anon_sym___inline] = ACTIONS(1295), - [anon_sym___inline__] = ACTIONS(1295), - [anon_sym___forceinline] = ACTIONS(1295), - [anon_sym_thread_local] = ACTIONS(1295), - [anon_sym___thread] = ACTIONS(1295), - [anon_sym_const] = ACTIONS(1295), - [anon_sym_constexpr] = ACTIONS(1295), - [anon_sym_volatile] = ACTIONS(1295), - [anon_sym_restrict] = ACTIONS(1295), - [anon_sym___restrict__] = ACTIONS(1295), - [anon_sym__Atomic] = ACTIONS(1295), - [anon_sym__Noreturn] = ACTIONS(1295), - [anon_sym_noreturn] = ACTIONS(1295), - [anon_sym_alignas] = ACTIONS(1295), - [anon_sym__Alignas] = ACTIONS(1295), - [sym_primitive_type] = ACTIONS(1295), - [anon_sym_enum] = ACTIONS(1295), - [anon_sym_struct] = ACTIONS(1295), - [anon_sym_union] = ACTIONS(1295), - [anon_sym_if] = ACTIONS(1295), - [anon_sym_switch] = ACTIONS(1295), - [anon_sym_case] = ACTIONS(1295), - [anon_sym_default] = ACTIONS(1295), - [anon_sym_while] = ACTIONS(1295), - [anon_sym_do] = ACTIONS(1295), - [anon_sym_for] = ACTIONS(1295), - [anon_sym_return] = ACTIONS(1295), - [anon_sym_break] = ACTIONS(1295), - [anon_sym_continue] = ACTIONS(1295), - [anon_sym_goto] = ACTIONS(1295), - [anon_sym_DASH_DASH] = ACTIONS(1297), - [anon_sym_PLUS_PLUS] = ACTIONS(1297), - [anon_sym_sizeof] = ACTIONS(1295), - [anon_sym___alignof__] = ACTIONS(1295), - [anon_sym___alignof] = ACTIONS(1295), - [anon_sym__alignof] = ACTIONS(1295), - [anon_sym_alignof] = ACTIONS(1295), - [anon_sym__Alignof] = ACTIONS(1295), - [anon_sym_offsetof] = ACTIONS(1295), - [anon_sym__Generic] = ACTIONS(1295), - [anon_sym_asm] = ACTIONS(1295), - [anon_sym___asm__] = ACTIONS(1295), - [sym_number_literal] = ACTIONS(1297), - [anon_sym_L_SQUOTE] = ACTIONS(1297), - [anon_sym_u_SQUOTE] = ACTIONS(1297), - [anon_sym_U_SQUOTE] = ACTIONS(1297), - [anon_sym_u8_SQUOTE] = ACTIONS(1297), - [anon_sym_SQUOTE] = ACTIONS(1297), - [anon_sym_L_DQUOTE] = ACTIONS(1297), - [anon_sym_u_DQUOTE] = ACTIONS(1297), - [anon_sym_U_DQUOTE] = ACTIONS(1297), - [anon_sym_u8_DQUOTE] = ACTIONS(1297), - [anon_sym_DQUOTE] = ACTIONS(1297), - [sym_true] = ACTIONS(1295), - [sym_false] = ACTIONS(1295), - [anon_sym_NULL] = ACTIONS(1295), - [anon_sym_nullptr] = ACTIONS(1295), + [391] = { + [ts_builtin_sym_end] = ACTIONS(1299), + [sym_identifier] = ACTIONS(1297), + [aux_sym_preproc_include_token1] = ACTIONS(1297), + [aux_sym_preproc_def_token1] = ACTIONS(1297), + [aux_sym_preproc_if_token1] = ACTIONS(1297), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1297), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1297), + [sym_preproc_directive] = ACTIONS(1297), + [anon_sym_LPAREN2] = ACTIONS(1299), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_TILDE] = ACTIONS(1299), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_STAR] = ACTIONS(1299), + [anon_sym_AMP] = ACTIONS(1299), + [anon_sym___extension__] = ACTIONS(1297), + [anon_sym_typedef] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1297), + [anon_sym___attribute__] = ACTIONS(1297), + [anon_sym___scanf] = ACTIONS(1297), + [anon_sym___printf] = ACTIONS(1297), + [anon_sym___read_mostly] = ACTIONS(1297), + [anon_sym___must_hold] = ACTIONS(1297), + [anon_sym___ro_after_init] = ACTIONS(1297), + [anon_sym___noreturn] = ACTIONS(1297), + [anon_sym___cold] = ACTIONS(1297), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1299), + [anon_sym___declspec] = ACTIONS(1297), + [anon_sym___init] = ACTIONS(1297), + [anon_sym___exit] = ACTIONS(1297), + [anon_sym___cdecl] = ACTIONS(1297), + [anon_sym___clrcall] = ACTIONS(1297), + [anon_sym___stdcall] = ACTIONS(1297), + [anon_sym___fastcall] = ACTIONS(1297), + [anon_sym___thiscall] = ACTIONS(1297), + [anon_sym___vectorcall] = ACTIONS(1297), + [anon_sym_LBRACE] = ACTIONS(1299), + [anon_sym_signed] = ACTIONS(1297), + [anon_sym_unsigned] = ACTIONS(1297), + [anon_sym_long] = ACTIONS(1297), + [anon_sym_short] = ACTIONS(1297), + [anon_sym_static] = ACTIONS(1297), + [anon_sym_auto] = ACTIONS(1297), + [anon_sym_register] = ACTIONS(1297), + [anon_sym_inline] = ACTIONS(1297), + [anon_sym___inline] = ACTIONS(1297), + [anon_sym___inline__] = ACTIONS(1297), + [anon_sym___forceinline] = ACTIONS(1297), + [anon_sym_thread_local] = ACTIONS(1297), + [anon_sym___thread] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1297), + [anon_sym_constexpr] = ACTIONS(1297), + [anon_sym_volatile] = ACTIONS(1297), + [anon_sym_restrict] = ACTIONS(1297), + [anon_sym___restrict__] = ACTIONS(1297), + [anon_sym__Atomic] = ACTIONS(1297), + [anon_sym__Noreturn] = ACTIONS(1297), + [anon_sym_noreturn] = ACTIONS(1297), + [anon_sym_alignas] = ACTIONS(1297), + [anon_sym__Alignas] = ACTIONS(1297), + [sym_primitive_type] = ACTIONS(1297), + [anon_sym_enum] = ACTIONS(1297), + [anon_sym_struct] = ACTIONS(1297), + [anon_sym_union] = ACTIONS(1297), + [anon_sym_if] = ACTIONS(1297), + [anon_sym_switch] = ACTIONS(1297), + [anon_sym_case] = ACTIONS(1297), + [anon_sym_default] = ACTIONS(1297), + [anon_sym_while] = ACTIONS(1297), + [anon_sym_do] = ACTIONS(1297), + [anon_sym_for] = ACTIONS(1297), + [anon_sym_return] = ACTIONS(1297), + [anon_sym_break] = ACTIONS(1297), + [anon_sym_continue] = ACTIONS(1297), + [anon_sym_goto] = ACTIONS(1297), + [anon_sym_DASH_DASH] = ACTIONS(1299), + [anon_sym_PLUS_PLUS] = ACTIONS(1299), + [anon_sym_sizeof] = ACTIONS(1297), + [anon_sym___alignof__] = ACTIONS(1297), + [anon_sym___alignof] = ACTIONS(1297), + [anon_sym__alignof] = ACTIONS(1297), + [anon_sym_alignof] = ACTIONS(1297), + [anon_sym__Alignof] = ACTIONS(1297), + [anon_sym_offsetof] = ACTIONS(1297), + [anon_sym__Generic] = ACTIONS(1297), + [anon_sym_asm] = ACTIONS(1297), + [anon_sym___asm__] = ACTIONS(1297), + [sym_number_literal] = ACTIONS(1299), + [anon_sym_L_SQUOTE] = ACTIONS(1299), + [anon_sym_u_SQUOTE] = ACTIONS(1299), + [anon_sym_U_SQUOTE] = ACTIONS(1299), + [anon_sym_u8_SQUOTE] = ACTIONS(1299), + [anon_sym_SQUOTE] = ACTIONS(1299), + [anon_sym_L_DQUOTE] = ACTIONS(1299), + [anon_sym_u_DQUOTE] = ACTIONS(1299), + [anon_sym_U_DQUOTE] = ACTIONS(1299), + [anon_sym_u8_DQUOTE] = ACTIONS(1299), + [anon_sym_DQUOTE] = ACTIONS(1299), + [sym_true] = ACTIONS(1297), + [sym_false] = ACTIONS(1297), + [anon_sym_NULL] = ACTIONS(1297), + [anon_sym_nullptr] = ACTIONS(1297), [sym_comment] = ACTIONS(3), }, - [332] = { - [ts_builtin_sym_end] = ACTIONS(1415), - [sym_identifier] = ACTIONS(1417), - [aux_sym_preproc_include_token1] = ACTIONS(1417), - [aux_sym_preproc_def_token1] = ACTIONS(1417), - [aux_sym_preproc_if_token1] = ACTIONS(1417), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1417), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1417), - [sym_preproc_directive] = ACTIONS(1417), - [anon_sym_LPAREN2] = ACTIONS(1415), - [anon_sym_BANG] = ACTIONS(1415), - [anon_sym_TILDE] = ACTIONS(1415), - [anon_sym_DASH] = ACTIONS(1417), - [anon_sym_PLUS] = ACTIONS(1417), - [anon_sym_STAR] = ACTIONS(1415), - [anon_sym_AMP] = ACTIONS(1415), - [anon_sym___extension__] = ACTIONS(1417), - [anon_sym_typedef] = ACTIONS(1417), - [anon_sym_extern] = ACTIONS(1417), - [anon_sym___attribute__] = ACTIONS(1417), - [anon_sym___scanf] = ACTIONS(1417), - [anon_sym___printf] = ACTIONS(1417), - [anon_sym___read_mostly] = ACTIONS(1417), - [anon_sym___must_hold] = ACTIONS(1417), - [anon_sym___ro_after_init] = ACTIONS(1417), - [anon_sym___init] = ACTIONS(1417), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1415), - [anon_sym___declspec] = ACTIONS(1417), - [anon_sym___cdecl] = ACTIONS(1417), - [anon_sym___clrcall] = ACTIONS(1417), - [anon_sym___stdcall] = ACTIONS(1417), - [anon_sym___fastcall] = ACTIONS(1417), - [anon_sym___thiscall] = ACTIONS(1417), - [anon_sym___vectorcall] = ACTIONS(1417), - [anon_sym_LBRACE] = ACTIONS(1415), - [anon_sym_signed] = ACTIONS(1417), - [anon_sym_unsigned] = ACTIONS(1417), - [anon_sym_long] = ACTIONS(1417), - [anon_sym_short] = ACTIONS(1417), - [anon_sym_static] = ACTIONS(1417), - [anon_sym_auto] = ACTIONS(1417), - [anon_sym_register] = ACTIONS(1417), - [anon_sym_inline] = ACTIONS(1417), - [anon_sym___inline] = ACTIONS(1417), - [anon_sym___inline__] = ACTIONS(1417), - [anon_sym___forceinline] = ACTIONS(1417), - [anon_sym_thread_local] = ACTIONS(1417), - [anon_sym___thread] = ACTIONS(1417), - [anon_sym_const] = ACTIONS(1417), - [anon_sym_constexpr] = ACTIONS(1417), - [anon_sym_volatile] = ACTIONS(1417), - [anon_sym_restrict] = ACTIONS(1417), - [anon_sym___restrict__] = ACTIONS(1417), - [anon_sym__Atomic] = ACTIONS(1417), - [anon_sym__Noreturn] = ACTIONS(1417), - [anon_sym_noreturn] = ACTIONS(1417), - [anon_sym_alignas] = ACTIONS(1417), - [anon_sym__Alignas] = ACTIONS(1417), - [sym_primitive_type] = ACTIONS(1417), - [anon_sym_enum] = ACTIONS(1417), - [anon_sym_struct] = ACTIONS(1417), - [anon_sym_union] = ACTIONS(1417), - [anon_sym_if] = ACTIONS(1417), - [anon_sym_switch] = ACTIONS(1417), - [anon_sym_case] = ACTIONS(1417), - [anon_sym_default] = ACTIONS(1417), - [anon_sym_while] = ACTIONS(1417), - [anon_sym_do] = ACTIONS(1417), - [anon_sym_for] = ACTIONS(1417), - [anon_sym_return] = ACTIONS(1417), - [anon_sym_break] = ACTIONS(1417), - [anon_sym_continue] = ACTIONS(1417), - [anon_sym_goto] = ACTIONS(1417), - [anon_sym_DASH_DASH] = ACTIONS(1415), - [anon_sym_PLUS_PLUS] = ACTIONS(1415), - [anon_sym_sizeof] = ACTIONS(1417), - [anon_sym___alignof__] = ACTIONS(1417), - [anon_sym___alignof] = ACTIONS(1417), - [anon_sym__alignof] = ACTIONS(1417), - [anon_sym_alignof] = ACTIONS(1417), - [anon_sym__Alignof] = ACTIONS(1417), - [anon_sym_offsetof] = ACTIONS(1417), - [anon_sym__Generic] = ACTIONS(1417), - [anon_sym_asm] = ACTIONS(1417), - [anon_sym___asm__] = ACTIONS(1417), - [sym_number_literal] = ACTIONS(1415), - [anon_sym_L_SQUOTE] = ACTIONS(1415), - [anon_sym_u_SQUOTE] = ACTIONS(1415), - [anon_sym_U_SQUOTE] = ACTIONS(1415), - [anon_sym_u8_SQUOTE] = ACTIONS(1415), - [anon_sym_SQUOTE] = ACTIONS(1415), - [anon_sym_L_DQUOTE] = ACTIONS(1415), - [anon_sym_u_DQUOTE] = ACTIONS(1415), - [anon_sym_U_DQUOTE] = ACTIONS(1415), - [anon_sym_u8_DQUOTE] = ACTIONS(1415), - [anon_sym_DQUOTE] = ACTIONS(1415), - [sym_true] = ACTIONS(1417), - [sym_false] = ACTIONS(1417), - [anon_sym_NULL] = ACTIONS(1417), - [anon_sym_nullptr] = ACTIONS(1417), + [392] = { + [ts_builtin_sym_end] = ACTIONS(1319), + [sym_identifier] = ACTIONS(1317), + [aux_sym_preproc_include_token1] = ACTIONS(1317), + [aux_sym_preproc_def_token1] = ACTIONS(1317), + [aux_sym_preproc_if_token1] = ACTIONS(1317), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1317), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1317), + [sym_preproc_directive] = ACTIONS(1317), + [anon_sym_LPAREN2] = ACTIONS(1319), + [anon_sym_BANG] = ACTIONS(1319), + [anon_sym_TILDE] = ACTIONS(1319), + [anon_sym_DASH] = ACTIONS(1317), + [anon_sym_PLUS] = ACTIONS(1317), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym___extension__] = ACTIONS(1317), + [anon_sym_typedef] = ACTIONS(1317), + [anon_sym_extern] = ACTIONS(1317), + [anon_sym___attribute__] = ACTIONS(1317), + [anon_sym___scanf] = ACTIONS(1317), + [anon_sym___printf] = ACTIONS(1317), + [anon_sym___read_mostly] = ACTIONS(1317), + [anon_sym___must_hold] = ACTIONS(1317), + [anon_sym___ro_after_init] = ACTIONS(1317), + [anon_sym___noreturn] = ACTIONS(1317), + [anon_sym___cold] = ACTIONS(1317), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1319), + [anon_sym___declspec] = ACTIONS(1317), + [anon_sym___init] = ACTIONS(1317), + [anon_sym___exit] = ACTIONS(1317), + [anon_sym___cdecl] = ACTIONS(1317), + [anon_sym___clrcall] = ACTIONS(1317), + [anon_sym___stdcall] = ACTIONS(1317), + [anon_sym___fastcall] = ACTIONS(1317), + [anon_sym___thiscall] = ACTIONS(1317), + [anon_sym___vectorcall] = ACTIONS(1317), + [anon_sym_LBRACE] = ACTIONS(1319), + [anon_sym_signed] = ACTIONS(1317), + [anon_sym_unsigned] = ACTIONS(1317), + [anon_sym_long] = ACTIONS(1317), + [anon_sym_short] = ACTIONS(1317), + [anon_sym_static] = ACTIONS(1317), + [anon_sym_auto] = ACTIONS(1317), + [anon_sym_register] = ACTIONS(1317), + [anon_sym_inline] = ACTIONS(1317), + [anon_sym___inline] = ACTIONS(1317), + [anon_sym___inline__] = ACTIONS(1317), + [anon_sym___forceinline] = ACTIONS(1317), + [anon_sym_thread_local] = ACTIONS(1317), + [anon_sym___thread] = ACTIONS(1317), + [anon_sym_const] = ACTIONS(1317), + [anon_sym_constexpr] = ACTIONS(1317), + [anon_sym_volatile] = ACTIONS(1317), + [anon_sym_restrict] = ACTIONS(1317), + [anon_sym___restrict__] = ACTIONS(1317), + [anon_sym__Atomic] = ACTIONS(1317), + [anon_sym__Noreturn] = ACTIONS(1317), + [anon_sym_noreturn] = ACTIONS(1317), + [anon_sym_alignas] = ACTIONS(1317), + [anon_sym__Alignas] = ACTIONS(1317), + [sym_primitive_type] = ACTIONS(1317), + [anon_sym_enum] = ACTIONS(1317), + [anon_sym_struct] = ACTIONS(1317), + [anon_sym_union] = ACTIONS(1317), + [anon_sym_if] = ACTIONS(1317), + [anon_sym_switch] = ACTIONS(1317), + [anon_sym_case] = ACTIONS(1317), + [anon_sym_default] = ACTIONS(1317), + [anon_sym_while] = ACTIONS(1317), + [anon_sym_do] = ACTIONS(1317), + [anon_sym_for] = ACTIONS(1317), + [anon_sym_return] = ACTIONS(1317), + [anon_sym_break] = ACTIONS(1317), + [anon_sym_continue] = ACTIONS(1317), + [anon_sym_goto] = ACTIONS(1317), + [anon_sym_DASH_DASH] = ACTIONS(1319), + [anon_sym_PLUS_PLUS] = ACTIONS(1319), + [anon_sym_sizeof] = ACTIONS(1317), + [anon_sym___alignof__] = ACTIONS(1317), + [anon_sym___alignof] = ACTIONS(1317), + [anon_sym__alignof] = ACTIONS(1317), + [anon_sym_alignof] = ACTIONS(1317), + [anon_sym__Alignof] = ACTIONS(1317), + [anon_sym_offsetof] = ACTIONS(1317), + [anon_sym__Generic] = ACTIONS(1317), + [anon_sym_asm] = ACTIONS(1317), + [anon_sym___asm__] = ACTIONS(1317), + [sym_number_literal] = ACTIONS(1319), + [anon_sym_L_SQUOTE] = ACTIONS(1319), + [anon_sym_u_SQUOTE] = ACTIONS(1319), + [anon_sym_U_SQUOTE] = ACTIONS(1319), + [anon_sym_u8_SQUOTE] = ACTIONS(1319), + [anon_sym_SQUOTE] = ACTIONS(1319), + [anon_sym_L_DQUOTE] = ACTIONS(1319), + [anon_sym_u_DQUOTE] = ACTIONS(1319), + [anon_sym_U_DQUOTE] = ACTIONS(1319), + [anon_sym_u8_DQUOTE] = ACTIONS(1319), + [anon_sym_DQUOTE] = ACTIONS(1319), + [sym_true] = ACTIONS(1317), + [sym_false] = ACTIONS(1317), + [anon_sym_NULL] = ACTIONS(1317), + [anon_sym_nullptr] = ACTIONS(1317), [sym_comment] = ACTIONS(3), }, - [333] = { - [ts_builtin_sym_end] = ACTIONS(1377), - [sym_identifier] = ACTIONS(1375), - [aux_sym_preproc_include_token1] = ACTIONS(1375), - [aux_sym_preproc_def_token1] = ACTIONS(1375), - [aux_sym_preproc_if_token1] = ACTIONS(1375), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1375), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1375), - [sym_preproc_directive] = ACTIONS(1375), - [anon_sym_LPAREN2] = ACTIONS(1377), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_TILDE] = ACTIONS(1377), - [anon_sym_DASH] = ACTIONS(1375), - [anon_sym_PLUS] = ACTIONS(1375), - [anon_sym_STAR] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1377), - [anon_sym___extension__] = ACTIONS(1375), - [anon_sym_typedef] = ACTIONS(1375), - [anon_sym_extern] = ACTIONS(1375), - [anon_sym___attribute__] = ACTIONS(1375), - [anon_sym___scanf] = ACTIONS(1375), - [anon_sym___printf] = ACTIONS(1375), - [anon_sym___read_mostly] = ACTIONS(1375), - [anon_sym___must_hold] = ACTIONS(1375), - [anon_sym___ro_after_init] = ACTIONS(1375), - [anon_sym___init] = ACTIONS(1375), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1377), - [anon_sym___declspec] = ACTIONS(1375), - [anon_sym___cdecl] = ACTIONS(1375), - [anon_sym___clrcall] = ACTIONS(1375), - [anon_sym___stdcall] = ACTIONS(1375), - [anon_sym___fastcall] = ACTIONS(1375), - [anon_sym___thiscall] = ACTIONS(1375), - [anon_sym___vectorcall] = ACTIONS(1375), - [anon_sym_LBRACE] = ACTIONS(1377), - [anon_sym_signed] = ACTIONS(1375), - [anon_sym_unsigned] = ACTIONS(1375), - [anon_sym_long] = ACTIONS(1375), - [anon_sym_short] = ACTIONS(1375), - [anon_sym_static] = ACTIONS(1375), - [anon_sym_auto] = ACTIONS(1375), - [anon_sym_register] = ACTIONS(1375), - [anon_sym_inline] = ACTIONS(1375), - [anon_sym___inline] = ACTIONS(1375), - [anon_sym___inline__] = ACTIONS(1375), - [anon_sym___forceinline] = ACTIONS(1375), - [anon_sym_thread_local] = ACTIONS(1375), - [anon_sym___thread] = ACTIONS(1375), - [anon_sym_const] = ACTIONS(1375), - [anon_sym_constexpr] = ACTIONS(1375), - [anon_sym_volatile] = ACTIONS(1375), - [anon_sym_restrict] = ACTIONS(1375), - [anon_sym___restrict__] = ACTIONS(1375), - [anon_sym__Atomic] = ACTIONS(1375), - [anon_sym__Noreturn] = ACTIONS(1375), - [anon_sym_noreturn] = ACTIONS(1375), - [anon_sym_alignas] = ACTIONS(1375), - [anon_sym__Alignas] = ACTIONS(1375), - [sym_primitive_type] = ACTIONS(1375), - [anon_sym_enum] = ACTIONS(1375), - [anon_sym_struct] = ACTIONS(1375), - [anon_sym_union] = ACTIONS(1375), - [anon_sym_if] = ACTIONS(1375), - [anon_sym_switch] = ACTIONS(1375), - [anon_sym_case] = ACTIONS(1375), - [anon_sym_default] = ACTIONS(1375), - [anon_sym_while] = ACTIONS(1375), - [anon_sym_do] = ACTIONS(1375), - [anon_sym_for] = ACTIONS(1375), - [anon_sym_return] = ACTIONS(1375), - [anon_sym_break] = ACTIONS(1375), - [anon_sym_continue] = ACTIONS(1375), - [anon_sym_goto] = ACTIONS(1375), - [anon_sym_DASH_DASH] = ACTIONS(1377), - [anon_sym_PLUS_PLUS] = ACTIONS(1377), - [anon_sym_sizeof] = ACTIONS(1375), - [anon_sym___alignof__] = ACTIONS(1375), - [anon_sym___alignof] = ACTIONS(1375), - [anon_sym__alignof] = ACTIONS(1375), - [anon_sym_alignof] = ACTIONS(1375), - [anon_sym__Alignof] = ACTIONS(1375), - [anon_sym_offsetof] = ACTIONS(1375), - [anon_sym__Generic] = ACTIONS(1375), - [anon_sym_asm] = ACTIONS(1375), - [anon_sym___asm__] = ACTIONS(1375), - [sym_number_literal] = ACTIONS(1377), - [anon_sym_L_SQUOTE] = ACTIONS(1377), - [anon_sym_u_SQUOTE] = ACTIONS(1377), - [anon_sym_U_SQUOTE] = ACTIONS(1377), - [anon_sym_u8_SQUOTE] = ACTIONS(1377), - [anon_sym_SQUOTE] = ACTIONS(1377), - [anon_sym_L_DQUOTE] = ACTIONS(1377), - [anon_sym_u_DQUOTE] = ACTIONS(1377), - [anon_sym_U_DQUOTE] = ACTIONS(1377), - [anon_sym_u8_DQUOTE] = ACTIONS(1377), - [anon_sym_DQUOTE] = ACTIONS(1377), - [sym_true] = ACTIONS(1375), - [sym_false] = ACTIONS(1375), - [anon_sym_NULL] = ACTIONS(1375), - [anon_sym_nullptr] = ACTIONS(1375), + [393] = { + [ts_builtin_sym_end] = ACTIONS(1311), + [sym_identifier] = ACTIONS(1309), + [aux_sym_preproc_include_token1] = ACTIONS(1309), + [aux_sym_preproc_def_token1] = ACTIONS(1309), + [aux_sym_preproc_if_token1] = ACTIONS(1309), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1309), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1309), + [sym_preproc_directive] = ACTIONS(1309), + [anon_sym_LPAREN2] = ACTIONS(1311), + [anon_sym_BANG] = ACTIONS(1311), + [anon_sym_TILDE] = ACTIONS(1311), + [anon_sym_DASH] = ACTIONS(1309), + [anon_sym_PLUS] = ACTIONS(1309), + [anon_sym_STAR] = ACTIONS(1311), + [anon_sym_AMP] = ACTIONS(1311), + [anon_sym___extension__] = ACTIONS(1309), + [anon_sym_typedef] = ACTIONS(1309), + [anon_sym_extern] = ACTIONS(1309), + [anon_sym___attribute__] = ACTIONS(1309), + [anon_sym___scanf] = ACTIONS(1309), + [anon_sym___printf] = ACTIONS(1309), + [anon_sym___read_mostly] = ACTIONS(1309), + [anon_sym___must_hold] = ACTIONS(1309), + [anon_sym___ro_after_init] = ACTIONS(1309), + [anon_sym___noreturn] = ACTIONS(1309), + [anon_sym___cold] = ACTIONS(1309), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1311), + [anon_sym___declspec] = ACTIONS(1309), + [anon_sym___init] = ACTIONS(1309), + [anon_sym___exit] = ACTIONS(1309), + [anon_sym___cdecl] = ACTIONS(1309), + [anon_sym___clrcall] = ACTIONS(1309), + [anon_sym___stdcall] = ACTIONS(1309), + [anon_sym___fastcall] = ACTIONS(1309), + [anon_sym___thiscall] = ACTIONS(1309), + [anon_sym___vectorcall] = ACTIONS(1309), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_signed] = ACTIONS(1309), + [anon_sym_unsigned] = ACTIONS(1309), + [anon_sym_long] = ACTIONS(1309), + [anon_sym_short] = ACTIONS(1309), + [anon_sym_static] = ACTIONS(1309), + [anon_sym_auto] = ACTIONS(1309), + [anon_sym_register] = ACTIONS(1309), + [anon_sym_inline] = ACTIONS(1309), + [anon_sym___inline] = ACTIONS(1309), + [anon_sym___inline__] = ACTIONS(1309), + [anon_sym___forceinline] = ACTIONS(1309), + [anon_sym_thread_local] = ACTIONS(1309), + [anon_sym___thread] = ACTIONS(1309), + [anon_sym_const] = ACTIONS(1309), + [anon_sym_constexpr] = ACTIONS(1309), + [anon_sym_volatile] = ACTIONS(1309), + [anon_sym_restrict] = ACTIONS(1309), + [anon_sym___restrict__] = ACTIONS(1309), + [anon_sym__Atomic] = ACTIONS(1309), + [anon_sym__Noreturn] = ACTIONS(1309), + [anon_sym_noreturn] = ACTIONS(1309), + [anon_sym_alignas] = ACTIONS(1309), + [anon_sym__Alignas] = ACTIONS(1309), + [sym_primitive_type] = ACTIONS(1309), + [anon_sym_enum] = ACTIONS(1309), + [anon_sym_struct] = ACTIONS(1309), + [anon_sym_union] = ACTIONS(1309), + [anon_sym_if] = ACTIONS(1309), + [anon_sym_switch] = ACTIONS(1309), + [anon_sym_case] = ACTIONS(1309), + [anon_sym_default] = ACTIONS(1309), + [anon_sym_while] = ACTIONS(1309), + [anon_sym_do] = ACTIONS(1309), + [anon_sym_for] = ACTIONS(1309), + [anon_sym_return] = ACTIONS(1309), + [anon_sym_break] = ACTIONS(1309), + [anon_sym_continue] = ACTIONS(1309), + [anon_sym_goto] = ACTIONS(1309), + [anon_sym_DASH_DASH] = ACTIONS(1311), + [anon_sym_PLUS_PLUS] = ACTIONS(1311), + [anon_sym_sizeof] = ACTIONS(1309), + [anon_sym___alignof__] = ACTIONS(1309), + [anon_sym___alignof] = ACTIONS(1309), + [anon_sym__alignof] = ACTIONS(1309), + [anon_sym_alignof] = ACTIONS(1309), + [anon_sym__Alignof] = ACTIONS(1309), + [anon_sym_offsetof] = ACTIONS(1309), + [anon_sym__Generic] = ACTIONS(1309), + [anon_sym_asm] = ACTIONS(1309), + [anon_sym___asm__] = ACTIONS(1309), + [sym_number_literal] = ACTIONS(1311), + [anon_sym_L_SQUOTE] = ACTIONS(1311), + [anon_sym_u_SQUOTE] = ACTIONS(1311), + [anon_sym_U_SQUOTE] = ACTIONS(1311), + [anon_sym_u8_SQUOTE] = ACTIONS(1311), + [anon_sym_SQUOTE] = ACTIONS(1311), + [anon_sym_L_DQUOTE] = ACTIONS(1311), + [anon_sym_u_DQUOTE] = ACTIONS(1311), + [anon_sym_U_DQUOTE] = ACTIONS(1311), + [anon_sym_u8_DQUOTE] = ACTIONS(1311), + [anon_sym_DQUOTE] = ACTIONS(1311), + [sym_true] = ACTIONS(1309), + [sym_false] = ACTIONS(1309), + [anon_sym_NULL] = ACTIONS(1309), + [anon_sym_nullptr] = ACTIONS(1309), [sym_comment] = ACTIONS(3), }, - [334] = { - [ts_builtin_sym_end] = ACTIONS(1349), - [sym_identifier] = ACTIONS(1347), - [aux_sym_preproc_include_token1] = ACTIONS(1347), - [aux_sym_preproc_def_token1] = ACTIONS(1347), - [aux_sym_preproc_if_token1] = ACTIONS(1347), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1347), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1347), - [sym_preproc_directive] = ACTIONS(1347), - [anon_sym_LPAREN2] = ACTIONS(1349), - [anon_sym_BANG] = ACTIONS(1349), - [anon_sym_TILDE] = ACTIONS(1349), - [anon_sym_DASH] = ACTIONS(1347), - [anon_sym_PLUS] = ACTIONS(1347), - [anon_sym_STAR] = ACTIONS(1349), - [anon_sym_AMP] = ACTIONS(1349), - [anon_sym___extension__] = ACTIONS(1347), - [anon_sym_typedef] = ACTIONS(1347), - [anon_sym_extern] = ACTIONS(1347), - [anon_sym___attribute__] = ACTIONS(1347), - [anon_sym___scanf] = ACTIONS(1347), - [anon_sym___printf] = ACTIONS(1347), - [anon_sym___read_mostly] = ACTIONS(1347), - [anon_sym___must_hold] = ACTIONS(1347), - [anon_sym___ro_after_init] = ACTIONS(1347), - [anon_sym___init] = ACTIONS(1347), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1349), - [anon_sym___declspec] = ACTIONS(1347), - [anon_sym___cdecl] = ACTIONS(1347), - [anon_sym___clrcall] = ACTIONS(1347), - [anon_sym___stdcall] = ACTIONS(1347), - [anon_sym___fastcall] = ACTIONS(1347), - [anon_sym___thiscall] = ACTIONS(1347), - [anon_sym___vectorcall] = ACTIONS(1347), - [anon_sym_LBRACE] = ACTIONS(1349), - [anon_sym_signed] = ACTIONS(1347), - [anon_sym_unsigned] = ACTIONS(1347), - [anon_sym_long] = ACTIONS(1347), - [anon_sym_short] = ACTIONS(1347), - [anon_sym_static] = ACTIONS(1347), - [anon_sym_auto] = ACTIONS(1347), - [anon_sym_register] = ACTIONS(1347), - [anon_sym_inline] = ACTIONS(1347), - [anon_sym___inline] = ACTIONS(1347), - [anon_sym___inline__] = ACTIONS(1347), - [anon_sym___forceinline] = ACTIONS(1347), - [anon_sym_thread_local] = ACTIONS(1347), - [anon_sym___thread] = ACTIONS(1347), - [anon_sym_const] = ACTIONS(1347), - [anon_sym_constexpr] = ACTIONS(1347), - [anon_sym_volatile] = ACTIONS(1347), - [anon_sym_restrict] = ACTIONS(1347), - [anon_sym___restrict__] = ACTIONS(1347), - [anon_sym__Atomic] = ACTIONS(1347), - [anon_sym__Noreturn] = ACTIONS(1347), - [anon_sym_noreturn] = ACTIONS(1347), - [anon_sym_alignas] = ACTIONS(1347), - [anon_sym__Alignas] = ACTIONS(1347), - [sym_primitive_type] = ACTIONS(1347), - [anon_sym_enum] = ACTIONS(1347), - [anon_sym_struct] = ACTIONS(1347), - [anon_sym_union] = ACTIONS(1347), - [anon_sym_if] = ACTIONS(1347), - [anon_sym_switch] = ACTIONS(1347), - [anon_sym_case] = ACTIONS(1347), - [anon_sym_default] = ACTIONS(1347), - [anon_sym_while] = ACTIONS(1347), - [anon_sym_do] = ACTIONS(1347), - [anon_sym_for] = ACTIONS(1347), - [anon_sym_return] = ACTIONS(1347), - [anon_sym_break] = ACTIONS(1347), - [anon_sym_continue] = ACTIONS(1347), - [anon_sym_goto] = ACTIONS(1347), - [anon_sym_DASH_DASH] = ACTIONS(1349), - [anon_sym_PLUS_PLUS] = ACTIONS(1349), - [anon_sym_sizeof] = ACTIONS(1347), - [anon_sym___alignof__] = ACTIONS(1347), - [anon_sym___alignof] = ACTIONS(1347), - [anon_sym__alignof] = ACTIONS(1347), - [anon_sym_alignof] = ACTIONS(1347), - [anon_sym__Alignof] = ACTIONS(1347), - [anon_sym_offsetof] = ACTIONS(1347), - [anon_sym__Generic] = ACTIONS(1347), - [anon_sym_asm] = ACTIONS(1347), - [anon_sym___asm__] = ACTIONS(1347), - [sym_number_literal] = ACTIONS(1349), - [anon_sym_L_SQUOTE] = ACTIONS(1349), - [anon_sym_u_SQUOTE] = ACTIONS(1349), - [anon_sym_U_SQUOTE] = ACTIONS(1349), - [anon_sym_u8_SQUOTE] = ACTIONS(1349), - [anon_sym_SQUOTE] = ACTIONS(1349), - [anon_sym_L_DQUOTE] = ACTIONS(1349), - [anon_sym_u_DQUOTE] = ACTIONS(1349), - [anon_sym_U_DQUOTE] = ACTIONS(1349), - [anon_sym_u8_DQUOTE] = ACTIONS(1349), - [anon_sym_DQUOTE] = ACTIONS(1349), - [sym_true] = ACTIONS(1347), - [sym_false] = ACTIONS(1347), - [anon_sym_NULL] = ACTIONS(1347), - [anon_sym_nullptr] = ACTIONS(1347), + [394] = { + [ts_builtin_sym_end] = ACTIONS(1359), + [sym_identifier] = ACTIONS(1357), + [aux_sym_preproc_include_token1] = ACTIONS(1357), + [aux_sym_preproc_def_token1] = ACTIONS(1357), + [aux_sym_preproc_if_token1] = ACTIONS(1357), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1357), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1357), + [sym_preproc_directive] = ACTIONS(1357), + [anon_sym_LPAREN2] = ACTIONS(1359), + [anon_sym_BANG] = ACTIONS(1359), + [anon_sym_TILDE] = ACTIONS(1359), + [anon_sym_DASH] = ACTIONS(1357), + [anon_sym_PLUS] = ACTIONS(1357), + [anon_sym_STAR] = ACTIONS(1359), + [anon_sym_AMP] = ACTIONS(1359), + [anon_sym___extension__] = ACTIONS(1357), + [anon_sym_typedef] = ACTIONS(1357), + [anon_sym_extern] = ACTIONS(1357), + [anon_sym___attribute__] = ACTIONS(1357), + [anon_sym___scanf] = ACTIONS(1357), + [anon_sym___printf] = ACTIONS(1357), + [anon_sym___read_mostly] = ACTIONS(1357), + [anon_sym___must_hold] = ACTIONS(1357), + [anon_sym___ro_after_init] = ACTIONS(1357), + [anon_sym___noreturn] = ACTIONS(1357), + [anon_sym___cold] = ACTIONS(1357), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1359), + [anon_sym___declspec] = ACTIONS(1357), + [anon_sym___init] = ACTIONS(1357), + [anon_sym___exit] = ACTIONS(1357), + [anon_sym___cdecl] = ACTIONS(1357), + [anon_sym___clrcall] = ACTIONS(1357), + [anon_sym___stdcall] = ACTIONS(1357), + [anon_sym___fastcall] = ACTIONS(1357), + [anon_sym___thiscall] = ACTIONS(1357), + [anon_sym___vectorcall] = ACTIONS(1357), + [anon_sym_LBRACE] = ACTIONS(1359), + [anon_sym_signed] = ACTIONS(1357), + [anon_sym_unsigned] = ACTIONS(1357), + [anon_sym_long] = ACTIONS(1357), + [anon_sym_short] = ACTIONS(1357), + [anon_sym_static] = ACTIONS(1357), + [anon_sym_auto] = ACTIONS(1357), + [anon_sym_register] = ACTIONS(1357), + [anon_sym_inline] = ACTIONS(1357), + [anon_sym___inline] = ACTIONS(1357), + [anon_sym___inline__] = ACTIONS(1357), + [anon_sym___forceinline] = ACTIONS(1357), + [anon_sym_thread_local] = ACTIONS(1357), + [anon_sym___thread] = ACTIONS(1357), + [anon_sym_const] = ACTIONS(1357), + [anon_sym_constexpr] = ACTIONS(1357), + [anon_sym_volatile] = ACTIONS(1357), + [anon_sym_restrict] = ACTIONS(1357), + [anon_sym___restrict__] = ACTIONS(1357), + [anon_sym__Atomic] = ACTIONS(1357), + [anon_sym__Noreturn] = ACTIONS(1357), + [anon_sym_noreturn] = ACTIONS(1357), + [anon_sym_alignas] = ACTIONS(1357), + [anon_sym__Alignas] = ACTIONS(1357), + [sym_primitive_type] = ACTIONS(1357), + [anon_sym_enum] = ACTIONS(1357), + [anon_sym_struct] = ACTIONS(1357), + [anon_sym_union] = ACTIONS(1357), + [anon_sym_if] = ACTIONS(1357), + [anon_sym_switch] = ACTIONS(1357), + [anon_sym_case] = ACTIONS(1357), + [anon_sym_default] = ACTIONS(1357), + [anon_sym_while] = ACTIONS(1357), + [anon_sym_do] = ACTIONS(1357), + [anon_sym_for] = ACTIONS(1357), + [anon_sym_return] = ACTIONS(1357), + [anon_sym_break] = ACTIONS(1357), + [anon_sym_continue] = ACTIONS(1357), + [anon_sym_goto] = ACTIONS(1357), + [anon_sym_DASH_DASH] = ACTIONS(1359), + [anon_sym_PLUS_PLUS] = ACTIONS(1359), + [anon_sym_sizeof] = ACTIONS(1357), + [anon_sym___alignof__] = ACTIONS(1357), + [anon_sym___alignof] = ACTIONS(1357), + [anon_sym__alignof] = ACTIONS(1357), + [anon_sym_alignof] = ACTIONS(1357), + [anon_sym__Alignof] = ACTIONS(1357), + [anon_sym_offsetof] = ACTIONS(1357), + [anon_sym__Generic] = ACTIONS(1357), + [anon_sym_asm] = ACTIONS(1357), + [anon_sym___asm__] = ACTIONS(1357), + [sym_number_literal] = ACTIONS(1359), + [anon_sym_L_SQUOTE] = ACTIONS(1359), + [anon_sym_u_SQUOTE] = ACTIONS(1359), + [anon_sym_U_SQUOTE] = ACTIONS(1359), + [anon_sym_u8_SQUOTE] = ACTIONS(1359), + [anon_sym_SQUOTE] = ACTIONS(1359), + [anon_sym_L_DQUOTE] = ACTIONS(1359), + [anon_sym_u_DQUOTE] = ACTIONS(1359), + [anon_sym_U_DQUOTE] = ACTIONS(1359), + [anon_sym_u8_DQUOTE] = ACTIONS(1359), + [anon_sym_DQUOTE] = ACTIONS(1359), + [sym_true] = ACTIONS(1357), + [sym_false] = ACTIONS(1357), + [anon_sym_NULL] = ACTIONS(1357), + [anon_sym_nullptr] = ACTIONS(1357), [sym_comment] = ACTIONS(3), }, - [335] = { - [ts_builtin_sym_end] = ACTIONS(1419), - [sym_identifier] = ACTIONS(1422), - [aux_sym_preproc_include_token1] = ACTIONS(1422), - [aux_sym_preproc_def_token1] = ACTIONS(1422), - [aux_sym_preproc_if_token1] = ACTIONS(1422), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1422), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1422), - [sym_preproc_directive] = ACTIONS(1422), - [anon_sym_LPAREN2] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(1419), - [anon_sym_TILDE] = ACTIONS(1419), - [anon_sym_DASH] = ACTIONS(1422), - [anon_sym_PLUS] = ACTIONS(1422), - [anon_sym_STAR] = ACTIONS(1419), - [anon_sym_AMP] = ACTIONS(1419), - [anon_sym___extension__] = ACTIONS(1422), - [anon_sym_typedef] = ACTIONS(1422), - [anon_sym_extern] = ACTIONS(1422), - [anon_sym___attribute__] = ACTIONS(1422), - [anon_sym___scanf] = ACTIONS(1422), - [anon_sym___printf] = ACTIONS(1422), - [anon_sym___read_mostly] = ACTIONS(1422), - [anon_sym___must_hold] = ACTIONS(1422), - [anon_sym___ro_after_init] = ACTIONS(1422), - [anon_sym___init] = ACTIONS(1422), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1419), - [anon_sym___declspec] = ACTIONS(1422), - [anon_sym___cdecl] = ACTIONS(1422), - [anon_sym___clrcall] = ACTIONS(1422), - [anon_sym___stdcall] = ACTIONS(1422), - [anon_sym___fastcall] = ACTIONS(1422), - [anon_sym___thiscall] = ACTIONS(1422), - [anon_sym___vectorcall] = ACTIONS(1422), - [anon_sym_LBRACE] = ACTIONS(1419), - [anon_sym_signed] = ACTIONS(1422), - [anon_sym_unsigned] = ACTIONS(1422), - [anon_sym_long] = ACTIONS(1422), - [anon_sym_short] = ACTIONS(1422), - [anon_sym_static] = ACTIONS(1422), - [anon_sym_auto] = ACTIONS(1422), - [anon_sym_register] = ACTIONS(1422), - [anon_sym_inline] = ACTIONS(1422), - [anon_sym___inline] = ACTIONS(1422), - [anon_sym___inline__] = ACTIONS(1422), - [anon_sym___forceinline] = ACTIONS(1422), - [anon_sym_thread_local] = ACTIONS(1422), - [anon_sym___thread] = ACTIONS(1422), - [anon_sym_const] = ACTIONS(1422), - [anon_sym_constexpr] = ACTIONS(1422), - [anon_sym_volatile] = ACTIONS(1422), - [anon_sym_restrict] = ACTIONS(1422), - [anon_sym___restrict__] = ACTIONS(1422), - [anon_sym__Atomic] = ACTIONS(1422), - [anon_sym__Noreturn] = ACTIONS(1422), - [anon_sym_noreturn] = ACTIONS(1422), - [anon_sym_alignas] = ACTIONS(1422), - [anon_sym__Alignas] = ACTIONS(1422), - [sym_primitive_type] = ACTIONS(1422), - [anon_sym_enum] = ACTIONS(1422), - [anon_sym_struct] = ACTIONS(1422), - [anon_sym_union] = ACTIONS(1422), - [anon_sym_if] = ACTIONS(1422), - [anon_sym_switch] = ACTIONS(1422), - [anon_sym_case] = ACTIONS(1422), - [anon_sym_default] = ACTIONS(1422), - [anon_sym_while] = ACTIONS(1422), - [anon_sym_do] = ACTIONS(1422), - [anon_sym_for] = ACTIONS(1422), - [anon_sym_return] = ACTIONS(1422), - [anon_sym_break] = ACTIONS(1422), - [anon_sym_continue] = ACTIONS(1422), - [anon_sym_goto] = ACTIONS(1422), - [anon_sym_DASH_DASH] = ACTIONS(1419), - [anon_sym_PLUS_PLUS] = ACTIONS(1419), - [anon_sym_sizeof] = ACTIONS(1422), - [anon_sym___alignof__] = ACTIONS(1422), - [anon_sym___alignof] = ACTIONS(1422), - [anon_sym__alignof] = ACTIONS(1422), - [anon_sym_alignof] = ACTIONS(1422), - [anon_sym__Alignof] = ACTIONS(1422), - [anon_sym_offsetof] = ACTIONS(1422), - [anon_sym__Generic] = ACTIONS(1422), - [anon_sym_asm] = ACTIONS(1422), - [anon_sym___asm__] = ACTIONS(1422), - [sym_number_literal] = ACTIONS(1419), - [anon_sym_L_SQUOTE] = ACTIONS(1419), - [anon_sym_u_SQUOTE] = ACTIONS(1419), - [anon_sym_U_SQUOTE] = ACTIONS(1419), - [anon_sym_u8_SQUOTE] = ACTIONS(1419), - [anon_sym_SQUOTE] = ACTIONS(1419), - [anon_sym_L_DQUOTE] = ACTIONS(1419), - [anon_sym_u_DQUOTE] = ACTIONS(1419), - [anon_sym_U_DQUOTE] = ACTIONS(1419), - [anon_sym_u8_DQUOTE] = ACTIONS(1419), - [anon_sym_DQUOTE] = ACTIONS(1419), - [sym_true] = ACTIONS(1422), - [sym_false] = ACTIONS(1422), - [anon_sym_NULL] = ACTIONS(1422), - [anon_sym_nullptr] = ACTIONS(1422), + [395] = { + [ts_builtin_sym_end] = ACTIONS(1379), + [sym_identifier] = ACTIONS(1377), + [aux_sym_preproc_include_token1] = ACTIONS(1377), + [aux_sym_preproc_def_token1] = ACTIONS(1377), + [aux_sym_preproc_if_token1] = ACTIONS(1377), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1377), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1377), + [sym_preproc_directive] = ACTIONS(1377), + [anon_sym_LPAREN2] = ACTIONS(1379), + [anon_sym_BANG] = ACTIONS(1379), + [anon_sym_TILDE] = ACTIONS(1379), + [anon_sym_DASH] = ACTIONS(1377), + [anon_sym_PLUS] = ACTIONS(1377), + [anon_sym_STAR] = ACTIONS(1379), + [anon_sym_AMP] = ACTIONS(1379), + [anon_sym___extension__] = ACTIONS(1377), + [anon_sym_typedef] = ACTIONS(1377), + [anon_sym_extern] = ACTIONS(1377), + [anon_sym___attribute__] = ACTIONS(1377), + [anon_sym___scanf] = ACTIONS(1377), + [anon_sym___printf] = ACTIONS(1377), + [anon_sym___read_mostly] = ACTIONS(1377), + [anon_sym___must_hold] = ACTIONS(1377), + [anon_sym___ro_after_init] = ACTIONS(1377), + [anon_sym___noreturn] = ACTIONS(1377), + [anon_sym___cold] = ACTIONS(1377), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1379), + [anon_sym___declspec] = ACTIONS(1377), + [anon_sym___init] = ACTIONS(1377), + [anon_sym___exit] = ACTIONS(1377), + [anon_sym___cdecl] = ACTIONS(1377), + [anon_sym___clrcall] = ACTIONS(1377), + [anon_sym___stdcall] = ACTIONS(1377), + [anon_sym___fastcall] = ACTIONS(1377), + [anon_sym___thiscall] = ACTIONS(1377), + [anon_sym___vectorcall] = ACTIONS(1377), + [anon_sym_LBRACE] = ACTIONS(1379), + [anon_sym_signed] = ACTIONS(1377), + [anon_sym_unsigned] = ACTIONS(1377), + [anon_sym_long] = ACTIONS(1377), + [anon_sym_short] = ACTIONS(1377), + [anon_sym_static] = ACTIONS(1377), + [anon_sym_auto] = ACTIONS(1377), + [anon_sym_register] = ACTIONS(1377), + [anon_sym_inline] = ACTIONS(1377), + [anon_sym___inline] = ACTIONS(1377), + [anon_sym___inline__] = ACTIONS(1377), + [anon_sym___forceinline] = ACTIONS(1377), + [anon_sym_thread_local] = ACTIONS(1377), + [anon_sym___thread] = ACTIONS(1377), + [anon_sym_const] = ACTIONS(1377), + [anon_sym_constexpr] = ACTIONS(1377), + [anon_sym_volatile] = ACTIONS(1377), + [anon_sym_restrict] = ACTIONS(1377), + [anon_sym___restrict__] = ACTIONS(1377), + [anon_sym__Atomic] = ACTIONS(1377), + [anon_sym__Noreturn] = ACTIONS(1377), + [anon_sym_noreturn] = ACTIONS(1377), + [anon_sym_alignas] = ACTIONS(1377), + [anon_sym__Alignas] = ACTIONS(1377), + [sym_primitive_type] = ACTIONS(1377), + [anon_sym_enum] = ACTIONS(1377), + [anon_sym_struct] = ACTIONS(1377), + [anon_sym_union] = ACTIONS(1377), + [anon_sym_if] = ACTIONS(1377), + [anon_sym_switch] = ACTIONS(1377), + [anon_sym_case] = ACTIONS(1377), + [anon_sym_default] = ACTIONS(1377), + [anon_sym_while] = ACTIONS(1377), + [anon_sym_do] = ACTIONS(1377), + [anon_sym_for] = ACTIONS(1377), + [anon_sym_return] = ACTIONS(1377), + [anon_sym_break] = ACTIONS(1377), + [anon_sym_continue] = ACTIONS(1377), + [anon_sym_goto] = ACTIONS(1377), + [anon_sym_DASH_DASH] = ACTIONS(1379), + [anon_sym_PLUS_PLUS] = ACTIONS(1379), + [anon_sym_sizeof] = ACTIONS(1377), + [anon_sym___alignof__] = ACTIONS(1377), + [anon_sym___alignof] = ACTIONS(1377), + [anon_sym__alignof] = ACTIONS(1377), + [anon_sym_alignof] = ACTIONS(1377), + [anon_sym__Alignof] = ACTIONS(1377), + [anon_sym_offsetof] = ACTIONS(1377), + [anon_sym__Generic] = ACTIONS(1377), + [anon_sym_asm] = ACTIONS(1377), + [anon_sym___asm__] = ACTIONS(1377), + [sym_number_literal] = ACTIONS(1379), + [anon_sym_L_SQUOTE] = ACTIONS(1379), + [anon_sym_u_SQUOTE] = ACTIONS(1379), + [anon_sym_U_SQUOTE] = ACTIONS(1379), + [anon_sym_u8_SQUOTE] = ACTIONS(1379), + [anon_sym_SQUOTE] = ACTIONS(1379), + [anon_sym_L_DQUOTE] = ACTIONS(1379), + [anon_sym_u_DQUOTE] = ACTIONS(1379), + [anon_sym_U_DQUOTE] = ACTIONS(1379), + [anon_sym_u8_DQUOTE] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1379), + [sym_true] = ACTIONS(1377), + [sym_false] = ACTIONS(1377), + [anon_sym_NULL] = ACTIONS(1377), + [anon_sym_nullptr] = ACTIONS(1377), [sym_comment] = ACTIONS(3), }, - [336] = { - [ts_builtin_sym_end] = ACTIONS(1279), - [sym_identifier] = ACTIONS(1277), - [aux_sym_preproc_include_token1] = ACTIONS(1277), - [aux_sym_preproc_def_token1] = ACTIONS(1277), - [aux_sym_preproc_if_token1] = ACTIONS(1277), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1277), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1277), - [sym_preproc_directive] = ACTIONS(1277), - [anon_sym_LPAREN2] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1279), - [anon_sym_TILDE] = ACTIONS(1279), - [anon_sym_DASH] = ACTIONS(1277), - [anon_sym_PLUS] = ACTIONS(1277), - [anon_sym_STAR] = ACTIONS(1279), - [anon_sym_AMP] = ACTIONS(1279), - [anon_sym___extension__] = ACTIONS(1277), - [anon_sym_typedef] = ACTIONS(1277), - [anon_sym_extern] = ACTIONS(1277), - [anon_sym___attribute__] = ACTIONS(1277), - [anon_sym___scanf] = ACTIONS(1277), - [anon_sym___printf] = ACTIONS(1277), - [anon_sym___read_mostly] = ACTIONS(1277), - [anon_sym___must_hold] = ACTIONS(1277), - [anon_sym___ro_after_init] = ACTIONS(1277), - [anon_sym___init] = ACTIONS(1277), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1279), - [anon_sym___declspec] = ACTIONS(1277), - [anon_sym___cdecl] = ACTIONS(1277), - [anon_sym___clrcall] = ACTIONS(1277), - [anon_sym___stdcall] = ACTIONS(1277), - [anon_sym___fastcall] = ACTIONS(1277), - [anon_sym___thiscall] = ACTIONS(1277), - [anon_sym___vectorcall] = ACTIONS(1277), - [anon_sym_LBRACE] = ACTIONS(1279), - [anon_sym_signed] = ACTIONS(1277), - [anon_sym_unsigned] = ACTIONS(1277), - [anon_sym_long] = ACTIONS(1277), - [anon_sym_short] = ACTIONS(1277), - [anon_sym_static] = ACTIONS(1277), - [anon_sym_auto] = ACTIONS(1277), - [anon_sym_register] = ACTIONS(1277), - [anon_sym_inline] = ACTIONS(1277), - [anon_sym___inline] = ACTIONS(1277), - [anon_sym___inline__] = ACTIONS(1277), - [anon_sym___forceinline] = ACTIONS(1277), - [anon_sym_thread_local] = ACTIONS(1277), - [anon_sym___thread] = ACTIONS(1277), - [anon_sym_const] = ACTIONS(1277), - [anon_sym_constexpr] = ACTIONS(1277), - [anon_sym_volatile] = ACTIONS(1277), - [anon_sym_restrict] = ACTIONS(1277), - [anon_sym___restrict__] = ACTIONS(1277), - [anon_sym__Atomic] = ACTIONS(1277), - [anon_sym__Noreturn] = ACTIONS(1277), - [anon_sym_noreturn] = ACTIONS(1277), - [anon_sym_alignas] = ACTIONS(1277), - [anon_sym__Alignas] = ACTIONS(1277), - [sym_primitive_type] = ACTIONS(1277), - [anon_sym_enum] = ACTIONS(1277), - [anon_sym_struct] = ACTIONS(1277), - [anon_sym_union] = ACTIONS(1277), - [anon_sym_if] = ACTIONS(1277), - [anon_sym_switch] = ACTIONS(1277), - [anon_sym_case] = ACTIONS(1277), - [anon_sym_default] = ACTIONS(1277), - [anon_sym_while] = ACTIONS(1277), - [anon_sym_do] = ACTIONS(1277), - [anon_sym_for] = ACTIONS(1277), - [anon_sym_return] = ACTIONS(1277), - [anon_sym_break] = ACTIONS(1277), - [anon_sym_continue] = ACTIONS(1277), - [anon_sym_goto] = ACTIONS(1277), - [anon_sym_DASH_DASH] = ACTIONS(1279), - [anon_sym_PLUS_PLUS] = ACTIONS(1279), - [anon_sym_sizeof] = ACTIONS(1277), - [anon_sym___alignof__] = ACTIONS(1277), - [anon_sym___alignof] = ACTIONS(1277), - [anon_sym__alignof] = ACTIONS(1277), - [anon_sym_alignof] = ACTIONS(1277), - [anon_sym__Alignof] = ACTIONS(1277), - [anon_sym_offsetof] = ACTIONS(1277), - [anon_sym__Generic] = ACTIONS(1277), - [anon_sym_asm] = ACTIONS(1277), - [anon_sym___asm__] = ACTIONS(1277), - [sym_number_literal] = ACTIONS(1279), - [anon_sym_L_SQUOTE] = ACTIONS(1279), - [anon_sym_u_SQUOTE] = ACTIONS(1279), - [anon_sym_U_SQUOTE] = ACTIONS(1279), - [anon_sym_u8_SQUOTE] = ACTIONS(1279), - [anon_sym_SQUOTE] = ACTIONS(1279), - [anon_sym_L_DQUOTE] = ACTIONS(1279), - [anon_sym_u_DQUOTE] = ACTIONS(1279), - [anon_sym_U_DQUOTE] = ACTIONS(1279), - [anon_sym_u8_DQUOTE] = ACTIONS(1279), - [anon_sym_DQUOTE] = ACTIONS(1279), - [sym_true] = ACTIONS(1277), - [sym_false] = ACTIONS(1277), - [anon_sym_NULL] = ACTIONS(1277), - [anon_sym_nullptr] = ACTIONS(1277), + [396] = { + [ts_builtin_sym_end] = ACTIONS(1383), + [sym_identifier] = ACTIONS(1381), + [aux_sym_preproc_include_token1] = ACTIONS(1381), + [aux_sym_preproc_def_token1] = ACTIONS(1381), + [aux_sym_preproc_if_token1] = ACTIONS(1381), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1381), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1381), + [sym_preproc_directive] = ACTIONS(1381), + [anon_sym_LPAREN2] = ACTIONS(1383), + [anon_sym_BANG] = ACTIONS(1383), + [anon_sym_TILDE] = ACTIONS(1383), + [anon_sym_DASH] = ACTIONS(1381), + [anon_sym_PLUS] = ACTIONS(1381), + [anon_sym_STAR] = ACTIONS(1383), + [anon_sym_AMP] = ACTIONS(1383), + [anon_sym___extension__] = ACTIONS(1381), + [anon_sym_typedef] = ACTIONS(1381), + [anon_sym_extern] = ACTIONS(1381), + [anon_sym___attribute__] = ACTIONS(1381), + [anon_sym___scanf] = ACTIONS(1381), + [anon_sym___printf] = ACTIONS(1381), + [anon_sym___read_mostly] = ACTIONS(1381), + [anon_sym___must_hold] = ACTIONS(1381), + [anon_sym___ro_after_init] = ACTIONS(1381), + [anon_sym___noreturn] = ACTIONS(1381), + [anon_sym___cold] = ACTIONS(1381), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1383), + [anon_sym___declspec] = ACTIONS(1381), + [anon_sym___init] = ACTIONS(1381), + [anon_sym___exit] = ACTIONS(1381), + [anon_sym___cdecl] = ACTIONS(1381), + [anon_sym___clrcall] = ACTIONS(1381), + [anon_sym___stdcall] = ACTIONS(1381), + [anon_sym___fastcall] = ACTIONS(1381), + [anon_sym___thiscall] = ACTIONS(1381), + [anon_sym___vectorcall] = ACTIONS(1381), + [anon_sym_LBRACE] = ACTIONS(1383), + [anon_sym_signed] = ACTIONS(1381), + [anon_sym_unsigned] = ACTIONS(1381), + [anon_sym_long] = ACTIONS(1381), + [anon_sym_short] = ACTIONS(1381), + [anon_sym_static] = ACTIONS(1381), + [anon_sym_auto] = ACTIONS(1381), + [anon_sym_register] = ACTIONS(1381), + [anon_sym_inline] = ACTIONS(1381), + [anon_sym___inline] = ACTIONS(1381), + [anon_sym___inline__] = ACTIONS(1381), + [anon_sym___forceinline] = ACTIONS(1381), + [anon_sym_thread_local] = ACTIONS(1381), + [anon_sym___thread] = ACTIONS(1381), + [anon_sym_const] = ACTIONS(1381), + [anon_sym_constexpr] = ACTIONS(1381), + [anon_sym_volatile] = ACTIONS(1381), + [anon_sym_restrict] = ACTIONS(1381), + [anon_sym___restrict__] = ACTIONS(1381), + [anon_sym__Atomic] = ACTIONS(1381), + [anon_sym__Noreturn] = ACTIONS(1381), + [anon_sym_noreturn] = ACTIONS(1381), + [anon_sym_alignas] = ACTIONS(1381), + [anon_sym__Alignas] = ACTIONS(1381), + [sym_primitive_type] = ACTIONS(1381), + [anon_sym_enum] = ACTIONS(1381), + [anon_sym_struct] = ACTIONS(1381), + [anon_sym_union] = ACTIONS(1381), + [anon_sym_if] = ACTIONS(1381), + [anon_sym_switch] = ACTIONS(1381), + [anon_sym_case] = ACTIONS(1381), + [anon_sym_default] = ACTIONS(1381), + [anon_sym_while] = ACTIONS(1381), + [anon_sym_do] = ACTIONS(1381), + [anon_sym_for] = ACTIONS(1381), + [anon_sym_return] = ACTIONS(1381), + [anon_sym_break] = ACTIONS(1381), + [anon_sym_continue] = ACTIONS(1381), + [anon_sym_goto] = ACTIONS(1381), + [anon_sym_DASH_DASH] = ACTIONS(1383), + [anon_sym_PLUS_PLUS] = ACTIONS(1383), + [anon_sym_sizeof] = ACTIONS(1381), + [anon_sym___alignof__] = ACTIONS(1381), + [anon_sym___alignof] = ACTIONS(1381), + [anon_sym__alignof] = ACTIONS(1381), + [anon_sym_alignof] = ACTIONS(1381), + [anon_sym__Alignof] = ACTIONS(1381), + [anon_sym_offsetof] = ACTIONS(1381), + [anon_sym__Generic] = ACTIONS(1381), + [anon_sym_asm] = ACTIONS(1381), + [anon_sym___asm__] = ACTIONS(1381), + [sym_number_literal] = ACTIONS(1383), + [anon_sym_L_SQUOTE] = ACTIONS(1383), + [anon_sym_u_SQUOTE] = ACTIONS(1383), + [anon_sym_U_SQUOTE] = ACTIONS(1383), + [anon_sym_u8_SQUOTE] = ACTIONS(1383), + [anon_sym_SQUOTE] = ACTIONS(1383), + [anon_sym_L_DQUOTE] = ACTIONS(1383), + [anon_sym_u_DQUOTE] = ACTIONS(1383), + [anon_sym_U_DQUOTE] = ACTIONS(1383), + [anon_sym_u8_DQUOTE] = ACTIONS(1383), + [anon_sym_DQUOTE] = ACTIONS(1383), + [sym_true] = ACTIONS(1381), + [sym_false] = ACTIONS(1381), + [anon_sym_NULL] = ACTIONS(1381), + [anon_sym_nullptr] = ACTIONS(1381), [sym_comment] = ACTIONS(3), }, - [337] = { - [ts_builtin_sym_end] = ACTIONS(1337), - [sym_identifier] = ACTIONS(1335), - [aux_sym_preproc_include_token1] = ACTIONS(1335), - [aux_sym_preproc_def_token1] = ACTIONS(1335), - [aux_sym_preproc_if_token1] = ACTIONS(1335), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1335), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1335), - [sym_preproc_directive] = ACTIONS(1335), - [anon_sym_LPAREN2] = ACTIONS(1337), - [anon_sym_BANG] = ACTIONS(1337), - [anon_sym_TILDE] = ACTIONS(1337), - [anon_sym_DASH] = ACTIONS(1335), - [anon_sym_PLUS] = ACTIONS(1335), - [anon_sym_STAR] = ACTIONS(1337), - [anon_sym_AMP] = ACTIONS(1337), - [anon_sym___extension__] = ACTIONS(1335), - [anon_sym_typedef] = ACTIONS(1335), - [anon_sym_extern] = ACTIONS(1335), - [anon_sym___attribute__] = ACTIONS(1335), - [anon_sym___scanf] = ACTIONS(1335), - [anon_sym___printf] = ACTIONS(1335), - [anon_sym___read_mostly] = ACTIONS(1335), - [anon_sym___must_hold] = ACTIONS(1335), - [anon_sym___ro_after_init] = ACTIONS(1335), - [anon_sym___init] = ACTIONS(1335), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1337), - [anon_sym___declspec] = ACTIONS(1335), - [anon_sym___cdecl] = ACTIONS(1335), - [anon_sym___clrcall] = ACTIONS(1335), - [anon_sym___stdcall] = ACTIONS(1335), - [anon_sym___fastcall] = ACTIONS(1335), - [anon_sym___thiscall] = ACTIONS(1335), - [anon_sym___vectorcall] = ACTIONS(1335), - [anon_sym_LBRACE] = ACTIONS(1337), - [anon_sym_signed] = ACTIONS(1335), - [anon_sym_unsigned] = ACTIONS(1335), - [anon_sym_long] = ACTIONS(1335), - [anon_sym_short] = ACTIONS(1335), - [anon_sym_static] = ACTIONS(1335), - [anon_sym_auto] = ACTIONS(1335), - [anon_sym_register] = ACTIONS(1335), - [anon_sym_inline] = ACTIONS(1335), - [anon_sym___inline] = ACTIONS(1335), - [anon_sym___inline__] = ACTIONS(1335), - [anon_sym___forceinline] = ACTIONS(1335), - [anon_sym_thread_local] = ACTIONS(1335), - [anon_sym___thread] = ACTIONS(1335), - [anon_sym_const] = ACTIONS(1335), - [anon_sym_constexpr] = ACTIONS(1335), - [anon_sym_volatile] = ACTIONS(1335), - [anon_sym_restrict] = ACTIONS(1335), - [anon_sym___restrict__] = ACTIONS(1335), - [anon_sym__Atomic] = ACTIONS(1335), - [anon_sym__Noreturn] = ACTIONS(1335), - [anon_sym_noreturn] = ACTIONS(1335), - [anon_sym_alignas] = ACTIONS(1335), - [anon_sym__Alignas] = ACTIONS(1335), - [sym_primitive_type] = ACTIONS(1335), - [anon_sym_enum] = ACTIONS(1335), - [anon_sym_struct] = ACTIONS(1335), - [anon_sym_union] = ACTIONS(1335), - [anon_sym_if] = ACTIONS(1335), - [anon_sym_switch] = ACTIONS(1335), - [anon_sym_case] = ACTIONS(1335), - [anon_sym_default] = ACTIONS(1335), - [anon_sym_while] = ACTIONS(1335), - [anon_sym_do] = ACTIONS(1335), - [anon_sym_for] = ACTIONS(1335), - [anon_sym_return] = ACTIONS(1335), - [anon_sym_break] = ACTIONS(1335), - [anon_sym_continue] = ACTIONS(1335), - [anon_sym_goto] = ACTIONS(1335), - [anon_sym_DASH_DASH] = ACTIONS(1337), - [anon_sym_PLUS_PLUS] = ACTIONS(1337), - [anon_sym_sizeof] = ACTIONS(1335), - [anon_sym___alignof__] = ACTIONS(1335), - [anon_sym___alignof] = ACTIONS(1335), - [anon_sym__alignof] = ACTIONS(1335), - [anon_sym_alignof] = ACTIONS(1335), - [anon_sym__Alignof] = ACTIONS(1335), - [anon_sym_offsetof] = ACTIONS(1335), - [anon_sym__Generic] = ACTIONS(1335), - [anon_sym_asm] = ACTIONS(1335), - [anon_sym___asm__] = ACTIONS(1335), - [sym_number_literal] = ACTIONS(1337), - [anon_sym_L_SQUOTE] = ACTIONS(1337), - [anon_sym_u_SQUOTE] = ACTIONS(1337), - [anon_sym_U_SQUOTE] = ACTIONS(1337), - [anon_sym_u8_SQUOTE] = ACTIONS(1337), - [anon_sym_SQUOTE] = ACTIONS(1337), - [anon_sym_L_DQUOTE] = ACTIONS(1337), - [anon_sym_u_DQUOTE] = ACTIONS(1337), - [anon_sym_U_DQUOTE] = ACTIONS(1337), - [anon_sym_u8_DQUOTE] = ACTIONS(1337), - [anon_sym_DQUOTE] = ACTIONS(1337), - [sym_true] = ACTIONS(1335), - [sym_false] = ACTIONS(1335), - [anon_sym_NULL] = ACTIONS(1335), - [anon_sym_nullptr] = ACTIONS(1335), + [397] = { + [ts_builtin_sym_end] = ACTIONS(1307), + [sym_identifier] = ACTIONS(1305), + [aux_sym_preproc_include_token1] = ACTIONS(1305), + [aux_sym_preproc_def_token1] = ACTIONS(1305), + [aux_sym_preproc_if_token1] = ACTIONS(1305), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1305), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1305), + [sym_preproc_directive] = ACTIONS(1305), + [anon_sym_LPAREN2] = ACTIONS(1307), + [anon_sym_BANG] = ACTIONS(1307), + [anon_sym_TILDE] = ACTIONS(1307), + [anon_sym_DASH] = ACTIONS(1305), + [anon_sym_PLUS] = ACTIONS(1305), + [anon_sym_STAR] = ACTIONS(1307), + [anon_sym_AMP] = ACTIONS(1307), + [anon_sym___extension__] = ACTIONS(1305), + [anon_sym_typedef] = ACTIONS(1305), + [anon_sym_extern] = ACTIONS(1305), + [anon_sym___attribute__] = ACTIONS(1305), + [anon_sym___scanf] = ACTIONS(1305), + [anon_sym___printf] = ACTIONS(1305), + [anon_sym___read_mostly] = ACTIONS(1305), + [anon_sym___must_hold] = ACTIONS(1305), + [anon_sym___ro_after_init] = ACTIONS(1305), + [anon_sym___noreturn] = ACTIONS(1305), + [anon_sym___cold] = ACTIONS(1305), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1307), + [anon_sym___declspec] = ACTIONS(1305), + [anon_sym___init] = ACTIONS(1305), + [anon_sym___exit] = ACTIONS(1305), + [anon_sym___cdecl] = ACTIONS(1305), + [anon_sym___clrcall] = ACTIONS(1305), + [anon_sym___stdcall] = ACTIONS(1305), + [anon_sym___fastcall] = ACTIONS(1305), + [anon_sym___thiscall] = ACTIONS(1305), + [anon_sym___vectorcall] = ACTIONS(1305), + [anon_sym_LBRACE] = ACTIONS(1307), + [anon_sym_signed] = ACTIONS(1305), + [anon_sym_unsigned] = ACTIONS(1305), + [anon_sym_long] = ACTIONS(1305), + [anon_sym_short] = ACTIONS(1305), + [anon_sym_static] = ACTIONS(1305), + [anon_sym_auto] = ACTIONS(1305), + [anon_sym_register] = ACTIONS(1305), + [anon_sym_inline] = ACTIONS(1305), + [anon_sym___inline] = ACTIONS(1305), + [anon_sym___inline__] = ACTIONS(1305), + [anon_sym___forceinline] = ACTIONS(1305), + [anon_sym_thread_local] = ACTIONS(1305), + [anon_sym___thread] = ACTIONS(1305), + [anon_sym_const] = ACTIONS(1305), + [anon_sym_constexpr] = ACTIONS(1305), + [anon_sym_volatile] = ACTIONS(1305), + [anon_sym_restrict] = ACTIONS(1305), + [anon_sym___restrict__] = ACTIONS(1305), + [anon_sym__Atomic] = ACTIONS(1305), + [anon_sym__Noreturn] = ACTIONS(1305), + [anon_sym_noreturn] = ACTIONS(1305), + [anon_sym_alignas] = ACTIONS(1305), + [anon_sym__Alignas] = ACTIONS(1305), + [sym_primitive_type] = ACTIONS(1305), + [anon_sym_enum] = ACTIONS(1305), + [anon_sym_struct] = ACTIONS(1305), + [anon_sym_union] = ACTIONS(1305), + [anon_sym_if] = ACTIONS(1305), + [anon_sym_switch] = ACTIONS(1305), + [anon_sym_case] = ACTIONS(1305), + [anon_sym_default] = ACTIONS(1305), + [anon_sym_while] = ACTIONS(1305), + [anon_sym_do] = ACTIONS(1305), + [anon_sym_for] = ACTIONS(1305), + [anon_sym_return] = ACTIONS(1305), + [anon_sym_break] = ACTIONS(1305), + [anon_sym_continue] = ACTIONS(1305), + [anon_sym_goto] = ACTIONS(1305), + [anon_sym_DASH_DASH] = ACTIONS(1307), + [anon_sym_PLUS_PLUS] = ACTIONS(1307), + [anon_sym_sizeof] = ACTIONS(1305), + [anon_sym___alignof__] = ACTIONS(1305), + [anon_sym___alignof] = ACTIONS(1305), + [anon_sym__alignof] = ACTIONS(1305), + [anon_sym_alignof] = ACTIONS(1305), + [anon_sym__Alignof] = ACTIONS(1305), + [anon_sym_offsetof] = ACTIONS(1305), + [anon_sym__Generic] = ACTIONS(1305), + [anon_sym_asm] = ACTIONS(1305), + [anon_sym___asm__] = ACTIONS(1305), + [sym_number_literal] = ACTIONS(1307), + [anon_sym_L_SQUOTE] = ACTIONS(1307), + [anon_sym_u_SQUOTE] = ACTIONS(1307), + [anon_sym_U_SQUOTE] = ACTIONS(1307), + [anon_sym_u8_SQUOTE] = ACTIONS(1307), + [anon_sym_SQUOTE] = ACTIONS(1307), + [anon_sym_L_DQUOTE] = ACTIONS(1307), + [anon_sym_u_DQUOTE] = ACTIONS(1307), + [anon_sym_U_DQUOTE] = ACTIONS(1307), + [anon_sym_u8_DQUOTE] = ACTIONS(1307), + [anon_sym_DQUOTE] = ACTIONS(1307), + [sym_true] = ACTIONS(1305), + [sym_false] = ACTIONS(1305), + [anon_sym_NULL] = ACTIONS(1305), + [anon_sym_nullptr] = ACTIONS(1305), [sym_comment] = ACTIONS(3), }, - [338] = { - [ts_builtin_sym_end] = ACTIONS(1309), - [sym_identifier] = ACTIONS(1307), - [aux_sym_preproc_include_token1] = ACTIONS(1307), - [aux_sym_preproc_def_token1] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1307), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1307), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1307), - [sym_preproc_directive] = ACTIONS(1307), - [anon_sym_LPAREN2] = ACTIONS(1309), - [anon_sym_BANG] = ACTIONS(1309), - [anon_sym_TILDE] = ACTIONS(1309), - [anon_sym_DASH] = ACTIONS(1307), - [anon_sym_PLUS] = ACTIONS(1307), - [anon_sym_STAR] = ACTIONS(1309), - [anon_sym_AMP] = ACTIONS(1309), - [anon_sym___extension__] = ACTIONS(1307), - [anon_sym_typedef] = ACTIONS(1307), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym___attribute__] = ACTIONS(1307), - [anon_sym___scanf] = ACTIONS(1307), - [anon_sym___printf] = ACTIONS(1307), - [anon_sym___read_mostly] = ACTIONS(1307), - [anon_sym___must_hold] = ACTIONS(1307), - [anon_sym___ro_after_init] = ACTIONS(1307), - [anon_sym___init] = ACTIONS(1307), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1309), - [anon_sym___declspec] = ACTIONS(1307), - [anon_sym___cdecl] = ACTIONS(1307), - [anon_sym___clrcall] = ACTIONS(1307), - [anon_sym___stdcall] = ACTIONS(1307), - [anon_sym___fastcall] = ACTIONS(1307), - [anon_sym___thiscall] = ACTIONS(1307), - [anon_sym___vectorcall] = ACTIONS(1307), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_signed] = ACTIONS(1307), - [anon_sym_unsigned] = ACTIONS(1307), - [anon_sym_long] = ACTIONS(1307), - [anon_sym_short] = ACTIONS(1307), - [anon_sym_static] = ACTIONS(1307), - [anon_sym_auto] = ACTIONS(1307), - [anon_sym_register] = ACTIONS(1307), - [anon_sym_inline] = ACTIONS(1307), - [anon_sym___inline] = ACTIONS(1307), - [anon_sym___inline__] = ACTIONS(1307), - [anon_sym___forceinline] = ACTIONS(1307), - [anon_sym_thread_local] = ACTIONS(1307), - [anon_sym___thread] = ACTIONS(1307), - [anon_sym_const] = ACTIONS(1307), - [anon_sym_constexpr] = ACTIONS(1307), - [anon_sym_volatile] = ACTIONS(1307), - [anon_sym_restrict] = ACTIONS(1307), - [anon_sym___restrict__] = ACTIONS(1307), - [anon_sym__Atomic] = ACTIONS(1307), - [anon_sym__Noreturn] = ACTIONS(1307), - [anon_sym_noreturn] = ACTIONS(1307), - [anon_sym_alignas] = ACTIONS(1307), - [anon_sym__Alignas] = ACTIONS(1307), - [sym_primitive_type] = ACTIONS(1307), - [anon_sym_enum] = ACTIONS(1307), - [anon_sym_struct] = ACTIONS(1307), - [anon_sym_union] = ACTIONS(1307), - [anon_sym_if] = ACTIONS(1307), - [anon_sym_switch] = ACTIONS(1307), - [anon_sym_case] = ACTIONS(1307), - [anon_sym_default] = ACTIONS(1307), - [anon_sym_while] = ACTIONS(1307), - [anon_sym_do] = ACTIONS(1307), - [anon_sym_for] = ACTIONS(1307), - [anon_sym_return] = ACTIONS(1307), - [anon_sym_break] = ACTIONS(1307), - [anon_sym_continue] = ACTIONS(1307), - [anon_sym_goto] = ACTIONS(1307), - [anon_sym_DASH_DASH] = ACTIONS(1309), - [anon_sym_PLUS_PLUS] = ACTIONS(1309), - [anon_sym_sizeof] = ACTIONS(1307), - [anon_sym___alignof__] = ACTIONS(1307), - [anon_sym___alignof] = ACTIONS(1307), - [anon_sym__alignof] = ACTIONS(1307), - [anon_sym_alignof] = ACTIONS(1307), - [anon_sym__Alignof] = ACTIONS(1307), - [anon_sym_offsetof] = ACTIONS(1307), - [anon_sym__Generic] = ACTIONS(1307), - [anon_sym_asm] = ACTIONS(1307), - [anon_sym___asm__] = ACTIONS(1307), - [sym_number_literal] = ACTIONS(1309), - [anon_sym_L_SQUOTE] = ACTIONS(1309), - [anon_sym_u_SQUOTE] = ACTIONS(1309), - [anon_sym_U_SQUOTE] = ACTIONS(1309), - [anon_sym_u8_SQUOTE] = ACTIONS(1309), - [anon_sym_SQUOTE] = ACTIONS(1309), - [anon_sym_L_DQUOTE] = ACTIONS(1309), - [anon_sym_u_DQUOTE] = ACTIONS(1309), - [anon_sym_U_DQUOTE] = ACTIONS(1309), - [anon_sym_u8_DQUOTE] = ACTIONS(1309), - [anon_sym_DQUOTE] = ACTIONS(1309), - [sym_true] = ACTIONS(1307), - [sym_false] = ACTIONS(1307), - [anon_sym_NULL] = ACTIONS(1307), - [anon_sym_nullptr] = ACTIONS(1307), + [398] = { + [ts_builtin_sym_end] = ACTIONS(1367), + [sym_identifier] = ACTIONS(1365), + [aux_sym_preproc_include_token1] = ACTIONS(1365), + [aux_sym_preproc_def_token1] = ACTIONS(1365), + [aux_sym_preproc_if_token1] = ACTIONS(1365), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1365), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1365), + [sym_preproc_directive] = ACTIONS(1365), + [anon_sym_LPAREN2] = ACTIONS(1367), + [anon_sym_BANG] = ACTIONS(1367), + [anon_sym_TILDE] = ACTIONS(1367), + [anon_sym_DASH] = ACTIONS(1365), + [anon_sym_PLUS] = ACTIONS(1365), + [anon_sym_STAR] = ACTIONS(1367), + [anon_sym_AMP] = ACTIONS(1367), + [anon_sym___extension__] = ACTIONS(1365), + [anon_sym_typedef] = ACTIONS(1365), + [anon_sym_extern] = ACTIONS(1365), + [anon_sym___attribute__] = ACTIONS(1365), + [anon_sym___scanf] = ACTIONS(1365), + [anon_sym___printf] = ACTIONS(1365), + [anon_sym___read_mostly] = ACTIONS(1365), + [anon_sym___must_hold] = ACTIONS(1365), + [anon_sym___ro_after_init] = ACTIONS(1365), + [anon_sym___noreturn] = ACTIONS(1365), + [anon_sym___cold] = ACTIONS(1365), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1367), + [anon_sym___declspec] = ACTIONS(1365), + [anon_sym___init] = ACTIONS(1365), + [anon_sym___exit] = ACTIONS(1365), + [anon_sym___cdecl] = ACTIONS(1365), + [anon_sym___clrcall] = ACTIONS(1365), + [anon_sym___stdcall] = ACTIONS(1365), + [anon_sym___fastcall] = ACTIONS(1365), + [anon_sym___thiscall] = ACTIONS(1365), + [anon_sym___vectorcall] = ACTIONS(1365), + [anon_sym_LBRACE] = ACTIONS(1367), + [anon_sym_signed] = ACTIONS(1365), + [anon_sym_unsigned] = ACTIONS(1365), + [anon_sym_long] = ACTIONS(1365), + [anon_sym_short] = ACTIONS(1365), + [anon_sym_static] = ACTIONS(1365), + [anon_sym_auto] = ACTIONS(1365), + [anon_sym_register] = ACTIONS(1365), + [anon_sym_inline] = ACTIONS(1365), + [anon_sym___inline] = ACTIONS(1365), + [anon_sym___inline__] = ACTIONS(1365), + [anon_sym___forceinline] = ACTIONS(1365), + [anon_sym_thread_local] = ACTIONS(1365), + [anon_sym___thread] = ACTIONS(1365), + [anon_sym_const] = ACTIONS(1365), + [anon_sym_constexpr] = ACTIONS(1365), + [anon_sym_volatile] = ACTIONS(1365), + [anon_sym_restrict] = ACTIONS(1365), + [anon_sym___restrict__] = ACTIONS(1365), + [anon_sym__Atomic] = ACTIONS(1365), + [anon_sym__Noreturn] = ACTIONS(1365), + [anon_sym_noreturn] = ACTIONS(1365), + [anon_sym_alignas] = ACTIONS(1365), + [anon_sym__Alignas] = ACTIONS(1365), + [sym_primitive_type] = ACTIONS(1365), + [anon_sym_enum] = ACTIONS(1365), + [anon_sym_struct] = ACTIONS(1365), + [anon_sym_union] = ACTIONS(1365), + [anon_sym_if] = ACTIONS(1365), + [anon_sym_switch] = ACTIONS(1365), + [anon_sym_case] = ACTIONS(1365), + [anon_sym_default] = ACTIONS(1365), + [anon_sym_while] = ACTIONS(1365), + [anon_sym_do] = ACTIONS(1365), + [anon_sym_for] = ACTIONS(1365), + [anon_sym_return] = ACTIONS(1365), + [anon_sym_break] = ACTIONS(1365), + [anon_sym_continue] = ACTIONS(1365), + [anon_sym_goto] = ACTIONS(1365), + [anon_sym_DASH_DASH] = ACTIONS(1367), + [anon_sym_PLUS_PLUS] = ACTIONS(1367), + [anon_sym_sizeof] = ACTIONS(1365), + [anon_sym___alignof__] = ACTIONS(1365), + [anon_sym___alignof] = ACTIONS(1365), + [anon_sym__alignof] = ACTIONS(1365), + [anon_sym_alignof] = ACTIONS(1365), + [anon_sym__Alignof] = ACTIONS(1365), + [anon_sym_offsetof] = ACTIONS(1365), + [anon_sym__Generic] = ACTIONS(1365), + [anon_sym_asm] = ACTIONS(1365), + [anon_sym___asm__] = ACTIONS(1365), + [sym_number_literal] = ACTIONS(1367), + [anon_sym_L_SQUOTE] = ACTIONS(1367), + [anon_sym_u_SQUOTE] = ACTIONS(1367), + [anon_sym_U_SQUOTE] = ACTIONS(1367), + [anon_sym_u8_SQUOTE] = ACTIONS(1367), + [anon_sym_SQUOTE] = ACTIONS(1367), + [anon_sym_L_DQUOTE] = ACTIONS(1367), + [anon_sym_u_DQUOTE] = ACTIONS(1367), + [anon_sym_U_DQUOTE] = ACTIONS(1367), + [anon_sym_u8_DQUOTE] = ACTIONS(1367), + [anon_sym_DQUOTE] = ACTIONS(1367), + [sym_true] = ACTIONS(1365), + [sym_false] = ACTIONS(1365), + [anon_sym_NULL] = ACTIONS(1365), + [anon_sym_nullptr] = ACTIONS(1365), [sym_comment] = ACTIONS(3), }, - [339] = { - [ts_builtin_sym_end] = ACTIONS(1325), - [sym_identifier] = ACTIONS(1323), - [aux_sym_preproc_include_token1] = ACTIONS(1323), - [aux_sym_preproc_def_token1] = ACTIONS(1323), - [aux_sym_preproc_if_token1] = ACTIONS(1323), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1323), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1323), - [sym_preproc_directive] = ACTIONS(1323), - [anon_sym_LPAREN2] = ACTIONS(1325), - [anon_sym_BANG] = ACTIONS(1325), - [anon_sym_TILDE] = ACTIONS(1325), - [anon_sym_DASH] = ACTIONS(1323), - [anon_sym_PLUS] = ACTIONS(1323), - [anon_sym_STAR] = ACTIONS(1325), - [anon_sym_AMP] = ACTIONS(1325), - [anon_sym___extension__] = ACTIONS(1323), - [anon_sym_typedef] = ACTIONS(1323), - [anon_sym_extern] = ACTIONS(1323), - [anon_sym___attribute__] = ACTIONS(1323), - [anon_sym___scanf] = ACTIONS(1323), - [anon_sym___printf] = ACTIONS(1323), - [anon_sym___read_mostly] = ACTIONS(1323), - [anon_sym___must_hold] = ACTIONS(1323), - [anon_sym___ro_after_init] = ACTIONS(1323), - [anon_sym___init] = ACTIONS(1323), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), - [anon_sym___declspec] = ACTIONS(1323), - [anon_sym___cdecl] = ACTIONS(1323), - [anon_sym___clrcall] = ACTIONS(1323), - [anon_sym___stdcall] = ACTIONS(1323), - [anon_sym___fastcall] = ACTIONS(1323), - [anon_sym___thiscall] = ACTIONS(1323), - [anon_sym___vectorcall] = ACTIONS(1323), - [anon_sym_LBRACE] = ACTIONS(1325), - [anon_sym_signed] = ACTIONS(1323), - [anon_sym_unsigned] = ACTIONS(1323), - [anon_sym_long] = ACTIONS(1323), - [anon_sym_short] = ACTIONS(1323), - [anon_sym_static] = ACTIONS(1323), - [anon_sym_auto] = ACTIONS(1323), - [anon_sym_register] = ACTIONS(1323), - [anon_sym_inline] = ACTIONS(1323), - [anon_sym___inline] = ACTIONS(1323), - [anon_sym___inline__] = ACTIONS(1323), - [anon_sym___forceinline] = ACTIONS(1323), - [anon_sym_thread_local] = ACTIONS(1323), - [anon_sym___thread] = ACTIONS(1323), - [anon_sym_const] = ACTIONS(1323), - [anon_sym_constexpr] = ACTIONS(1323), - [anon_sym_volatile] = ACTIONS(1323), - [anon_sym_restrict] = ACTIONS(1323), - [anon_sym___restrict__] = ACTIONS(1323), - [anon_sym__Atomic] = ACTIONS(1323), - [anon_sym__Noreturn] = ACTIONS(1323), - [anon_sym_noreturn] = ACTIONS(1323), - [anon_sym_alignas] = ACTIONS(1323), - [anon_sym__Alignas] = ACTIONS(1323), - [sym_primitive_type] = ACTIONS(1323), - [anon_sym_enum] = ACTIONS(1323), - [anon_sym_struct] = ACTIONS(1323), - [anon_sym_union] = ACTIONS(1323), - [anon_sym_if] = ACTIONS(1323), - [anon_sym_switch] = ACTIONS(1323), - [anon_sym_case] = ACTIONS(1323), - [anon_sym_default] = ACTIONS(1323), - [anon_sym_while] = ACTIONS(1323), - [anon_sym_do] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1323), - [anon_sym_return] = ACTIONS(1323), - [anon_sym_break] = ACTIONS(1323), - [anon_sym_continue] = ACTIONS(1323), - [anon_sym_goto] = ACTIONS(1323), - [anon_sym_DASH_DASH] = ACTIONS(1325), - [anon_sym_PLUS_PLUS] = ACTIONS(1325), - [anon_sym_sizeof] = ACTIONS(1323), - [anon_sym___alignof__] = ACTIONS(1323), - [anon_sym___alignof] = ACTIONS(1323), - [anon_sym__alignof] = ACTIONS(1323), - [anon_sym_alignof] = ACTIONS(1323), - [anon_sym__Alignof] = ACTIONS(1323), - [anon_sym_offsetof] = ACTIONS(1323), - [anon_sym__Generic] = ACTIONS(1323), - [anon_sym_asm] = ACTIONS(1323), - [anon_sym___asm__] = ACTIONS(1323), - [sym_number_literal] = ACTIONS(1325), - [anon_sym_L_SQUOTE] = ACTIONS(1325), - [anon_sym_u_SQUOTE] = ACTIONS(1325), - [anon_sym_U_SQUOTE] = ACTIONS(1325), - [anon_sym_u8_SQUOTE] = ACTIONS(1325), - [anon_sym_SQUOTE] = ACTIONS(1325), - [anon_sym_L_DQUOTE] = ACTIONS(1325), - [anon_sym_u_DQUOTE] = ACTIONS(1325), - [anon_sym_U_DQUOTE] = ACTIONS(1325), - [anon_sym_u8_DQUOTE] = ACTIONS(1325), - [anon_sym_DQUOTE] = ACTIONS(1325), - [sym_true] = ACTIONS(1323), - [sym_false] = ACTIONS(1323), - [anon_sym_NULL] = ACTIONS(1323), - [anon_sym_nullptr] = ACTIONS(1323), + [399] = { + [ts_builtin_sym_end] = ACTIONS(1447), + [sym_identifier] = ACTIONS(1449), + [aux_sym_preproc_include_token1] = ACTIONS(1449), + [aux_sym_preproc_def_token1] = ACTIONS(1449), + [aux_sym_preproc_if_token1] = ACTIONS(1449), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1449), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1449), + [sym_preproc_directive] = ACTIONS(1449), + [anon_sym_LPAREN2] = ACTIONS(1447), + [anon_sym_BANG] = ACTIONS(1447), + [anon_sym_TILDE] = ACTIONS(1447), + [anon_sym_DASH] = ACTIONS(1449), + [anon_sym_PLUS] = ACTIONS(1449), + [anon_sym_STAR] = ACTIONS(1447), + [anon_sym_AMP] = ACTIONS(1447), + [anon_sym___extension__] = ACTIONS(1449), + [anon_sym_typedef] = ACTIONS(1449), + [anon_sym_extern] = ACTIONS(1449), + [anon_sym___attribute__] = ACTIONS(1449), + [anon_sym___scanf] = ACTIONS(1449), + [anon_sym___printf] = ACTIONS(1449), + [anon_sym___read_mostly] = ACTIONS(1449), + [anon_sym___must_hold] = ACTIONS(1449), + [anon_sym___ro_after_init] = ACTIONS(1449), + [anon_sym___noreturn] = ACTIONS(1449), + [anon_sym___cold] = ACTIONS(1449), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1447), + [anon_sym___declspec] = ACTIONS(1449), + [anon_sym___init] = ACTIONS(1449), + [anon_sym___exit] = ACTIONS(1449), + [anon_sym___cdecl] = ACTIONS(1449), + [anon_sym___clrcall] = ACTIONS(1449), + [anon_sym___stdcall] = ACTIONS(1449), + [anon_sym___fastcall] = ACTIONS(1449), + [anon_sym___thiscall] = ACTIONS(1449), + [anon_sym___vectorcall] = ACTIONS(1449), + [anon_sym_LBRACE] = ACTIONS(1447), + [anon_sym_signed] = ACTIONS(1449), + [anon_sym_unsigned] = ACTIONS(1449), + [anon_sym_long] = ACTIONS(1449), + [anon_sym_short] = ACTIONS(1449), + [anon_sym_static] = ACTIONS(1449), + [anon_sym_auto] = ACTIONS(1449), + [anon_sym_register] = ACTIONS(1449), + [anon_sym_inline] = ACTIONS(1449), + [anon_sym___inline] = ACTIONS(1449), + [anon_sym___inline__] = ACTIONS(1449), + [anon_sym___forceinline] = ACTIONS(1449), + [anon_sym_thread_local] = ACTIONS(1449), + [anon_sym___thread] = ACTIONS(1449), + [anon_sym_const] = ACTIONS(1449), + [anon_sym_constexpr] = ACTIONS(1449), + [anon_sym_volatile] = ACTIONS(1449), + [anon_sym_restrict] = ACTIONS(1449), + [anon_sym___restrict__] = ACTIONS(1449), + [anon_sym__Atomic] = ACTIONS(1449), + [anon_sym__Noreturn] = ACTIONS(1449), + [anon_sym_noreturn] = ACTIONS(1449), + [anon_sym_alignas] = ACTIONS(1449), + [anon_sym__Alignas] = ACTIONS(1449), + [sym_primitive_type] = ACTIONS(1449), + [anon_sym_enum] = ACTIONS(1449), + [anon_sym_struct] = ACTIONS(1449), + [anon_sym_union] = ACTIONS(1449), + [anon_sym_if] = ACTIONS(1449), + [anon_sym_switch] = ACTIONS(1449), + [anon_sym_case] = ACTIONS(1449), + [anon_sym_default] = ACTIONS(1449), + [anon_sym_while] = ACTIONS(1449), + [anon_sym_do] = ACTIONS(1449), + [anon_sym_for] = ACTIONS(1449), + [anon_sym_return] = ACTIONS(1449), + [anon_sym_break] = ACTIONS(1449), + [anon_sym_continue] = ACTIONS(1449), + [anon_sym_goto] = ACTIONS(1449), + [anon_sym_DASH_DASH] = ACTIONS(1447), + [anon_sym_PLUS_PLUS] = ACTIONS(1447), + [anon_sym_sizeof] = ACTIONS(1449), + [anon_sym___alignof__] = ACTIONS(1449), + [anon_sym___alignof] = ACTIONS(1449), + [anon_sym__alignof] = ACTIONS(1449), + [anon_sym_alignof] = ACTIONS(1449), + [anon_sym__Alignof] = ACTIONS(1449), + [anon_sym_offsetof] = ACTIONS(1449), + [anon_sym__Generic] = ACTIONS(1449), + [anon_sym_asm] = ACTIONS(1449), + [anon_sym___asm__] = ACTIONS(1449), + [sym_number_literal] = ACTIONS(1447), + [anon_sym_L_SQUOTE] = ACTIONS(1447), + [anon_sym_u_SQUOTE] = ACTIONS(1447), + [anon_sym_U_SQUOTE] = ACTIONS(1447), + [anon_sym_u8_SQUOTE] = ACTIONS(1447), + [anon_sym_SQUOTE] = ACTIONS(1447), + [anon_sym_L_DQUOTE] = ACTIONS(1447), + [anon_sym_u_DQUOTE] = ACTIONS(1447), + [anon_sym_U_DQUOTE] = ACTIONS(1447), + [anon_sym_u8_DQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym_true] = ACTIONS(1449), + [sym_false] = ACTIONS(1449), + [anon_sym_NULL] = ACTIONS(1449), + [anon_sym_nullptr] = ACTIONS(1449), [sym_comment] = ACTIONS(3), }, - [340] = { - [ts_builtin_sym_end] = ACTIONS(1333), - [sym_identifier] = ACTIONS(1331), - [aux_sym_preproc_include_token1] = ACTIONS(1331), - [aux_sym_preproc_def_token1] = ACTIONS(1331), - [aux_sym_preproc_if_token1] = ACTIONS(1331), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1331), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1331), - [sym_preproc_directive] = ACTIONS(1331), - [anon_sym_LPAREN2] = ACTIONS(1333), - [anon_sym_BANG] = ACTIONS(1333), - [anon_sym_TILDE] = ACTIONS(1333), - [anon_sym_DASH] = ACTIONS(1331), - [anon_sym_PLUS] = ACTIONS(1331), - [anon_sym_STAR] = ACTIONS(1333), - [anon_sym_AMP] = ACTIONS(1333), - [anon_sym___extension__] = ACTIONS(1331), - [anon_sym_typedef] = ACTIONS(1331), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym___attribute__] = ACTIONS(1331), - [anon_sym___scanf] = ACTIONS(1331), - [anon_sym___printf] = ACTIONS(1331), - [anon_sym___read_mostly] = ACTIONS(1331), - [anon_sym___must_hold] = ACTIONS(1331), - [anon_sym___ro_after_init] = ACTIONS(1331), - [anon_sym___init] = ACTIONS(1331), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1333), - [anon_sym___declspec] = ACTIONS(1331), - [anon_sym___cdecl] = ACTIONS(1331), - [anon_sym___clrcall] = ACTIONS(1331), - [anon_sym___stdcall] = ACTIONS(1331), - [anon_sym___fastcall] = ACTIONS(1331), - [anon_sym___thiscall] = ACTIONS(1331), - [anon_sym___vectorcall] = ACTIONS(1331), - [anon_sym_LBRACE] = ACTIONS(1333), - [anon_sym_signed] = ACTIONS(1331), - [anon_sym_unsigned] = ACTIONS(1331), - [anon_sym_long] = ACTIONS(1331), - [anon_sym_short] = ACTIONS(1331), - [anon_sym_static] = ACTIONS(1331), - [anon_sym_auto] = ACTIONS(1331), - [anon_sym_register] = ACTIONS(1331), - [anon_sym_inline] = ACTIONS(1331), - [anon_sym___inline] = ACTIONS(1331), - [anon_sym___inline__] = ACTIONS(1331), - [anon_sym___forceinline] = ACTIONS(1331), - [anon_sym_thread_local] = ACTIONS(1331), - [anon_sym___thread] = ACTIONS(1331), - [anon_sym_const] = ACTIONS(1331), - [anon_sym_constexpr] = ACTIONS(1331), - [anon_sym_volatile] = ACTIONS(1331), - [anon_sym_restrict] = ACTIONS(1331), - [anon_sym___restrict__] = ACTIONS(1331), - [anon_sym__Atomic] = ACTIONS(1331), - [anon_sym__Noreturn] = ACTIONS(1331), - [anon_sym_noreturn] = ACTIONS(1331), - [anon_sym_alignas] = ACTIONS(1331), - [anon_sym__Alignas] = ACTIONS(1331), - [sym_primitive_type] = ACTIONS(1331), - [anon_sym_enum] = ACTIONS(1331), - [anon_sym_struct] = ACTIONS(1331), - [anon_sym_union] = ACTIONS(1331), - [anon_sym_if] = ACTIONS(1331), - [anon_sym_switch] = ACTIONS(1331), - [anon_sym_case] = ACTIONS(1331), - [anon_sym_default] = ACTIONS(1331), - [anon_sym_while] = ACTIONS(1331), - [anon_sym_do] = ACTIONS(1331), - [anon_sym_for] = ACTIONS(1331), - [anon_sym_return] = ACTIONS(1331), - [anon_sym_break] = ACTIONS(1331), - [anon_sym_continue] = ACTIONS(1331), - [anon_sym_goto] = ACTIONS(1331), - [anon_sym_DASH_DASH] = ACTIONS(1333), - [anon_sym_PLUS_PLUS] = ACTIONS(1333), - [anon_sym_sizeof] = ACTIONS(1331), - [anon_sym___alignof__] = ACTIONS(1331), - [anon_sym___alignof] = ACTIONS(1331), - [anon_sym__alignof] = ACTIONS(1331), - [anon_sym_alignof] = ACTIONS(1331), - [anon_sym__Alignof] = ACTIONS(1331), - [anon_sym_offsetof] = ACTIONS(1331), - [anon_sym__Generic] = ACTIONS(1331), - [anon_sym_asm] = ACTIONS(1331), - [anon_sym___asm__] = ACTIONS(1331), - [sym_number_literal] = ACTIONS(1333), - [anon_sym_L_SQUOTE] = ACTIONS(1333), - [anon_sym_u_SQUOTE] = ACTIONS(1333), - [anon_sym_U_SQUOTE] = ACTIONS(1333), - [anon_sym_u8_SQUOTE] = ACTIONS(1333), - [anon_sym_SQUOTE] = ACTIONS(1333), - [anon_sym_L_DQUOTE] = ACTIONS(1333), - [anon_sym_u_DQUOTE] = ACTIONS(1333), - [anon_sym_U_DQUOTE] = ACTIONS(1333), - [anon_sym_u8_DQUOTE] = ACTIONS(1333), - [anon_sym_DQUOTE] = ACTIONS(1333), - [sym_true] = ACTIONS(1331), - [sym_false] = ACTIONS(1331), - [anon_sym_NULL] = ACTIONS(1331), - [anon_sym_nullptr] = ACTIONS(1331), + [400] = { + [ts_builtin_sym_end] = ACTIONS(1371), + [sym_identifier] = ACTIONS(1369), + [aux_sym_preproc_include_token1] = ACTIONS(1369), + [aux_sym_preproc_def_token1] = ACTIONS(1369), + [aux_sym_preproc_if_token1] = ACTIONS(1369), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1369), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1369), + [sym_preproc_directive] = ACTIONS(1369), + [anon_sym_LPAREN2] = ACTIONS(1371), + [anon_sym_BANG] = ACTIONS(1371), + [anon_sym_TILDE] = ACTIONS(1371), + [anon_sym_DASH] = ACTIONS(1369), + [anon_sym_PLUS] = ACTIONS(1369), + [anon_sym_STAR] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1371), + [anon_sym___extension__] = ACTIONS(1369), + [anon_sym_typedef] = ACTIONS(1369), + [anon_sym_extern] = ACTIONS(1369), + [anon_sym___attribute__] = ACTIONS(1369), + [anon_sym___scanf] = ACTIONS(1369), + [anon_sym___printf] = ACTIONS(1369), + [anon_sym___read_mostly] = ACTIONS(1369), + [anon_sym___must_hold] = ACTIONS(1369), + [anon_sym___ro_after_init] = ACTIONS(1369), + [anon_sym___noreturn] = ACTIONS(1369), + [anon_sym___cold] = ACTIONS(1369), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1371), + [anon_sym___declspec] = ACTIONS(1369), + [anon_sym___init] = ACTIONS(1369), + [anon_sym___exit] = ACTIONS(1369), + [anon_sym___cdecl] = ACTIONS(1369), + [anon_sym___clrcall] = ACTIONS(1369), + [anon_sym___stdcall] = ACTIONS(1369), + [anon_sym___fastcall] = ACTIONS(1369), + [anon_sym___thiscall] = ACTIONS(1369), + [anon_sym___vectorcall] = ACTIONS(1369), + [anon_sym_LBRACE] = ACTIONS(1371), + [anon_sym_signed] = ACTIONS(1369), + [anon_sym_unsigned] = ACTIONS(1369), + [anon_sym_long] = ACTIONS(1369), + [anon_sym_short] = ACTIONS(1369), + [anon_sym_static] = ACTIONS(1369), + [anon_sym_auto] = ACTIONS(1369), + [anon_sym_register] = ACTIONS(1369), + [anon_sym_inline] = ACTIONS(1369), + [anon_sym___inline] = ACTIONS(1369), + [anon_sym___inline__] = ACTIONS(1369), + [anon_sym___forceinline] = ACTIONS(1369), + [anon_sym_thread_local] = ACTIONS(1369), + [anon_sym___thread] = ACTIONS(1369), + [anon_sym_const] = ACTIONS(1369), + [anon_sym_constexpr] = ACTIONS(1369), + [anon_sym_volatile] = ACTIONS(1369), + [anon_sym_restrict] = ACTIONS(1369), + [anon_sym___restrict__] = ACTIONS(1369), + [anon_sym__Atomic] = ACTIONS(1369), + [anon_sym__Noreturn] = ACTIONS(1369), + [anon_sym_noreturn] = ACTIONS(1369), + [anon_sym_alignas] = ACTIONS(1369), + [anon_sym__Alignas] = ACTIONS(1369), + [sym_primitive_type] = ACTIONS(1369), + [anon_sym_enum] = ACTIONS(1369), + [anon_sym_struct] = ACTIONS(1369), + [anon_sym_union] = ACTIONS(1369), + [anon_sym_if] = ACTIONS(1369), + [anon_sym_switch] = ACTIONS(1369), + [anon_sym_case] = ACTIONS(1369), + [anon_sym_default] = ACTIONS(1369), + [anon_sym_while] = ACTIONS(1369), + [anon_sym_do] = ACTIONS(1369), + [anon_sym_for] = ACTIONS(1369), + [anon_sym_return] = ACTIONS(1369), + [anon_sym_break] = ACTIONS(1369), + [anon_sym_continue] = ACTIONS(1369), + [anon_sym_goto] = ACTIONS(1369), + [anon_sym_DASH_DASH] = ACTIONS(1371), + [anon_sym_PLUS_PLUS] = ACTIONS(1371), + [anon_sym_sizeof] = ACTIONS(1369), + [anon_sym___alignof__] = ACTIONS(1369), + [anon_sym___alignof] = ACTIONS(1369), + [anon_sym__alignof] = ACTIONS(1369), + [anon_sym_alignof] = ACTIONS(1369), + [anon_sym__Alignof] = ACTIONS(1369), + [anon_sym_offsetof] = ACTIONS(1369), + [anon_sym__Generic] = ACTIONS(1369), + [anon_sym_asm] = ACTIONS(1369), + [anon_sym___asm__] = ACTIONS(1369), + [sym_number_literal] = ACTIONS(1371), + [anon_sym_L_SQUOTE] = ACTIONS(1371), + [anon_sym_u_SQUOTE] = ACTIONS(1371), + [anon_sym_U_SQUOTE] = ACTIONS(1371), + [anon_sym_u8_SQUOTE] = ACTIONS(1371), + [anon_sym_SQUOTE] = ACTIONS(1371), + [anon_sym_L_DQUOTE] = ACTIONS(1371), + [anon_sym_u_DQUOTE] = ACTIONS(1371), + [anon_sym_U_DQUOTE] = ACTIONS(1371), + [anon_sym_u8_DQUOTE] = ACTIONS(1371), + [anon_sym_DQUOTE] = ACTIONS(1371), + [sym_true] = ACTIONS(1369), + [sym_false] = ACTIONS(1369), + [anon_sym_NULL] = ACTIONS(1369), + [anon_sym_nullptr] = ACTIONS(1369), [sym_comment] = ACTIONS(3), }, - [341] = { - [sym_expression] = STATE(683), - [sym__string] = STATE(663), - [sym_conditional_expression] = STATE(663), - [sym_assignment_expression] = STATE(663), - [sym_pointer_expression] = STATE(670), - [sym_unary_expression] = STATE(663), - [sym_binary_expression] = STATE(663), - [sym_update_expression] = STATE(663), - [sym_cast_expression] = STATE(663), - [sym_sizeof_expression] = STATE(663), - [sym_alignof_expression] = STATE(663), - [sym_offsetof_expression] = STATE(663), - [sym_generic_expression] = STATE(663), - [sym_subscript_expression] = STATE(670), - [sym_call_expression] = STATE(670), - [sym_gnu_asm_expression] = STATE(663), - [sym_field_expression] = STATE(670), - [sym_compound_literal_expression] = STATE(663), - [sym_parenthesized_expression] = STATE(670), - [sym_initializer_list] = STATE(661), - [sym_char_literal] = STATE(663), - [sym_concatenated_string] = STATE(663), - [sym_string_literal] = STATE(799), - [sym_null] = STATE(663), - [sym_identifier] = ACTIONS(1405), - [anon_sym_COMMA] = ACTIONS(1399), - [aux_sym_preproc_if_token2] = ACTIONS(1399), - [aux_sym_preproc_else_token1] = ACTIONS(1399), - [aux_sym_preproc_elif_token1] = ACTIONS(1405), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1399), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1399), - [anon_sym_LPAREN2] = ACTIONS(1399), - [anon_sym_BANG] = ACTIONS(1425), - [anon_sym_TILDE] = ACTIONS(1427), - [anon_sym_DASH] = ACTIONS(1405), - [anon_sym_PLUS] = ACTIONS(1405), - [anon_sym_STAR] = ACTIONS(1405), - [anon_sym_SLASH] = ACTIONS(1405), - [anon_sym_PERCENT] = ACTIONS(1405), - [anon_sym_PIPE_PIPE] = ACTIONS(1399), - [anon_sym_AMP_AMP] = ACTIONS(1399), - [anon_sym_PIPE] = ACTIONS(1405), - [anon_sym_CARET] = ACTIONS(1405), - [anon_sym_AMP] = ACTIONS(1405), - [anon_sym_EQ_EQ] = ACTIONS(1399), - [anon_sym_BANG_EQ] = ACTIONS(1399), - [anon_sym_GT] = ACTIONS(1405), - [anon_sym_GT_EQ] = ACTIONS(1399), - [anon_sym_LT_EQ] = ACTIONS(1399), - [anon_sym_LT] = ACTIONS(1405), - [anon_sym_LT_LT] = ACTIONS(1405), - [anon_sym_GT_GT] = ACTIONS(1405), - [anon_sym_LBRACE] = ACTIONS(1407), - [anon_sym_LBRACK] = ACTIONS(1399), - [anon_sym_EQ] = ACTIONS(1405), - [anon_sym_QMARK] = ACTIONS(1399), - [anon_sym_STAR_EQ] = ACTIONS(1399), - [anon_sym_SLASH_EQ] = ACTIONS(1399), - [anon_sym_PERCENT_EQ] = ACTIONS(1399), - [anon_sym_PLUS_EQ] = ACTIONS(1399), - [anon_sym_DASH_EQ] = ACTIONS(1399), - [anon_sym_LT_LT_EQ] = ACTIONS(1399), - [anon_sym_GT_GT_EQ] = ACTIONS(1399), - [anon_sym_AMP_EQ] = ACTIONS(1399), - [anon_sym_CARET_EQ] = ACTIONS(1399), - [anon_sym_PIPE_EQ] = ACTIONS(1399), - [anon_sym_DASH_DASH] = ACTIONS(1399), - [anon_sym_PLUS_PLUS] = ACTIONS(1399), - [anon_sym_sizeof] = ACTIONS(1429), - [anon_sym___alignof__] = ACTIONS(89), - [anon_sym___alignof] = ACTIONS(89), - [anon_sym__alignof] = ACTIONS(89), - [anon_sym_alignof] = ACTIONS(89), - [anon_sym__Alignof] = ACTIONS(89), - [anon_sym_offsetof] = ACTIONS(91), - [anon_sym__Generic] = ACTIONS(93), - [anon_sym_asm] = ACTIONS(95), - [anon_sym___asm__] = ACTIONS(95), - [anon_sym_DOT] = ACTIONS(1405), - [anon_sym_DASH_GT] = ACTIONS(1399), - [sym_number_literal] = ACTIONS(163), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(165), - [sym_false] = ACTIONS(165), - [anon_sym_NULL] = ACTIONS(105), - [anon_sym_nullptr] = ACTIONS(105), + [401] = { + [ts_builtin_sym_end] = ACTIONS(1451), + [sym_identifier] = ACTIONS(1454), + [aux_sym_preproc_include_token1] = ACTIONS(1454), + [aux_sym_preproc_def_token1] = ACTIONS(1454), + [aux_sym_preproc_if_token1] = ACTIONS(1454), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1454), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1454), + [sym_preproc_directive] = ACTIONS(1454), + [anon_sym_LPAREN2] = ACTIONS(1451), + [anon_sym_BANG] = ACTIONS(1451), + [anon_sym_TILDE] = ACTIONS(1451), + [anon_sym_DASH] = ACTIONS(1454), + [anon_sym_PLUS] = ACTIONS(1454), + [anon_sym_STAR] = ACTIONS(1451), + [anon_sym_AMP] = ACTIONS(1451), + [anon_sym___extension__] = ACTIONS(1454), + [anon_sym_typedef] = ACTIONS(1454), + [anon_sym_extern] = ACTIONS(1454), + [anon_sym___attribute__] = ACTIONS(1454), + [anon_sym___scanf] = ACTIONS(1454), + [anon_sym___printf] = ACTIONS(1454), + [anon_sym___read_mostly] = ACTIONS(1454), + [anon_sym___must_hold] = ACTIONS(1454), + [anon_sym___ro_after_init] = ACTIONS(1454), + [anon_sym___noreturn] = ACTIONS(1454), + [anon_sym___cold] = ACTIONS(1454), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1451), + [anon_sym___declspec] = ACTIONS(1454), + [anon_sym___init] = ACTIONS(1454), + [anon_sym___exit] = ACTIONS(1454), + [anon_sym___cdecl] = ACTIONS(1454), + [anon_sym___clrcall] = ACTIONS(1454), + [anon_sym___stdcall] = ACTIONS(1454), + [anon_sym___fastcall] = ACTIONS(1454), + [anon_sym___thiscall] = ACTIONS(1454), + [anon_sym___vectorcall] = ACTIONS(1454), + [anon_sym_LBRACE] = ACTIONS(1451), + [anon_sym_signed] = ACTIONS(1454), + [anon_sym_unsigned] = ACTIONS(1454), + [anon_sym_long] = ACTIONS(1454), + [anon_sym_short] = ACTIONS(1454), + [anon_sym_static] = ACTIONS(1454), + [anon_sym_auto] = ACTIONS(1454), + [anon_sym_register] = ACTIONS(1454), + [anon_sym_inline] = ACTIONS(1454), + [anon_sym___inline] = ACTIONS(1454), + [anon_sym___inline__] = ACTIONS(1454), + [anon_sym___forceinline] = ACTIONS(1454), + [anon_sym_thread_local] = ACTIONS(1454), + [anon_sym___thread] = ACTIONS(1454), + [anon_sym_const] = ACTIONS(1454), + [anon_sym_constexpr] = ACTIONS(1454), + [anon_sym_volatile] = ACTIONS(1454), + [anon_sym_restrict] = ACTIONS(1454), + [anon_sym___restrict__] = ACTIONS(1454), + [anon_sym__Atomic] = ACTIONS(1454), + [anon_sym__Noreturn] = ACTIONS(1454), + [anon_sym_noreturn] = ACTIONS(1454), + [anon_sym_alignas] = ACTIONS(1454), + [anon_sym__Alignas] = ACTIONS(1454), + [sym_primitive_type] = ACTIONS(1454), + [anon_sym_enum] = ACTIONS(1454), + [anon_sym_struct] = ACTIONS(1454), + [anon_sym_union] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1454), + [anon_sym_switch] = ACTIONS(1454), + [anon_sym_case] = ACTIONS(1454), + [anon_sym_default] = ACTIONS(1454), + [anon_sym_while] = ACTIONS(1454), + [anon_sym_do] = ACTIONS(1454), + [anon_sym_for] = ACTIONS(1454), + [anon_sym_return] = ACTIONS(1454), + [anon_sym_break] = ACTIONS(1454), + [anon_sym_continue] = ACTIONS(1454), + [anon_sym_goto] = ACTIONS(1454), + [anon_sym_DASH_DASH] = ACTIONS(1451), + [anon_sym_PLUS_PLUS] = ACTIONS(1451), + [anon_sym_sizeof] = ACTIONS(1454), + [anon_sym___alignof__] = ACTIONS(1454), + [anon_sym___alignof] = ACTIONS(1454), + [anon_sym__alignof] = ACTIONS(1454), + [anon_sym_alignof] = ACTIONS(1454), + [anon_sym__Alignof] = ACTIONS(1454), + [anon_sym_offsetof] = ACTIONS(1454), + [anon_sym__Generic] = ACTIONS(1454), + [anon_sym_asm] = ACTIONS(1454), + [anon_sym___asm__] = ACTIONS(1454), + [sym_number_literal] = ACTIONS(1451), + [anon_sym_L_SQUOTE] = ACTIONS(1451), + [anon_sym_u_SQUOTE] = ACTIONS(1451), + [anon_sym_U_SQUOTE] = ACTIONS(1451), + [anon_sym_u8_SQUOTE] = ACTIONS(1451), + [anon_sym_SQUOTE] = ACTIONS(1451), + [anon_sym_L_DQUOTE] = ACTIONS(1451), + [anon_sym_u_DQUOTE] = ACTIONS(1451), + [anon_sym_U_DQUOTE] = ACTIONS(1451), + [anon_sym_u8_DQUOTE] = ACTIONS(1451), + [anon_sym_DQUOTE] = ACTIONS(1451), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [anon_sym_NULL] = ACTIONS(1454), + [anon_sym_nullptr] = ACTIONS(1454), [sym_comment] = ACTIONS(3), }, - [342] = { - [sym_attribute_declaration] = STATE(342), - [sym_compound_statement] = STATE(232), - [sym_attributed_statement] = STATE(232), - [sym_statement] = STATE(190), - [sym_labeled_statement] = STATE(232), - [sym_expression_statement] = STATE(232), - [sym_if_statement] = STATE(232), - [sym_switch_statement] = STATE(232), - [sym_case_statement] = STATE(232), - [sym_while_statement] = STATE(232), - [sym_do_statement] = STATE(232), - [sym_for_statement] = STATE(232), - [sym_return_statement] = STATE(232), - [sym_break_statement] = STATE(232), - [sym_continue_statement] = STATE(232), - [sym_goto_statement] = STATE(232), - [sym_seh_try_statement] = STATE(232), - [sym_seh_leave_statement] = STATE(232), - [sym_expression] = STATE(1060), - [sym__string] = STATE(663), - [sym_comma_expression] = STATE(1853), - [sym_conditional_expression] = STATE(663), - [sym_assignment_expression] = STATE(663), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(663), - [sym_binary_expression] = STATE(663), - [sym_update_expression] = STATE(663), - [sym_cast_expression] = STATE(663), - [sym_sizeof_expression] = STATE(663), - [sym_alignof_expression] = STATE(663), - [sym_offsetof_expression] = STATE(663), - [sym_generic_expression] = STATE(663), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(663), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(663), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(663), - [sym_concatenated_string] = STATE(663), - [sym_string_literal] = STATE(659), - [sym_null] = STATE(663), - [aux_sym_attributed_declarator_repeat1] = STATE(342), - [sym_identifier] = ACTIONS(1431), - [anon_sym_LPAREN2] = ACTIONS(1434), - [anon_sym_BANG] = ACTIONS(1437), - [anon_sym_TILDE] = ACTIONS(1437), - [anon_sym_DASH] = ACTIONS(1440), - [anon_sym_PLUS] = ACTIONS(1440), - [anon_sym_STAR] = ACTIONS(1443), - [anon_sym_AMP] = ACTIONS(1443), - [anon_sym_SEMI] = ACTIONS(1446), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1449), - [anon_sym_LBRACE] = ACTIONS(1452), - [anon_sym_if] = ACTIONS(1455), - [anon_sym_switch] = ACTIONS(1458), - [anon_sym_case] = ACTIONS(1461), - [anon_sym_default] = ACTIONS(1464), - [anon_sym_while] = ACTIONS(1467), - [anon_sym_do] = ACTIONS(1470), - [anon_sym_for] = ACTIONS(1473), - [anon_sym_return] = ACTIONS(1476), - [anon_sym_break] = ACTIONS(1479), - [anon_sym_continue] = ACTIONS(1482), - [anon_sym_goto] = ACTIONS(1485), - [anon_sym___try] = ACTIONS(1488), - [anon_sym___leave] = ACTIONS(1491), - [anon_sym_DASH_DASH] = ACTIONS(1494), - [anon_sym_PLUS_PLUS] = ACTIONS(1494), - [anon_sym_sizeof] = ACTIONS(1497), - [anon_sym___alignof__] = ACTIONS(1500), - [anon_sym___alignof] = ACTIONS(1500), - [anon_sym__alignof] = ACTIONS(1500), - [anon_sym_alignof] = ACTIONS(1500), - [anon_sym__Alignof] = ACTIONS(1500), - [anon_sym_offsetof] = ACTIONS(1503), - [anon_sym__Generic] = ACTIONS(1506), - [anon_sym_asm] = ACTIONS(1509), - [anon_sym___asm__] = ACTIONS(1509), - [sym_number_literal] = ACTIONS(1512), - [anon_sym_L_SQUOTE] = ACTIONS(1515), - [anon_sym_u_SQUOTE] = ACTIONS(1515), - [anon_sym_U_SQUOTE] = ACTIONS(1515), - [anon_sym_u8_SQUOTE] = ACTIONS(1515), - [anon_sym_SQUOTE] = ACTIONS(1515), - [anon_sym_L_DQUOTE] = ACTIONS(1518), - [anon_sym_u_DQUOTE] = ACTIONS(1518), - [anon_sym_U_DQUOTE] = ACTIONS(1518), - [anon_sym_u8_DQUOTE] = ACTIONS(1518), - [anon_sym_DQUOTE] = ACTIONS(1518), - [sym_true] = ACTIONS(1521), - [sym_false] = ACTIONS(1521), - [anon_sym_NULL] = ACTIONS(1524), - [anon_sym_nullptr] = ACTIONS(1524), + [402] = { + [ts_builtin_sym_end] = ACTIONS(1331), + [sym_identifier] = ACTIONS(1329), + [aux_sym_preproc_include_token1] = ACTIONS(1329), + [aux_sym_preproc_def_token1] = ACTIONS(1329), + [aux_sym_preproc_if_token1] = ACTIONS(1329), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1329), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1329), + [sym_preproc_directive] = ACTIONS(1329), + [anon_sym_LPAREN2] = ACTIONS(1331), + [anon_sym_BANG] = ACTIONS(1331), + [anon_sym_TILDE] = ACTIONS(1331), + [anon_sym_DASH] = ACTIONS(1329), + [anon_sym_PLUS] = ACTIONS(1329), + [anon_sym_STAR] = ACTIONS(1331), + [anon_sym_AMP] = ACTIONS(1331), + [anon_sym___extension__] = ACTIONS(1329), + [anon_sym_typedef] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1329), + [anon_sym___attribute__] = ACTIONS(1329), + [anon_sym___scanf] = ACTIONS(1329), + [anon_sym___printf] = ACTIONS(1329), + [anon_sym___read_mostly] = ACTIONS(1329), + [anon_sym___must_hold] = ACTIONS(1329), + [anon_sym___ro_after_init] = ACTIONS(1329), + [anon_sym___noreturn] = ACTIONS(1329), + [anon_sym___cold] = ACTIONS(1329), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1331), + [anon_sym___declspec] = ACTIONS(1329), + [anon_sym___init] = ACTIONS(1329), + [anon_sym___exit] = ACTIONS(1329), + [anon_sym___cdecl] = ACTIONS(1329), + [anon_sym___clrcall] = ACTIONS(1329), + [anon_sym___stdcall] = ACTIONS(1329), + [anon_sym___fastcall] = ACTIONS(1329), + [anon_sym___thiscall] = ACTIONS(1329), + [anon_sym___vectorcall] = ACTIONS(1329), + [anon_sym_LBRACE] = ACTIONS(1331), + [anon_sym_signed] = ACTIONS(1329), + [anon_sym_unsigned] = ACTIONS(1329), + [anon_sym_long] = ACTIONS(1329), + [anon_sym_short] = ACTIONS(1329), + [anon_sym_static] = ACTIONS(1329), + [anon_sym_auto] = ACTIONS(1329), + [anon_sym_register] = ACTIONS(1329), + [anon_sym_inline] = ACTIONS(1329), + [anon_sym___inline] = ACTIONS(1329), + [anon_sym___inline__] = ACTIONS(1329), + [anon_sym___forceinline] = ACTIONS(1329), + [anon_sym_thread_local] = ACTIONS(1329), + [anon_sym___thread] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), + [anon_sym_constexpr] = ACTIONS(1329), + [anon_sym_volatile] = ACTIONS(1329), + [anon_sym_restrict] = ACTIONS(1329), + [anon_sym___restrict__] = ACTIONS(1329), + [anon_sym__Atomic] = ACTIONS(1329), + [anon_sym__Noreturn] = ACTIONS(1329), + [anon_sym_noreturn] = ACTIONS(1329), + [anon_sym_alignas] = ACTIONS(1329), + [anon_sym__Alignas] = ACTIONS(1329), + [sym_primitive_type] = ACTIONS(1329), + [anon_sym_enum] = ACTIONS(1329), + [anon_sym_struct] = ACTIONS(1329), + [anon_sym_union] = ACTIONS(1329), + [anon_sym_if] = ACTIONS(1329), + [anon_sym_switch] = ACTIONS(1329), + [anon_sym_case] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(1329), + [anon_sym_while] = ACTIONS(1329), + [anon_sym_do] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(1329), + [anon_sym_return] = ACTIONS(1329), + [anon_sym_break] = ACTIONS(1329), + [anon_sym_continue] = ACTIONS(1329), + [anon_sym_goto] = ACTIONS(1329), + [anon_sym_DASH_DASH] = ACTIONS(1331), + [anon_sym_PLUS_PLUS] = ACTIONS(1331), + [anon_sym_sizeof] = ACTIONS(1329), + [anon_sym___alignof__] = ACTIONS(1329), + [anon_sym___alignof] = ACTIONS(1329), + [anon_sym__alignof] = ACTIONS(1329), + [anon_sym_alignof] = ACTIONS(1329), + [anon_sym__Alignof] = ACTIONS(1329), + [anon_sym_offsetof] = ACTIONS(1329), + [anon_sym__Generic] = ACTIONS(1329), + [anon_sym_asm] = ACTIONS(1329), + [anon_sym___asm__] = ACTIONS(1329), + [sym_number_literal] = ACTIONS(1331), + [anon_sym_L_SQUOTE] = ACTIONS(1331), + [anon_sym_u_SQUOTE] = ACTIONS(1331), + [anon_sym_U_SQUOTE] = ACTIONS(1331), + [anon_sym_u8_SQUOTE] = ACTIONS(1331), + [anon_sym_SQUOTE] = ACTIONS(1331), + [anon_sym_L_DQUOTE] = ACTIONS(1331), + [anon_sym_u_DQUOTE] = ACTIONS(1331), + [anon_sym_U_DQUOTE] = ACTIONS(1331), + [anon_sym_u8_DQUOTE] = ACTIONS(1331), + [anon_sym_DQUOTE] = ACTIONS(1331), + [sym_true] = ACTIONS(1329), + [sym_false] = ACTIONS(1329), + [anon_sym_NULL] = ACTIONS(1329), + [anon_sym_nullptr] = ACTIONS(1329), [sym_comment] = ACTIONS(3), }, - [343] = { - [sym_attribute_declaration] = STATE(343), - [sym_compound_statement] = STATE(148), - [sym_attributed_statement] = STATE(148), - [sym_statement] = STATE(190), - [sym_labeled_statement] = STATE(148), - [sym_expression_statement] = STATE(148), - [sym_if_statement] = STATE(148), - [sym_switch_statement] = STATE(148), - [sym_case_statement] = STATE(148), - [sym_while_statement] = STATE(148), - [sym_do_statement] = STATE(148), - [sym_for_statement] = STATE(148), - [sym_return_statement] = STATE(148), - [sym_break_statement] = STATE(148), - [sym_continue_statement] = STATE(148), - [sym_goto_statement] = STATE(148), - [sym_seh_try_statement] = STATE(148), - [sym_seh_leave_statement] = STATE(148), - [sym_expression] = STATE(1033), - [sym__string] = STATE(663), - [sym_comma_expression] = STATE(1818), - [sym_conditional_expression] = STATE(663), - [sym_assignment_expression] = STATE(663), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(663), - [sym_binary_expression] = STATE(663), - [sym_update_expression] = STATE(663), - [sym_cast_expression] = STATE(663), - [sym_sizeof_expression] = STATE(663), - [sym_alignof_expression] = STATE(663), - [sym_offsetof_expression] = STATE(663), - [sym_generic_expression] = STATE(663), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(663), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(663), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(663), - [sym_concatenated_string] = STATE(663), - [sym_string_literal] = STATE(659), - [sym_null] = STATE(663), - [aux_sym_attributed_declarator_repeat1] = STATE(343), - [sym_identifier] = ACTIONS(1527), - [anon_sym_LPAREN2] = ACTIONS(1434), - [anon_sym_BANG] = ACTIONS(1437), - [anon_sym_TILDE] = ACTIONS(1437), - [anon_sym_DASH] = ACTIONS(1440), - [anon_sym_PLUS] = ACTIONS(1440), - [anon_sym_STAR] = ACTIONS(1443), - [anon_sym_AMP] = ACTIONS(1443), - [anon_sym_SEMI] = ACTIONS(1530), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1449), - [anon_sym_LBRACE] = ACTIONS(1452), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1458), - [anon_sym_case] = ACTIONS(1536), - [anon_sym_default] = ACTIONS(1539), - [anon_sym_while] = ACTIONS(1542), - [anon_sym_do] = ACTIONS(1470), - [anon_sym_for] = ACTIONS(1545), - [anon_sym_return] = ACTIONS(1476), - [anon_sym_break] = ACTIONS(1479), - [anon_sym_continue] = ACTIONS(1482), - [anon_sym_goto] = ACTIONS(1485), - [anon_sym___try] = ACTIONS(1548), - [anon_sym___leave] = ACTIONS(1551), - [anon_sym_DASH_DASH] = ACTIONS(1494), - [anon_sym_PLUS_PLUS] = ACTIONS(1494), - [anon_sym_sizeof] = ACTIONS(1497), - [anon_sym___alignof__] = ACTIONS(1500), - [anon_sym___alignof] = ACTIONS(1500), - [anon_sym__alignof] = ACTIONS(1500), - [anon_sym_alignof] = ACTIONS(1500), - [anon_sym__Alignof] = ACTIONS(1500), - [anon_sym_offsetof] = ACTIONS(1503), - [anon_sym__Generic] = ACTIONS(1506), - [anon_sym_asm] = ACTIONS(1509), - [anon_sym___asm__] = ACTIONS(1509), - [sym_number_literal] = ACTIONS(1512), - [anon_sym_L_SQUOTE] = ACTIONS(1515), - [anon_sym_u_SQUOTE] = ACTIONS(1515), - [anon_sym_U_SQUOTE] = ACTIONS(1515), - [anon_sym_u8_SQUOTE] = ACTIONS(1515), - [anon_sym_SQUOTE] = ACTIONS(1515), - [anon_sym_L_DQUOTE] = ACTIONS(1518), - [anon_sym_u_DQUOTE] = ACTIONS(1518), - [anon_sym_U_DQUOTE] = ACTIONS(1518), - [anon_sym_u8_DQUOTE] = ACTIONS(1518), - [anon_sym_DQUOTE] = ACTIONS(1518), - [sym_true] = ACTIONS(1521), - [sym_false] = ACTIONS(1521), - [anon_sym_NULL] = ACTIONS(1524), - [anon_sym_nullptr] = ACTIONS(1524), + [403] = { + [ts_builtin_sym_end] = ACTIONS(1375), + [sym_identifier] = ACTIONS(1373), + [aux_sym_preproc_include_token1] = ACTIONS(1373), + [aux_sym_preproc_def_token1] = ACTIONS(1373), + [aux_sym_preproc_if_token1] = ACTIONS(1373), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1373), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1373), + [sym_preproc_directive] = ACTIONS(1373), + [anon_sym_LPAREN2] = ACTIONS(1375), + [anon_sym_BANG] = ACTIONS(1375), + [anon_sym_TILDE] = ACTIONS(1375), + [anon_sym_DASH] = ACTIONS(1373), + [anon_sym_PLUS] = ACTIONS(1373), + [anon_sym_STAR] = ACTIONS(1375), + [anon_sym_AMP] = ACTIONS(1375), + [anon_sym___extension__] = ACTIONS(1373), + [anon_sym_typedef] = ACTIONS(1373), + [anon_sym_extern] = ACTIONS(1373), + [anon_sym___attribute__] = ACTIONS(1373), + [anon_sym___scanf] = ACTIONS(1373), + [anon_sym___printf] = ACTIONS(1373), + [anon_sym___read_mostly] = ACTIONS(1373), + [anon_sym___must_hold] = ACTIONS(1373), + [anon_sym___ro_after_init] = ACTIONS(1373), + [anon_sym___noreturn] = ACTIONS(1373), + [anon_sym___cold] = ACTIONS(1373), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1375), + [anon_sym___declspec] = ACTIONS(1373), + [anon_sym___init] = ACTIONS(1373), + [anon_sym___exit] = ACTIONS(1373), + [anon_sym___cdecl] = ACTIONS(1373), + [anon_sym___clrcall] = ACTIONS(1373), + [anon_sym___stdcall] = ACTIONS(1373), + [anon_sym___fastcall] = ACTIONS(1373), + [anon_sym___thiscall] = ACTIONS(1373), + [anon_sym___vectorcall] = ACTIONS(1373), + [anon_sym_LBRACE] = ACTIONS(1375), + [anon_sym_signed] = ACTIONS(1373), + [anon_sym_unsigned] = ACTIONS(1373), + [anon_sym_long] = ACTIONS(1373), + [anon_sym_short] = ACTIONS(1373), + [anon_sym_static] = ACTIONS(1373), + [anon_sym_auto] = ACTIONS(1373), + [anon_sym_register] = ACTIONS(1373), + [anon_sym_inline] = ACTIONS(1373), + [anon_sym___inline] = ACTIONS(1373), + [anon_sym___inline__] = ACTIONS(1373), + [anon_sym___forceinline] = ACTIONS(1373), + [anon_sym_thread_local] = ACTIONS(1373), + [anon_sym___thread] = ACTIONS(1373), + [anon_sym_const] = ACTIONS(1373), + [anon_sym_constexpr] = ACTIONS(1373), + [anon_sym_volatile] = ACTIONS(1373), + [anon_sym_restrict] = ACTIONS(1373), + [anon_sym___restrict__] = ACTIONS(1373), + [anon_sym__Atomic] = ACTIONS(1373), + [anon_sym__Noreturn] = ACTIONS(1373), + [anon_sym_noreturn] = ACTIONS(1373), + [anon_sym_alignas] = ACTIONS(1373), + [anon_sym__Alignas] = ACTIONS(1373), + [sym_primitive_type] = ACTIONS(1373), + [anon_sym_enum] = ACTIONS(1373), + [anon_sym_struct] = ACTIONS(1373), + [anon_sym_union] = ACTIONS(1373), + [anon_sym_if] = ACTIONS(1373), + [anon_sym_switch] = ACTIONS(1373), + [anon_sym_case] = ACTIONS(1373), + [anon_sym_default] = ACTIONS(1373), + [anon_sym_while] = ACTIONS(1373), + [anon_sym_do] = ACTIONS(1373), + [anon_sym_for] = ACTIONS(1373), + [anon_sym_return] = ACTIONS(1373), + [anon_sym_break] = ACTIONS(1373), + [anon_sym_continue] = ACTIONS(1373), + [anon_sym_goto] = ACTIONS(1373), + [anon_sym_DASH_DASH] = ACTIONS(1375), + [anon_sym_PLUS_PLUS] = ACTIONS(1375), + [anon_sym_sizeof] = ACTIONS(1373), + [anon_sym___alignof__] = ACTIONS(1373), + [anon_sym___alignof] = ACTIONS(1373), + [anon_sym__alignof] = ACTIONS(1373), + [anon_sym_alignof] = ACTIONS(1373), + [anon_sym__Alignof] = ACTIONS(1373), + [anon_sym_offsetof] = ACTIONS(1373), + [anon_sym__Generic] = ACTIONS(1373), + [anon_sym_asm] = ACTIONS(1373), + [anon_sym___asm__] = ACTIONS(1373), + [sym_number_literal] = ACTIONS(1375), + [anon_sym_L_SQUOTE] = ACTIONS(1375), + [anon_sym_u_SQUOTE] = ACTIONS(1375), + [anon_sym_U_SQUOTE] = ACTIONS(1375), + [anon_sym_u8_SQUOTE] = ACTIONS(1375), + [anon_sym_SQUOTE] = ACTIONS(1375), + [anon_sym_L_DQUOTE] = ACTIONS(1375), + [anon_sym_u_DQUOTE] = ACTIONS(1375), + [anon_sym_U_DQUOTE] = ACTIONS(1375), + [anon_sym_u8_DQUOTE] = ACTIONS(1375), + [anon_sym_DQUOTE] = ACTIONS(1375), + [sym_true] = ACTIONS(1373), + [sym_false] = ACTIONS(1373), + [anon_sym_NULL] = ACTIONS(1373), + [anon_sym_nullptr] = ACTIONS(1373), [sym_comment] = ACTIONS(3), }, - [344] = { - [sym_attribute_declaration] = STATE(347), - [sym_compound_statement] = STATE(148), - [sym_attributed_statement] = STATE(148), - [sym_statement] = STATE(2047), - [sym_labeled_statement] = STATE(148), - [sym_expression_statement] = STATE(148), - [sym_if_statement] = STATE(148), - [sym_switch_statement] = STATE(148), - [sym_case_statement] = STATE(148), - [sym_while_statement] = STATE(148), - [sym_do_statement] = STATE(148), - [sym_for_statement] = STATE(148), - [sym_return_statement] = STATE(148), - [sym_break_statement] = STATE(148), - [sym_continue_statement] = STATE(148), - [sym_goto_statement] = STATE(148), - [sym_seh_try_statement] = STATE(148), - [sym_seh_leave_statement] = STATE(148), - [sym_expression] = STATE(1033), - [sym__string] = STATE(663), - [sym_comma_expression] = STATE(1818), - [sym_conditional_expression] = STATE(663), - [sym_assignment_expression] = STATE(663), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(663), - [sym_binary_expression] = STATE(663), - [sym_update_expression] = STATE(663), - [sym_cast_expression] = STATE(663), - [sym_sizeof_expression] = STATE(663), - [sym_alignof_expression] = STATE(663), - [sym_offsetof_expression] = STATE(663), - [sym_generic_expression] = STATE(663), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(663), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(663), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(663), - [sym_concatenated_string] = STATE(663), - [sym_string_literal] = STATE(659), - [sym_null] = STATE(663), - [aux_sym_attributed_declarator_repeat1] = STATE(347), - [sym_identifier] = ACTIONS(1554), + [404] = { + [ts_builtin_sym_end] = ACTIONS(1303), + [sym_identifier] = ACTIONS(1301), + [aux_sym_preproc_include_token1] = ACTIONS(1301), + [aux_sym_preproc_def_token1] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1301), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1301), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1301), + [sym_preproc_directive] = ACTIONS(1301), + [anon_sym_LPAREN2] = ACTIONS(1303), + [anon_sym_BANG] = ACTIONS(1303), + [anon_sym_TILDE] = ACTIONS(1303), + [anon_sym_DASH] = ACTIONS(1301), + [anon_sym_PLUS] = ACTIONS(1301), + [anon_sym_STAR] = ACTIONS(1303), + [anon_sym_AMP] = ACTIONS(1303), + [anon_sym___extension__] = ACTIONS(1301), + [anon_sym_typedef] = ACTIONS(1301), + [anon_sym_extern] = ACTIONS(1301), + [anon_sym___attribute__] = ACTIONS(1301), + [anon_sym___scanf] = ACTIONS(1301), + [anon_sym___printf] = ACTIONS(1301), + [anon_sym___read_mostly] = ACTIONS(1301), + [anon_sym___must_hold] = ACTIONS(1301), + [anon_sym___ro_after_init] = ACTIONS(1301), + [anon_sym___noreturn] = ACTIONS(1301), + [anon_sym___cold] = ACTIONS(1301), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1303), + [anon_sym___declspec] = ACTIONS(1301), + [anon_sym___init] = ACTIONS(1301), + [anon_sym___exit] = ACTIONS(1301), + [anon_sym___cdecl] = ACTIONS(1301), + [anon_sym___clrcall] = ACTIONS(1301), + [anon_sym___stdcall] = ACTIONS(1301), + [anon_sym___fastcall] = ACTIONS(1301), + [anon_sym___thiscall] = ACTIONS(1301), + [anon_sym___vectorcall] = ACTIONS(1301), + [anon_sym_LBRACE] = ACTIONS(1303), + [anon_sym_signed] = ACTIONS(1301), + [anon_sym_unsigned] = ACTIONS(1301), + [anon_sym_long] = ACTIONS(1301), + [anon_sym_short] = ACTIONS(1301), + [anon_sym_static] = ACTIONS(1301), + [anon_sym_auto] = ACTIONS(1301), + [anon_sym_register] = ACTIONS(1301), + [anon_sym_inline] = ACTIONS(1301), + [anon_sym___inline] = ACTIONS(1301), + [anon_sym___inline__] = ACTIONS(1301), + [anon_sym___forceinline] = ACTIONS(1301), + [anon_sym_thread_local] = ACTIONS(1301), + [anon_sym___thread] = ACTIONS(1301), + [anon_sym_const] = ACTIONS(1301), + [anon_sym_constexpr] = ACTIONS(1301), + [anon_sym_volatile] = ACTIONS(1301), + [anon_sym_restrict] = ACTIONS(1301), + [anon_sym___restrict__] = ACTIONS(1301), + [anon_sym__Atomic] = ACTIONS(1301), + [anon_sym__Noreturn] = ACTIONS(1301), + [anon_sym_noreturn] = ACTIONS(1301), + [anon_sym_alignas] = ACTIONS(1301), + [anon_sym__Alignas] = ACTIONS(1301), + [sym_primitive_type] = ACTIONS(1301), + [anon_sym_enum] = ACTIONS(1301), + [anon_sym_struct] = ACTIONS(1301), + [anon_sym_union] = ACTIONS(1301), + [anon_sym_if] = ACTIONS(1301), + [anon_sym_switch] = ACTIONS(1301), + [anon_sym_case] = ACTIONS(1301), + [anon_sym_default] = ACTIONS(1301), + [anon_sym_while] = ACTIONS(1301), + [anon_sym_do] = ACTIONS(1301), + [anon_sym_for] = ACTIONS(1301), + [anon_sym_return] = ACTIONS(1301), + [anon_sym_break] = ACTIONS(1301), + [anon_sym_continue] = ACTIONS(1301), + [anon_sym_goto] = ACTIONS(1301), + [anon_sym_DASH_DASH] = ACTIONS(1303), + [anon_sym_PLUS_PLUS] = ACTIONS(1303), + [anon_sym_sizeof] = ACTIONS(1301), + [anon_sym___alignof__] = ACTIONS(1301), + [anon_sym___alignof] = ACTIONS(1301), + [anon_sym__alignof] = ACTIONS(1301), + [anon_sym_alignof] = ACTIONS(1301), + [anon_sym__Alignof] = ACTIONS(1301), + [anon_sym_offsetof] = ACTIONS(1301), + [anon_sym__Generic] = ACTIONS(1301), + [anon_sym_asm] = ACTIONS(1301), + [anon_sym___asm__] = ACTIONS(1301), + [sym_number_literal] = ACTIONS(1303), + [anon_sym_L_SQUOTE] = ACTIONS(1303), + [anon_sym_u_SQUOTE] = ACTIONS(1303), + [anon_sym_U_SQUOTE] = ACTIONS(1303), + [anon_sym_u8_SQUOTE] = ACTIONS(1303), + [anon_sym_SQUOTE] = ACTIONS(1303), + [anon_sym_L_DQUOTE] = ACTIONS(1303), + [anon_sym_u_DQUOTE] = ACTIONS(1303), + [anon_sym_U_DQUOTE] = ACTIONS(1303), + [anon_sym_u8_DQUOTE] = ACTIONS(1303), + [anon_sym_DQUOTE] = ACTIONS(1303), + [sym_true] = ACTIONS(1301), + [sym_false] = ACTIONS(1301), + [anon_sym_NULL] = ACTIONS(1301), + [anon_sym_nullptr] = ACTIONS(1301), + [sym_comment] = ACTIONS(3), + }, + [405] = { + [sym_expression] = STATE(771), + [sym__string] = STATE(758), + [sym_conditional_expression] = STATE(758), + [sym_assignment_expression] = STATE(758), + [sym_pointer_expression] = STATE(762), + [sym_unary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_cast_expression] = STATE(758), + [sym_sizeof_expression] = STATE(758), + [sym_alignof_expression] = STATE(758), + [sym_offsetof_expression] = STATE(758), + [sym_generic_expression] = STATE(758), + [sym_subscript_expression] = STATE(762), + [sym_call_expression] = STATE(762), + [sym_gnu_asm_expression] = STATE(758), + [sym_field_expression] = STATE(762), + [sym_compound_literal_expression] = STATE(758), + [sym_parenthesized_expression] = STATE(762), + [sym_initializer_list] = STATE(760), + [sym_char_literal] = STATE(758), + [sym_concatenated_string] = STATE(758), + [sym_string_literal] = STATE(940), + [sym_null] = STATE(758), + [sym_identifier] = ACTIONS(1437), + [anon_sym_COMMA] = ACTIONS(1431), + [aux_sym_preproc_if_token2] = ACTIONS(1431), + [aux_sym_preproc_else_token1] = ACTIONS(1431), + [aux_sym_preproc_elif_token1] = ACTIONS(1437), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1431), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1431), + [anon_sym_LPAREN2] = ACTIONS(1431), + [anon_sym_BANG] = ACTIONS(1457), + [anon_sym_TILDE] = ACTIONS(1459), + [anon_sym_DASH] = ACTIONS(1437), + [anon_sym_PLUS] = ACTIONS(1437), + [anon_sym_STAR] = ACTIONS(1437), + [anon_sym_SLASH] = ACTIONS(1437), + [anon_sym_PERCENT] = ACTIONS(1437), + [anon_sym_PIPE_PIPE] = ACTIONS(1431), + [anon_sym_AMP_AMP] = ACTIONS(1431), + [anon_sym_PIPE] = ACTIONS(1437), + [anon_sym_CARET] = ACTIONS(1437), + [anon_sym_AMP] = ACTIONS(1437), + [anon_sym_EQ_EQ] = ACTIONS(1431), + [anon_sym_BANG_EQ] = ACTIONS(1431), + [anon_sym_GT] = ACTIONS(1437), + [anon_sym_GT_EQ] = ACTIONS(1431), + [anon_sym_LT_EQ] = ACTIONS(1431), + [anon_sym_LT] = ACTIONS(1437), + [anon_sym_LT_LT] = ACTIONS(1437), + [anon_sym_GT_GT] = ACTIONS(1437), + [anon_sym_LBRACE] = ACTIONS(1439), + [anon_sym_LBRACK] = ACTIONS(1431), + [anon_sym_EQ] = ACTIONS(1437), + [anon_sym_QMARK] = ACTIONS(1431), + [anon_sym_STAR_EQ] = ACTIONS(1431), + [anon_sym_SLASH_EQ] = ACTIONS(1431), + [anon_sym_PERCENT_EQ] = ACTIONS(1431), + [anon_sym_PLUS_EQ] = ACTIONS(1431), + [anon_sym_DASH_EQ] = ACTIONS(1431), + [anon_sym_LT_LT_EQ] = ACTIONS(1431), + [anon_sym_GT_GT_EQ] = ACTIONS(1431), + [anon_sym_AMP_EQ] = ACTIONS(1431), + [anon_sym_CARET_EQ] = ACTIONS(1431), + [anon_sym_PIPE_EQ] = ACTIONS(1431), + [anon_sym_DASH_DASH] = ACTIONS(1431), + [anon_sym_PLUS_PLUS] = ACTIONS(1431), + [anon_sym_sizeof] = ACTIONS(1461), + [anon_sym___alignof__] = ACTIONS(91), + [anon_sym___alignof] = ACTIONS(91), + [anon_sym__alignof] = ACTIONS(91), + [anon_sym_alignof] = ACTIONS(91), + [anon_sym__Alignof] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(93), + [anon_sym__Generic] = ACTIONS(95), + [anon_sym_asm] = ACTIONS(97), + [anon_sym___asm__] = ACTIONS(97), + [anon_sym_DOT] = ACTIONS(1437), + [anon_sym_DASH_GT] = ACTIONS(1431), + [sym_number_literal] = ACTIONS(165), + [anon_sym_L_SQUOTE] = ACTIONS(101), + [anon_sym_u_SQUOTE] = ACTIONS(101), + [anon_sym_U_SQUOTE] = ACTIONS(101), + [anon_sym_u8_SQUOTE] = ACTIONS(101), + [anon_sym_SQUOTE] = ACTIONS(101), + [anon_sym_L_DQUOTE] = ACTIONS(103), + [anon_sym_u_DQUOTE] = ACTIONS(103), + [anon_sym_U_DQUOTE] = ACTIONS(103), + [anon_sym_u8_DQUOTE] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_true] = ACTIONS(167), + [sym_false] = ACTIONS(167), + [anon_sym_NULL] = ACTIONS(107), + [anon_sym_nullptr] = ACTIONS(107), + [sym_comment] = ACTIONS(3), + }, + [406] = { + [sym_attribute_declaration] = STATE(406), + [sym_compound_statement] = STATE(290), + [sym_attributed_statement] = STATE(290), + [sym_statement] = STATE(197), + [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_seh_try_statement] = STATE(290), + [sym_seh_leave_statement] = STATE(290), + [sym_expression] = STATE(1167), + [sym__string] = STATE(758), + [sym_comma_expression] = STATE(2207), + [sym_conditional_expression] = STATE(758), + [sym_assignment_expression] = STATE(758), + [sym_pointer_expression] = STATE(944), + [sym_unary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_cast_expression] = STATE(758), + [sym_sizeof_expression] = STATE(758), + [sym_alignof_expression] = STATE(758), + [sym_offsetof_expression] = STATE(758), + [sym_generic_expression] = STATE(758), + [sym_subscript_expression] = STATE(944), + [sym_call_expression] = STATE(944), + [sym_gnu_asm_expression] = STATE(758), + [sym_field_expression] = STATE(944), + [sym_compound_literal_expression] = STATE(758), + [sym_parenthesized_expression] = STATE(944), + [sym_char_literal] = STATE(758), + [sym_concatenated_string] = STATE(758), + [sym_string_literal] = STATE(671), + [sym_null] = STATE(758), + [aux_sym_attributed_declarator_repeat1] = STATE(406), + [sym_identifier] = ACTIONS(1463), + [anon_sym_LPAREN2] = ACTIONS(1466), + [anon_sym_BANG] = ACTIONS(1469), + [anon_sym_TILDE] = ACTIONS(1469), + [anon_sym_DASH] = ACTIONS(1472), + [anon_sym_PLUS] = ACTIONS(1472), + [anon_sym_STAR] = ACTIONS(1475), + [anon_sym_AMP] = ACTIONS(1475), + [anon_sym_SEMI] = ACTIONS(1478), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1481), + [anon_sym_LBRACE] = ACTIONS(1484), + [anon_sym_if] = ACTIONS(1487), + [anon_sym_switch] = ACTIONS(1490), + [anon_sym_case] = ACTIONS(1493), + [anon_sym_default] = ACTIONS(1496), + [anon_sym_while] = ACTIONS(1499), + [anon_sym_do] = ACTIONS(1502), + [anon_sym_for] = ACTIONS(1505), + [anon_sym_return] = ACTIONS(1508), + [anon_sym_break] = ACTIONS(1511), + [anon_sym_continue] = ACTIONS(1514), + [anon_sym_goto] = ACTIONS(1517), + [anon_sym___try] = ACTIONS(1520), + [anon_sym___leave] = ACTIONS(1523), + [anon_sym_DASH_DASH] = ACTIONS(1526), + [anon_sym_PLUS_PLUS] = ACTIONS(1526), + [anon_sym_sizeof] = ACTIONS(1529), + [anon_sym___alignof__] = ACTIONS(1532), + [anon_sym___alignof] = ACTIONS(1532), + [anon_sym__alignof] = ACTIONS(1532), + [anon_sym_alignof] = ACTIONS(1532), + [anon_sym__Alignof] = ACTIONS(1532), + [anon_sym_offsetof] = ACTIONS(1535), + [anon_sym__Generic] = ACTIONS(1538), + [anon_sym_asm] = ACTIONS(1541), + [anon_sym___asm__] = ACTIONS(1541), + [sym_number_literal] = ACTIONS(1544), + [anon_sym_L_SQUOTE] = ACTIONS(1547), + [anon_sym_u_SQUOTE] = ACTIONS(1547), + [anon_sym_U_SQUOTE] = ACTIONS(1547), + [anon_sym_u8_SQUOTE] = ACTIONS(1547), + [anon_sym_SQUOTE] = ACTIONS(1547), + [anon_sym_L_DQUOTE] = ACTIONS(1550), + [anon_sym_u_DQUOTE] = ACTIONS(1550), + [anon_sym_U_DQUOTE] = ACTIONS(1550), + [anon_sym_u8_DQUOTE] = ACTIONS(1550), + [anon_sym_DQUOTE] = ACTIONS(1550), + [sym_true] = ACTIONS(1553), + [sym_false] = ACTIONS(1553), + [anon_sym_NULL] = ACTIONS(1556), + [anon_sym_nullptr] = ACTIONS(1556), + [sym_comment] = ACTIONS(3), + }, + [407] = { + [sym_attribute_declaration] = STATE(421), + [sym_compound_statement] = STATE(180), + [sym_attributed_statement] = STATE(180), + [sym_statement] = STATE(281), + [sym_labeled_statement] = STATE(180), + [sym_expression_statement] = STATE(180), + [sym_if_statement] = STATE(180), + [sym_switch_statement] = STATE(180), + [sym_case_statement] = STATE(180), + [sym_while_statement] = STATE(180), + [sym_do_statement] = STATE(180), + [sym_for_statement] = STATE(180), + [sym_return_statement] = STATE(180), + [sym_break_statement] = STATE(180), + [sym_continue_statement] = STATE(180), + [sym_goto_statement] = STATE(180), + [sym_seh_try_statement] = STATE(180), + [sym_seh_leave_statement] = STATE(180), + [sym_expression] = STATE(1179), + [sym__string] = STATE(758), + [sym_comma_expression] = STATE(2159), + [sym_conditional_expression] = STATE(758), + [sym_assignment_expression] = STATE(758), + [sym_pointer_expression] = STATE(944), + [sym_unary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_cast_expression] = STATE(758), + [sym_sizeof_expression] = STATE(758), + [sym_alignof_expression] = STATE(758), + [sym_offsetof_expression] = STATE(758), + [sym_generic_expression] = STATE(758), + [sym_subscript_expression] = STATE(944), + [sym_call_expression] = STATE(944), + [sym_gnu_asm_expression] = STATE(758), + [sym_field_expression] = STATE(944), + [sym_compound_literal_expression] = STATE(758), + [sym_parenthesized_expression] = STATE(944), + [sym_char_literal] = STATE(758), + [sym_concatenated_string] = STATE(758), + [sym_string_literal] = STATE(671), + [sym_null] = STATE(758), + [aux_sym_attributed_declarator_repeat1] = STATE(421), + [sym_identifier] = ACTIONS(1559), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -53101,96 +61667,96 @@ 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(378), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1556), - [anon_sym_LBRACE] = ACTIONS(45), - [anon_sym_if] = ACTIONS(1110), - [anon_sym_switch] = ACTIONS(65), - [anon_sym_case] = ACTIONS(1558), - [anon_sym_default] = ACTIONS(1560), - [anon_sym_while] = ACTIONS(1112), - [anon_sym_do] = ACTIONS(73), - [anon_sym_for] = ACTIONS(1114), - [anon_sym_return] = ACTIONS(77), - [anon_sym_break] = ACTIONS(79), - [anon_sym_continue] = ACTIONS(81), - [anon_sym_goto] = ACTIONS(83), - [anon_sym___try] = ACTIONS(1116), - [anon_sym___leave] = ACTIONS(414), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [anon_sym___alignof__] = ACTIONS(89), - [anon_sym___alignof] = ACTIONS(89), - [anon_sym__alignof] = ACTIONS(89), - [anon_sym_alignof] = ACTIONS(89), - [anon_sym__Alignof] = ACTIONS(89), - [anon_sym_offsetof] = ACTIONS(91), - [anon_sym__Generic] = ACTIONS(93), - [anon_sym_asm] = ACTIONS(95), - [anon_sym___asm__] = ACTIONS(95), - [sym_number_literal] = ACTIONS(163), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(165), - [sym_false] = ACTIONS(165), - [anon_sym_NULL] = ACTIONS(105), - [anon_sym_nullptr] = ACTIONS(105), + [anon_sym_SEMI] = ACTIONS(1006), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1561), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_if] = ACTIONS(65), + [anon_sym_switch] = ACTIONS(67), + [anon_sym_case] = ACTIONS(69), + [anon_sym_default] = ACTIONS(71), + [anon_sym_while] = ACTIONS(73), + [anon_sym_do] = ACTIONS(75), + [anon_sym_for] = ACTIONS(77), + [anon_sym_return] = ACTIONS(79), + [anon_sym_break] = ACTIONS(81), + [anon_sym_continue] = ACTIONS(83), + [anon_sym_goto] = ACTIONS(85), + [anon_sym___try] = ACTIONS(1008), + [anon_sym___leave] = ACTIONS(1010), + [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(87), + [anon_sym_sizeof] = ACTIONS(89), + [anon_sym___alignof__] = ACTIONS(91), + [anon_sym___alignof] = ACTIONS(91), + [anon_sym__alignof] = ACTIONS(91), + [anon_sym_alignof] = ACTIONS(91), + [anon_sym__Alignof] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(93), + [anon_sym__Generic] = ACTIONS(95), + [anon_sym_asm] = ACTIONS(97), + [anon_sym___asm__] = ACTIONS(97), + [sym_number_literal] = ACTIONS(165), + [anon_sym_L_SQUOTE] = ACTIONS(101), + [anon_sym_u_SQUOTE] = ACTIONS(101), + [anon_sym_U_SQUOTE] = ACTIONS(101), + [anon_sym_u8_SQUOTE] = ACTIONS(101), + [anon_sym_SQUOTE] = ACTIONS(101), + [anon_sym_L_DQUOTE] = ACTIONS(103), + [anon_sym_u_DQUOTE] = ACTIONS(103), + [anon_sym_U_DQUOTE] = ACTIONS(103), + [anon_sym_u8_DQUOTE] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_true] = ACTIONS(167), + [sym_false] = ACTIONS(167), + [anon_sym_NULL] = ACTIONS(107), + [anon_sym_nullptr] = ACTIONS(107), [sym_comment] = ACTIONS(3), }, - [345] = { - [sym_attribute_declaration] = STATE(373), - [sym_compound_statement] = STATE(174), - [sym_attributed_statement] = STATE(174), - [sym_statement] = STATE(208), - [sym_labeled_statement] = STATE(174), - [sym_expression_statement] = STATE(174), - [sym_if_statement] = STATE(174), - [sym_switch_statement] = STATE(174), - [sym_case_statement] = STATE(174), - [sym_while_statement] = STATE(174), - [sym_do_statement] = STATE(174), - [sym_for_statement] = STATE(174), - [sym_return_statement] = STATE(174), - [sym_break_statement] = STATE(174), - [sym_continue_statement] = STATE(174), - [sym_goto_statement] = STATE(174), - [sym_seh_try_statement] = STATE(174), - [sym_seh_leave_statement] = STATE(174), - [sym_expression] = STATE(1031), - [sym__string] = STATE(663), - [sym_comma_expression] = STATE(1792), - [sym_conditional_expression] = STATE(663), - [sym_assignment_expression] = STATE(663), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(663), - [sym_binary_expression] = STATE(663), - [sym_update_expression] = STATE(663), - [sym_cast_expression] = STATE(663), - [sym_sizeof_expression] = STATE(663), - [sym_alignof_expression] = STATE(663), - [sym_offsetof_expression] = STATE(663), - [sym_generic_expression] = STATE(663), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(663), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(663), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(663), - [sym_concatenated_string] = STATE(663), - [sym_string_literal] = STATE(659), - [sym_null] = STATE(663), - [aux_sym_attributed_declarator_repeat1] = STATE(373), - [sym_identifier] = ACTIONS(1562), + [408] = { + [sym_attribute_declaration] = STATE(428), + [sym_compound_statement] = STATE(290), + [sym_attributed_statement] = STATE(290), + [sym_statement] = STATE(267), + [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_seh_try_statement] = STATE(290), + [sym_seh_leave_statement] = STATE(290), + [sym_expression] = STATE(1167), + [sym__string] = STATE(758), + [sym_comma_expression] = STATE(2207), + [sym_conditional_expression] = STATE(758), + [sym_assignment_expression] = STATE(758), + [sym_pointer_expression] = STATE(944), + [sym_unary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_cast_expression] = STATE(758), + [sym_sizeof_expression] = STATE(758), + [sym_alignof_expression] = STATE(758), + [sym_offsetof_expression] = STATE(758), + [sym_generic_expression] = STATE(758), + [sym_subscript_expression] = STATE(944), + [sym_call_expression] = STATE(944), + [sym_gnu_asm_expression] = STATE(758), + [sym_field_expression] = STATE(944), + [sym_compound_literal_expression] = STATE(758), + [sym_parenthesized_expression] = STATE(944), + [sym_char_literal] = STATE(758), + [sym_concatenated_string] = STATE(758), + [sym_string_literal] = STATE(671), + [sym_null] = STATE(758), + [aux_sym_attributed_declarator_repeat1] = STATE(428), + [sym_identifier] = ACTIONS(1563), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -53198,193 +61764,96 @@ 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(516), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1556), - [anon_sym_LBRACE] = ACTIONS(524), - [anon_sym_if] = ACTIONS(526), - [anon_sym_switch] = ACTIONS(528), - [anon_sym_case] = ACTIONS(530), - [anon_sym_default] = ACTIONS(532), - [anon_sym_while] = ACTIONS(534), - [anon_sym_do] = ACTIONS(536), - [anon_sym_for] = ACTIONS(538), - [anon_sym_return] = ACTIONS(540), - [anon_sym_break] = ACTIONS(542), - [anon_sym_continue] = ACTIONS(544), - [anon_sym_goto] = ACTIONS(546), - [anon_sym___try] = ACTIONS(548), - [anon_sym___leave] = ACTIONS(550), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [anon_sym___alignof__] = ACTIONS(89), - [anon_sym___alignof] = ACTIONS(89), - [anon_sym__alignof] = ACTIONS(89), - [anon_sym_alignof] = ACTIONS(89), - [anon_sym__Alignof] = ACTIONS(89), - [anon_sym_offsetof] = ACTIONS(91), - [anon_sym__Generic] = ACTIONS(93), - [anon_sym_asm] = ACTIONS(95), - [anon_sym___asm__] = ACTIONS(95), - [sym_number_literal] = ACTIONS(163), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(165), - [sym_false] = ACTIONS(165), - [anon_sym_NULL] = ACTIONS(105), - [anon_sym_nullptr] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - }, - [346] = { - [sym_attribute_declaration] = STATE(346), - [sym_compound_statement] = STATE(174), - [sym_attributed_statement] = STATE(174), - [sym_statement] = STATE(179), - [sym_labeled_statement] = STATE(174), - [sym_expression_statement] = STATE(174), - [sym_if_statement] = STATE(174), - [sym_switch_statement] = STATE(174), - [sym_case_statement] = STATE(174), - [sym_while_statement] = STATE(174), - [sym_do_statement] = STATE(174), - [sym_for_statement] = STATE(174), - [sym_return_statement] = STATE(174), - [sym_break_statement] = STATE(174), - [sym_continue_statement] = STATE(174), - [sym_goto_statement] = STATE(174), - [sym_seh_try_statement] = STATE(174), - [sym_seh_leave_statement] = STATE(174), - [sym_expression] = STATE(1031), - [sym__string] = STATE(663), - [sym_comma_expression] = STATE(1792), - [sym_conditional_expression] = STATE(663), - [sym_assignment_expression] = STATE(663), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(663), - [sym_binary_expression] = STATE(663), - [sym_update_expression] = STATE(663), - [sym_cast_expression] = STATE(663), - [sym_sizeof_expression] = STATE(663), - [sym_alignof_expression] = STATE(663), - [sym_offsetof_expression] = STATE(663), - [sym_generic_expression] = STATE(663), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(663), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(663), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(663), - [sym_concatenated_string] = STATE(663), - [sym_string_literal] = STATE(659), - [sym_null] = STATE(663), - [aux_sym_attributed_declarator_repeat1] = STATE(346), - [sym_identifier] = ACTIONS(1564), - [anon_sym_LPAREN2] = ACTIONS(1434), - [anon_sym_BANG] = ACTIONS(1437), - [anon_sym_TILDE] = ACTIONS(1437), - [anon_sym_DASH] = ACTIONS(1440), - [anon_sym_PLUS] = ACTIONS(1440), - [anon_sym_STAR] = ACTIONS(1443), - [anon_sym_AMP] = ACTIONS(1443), - [anon_sym_SEMI] = ACTIONS(1567), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1449), - [anon_sym_LBRACE] = ACTIONS(1570), - [anon_sym_if] = ACTIONS(1573), - [anon_sym_switch] = ACTIONS(1576), - [anon_sym_case] = ACTIONS(1579), - [anon_sym_default] = ACTIONS(1582), - [anon_sym_while] = ACTIONS(1585), - [anon_sym_do] = ACTIONS(1588), - [anon_sym_for] = ACTIONS(1591), - [anon_sym_return] = ACTIONS(1594), - [anon_sym_break] = ACTIONS(1597), - [anon_sym_continue] = ACTIONS(1600), - [anon_sym_goto] = ACTIONS(1603), - [anon_sym___try] = ACTIONS(1606), - [anon_sym___leave] = ACTIONS(1609), - [anon_sym_DASH_DASH] = ACTIONS(1494), - [anon_sym_PLUS_PLUS] = ACTIONS(1494), - [anon_sym_sizeof] = ACTIONS(1497), - [anon_sym___alignof__] = ACTIONS(1500), - [anon_sym___alignof] = ACTIONS(1500), - [anon_sym__alignof] = ACTIONS(1500), - [anon_sym_alignof] = ACTIONS(1500), - [anon_sym__Alignof] = ACTIONS(1500), - [anon_sym_offsetof] = ACTIONS(1503), - [anon_sym__Generic] = ACTIONS(1506), - [anon_sym_asm] = ACTIONS(1509), - [anon_sym___asm__] = ACTIONS(1509), - [sym_number_literal] = ACTIONS(1512), - [anon_sym_L_SQUOTE] = ACTIONS(1515), - [anon_sym_u_SQUOTE] = ACTIONS(1515), - [anon_sym_U_SQUOTE] = ACTIONS(1515), - [anon_sym_u8_SQUOTE] = ACTIONS(1515), - [anon_sym_SQUOTE] = ACTIONS(1515), - [anon_sym_L_DQUOTE] = ACTIONS(1518), - [anon_sym_u_DQUOTE] = ACTIONS(1518), - [anon_sym_U_DQUOTE] = ACTIONS(1518), - [anon_sym_u8_DQUOTE] = ACTIONS(1518), - [anon_sym_DQUOTE] = ACTIONS(1518), - [sym_true] = ACTIONS(1521), - [sym_false] = ACTIONS(1521), - [anon_sym_NULL] = ACTIONS(1524), - [anon_sym_nullptr] = ACTIONS(1524), + [anon_sym_SEMI] = ACTIONS(383), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1561), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_if] = ACTIONS(395), + [anon_sym_switch] = ACTIONS(397), + [anon_sym_case] = ACTIONS(399), + [anon_sym_default] = ACTIONS(401), + [anon_sym_while] = ACTIONS(403), + [anon_sym_do] = ACTIONS(405), + [anon_sym_for] = ACTIONS(407), + [anon_sym_return] = ACTIONS(409), + [anon_sym_break] = ACTIONS(411), + [anon_sym_continue] = ACTIONS(413), + [anon_sym_goto] = ACTIONS(415), + [anon_sym___try] = ACTIONS(417), + [anon_sym___leave] = ACTIONS(419), + [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(87), + [anon_sym_sizeof] = ACTIONS(89), + [anon_sym___alignof__] = ACTIONS(91), + [anon_sym___alignof] = ACTIONS(91), + [anon_sym__alignof] = ACTIONS(91), + [anon_sym_alignof] = ACTIONS(91), + [anon_sym__Alignof] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(93), + [anon_sym__Generic] = ACTIONS(95), + [anon_sym_asm] = ACTIONS(97), + [anon_sym___asm__] = ACTIONS(97), + [sym_number_literal] = ACTIONS(165), + [anon_sym_L_SQUOTE] = ACTIONS(101), + [anon_sym_u_SQUOTE] = ACTIONS(101), + [anon_sym_U_SQUOTE] = ACTIONS(101), + [anon_sym_u8_SQUOTE] = ACTIONS(101), + [anon_sym_SQUOTE] = ACTIONS(101), + [anon_sym_L_DQUOTE] = ACTIONS(103), + [anon_sym_u_DQUOTE] = ACTIONS(103), + [anon_sym_U_DQUOTE] = ACTIONS(103), + [anon_sym_u8_DQUOTE] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_true] = ACTIONS(167), + [sym_false] = ACTIONS(167), + [anon_sym_NULL] = ACTIONS(107), + [anon_sym_nullptr] = ACTIONS(107), [sym_comment] = ACTIONS(3), }, - [347] = { - [sym_attribute_declaration] = STATE(343), - [sym_compound_statement] = STATE(148), - [sym_attributed_statement] = STATE(148), - [sym_statement] = STATE(190), - [sym_labeled_statement] = STATE(148), - [sym_expression_statement] = STATE(148), - [sym_if_statement] = STATE(148), - [sym_switch_statement] = STATE(148), - [sym_case_statement] = STATE(148), - [sym_while_statement] = STATE(148), - [sym_do_statement] = STATE(148), - [sym_for_statement] = STATE(148), - [sym_return_statement] = STATE(148), - [sym_break_statement] = STATE(148), - [sym_continue_statement] = STATE(148), - [sym_goto_statement] = STATE(148), - [sym_seh_try_statement] = STATE(148), - [sym_seh_leave_statement] = STATE(148), - [sym_expression] = STATE(1033), - [sym__string] = STATE(663), - [sym_comma_expression] = STATE(1818), - [sym_conditional_expression] = STATE(663), - [sym_assignment_expression] = STATE(663), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(663), - [sym_binary_expression] = STATE(663), - [sym_update_expression] = STATE(663), - [sym_cast_expression] = STATE(663), - [sym_sizeof_expression] = STATE(663), - [sym_alignof_expression] = STATE(663), - [sym_offsetof_expression] = STATE(663), - [sym_generic_expression] = STATE(663), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(663), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(663), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(663), - [sym_concatenated_string] = STATE(663), - [sym_string_literal] = STATE(659), - [sym_null] = STATE(663), - [aux_sym_attributed_declarator_repeat1] = STATE(343), - [sym_identifier] = ACTIONS(1554), + [409] = { + [sym_attribute_declaration] = STATE(421), + [sym_compound_statement] = STATE(180), + [sym_attributed_statement] = STATE(180), + [sym_statement] = STATE(161), + [sym_labeled_statement] = STATE(180), + [sym_expression_statement] = STATE(180), + [sym_if_statement] = STATE(180), + [sym_switch_statement] = STATE(180), + [sym_case_statement] = STATE(180), + [sym_while_statement] = STATE(180), + [sym_do_statement] = STATE(180), + [sym_for_statement] = STATE(180), + [sym_return_statement] = STATE(180), + [sym_break_statement] = STATE(180), + [sym_continue_statement] = STATE(180), + [sym_goto_statement] = STATE(180), + [sym_seh_try_statement] = STATE(180), + [sym_seh_leave_statement] = STATE(180), + [sym_expression] = STATE(1179), + [sym__string] = STATE(758), + [sym_comma_expression] = STATE(2159), + [sym_conditional_expression] = STATE(758), + [sym_assignment_expression] = STATE(758), + [sym_pointer_expression] = STATE(944), + [sym_unary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_cast_expression] = STATE(758), + [sym_sizeof_expression] = STATE(758), + [sym_alignof_expression] = STATE(758), + [sym_offsetof_expression] = STATE(758), + [sym_generic_expression] = STATE(758), + [sym_subscript_expression] = STATE(944), + [sym_call_expression] = STATE(944), + [sym_gnu_asm_expression] = STATE(758), + [sym_field_expression] = STATE(944), + [sym_compound_literal_expression] = STATE(758), + [sym_parenthesized_expression] = STATE(944), + [sym_char_literal] = STATE(758), + [sym_concatenated_string] = STATE(758), + [sym_string_literal] = STATE(671), + [sym_null] = STATE(758), + [aux_sym_attributed_declarator_repeat1] = STATE(421), + [sym_identifier] = ACTIONS(1559), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -53392,96 +61861,96 @@ 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(378), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1556), - [anon_sym_LBRACE] = ACTIONS(45), - [anon_sym_if] = ACTIONS(1110), - [anon_sym_switch] = ACTIONS(65), - [anon_sym_case] = ACTIONS(1558), - [anon_sym_default] = ACTIONS(1560), - [anon_sym_while] = ACTIONS(1112), - [anon_sym_do] = ACTIONS(73), - [anon_sym_for] = ACTIONS(1114), - [anon_sym_return] = ACTIONS(77), - [anon_sym_break] = ACTIONS(79), - [anon_sym_continue] = ACTIONS(81), - [anon_sym_goto] = ACTIONS(83), - [anon_sym___try] = ACTIONS(1116), - [anon_sym___leave] = ACTIONS(414), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [anon_sym___alignof__] = ACTIONS(89), - [anon_sym___alignof] = ACTIONS(89), - [anon_sym__alignof] = ACTIONS(89), - [anon_sym_alignof] = ACTIONS(89), - [anon_sym__Alignof] = ACTIONS(89), - [anon_sym_offsetof] = ACTIONS(91), - [anon_sym__Generic] = ACTIONS(93), - [anon_sym_asm] = ACTIONS(95), - [anon_sym___asm__] = ACTIONS(95), - [sym_number_literal] = ACTIONS(163), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(165), - [sym_false] = ACTIONS(165), - [anon_sym_NULL] = ACTIONS(105), - [anon_sym_nullptr] = ACTIONS(105), + [anon_sym_SEMI] = ACTIONS(1006), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1561), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_if] = ACTIONS(65), + [anon_sym_switch] = ACTIONS(67), + [anon_sym_case] = ACTIONS(69), + [anon_sym_default] = ACTIONS(71), + [anon_sym_while] = ACTIONS(73), + [anon_sym_do] = ACTIONS(75), + [anon_sym_for] = ACTIONS(77), + [anon_sym_return] = ACTIONS(79), + [anon_sym_break] = ACTIONS(81), + [anon_sym_continue] = ACTIONS(83), + [anon_sym_goto] = ACTIONS(85), + [anon_sym___try] = ACTIONS(1008), + [anon_sym___leave] = ACTIONS(1010), + [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(87), + [anon_sym_sizeof] = ACTIONS(89), + [anon_sym___alignof__] = ACTIONS(91), + [anon_sym___alignof] = ACTIONS(91), + [anon_sym__alignof] = ACTIONS(91), + [anon_sym_alignof] = ACTIONS(91), + [anon_sym__Alignof] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(93), + [anon_sym__Generic] = ACTIONS(95), + [anon_sym_asm] = ACTIONS(97), + [anon_sym___asm__] = ACTIONS(97), + [sym_number_literal] = ACTIONS(165), + [anon_sym_L_SQUOTE] = ACTIONS(101), + [anon_sym_u_SQUOTE] = ACTIONS(101), + [anon_sym_U_SQUOTE] = ACTIONS(101), + [anon_sym_u8_SQUOTE] = ACTIONS(101), + [anon_sym_SQUOTE] = ACTIONS(101), + [anon_sym_L_DQUOTE] = ACTIONS(103), + [anon_sym_u_DQUOTE] = ACTIONS(103), + [anon_sym_U_DQUOTE] = ACTIONS(103), + [anon_sym_u8_DQUOTE] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_true] = ACTIONS(167), + [sym_false] = ACTIONS(167), + [anon_sym_NULL] = ACTIONS(107), + [anon_sym_nullptr] = ACTIONS(107), [sym_comment] = ACTIONS(3), }, - [348] = { - [sym_attribute_declaration] = STATE(342), - [sym_compound_statement] = STATE(232), - [sym_attributed_statement] = STATE(232), - [sym_statement] = STATE(190), - [sym_labeled_statement] = STATE(232), - [sym_expression_statement] = STATE(232), - [sym_if_statement] = STATE(232), - [sym_switch_statement] = STATE(232), - [sym_case_statement] = STATE(232), - [sym_while_statement] = STATE(232), - [sym_do_statement] = STATE(232), - [sym_for_statement] = STATE(232), - [sym_return_statement] = STATE(232), - [sym_break_statement] = STATE(232), - [sym_continue_statement] = STATE(232), - [sym_goto_statement] = STATE(232), - [sym_seh_try_statement] = STATE(232), - [sym_seh_leave_statement] = STATE(232), - [sym_expression] = STATE(1060), - [sym__string] = STATE(663), - [sym_comma_expression] = STATE(1853), - [sym_conditional_expression] = STATE(663), - [sym_assignment_expression] = STATE(663), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(663), - [sym_binary_expression] = STATE(663), - [sym_update_expression] = STATE(663), - [sym_cast_expression] = STATE(663), - [sym_sizeof_expression] = STATE(663), - [sym_alignof_expression] = STATE(663), - [sym_offsetof_expression] = STATE(663), - [sym_generic_expression] = STATE(663), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(663), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(663), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(663), - [sym_concatenated_string] = STATE(663), - [sym_string_literal] = STATE(659), - [sym_null] = STATE(663), - [aux_sym_attributed_declarator_repeat1] = STATE(342), - [sym_identifier] = ACTIONS(1612), + [410] = { + [sym_attribute_declaration] = STATE(421), + [sym_compound_statement] = STATE(180), + [sym_attributed_statement] = STATE(180), + [sym_statement] = STATE(263), + [sym_labeled_statement] = STATE(180), + [sym_expression_statement] = STATE(180), + [sym_if_statement] = STATE(180), + [sym_switch_statement] = STATE(180), + [sym_case_statement] = STATE(180), + [sym_while_statement] = STATE(180), + [sym_do_statement] = STATE(180), + [sym_for_statement] = STATE(180), + [sym_return_statement] = STATE(180), + [sym_break_statement] = STATE(180), + [sym_continue_statement] = STATE(180), + [sym_goto_statement] = STATE(180), + [sym_seh_try_statement] = STATE(180), + [sym_seh_leave_statement] = STATE(180), + [sym_expression] = STATE(1179), + [sym__string] = STATE(758), + [sym_comma_expression] = STATE(2159), + [sym_conditional_expression] = STATE(758), + [sym_assignment_expression] = STATE(758), + [sym_pointer_expression] = STATE(944), + [sym_unary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_cast_expression] = STATE(758), + [sym_sizeof_expression] = STATE(758), + [sym_alignof_expression] = STATE(758), + [sym_offsetof_expression] = STATE(758), + [sym_generic_expression] = STATE(758), + [sym_subscript_expression] = STATE(944), + [sym_call_expression] = STATE(944), + [sym_gnu_asm_expression] = STATE(758), + [sym_field_expression] = STATE(944), + [sym_compound_literal_expression] = STATE(758), + [sym_parenthesized_expression] = STATE(944), + [sym_char_literal] = STATE(758), + [sym_concatenated_string] = STATE(758), + [sym_string_literal] = STATE(671), + [sym_null] = STATE(758), + [aux_sym_attributed_declarator_repeat1] = STATE(421), + [sym_identifier] = ACTIONS(1559), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -53489,96 +61958,96 @@ 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(996), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1556), - [anon_sym_LBRACE] = ACTIONS(45), - [anon_sym_if] = ACTIONS(63), - [anon_sym_switch] = ACTIONS(65), - [anon_sym_case] = ACTIONS(67), - [anon_sym_default] = ACTIONS(69), - [anon_sym_while] = ACTIONS(71), - [anon_sym_do] = ACTIONS(73), - [anon_sym_for] = ACTIONS(75), - [anon_sym_return] = ACTIONS(77), - [anon_sym_break] = ACTIONS(79), - [anon_sym_continue] = ACTIONS(81), - [anon_sym_goto] = ACTIONS(83), - [anon_sym___try] = ACTIONS(998), - [anon_sym___leave] = ACTIONS(1000), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [anon_sym___alignof__] = ACTIONS(89), - [anon_sym___alignof] = ACTIONS(89), - [anon_sym__alignof] = ACTIONS(89), - [anon_sym_alignof] = ACTIONS(89), - [anon_sym__Alignof] = ACTIONS(89), - [anon_sym_offsetof] = ACTIONS(91), - [anon_sym__Generic] = ACTIONS(93), - [anon_sym_asm] = ACTIONS(95), - [anon_sym___asm__] = ACTIONS(95), - [sym_number_literal] = ACTIONS(163), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(165), - [sym_false] = ACTIONS(165), - [anon_sym_NULL] = ACTIONS(105), - [anon_sym_nullptr] = ACTIONS(105), + [anon_sym_SEMI] = ACTIONS(1006), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1561), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_if] = ACTIONS(65), + [anon_sym_switch] = ACTIONS(67), + [anon_sym_case] = ACTIONS(69), + [anon_sym_default] = ACTIONS(71), + [anon_sym_while] = ACTIONS(73), + [anon_sym_do] = ACTIONS(75), + [anon_sym_for] = ACTIONS(77), + [anon_sym_return] = ACTIONS(79), + [anon_sym_break] = ACTIONS(81), + [anon_sym_continue] = ACTIONS(83), + [anon_sym_goto] = ACTIONS(85), + [anon_sym___try] = ACTIONS(1008), + [anon_sym___leave] = ACTIONS(1010), + [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(87), + [anon_sym_sizeof] = ACTIONS(89), + [anon_sym___alignof__] = ACTIONS(91), + [anon_sym___alignof] = ACTIONS(91), + [anon_sym__alignof] = ACTIONS(91), + [anon_sym_alignof] = ACTIONS(91), + [anon_sym__Alignof] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(93), + [anon_sym__Generic] = ACTIONS(95), + [anon_sym_asm] = ACTIONS(97), + [anon_sym___asm__] = ACTIONS(97), + [sym_number_literal] = ACTIONS(165), + [anon_sym_L_SQUOTE] = ACTIONS(101), + [anon_sym_u_SQUOTE] = ACTIONS(101), + [anon_sym_U_SQUOTE] = ACTIONS(101), + [anon_sym_u8_SQUOTE] = ACTIONS(101), + [anon_sym_SQUOTE] = ACTIONS(101), + [anon_sym_L_DQUOTE] = ACTIONS(103), + [anon_sym_u_DQUOTE] = ACTIONS(103), + [anon_sym_U_DQUOTE] = ACTIONS(103), + [anon_sym_u8_DQUOTE] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_true] = ACTIONS(167), + [sym_false] = ACTIONS(167), + [anon_sym_NULL] = ACTIONS(107), + [anon_sym_nullptr] = ACTIONS(107), [sym_comment] = ACTIONS(3), }, - [349] = { - [sym_attribute_declaration] = STATE(347), - [sym_compound_statement] = STATE(148), - [sym_attributed_statement] = STATE(148), - [sym_statement] = STATE(2034), - [sym_labeled_statement] = STATE(148), - [sym_expression_statement] = STATE(148), - [sym_if_statement] = STATE(148), - [sym_switch_statement] = STATE(148), - [sym_case_statement] = STATE(148), - [sym_while_statement] = STATE(148), - [sym_do_statement] = STATE(148), - [sym_for_statement] = STATE(148), - [sym_return_statement] = STATE(148), - [sym_break_statement] = STATE(148), - [sym_continue_statement] = STATE(148), - [sym_goto_statement] = STATE(148), - [sym_seh_try_statement] = STATE(148), - [sym_seh_leave_statement] = STATE(148), - [sym_expression] = STATE(1033), - [sym__string] = STATE(663), - [sym_comma_expression] = STATE(1818), - [sym_conditional_expression] = STATE(663), - [sym_assignment_expression] = STATE(663), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(663), - [sym_binary_expression] = STATE(663), - [sym_update_expression] = STATE(663), - [sym_cast_expression] = STATE(663), - [sym_sizeof_expression] = STATE(663), - [sym_alignof_expression] = STATE(663), - [sym_offsetof_expression] = STATE(663), - [sym_generic_expression] = STATE(663), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(663), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(663), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(663), - [sym_concatenated_string] = STATE(663), - [sym_string_literal] = STATE(659), - [sym_null] = STATE(663), - [aux_sym_attributed_declarator_repeat1] = STATE(347), - [sym_identifier] = ACTIONS(1554), + [411] = { + [sym_attribute_declaration] = STATE(428), + [sym_compound_statement] = STATE(290), + [sym_attributed_statement] = STATE(290), + [sym_statement] = STATE(160), + [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_seh_try_statement] = STATE(290), + [sym_seh_leave_statement] = STATE(290), + [sym_expression] = STATE(1167), + [sym__string] = STATE(758), + [sym_comma_expression] = STATE(2207), + [sym_conditional_expression] = STATE(758), + [sym_assignment_expression] = STATE(758), + [sym_pointer_expression] = STATE(944), + [sym_unary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_cast_expression] = STATE(758), + [sym_sizeof_expression] = STATE(758), + [sym_alignof_expression] = STATE(758), + [sym_offsetof_expression] = STATE(758), + [sym_generic_expression] = STATE(758), + [sym_subscript_expression] = STATE(944), + [sym_call_expression] = STATE(944), + [sym_gnu_asm_expression] = STATE(758), + [sym_field_expression] = STATE(944), + [sym_compound_literal_expression] = STATE(758), + [sym_parenthesized_expression] = STATE(944), + [sym_char_literal] = STATE(758), + [sym_concatenated_string] = STATE(758), + [sym_string_literal] = STATE(671), + [sym_null] = STATE(758), + [aux_sym_attributed_declarator_repeat1] = STATE(428), + [sym_identifier] = ACTIONS(1563), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -53586,96 +62055,96 @@ 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(378), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1556), - [anon_sym_LBRACE] = ACTIONS(45), - [anon_sym_if] = ACTIONS(1110), - [anon_sym_switch] = ACTIONS(65), - [anon_sym_case] = ACTIONS(1558), - [anon_sym_default] = ACTIONS(1560), - [anon_sym_while] = ACTIONS(1112), - [anon_sym_do] = ACTIONS(73), - [anon_sym_for] = ACTIONS(1114), - [anon_sym_return] = ACTIONS(77), - [anon_sym_break] = ACTIONS(79), - [anon_sym_continue] = ACTIONS(81), - [anon_sym_goto] = ACTIONS(83), - [anon_sym___try] = ACTIONS(1116), - [anon_sym___leave] = ACTIONS(414), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [anon_sym___alignof__] = ACTIONS(89), - [anon_sym___alignof] = ACTIONS(89), - [anon_sym__alignof] = ACTIONS(89), - [anon_sym_alignof] = ACTIONS(89), - [anon_sym__Alignof] = ACTIONS(89), - [anon_sym_offsetof] = ACTIONS(91), - [anon_sym__Generic] = ACTIONS(93), - [anon_sym_asm] = ACTIONS(95), - [anon_sym___asm__] = ACTIONS(95), - [sym_number_literal] = ACTIONS(163), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(165), - [sym_false] = ACTIONS(165), - [anon_sym_NULL] = ACTIONS(105), - [anon_sym_nullptr] = ACTIONS(105), + [anon_sym_SEMI] = ACTIONS(383), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1561), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_if] = ACTIONS(395), + [anon_sym_switch] = ACTIONS(397), + [anon_sym_case] = ACTIONS(399), + [anon_sym_default] = ACTIONS(401), + [anon_sym_while] = ACTIONS(403), + [anon_sym_do] = ACTIONS(405), + [anon_sym_for] = ACTIONS(407), + [anon_sym_return] = ACTIONS(409), + [anon_sym_break] = ACTIONS(411), + [anon_sym_continue] = ACTIONS(413), + [anon_sym_goto] = ACTIONS(415), + [anon_sym___try] = ACTIONS(417), + [anon_sym___leave] = ACTIONS(419), + [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(87), + [anon_sym_sizeof] = ACTIONS(89), + [anon_sym___alignof__] = ACTIONS(91), + [anon_sym___alignof] = ACTIONS(91), + [anon_sym__alignof] = ACTIONS(91), + [anon_sym_alignof] = ACTIONS(91), + [anon_sym__Alignof] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(93), + [anon_sym__Generic] = ACTIONS(95), + [anon_sym_asm] = ACTIONS(97), + [anon_sym___asm__] = ACTIONS(97), + [sym_number_literal] = ACTIONS(165), + [anon_sym_L_SQUOTE] = ACTIONS(101), + [anon_sym_u_SQUOTE] = ACTIONS(101), + [anon_sym_U_SQUOTE] = ACTIONS(101), + [anon_sym_u8_SQUOTE] = ACTIONS(101), + [anon_sym_SQUOTE] = ACTIONS(101), + [anon_sym_L_DQUOTE] = ACTIONS(103), + [anon_sym_u_DQUOTE] = ACTIONS(103), + [anon_sym_U_DQUOTE] = ACTIONS(103), + [anon_sym_u8_DQUOTE] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_true] = ACTIONS(167), + [sym_false] = ACTIONS(167), + [anon_sym_NULL] = ACTIONS(107), + [anon_sym_nullptr] = ACTIONS(107), [sym_comment] = ACTIONS(3), }, - [350] = { - [sym_attribute_declaration] = STATE(365), - [sym_compound_statement] = STATE(93), - [sym_attributed_statement] = STATE(93), - [sym_statement] = STATE(103), - [sym_labeled_statement] = STATE(93), - [sym_expression_statement] = STATE(93), - [sym_if_statement] = STATE(93), - [sym_switch_statement] = STATE(93), - [sym_case_statement] = STATE(93), - [sym_while_statement] = STATE(93), - [sym_do_statement] = STATE(93), - [sym_for_statement] = STATE(93), - [sym_return_statement] = STATE(93), - [sym_break_statement] = STATE(93), - [sym_continue_statement] = STATE(93), - [sym_goto_statement] = STATE(93), - [sym_seh_try_statement] = STATE(93), - [sym_seh_leave_statement] = STATE(93), - [sym_expression] = STATE(1073), - [sym__string] = STATE(663), - [sym_comma_expression] = STATE(1821), - [sym_conditional_expression] = STATE(663), - [sym_assignment_expression] = STATE(663), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(663), - [sym_binary_expression] = STATE(663), - [sym_update_expression] = STATE(663), - [sym_cast_expression] = STATE(663), - [sym_sizeof_expression] = STATE(663), - [sym_alignof_expression] = STATE(663), - [sym_offsetof_expression] = STATE(663), - [sym_generic_expression] = STATE(663), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(663), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(663), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(663), - [sym_concatenated_string] = STATE(663), - [sym_string_literal] = STATE(659), - [sym_null] = STATE(663), - [aux_sym_attributed_declarator_repeat1] = STATE(365), - [sym_identifier] = ACTIONS(1614), + [412] = { + [sym_attribute_declaration] = STATE(415), + [sym_compound_statement] = STATE(205), + [sym_attributed_statement] = STATE(205), + [sym_statement] = STATE(257), + [sym_labeled_statement] = STATE(205), + [sym_expression_statement] = STATE(205), + [sym_if_statement] = STATE(205), + [sym_switch_statement] = STATE(205), + [sym_case_statement] = STATE(205), + [sym_while_statement] = STATE(205), + [sym_do_statement] = STATE(205), + [sym_for_statement] = STATE(205), + [sym_return_statement] = STATE(205), + [sym_break_statement] = STATE(205), + [sym_continue_statement] = STATE(205), + [sym_goto_statement] = STATE(205), + [sym_seh_try_statement] = STATE(205), + [sym_seh_leave_statement] = STATE(205), + [sym_expression] = STATE(1193), + [sym__string] = STATE(758), + [sym_comma_expression] = STATE(2067), + [sym_conditional_expression] = STATE(758), + [sym_assignment_expression] = STATE(758), + [sym_pointer_expression] = STATE(944), + [sym_unary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_cast_expression] = STATE(758), + [sym_sizeof_expression] = STATE(758), + [sym_alignof_expression] = STATE(758), + [sym_offsetof_expression] = STATE(758), + [sym_generic_expression] = STATE(758), + [sym_subscript_expression] = STATE(944), + [sym_call_expression] = STATE(944), + [sym_gnu_asm_expression] = STATE(758), + [sym_field_expression] = STATE(944), + [sym_compound_literal_expression] = STATE(758), + [sym_parenthesized_expression] = STATE(944), + [sym_char_literal] = STATE(758), + [sym_concatenated_string] = STATE(758), + [sym_string_literal] = STATE(671), + [sym_null] = STATE(758), + [aux_sym_attributed_declarator_repeat1] = STATE(415), + [sym_identifier] = ACTIONS(1565), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -53683,96 +62152,96 @@ 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(127), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1556), - [anon_sym_LBRACE] = ACTIONS(135), - [anon_sym_if] = ACTIONS(137), - [anon_sym_switch] = ACTIONS(139), - [anon_sym_case] = ACTIONS(141), - [anon_sym_default] = ACTIONS(143), - [anon_sym_while] = ACTIONS(145), - [anon_sym_do] = ACTIONS(147), - [anon_sym_for] = ACTIONS(149), - [anon_sym_return] = ACTIONS(151), - [anon_sym_break] = ACTIONS(153), - [anon_sym_continue] = ACTIONS(155), - [anon_sym_goto] = ACTIONS(157), - [anon_sym___try] = ACTIONS(159), - [anon_sym___leave] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [anon_sym___alignof__] = ACTIONS(89), - [anon_sym___alignof] = ACTIONS(89), - [anon_sym__alignof] = ACTIONS(89), - [anon_sym_alignof] = ACTIONS(89), - [anon_sym__Alignof] = ACTIONS(89), - [anon_sym_offsetof] = ACTIONS(91), - [anon_sym__Generic] = ACTIONS(93), - [anon_sym_asm] = ACTIONS(95), - [anon_sym___asm__] = ACTIONS(95), - [sym_number_literal] = ACTIONS(163), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(165), - [sym_false] = ACTIONS(165), - [anon_sym_NULL] = ACTIONS(105), - [anon_sym_nullptr] = ACTIONS(105), + [anon_sym_SEMI] = ACTIONS(447), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1561), + [anon_sym_LBRACE] = ACTIONS(455), + [anon_sym_if] = ACTIONS(457), + [anon_sym_switch] = ACTIONS(459), + [anon_sym_case] = ACTIONS(461), + [anon_sym_default] = ACTIONS(463), + [anon_sym_while] = ACTIONS(465), + [anon_sym_do] = ACTIONS(467), + [anon_sym_for] = ACTIONS(469), + [anon_sym_return] = ACTIONS(471), + [anon_sym_break] = ACTIONS(473), + [anon_sym_continue] = ACTIONS(475), + [anon_sym_goto] = ACTIONS(477), + [anon_sym___try] = ACTIONS(479), + [anon_sym___leave] = ACTIONS(481), + [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(87), + [anon_sym_sizeof] = ACTIONS(89), + [anon_sym___alignof__] = ACTIONS(91), + [anon_sym___alignof] = ACTIONS(91), + [anon_sym__alignof] = ACTIONS(91), + [anon_sym_alignof] = ACTIONS(91), + [anon_sym__Alignof] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(93), + [anon_sym__Generic] = ACTIONS(95), + [anon_sym_asm] = ACTIONS(97), + [anon_sym___asm__] = ACTIONS(97), + [sym_number_literal] = ACTIONS(165), + [anon_sym_L_SQUOTE] = ACTIONS(101), + [anon_sym_u_SQUOTE] = ACTIONS(101), + [anon_sym_U_SQUOTE] = ACTIONS(101), + [anon_sym_u8_SQUOTE] = ACTIONS(101), + [anon_sym_SQUOTE] = ACTIONS(101), + [anon_sym_L_DQUOTE] = ACTIONS(103), + [anon_sym_u_DQUOTE] = ACTIONS(103), + [anon_sym_U_DQUOTE] = ACTIONS(103), + [anon_sym_u8_DQUOTE] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_true] = ACTIONS(167), + [sym_false] = ACTIONS(167), + [anon_sym_NULL] = ACTIONS(107), + [anon_sym_nullptr] = ACTIONS(107), [sym_comment] = ACTIONS(3), }, - [351] = { - [sym_attribute_declaration] = STATE(347), - [sym_compound_statement] = STATE(148), - [sym_attributed_statement] = STATE(148), - [sym_statement] = STATE(2055), - [sym_labeled_statement] = STATE(148), - [sym_expression_statement] = STATE(148), - [sym_if_statement] = STATE(148), - [sym_switch_statement] = STATE(148), - [sym_case_statement] = STATE(148), - [sym_while_statement] = STATE(148), - [sym_do_statement] = STATE(148), - [sym_for_statement] = STATE(148), - [sym_return_statement] = STATE(148), - [sym_break_statement] = STATE(148), - [sym_continue_statement] = STATE(148), - [sym_goto_statement] = STATE(148), - [sym_seh_try_statement] = STATE(148), - [sym_seh_leave_statement] = STATE(148), - [sym_expression] = STATE(1033), - [sym__string] = STATE(663), - [sym_comma_expression] = STATE(1818), - [sym_conditional_expression] = STATE(663), - [sym_assignment_expression] = STATE(663), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(663), - [sym_binary_expression] = STATE(663), - [sym_update_expression] = STATE(663), - [sym_cast_expression] = STATE(663), - [sym_sizeof_expression] = STATE(663), - [sym_alignof_expression] = STATE(663), - [sym_offsetof_expression] = STATE(663), - [sym_generic_expression] = STATE(663), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(663), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(663), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(663), - [sym_concatenated_string] = STATE(663), - [sym_string_literal] = STATE(659), - [sym_null] = STATE(663), - [aux_sym_attributed_declarator_repeat1] = STATE(347), - [sym_identifier] = ACTIONS(1554), + [413] = { + [sym_attribute_declaration] = STATE(442), + [sym_compound_statement] = STATE(290), + [sym_attributed_statement] = STATE(290), + [sym_statement] = STATE(263), + [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_seh_try_statement] = STATE(290), + [sym_seh_leave_statement] = STATE(290), + [sym_expression] = STATE(1167), + [sym__string] = STATE(758), + [sym_comma_expression] = STATE(2207), + [sym_conditional_expression] = STATE(758), + [sym_assignment_expression] = STATE(758), + [sym_pointer_expression] = STATE(944), + [sym_unary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_cast_expression] = STATE(758), + [sym_sizeof_expression] = STATE(758), + [sym_alignof_expression] = STATE(758), + [sym_offsetof_expression] = STATE(758), + [sym_generic_expression] = STATE(758), + [sym_subscript_expression] = STATE(944), + [sym_call_expression] = STATE(944), + [sym_gnu_asm_expression] = STATE(758), + [sym_field_expression] = STATE(944), + [sym_compound_literal_expression] = STATE(758), + [sym_parenthesized_expression] = STATE(944), + [sym_char_literal] = STATE(758), + [sym_concatenated_string] = STATE(758), + [sym_string_literal] = STATE(671), + [sym_null] = STATE(758), + [aux_sym_attributed_declarator_repeat1] = STATE(442), + [sym_identifier] = ACTIONS(1567), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -53780,96 +62249,96 @@ 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(378), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1556), - [anon_sym_LBRACE] = ACTIONS(45), - [anon_sym_if] = ACTIONS(1110), - [anon_sym_switch] = ACTIONS(65), - [anon_sym_case] = ACTIONS(1558), - [anon_sym_default] = ACTIONS(1560), - [anon_sym_while] = ACTIONS(1112), - [anon_sym_do] = ACTIONS(73), - [anon_sym_for] = ACTIONS(1114), - [anon_sym_return] = ACTIONS(77), - [anon_sym_break] = ACTIONS(79), - [anon_sym_continue] = ACTIONS(81), - [anon_sym_goto] = ACTIONS(83), - [anon_sym___try] = ACTIONS(1116), - [anon_sym___leave] = ACTIONS(414), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [anon_sym___alignof__] = ACTIONS(89), - [anon_sym___alignof] = ACTIONS(89), - [anon_sym__alignof] = ACTIONS(89), - [anon_sym_alignof] = ACTIONS(89), - [anon_sym__Alignof] = ACTIONS(89), - [anon_sym_offsetof] = ACTIONS(91), - [anon_sym__Generic] = ACTIONS(93), - [anon_sym_asm] = ACTIONS(95), - [anon_sym___asm__] = ACTIONS(95), - [sym_number_literal] = ACTIONS(163), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(165), - [sym_false] = ACTIONS(165), - [anon_sym_NULL] = ACTIONS(105), - [anon_sym_nullptr] = ACTIONS(105), + [anon_sym_SEMI] = ACTIONS(383), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1561), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_if] = ACTIONS(1118), + [anon_sym_switch] = ACTIONS(67), + [anon_sym_case] = ACTIONS(1569), + [anon_sym_default] = ACTIONS(1571), + [anon_sym_while] = ACTIONS(1120), + [anon_sym_do] = ACTIONS(75), + [anon_sym_for] = ACTIONS(1122), + [anon_sym_return] = ACTIONS(79), + [anon_sym_break] = ACTIONS(81), + [anon_sym_continue] = ACTIONS(83), + [anon_sym_goto] = ACTIONS(85), + [anon_sym___try] = ACTIONS(1124), + [anon_sym___leave] = ACTIONS(419), + [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(87), + [anon_sym_sizeof] = ACTIONS(89), + [anon_sym___alignof__] = ACTIONS(91), + [anon_sym___alignof] = ACTIONS(91), + [anon_sym__alignof] = ACTIONS(91), + [anon_sym_alignof] = ACTIONS(91), + [anon_sym__Alignof] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(93), + [anon_sym__Generic] = ACTIONS(95), + [anon_sym_asm] = ACTIONS(97), + [anon_sym___asm__] = ACTIONS(97), + [sym_number_literal] = ACTIONS(165), + [anon_sym_L_SQUOTE] = ACTIONS(101), + [anon_sym_u_SQUOTE] = ACTIONS(101), + [anon_sym_U_SQUOTE] = ACTIONS(101), + [anon_sym_u8_SQUOTE] = ACTIONS(101), + [anon_sym_SQUOTE] = ACTIONS(101), + [anon_sym_L_DQUOTE] = ACTIONS(103), + [anon_sym_u_DQUOTE] = ACTIONS(103), + [anon_sym_U_DQUOTE] = ACTIONS(103), + [anon_sym_u8_DQUOTE] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_true] = ACTIONS(167), + [sym_false] = ACTIONS(167), + [anon_sym_NULL] = ACTIONS(107), + [anon_sym_nullptr] = ACTIONS(107), [sym_comment] = ACTIONS(3), }, - [352] = { - [sym_attribute_declaration] = STATE(347), - [sym_compound_statement] = STATE(148), - [sym_attributed_statement] = STATE(148), - [sym_statement] = STATE(390), - [sym_labeled_statement] = STATE(148), - [sym_expression_statement] = STATE(148), - [sym_if_statement] = STATE(148), - [sym_switch_statement] = STATE(148), - [sym_case_statement] = STATE(148), - [sym_while_statement] = STATE(148), - [sym_do_statement] = STATE(148), - [sym_for_statement] = STATE(148), - [sym_return_statement] = STATE(148), - [sym_break_statement] = STATE(148), - [sym_continue_statement] = STATE(148), - [sym_goto_statement] = STATE(148), - [sym_seh_try_statement] = STATE(148), - [sym_seh_leave_statement] = STATE(148), - [sym_expression] = STATE(1033), - [sym__string] = STATE(663), - [sym_comma_expression] = STATE(1818), - [sym_conditional_expression] = STATE(663), - [sym_assignment_expression] = STATE(663), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(663), - [sym_binary_expression] = STATE(663), - [sym_update_expression] = STATE(663), - [sym_cast_expression] = STATE(663), - [sym_sizeof_expression] = STATE(663), - [sym_alignof_expression] = STATE(663), - [sym_offsetof_expression] = STATE(663), - [sym_generic_expression] = STATE(663), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(663), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(663), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(663), - [sym_concatenated_string] = STATE(663), - [sym_string_literal] = STATE(659), - [sym_null] = STATE(663), - [aux_sym_attributed_declarator_repeat1] = STATE(347), - [sym_identifier] = ACTIONS(1554), + [414] = { + [sym_attribute_declaration] = STATE(428), + [sym_compound_statement] = STATE(290), + [sym_attributed_statement] = STATE(290), + [sym_statement] = STATE(234), + [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_seh_try_statement] = STATE(290), + [sym_seh_leave_statement] = STATE(290), + [sym_expression] = STATE(1167), + [sym__string] = STATE(758), + [sym_comma_expression] = STATE(2207), + [sym_conditional_expression] = STATE(758), + [sym_assignment_expression] = STATE(758), + [sym_pointer_expression] = STATE(944), + [sym_unary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_cast_expression] = STATE(758), + [sym_sizeof_expression] = STATE(758), + [sym_alignof_expression] = STATE(758), + [sym_offsetof_expression] = STATE(758), + [sym_generic_expression] = STATE(758), + [sym_subscript_expression] = STATE(944), + [sym_call_expression] = STATE(944), + [sym_gnu_asm_expression] = STATE(758), + [sym_field_expression] = STATE(944), + [sym_compound_literal_expression] = STATE(758), + [sym_parenthesized_expression] = STATE(944), + [sym_char_literal] = STATE(758), + [sym_concatenated_string] = STATE(758), + [sym_string_literal] = STATE(671), + [sym_null] = STATE(758), + [aux_sym_attributed_declarator_repeat1] = STATE(428), + [sym_identifier] = ACTIONS(1563), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -53877,96 +62346,96 @@ 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(378), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1556), - [anon_sym_LBRACE] = ACTIONS(45), - [anon_sym_if] = ACTIONS(1110), - [anon_sym_switch] = ACTIONS(65), - [anon_sym_case] = ACTIONS(1558), - [anon_sym_default] = ACTIONS(1560), - [anon_sym_while] = ACTIONS(1112), - [anon_sym_do] = ACTIONS(73), - [anon_sym_for] = ACTIONS(1114), - [anon_sym_return] = ACTIONS(77), - [anon_sym_break] = ACTIONS(79), - [anon_sym_continue] = ACTIONS(81), - [anon_sym_goto] = ACTIONS(83), - [anon_sym___try] = ACTIONS(1116), - [anon_sym___leave] = ACTIONS(414), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [anon_sym___alignof__] = ACTIONS(89), - [anon_sym___alignof] = ACTIONS(89), - [anon_sym__alignof] = ACTIONS(89), - [anon_sym_alignof] = ACTIONS(89), - [anon_sym__Alignof] = ACTIONS(89), - [anon_sym_offsetof] = ACTIONS(91), - [anon_sym__Generic] = ACTIONS(93), - [anon_sym_asm] = ACTIONS(95), - [anon_sym___asm__] = ACTIONS(95), - [sym_number_literal] = ACTIONS(163), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(165), - [sym_false] = ACTIONS(165), - [anon_sym_NULL] = ACTIONS(105), - [anon_sym_nullptr] = ACTIONS(105), + [anon_sym_SEMI] = ACTIONS(383), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1561), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_if] = ACTIONS(395), + [anon_sym_switch] = ACTIONS(397), + [anon_sym_case] = ACTIONS(399), + [anon_sym_default] = ACTIONS(401), + [anon_sym_while] = ACTIONS(403), + [anon_sym_do] = ACTIONS(405), + [anon_sym_for] = ACTIONS(407), + [anon_sym_return] = ACTIONS(409), + [anon_sym_break] = ACTIONS(411), + [anon_sym_continue] = ACTIONS(413), + [anon_sym_goto] = ACTIONS(415), + [anon_sym___try] = ACTIONS(417), + [anon_sym___leave] = ACTIONS(419), + [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(87), + [anon_sym_sizeof] = ACTIONS(89), + [anon_sym___alignof__] = ACTIONS(91), + [anon_sym___alignof] = ACTIONS(91), + [anon_sym__alignof] = ACTIONS(91), + [anon_sym_alignof] = ACTIONS(91), + [anon_sym__Alignof] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(93), + [anon_sym__Generic] = ACTIONS(95), + [anon_sym_asm] = ACTIONS(97), + [anon_sym___asm__] = ACTIONS(97), + [sym_number_literal] = ACTIONS(165), + [anon_sym_L_SQUOTE] = ACTIONS(101), + [anon_sym_u_SQUOTE] = ACTIONS(101), + [anon_sym_U_SQUOTE] = ACTIONS(101), + [anon_sym_u8_SQUOTE] = ACTIONS(101), + [anon_sym_SQUOTE] = ACTIONS(101), + [anon_sym_L_DQUOTE] = ACTIONS(103), + [anon_sym_u_DQUOTE] = ACTIONS(103), + [anon_sym_U_DQUOTE] = ACTIONS(103), + [anon_sym_u8_DQUOTE] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_true] = ACTIONS(167), + [sym_false] = ACTIONS(167), + [anon_sym_NULL] = ACTIONS(107), + [anon_sym_nullptr] = ACTIONS(107), [sym_comment] = ACTIONS(3), }, - [353] = { - [sym_attribute_declaration] = STATE(373), - [sym_compound_statement] = STATE(174), - [sym_attributed_statement] = STATE(174), - [sym_statement] = STATE(197), - [sym_labeled_statement] = STATE(174), - [sym_expression_statement] = STATE(174), - [sym_if_statement] = STATE(174), - [sym_switch_statement] = STATE(174), - [sym_case_statement] = STATE(174), - [sym_while_statement] = STATE(174), - [sym_do_statement] = STATE(174), - [sym_for_statement] = STATE(174), - [sym_return_statement] = STATE(174), - [sym_break_statement] = STATE(174), - [sym_continue_statement] = STATE(174), - [sym_goto_statement] = STATE(174), - [sym_seh_try_statement] = STATE(174), - [sym_seh_leave_statement] = STATE(174), - [sym_expression] = STATE(1031), - [sym__string] = STATE(663), - [sym_comma_expression] = STATE(1792), - [sym_conditional_expression] = STATE(663), - [sym_assignment_expression] = STATE(663), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(663), - [sym_binary_expression] = STATE(663), - [sym_update_expression] = STATE(663), - [sym_cast_expression] = STATE(663), - [sym_sizeof_expression] = STATE(663), - [sym_alignof_expression] = STATE(663), - [sym_offsetof_expression] = STATE(663), - [sym_generic_expression] = STATE(663), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(663), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(663), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(663), - [sym_concatenated_string] = STATE(663), - [sym_string_literal] = STATE(659), - [sym_null] = STATE(663), - [aux_sym_attributed_declarator_repeat1] = STATE(373), - [sym_identifier] = ACTIONS(1562), + [415] = { + [sym_attribute_declaration] = STATE(427), + [sym_compound_statement] = STATE(205), + [sym_attributed_statement] = STATE(205), + [sym_statement] = STATE(212), + [sym_labeled_statement] = STATE(205), + [sym_expression_statement] = STATE(205), + [sym_if_statement] = STATE(205), + [sym_switch_statement] = STATE(205), + [sym_case_statement] = STATE(205), + [sym_while_statement] = STATE(205), + [sym_do_statement] = STATE(205), + [sym_for_statement] = STATE(205), + [sym_return_statement] = STATE(205), + [sym_break_statement] = STATE(205), + [sym_continue_statement] = STATE(205), + [sym_goto_statement] = STATE(205), + [sym_seh_try_statement] = STATE(205), + [sym_seh_leave_statement] = STATE(205), + [sym_expression] = STATE(1193), + [sym__string] = STATE(758), + [sym_comma_expression] = STATE(2067), + [sym_conditional_expression] = STATE(758), + [sym_assignment_expression] = STATE(758), + [sym_pointer_expression] = STATE(944), + [sym_unary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_cast_expression] = STATE(758), + [sym_sizeof_expression] = STATE(758), + [sym_alignof_expression] = STATE(758), + [sym_offsetof_expression] = STATE(758), + [sym_generic_expression] = STATE(758), + [sym_subscript_expression] = STATE(944), + [sym_call_expression] = STATE(944), + [sym_gnu_asm_expression] = STATE(758), + [sym_field_expression] = STATE(944), + [sym_compound_literal_expression] = STATE(758), + [sym_parenthesized_expression] = STATE(944), + [sym_char_literal] = STATE(758), + [sym_concatenated_string] = STATE(758), + [sym_string_literal] = STATE(671), + [sym_null] = STATE(758), + [aux_sym_attributed_declarator_repeat1] = STATE(427), + [sym_identifier] = ACTIONS(1565), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -53974,96 +62443,96 @@ 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(516), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1556), - [anon_sym_LBRACE] = ACTIONS(524), - [anon_sym_if] = ACTIONS(526), - [anon_sym_switch] = ACTIONS(528), - [anon_sym_case] = ACTIONS(530), - [anon_sym_default] = ACTIONS(532), - [anon_sym_while] = ACTIONS(534), - [anon_sym_do] = ACTIONS(536), - [anon_sym_for] = ACTIONS(538), - [anon_sym_return] = ACTIONS(540), - [anon_sym_break] = ACTIONS(542), - [anon_sym_continue] = ACTIONS(544), - [anon_sym_goto] = ACTIONS(546), - [anon_sym___try] = ACTIONS(548), - [anon_sym___leave] = ACTIONS(550), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [anon_sym___alignof__] = ACTIONS(89), - [anon_sym___alignof] = ACTIONS(89), - [anon_sym__alignof] = ACTIONS(89), - [anon_sym_alignof] = ACTIONS(89), - [anon_sym__Alignof] = ACTIONS(89), - [anon_sym_offsetof] = ACTIONS(91), - [anon_sym__Generic] = ACTIONS(93), - [anon_sym_asm] = ACTIONS(95), - [anon_sym___asm__] = ACTIONS(95), - [sym_number_literal] = ACTIONS(163), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(165), - [sym_false] = ACTIONS(165), - [anon_sym_NULL] = ACTIONS(105), - [anon_sym_nullptr] = ACTIONS(105), + [anon_sym_SEMI] = ACTIONS(447), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1561), + [anon_sym_LBRACE] = ACTIONS(455), + [anon_sym_if] = ACTIONS(457), + [anon_sym_switch] = ACTIONS(459), + [anon_sym_case] = ACTIONS(461), + [anon_sym_default] = ACTIONS(463), + [anon_sym_while] = ACTIONS(465), + [anon_sym_do] = ACTIONS(467), + [anon_sym_for] = ACTIONS(469), + [anon_sym_return] = ACTIONS(471), + [anon_sym_break] = ACTIONS(473), + [anon_sym_continue] = ACTIONS(475), + [anon_sym_goto] = ACTIONS(477), + [anon_sym___try] = ACTIONS(479), + [anon_sym___leave] = ACTIONS(481), + [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(87), + [anon_sym_sizeof] = ACTIONS(89), + [anon_sym___alignof__] = ACTIONS(91), + [anon_sym___alignof] = ACTIONS(91), + [anon_sym__alignof] = ACTIONS(91), + [anon_sym_alignof] = ACTIONS(91), + [anon_sym__Alignof] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(93), + [anon_sym__Generic] = ACTIONS(95), + [anon_sym_asm] = ACTIONS(97), + [anon_sym___asm__] = ACTIONS(97), + [sym_number_literal] = ACTIONS(165), + [anon_sym_L_SQUOTE] = ACTIONS(101), + [anon_sym_u_SQUOTE] = ACTIONS(101), + [anon_sym_U_SQUOTE] = ACTIONS(101), + [anon_sym_u8_SQUOTE] = ACTIONS(101), + [anon_sym_SQUOTE] = ACTIONS(101), + [anon_sym_L_DQUOTE] = ACTIONS(103), + [anon_sym_u_DQUOTE] = ACTIONS(103), + [anon_sym_U_DQUOTE] = ACTIONS(103), + [anon_sym_u8_DQUOTE] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_true] = ACTIONS(167), + [sym_false] = ACTIONS(167), + [anon_sym_NULL] = ACTIONS(107), + [anon_sym_nullptr] = ACTIONS(107), [sym_comment] = ACTIONS(3), }, - [354] = { - [sym_attribute_declaration] = STATE(375), - [sym_compound_statement] = STATE(148), - [sym_attributed_statement] = STATE(148), - [sym_statement] = STATE(171), - [sym_labeled_statement] = STATE(148), - [sym_expression_statement] = STATE(148), - [sym_if_statement] = STATE(148), - [sym_switch_statement] = STATE(148), - [sym_case_statement] = STATE(148), - [sym_while_statement] = STATE(148), - [sym_do_statement] = STATE(148), - [sym_for_statement] = STATE(148), - [sym_return_statement] = STATE(148), - [sym_break_statement] = STATE(148), - [sym_continue_statement] = STATE(148), - [sym_goto_statement] = STATE(148), - [sym_seh_try_statement] = STATE(148), - [sym_seh_leave_statement] = STATE(148), - [sym_expression] = STATE(1033), - [sym__string] = STATE(663), - [sym_comma_expression] = STATE(1818), - [sym_conditional_expression] = STATE(663), - [sym_assignment_expression] = STATE(663), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(663), - [sym_binary_expression] = STATE(663), - [sym_update_expression] = STATE(663), - [sym_cast_expression] = STATE(663), - [sym_sizeof_expression] = STATE(663), - [sym_alignof_expression] = STATE(663), - [sym_offsetof_expression] = STATE(663), - [sym_generic_expression] = STATE(663), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(663), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(663), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(663), - [sym_concatenated_string] = STATE(663), - [sym_string_literal] = STATE(659), - [sym_null] = STATE(663), - [aux_sym_attributed_declarator_repeat1] = STATE(375), - [sym_identifier] = ACTIONS(1616), + [416] = { + [sym_attribute_declaration] = STATE(428), + [sym_compound_statement] = STATE(290), + [sym_attributed_statement] = STATE(290), + [sym_statement] = STATE(232), + [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_seh_try_statement] = STATE(290), + [sym_seh_leave_statement] = STATE(290), + [sym_expression] = STATE(1167), + [sym__string] = STATE(758), + [sym_comma_expression] = STATE(2207), + [sym_conditional_expression] = STATE(758), + [sym_assignment_expression] = STATE(758), + [sym_pointer_expression] = STATE(944), + [sym_unary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_cast_expression] = STATE(758), + [sym_sizeof_expression] = STATE(758), + [sym_alignof_expression] = STATE(758), + [sym_offsetof_expression] = STATE(758), + [sym_generic_expression] = STATE(758), + [sym_subscript_expression] = STATE(944), + [sym_call_expression] = STATE(944), + [sym_gnu_asm_expression] = STATE(758), + [sym_field_expression] = STATE(944), + [sym_compound_literal_expression] = STATE(758), + [sym_parenthesized_expression] = STATE(944), + [sym_char_literal] = STATE(758), + [sym_concatenated_string] = STATE(758), + [sym_string_literal] = STATE(671), + [sym_null] = STATE(758), + [aux_sym_attributed_declarator_repeat1] = STATE(428), + [sym_identifier] = ACTIONS(1563), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -54071,96 +62540,193 @@ 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(378), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1556), - [anon_sym_LBRACE] = ACTIONS(386), - [anon_sym_if] = ACTIONS(390), - [anon_sym_switch] = ACTIONS(392), - [anon_sym_case] = ACTIONS(394), - [anon_sym_default] = ACTIONS(396), - [anon_sym_while] = ACTIONS(398), - [anon_sym_do] = ACTIONS(400), - [anon_sym_for] = ACTIONS(402), - [anon_sym_return] = ACTIONS(404), - [anon_sym_break] = ACTIONS(406), - [anon_sym_continue] = ACTIONS(408), - [anon_sym_goto] = ACTIONS(410), - [anon_sym___try] = ACTIONS(412), - [anon_sym___leave] = ACTIONS(414), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [anon_sym___alignof__] = ACTIONS(89), - [anon_sym___alignof] = ACTIONS(89), - [anon_sym__alignof] = ACTIONS(89), - [anon_sym_alignof] = ACTIONS(89), - [anon_sym__Alignof] = ACTIONS(89), - [anon_sym_offsetof] = ACTIONS(91), - [anon_sym__Generic] = ACTIONS(93), - [anon_sym_asm] = ACTIONS(95), - [anon_sym___asm__] = ACTIONS(95), - [sym_number_literal] = ACTIONS(163), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(165), - [sym_false] = ACTIONS(165), - [anon_sym_NULL] = ACTIONS(105), - [anon_sym_nullptr] = ACTIONS(105), + [anon_sym_SEMI] = ACTIONS(383), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1561), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_if] = ACTIONS(395), + [anon_sym_switch] = ACTIONS(397), + [anon_sym_case] = ACTIONS(399), + [anon_sym_default] = ACTIONS(401), + [anon_sym_while] = ACTIONS(403), + [anon_sym_do] = ACTIONS(405), + [anon_sym_for] = ACTIONS(407), + [anon_sym_return] = ACTIONS(409), + [anon_sym_break] = ACTIONS(411), + [anon_sym_continue] = ACTIONS(413), + [anon_sym_goto] = ACTIONS(415), + [anon_sym___try] = ACTIONS(417), + [anon_sym___leave] = ACTIONS(419), + [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(87), + [anon_sym_sizeof] = ACTIONS(89), + [anon_sym___alignof__] = ACTIONS(91), + [anon_sym___alignof] = ACTIONS(91), + [anon_sym__alignof] = ACTIONS(91), + [anon_sym_alignof] = ACTIONS(91), + [anon_sym__Alignof] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(93), + [anon_sym__Generic] = ACTIONS(95), + [anon_sym_asm] = ACTIONS(97), + [anon_sym___asm__] = ACTIONS(97), + [sym_number_literal] = ACTIONS(165), + [anon_sym_L_SQUOTE] = ACTIONS(101), + [anon_sym_u_SQUOTE] = ACTIONS(101), + [anon_sym_U_SQUOTE] = ACTIONS(101), + [anon_sym_u8_SQUOTE] = ACTIONS(101), + [anon_sym_SQUOTE] = ACTIONS(101), + [anon_sym_L_DQUOTE] = ACTIONS(103), + [anon_sym_u_DQUOTE] = ACTIONS(103), + [anon_sym_U_DQUOTE] = ACTIONS(103), + [anon_sym_u8_DQUOTE] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_true] = ACTIONS(167), + [sym_false] = ACTIONS(167), + [anon_sym_NULL] = ACTIONS(107), + [anon_sym_nullptr] = ACTIONS(107), [sym_comment] = ACTIONS(3), }, - [355] = { - [sym_attribute_declaration] = STATE(347), - [sym_compound_statement] = STATE(148), - [sym_attributed_statement] = STATE(148), - [sym_statement] = STATE(237), - [sym_labeled_statement] = STATE(148), - [sym_expression_statement] = STATE(148), - [sym_if_statement] = STATE(148), - [sym_switch_statement] = STATE(148), - [sym_case_statement] = STATE(148), - [sym_while_statement] = STATE(148), - [sym_do_statement] = STATE(148), - [sym_for_statement] = STATE(148), - [sym_return_statement] = STATE(148), - [sym_break_statement] = STATE(148), - [sym_continue_statement] = STATE(148), - [sym_goto_statement] = STATE(148), - [sym_seh_try_statement] = STATE(148), - [sym_seh_leave_statement] = STATE(148), - [sym_expression] = STATE(1033), - [sym__string] = STATE(663), - [sym_comma_expression] = STATE(1818), - [sym_conditional_expression] = STATE(663), - [sym_assignment_expression] = STATE(663), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(663), - [sym_binary_expression] = STATE(663), - [sym_update_expression] = STATE(663), - [sym_cast_expression] = STATE(663), - [sym_sizeof_expression] = STATE(663), - [sym_alignof_expression] = STATE(663), - [sym_offsetof_expression] = STATE(663), - [sym_generic_expression] = STATE(663), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(663), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(663), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(663), - [sym_concatenated_string] = STATE(663), - [sym_string_literal] = STATE(659), - [sym_null] = STATE(663), - [aux_sym_attributed_declarator_repeat1] = STATE(347), - [sym_identifier] = ACTIONS(1554), + [417] = { + [sym_attribute_declaration] = STATE(417), + [sym_compound_statement] = STATE(77), + [sym_attributed_statement] = STATE(77), + [sym_statement] = STATE(113), + [sym_labeled_statement] = STATE(77), + [sym_expression_statement] = STATE(77), + [sym_if_statement] = STATE(77), + [sym_switch_statement] = STATE(77), + [sym_case_statement] = STATE(77), + [sym_while_statement] = STATE(77), + [sym_do_statement] = STATE(77), + [sym_for_statement] = STATE(77), + [sym_return_statement] = STATE(77), + [sym_break_statement] = STATE(77), + [sym_continue_statement] = STATE(77), + [sym_goto_statement] = STATE(77), + [sym_seh_try_statement] = STATE(77), + [sym_seh_leave_statement] = STATE(77), + [sym_expression] = STATE(1157), + [sym__string] = STATE(758), + [sym_comma_expression] = STATE(2232), + [sym_conditional_expression] = STATE(758), + [sym_assignment_expression] = STATE(758), + [sym_pointer_expression] = STATE(944), + [sym_unary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_cast_expression] = STATE(758), + [sym_sizeof_expression] = STATE(758), + [sym_alignof_expression] = STATE(758), + [sym_offsetof_expression] = STATE(758), + [sym_generic_expression] = STATE(758), + [sym_subscript_expression] = STATE(944), + [sym_call_expression] = STATE(944), + [sym_gnu_asm_expression] = STATE(758), + [sym_field_expression] = STATE(944), + [sym_compound_literal_expression] = STATE(758), + [sym_parenthesized_expression] = STATE(944), + [sym_char_literal] = STATE(758), + [sym_concatenated_string] = STATE(758), + [sym_string_literal] = STATE(671), + [sym_null] = STATE(758), + [aux_sym_attributed_declarator_repeat1] = STATE(417), + [sym_identifier] = ACTIONS(1573), + [anon_sym_LPAREN2] = ACTIONS(1466), + [anon_sym_BANG] = ACTIONS(1469), + [anon_sym_TILDE] = ACTIONS(1469), + [anon_sym_DASH] = ACTIONS(1472), + [anon_sym_PLUS] = ACTIONS(1472), + [anon_sym_STAR] = ACTIONS(1475), + [anon_sym_AMP] = ACTIONS(1475), + [anon_sym_SEMI] = ACTIONS(1576), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1481), + [anon_sym_LBRACE] = ACTIONS(1579), + [anon_sym_if] = ACTIONS(1582), + [anon_sym_switch] = ACTIONS(1585), + [anon_sym_case] = ACTIONS(1588), + [anon_sym_default] = ACTIONS(1591), + [anon_sym_while] = ACTIONS(1594), + [anon_sym_do] = ACTIONS(1597), + [anon_sym_for] = ACTIONS(1600), + [anon_sym_return] = ACTIONS(1603), + [anon_sym_break] = ACTIONS(1606), + [anon_sym_continue] = ACTIONS(1609), + [anon_sym_goto] = ACTIONS(1612), + [anon_sym___try] = ACTIONS(1615), + [anon_sym___leave] = ACTIONS(1618), + [anon_sym_DASH_DASH] = ACTIONS(1526), + [anon_sym_PLUS_PLUS] = ACTIONS(1526), + [anon_sym_sizeof] = ACTIONS(1529), + [anon_sym___alignof__] = ACTIONS(1532), + [anon_sym___alignof] = ACTIONS(1532), + [anon_sym__alignof] = ACTIONS(1532), + [anon_sym_alignof] = ACTIONS(1532), + [anon_sym__Alignof] = ACTIONS(1532), + [anon_sym_offsetof] = ACTIONS(1535), + [anon_sym__Generic] = ACTIONS(1538), + [anon_sym_asm] = ACTIONS(1541), + [anon_sym___asm__] = ACTIONS(1541), + [sym_number_literal] = ACTIONS(1544), + [anon_sym_L_SQUOTE] = ACTIONS(1547), + [anon_sym_u_SQUOTE] = ACTIONS(1547), + [anon_sym_U_SQUOTE] = ACTIONS(1547), + [anon_sym_u8_SQUOTE] = ACTIONS(1547), + [anon_sym_SQUOTE] = ACTIONS(1547), + [anon_sym_L_DQUOTE] = ACTIONS(1550), + [anon_sym_u_DQUOTE] = ACTIONS(1550), + [anon_sym_U_DQUOTE] = ACTIONS(1550), + [anon_sym_u8_DQUOTE] = ACTIONS(1550), + [anon_sym_DQUOTE] = ACTIONS(1550), + [sym_true] = ACTIONS(1553), + [sym_false] = ACTIONS(1553), + [anon_sym_NULL] = ACTIONS(1556), + [anon_sym_nullptr] = ACTIONS(1556), + [sym_comment] = ACTIONS(3), + }, + [418] = { + [sym_attribute_declaration] = STATE(439), + [sym_compound_statement] = STATE(77), + [sym_attributed_statement] = STATE(77), + [sym_statement] = STATE(105), + [sym_labeled_statement] = STATE(77), + [sym_expression_statement] = STATE(77), + [sym_if_statement] = STATE(77), + [sym_switch_statement] = STATE(77), + [sym_case_statement] = STATE(77), + [sym_while_statement] = STATE(77), + [sym_do_statement] = STATE(77), + [sym_for_statement] = STATE(77), + [sym_return_statement] = STATE(77), + [sym_break_statement] = STATE(77), + [sym_continue_statement] = STATE(77), + [sym_goto_statement] = STATE(77), + [sym_seh_try_statement] = STATE(77), + [sym_seh_leave_statement] = STATE(77), + [sym_expression] = STATE(1157), + [sym__string] = STATE(758), + [sym_comma_expression] = STATE(2232), + [sym_conditional_expression] = STATE(758), + [sym_assignment_expression] = STATE(758), + [sym_pointer_expression] = STATE(944), + [sym_unary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_cast_expression] = STATE(758), + [sym_sizeof_expression] = STATE(758), + [sym_alignof_expression] = STATE(758), + [sym_offsetof_expression] = STATE(758), + [sym_generic_expression] = STATE(758), + [sym_subscript_expression] = STATE(944), + [sym_call_expression] = STATE(944), + [sym_gnu_asm_expression] = STATE(758), + [sym_field_expression] = STATE(944), + [sym_compound_literal_expression] = STATE(758), + [sym_parenthesized_expression] = STATE(944), + [sym_char_literal] = STATE(758), + [sym_concatenated_string] = STATE(758), + [sym_string_literal] = STATE(671), + [sym_null] = STATE(758), + [aux_sym_attributed_declarator_repeat1] = STATE(439), + [sym_identifier] = ACTIONS(1621), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -54168,96 +62734,96 @@ 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(378), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1556), - [anon_sym_LBRACE] = ACTIONS(45), - [anon_sym_if] = ACTIONS(1110), - [anon_sym_switch] = ACTIONS(65), - [anon_sym_case] = ACTIONS(1558), - [anon_sym_default] = ACTIONS(1560), - [anon_sym_while] = ACTIONS(1112), - [anon_sym_do] = ACTIONS(73), - [anon_sym_for] = ACTIONS(1114), - [anon_sym_return] = ACTIONS(77), - [anon_sym_break] = ACTIONS(79), - [anon_sym_continue] = ACTIONS(81), - [anon_sym_goto] = ACTIONS(83), - [anon_sym___try] = ACTIONS(1116), - [anon_sym___leave] = ACTIONS(414), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [anon_sym___alignof__] = ACTIONS(89), - [anon_sym___alignof] = ACTIONS(89), - [anon_sym__alignof] = ACTIONS(89), - [anon_sym_alignof] = ACTIONS(89), - [anon_sym__Alignof] = ACTIONS(89), - [anon_sym_offsetof] = ACTIONS(91), - [anon_sym__Generic] = ACTIONS(93), - [anon_sym_asm] = ACTIONS(95), - [anon_sym___asm__] = ACTIONS(95), - [sym_number_literal] = ACTIONS(163), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(165), - [sym_false] = ACTIONS(165), - [anon_sym_NULL] = ACTIONS(105), - [anon_sym_nullptr] = ACTIONS(105), + [anon_sym_SEMI] = ACTIONS(129), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1561), + [anon_sym_LBRACE] = ACTIONS(137), + [anon_sym_if] = ACTIONS(139), + [anon_sym_switch] = ACTIONS(141), + [anon_sym_case] = ACTIONS(143), + [anon_sym_default] = ACTIONS(145), + [anon_sym_while] = ACTIONS(147), + [anon_sym_do] = ACTIONS(149), + [anon_sym_for] = ACTIONS(151), + [anon_sym_return] = ACTIONS(153), + [anon_sym_break] = ACTIONS(155), + [anon_sym_continue] = ACTIONS(157), + [anon_sym_goto] = ACTIONS(159), + [anon_sym___try] = ACTIONS(161), + [anon_sym___leave] = ACTIONS(163), + [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(87), + [anon_sym_sizeof] = ACTIONS(89), + [anon_sym___alignof__] = ACTIONS(91), + [anon_sym___alignof] = ACTIONS(91), + [anon_sym__alignof] = ACTIONS(91), + [anon_sym_alignof] = ACTIONS(91), + [anon_sym__Alignof] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(93), + [anon_sym__Generic] = ACTIONS(95), + [anon_sym_asm] = ACTIONS(97), + [anon_sym___asm__] = ACTIONS(97), + [sym_number_literal] = ACTIONS(165), + [anon_sym_L_SQUOTE] = ACTIONS(101), + [anon_sym_u_SQUOTE] = ACTIONS(101), + [anon_sym_U_SQUOTE] = ACTIONS(101), + [anon_sym_u8_SQUOTE] = ACTIONS(101), + [anon_sym_SQUOTE] = ACTIONS(101), + [anon_sym_L_DQUOTE] = ACTIONS(103), + [anon_sym_u_DQUOTE] = ACTIONS(103), + [anon_sym_U_DQUOTE] = ACTIONS(103), + [anon_sym_u8_DQUOTE] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_true] = ACTIONS(167), + [sym_false] = ACTIONS(167), + [anon_sym_NULL] = ACTIONS(107), + [anon_sym_nullptr] = ACTIONS(107), [sym_comment] = ACTIONS(3), }, - [356] = { - [sym_attribute_declaration] = STATE(373), - [sym_compound_statement] = STATE(174), - [sym_attributed_statement] = STATE(174), - [sym_statement] = STATE(212), - [sym_labeled_statement] = STATE(174), - [sym_expression_statement] = STATE(174), - [sym_if_statement] = STATE(174), - [sym_switch_statement] = STATE(174), - [sym_case_statement] = STATE(174), - [sym_while_statement] = STATE(174), - [sym_do_statement] = STATE(174), - [sym_for_statement] = STATE(174), - [sym_return_statement] = STATE(174), - [sym_break_statement] = STATE(174), - [sym_continue_statement] = STATE(174), - [sym_goto_statement] = STATE(174), - [sym_seh_try_statement] = STATE(174), - [sym_seh_leave_statement] = STATE(174), - [sym_expression] = STATE(1031), - [sym__string] = STATE(663), - [sym_comma_expression] = STATE(1792), - [sym_conditional_expression] = STATE(663), - [sym_assignment_expression] = STATE(663), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(663), - [sym_binary_expression] = STATE(663), - [sym_update_expression] = STATE(663), - [sym_cast_expression] = STATE(663), - [sym_sizeof_expression] = STATE(663), - [sym_alignof_expression] = STATE(663), - [sym_offsetof_expression] = STATE(663), - [sym_generic_expression] = STATE(663), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(663), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(663), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(663), - [sym_concatenated_string] = STATE(663), - [sym_string_literal] = STATE(659), - [sym_null] = STATE(663), - [aux_sym_attributed_declarator_repeat1] = STATE(373), - [sym_identifier] = ACTIONS(1562), + [419] = { + [sym_attribute_declaration] = STATE(439), + [sym_compound_statement] = STATE(77), + [sym_attributed_statement] = STATE(77), + [sym_statement] = STATE(116), + [sym_labeled_statement] = STATE(77), + [sym_expression_statement] = STATE(77), + [sym_if_statement] = STATE(77), + [sym_switch_statement] = STATE(77), + [sym_case_statement] = STATE(77), + [sym_while_statement] = STATE(77), + [sym_do_statement] = STATE(77), + [sym_for_statement] = STATE(77), + [sym_return_statement] = STATE(77), + [sym_break_statement] = STATE(77), + [sym_continue_statement] = STATE(77), + [sym_goto_statement] = STATE(77), + [sym_seh_try_statement] = STATE(77), + [sym_seh_leave_statement] = STATE(77), + [sym_expression] = STATE(1157), + [sym__string] = STATE(758), + [sym_comma_expression] = STATE(2232), + [sym_conditional_expression] = STATE(758), + [sym_assignment_expression] = STATE(758), + [sym_pointer_expression] = STATE(944), + [sym_unary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_cast_expression] = STATE(758), + [sym_sizeof_expression] = STATE(758), + [sym_alignof_expression] = STATE(758), + [sym_offsetof_expression] = STATE(758), + [sym_generic_expression] = STATE(758), + [sym_subscript_expression] = STATE(944), + [sym_call_expression] = STATE(944), + [sym_gnu_asm_expression] = STATE(758), + [sym_field_expression] = STATE(944), + [sym_compound_literal_expression] = STATE(758), + [sym_parenthesized_expression] = STATE(944), + [sym_char_literal] = STATE(758), + [sym_concatenated_string] = STATE(758), + [sym_string_literal] = STATE(671), + [sym_null] = STATE(758), + [aux_sym_attributed_declarator_repeat1] = STATE(439), + [sym_identifier] = ACTIONS(1621), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -54265,96 +62831,96 @@ 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(516), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1556), - [anon_sym_LBRACE] = ACTIONS(524), - [anon_sym_if] = ACTIONS(526), - [anon_sym_switch] = ACTIONS(528), - [anon_sym_case] = ACTIONS(530), - [anon_sym_default] = ACTIONS(532), - [anon_sym_while] = ACTIONS(534), - [anon_sym_do] = ACTIONS(536), - [anon_sym_for] = ACTIONS(538), - [anon_sym_return] = ACTIONS(540), - [anon_sym_break] = ACTIONS(542), - [anon_sym_continue] = ACTIONS(544), - [anon_sym_goto] = ACTIONS(546), - [anon_sym___try] = ACTIONS(548), - [anon_sym___leave] = ACTIONS(550), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [anon_sym___alignof__] = ACTIONS(89), - [anon_sym___alignof] = ACTIONS(89), - [anon_sym__alignof] = ACTIONS(89), - [anon_sym_alignof] = ACTIONS(89), - [anon_sym__Alignof] = ACTIONS(89), - [anon_sym_offsetof] = ACTIONS(91), - [anon_sym__Generic] = ACTIONS(93), - [anon_sym_asm] = ACTIONS(95), - [anon_sym___asm__] = ACTIONS(95), - [sym_number_literal] = ACTIONS(163), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(165), - [sym_false] = ACTIONS(165), - [anon_sym_NULL] = ACTIONS(105), - [anon_sym_nullptr] = ACTIONS(105), + [anon_sym_SEMI] = ACTIONS(129), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1561), + [anon_sym_LBRACE] = ACTIONS(137), + [anon_sym_if] = ACTIONS(139), + [anon_sym_switch] = ACTIONS(141), + [anon_sym_case] = ACTIONS(143), + [anon_sym_default] = ACTIONS(145), + [anon_sym_while] = ACTIONS(147), + [anon_sym_do] = ACTIONS(149), + [anon_sym_for] = ACTIONS(151), + [anon_sym_return] = ACTIONS(153), + [anon_sym_break] = ACTIONS(155), + [anon_sym_continue] = ACTIONS(157), + [anon_sym_goto] = ACTIONS(159), + [anon_sym___try] = ACTIONS(161), + [anon_sym___leave] = ACTIONS(163), + [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(87), + [anon_sym_sizeof] = ACTIONS(89), + [anon_sym___alignof__] = ACTIONS(91), + [anon_sym___alignof] = ACTIONS(91), + [anon_sym__alignof] = ACTIONS(91), + [anon_sym_alignof] = ACTIONS(91), + [anon_sym__Alignof] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(93), + [anon_sym__Generic] = ACTIONS(95), + [anon_sym_asm] = ACTIONS(97), + [anon_sym___asm__] = ACTIONS(97), + [sym_number_literal] = ACTIONS(165), + [anon_sym_L_SQUOTE] = ACTIONS(101), + [anon_sym_u_SQUOTE] = ACTIONS(101), + [anon_sym_U_SQUOTE] = ACTIONS(101), + [anon_sym_u8_SQUOTE] = ACTIONS(101), + [anon_sym_SQUOTE] = ACTIONS(101), + [anon_sym_L_DQUOTE] = ACTIONS(103), + [anon_sym_u_DQUOTE] = ACTIONS(103), + [anon_sym_U_DQUOTE] = ACTIONS(103), + [anon_sym_u8_DQUOTE] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_true] = ACTIONS(167), + [sym_false] = ACTIONS(167), + [anon_sym_NULL] = ACTIONS(107), + [anon_sym_nullptr] = ACTIONS(107), [sym_comment] = ACTIONS(3), }, - [357] = { - [sym_attribute_declaration] = STATE(348), - [sym_compound_statement] = STATE(232), - [sym_attributed_statement] = STATE(232), - [sym_statement] = STATE(244), - [sym_labeled_statement] = STATE(232), - [sym_expression_statement] = STATE(232), - [sym_if_statement] = STATE(232), - [sym_switch_statement] = STATE(232), - [sym_case_statement] = STATE(232), - [sym_while_statement] = STATE(232), - [sym_do_statement] = STATE(232), - [sym_for_statement] = STATE(232), - [sym_return_statement] = STATE(232), - [sym_break_statement] = STATE(232), - [sym_continue_statement] = STATE(232), - [sym_goto_statement] = STATE(232), - [sym_seh_try_statement] = STATE(232), - [sym_seh_leave_statement] = STATE(232), - [sym_expression] = STATE(1060), - [sym__string] = STATE(663), - [sym_comma_expression] = STATE(1853), - [sym_conditional_expression] = STATE(663), - [sym_assignment_expression] = STATE(663), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(663), - [sym_binary_expression] = STATE(663), - [sym_update_expression] = STATE(663), - [sym_cast_expression] = STATE(663), - [sym_sizeof_expression] = STATE(663), - [sym_alignof_expression] = STATE(663), - [sym_offsetof_expression] = STATE(663), - [sym_generic_expression] = STATE(663), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(663), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(663), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(663), - [sym_concatenated_string] = STATE(663), - [sym_string_literal] = STATE(659), - [sym_null] = STATE(663), - [aux_sym_attributed_declarator_repeat1] = STATE(348), - [sym_identifier] = ACTIONS(1612), + [420] = { + [sym_attribute_declaration] = STATE(421), + [sym_compound_statement] = STATE(180), + [sym_attributed_statement] = STATE(180), + [sym_statement] = STATE(224), + [sym_labeled_statement] = STATE(180), + [sym_expression_statement] = STATE(180), + [sym_if_statement] = STATE(180), + [sym_switch_statement] = STATE(180), + [sym_case_statement] = STATE(180), + [sym_while_statement] = STATE(180), + [sym_do_statement] = STATE(180), + [sym_for_statement] = STATE(180), + [sym_return_statement] = STATE(180), + [sym_break_statement] = STATE(180), + [sym_continue_statement] = STATE(180), + [sym_goto_statement] = STATE(180), + [sym_seh_try_statement] = STATE(180), + [sym_seh_leave_statement] = STATE(180), + [sym_expression] = STATE(1179), + [sym__string] = STATE(758), + [sym_comma_expression] = STATE(2159), + [sym_conditional_expression] = STATE(758), + [sym_assignment_expression] = STATE(758), + [sym_pointer_expression] = STATE(944), + [sym_unary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_cast_expression] = STATE(758), + [sym_sizeof_expression] = STATE(758), + [sym_alignof_expression] = STATE(758), + [sym_offsetof_expression] = STATE(758), + [sym_generic_expression] = STATE(758), + [sym_subscript_expression] = STATE(944), + [sym_call_expression] = STATE(944), + [sym_gnu_asm_expression] = STATE(758), + [sym_field_expression] = STATE(944), + [sym_compound_literal_expression] = STATE(758), + [sym_parenthesized_expression] = STATE(944), + [sym_char_literal] = STATE(758), + [sym_concatenated_string] = STATE(758), + [sym_string_literal] = STATE(671), + [sym_null] = STATE(758), + [aux_sym_attributed_declarator_repeat1] = STATE(421), + [sym_identifier] = ACTIONS(1559), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -54362,96 +62928,96 @@ 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(996), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1556), - [anon_sym_LBRACE] = ACTIONS(45), - [anon_sym_if] = ACTIONS(63), - [anon_sym_switch] = ACTIONS(65), - [anon_sym_case] = ACTIONS(67), - [anon_sym_default] = ACTIONS(69), - [anon_sym_while] = ACTIONS(71), - [anon_sym_do] = ACTIONS(73), - [anon_sym_for] = ACTIONS(75), - [anon_sym_return] = ACTIONS(77), - [anon_sym_break] = ACTIONS(79), - [anon_sym_continue] = ACTIONS(81), - [anon_sym_goto] = ACTIONS(83), - [anon_sym___try] = ACTIONS(998), - [anon_sym___leave] = ACTIONS(1000), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [anon_sym___alignof__] = ACTIONS(89), - [anon_sym___alignof] = ACTIONS(89), - [anon_sym__alignof] = ACTIONS(89), - [anon_sym_alignof] = ACTIONS(89), - [anon_sym__Alignof] = ACTIONS(89), - [anon_sym_offsetof] = ACTIONS(91), - [anon_sym__Generic] = ACTIONS(93), - [anon_sym_asm] = ACTIONS(95), - [anon_sym___asm__] = ACTIONS(95), - [sym_number_literal] = ACTIONS(163), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(165), - [sym_false] = ACTIONS(165), - [anon_sym_NULL] = ACTIONS(105), - [anon_sym_nullptr] = ACTIONS(105), + [anon_sym_SEMI] = ACTIONS(1006), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1561), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_if] = ACTIONS(65), + [anon_sym_switch] = ACTIONS(67), + [anon_sym_case] = ACTIONS(69), + [anon_sym_default] = ACTIONS(71), + [anon_sym_while] = ACTIONS(73), + [anon_sym_do] = ACTIONS(75), + [anon_sym_for] = ACTIONS(77), + [anon_sym_return] = ACTIONS(79), + [anon_sym_break] = ACTIONS(81), + [anon_sym_continue] = ACTIONS(83), + [anon_sym_goto] = ACTIONS(85), + [anon_sym___try] = ACTIONS(1008), + [anon_sym___leave] = ACTIONS(1010), + [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(87), + [anon_sym_sizeof] = ACTIONS(89), + [anon_sym___alignof__] = ACTIONS(91), + [anon_sym___alignof] = ACTIONS(91), + [anon_sym__alignof] = ACTIONS(91), + [anon_sym_alignof] = ACTIONS(91), + [anon_sym__Alignof] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(93), + [anon_sym__Generic] = ACTIONS(95), + [anon_sym_asm] = ACTIONS(97), + [anon_sym___asm__] = ACTIONS(97), + [sym_number_literal] = ACTIONS(165), + [anon_sym_L_SQUOTE] = ACTIONS(101), + [anon_sym_u_SQUOTE] = ACTIONS(101), + [anon_sym_U_SQUOTE] = ACTIONS(101), + [anon_sym_u8_SQUOTE] = ACTIONS(101), + [anon_sym_SQUOTE] = ACTIONS(101), + [anon_sym_L_DQUOTE] = ACTIONS(103), + [anon_sym_u_DQUOTE] = ACTIONS(103), + [anon_sym_U_DQUOTE] = ACTIONS(103), + [anon_sym_u8_DQUOTE] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_true] = ACTIONS(167), + [sym_false] = ACTIONS(167), + [anon_sym_NULL] = ACTIONS(107), + [anon_sym_nullptr] = ACTIONS(107), [sym_comment] = ACTIONS(3), }, - [358] = { - [sym_attribute_declaration] = STATE(365), - [sym_compound_statement] = STATE(93), - [sym_attributed_statement] = STATE(93), - [sym_statement] = STATE(75), - [sym_labeled_statement] = STATE(93), - [sym_expression_statement] = STATE(93), - [sym_if_statement] = STATE(93), - [sym_switch_statement] = STATE(93), - [sym_case_statement] = STATE(93), - [sym_while_statement] = STATE(93), - [sym_do_statement] = STATE(93), - [sym_for_statement] = STATE(93), - [sym_return_statement] = STATE(93), - [sym_break_statement] = STATE(93), - [sym_continue_statement] = STATE(93), - [sym_goto_statement] = STATE(93), - [sym_seh_try_statement] = STATE(93), - [sym_seh_leave_statement] = STATE(93), - [sym_expression] = STATE(1073), - [sym__string] = STATE(663), - [sym_comma_expression] = STATE(1821), - [sym_conditional_expression] = STATE(663), - [sym_assignment_expression] = STATE(663), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(663), - [sym_binary_expression] = STATE(663), - [sym_update_expression] = STATE(663), - [sym_cast_expression] = STATE(663), - [sym_sizeof_expression] = STATE(663), - [sym_alignof_expression] = STATE(663), - [sym_offsetof_expression] = STATE(663), - [sym_generic_expression] = STATE(663), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(663), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(663), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(663), - [sym_concatenated_string] = STATE(663), - [sym_string_literal] = STATE(659), - [sym_null] = STATE(663), - [aux_sym_attributed_declarator_repeat1] = STATE(365), - [sym_identifier] = ACTIONS(1614), + [421] = { + [sym_attribute_declaration] = STATE(435), + [sym_compound_statement] = STATE(180), + [sym_attributed_statement] = STATE(180), + [sym_statement] = STATE(197), + [sym_labeled_statement] = STATE(180), + [sym_expression_statement] = STATE(180), + [sym_if_statement] = STATE(180), + [sym_switch_statement] = STATE(180), + [sym_case_statement] = STATE(180), + [sym_while_statement] = STATE(180), + [sym_do_statement] = STATE(180), + [sym_for_statement] = STATE(180), + [sym_return_statement] = STATE(180), + [sym_break_statement] = STATE(180), + [sym_continue_statement] = STATE(180), + [sym_goto_statement] = STATE(180), + [sym_seh_try_statement] = STATE(180), + [sym_seh_leave_statement] = STATE(180), + [sym_expression] = STATE(1179), + [sym__string] = STATE(758), + [sym_comma_expression] = STATE(2159), + [sym_conditional_expression] = STATE(758), + [sym_assignment_expression] = STATE(758), + [sym_pointer_expression] = STATE(944), + [sym_unary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_cast_expression] = STATE(758), + [sym_sizeof_expression] = STATE(758), + [sym_alignof_expression] = STATE(758), + [sym_offsetof_expression] = STATE(758), + [sym_generic_expression] = STATE(758), + [sym_subscript_expression] = STATE(944), + [sym_call_expression] = STATE(944), + [sym_gnu_asm_expression] = STATE(758), + [sym_field_expression] = STATE(944), + [sym_compound_literal_expression] = STATE(758), + [sym_parenthesized_expression] = STATE(944), + [sym_char_literal] = STATE(758), + [sym_concatenated_string] = STATE(758), + [sym_string_literal] = STATE(671), + [sym_null] = STATE(758), + [aux_sym_attributed_declarator_repeat1] = STATE(435), + [sym_identifier] = ACTIONS(1559), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -54459,96 +63025,96 @@ 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(127), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1556), - [anon_sym_LBRACE] = ACTIONS(135), - [anon_sym_if] = ACTIONS(137), - [anon_sym_switch] = ACTIONS(139), - [anon_sym_case] = ACTIONS(141), - [anon_sym_default] = ACTIONS(143), - [anon_sym_while] = ACTIONS(145), - [anon_sym_do] = ACTIONS(147), - [anon_sym_for] = ACTIONS(149), - [anon_sym_return] = ACTIONS(151), - [anon_sym_break] = ACTIONS(153), - [anon_sym_continue] = ACTIONS(155), - [anon_sym_goto] = ACTIONS(157), - [anon_sym___try] = ACTIONS(159), - [anon_sym___leave] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [anon_sym___alignof__] = ACTIONS(89), - [anon_sym___alignof] = ACTIONS(89), - [anon_sym__alignof] = ACTIONS(89), - [anon_sym_alignof] = ACTIONS(89), - [anon_sym__Alignof] = ACTIONS(89), - [anon_sym_offsetof] = ACTIONS(91), - [anon_sym__Generic] = ACTIONS(93), - [anon_sym_asm] = ACTIONS(95), - [anon_sym___asm__] = ACTIONS(95), - [sym_number_literal] = ACTIONS(163), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(165), - [sym_false] = ACTIONS(165), - [anon_sym_NULL] = ACTIONS(105), - [anon_sym_nullptr] = ACTIONS(105), + [anon_sym_SEMI] = ACTIONS(1006), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1561), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_if] = ACTIONS(65), + [anon_sym_switch] = ACTIONS(67), + [anon_sym_case] = ACTIONS(69), + [anon_sym_default] = ACTIONS(71), + [anon_sym_while] = ACTIONS(73), + [anon_sym_do] = ACTIONS(75), + [anon_sym_for] = ACTIONS(77), + [anon_sym_return] = ACTIONS(79), + [anon_sym_break] = ACTIONS(81), + [anon_sym_continue] = ACTIONS(83), + [anon_sym_goto] = ACTIONS(85), + [anon_sym___try] = ACTIONS(1008), + [anon_sym___leave] = ACTIONS(1010), + [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(87), + [anon_sym_sizeof] = ACTIONS(89), + [anon_sym___alignof__] = ACTIONS(91), + [anon_sym___alignof] = ACTIONS(91), + [anon_sym__alignof] = ACTIONS(91), + [anon_sym_alignof] = ACTIONS(91), + [anon_sym__Alignof] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(93), + [anon_sym__Generic] = ACTIONS(95), + [anon_sym_asm] = ACTIONS(97), + [anon_sym___asm__] = ACTIONS(97), + [sym_number_literal] = ACTIONS(165), + [anon_sym_L_SQUOTE] = ACTIONS(101), + [anon_sym_u_SQUOTE] = ACTIONS(101), + [anon_sym_U_SQUOTE] = ACTIONS(101), + [anon_sym_u8_SQUOTE] = ACTIONS(101), + [anon_sym_SQUOTE] = ACTIONS(101), + [anon_sym_L_DQUOTE] = ACTIONS(103), + [anon_sym_u_DQUOTE] = ACTIONS(103), + [anon_sym_U_DQUOTE] = ACTIONS(103), + [anon_sym_u8_DQUOTE] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_true] = ACTIONS(167), + [sym_false] = ACTIONS(167), + [anon_sym_NULL] = ACTIONS(107), + [anon_sym_nullptr] = ACTIONS(107), [sym_comment] = ACTIONS(3), }, - [359] = { - [sym_attribute_declaration] = STATE(373), - [sym_compound_statement] = STATE(174), - [sym_attributed_statement] = STATE(174), - [sym_statement] = STATE(191), - [sym_labeled_statement] = STATE(174), - [sym_expression_statement] = STATE(174), - [sym_if_statement] = STATE(174), - [sym_switch_statement] = STATE(174), - [sym_case_statement] = STATE(174), - [sym_while_statement] = STATE(174), - [sym_do_statement] = STATE(174), - [sym_for_statement] = STATE(174), - [sym_return_statement] = STATE(174), - [sym_break_statement] = STATE(174), - [sym_continue_statement] = STATE(174), - [sym_goto_statement] = STATE(174), - [sym_seh_try_statement] = STATE(174), - [sym_seh_leave_statement] = STATE(174), - [sym_expression] = STATE(1031), - [sym__string] = STATE(663), - [sym_comma_expression] = STATE(1792), - [sym_conditional_expression] = STATE(663), - [sym_assignment_expression] = STATE(663), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(663), - [sym_binary_expression] = STATE(663), - [sym_update_expression] = STATE(663), - [sym_cast_expression] = STATE(663), - [sym_sizeof_expression] = STATE(663), - [sym_alignof_expression] = STATE(663), - [sym_offsetof_expression] = STATE(663), - [sym_generic_expression] = STATE(663), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(663), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(663), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(663), - [sym_concatenated_string] = STATE(663), - [sym_string_literal] = STATE(659), - [sym_null] = STATE(663), - [aux_sym_attributed_declarator_repeat1] = STATE(373), - [sym_identifier] = ACTIONS(1562), + [422] = { + [sym_attribute_declaration] = STATE(442), + [sym_compound_statement] = STATE(290), + [sym_attributed_statement] = STATE(290), + [sym_statement] = STATE(2295), + [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_seh_try_statement] = STATE(290), + [sym_seh_leave_statement] = STATE(290), + [sym_expression] = STATE(1167), + [sym__string] = STATE(758), + [sym_comma_expression] = STATE(2207), + [sym_conditional_expression] = STATE(758), + [sym_assignment_expression] = STATE(758), + [sym_pointer_expression] = STATE(944), + [sym_unary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_cast_expression] = STATE(758), + [sym_sizeof_expression] = STATE(758), + [sym_alignof_expression] = STATE(758), + [sym_offsetof_expression] = STATE(758), + [sym_generic_expression] = STATE(758), + [sym_subscript_expression] = STATE(944), + [sym_call_expression] = STATE(944), + [sym_gnu_asm_expression] = STATE(758), + [sym_field_expression] = STATE(944), + [sym_compound_literal_expression] = STATE(758), + [sym_parenthesized_expression] = STATE(944), + [sym_char_literal] = STATE(758), + [sym_concatenated_string] = STATE(758), + [sym_string_literal] = STATE(671), + [sym_null] = STATE(758), + [aux_sym_attributed_declarator_repeat1] = STATE(442), + [sym_identifier] = ACTIONS(1567), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -54556,193 +63122,96 @@ 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(516), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1556), - [anon_sym_LBRACE] = ACTIONS(524), - [anon_sym_if] = ACTIONS(526), - [anon_sym_switch] = ACTIONS(528), - [anon_sym_case] = ACTIONS(530), - [anon_sym_default] = ACTIONS(532), - [anon_sym_while] = ACTIONS(534), - [anon_sym_do] = ACTIONS(536), - [anon_sym_for] = ACTIONS(538), - [anon_sym_return] = ACTIONS(540), - [anon_sym_break] = ACTIONS(542), - [anon_sym_continue] = ACTIONS(544), - [anon_sym_goto] = ACTIONS(546), - [anon_sym___try] = ACTIONS(548), - [anon_sym___leave] = ACTIONS(550), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [anon_sym___alignof__] = ACTIONS(89), - [anon_sym___alignof] = ACTIONS(89), - [anon_sym__alignof] = ACTIONS(89), - [anon_sym_alignof] = ACTIONS(89), - [anon_sym__Alignof] = ACTIONS(89), - [anon_sym_offsetof] = ACTIONS(91), - [anon_sym__Generic] = ACTIONS(93), - [anon_sym_asm] = ACTIONS(95), - [anon_sym___asm__] = ACTIONS(95), - [sym_number_literal] = ACTIONS(163), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(165), - [sym_false] = ACTIONS(165), - [anon_sym_NULL] = ACTIONS(105), - [anon_sym_nullptr] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - }, - [360] = { - [sym_attribute_declaration] = STATE(360), - [sym_compound_statement] = STATE(93), - [sym_attributed_statement] = STATE(93), - [sym_statement] = STATE(98), - [sym_labeled_statement] = STATE(93), - [sym_expression_statement] = STATE(93), - [sym_if_statement] = STATE(93), - [sym_switch_statement] = STATE(93), - [sym_case_statement] = STATE(93), - [sym_while_statement] = STATE(93), - [sym_do_statement] = STATE(93), - [sym_for_statement] = STATE(93), - [sym_return_statement] = STATE(93), - [sym_break_statement] = STATE(93), - [sym_continue_statement] = STATE(93), - [sym_goto_statement] = STATE(93), - [sym_seh_try_statement] = STATE(93), - [sym_seh_leave_statement] = STATE(93), - [sym_expression] = STATE(1073), - [sym__string] = STATE(663), - [sym_comma_expression] = STATE(1821), - [sym_conditional_expression] = STATE(663), - [sym_assignment_expression] = STATE(663), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(663), - [sym_binary_expression] = STATE(663), - [sym_update_expression] = STATE(663), - [sym_cast_expression] = STATE(663), - [sym_sizeof_expression] = STATE(663), - [sym_alignof_expression] = STATE(663), - [sym_offsetof_expression] = STATE(663), - [sym_generic_expression] = STATE(663), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(663), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(663), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(663), - [sym_concatenated_string] = STATE(663), - [sym_string_literal] = STATE(659), - [sym_null] = STATE(663), - [aux_sym_attributed_declarator_repeat1] = STATE(360), - [sym_identifier] = ACTIONS(1618), - [anon_sym_LPAREN2] = ACTIONS(1434), - [anon_sym_BANG] = ACTIONS(1437), - [anon_sym_TILDE] = ACTIONS(1437), - [anon_sym_DASH] = ACTIONS(1440), - [anon_sym_PLUS] = ACTIONS(1440), - [anon_sym_STAR] = ACTIONS(1443), - [anon_sym_AMP] = ACTIONS(1443), - [anon_sym_SEMI] = ACTIONS(1621), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1449), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_if] = ACTIONS(1627), - [anon_sym_switch] = ACTIONS(1630), - [anon_sym_case] = ACTIONS(1633), - [anon_sym_default] = ACTIONS(1636), - [anon_sym_while] = ACTIONS(1639), - [anon_sym_do] = ACTIONS(1642), - [anon_sym_for] = ACTIONS(1645), - [anon_sym_return] = ACTIONS(1648), - [anon_sym_break] = ACTIONS(1651), - [anon_sym_continue] = ACTIONS(1654), - [anon_sym_goto] = ACTIONS(1657), - [anon_sym___try] = ACTIONS(1660), - [anon_sym___leave] = ACTIONS(1663), - [anon_sym_DASH_DASH] = ACTIONS(1494), - [anon_sym_PLUS_PLUS] = ACTIONS(1494), - [anon_sym_sizeof] = ACTIONS(1497), - [anon_sym___alignof__] = ACTIONS(1500), - [anon_sym___alignof] = ACTIONS(1500), - [anon_sym__alignof] = ACTIONS(1500), - [anon_sym_alignof] = ACTIONS(1500), - [anon_sym__Alignof] = ACTIONS(1500), - [anon_sym_offsetof] = ACTIONS(1503), - [anon_sym__Generic] = ACTIONS(1506), - [anon_sym_asm] = ACTIONS(1509), - [anon_sym___asm__] = ACTIONS(1509), - [sym_number_literal] = ACTIONS(1512), - [anon_sym_L_SQUOTE] = ACTIONS(1515), - [anon_sym_u_SQUOTE] = ACTIONS(1515), - [anon_sym_U_SQUOTE] = ACTIONS(1515), - [anon_sym_u8_SQUOTE] = ACTIONS(1515), - [anon_sym_SQUOTE] = ACTIONS(1515), - [anon_sym_L_DQUOTE] = ACTIONS(1518), - [anon_sym_u_DQUOTE] = ACTIONS(1518), - [anon_sym_U_DQUOTE] = ACTIONS(1518), - [anon_sym_u8_DQUOTE] = ACTIONS(1518), - [anon_sym_DQUOTE] = ACTIONS(1518), - [sym_true] = ACTIONS(1521), - [sym_false] = ACTIONS(1521), - [anon_sym_NULL] = ACTIONS(1524), - [anon_sym_nullptr] = ACTIONS(1524), + [anon_sym_SEMI] = ACTIONS(383), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1561), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_if] = ACTIONS(1118), + [anon_sym_switch] = ACTIONS(67), + [anon_sym_case] = ACTIONS(1569), + [anon_sym_default] = ACTIONS(1571), + [anon_sym_while] = ACTIONS(1120), + [anon_sym_do] = ACTIONS(75), + [anon_sym_for] = ACTIONS(1122), + [anon_sym_return] = ACTIONS(79), + [anon_sym_break] = ACTIONS(81), + [anon_sym_continue] = ACTIONS(83), + [anon_sym_goto] = ACTIONS(85), + [anon_sym___try] = ACTIONS(1124), + [anon_sym___leave] = ACTIONS(419), + [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(87), + [anon_sym_sizeof] = ACTIONS(89), + [anon_sym___alignof__] = ACTIONS(91), + [anon_sym___alignof] = ACTIONS(91), + [anon_sym__alignof] = ACTIONS(91), + [anon_sym_alignof] = ACTIONS(91), + [anon_sym__Alignof] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(93), + [anon_sym__Generic] = ACTIONS(95), + [anon_sym_asm] = ACTIONS(97), + [anon_sym___asm__] = ACTIONS(97), + [sym_number_literal] = ACTIONS(165), + [anon_sym_L_SQUOTE] = ACTIONS(101), + [anon_sym_u_SQUOTE] = ACTIONS(101), + [anon_sym_U_SQUOTE] = ACTIONS(101), + [anon_sym_u8_SQUOTE] = ACTIONS(101), + [anon_sym_SQUOTE] = ACTIONS(101), + [anon_sym_L_DQUOTE] = ACTIONS(103), + [anon_sym_u_DQUOTE] = ACTIONS(103), + [anon_sym_U_DQUOTE] = ACTIONS(103), + [anon_sym_u8_DQUOTE] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_true] = ACTIONS(167), + [sym_false] = ACTIONS(167), + [anon_sym_NULL] = ACTIONS(107), + [anon_sym_nullptr] = ACTIONS(107), [sym_comment] = ACTIONS(3), }, - [361] = { - [sym_attribute_declaration] = STATE(348), - [sym_compound_statement] = STATE(232), - [sym_attributed_statement] = STATE(232), - [sym_statement] = STATE(237), - [sym_labeled_statement] = STATE(232), - [sym_expression_statement] = STATE(232), - [sym_if_statement] = STATE(232), - [sym_switch_statement] = STATE(232), - [sym_case_statement] = STATE(232), - [sym_while_statement] = STATE(232), - [sym_do_statement] = STATE(232), - [sym_for_statement] = STATE(232), - [sym_return_statement] = STATE(232), - [sym_break_statement] = STATE(232), - [sym_continue_statement] = STATE(232), - [sym_goto_statement] = STATE(232), - [sym_seh_try_statement] = STATE(232), - [sym_seh_leave_statement] = STATE(232), - [sym_expression] = STATE(1060), - [sym__string] = STATE(663), - [sym_comma_expression] = STATE(1853), - [sym_conditional_expression] = STATE(663), - [sym_assignment_expression] = STATE(663), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(663), - [sym_binary_expression] = STATE(663), - [sym_update_expression] = STATE(663), - [sym_cast_expression] = STATE(663), - [sym_sizeof_expression] = STATE(663), - [sym_alignof_expression] = STATE(663), - [sym_offsetof_expression] = STATE(663), - [sym_generic_expression] = STATE(663), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(663), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(663), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(663), - [sym_concatenated_string] = STATE(663), - [sym_string_literal] = STATE(659), - [sym_null] = STATE(663), - [aux_sym_attributed_declarator_repeat1] = STATE(348), - [sym_identifier] = ACTIONS(1612), + [423] = { + [sym_attribute_declaration] = STATE(439), + [sym_compound_statement] = STATE(77), + [sym_attributed_statement] = STATE(77), + [sym_statement] = STATE(82), + [sym_labeled_statement] = STATE(77), + [sym_expression_statement] = STATE(77), + [sym_if_statement] = STATE(77), + [sym_switch_statement] = STATE(77), + [sym_case_statement] = STATE(77), + [sym_while_statement] = STATE(77), + [sym_do_statement] = STATE(77), + [sym_for_statement] = STATE(77), + [sym_return_statement] = STATE(77), + [sym_break_statement] = STATE(77), + [sym_continue_statement] = STATE(77), + [sym_goto_statement] = STATE(77), + [sym_seh_try_statement] = STATE(77), + [sym_seh_leave_statement] = STATE(77), + [sym_expression] = STATE(1157), + [sym__string] = STATE(758), + [sym_comma_expression] = STATE(2232), + [sym_conditional_expression] = STATE(758), + [sym_assignment_expression] = STATE(758), + [sym_pointer_expression] = STATE(944), + [sym_unary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_cast_expression] = STATE(758), + [sym_sizeof_expression] = STATE(758), + [sym_alignof_expression] = STATE(758), + [sym_offsetof_expression] = STATE(758), + [sym_generic_expression] = STATE(758), + [sym_subscript_expression] = STATE(944), + [sym_call_expression] = STATE(944), + [sym_gnu_asm_expression] = STATE(758), + [sym_field_expression] = STATE(944), + [sym_compound_literal_expression] = STATE(758), + [sym_parenthesized_expression] = STATE(944), + [sym_char_literal] = STATE(758), + [sym_concatenated_string] = STATE(758), + [sym_string_literal] = STATE(671), + [sym_null] = STATE(758), + [aux_sym_attributed_declarator_repeat1] = STATE(439), + [sym_identifier] = ACTIONS(1621), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -54750,96 +63219,96 @@ 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(996), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1556), - [anon_sym_LBRACE] = ACTIONS(45), - [anon_sym_if] = ACTIONS(63), - [anon_sym_switch] = ACTIONS(65), - [anon_sym_case] = ACTIONS(67), - [anon_sym_default] = ACTIONS(69), - [anon_sym_while] = ACTIONS(71), - [anon_sym_do] = ACTIONS(73), - [anon_sym_for] = ACTIONS(75), - [anon_sym_return] = ACTIONS(77), - [anon_sym_break] = ACTIONS(79), - [anon_sym_continue] = ACTIONS(81), - [anon_sym_goto] = ACTIONS(83), - [anon_sym___try] = ACTIONS(998), - [anon_sym___leave] = ACTIONS(1000), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [anon_sym___alignof__] = ACTIONS(89), - [anon_sym___alignof] = ACTIONS(89), - [anon_sym__alignof] = ACTIONS(89), - [anon_sym_alignof] = ACTIONS(89), - [anon_sym__Alignof] = ACTIONS(89), - [anon_sym_offsetof] = ACTIONS(91), - [anon_sym__Generic] = ACTIONS(93), - [anon_sym_asm] = ACTIONS(95), - [anon_sym___asm__] = ACTIONS(95), - [sym_number_literal] = ACTIONS(163), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(165), - [sym_false] = ACTIONS(165), - [anon_sym_NULL] = ACTIONS(105), - [anon_sym_nullptr] = ACTIONS(105), + [anon_sym_SEMI] = ACTIONS(129), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1561), + [anon_sym_LBRACE] = ACTIONS(137), + [anon_sym_if] = ACTIONS(139), + [anon_sym_switch] = ACTIONS(141), + [anon_sym_case] = ACTIONS(143), + [anon_sym_default] = ACTIONS(145), + [anon_sym_while] = ACTIONS(147), + [anon_sym_do] = ACTIONS(149), + [anon_sym_for] = ACTIONS(151), + [anon_sym_return] = ACTIONS(153), + [anon_sym_break] = ACTIONS(155), + [anon_sym_continue] = ACTIONS(157), + [anon_sym_goto] = ACTIONS(159), + [anon_sym___try] = ACTIONS(161), + [anon_sym___leave] = ACTIONS(163), + [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(87), + [anon_sym_sizeof] = ACTIONS(89), + [anon_sym___alignof__] = ACTIONS(91), + [anon_sym___alignof] = ACTIONS(91), + [anon_sym__alignof] = ACTIONS(91), + [anon_sym_alignof] = ACTIONS(91), + [anon_sym__Alignof] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(93), + [anon_sym__Generic] = ACTIONS(95), + [anon_sym_asm] = ACTIONS(97), + [anon_sym___asm__] = ACTIONS(97), + [sym_number_literal] = ACTIONS(165), + [anon_sym_L_SQUOTE] = ACTIONS(101), + [anon_sym_u_SQUOTE] = ACTIONS(101), + [anon_sym_U_SQUOTE] = ACTIONS(101), + [anon_sym_u8_SQUOTE] = ACTIONS(101), + [anon_sym_SQUOTE] = ACTIONS(101), + [anon_sym_L_DQUOTE] = ACTIONS(103), + [anon_sym_u_DQUOTE] = ACTIONS(103), + [anon_sym_U_DQUOTE] = ACTIONS(103), + [anon_sym_u8_DQUOTE] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_true] = ACTIONS(167), + [sym_false] = ACTIONS(167), + [anon_sym_NULL] = ACTIONS(107), + [anon_sym_nullptr] = ACTIONS(107), [sym_comment] = ACTIONS(3), }, - [362] = { - [sym_attribute_declaration] = STATE(365), - [sym_compound_statement] = STATE(93), - [sym_attributed_statement] = STATE(93), - [sym_statement] = STATE(85), - [sym_labeled_statement] = STATE(93), - [sym_expression_statement] = STATE(93), - [sym_if_statement] = STATE(93), - [sym_switch_statement] = STATE(93), - [sym_case_statement] = STATE(93), - [sym_while_statement] = STATE(93), - [sym_do_statement] = STATE(93), - [sym_for_statement] = STATE(93), - [sym_return_statement] = STATE(93), - [sym_break_statement] = STATE(93), - [sym_continue_statement] = STATE(93), - [sym_goto_statement] = STATE(93), - [sym_seh_try_statement] = STATE(93), - [sym_seh_leave_statement] = STATE(93), - [sym_expression] = STATE(1073), - [sym__string] = STATE(663), - [sym_comma_expression] = STATE(1821), - [sym_conditional_expression] = STATE(663), - [sym_assignment_expression] = STATE(663), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(663), - [sym_binary_expression] = STATE(663), - [sym_update_expression] = STATE(663), - [sym_cast_expression] = STATE(663), - [sym_sizeof_expression] = STATE(663), - [sym_alignof_expression] = STATE(663), - [sym_offsetof_expression] = STATE(663), - [sym_generic_expression] = STATE(663), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(663), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(663), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(663), - [sym_concatenated_string] = STATE(663), - [sym_string_literal] = STATE(659), - [sym_null] = STATE(663), - [aux_sym_attributed_declarator_repeat1] = STATE(365), - [sym_identifier] = ACTIONS(1614), + [424] = { + [sym_attribute_declaration] = STATE(439), + [sym_compound_statement] = STATE(77), + [sym_attributed_statement] = STATE(77), + [sym_statement] = STATE(75), + [sym_labeled_statement] = STATE(77), + [sym_expression_statement] = STATE(77), + [sym_if_statement] = STATE(77), + [sym_switch_statement] = STATE(77), + [sym_case_statement] = STATE(77), + [sym_while_statement] = STATE(77), + [sym_do_statement] = STATE(77), + [sym_for_statement] = STATE(77), + [sym_return_statement] = STATE(77), + [sym_break_statement] = STATE(77), + [sym_continue_statement] = STATE(77), + [sym_goto_statement] = STATE(77), + [sym_seh_try_statement] = STATE(77), + [sym_seh_leave_statement] = STATE(77), + [sym_expression] = STATE(1157), + [sym__string] = STATE(758), + [sym_comma_expression] = STATE(2232), + [sym_conditional_expression] = STATE(758), + [sym_assignment_expression] = STATE(758), + [sym_pointer_expression] = STATE(944), + [sym_unary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_cast_expression] = STATE(758), + [sym_sizeof_expression] = STATE(758), + [sym_alignof_expression] = STATE(758), + [sym_offsetof_expression] = STATE(758), + [sym_generic_expression] = STATE(758), + [sym_subscript_expression] = STATE(944), + [sym_call_expression] = STATE(944), + [sym_gnu_asm_expression] = STATE(758), + [sym_field_expression] = STATE(944), + [sym_compound_literal_expression] = STATE(758), + [sym_parenthesized_expression] = STATE(944), + [sym_char_literal] = STATE(758), + [sym_concatenated_string] = STATE(758), + [sym_string_literal] = STATE(671), + [sym_null] = STATE(758), + [aux_sym_attributed_declarator_repeat1] = STATE(439), + [sym_identifier] = ACTIONS(1621), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -54847,96 +63316,193 @@ 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(127), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1556), - [anon_sym_LBRACE] = ACTIONS(135), - [anon_sym_if] = ACTIONS(137), - [anon_sym_switch] = ACTIONS(139), - [anon_sym_case] = ACTIONS(141), - [anon_sym_default] = ACTIONS(143), - [anon_sym_while] = ACTIONS(145), - [anon_sym_do] = ACTIONS(147), - [anon_sym_for] = ACTIONS(149), - [anon_sym_return] = ACTIONS(151), - [anon_sym_break] = ACTIONS(153), - [anon_sym_continue] = ACTIONS(155), - [anon_sym_goto] = ACTIONS(157), - [anon_sym___try] = ACTIONS(159), - [anon_sym___leave] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [anon_sym___alignof__] = ACTIONS(89), - [anon_sym___alignof] = ACTIONS(89), - [anon_sym__alignof] = ACTIONS(89), - [anon_sym_alignof] = ACTIONS(89), - [anon_sym__Alignof] = ACTIONS(89), - [anon_sym_offsetof] = ACTIONS(91), - [anon_sym__Generic] = ACTIONS(93), - [anon_sym_asm] = ACTIONS(95), - [anon_sym___asm__] = ACTIONS(95), - [sym_number_literal] = ACTIONS(163), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(165), - [sym_false] = ACTIONS(165), - [anon_sym_NULL] = ACTIONS(105), - [anon_sym_nullptr] = ACTIONS(105), + [anon_sym_SEMI] = ACTIONS(129), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1561), + [anon_sym_LBRACE] = ACTIONS(137), + [anon_sym_if] = ACTIONS(139), + [anon_sym_switch] = ACTIONS(141), + [anon_sym_case] = ACTIONS(143), + [anon_sym_default] = ACTIONS(145), + [anon_sym_while] = ACTIONS(147), + [anon_sym_do] = ACTIONS(149), + [anon_sym_for] = ACTIONS(151), + [anon_sym_return] = ACTIONS(153), + [anon_sym_break] = ACTIONS(155), + [anon_sym_continue] = ACTIONS(157), + [anon_sym_goto] = ACTIONS(159), + [anon_sym___try] = ACTIONS(161), + [anon_sym___leave] = ACTIONS(163), + [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(87), + [anon_sym_sizeof] = ACTIONS(89), + [anon_sym___alignof__] = ACTIONS(91), + [anon_sym___alignof] = ACTIONS(91), + [anon_sym__alignof] = ACTIONS(91), + [anon_sym_alignof] = ACTIONS(91), + [anon_sym__Alignof] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(93), + [anon_sym__Generic] = ACTIONS(95), + [anon_sym_asm] = ACTIONS(97), + [anon_sym___asm__] = ACTIONS(97), + [sym_number_literal] = ACTIONS(165), + [anon_sym_L_SQUOTE] = ACTIONS(101), + [anon_sym_u_SQUOTE] = ACTIONS(101), + [anon_sym_U_SQUOTE] = ACTIONS(101), + [anon_sym_u8_SQUOTE] = ACTIONS(101), + [anon_sym_SQUOTE] = ACTIONS(101), + [anon_sym_L_DQUOTE] = ACTIONS(103), + [anon_sym_u_DQUOTE] = ACTIONS(103), + [anon_sym_U_DQUOTE] = ACTIONS(103), + [anon_sym_u8_DQUOTE] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_true] = ACTIONS(167), + [sym_false] = ACTIONS(167), + [anon_sym_NULL] = ACTIONS(107), + [anon_sym_nullptr] = ACTIONS(107), [sym_comment] = ACTIONS(3), }, - [363] = { - [sym_attribute_declaration] = STATE(373), - [sym_compound_statement] = STATE(174), - [sym_attributed_statement] = STATE(174), - [sym_statement] = STATE(143), - [sym_labeled_statement] = STATE(174), - [sym_expression_statement] = STATE(174), - [sym_if_statement] = STATE(174), - [sym_switch_statement] = STATE(174), - [sym_case_statement] = STATE(174), - [sym_while_statement] = STATE(174), - [sym_do_statement] = STATE(174), - [sym_for_statement] = STATE(174), - [sym_return_statement] = STATE(174), - [sym_break_statement] = STATE(174), - [sym_continue_statement] = STATE(174), - [sym_goto_statement] = STATE(174), - [sym_seh_try_statement] = STATE(174), - [sym_seh_leave_statement] = STATE(174), - [sym_expression] = STATE(1031), - [sym__string] = STATE(663), - [sym_comma_expression] = STATE(1792), - [sym_conditional_expression] = STATE(663), - [sym_assignment_expression] = STATE(663), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(663), - [sym_binary_expression] = STATE(663), - [sym_update_expression] = STATE(663), - [sym_cast_expression] = STATE(663), - [sym_sizeof_expression] = STATE(663), - [sym_alignof_expression] = STATE(663), - [sym_offsetof_expression] = STATE(663), - [sym_generic_expression] = STATE(663), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(663), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(663), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(663), - [sym_concatenated_string] = STATE(663), - [sym_string_literal] = STATE(659), - [sym_null] = STATE(663), - [aux_sym_attributed_declarator_repeat1] = STATE(373), - [sym_identifier] = ACTIONS(1562), + [425] = { + [sym_attribute_declaration] = STATE(425), + [sym_compound_statement] = STATE(290), + [sym_attributed_statement] = STATE(290), + [sym_statement] = STATE(188), + [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_seh_try_statement] = STATE(290), + [sym_seh_leave_statement] = STATE(290), + [sym_expression] = STATE(1167), + [sym__string] = STATE(758), + [sym_comma_expression] = STATE(2207), + [sym_conditional_expression] = STATE(758), + [sym_assignment_expression] = STATE(758), + [sym_pointer_expression] = STATE(944), + [sym_unary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_cast_expression] = STATE(758), + [sym_sizeof_expression] = STATE(758), + [sym_alignof_expression] = STATE(758), + [sym_offsetof_expression] = STATE(758), + [sym_generic_expression] = STATE(758), + [sym_subscript_expression] = STATE(944), + [sym_call_expression] = STATE(944), + [sym_gnu_asm_expression] = STATE(758), + [sym_field_expression] = STATE(944), + [sym_compound_literal_expression] = STATE(758), + [sym_parenthesized_expression] = STATE(944), + [sym_char_literal] = STATE(758), + [sym_concatenated_string] = STATE(758), + [sym_string_literal] = STATE(671), + [sym_null] = STATE(758), + [aux_sym_attributed_declarator_repeat1] = STATE(425), + [sym_identifier] = ACTIONS(1623), + [anon_sym_LPAREN2] = ACTIONS(1466), + [anon_sym_BANG] = ACTIONS(1469), + [anon_sym_TILDE] = ACTIONS(1469), + [anon_sym_DASH] = ACTIONS(1472), + [anon_sym_PLUS] = ACTIONS(1472), + [anon_sym_STAR] = ACTIONS(1475), + [anon_sym_AMP] = ACTIONS(1475), + [anon_sym_SEMI] = ACTIONS(1478), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1481), + [anon_sym_LBRACE] = ACTIONS(1626), + [anon_sym_if] = ACTIONS(1629), + [anon_sym_switch] = ACTIONS(1632), + [anon_sym_case] = ACTIONS(1635), + [anon_sym_default] = ACTIONS(1638), + [anon_sym_while] = ACTIONS(1641), + [anon_sym_do] = ACTIONS(1644), + [anon_sym_for] = ACTIONS(1647), + [anon_sym_return] = ACTIONS(1650), + [anon_sym_break] = ACTIONS(1653), + [anon_sym_continue] = ACTIONS(1656), + [anon_sym_goto] = ACTIONS(1659), + [anon_sym___try] = ACTIONS(1662), + [anon_sym___leave] = ACTIONS(1523), + [anon_sym_DASH_DASH] = ACTIONS(1526), + [anon_sym_PLUS_PLUS] = ACTIONS(1526), + [anon_sym_sizeof] = ACTIONS(1529), + [anon_sym___alignof__] = ACTIONS(1532), + [anon_sym___alignof] = ACTIONS(1532), + [anon_sym__alignof] = ACTIONS(1532), + [anon_sym_alignof] = ACTIONS(1532), + [anon_sym__Alignof] = ACTIONS(1532), + [anon_sym_offsetof] = ACTIONS(1535), + [anon_sym__Generic] = ACTIONS(1538), + [anon_sym_asm] = ACTIONS(1541), + [anon_sym___asm__] = ACTIONS(1541), + [sym_number_literal] = ACTIONS(1544), + [anon_sym_L_SQUOTE] = ACTIONS(1547), + [anon_sym_u_SQUOTE] = ACTIONS(1547), + [anon_sym_U_SQUOTE] = ACTIONS(1547), + [anon_sym_u8_SQUOTE] = ACTIONS(1547), + [anon_sym_SQUOTE] = ACTIONS(1547), + [anon_sym_L_DQUOTE] = ACTIONS(1550), + [anon_sym_u_DQUOTE] = ACTIONS(1550), + [anon_sym_U_DQUOTE] = ACTIONS(1550), + [anon_sym_u8_DQUOTE] = ACTIONS(1550), + [anon_sym_DQUOTE] = ACTIONS(1550), + [sym_true] = ACTIONS(1553), + [sym_false] = ACTIONS(1553), + [anon_sym_NULL] = ACTIONS(1556), + [anon_sym_nullptr] = ACTIONS(1556), + [sym_comment] = ACTIONS(3), + }, + [426] = { + [sym_attribute_declaration] = STATE(442), + [sym_compound_statement] = STATE(290), + [sym_attributed_statement] = STATE(290), + [sym_statement] = STATE(224), + [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_seh_try_statement] = STATE(290), + [sym_seh_leave_statement] = STATE(290), + [sym_expression] = STATE(1167), + [sym__string] = STATE(758), + [sym_comma_expression] = STATE(2207), + [sym_conditional_expression] = STATE(758), + [sym_assignment_expression] = STATE(758), + [sym_pointer_expression] = STATE(944), + [sym_unary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_cast_expression] = STATE(758), + [sym_sizeof_expression] = STATE(758), + [sym_alignof_expression] = STATE(758), + [sym_offsetof_expression] = STATE(758), + [sym_generic_expression] = STATE(758), + [sym_subscript_expression] = STATE(944), + [sym_call_expression] = STATE(944), + [sym_gnu_asm_expression] = STATE(758), + [sym_field_expression] = STATE(944), + [sym_compound_literal_expression] = STATE(758), + [sym_parenthesized_expression] = STATE(944), + [sym_char_literal] = STATE(758), + [sym_concatenated_string] = STATE(758), + [sym_string_literal] = STATE(671), + [sym_null] = STATE(758), + [aux_sym_attributed_declarator_repeat1] = STATE(442), + [sym_identifier] = ACTIONS(1567), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -54944,96 +63510,193 @@ 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(516), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1556), - [anon_sym_LBRACE] = ACTIONS(524), - [anon_sym_if] = ACTIONS(526), - [anon_sym_switch] = ACTIONS(528), - [anon_sym_case] = ACTIONS(530), - [anon_sym_default] = ACTIONS(532), - [anon_sym_while] = ACTIONS(534), - [anon_sym_do] = ACTIONS(536), - [anon_sym_for] = ACTIONS(538), - [anon_sym_return] = ACTIONS(540), - [anon_sym_break] = ACTIONS(542), - [anon_sym_continue] = ACTIONS(544), - [anon_sym_goto] = ACTIONS(546), - [anon_sym___try] = ACTIONS(548), - [anon_sym___leave] = ACTIONS(550), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [anon_sym___alignof__] = ACTIONS(89), - [anon_sym___alignof] = ACTIONS(89), - [anon_sym__alignof] = ACTIONS(89), - [anon_sym_alignof] = ACTIONS(89), - [anon_sym__Alignof] = ACTIONS(89), - [anon_sym_offsetof] = ACTIONS(91), - [anon_sym__Generic] = ACTIONS(93), - [anon_sym_asm] = ACTIONS(95), - [anon_sym___asm__] = ACTIONS(95), - [sym_number_literal] = ACTIONS(163), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(165), - [sym_false] = ACTIONS(165), - [anon_sym_NULL] = ACTIONS(105), - [anon_sym_nullptr] = ACTIONS(105), + [anon_sym_SEMI] = ACTIONS(383), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1561), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_if] = ACTIONS(1118), + [anon_sym_switch] = ACTIONS(67), + [anon_sym_case] = ACTIONS(1569), + [anon_sym_default] = ACTIONS(1571), + [anon_sym_while] = ACTIONS(1120), + [anon_sym_do] = ACTIONS(75), + [anon_sym_for] = ACTIONS(1122), + [anon_sym_return] = ACTIONS(79), + [anon_sym_break] = ACTIONS(81), + [anon_sym_continue] = ACTIONS(83), + [anon_sym_goto] = ACTIONS(85), + [anon_sym___try] = ACTIONS(1124), + [anon_sym___leave] = ACTIONS(419), + [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(87), + [anon_sym_sizeof] = ACTIONS(89), + [anon_sym___alignof__] = ACTIONS(91), + [anon_sym___alignof] = ACTIONS(91), + [anon_sym__alignof] = ACTIONS(91), + [anon_sym_alignof] = ACTIONS(91), + [anon_sym__Alignof] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(93), + [anon_sym__Generic] = ACTIONS(95), + [anon_sym_asm] = ACTIONS(97), + [anon_sym___asm__] = ACTIONS(97), + [sym_number_literal] = ACTIONS(165), + [anon_sym_L_SQUOTE] = ACTIONS(101), + [anon_sym_u_SQUOTE] = ACTIONS(101), + [anon_sym_U_SQUOTE] = ACTIONS(101), + [anon_sym_u8_SQUOTE] = ACTIONS(101), + [anon_sym_SQUOTE] = ACTIONS(101), + [anon_sym_L_DQUOTE] = ACTIONS(103), + [anon_sym_u_DQUOTE] = ACTIONS(103), + [anon_sym_U_DQUOTE] = ACTIONS(103), + [anon_sym_u8_DQUOTE] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_true] = ACTIONS(167), + [sym_false] = ACTIONS(167), + [anon_sym_NULL] = ACTIONS(107), + [anon_sym_nullptr] = ACTIONS(107), [sym_comment] = ACTIONS(3), }, - [364] = { - [sym_attribute_declaration] = STATE(348), - [sym_compound_statement] = STATE(232), - [sym_attributed_statement] = STATE(232), - [sym_statement] = STATE(239), - [sym_labeled_statement] = STATE(232), - [sym_expression_statement] = STATE(232), - [sym_if_statement] = STATE(232), - [sym_switch_statement] = STATE(232), - [sym_case_statement] = STATE(232), - [sym_while_statement] = STATE(232), - [sym_do_statement] = STATE(232), - [sym_for_statement] = STATE(232), - [sym_return_statement] = STATE(232), - [sym_break_statement] = STATE(232), - [sym_continue_statement] = STATE(232), - [sym_goto_statement] = STATE(232), - [sym_seh_try_statement] = STATE(232), - [sym_seh_leave_statement] = STATE(232), - [sym_expression] = STATE(1060), - [sym__string] = STATE(663), - [sym_comma_expression] = STATE(1853), - [sym_conditional_expression] = STATE(663), - [sym_assignment_expression] = STATE(663), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(663), - [sym_binary_expression] = STATE(663), - [sym_update_expression] = STATE(663), - [sym_cast_expression] = STATE(663), - [sym_sizeof_expression] = STATE(663), - [sym_alignof_expression] = STATE(663), - [sym_offsetof_expression] = STATE(663), - [sym_generic_expression] = STATE(663), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(663), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(663), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(663), - [sym_concatenated_string] = STATE(663), - [sym_string_literal] = STATE(659), - [sym_null] = STATE(663), - [aux_sym_attributed_declarator_repeat1] = STATE(348), - [sym_identifier] = ACTIONS(1612), + [427] = { + [sym_attribute_declaration] = STATE(427), + [sym_compound_statement] = STATE(205), + [sym_attributed_statement] = STATE(205), + [sym_statement] = STATE(212), + [sym_labeled_statement] = STATE(205), + [sym_expression_statement] = STATE(205), + [sym_if_statement] = STATE(205), + [sym_switch_statement] = STATE(205), + [sym_case_statement] = STATE(205), + [sym_while_statement] = STATE(205), + [sym_do_statement] = STATE(205), + [sym_for_statement] = STATE(205), + [sym_return_statement] = STATE(205), + [sym_break_statement] = STATE(205), + [sym_continue_statement] = STATE(205), + [sym_goto_statement] = STATE(205), + [sym_seh_try_statement] = STATE(205), + [sym_seh_leave_statement] = STATE(205), + [sym_expression] = STATE(1193), + [sym__string] = STATE(758), + [sym_comma_expression] = STATE(2067), + [sym_conditional_expression] = STATE(758), + [sym_assignment_expression] = STATE(758), + [sym_pointer_expression] = STATE(944), + [sym_unary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_cast_expression] = STATE(758), + [sym_sizeof_expression] = STATE(758), + [sym_alignof_expression] = STATE(758), + [sym_offsetof_expression] = STATE(758), + [sym_generic_expression] = STATE(758), + [sym_subscript_expression] = STATE(944), + [sym_call_expression] = STATE(944), + [sym_gnu_asm_expression] = STATE(758), + [sym_field_expression] = STATE(944), + [sym_compound_literal_expression] = STATE(758), + [sym_parenthesized_expression] = STATE(944), + [sym_char_literal] = STATE(758), + [sym_concatenated_string] = STATE(758), + [sym_string_literal] = STATE(671), + [sym_null] = STATE(758), + [aux_sym_attributed_declarator_repeat1] = STATE(427), + [sym_identifier] = ACTIONS(1665), + [anon_sym_LPAREN2] = ACTIONS(1466), + [anon_sym_BANG] = ACTIONS(1469), + [anon_sym_TILDE] = ACTIONS(1469), + [anon_sym_DASH] = ACTIONS(1472), + [anon_sym_PLUS] = ACTIONS(1472), + [anon_sym_STAR] = ACTIONS(1475), + [anon_sym_AMP] = ACTIONS(1475), + [anon_sym_SEMI] = ACTIONS(1668), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1481), + [anon_sym_LBRACE] = ACTIONS(1671), + [anon_sym_if] = ACTIONS(1674), + [anon_sym_switch] = ACTIONS(1677), + [anon_sym_case] = ACTIONS(1680), + [anon_sym_default] = ACTIONS(1683), + [anon_sym_while] = ACTIONS(1686), + [anon_sym_do] = ACTIONS(1689), + [anon_sym_for] = ACTIONS(1692), + [anon_sym_return] = ACTIONS(1695), + [anon_sym_break] = ACTIONS(1698), + [anon_sym_continue] = ACTIONS(1701), + [anon_sym_goto] = ACTIONS(1704), + [anon_sym___try] = ACTIONS(1707), + [anon_sym___leave] = ACTIONS(1710), + [anon_sym_DASH_DASH] = ACTIONS(1526), + [anon_sym_PLUS_PLUS] = ACTIONS(1526), + [anon_sym_sizeof] = ACTIONS(1529), + [anon_sym___alignof__] = ACTIONS(1532), + [anon_sym___alignof] = ACTIONS(1532), + [anon_sym__alignof] = ACTIONS(1532), + [anon_sym_alignof] = ACTIONS(1532), + [anon_sym__Alignof] = ACTIONS(1532), + [anon_sym_offsetof] = ACTIONS(1535), + [anon_sym__Generic] = ACTIONS(1538), + [anon_sym_asm] = ACTIONS(1541), + [anon_sym___asm__] = ACTIONS(1541), + [sym_number_literal] = ACTIONS(1544), + [anon_sym_L_SQUOTE] = ACTIONS(1547), + [anon_sym_u_SQUOTE] = ACTIONS(1547), + [anon_sym_U_SQUOTE] = ACTIONS(1547), + [anon_sym_u8_SQUOTE] = ACTIONS(1547), + [anon_sym_SQUOTE] = ACTIONS(1547), + [anon_sym_L_DQUOTE] = ACTIONS(1550), + [anon_sym_u_DQUOTE] = ACTIONS(1550), + [anon_sym_U_DQUOTE] = ACTIONS(1550), + [anon_sym_u8_DQUOTE] = ACTIONS(1550), + [anon_sym_DQUOTE] = ACTIONS(1550), + [sym_true] = ACTIONS(1553), + [sym_false] = ACTIONS(1553), + [anon_sym_NULL] = ACTIONS(1556), + [anon_sym_nullptr] = ACTIONS(1556), + [sym_comment] = ACTIONS(3), + }, + [428] = { + [sym_attribute_declaration] = STATE(425), + [sym_compound_statement] = STATE(290), + [sym_attributed_statement] = STATE(290), + [sym_statement] = STATE(188), + [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_seh_try_statement] = STATE(290), + [sym_seh_leave_statement] = STATE(290), + [sym_expression] = STATE(1167), + [sym__string] = STATE(758), + [sym_comma_expression] = STATE(2207), + [sym_conditional_expression] = STATE(758), + [sym_assignment_expression] = STATE(758), + [sym_pointer_expression] = STATE(944), + [sym_unary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_cast_expression] = STATE(758), + [sym_sizeof_expression] = STATE(758), + [sym_alignof_expression] = STATE(758), + [sym_offsetof_expression] = STATE(758), + [sym_generic_expression] = STATE(758), + [sym_subscript_expression] = STATE(944), + [sym_call_expression] = STATE(944), + [sym_gnu_asm_expression] = STATE(758), + [sym_field_expression] = STATE(944), + [sym_compound_literal_expression] = STATE(758), + [sym_parenthesized_expression] = STATE(944), + [sym_char_literal] = STATE(758), + [sym_concatenated_string] = STATE(758), + [sym_string_literal] = STATE(671), + [sym_null] = STATE(758), + [aux_sym_attributed_declarator_repeat1] = STATE(425), + [sym_identifier] = ACTIONS(1563), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -55041,96 +63704,96 @@ 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(996), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1556), - [anon_sym_LBRACE] = ACTIONS(45), - [anon_sym_if] = ACTIONS(63), - [anon_sym_switch] = ACTIONS(65), - [anon_sym_case] = ACTIONS(67), - [anon_sym_default] = ACTIONS(69), - [anon_sym_while] = ACTIONS(71), - [anon_sym_do] = ACTIONS(73), - [anon_sym_for] = ACTIONS(75), - [anon_sym_return] = ACTIONS(77), - [anon_sym_break] = ACTIONS(79), - [anon_sym_continue] = ACTIONS(81), - [anon_sym_goto] = ACTIONS(83), - [anon_sym___try] = ACTIONS(998), - [anon_sym___leave] = ACTIONS(1000), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [anon_sym___alignof__] = ACTIONS(89), - [anon_sym___alignof] = ACTIONS(89), - [anon_sym__alignof] = ACTIONS(89), - [anon_sym_alignof] = ACTIONS(89), - [anon_sym__Alignof] = ACTIONS(89), - [anon_sym_offsetof] = ACTIONS(91), - [anon_sym__Generic] = ACTIONS(93), - [anon_sym_asm] = ACTIONS(95), - [anon_sym___asm__] = ACTIONS(95), - [sym_number_literal] = ACTIONS(163), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(165), - [sym_false] = ACTIONS(165), - [anon_sym_NULL] = ACTIONS(105), - [anon_sym_nullptr] = ACTIONS(105), + [anon_sym_SEMI] = ACTIONS(383), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1561), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_if] = ACTIONS(395), + [anon_sym_switch] = ACTIONS(397), + [anon_sym_case] = ACTIONS(399), + [anon_sym_default] = ACTIONS(401), + [anon_sym_while] = ACTIONS(403), + [anon_sym_do] = ACTIONS(405), + [anon_sym_for] = ACTIONS(407), + [anon_sym_return] = ACTIONS(409), + [anon_sym_break] = ACTIONS(411), + [anon_sym_continue] = ACTIONS(413), + [anon_sym_goto] = ACTIONS(415), + [anon_sym___try] = ACTIONS(417), + [anon_sym___leave] = ACTIONS(419), + [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(87), + [anon_sym_sizeof] = ACTIONS(89), + [anon_sym___alignof__] = ACTIONS(91), + [anon_sym___alignof] = ACTIONS(91), + [anon_sym__alignof] = ACTIONS(91), + [anon_sym_alignof] = ACTIONS(91), + [anon_sym__Alignof] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(93), + [anon_sym__Generic] = ACTIONS(95), + [anon_sym_asm] = ACTIONS(97), + [anon_sym___asm__] = ACTIONS(97), + [sym_number_literal] = ACTIONS(165), + [anon_sym_L_SQUOTE] = ACTIONS(101), + [anon_sym_u_SQUOTE] = ACTIONS(101), + [anon_sym_U_SQUOTE] = ACTIONS(101), + [anon_sym_u8_SQUOTE] = ACTIONS(101), + [anon_sym_SQUOTE] = ACTIONS(101), + [anon_sym_L_DQUOTE] = ACTIONS(103), + [anon_sym_u_DQUOTE] = ACTIONS(103), + [anon_sym_U_DQUOTE] = ACTIONS(103), + [anon_sym_u8_DQUOTE] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_true] = ACTIONS(167), + [sym_false] = ACTIONS(167), + [anon_sym_NULL] = ACTIONS(107), + [anon_sym_nullptr] = ACTIONS(107), [sym_comment] = ACTIONS(3), }, - [365] = { - [sym_attribute_declaration] = STATE(360), - [sym_compound_statement] = STATE(93), - [sym_attributed_statement] = STATE(93), - [sym_statement] = STATE(98), - [sym_labeled_statement] = STATE(93), - [sym_expression_statement] = STATE(93), - [sym_if_statement] = STATE(93), - [sym_switch_statement] = STATE(93), - [sym_case_statement] = STATE(93), - [sym_while_statement] = STATE(93), - [sym_do_statement] = STATE(93), - [sym_for_statement] = STATE(93), - [sym_return_statement] = STATE(93), - [sym_break_statement] = STATE(93), - [sym_continue_statement] = STATE(93), - [sym_goto_statement] = STATE(93), - [sym_seh_try_statement] = STATE(93), - [sym_seh_leave_statement] = STATE(93), - [sym_expression] = STATE(1073), - [sym__string] = STATE(663), - [sym_comma_expression] = STATE(1821), - [sym_conditional_expression] = STATE(663), - [sym_assignment_expression] = STATE(663), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(663), - [sym_binary_expression] = STATE(663), - [sym_update_expression] = STATE(663), - [sym_cast_expression] = STATE(663), - [sym_sizeof_expression] = STATE(663), - [sym_alignof_expression] = STATE(663), - [sym_offsetof_expression] = STATE(663), - [sym_generic_expression] = STATE(663), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(663), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(663), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(663), - [sym_concatenated_string] = STATE(663), - [sym_string_literal] = STATE(659), - [sym_null] = STATE(663), - [aux_sym_attributed_declarator_repeat1] = STATE(360), - [sym_identifier] = ACTIONS(1614), + [429] = { + [sym_attribute_declaration] = STATE(415), + [sym_compound_statement] = STATE(205), + [sym_attributed_statement] = STATE(205), + [sym_statement] = STATE(230), + [sym_labeled_statement] = STATE(205), + [sym_expression_statement] = STATE(205), + [sym_if_statement] = STATE(205), + [sym_switch_statement] = STATE(205), + [sym_case_statement] = STATE(205), + [sym_while_statement] = STATE(205), + [sym_do_statement] = STATE(205), + [sym_for_statement] = STATE(205), + [sym_return_statement] = STATE(205), + [sym_break_statement] = STATE(205), + [sym_continue_statement] = STATE(205), + [sym_goto_statement] = STATE(205), + [sym_seh_try_statement] = STATE(205), + [sym_seh_leave_statement] = STATE(205), + [sym_expression] = STATE(1193), + [sym__string] = STATE(758), + [sym_comma_expression] = STATE(2067), + [sym_conditional_expression] = STATE(758), + [sym_assignment_expression] = STATE(758), + [sym_pointer_expression] = STATE(944), + [sym_unary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_cast_expression] = STATE(758), + [sym_sizeof_expression] = STATE(758), + [sym_alignof_expression] = STATE(758), + [sym_offsetof_expression] = STATE(758), + [sym_generic_expression] = STATE(758), + [sym_subscript_expression] = STATE(944), + [sym_call_expression] = STATE(944), + [sym_gnu_asm_expression] = STATE(758), + [sym_field_expression] = STATE(944), + [sym_compound_literal_expression] = STATE(758), + [sym_parenthesized_expression] = STATE(944), + [sym_char_literal] = STATE(758), + [sym_concatenated_string] = STATE(758), + [sym_string_literal] = STATE(671), + [sym_null] = STATE(758), + [aux_sym_attributed_declarator_repeat1] = STATE(415), + [sym_identifier] = ACTIONS(1565), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -55138,96 +63801,96 @@ 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(127), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1556), - [anon_sym_LBRACE] = ACTIONS(135), - [anon_sym_if] = ACTIONS(137), - [anon_sym_switch] = ACTIONS(139), - [anon_sym_case] = ACTIONS(141), - [anon_sym_default] = ACTIONS(143), - [anon_sym_while] = ACTIONS(145), - [anon_sym_do] = ACTIONS(147), - [anon_sym_for] = ACTIONS(149), - [anon_sym_return] = ACTIONS(151), - [anon_sym_break] = ACTIONS(153), - [anon_sym_continue] = ACTIONS(155), - [anon_sym_goto] = ACTIONS(157), - [anon_sym___try] = ACTIONS(159), - [anon_sym___leave] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [anon_sym___alignof__] = ACTIONS(89), - [anon_sym___alignof] = ACTIONS(89), - [anon_sym__alignof] = ACTIONS(89), - [anon_sym_alignof] = ACTIONS(89), - [anon_sym__Alignof] = ACTIONS(89), - [anon_sym_offsetof] = ACTIONS(91), - [anon_sym__Generic] = ACTIONS(93), - [anon_sym_asm] = ACTIONS(95), - [anon_sym___asm__] = ACTIONS(95), - [sym_number_literal] = ACTIONS(163), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(165), - [sym_false] = ACTIONS(165), - [anon_sym_NULL] = ACTIONS(105), - [anon_sym_nullptr] = ACTIONS(105), + [anon_sym_SEMI] = ACTIONS(447), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1561), + [anon_sym_LBRACE] = ACTIONS(455), + [anon_sym_if] = ACTIONS(457), + [anon_sym_switch] = ACTIONS(459), + [anon_sym_case] = ACTIONS(461), + [anon_sym_default] = ACTIONS(463), + [anon_sym_while] = ACTIONS(465), + [anon_sym_do] = ACTIONS(467), + [anon_sym_for] = ACTIONS(469), + [anon_sym_return] = ACTIONS(471), + [anon_sym_break] = ACTIONS(473), + [anon_sym_continue] = ACTIONS(475), + [anon_sym_goto] = ACTIONS(477), + [anon_sym___try] = ACTIONS(479), + [anon_sym___leave] = ACTIONS(481), + [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(87), + [anon_sym_sizeof] = ACTIONS(89), + [anon_sym___alignof__] = ACTIONS(91), + [anon_sym___alignof] = ACTIONS(91), + [anon_sym__alignof] = ACTIONS(91), + [anon_sym_alignof] = ACTIONS(91), + [anon_sym__Alignof] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(93), + [anon_sym__Generic] = ACTIONS(95), + [anon_sym_asm] = ACTIONS(97), + [anon_sym___asm__] = ACTIONS(97), + [sym_number_literal] = ACTIONS(165), + [anon_sym_L_SQUOTE] = ACTIONS(101), + [anon_sym_u_SQUOTE] = ACTIONS(101), + [anon_sym_U_SQUOTE] = ACTIONS(101), + [anon_sym_u8_SQUOTE] = ACTIONS(101), + [anon_sym_SQUOTE] = ACTIONS(101), + [anon_sym_L_DQUOTE] = ACTIONS(103), + [anon_sym_u_DQUOTE] = ACTIONS(103), + [anon_sym_U_DQUOTE] = ACTIONS(103), + [anon_sym_u8_DQUOTE] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_true] = ACTIONS(167), + [sym_false] = ACTIONS(167), + [anon_sym_NULL] = ACTIONS(107), + [anon_sym_nullptr] = ACTIONS(107), [sym_comment] = ACTIONS(3), }, - [366] = { - [sym_attribute_declaration] = STATE(348), - [sym_compound_statement] = STATE(232), - [sym_attributed_statement] = STATE(232), - [sym_statement] = STATE(145), - [sym_labeled_statement] = STATE(232), - [sym_expression_statement] = STATE(232), - [sym_if_statement] = STATE(232), - [sym_switch_statement] = STATE(232), - [sym_case_statement] = STATE(232), - [sym_while_statement] = STATE(232), - [sym_do_statement] = STATE(232), - [sym_for_statement] = STATE(232), - [sym_return_statement] = STATE(232), - [sym_break_statement] = STATE(232), - [sym_continue_statement] = STATE(232), - [sym_goto_statement] = STATE(232), - [sym_seh_try_statement] = STATE(232), - [sym_seh_leave_statement] = STATE(232), - [sym_expression] = STATE(1060), - [sym__string] = STATE(663), - [sym_comma_expression] = STATE(1853), - [sym_conditional_expression] = STATE(663), - [sym_assignment_expression] = STATE(663), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(663), - [sym_binary_expression] = STATE(663), - [sym_update_expression] = STATE(663), - [sym_cast_expression] = STATE(663), - [sym_sizeof_expression] = STATE(663), - [sym_alignof_expression] = STATE(663), - [sym_offsetof_expression] = STATE(663), - [sym_generic_expression] = STATE(663), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(663), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(663), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(663), - [sym_concatenated_string] = STATE(663), - [sym_string_literal] = STATE(659), - [sym_null] = STATE(663), - [aux_sym_attributed_declarator_repeat1] = STATE(348), - [sym_identifier] = ACTIONS(1612), + [430] = { + [sym_attribute_declaration] = STATE(442), + [sym_compound_statement] = STATE(290), + [sym_attributed_statement] = STATE(290), + [sym_statement] = STATE(2280), + [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_seh_try_statement] = STATE(290), + [sym_seh_leave_statement] = STATE(290), + [sym_expression] = STATE(1167), + [sym__string] = STATE(758), + [sym_comma_expression] = STATE(2207), + [sym_conditional_expression] = STATE(758), + [sym_assignment_expression] = STATE(758), + [sym_pointer_expression] = STATE(944), + [sym_unary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_cast_expression] = STATE(758), + [sym_sizeof_expression] = STATE(758), + [sym_alignof_expression] = STATE(758), + [sym_offsetof_expression] = STATE(758), + [sym_generic_expression] = STATE(758), + [sym_subscript_expression] = STATE(944), + [sym_call_expression] = STATE(944), + [sym_gnu_asm_expression] = STATE(758), + [sym_field_expression] = STATE(944), + [sym_compound_literal_expression] = STATE(758), + [sym_parenthesized_expression] = STATE(944), + [sym_char_literal] = STATE(758), + [sym_concatenated_string] = STATE(758), + [sym_string_literal] = STATE(671), + [sym_null] = STATE(758), + [aux_sym_attributed_declarator_repeat1] = STATE(442), + [sym_identifier] = ACTIONS(1567), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -55235,96 +63898,193 @@ 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(996), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1556), - [anon_sym_LBRACE] = ACTIONS(45), - [anon_sym_if] = ACTIONS(63), - [anon_sym_switch] = ACTIONS(65), - [anon_sym_case] = ACTIONS(67), - [anon_sym_default] = ACTIONS(69), - [anon_sym_while] = ACTIONS(71), - [anon_sym_do] = ACTIONS(73), - [anon_sym_for] = ACTIONS(75), - [anon_sym_return] = ACTIONS(77), - [anon_sym_break] = ACTIONS(79), - [anon_sym_continue] = ACTIONS(81), - [anon_sym_goto] = ACTIONS(83), - [anon_sym___try] = ACTIONS(998), - [anon_sym___leave] = ACTIONS(1000), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [anon_sym___alignof__] = ACTIONS(89), - [anon_sym___alignof] = ACTIONS(89), - [anon_sym__alignof] = ACTIONS(89), - [anon_sym_alignof] = ACTIONS(89), - [anon_sym__Alignof] = ACTIONS(89), - [anon_sym_offsetof] = ACTIONS(91), - [anon_sym__Generic] = ACTIONS(93), - [anon_sym_asm] = ACTIONS(95), - [anon_sym___asm__] = ACTIONS(95), - [sym_number_literal] = ACTIONS(163), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(165), - [sym_false] = ACTIONS(165), - [anon_sym_NULL] = ACTIONS(105), - [anon_sym_nullptr] = ACTIONS(105), + [anon_sym_SEMI] = ACTIONS(383), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1561), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_if] = ACTIONS(1118), + [anon_sym_switch] = ACTIONS(67), + [anon_sym_case] = ACTIONS(1569), + [anon_sym_default] = ACTIONS(1571), + [anon_sym_while] = ACTIONS(1120), + [anon_sym_do] = ACTIONS(75), + [anon_sym_for] = ACTIONS(1122), + [anon_sym_return] = ACTIONS(79), + [anon_sym_break] = ACTIONS(81), + [anon_sym_continue] = ACTIONS(83), + [anon_sym_goto] = ACTIONS(85), + [anon_sym___try] = ACTIONS(1124), + [anon_sym___leave] = ACTIONS(419), + [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(87), + [anon_sym_sizeof] = ACTIONS(89), + [anon_sym___alignof__] = ACTIONS(91), + [anon_sym___alignof] = ACTIONS(91), + [anon_sym__alignof] = ACTIONS(91), + [anon_sym_alignof] = ACTIONS(91), + [anon_sym__Alignof] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(93), + [anon_sym__Generic] = ACTIONS(95), + [anon_sym_asm] = ACTIONS(97), + [anon_sym___asm__] = ACTIONS(97), + [sym_number_literal] = ACTIONS(165), + [anon_sym_L_SQUOTE] = ACTIONS(101), + [anon_sym_u_SQUOTE] = ACTIONS(101), + [anon_sym_U_SQUOTE] = ACTIONS(101), + [anon_sym_u8_SQUOTE] = ACTIONS(101), + [anon_sym_SQUOTE] = ACTIONS(101), + [anon_sym_L_DQUOTE] = ACTIONS(103), + [anon_sym_u_DQUOTE] = ACTIONS(103), + [anon_sym_U_DQUOTE] = ACTIONS(103), + [anon_sym_u8_DQUOTE] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_true] = ACTIONS(167), + [sym_false] = ACTIONS(167), + [anon_sym_NULL] = ACTIONS(107), + [anon_sym_nullptr] = ACTIONS(107), [sym_comment] = ACTIONS(3), }, - [367] = { - [sym_attribute_declaration] = STATE(347), - [sym_compound_statement] = STATE(148), - [sym_attributed_statement] = STATE(148), - [sym_statement] = STATE(239), - [sym_labeled_statement] = STATE(148), - [sym_expression_statement] = STATE(148), - [sym_if_statement] = STATE(148), - [sym_switch_statement] = STATE(148), - [sym_case_statement] = STATE(148), - [sym_while_statement] = STATE(148), - [sym_do_statement] = STATE(148), - [sym_for_statement] = STATE(148), - [sym_return_statement] = STATE(148), - [sym_break_statement] = STATE(148), - [sym_continue_statement] = STATE(148), - [sym_goto_statement] = STATE(148), - [sym_seh_try_statement] = STATE(148), - [sym_seh_leave_statement] = STATE(148), - [sym_expression] = STATE(1033), - [sym__string] = STATE(663), - [sym_comma_expression] = STATE(1818), - [sym_conditional_expression] = STATE(663), - [sym_assignment_expression] = STATE(663), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(663), - [sym_binary_expression] = STATE(663), - [sym_update_expression] = STATE(663), - [sym_cast_expression] = STATE(663), - [sym_sizeof_expression] = STATE(663), - [sym_alignof_expression] = STATE(663), - [sym_offsetof_expression] = STATE(663), - [sym_generic_expression] = STATE(663), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(663), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(663), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(663), - [sym_concatenated_string] = STATE(663), - [sym_string_literal] = STATE(659), - [sym_null] = STATE(663), - [aux_sym_attributed_declarator_repeat1] = STATE(347), - [sym_identifier] = ACTIONS(1554), + [431] = { + [sym_identifier] = ACTIONS(1713), + [anon_sym_COMMA] = ACTIONS(1715), + [anon_sym_RPAREN] = ACTIONS(1715), + [anon_sym_LPAREN2] = ACTIONS(1715), + [anon_sym_BANG] = ACTIONS(1715), + [anon_sym_TILDE] = ACTIONS(1715), + [anon_sym_DASH] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1713), + [anon_sym_STAR] = ACTIONS(1715), + [anon_sym_AMP] = ACTIONS(1715), + [anon_sym_SEMI] = ACTIONS(1715), + [anon_sym___extension__] = ACTIONS(1713), + [anon_sym_extern] = ACTIONS(1713), + [anon_sym___attribute__] = ACTIONS(1713), + [anon_sym___scanf] = ACTIONS(1713), + [anon_sym___printf] = ACTIONS(1713), + [anon_sym___read_mostly] = ACTIONS(1713), + [anon_sym___must_hold] = ACTIONS(1713), + [anon_sym___ro_after_init] = ACTIONS(1713), + [anon_sym___noreturn] = ACTIONS(1713), + [anon_sym___cold] = ACTIONS(1713), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1715), + [anon_sym___declspec] = ACTIONS(1713), + [anon_sym_LBRACE] = ACTIONS(1715), + [anon_sym_signed] = ACTIONS(1713), + [anon_sym_unsigned] = ACTIONS(1713), + [anon_sym_long] = ACTIONS(1713), + [anon_sym_short] = ACTIONS(1713), + [anon_sym_LBRACK] = ACTIONS(1713), + [anon_sym_static] = ACTIONS(1713), + [anon_sym_EQ] = ACTIONS(1715), + [anon_sym_auto] = ACTIONS(1713), + [anon_sym_register] = ACTIONS(1713), + [anon_sym_inline] = ACTIONS(1713), + [anon_sym___inline] = ACTIONS(1713), + [anon_sym___inline__] = ACTIONS(1713), + [anon_sym___forceinline] = ACTIONS(1713), + [anon_sym_thread_local] = ACTIONS(1713), + [anon_sym___thread] = ACTIONS(1713), + [anon_sym_const] = ACTIONS(1713), + [anon_sym_constexpr] = ACTIONS(1713), + [anon_sym_volatile] = ACTIONS(1713), + [anon_sym_restrict] = ACTIONS(1713), + [anon_sym___restrict__] = ACTIONS(1713), + [anon_sym__Atomic] = ACTIONS(1713), + [anon_sym__Noreturn] = ACTIONS(1713), + [anon_sym_noreturn] = ACTIONS(1713), + [anon_sym_alignas] = ACTIONS(1713), + [anon_sym__Alignas] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1713), + [anon_sym_enum] = ACTIONS(1713), + [anon_sym_COLON] = ACTIONS(1715), + [anon_sym_struct] = ACTIONS(1713), + [anon_sym_union] = ACTIONS(1713), + [anon_sym_if] = ACTIONS(1713), + [anon_sym_switch] = ACTIONS(1713), + [anon_sym_case] = ACTIONS(1713), + [anon_sym_default] = ACTIONS(1713), + [anon_sym_while] = ACTIONS(1713), + [anon_sym_do] = ACTIONS(1713), + [anon_sym_for] = ACTIONS(1713), + [anon_sym_return] = ACTIONS(1713), + [anon_sym_break] = ACTIONS(1713), + [anon_sym_continue] = ACTIONS(1713), + [anon_sym_goto] = ACTIONS(1713), + [anon_sym___try] = ACTIONS(1713), + [anon_sym___leave] = ACTIONS(1713), + [anon_sym_DASH_DASH] = ACTIONS(1715), + [anon_sym_PLUS_PLUS] = ACTIONS(1715), + [anon_sym_sizeof] = ACTIONS(1713), + [anon_sym___alignof__] = ACTIONS(1713), + [anon_sym___alignof] = ACTIONS(1713), + [anon_sym__alignof] = ACTIONS(1713), + [anon_sym_alignof] = ACTIONS(1713), + [anon_sym__Alignof] = ACTIONS(1713), + [anon_sym_offsetof] = ACTIONS(1713), + [anon_sym__Generic] = ACTIONS(1713), + [anon_sym_asm] = ACTIONS(1713), + [anon_sym___asm__] = ACTIONS(1713), + [sym_number_literal] = ACTIONS(1715), + [anon_sym_L_SQUOTE] = ACTIONS(1715), + [anon_sym_u_SQUOTE] = ACTIONS(1715), + [anon_sym_U_SQUOTE] = ACTIONS(1715), + [anon_sym_u8_SQUOTE] = ACTIONS(1715), + [anon_sym_SQUOTE] = ACTIONS(1715), + [anon_sym_L_DQUOTE] = ACTIONS(1715), + [anon_sym_u_DQUOTE] = ACTIONS(1715), + [anon_sym_U_DQUOTE] = ACTIONS(1715), + [anon_sym_u8_DQUOTE] = ACTIONS(1715), + [anon_sym_DQUOTE] = ACTIONS(1715), + [sym_true] = ACTIONS(1713), + [sym_false] = ACTIONS(1713), + [anon_sym_NULL] = ACTIONS(1713), + [anon_sym_nullptr] = ACTIONS(1713), + [sym_comment] = ACTIONS(3), + }, + [432] = { + [sym_attribute_declaration] = STATE(415), + [sym_compound_statement] = STATE(205), + [sym_attributed_statement] = STATE(205), + [sym_statement] = STATE(225), + [sym_labeled_statement] = STATE(205), + [sym_expression_statement] = STATE(205), + [sym_if_statement] = STATE(205), + [sym_switch_statement] = STATE(205), + [sym_case_statement] = STATE(205), + [sym_while_statement] = STATE(205), + [sym_do_statement] = STATE(205), + [sym_for_statement] = STATE(205), + [sym_return_statement] = STATE(205), + [sym_break_statement] = STATE(205), + [sym_continue_statement] = STATE(205), + [sym_goto_statement] = STATE(205), + [sym_seh_try_statement] = STATE(205), + [sym_seh_leave_statement] = STATE(205), + [sym_expression] = STATE(1193), + [sym__string] = STATE(758), + [sym_comma_expression] = STATE(2067), + [sym_conditional_expression] = STATE(758), + [sym_assignment_expression] = STATE(758), + [sym_pointer_expression] = STATE(944), + [sym_unary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_cast_expression] = STATE(758), + [sym_sizeof_expression] = STATE(758), + [sym_alignof_expression] = STATE(758), + [sym_offsetof_expression] = STATE(758), + [sym_generic_expression] = STATE(758), + [sym_subscript_expression] = STATE(944), + [sym_call_expression] = STATE(944), + [sym_gnu_asm_expression] = STATE(758), + [sym_field_expression] = STATE(944), + [sym_compound_literal_expression] = STATE(758), + [sym_parenthesized_expression] = STATE(944), + [sym_char_literal] = STATE(758), + [sym_concatenated_string] = STATE(758), + [sym_string_literal] = STATE(671), + [sym_null] = STATE(758), + [aux_sym_attributed_declarator_repeat1] = STATE(415), + [sym_identifier] = ACTIONS(1565), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -55332,96 +64092,96 @@ 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(378), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1556), - [anon_sym_LBRACE] = ACTIONS(45), - [anon_sym_if] = ACTIONS(1110), - [anon_sym_switch] = ACTIONS(65), - [anon_sym_case] = ACTIONS(1558), - [anon_sym_default] = ACTIONS(1560), - [anon_sym_while] = ACTIONS(1112), - [anon_sym_do] = ACTIONS(73), - [anon_sym_for] = ACTIONS(1114), - [anon_sym_return] = ACTIONS(77), - [anon_sym_break] = ACTIONS(79), - [anon_sym_continue] = ACTIONS(81), - [anon_sym_goto] = ACTIONS(83), - [anon_sym___try] = ACTIONS(1116), - [anon_sym___leave] = ACTIONS(414), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [anon_sym___alignof__] = ACTIONS(89), - [anon_sym___alignof] = ACTIONS(89), - [anon_sym__alignof] = ACTIONS(89), - [anon_sym_alignof] = ACTIONS(89), - [anon_sym__Alignof] = ACTIONS(89), - [anon_sym_offsetof] = ACTIONS(91), - [anon_sym__Generic] = ACTIONS(93), - [anon_sym_asm] = ACTIONS(95), - [anon_sym___asm__] = ACTIONS(95), - [sym_number_literal] = ACTIONS(163), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(165), - [sym_false] = ACTIONS(165), - [anon_sym_NULL] = ACTIONS(105), - [anon_sym_nullptr] = ACTIONS(105), + [anon_sym_SEMI] = ACTIONS(447), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1561), + [anon_sym_LBRACE] = ACTIONS(455), + [anon_sym_if] = ACTIONS(457), + [anon_sym_switch] = ACTIONS(459), + [anon_sym_case] = ACTIONS(461), + [anon_sym_default] = ACTIONS(463), + [anon_sym_while] = ACTIONS(465), + [anon_sym_do] = ACTIONS(467), + [anon_sym_for] = ACTIONS(469), + [anon_sym_return] = ACTIONS(471), + [anon_sym_break] = ACTIONS(473), + [anon_sym_continue] = ACTIONS(475), + [anon_sym_goto] = ACTIONS(477), + [anon_sym___try] = ACTIONS(479), + [anon_sym___leave] = ACTIONS(481), + [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(87), + [anon_sym_sizeof] = ACTIONS(89), + [anon_sym___alignof__] = ACTIONS(91), + [anon_sym___alignof] = ACTIONS(91), + [anon_sym__alignof] = ACTIONS(91), + [anon_sym_alignof] = ACTIONS(91), + [anon_sym__Alignof] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(93), + [anon_sym__Generic] = ACTIONS(95), + [anon_sym_asm] = ACTIONS(97), + [anon_sym___asm__] = ACTIONS(97), + [sym_number_literal] = ACTIONS(165), + [anon_sym_L_SQUOTE] = ACTIONS(101), + [anon_sym_u_SQUOTE] = ACTIONS(101), + [anon_sym_U_SQUOTE] = ACTIONS(101), + [anon_sym_u8_SQUOTE] = ACTIONS(101), + [anon_sym_SQUOTE] = ACTIONS(101), + [anon_sym_L_DQUOTE] = ACTIONS(103), + [anon_sym_u_DQUOTE] = ACTIONS(103), + [anon_sym_U_DQUOTE] = ACTIONS(103), + [anon_sym_u8_DQUOTE] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_true] = ACTIONS(167), + [sym_false] = ACTIONS(167), + [anon_sym_NULL] = ACTIONS(107), + [anon_sym_nullptr] = ACTIONS(107), [sym_comment] = ACTIONS(3), }, - [368] = { - [sym_attribute_declaration] = STATE(347), - [sym_compound_statement] = STATE(148), - [sym_attributed_statement] = STATE(148), - [sym_statement] = STATE(1781), - [sym_labeled_statement] = STATE(148), - [sym_expression_statement] = STATE(148), - [sym_if_statement] = STATE(148), - [sym_switch_statement] = STATE(148), - [sym_case_statement] = STATE(148), - [sym_while_statement] = STATE(148), - [sym_do_statement] = STATE(148), - [sym_for_statement] = STATE(148), - [sym_return_statement] = STATE(148), - [sym_break_statement] = STATE(148), - [sym_continue_statement] = STATE(148), - [sym_goto_statement] = STATE(148), - [sym_seh_try_statement] = STATE(148), - [sym_seh_leave_statement] = STATE(148), - [sym_expression] = STATE(1033), - [sym__string] = STATE(663), - [sym_comma_expression] = STATE(1818), - [sym_conditional_expression] = STATE(663), - [sym_assignment_expression] = STATE(663), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(663), - [sym_binary_expression] = STATE(663), - [sym_update_expression] = STATE(663), - [sym_cast_expression] = STATE(663), - [sym_sizeof_expression] = STATE(663), - [sym_alignof_expression] = STATE(663), - [sym_offsetof_expression] = STATE(663), - [sym_generic_expression] = STATE(663), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(663), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(663), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(663), - [sym_concatenated_string] = STATE(663), - [sym_string_literal] = STATE(659), - [sym_null] = STATE(663), - [aux_sym_attributed_declarator_repeat1] = STATE(347), - [sym_identifier] = ACTIONS(1554), + [433] = { + [sym_attribute_declaration] = STATE(442), + [sym_compound_statement] = STATE(290), + [sym_attributed_statement] = STATE(290), + [sym_statement] = STATE(2104), + [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_seh_try_statement] = STATE(290), + [sym_seh_leave_statement] = STATE(290), + [sym_expression] = STATE(1167), + [sym__string] = STATE(758), + [sym_comma_expression] = STATE(2207), + [sym_conditional_expression] = STATE(758), + [sym_assignment_expression] = STATE(758), + [sym_pointer_expression] = STATE(944), + [sym_unary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_cast_expression] = STATE(758), + [sym_sizeof_expression] = STATE(758), + [sym_alignof_expression] = STATE(758), + [sym_offsetof_expression] = STATE(758), + [sym_generic_expression] = STATE(758), + [sym_subscript_expression] = STATE(944), + [sym_call_expression] = STATE(944), + [sym_gnu_asm_expression] = STATE(758), + [sym_field_expression] = STATE(944), + [sym_compound_literal_expression] = STATE(758), + [sym_parenthesized_expression] = STATE(944), + [sym_char_literal] = STATE(758), + [sym_concatenated_string] = STATE(758), + [sym_string_literal] = STATE(671), + [sym_null] = STATE(758), + [aux_sym_attributed_declarator_repeat1] = STATE(442), + [sym_identifier] = ACTIONS(1567), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -55429,96 +64189,96 @@ 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(378), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1556), - [anon_sym_LBRACE] = ACTIONS(45), - [anon_sym_if] = ACTIONS(1110), - [anon_sym_switch] = ACTIONS(65), - [anon_sym_case] = ACTIONS(1558), - [anon_sym_default] = ACTIONS(1560), - [anon_sym_while] = ACTIONS(1112), - [anon_sym_do] = ACTIONS(73), - [anon_sym_for] = ACTIONS(1114), - [anon_sym_return] = ACTIONS(77), - [anon_sym_break] = ACTIONS(79), - [anon_sym_continue] = ACTIONS(81), - [anon_sym_goto] = ACTIONS(83), - [anon_sym___try] = ACTIONS(1116), - [anon_sym___leave] = ACTIONS(414), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [anon_sym___alignof__] = ACTIONS(89), - [anon_sym___alignof] = ACTIONS(89), - [anon_sym__alignof] = ACTIONS(89), - [anon_sym_alignof] = ACTIONS(89), - [anon_sym__Alignof] = ACTIONS(89), - [anon_sym_offsetof] = ACTIONS(91), - [anon_sym__Generic] = ACTIONS(93), - [anon_sym_asm] = ACTIONS(95), - [anon_sym___asm__] = ACTIONS(95), - [sym_number_literal] = ACTIONS(163), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(165), - [sym_false] = ACTIONS(165), - [anon_sym_NULL] = ACTIONS(105), - [anon_sym_nullptr] = ACTIONS(105), + [anon_sym_SEMI] = ACTIONS(383), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1561), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_if] = ACTIONS(1118), + [anon_sym_switch] = ACTIONS(67), + [anon_sym_case] = ACTIONS(1569), + [anon_sym_default] = ACTIONS(1571), + [anon_sym_while] = ACTIONS(1120), + [anon_sym_do] = ACTIONS(75), + [anon_sym_for] = ACTIONS(1122), + [anon_sym_return] = ACTIONS(79), + [anon_sym_break] = ACTIONS(81), + [anon_sym_continue] = ACTIONS(83), + [anon_sym_goto] = ACTIONS(85), + [anon_sym___try] = ACTIONS(1124), + [anon_sym___leave] = ACTIONS(419), + [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(87), + [anon_sym_sizeof] = ACTIONS(89), + [anon_sym___alignof__] = ACTIONS(91), + [anon_sym___alignof] = ACTIONS(91), + [anon_sym__alignof] = ACTIONS(91), + [anon_sym_alignof] = ACTIONS(91), + [anon_sym__Alignof] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(93), + [anon_sym__Generic] = ACTIONS(95), + [anon_sym_asm] = ACTIONS(97), + [anon_sym___asm__] = ACTIONS(97), + [sym_number_literal] = ACTIONS(165), + [anon_sym_L_SQUOTE] = ACTIONS(101), + [anon_sym_u_SQUOTE] = ACTIONS(101), + [anon_sym_U_SQUOTE] = ACTIONS(101), + [anon_sym_u8_SQUOTE] = ACTIONS(101), + [anon_sym_SQUOTE] = ACTIONS(101), + [anon_sym_L_DQUOTE] = ACTIONS(103), + [anon_sym_u_DQUOTE] = ACTIONS(103), + [anon_sym_U_DQUOTE] = ACTIONS(103), + [anon_sym_u8_DQUOTE] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_true] = ACTIONS(167), + [sym_false] = ACTIONS(167), + [anon_sym_NULL] = ACTIONS(107), + [anon_sym_nullptr] = ACTIONS(107), [sym_comment] = ACTIONS(3), }, - [369] = { - [sym_attribute_declaration] = STATE(365), - [sym_compound_statement] = STATE(93), - [sym_attributed_statement] = STATE(93), - [sym_statement] = STATE(111), - [sym_labeled_statement] = STATE(93), - [sym_expression_statement] = STATE(93), - [sym_if_statement] = STATE(93), - [sym_switch_statement] = STATE(93), - [sym_case_statement] = STATE(93), - [sym_while_statement] = STATE(93), - [sym_do_statement] = STATE(93), - [sym_for_statement] = STATE(93), - [sym_return_statement] = STATE(93), - [sym_break_statement] = STATE(93), - [sym_continue_statement] = STATE(93), - [sym_goto_statement] = STATE(93), - [sym_seh_try_statement] = STATE(93), - [sym_seh_leave_statement] = STATE(93), - [sym_expression] = STATE(1073), - [sym__string] = STATE(663), - [sym_comma_expression] = STATE(1821), - [sym_conditional_expression] = STATE(663), - [sym_assignment_expression] = STATE(663), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(663), - [sym_binary_expression] = STATE(663), - [sym_update_expression] = STATE(663), - [sym_cast_expression] = STATE(663), - [sym_sizeof_expression] = STATE(663), - [sym_alignof_expression] = STATE(663), - [sym_offsetof_expression] = STATE(663), - [sym_generic_expression] = STATE(663), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(663), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(663), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(663), - [sym_concatenated_string] = STATE(663), - [sym_string_literal] = STATE(659), - [sym_null] = STATE(663), - [aux_sym_attributed_declarator_repeat1] = STATE(365), - [sym_identifier] = ACTIONS(1614), + [434] = { + [sym_attribute_declaration] = STATE(415), + [sym_compound_statement] = STATE(205), + [sym_attributed_statement] = STATE(205), + [sym_statement] = STATE(159), + [sym_labeled_statement] = STATE(205), + [sym_expression_statement] = STATE(205), + [sym_if_statement] = STATE(205), + [sym_switch_statement] = STATE(205), + [sym_case_statement] = STATE(205), + [sym_while_statement] = STATE(205), + [sym_do_statement] = STATE(205), + [sym_for_statement] = STATE(205), + [sym_return_statement] = STATE(205), + [sym_break_statement] = STATE(205), + [sym_continue_statement] = STATE(205), + [sym_goto_statement] = STATE(205), + [sym_seh_try_statement] = STATE(205), + [sym_seh_leave_statement] = STATE(205), + [sym_expression] = STATE(1193), + [sym__string] = STATE(758), + [sym_comma_expression] = STATE(2067), + [sym_conditional_expression] = STATE(758), + [sym_assignment_expression] = STATE(758), + [sym_pointer_expression] = STATE(944), + [sym_unary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_cast_expression] = STATE(758), + [sym_sizeof_expression] = STATE(758), + [sym_alignof_expression] = STATE(758), + [sym_offsetof_expression] = STATE(758), + [sym_generic_expression] = STATE(758), + [sym_subscript_expression] = STATE(944), + [sym_call_expression] = STATE(944), + [sym_gnu_asm_expression] = STATE(758), + [sym_field_expression] = STATE(944), + [sym_compound_literal_expression] = STATE(758), + [sym_parenthesized_expression] = STATE(944), + [sym_char_literal] = STATE(758), + [sym_concatenated_string] = STATE(758), + [sym_string_literal] = STATE(671), + [sym_null] = STATE(758), + [aux_sym_attributed_declarator_repeat1] = STATE(415), + [sym_identifier] = ACTIONS(1565), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -55526,96 +64286,193 @@ 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(127), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1556), - [anon_sym_LBRACE] = ACTIONS(135), - [anon_sym_if] = ACTIONS(137), - [anon_sym_switch] = ACTIONS(139), - [anon_sym_case] = ACTIONS(141), - [anon_sym_default] = ACTIONS(143), - [anon_sym_while] = ACTIONS(145), - [anon_sym_do] = ACTIONS(147), - [anon_sym_for] = ACTIONS(149), - [anon_sym_return] = ACTIONS(151), - [anon_sym_break] = ACTIONS(153), - [anon_sym_continue] = ACTIONS(155), - [anon_sym_goto] = ACTIONS(157), - [anon_sym___try] = ACTIONS(159), - [anon_sym___leave] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [anon_sym___alignof__] = ACTIONS(89), - [anon_sym___alignof] = ACTIONS(89), - [anon_sym__alignof] = ACTIONS(89), - [anon_sym_alignof] = ACTIONS(89), - [anon_sym__Alignof] = ACTIONS(89), - [anon_sym_offsetof] = ACTIONS(91), - [anon_sym__Generic] = ACTIONS(93), - [anon_sym_asm] = ACTIONS(95), - [anon_sym___asm__] = ACTIONS(95), - [sym_number_literal] = ACTIONS(163), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(165), - [sym_false] = ACTIONS(165), - [anon_sym_NULL] = ACTIONS(105), - [anon_sym_nullptr] = ACTIONS(105), + [anon_sym_SEMI] = ACTIONS(447), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1561), + [anon_sym_LBRACE] = ACTIONS(455), + [anon_sym_if] = ACTIONS(457), + [anon_sym_switch] = ACTIONS(459), + [anon_sym_case] = ACTIONS(461), + [anon_sym_default] = ACTIONS(463), + [anon_sym_while] = ACTIONS(465), + [anon_sym_do] = ACTIONS(467), + [anon_sym_for] = ACTIONS(469), + [anon_sym_return] = ACTIONS(471), + [anon_sym_break] = ACTIONS(473), + [anon_sym_continue] = ACTIONS(475), + [anon_sym_goto] = ACTIONS(477), + [anon_sym___try] = ACTIONS(479), + [anon_sym___leave] = ACTIONS(481), + [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(87), + [anon_sym_sizeof] = ACTIONS(89), + [anon_sym___alignof__] = ACTIONS(91), + [anon_sym___alignof] = ACTIONS(91), + [anon_sym__alignof] = ACTIONS(91), + [anon_sym_alignof] = ACTIONS(91), + [anon_sym__Alignof] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(93), + [anon_sym__Generic] = ACTIONS(95), + [anon_sym_asm] = ACTIONS(97), + [anon_sym___asm__] = ACTIONS(97), + [sym_number_literal] = ACTIONS(165), + [anon_sym_L_SQUOTE] = ACTIONS(101), + [anon_sym_u_SQUOTE] = ACTIONS(101), + [anon_sym_U_SQUOTE] = ACTIONS(101), + [anon_sym_u8_SQUOTE] = ACTIONS(101), + [anon_sym_SQUOTE] = ACTIONS(101), + [anon_sym_L_DQUOTE] = ACTIONS(103), + [anon_sym_u_DQUOTE] = ACTIONS(103), + [anon_sym_U_DQUOTE] = ACTIONS(103), + [anon_sym_u8_DQUOTE] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_true] = ACTIONS(167), + [sym_false] = ACTIONS(167), + [anon_sym_NULL] = ACTIONS(107), + [anon_sym_nullptr] = ACTIONS(107), [sym_comment] = ACTIONS(3), }, - [370] = { - [sym_attribute_declaration] = STATE(347), - [sym_compound_statement] = STATE(148), - [sym_attributed_statement] = STATE(148), - [sym_statement] = STATE(228), - [sym_labeled_statement] = STATE(148), - [sym_expression_statement] = STATE(148), - [sym_if_statement] = STATE(148), - [sym_switch_statement] = STATE(148), - [sym_case_statement] = STATE(148), - [sym_while_statement] = STATE(148), - [sym_do_statement] = STATE(148), - [sym_for_statement] = STATE(148), - [sym_return_statement] = STATE(148), - [sym_break_statement] = STATE(148), - [sym_continue_statement] = STATE(148), - [sym_goto_statement] = STATE(148), - [sym_seh_try_statement] = STATE(148), - [sym_seh_leave_statement] = STATE(148), - [sym_expression] = STATE(1033), - [sym__string] = STATE(663), - [sym_comma_expression] = STATE(1818), - [sym_conditional_expression] = STATE(663), - [sym_assignment_expression] = STATE(663), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(663), - [sym_binary_expression] = STATE(663), - [sym_update_expression] = STATE(663), - [sym_cast_expression] = STATE(663), - [sym_sizeof_expression] = STATE(663), - [sym_alignof_expression] = STATE(663), - [sym_offsetof_expression] = STATE(663), - [sym_generic_expression] = STATE(663), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(663), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(663), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(663), - [sym_concatenated_string] = STATE(663), - [sym_string_literal] = STATE(659), - [sym_null] = STATE(663), - [aux_sym_attributed_declarator_repeat1] = STATE(347), - [sym_identifier] = ACTIONS(1554), + [435] = { + [sym_attribute_declaration] = STATE(435), + [sym_compound_statement] = STATE(180), + [sym_attributed_statement] = STATE(180), + [sym_statement] = STATE(197), + [sym_labeled_statement] = STATE(180), + [sym_expression_statement] = STATE(180), + [sym_if_statement] = STATE(180), + [sym_switch_statement] = STATE(180), + [sym_case_statement] = STATE(180), + [sym_while_statement] = STATE(180), + [sym_do_statement] = STATE(180), + [sym_for_statement] = STATE(180), + [sym_return_statement] = STATE(180), + [sym_break_statement] = STATE(180), + [sym_continue_statement] = STATE(180), + [sym_goto_statement] = STATE(180), + [sym_seh_try_statement] = STATE(180), + [sym_seh_leave_statement] = STATE(180), + [sym_expression] = STATE(1179), + [sym__string] = STATE(758), + [sym_comma_expression] = STATE(2159), + [sym_conditional_expression] = STATE(758), + [sym_assignment_expression] = STATE(758), + [sym_pointer_expression] = STATE(944), + [sym_unary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_cast_expression] = STATE(758), + [sym_sizeof_expression] = STATE(758), + [sym_alignof_expression] = STATE(758), + [sym_offsetof_expression] = STATE(758), + [sym_generic_expression] = STATE(758), + [sym_subscript_expression] = STATE(944), + [sym_call_expression] = STATE(944), + [sym_gnu_asm_expression] = STATE(758), + [sym_field_expression] = STATE(944), + [sym_compound_literal_expression] = STATE(758), + [sym_parenthesized_expression] = STATE(944), + [sym_char_literal] = STATE(758), + [sym_concatenated_string] = STATE(758), + [sym_string_literal] = STATE(671), + [sym_null] = STATE(758), + [aux_sym_attributed_declarator_repeat1] = STATE(435), + [sym_identifier] = ACTIONS(1717), + [anon_sym_LPAREN2] = ACTIONS(1466), + [anon_sym_BANG] = ACTIONS(1469), + [anon_sym_TILDE] = ACTIONS(1469), + [anon_sym_DASH] = ACTIONS(1472), + [anon_sym_PLUS] = ACTIONS(1472), + [anon_sym_STAR] = ACTIONS(1475), + [anon_sym_AMP] = ACTIONS(1475), + [anon_sym_SEMI] = ACTIONS(1720), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1481), + [anon_sym_LBRACE] = ACTIONS(1484), + [anon_sym_if] = ACTIONS(1723), + [anon_sym_switch] = ACTIONS(1490), + [anon_sym_case] = ACTIONS(1726), + [anon_sym_default] = ACTIONS(1729), + [anon_sym_while] = ACTIONS(1732), + [anon_sym_do] = ACTIONS(1502), + [anon_sym_for] = ACTIONS(1735), + [anon_sym_return] = ACTIONS(1508), + [anon_sym_break] = ACTIONS(1511), + [anon_sym_continue] = ACTIONS(1514), + [anon_sym_goto] = ACTIONS(1517), + [anon_sym___try] = ACTIONS(1738), + [anon_sym___leave] = ACTIONS(1741), + [anon_sym_DASH_DASH] = ACTIONS(1526), + [anon_sym_PLUS_PLUS] = ACTIONS(1526), + [anon_sym_sizeof] = ACTIONS(1529), + [anon_sym___alignof__] = ACTIONS(1532), + [anon_sym___alignof] = ACTIONS(1532), + [anon_sym__alignof] = ACTIONS(1532), + [anon_sym_alignof] = ACTIONS(1532), + [anon_sym__Alignof] = ACTIONS(1532), + [anon_sym_offsetof] = ACTIONS(1535), + [anon_sym__Generic] = ACTIONS(1538), + [anon_sym_asm] = ACTIONS(1541), + [anon_sym___asm__] = ACTIONS(1541), + [sym_number_literal] = ACTIONS(1544), + [anon_sym_L_SQUOTE] = ACTIONS(1547), + [anon_sym_u_SQUOTE] = ACTIONS(1547), + [anon_sym_U_SQUOTE] = ACTIONS(1547), + [anon_sym_u8_SQUOTE] = ACTIONS(1547), + [anon_sym_SQUOTE] = ACTIONS(1547), + [anon_sym_L_DQUOTE] = ACTIONS(1550), + [anon_sym_u_DQUOTE] = ACTIONS(1550), + [anon_sym_U_DQUOTE] = ACTIONS(1550), + [anon_sym_u8_DQUOTE] = ACTIONS(1550), + [anon_sym_DQUOTE] = ACTIONS(1550), + [sym_true] = ACTIONS(1553), + [sym_false] = ACTIONS(1553), + [anon_sym_NULL] = ACTIONS(1556), + [anon_sym_nullptr] = ACTIONS(1556), + [sym_comment] = ACTIONS(3), + }, + [436] = { + [sym_attribute_declaration] = STATE(442), + [sym_compound_statement] = STATE(290), + [sym_attributed_statement] = STATE(290), + [sym_statement] = STATE(281), + [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_seh_try_statement] = STATE(290), + [sym_seh_leave_statement] = STATE(290), + [sym_expression] = STATE(1167), + [sym__string] = STATE(758), + [sym_comma_expression] = STATE(2207), + [sym_conditional_expression] = STATE(758), + [sym_assignment_expression] = STATE(758), + [sym_pointer_expression] = STATE(944), + [sym_unary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_cast_expression] = STATE(758), + [sym_sizeof_expression] = STATE(758), + [sym_alignof_expression] = STATE(758), + [sym_offsetof_expression] = STATE(758), + [sym_generic_expression] = STATE(758), + [sym_subscript_expression] = STATE(944), + [sym_call_expression] = STATE(944), + [sym_gnu_asm_expression] = STATE(758), + [sym_field_expression] = STATE(944), + [sym_compound_literal_expression] = STATE(758), + [sym_parenthesized_expression] = STATE(944), + [sym_char_literal] = STATE(758), + [sym_concatenated_string] = STATE(758), + [sym_string_literal] = STATE(671), + [sym_null] = STATE(758), + [aux_sym_attributed_declarator_repeat1] = STATE(442), + [sym_identifier] = ACTIONS(1567), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -55623,96 +64480,96 @@ 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(378), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1556), - [anon_sym_LBRACE] = ACTIONS(45), - [anon_sym_if] = ACTIONS(1110), - [anon_sym_switch] = ACTIONS(65), - [anon_sym_case] = ACTIONS(1558), - [anon_sym_default] = ACTIONS(1560), - [anon_sym_while] = ACTIONS(1112), - [anon_sym_do] = ACTIONS(73), - [anon_sym_for] = ACTIONS(1114), - [anon_sym_return] = ACTIONS(77), - [anon_sym_break] = ACTIONS(79), - [anon_sym_continue] = ACTIONS(81), - [anon_sym_goto] = ACTIONS(83), - [anon_sym___try] = ACTIONS(1116), - [anon_sym___leave] = ACTIONS(414), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [anon_sym___alignof__] = ACTIONS(89), - [anon_sym___alignof] = ACTIONS(89), - [anon_sym__alignof] = ACTIONS(89), - [anon_sym_alignof] = ACTIONS(89), - [anon_sym__Alignof] = ACTIONS(89), - [anon_sym_offsetof] = ACTIONS(91), - [anon_sym__Generic] = ACTIONS(93), - [anon_sym_asm] = ACTIONS(95), - [anon_sym___asm__] = ACTIONS(95), - [sym_number_literal] = ACTIONS(163), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(165), - [sym_false] = ACTIONS(165), - [anon_sym_NULL] = ACTIONS(105), - [anon_sym_nullptr] = ACTIONS(105), + [anon_sym_SEMI] = ACTIONS(383), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1561), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_if] = ACTIONS(1118), + [anon_sym_switch] = ACTIONS(67), + [anon_sym_case] = ACTIONS(1569), + [anon_sym_default] = ACTIONS(1571), + [anon_sym_while] = ACTIONS(1120), + [anon_sym_do] = ACTIONS(75), + [anon_sym_for] = ACTIONS(1122), + [anon_sym_return] = ACTIONS(79), + [anon_sym_break] = ACTIONS(81), + [anon_sym_continue] = ACTIONS(83), + [anon_sym_goto] = ACTIONS(85), + [anon_sym___try] = ACTIONS(1124), + [anon_sym___leave] = ACTIONS(419), + [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(87), + [anon_sym_sizeof] = ACTIONS(89), + [anon_sym___alignof__] = ACTIONS(91), + [anon_sym___alignof] = ACTIONS(91), + [anon_sym__alignof] = ACTIONS(91), + [anon_sym_alignof] = ACTIONS(91), + [anon_sym__Alignof] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(93), + [anon_sym__Generic] = ACTIONS(95), + [anon_sym_asm] = ACTIONS(97), + [anon_sym___asm__] = ACTIONS(97), + [sym_number_literal] = ACTIONS(165), + [anon_sym_L_SQUOTE] = ACTIONS(101), + [anon_sym_u_SQUOTE] = ACTIONS(101), + [anon_sym_U_SQUOTE] = ACTIONS(101), + [anon_sym_u8_SQUOTE] = ACTIONS(101), + [anon_sym_SQUOTE] = ACTIONS(101), + [anon_sym_L_DQUOTE] = ACTIONS(103), + [anon_sym_u_DQUOTE] = ACTIONS(103), + [anon_sym_U_DQUOTE] = ACTIONS(103), + [anon_sym_u8_DQUOTE] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_true] = ACTIONS(167), + [sym_false] = ACTIONS(167), + [anon_sym_NULL] = ACTIONS(107), + [anon_sym_nullptr] = ACTIONS(107), [sym_comment] = ACTIONS(3), }, - [371] = { - [sym_attribute_declaration] = STATE(347), - [sym_compound_statement] = STATE(148), - [sym_attributed_statement] = STATE(148), - [sym_statement] = STATE(244), - [sym_labeled_statement] = STATE(148), - [sym_expression_statement] = STATE(148), - [sym_if_statement] = STATE(148), - [sym_switch_statement] = STATE(148), - [sym_case_statement] = STATE(148), - [sym_while_statement] = STATE(148), - [sym_do_statement] = STATE(148), - [sym_for_statement] = STATE(148), - [sym_return_statement] = STATE(148), - [sym_break_statement] = STATE(148), - [sym_continue_statement] = STATE(148), - [sym_goto_statement] = STATE(148), - [sym_seh_try_statement] = STATE(148), - [sym_seh_leave_statement] = STATE(148), - [sym_expression] = STATE(1033), - [sym__string] = STATE(663), - [sym_comma_expression] = STATE(1818), - [sym_conditional_expression] = STATE(663), - [sym_assignment_expression] = STATE(663), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(663), - [sym_binary_expression] = STATE(663), - [sym_update_expression] = STATE(663), - [sym_cast_expression] = STATE(663), - [sym_sizeof_expression] = STATE(663), - [sym_alignof_expression] = STATE(663), - [sym_offsetof_expression] = STATE(663), - [sym_generic_expression] = STATE(663), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(663), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(663), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(663), - [sym_concatenated_string] = STATE(663), - [sym_string_literal] = STATE(659), - [sym_null] = STATE(663), - [aux_sym_attributed_declarator_repeat1] = STATE(347), - [sym_identifier] = ACTIONS(1554), + [437] = { + [sym_attribute_declaration] = STATE(428), + [sym_compound_statement] = STATE(290), + [sym_attributed_statement] = STATE(290), + [sym_statement] = STATE(274), + [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_seh_try_statement] = STATE(290), + [sym_seh_leave_statement] = STATE(290), + [sym_expression] = STATE(1167), + [sym__string] = STATE(758), + [sym_comma_expression] = STATE(2207), + [sym_conditional_expression] = STATE(758), + [sym_assignment_expression] = STATE(758), + [sym_pointer_expression] = STATE(944), + [sym_unary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_cast_expression] = STATE(758), + [sym_sizeof_expression] = STATE(758), + [sym_alignof_expression] = STATE(758), + [sym_offsetof_expression] = STATE(758), + [sym_generic_expression] = STATE(758), + [sym_subscript_expression] = STATE(944), + [sym_call_expression] = STATE(944), + [sym_gnu_asm_expression] = STATE(758), + [sym_field_expression] = STATE(944), + [sym_compound_literal_expression] = STATE(758), + [sym_parenthesized_expression] = STATE(944), + [sym_char_literal] = STATE(758), + [sym_concatenated_string] = STATE(758), + [sym_string_literal] = STATE(671), + [sym_null] = STATE(758), + [aux_sym_attributed_declarator_repeat1] = STATE(428), + [sym_identifier] = ACTIONS(1563), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -55720,96 +64577,96 @@ 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(378), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1556), - [anon_sym_LBRACE] = ACTIONS(45), - [anon_sym_if] = ACTIONS(1110), - [anon_sym_switch] = ACTIONS(65), - [anon_sym_case] = ACTIONS(1558), - [anon_sym_default] = ACTIONS(1560), - [anon_sym_while] = ACTIONS(1112), - [anon_sym_do] = ACTIONS(73), - [anon_sym_for] = ACTIONS(1114), - [anon_sym_return] = ACTIONS(77), - [anon_sym_break] = ACTIONS(79), - [anon_sym_continue] = ACTIONS(81), - [anon_sym_goto] = ACTIONS(83), - [anon_sym___try] = ACTIONS(1116), - [anon_sym___leave] = ACTIONS(414), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [anon_sym___alignof__] = ACTIONS(89), - [anon_sym___alignof] = ACTIONS(89), - [anon_sym__alignof] = ACTIONS(89), - [anon_sym_alignof] = ACTIONS(89), - [anon_sym__Alignof] = ACTIONS(89), - [anon_sym_offsetof] = ACTIONS(91), - [anon_sym__Generic] = ACTIONS(93), - [anon_sym_asm] = ACTIONS(95), - [anon_sym___asm__] = ACTIONS(95), - [sym_number_literal] = ACTIONS(163), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(165), - [sym_false] = ACTIONS(165), - [anon_sym_NULL] = ACTIONS(105), - [anon_sym_nullptr] = ACTIONS(105), + [anon_sym_SEMI] = ACTIONS(383), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1561), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_if] = ACTIONS(395), + [anon_sym_switch] = ACTIONS(397), + [anon_sym_case] = ACTIONS(399), + [anon_sym_default] = ACTIONS(401), + [anon_sym_while] = ACTIONS(403), + [anon_sym_do] = ACTIONS(405), + [anon_sym_for] = ACTIONS(407), + [anon_sym_return] = ACTIONS(409), + [anon_sym_break] = ACTIONS(411), + [anon_sym_continue] = ACTIONS(413), + [anon_sym_goto] = ACTIONS(415), + [anon_sym___try] = ACTIONS(417), + [anon_sym___leave] = ACTIONS(419), + [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(87), + [anon_sym_sizeof] = ACTIONS(89), + [anon_sym___alignof__] = ACTIONS(91), + [anon_sym___alignof] = ACTIONS(91), + [anon_sym__alignof] = ACTIONS(91), + [anon_sym_alignof] = ACTIONS(91), + [anon_sym__Alignof] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(93), + [anon_sym__Generic] = ACTIONS(95), + [anon_sym_asm] = ACTIONS(97), + [anon_sym___asm__] = ACTIONS(97), + [sym_number_literal] = ACTIONS(165), + [anon_sym_L_SQUOTE] = ACTIONS(101), + [anon_sym_u_SQUOTE] = ACTIONS(101), + [anon_sym_U_SQUOTE] = ACTIONS(101), + [anon_sym_u8_SQUOTE] = ACTIONS(101), + [anon_sym_SQUOTE] = ACTIONS(101), + [anon_sym_L_DQUOTE] = ACTIONS(103), + [anon_sym_u_DQUOTE] = ACTIONS(103), + [anon_sym_U_DQUOTE] = ACTIONS(103), + [anon_sym_u8_DQUOTE] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_true] = ACTIONS(167), + [sym_false] = ACTIONS(167), + [anon_sym_NULL] = ACTIONS(107), + [anon_sym_nullptr] = ACTIONS(107), [sym_comment] = ACTIONS(3), }, - [372] = { - [sym_attribute_declaration] = STATE(348), - [sym_compound_statement] = STATE(232), - [sym_attributed_statement] = STATE(232), - [sym_statement] = STATE(228), - [sym_labeled_statement] = STATE(232), - [sym_expression_statement] = STATE(232), - [sym_if_statement] = STATE(232), - [sym_switch_statement] = STATE(232), - [sym_case_statement] = STATE(232), - [sym_while_statement] = STATE(232), - [sym_do_statement] = STATE(232), - [sym_for_statement] = STATE(232), - [sym_return_statement] = STATE(232), - [sym_break_statement] = STATE(232), - [sym_continue_statement] = STATE(232), - [sym_goto_statement] = STATE(232), - [sym_seh_try_statement] = STATE(232), - [sym_seh_leave_statement] = STATE(232), - [sym_expression] = STATE(1060), - [sym__string] = STATE(663), - [sym_comma_expression] = STATE(1853), - [sym_conditional_expression] = STATE(663), - [sym_assignment_expression] = STATE(663), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(663), - [sym_binary_expression] = STATE(663), - [sym_update_expression] = STATE(663), - [sym_cast_expression] = STATE(663), - [sym_sizeof_expression] = STATE(663), - [sym_alignof_expression] = STATE(663), - [sym_offsetof_expression] = STATE(663), - [sym_generic_expression] = STATE(663), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(663), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(663), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(663), - [sym_concatenated_string] = STATE(663), - [sym_string_literal] = STATE(659), - [sym_null] = STATE(663), - [aux_sym_attributed_declarator_repeat1] = STATE(348), - [sym_identifier] = ACTIONS(1612), + [438] = { + [sym_attribute_declaration] = STATE(415), + [sym_compound_statement] = STATE(205), + [sym_attributed_statement] = STATE(205), + [sym_statement] = STATE(262), + [sym_labeled_statement] = STATE(205), + [sym_expression_statement] = STATE(205), + [sym_if_statement] = STATE(205), + [sym_switch_statement] = STATE(205), + [sym_case_statement] = STATE(205), + [sym_while_statement] = STATE(205), + [sym_do_statement] = STATE(205), + [sym_for_statement] = STATE(205), + [sym_return_statement] = STATE(205), + [sym_break_statement] = STATE(205), + [sym_continue_statement] = STATE(205), + [sym_goto_statement] = STATE(205), + [sym_seh_try_statement] = STATE(205), + [sym_seh_leave_statement] = STATE(205), + [sym_expression] = STATE(1193), + [sym__string] = STATE(758), + [sym_comma_expression] = STATE(2067), + [sym_conditional_expression] = STATE(758), + [sym_assignment_expression] = STATE(758), + [sym_pointer_expression] = STATE(944), + [sym_unary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_cast_expression] = STATE(758), + [sym_sizeof_expression] = STATE(758), + [sym_alignof_expression] = STATE(758), + [sym_offsetof_expression] = STATE(758), + [sym_generic_expression] = STATE(758), + [sym_subscript_expression] = STATE(944), + [sym_call_expression] = STATE(944), + [sym_gnu_asm_expression] = STATE(758), + [sym_field_expression] = STATE(944), + [sym_compound_literal_expression] = STATE(758), + [sym_parenthesized_expression] = STATE(944), + [sym_char_literal] = STATE(758), + [sym_concatenated_string] = STATE(758), + [sym_string_literal] = STATE(671), + [sym_null] = STATE(758), + [aux_sym_attributed_declarator_repeat1] = STATE(415), + [sym_identifier] = ACTIONS(1565), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -55817,96 +64674,96 @@ 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(996), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1556), - [anon_sym_LBRACE] = ACTIONS(45), - [anon_sym_if] = ACTIONS(63), - [anon_sym_switch] = ACTIONS(65), - [anon_sym_case] = ACTIONS(67), - [anon_sym_default] = ACTIONS(69), - [anon_sym_while] = ACTIONS(71), - [anon_sym_do] = ACTIONS(73), - [anon_sym_for] = ACTIONS(75), - [anon_sym_return] = ACTIONS(77), - [anon_sym_break] = ACTIONS(79), - [anon_sym_continue] = ACTIONS(81), - [anon_sym_goto] = ACTIONS(83), - [anon_sym___try] = ACTIONS(998), - [anon_sym___leave] = ACTIONS(1000), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [anon_sym___alignof__] = ACTIONS(89), - [anon_sym___alignof] = ACTIONS(89), - [anon_sym__alignof] = ACTIONS(89), - [anon_sym_alignof] = ACTIONS(89), - [anon_sym__Alignof] = ACTIONS(89), - [anon_sym_offsetof] = ACTIONS(91), - [anon_sym__Generic] = ACTIONS(93), - [anon_sym_asm] = ACTIONS(95), - [anon_sym___asm__] = ACTIONS(95), - [sym_number_literal] = ACTIONS(163), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(165), - [sym_false] = ACTIONS(165), - [anon_sym_NULL] = ACTIONS(105), - [anon_sym_nullptr] = ACTIONS(105), + [anon_sym_SEMI] = ACTIONS(447), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1561), + [anon_sym_LBRACE] = ACTIONS(455), + [anon_sym_if] = ACTIONS(457), + [anon_sym_switch] = ACTIONS(459), + [anon_sym_case] = ACTIONS(461), + [anon_sym_default] = ACTIONS(463), + [anon_sym_while] = ACTIONS(465), + [anon_sym_do] = ACTIONS(467), + [anon_sym_for] = ACTIONS(469), + [anon_sym_return] = ACTIONS(471), + [anon_sym_break] = ACTIONS(473), + [anon_sym_continue] = ACTIONS(475), + [anon_sym_goto] = ACTIONS(477), + [anon_sym___try] = ACTIONS(479), + [anon_sym___leave] = ACTIONS(481), + [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(87), + [anon_sym_sizeof] = ACTIONS(89), + [anon_sym___alignof__] = ACTIONS(91), + [anon_sym___alignof] = ACTIONS(91), + [anon_sym__alignof] = ACTIONS(91), + [anon_sym_alignof] = ACTIONS(91), + [anon_sym__Alignof] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(93), + [anon_sym__Generic] = ACTIONS(95), + [anon_sym_asm] = ACTIONS(97), + [anon_sym___asm__] = ACTIONS(97), + [sym_number_literal] = ACTIONS(165), + [anon_sym_L_SQUOTE] = ACTIONS(101), + [anon_sym_u_SQUOTE] = ACTIONS(101), + [anon_sym_U_SQUOTE] = ACTIONS(101), + [anon_sym_u8_SQUOTE] = ACTIONS(101), + [anon_sym_SQUOTE] = ACTIONS(101), + [anon_sym_L_DQUOTE] = ACTIONS(103), + [anon_sym_u_DQUOTE] = ACTIONS(103), + [anon_sym_U_DQUOTE] = ACTIONS(103), + [anon_sym_u8_DQUOTE] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_true] = ACTIONS(167), + [sym_false] = ACTIONS(167), + [anon_sym_NULL] = ACTIONS(107), + [anon_sym_nullptr] = ACTIONS(107), [sym_comment] = ACTIONS(3), }, - [373] = { - [sym_attribute_declaration] = STATE(346), - [sym_compound_statement] = STATE(174), - [sym_attributed_statement] = STATE(174), - [sym_statement] = STATE(179), - [sym_labeled_statement] = STATE(174), - [sym_expression_statement] = STATE(174), - [sym_if_statement] = STATE(174), - [sym_switch_statement] = STATE(174), - [sym_case_statement] = STATE(174), - [sym_while_statement] = STATE(174), - [sym_do_statement] = STATE(174), - [sym_for_statement] = STATE(174), - [sym_return_statement] = STATE(174), - [sym_break_statement] = STATE(174), - [sym_continue_statement] = STATE(174), - [sym_goto_statement] = STATE(174), - [sym_seh_try_statement] = STATE(174), - [sym_seh_leave_statement] = STATE(174), - [sym_expression] = STATE(1031), - [sym__string] = STATE(663), - [sym_comma_expression] = STATE(1792), - [sym_conditional_expression] = STATE(663), - [sym_assignment_expression] = STATE(663), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(663), - [sym_binary_expression] = STATE(663), - [sym_update_expression] = STATE(663), - [sym_cast_expression] = STATE(663), - [sym_sizeof_expression] = STATE(663), - [sym_alignof_expression] = STATE(663), - [sym_offsetof_expression] = STATE(663), - [sym_generic_expression] = STATE(663), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(663), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(663), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(663), - [sym_concatenated_string] = STATE(663), - [sym_string_literal] = STATE(659), - [sym_null] = STATE(663), - [aux_sym_attributed_declarator_repeat1] = STATE(346), - [sym_identifier] = ACTIONS(1562), + [439] = { + [sym_attribute_declaration] = STATE(417), + [sym_compound_statement] = STATE(77), + [sym_attributed_statement] = STATE(77), + [sym_statement] = STATE(113), + [sym_labeled_statement] = STATE(77), + [sym_expression_statement] = STATE(77), + [sym_if_statement] = STATE(77), + [sym_switch_statement] = STATE(77), + [sym_case_statement] = STATE(77), + [sym_while_statement] = STATE(77), + [sym_do_statement] = STATE(77), + [sym_for_statement] = STATE(77), + [sym_return_statement] = STATE(77), + [sym_break_statement] = STATE(77), + [sym_continue_statement] = STATE(77), + [sym_goto_statement] = STATE(77), + [sym_seh_try_statement] = STATE(77), + [sym_seh_leave_statement] = STATE(77), + [sym_expression] = STATE(1157), + [sym__string] = STATE(758), + [sym_comma_expression] = STATE(2232), + [sym_conditional_expression] = STATE(758), + [sym_assignment_expression] = STATE(758), + [sym_pointer_expression] = STATE(944), + [sym_unary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_cast_expression] = STATE(758), + [sym_sizeof_expression] = STATE(758), + [sym_alignof_expression] = STATE(758), + [sym_offsetof_expression] = STATE(758), + [sym_generic_expression] = STATE(758), + [sym_subscript_expression] = STATE(944), + [sym_call_expression] = STATE(944), + [sym_gnu_asm_expression] = STATE(758), + [sym_field_expression] = STATE(944), + [sym_compound_literal_expression] = STATE(758), + [sym_parenthesized_expression] = STATE(944), + [sym_char_literal] = STATE(758), + [sym_concatenated_string] = STATE(758), + [sym_string_literal] = STATE(671), + [sym_null] = STATE(758), + [aux_sym_attributed_declarator_repeat1] = STATE(417), + [sym_identifier] = ACTIONS(1621), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -55914,96 +64771,96 @@ 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(516), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1556), - [anon_sym_LBRACE] = ACTIONS(524), - [anon_sym_if] = ACTIONS(526), - [anon_sym_switch] = ACTIONS(528), - [anon_sym_case] = ACTIONS(530), - [anon_sym_default] = ACTIONS(532), - [anon_sym_while] = ACTIONS(534), - [anon_sym_do] = ACTIONS(536), - [anon_sym_for] = ACTIONS(538), - [anon_sym_return] = ACTIONS(540), - [anon_sym_break] = ACTIONS(542), - [anon_sym_continue] = ACTIONS(544), - [anon_sym_goto] = ACTIONS(546), - [anon_sym___try] = ACTIONS(548), - [anon_sym___leave] = ACTIONS(550), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [anon_sym___alignof__] = ACTIONS(89), - [anon_sym___alignof] = ACTIONS(89), - [anon_sym__alignof] = ACTIONS(89), - [anon_sym_alignof] = ACTIONS(89), - [anon_sym__Alignof] = ACTIONS(89), - [anon_sym_offsetof] = ACTIONS(91), - [anon_sym__Generic] = ACTIONS(93), - [anon_sym_asm] = ACTIONS(95), - [anon_sym___asm__] = ACTIONS(95), - [sym_number_literal] = ACTIONS(163), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(165), - [sym_false] = ACTIONS(165), - [anon_sym_NULL] = ACTIONS(105), - [anon_sym_nullptr] = ACTIONS(105), + [anon_sym_SEMI] = ACTIONS(129), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1561), + [anon_sym_LBRACE] = ACTIONS(137), + [anon_sym_if] = ACTIONS(139), + [anon_sym_switch] = ACTIONS(141), + [anon_sym_case] = ACTIONS(143), + [anon_sym_default] = ACTIONS(145), + [anon_sym_while] = ACTIONS(147), + [anon_sym_do] = ACTIONS(149), + [anon_sym_for] = ACTIONS(151), + [anon_sym_return] = ACTIONS(153), + [anon_sym_break] = ACTIONS(155), + [anon_sym_continue] = ACTIONS(157), + [anon_sym_goto] = ACTIONS(159), + [anon_sym___try] = ACTIONS(161), + [anon_sym___leave] = ACTIONS(163), + [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(87), + [anon_sym_sizeof] = ACTIONS(89), + [anon_sym___alignof__] = ACTIONS(91), + [anon_sym___alignof] = ACTIONS(91), + [anon_sym__alignof] = ACTIONS(91), + [anon_sym_alignof] = ACTIONS(91), + [anon_sym__Alignof] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(93), + [anon_sym__Generic] = ACTIONS(95), + [anon_sym_asm] = ACTIONS(97), + [anon_sym___asm__] = ACTIONS(97), + [sym_number_literal] = ACTIONS(165), + [anon_sym_L_SQUOTE] = ACTIONS(101), + [anon_sym_u_SQUOTE] = ACTIONS(101), + [anon_sym_U_SQUOTE] = ACTIONS(101), + [anon_sym_u8_SQUOTE] = ACTIONS(101), + [anon_sym_SQUOTE] = ACTIONS(101), + [anon_sym_L_DQUOTE] = ACTIONS(103), + [anon_sym_u_DQUOTE] = ACTIONS(103), + [anon_sym_U_DQUOTE] = ACTIONS(103), + [anon_sym_u8_DQUOTE] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_true] = ACTIONS(167), + [sym_false] = ACTIONS(167), + [anon_sym_NULL] = ACTIONS(107), + [anon_sym_nullptr] = ACTIONS(107), [sym_comment] = ACTIONS(3), }, - [374] = { - [sym_attribute_declaration] = STATE(375), - [sym_compound_statement] = STATE(148), - [sym_attributed_statement] = STATE(148), - [sym_statement] = STATE(144), - [sym_labeled_statement] = STATE(148), - [sym_expression_statement] = STATE(148), - [sym_if_statement] = STATE(148), - [sym_switch_statement] = STATE(148), - [sym_case_statement] = STATE(148), - [sym_while_statement] = STATE(148), - [sym_do_statement] = STATE(148), - [sym_for_statement] = STATE(148), - [sym_return_statement] = STATE(148), - [sym_break_statement] = STATE(148), - [sym_continue_statement] = STATE(148), - [sym_goto_statement] = STATE(148), - [sym_seh_try_statement] = STATE(148), - [sym_seh_leave_statement] = STATE(148), - [sym_expression] = STATE(1033), - [sym__string] = STATE(663), - [sym_comma_expression] = STATE(1818), - [sym_conditional_expression] = STATE(663), - [sym_assignment_expression] = STATE(663), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(663), - [sym_binary_expression] = STATE(663), - [sym_update_expression] = STATE(663), - [sym_cast_expression] = STATE(663), - [sym_sizeof_expression] = STATE(663), - [sym_alignof_expression] = STATE(663), - [sym_offsetof_expression] = STATE(663), - [sym_generic_expression] = STATE(663), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(663), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(663), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(663), - [sym_concatenated_string] = STATE(663), - [sym_string_literal] = STATE(659), - [sym_null] = STATE(663), - [aux_sym_attributed_declarator_repeat1] = STATE(375), - [sym_identifier] = ACTIONS(1616), + [440] = { + [sym_attribute_declaration] = STATE(421), + [sym_compound_statement] = STATE(180), + [sym_attributed_statement] = STATE(180), + [sym_statement] = STATE(285), + [sym_labeled_statement] = STATE(180), + [sym_expression_statement] = STATE(180), + [sym_if_statement] = STATE(180), + [sym_switch_statement] = STATE(180), + [sym_case_statement] = STATE(180), + [sym_while_statement] = STATE(180), + [sym_do_statement] = STATE(180), + [sym_for_statement] = STATE(180), + [sym_return_statement] = STATE(180), + [sym_break_statement] = STATE(180), + [sym_continue_statement] = STATE(180), + [sym_goto_statement] = STATE(180), + [sym_seh_try_statement] = STATE(180), + [sym_seh_leave_statement] = STATE(180), + [sym_expression] = STATE(1179), + [sym__string] = STATE(758), + [sym_comma_expression] = STATE(2159), + [sym_conditional_expression] = STATE(758), + [sym_assignment_expression] = STATE(758), + [sym_pointer_expression] = STATE(944), + [sym_unary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_cast_expression] = STATE(758), + [sym_sizeof_expression] = STATE(758), + [sym_alignof_expression] = STATE(758), + [sym_offsetof_expression] = STATE(758), + [sym_generic_expression] = STATE(758), + [sym_subscript_expression] = STATE(944), + [sym_call_expression] = STATE(944), + [sym_gnu_asm_expression] = STATE(758), + [sym_field_expression] = STATE(944), + [sym_compound_literal_expression] = STATE(758), + [sym_parenthesized_expression] = STATE(944), + [sym_char_literal] = STATE(758), + [sym_concatenated_string] = STATE(758), + [sym_string_literal] = STATE(671), + [sym_null] = STATE(758), + [aux_sym_attributed_declarator_repeat1] = STATE(421), + [sym_identifier] = ACTIONS(1559), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -56011,96 +64868,96 @@ 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(378), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1556), - [anon_sym_LBRACE] = ACTIONS(386), - [anon_sym_if] = ACTIONS(390), - [anon_sym_switch] = ACTIONS(392), - [anon_sym_case] = ACTIONS(394), - [anon_sym_default] = ACTIONS(396), - [anon_sym_while] = ACTIONS(398), - [anon_sym_do] = ACTIONS(400), - [anon_sym_for] = ACTIONS(402), - [anon_sym_return] = ACTIONS(404), - [anon_sym_break] = ACTIONS(406), - [anon_sym_continue] = ACTIONS(408), - [anon_sym_goto] = ACTIONS(410), - [anon_sym___try] = ACTIONS(412), - [anon_sym___leave] = ACTIONS(414), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [anon_sym___alignof__] = ACTIONS(89), - [anon_sym___alignof] = ACTIONS(89), - [anon_sym__alignof] = ACTIONS(89), - [anon_sym_alignof] = ACTIONS(89), - [anon_sym__Alignof] = ACTIONS(89), - [anon_sym_offsetof] = ACTIONS(91), - [anon_sym__Generic] = ACTIONS(93), - [anon_sym_asm] = ACTIONS(95), - [anon_sym___asm__] = ACTIONS(95), - [sym_number_literal] = ACTIONS(163), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(165), - [sym_false] = ACTIONS(165), - [anon_sym_NULL] = ACTIONS(105), - [anon_sym_nullptr] = ACTIONS(105), + [anon_sym_SEMI] = ACTIONS(1006), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1561), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_if] = ACTIONS(65), + [anon_sym_switch] = ACTIONS(67), + [anon_sym_case] = ACTIONS(69), + [anon_sym_default] = ACTIONS(71), + [anon_sym_while] = ACTIONS(73), + [anon_sym_do] = ACTIONS(75), + [anon_sym_for] = ACTIONS(77), + [anon_sym_return] = ACTIONS(79), + [anon_sym_break] = ACTIONS(81), + [anon_sym_continue] = ACTIONS(83), + [anon_sym_goto] = ACTIONS(85), + [anon_sym___try] = ACTIONS(1008), + [anon_sym___leave] = ACTIONS(1010), + [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(87), + [anon_sym_sizeof] = ACTIONS(89), + [anon_sym___alignof__] = ACTIONS(91), + [anon_sym___alignof] = ACTIONS(91), + [anon_sym__alignof] = ACTIONS(91), + [anon_sym_alignof] = ACTIONS(91), + [anon_sym__Alignof] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(93), + [anon_sym__Generic] = ACTIONS(95), + [anon_sym_asm] = ACTIONS(97), + [anon_sym___asm__] = ACTIONS(97), + [sym_number_literal] = ACTIONS(165), + [anon_sym_L_SQUOTE] = ACTIONS(101), + [anon_sym_u_SQUOTE] = ACTIONS(101), + [anon_sym_U_SQUOTE] = ACTIONS(101), + [anon_sym_u8_SQUOTE] = ACTIONS(101), + [anon_sym_SQUOTE] = ACTIONS(101), + [anon_sym_L_DQUOTE] = ACTIONS(103), + [anon_sym_u_DQUOTE] = ACTIONS(103), + [anon_sym_U_DQUOTE] = ACTIONS(103), + [anon_sym_u8_DQUOTE] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_true] = ACTIONS(167), + [sym_false] = ACTIONS(167), + [anon_sym_NULL] = ACTIONS(107), + [anon_sym_nullptr] = ACTIONS(107), [sym_comment] = ACTIONS(3), }, - [375] = { - [sym_attribute_declaration] = STATE(379), - [sym_compound_statement] = STATE(148), - [sym_attributed_statement] = STATE(148), - [sym_statement] = STATE(210), - [sym_labeled_statement] = STATE(148), - [sym_expression_statement] = STATE(148), - [sym_if_statement] = STATE(148), - [sym_switch_statement] = STATE(148), - [sym_case_statement] = STATE(148), - [sym_while_statement] = STATE(148), - [sym_do_statement] = STATE(148), - [sym_for_statement] = STATE(148), - [sym_return_statement] = STATE(148), - [sym_break_statement] = STATE(148), - [sym_continue_statement] = STATE(148), - [sym_goto_statement] = STATE(148), - [sym_seh_try_statement] = STATE(148), - [sym_seh_leave_statement] = STATE(148), - [sym_expression] = STATE(1033), - [sym__string] = STATE(663), - [sym_comma_expression] = STATE(1818), - [sym_conditional_expression] = STATE(663), - [sym_assignment_expression] = STATE(663), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(663), - [sym_binary_expression] = STATE(663), - [sym_update_expression] = STATE(663), - [sym_cast_expression] = STATE(663), - [sym_sizeof_expression] = STATE(663), - [sym_alignof_expression] = STATE(663), - [sym_offsetof_expression] = STATE(663), - [sym_generic_expression] = STATE(663), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(663), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(663), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(663), - [sym_concatenated_string] = STATE(663), - [sym_string_literal] = STATE(659), - [sym_null] = STATE(663), - [aux_sym_attributed_declarator_repeat1] = STATE(379), - [sym_identifier] = ACTIONS(1616), + [441] = { + [sym_attribute_declaration] = STATE(442), + [sym_compound_statement] = STATE(290), + [sym_attributed_statement] = STATE(290), + [sym_statement] = STATE(458), + [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_seh_try_statement] = STATE(290), + [sym_seh_leave_statement] = STATE(290), + [sym_expression] = STATE(1167), + [sym__string] = STATE(758), + [sym_comma_expression] = STATE(2207), + [sym_conditional_expression] = STATE(758), + [sym_assignment_expression] = STATE(758), + [sym_pointer_expression] = STATE(944), + [sym_unary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_cast_expression] = STATE(758), + [sym_sizeof_expression] = STATE(758), + [sym_alignof_expression] = STATE(758), + [sym_offsetof_expression] = STATE(758), + [sym_generic_expression] = STATE(758), + [sym_subscript_expression] = STATE(944), + [sym_call_expression] = STATE(944), + [sym_gnu_asm_expression] = STATE(758), + [sym_field_expression] = STATE(944), + [sym_compound_literal_expression] = STATE(758), + [sym_parenthesized_expression] = STATE(944), + [sym_char_literal] = STATE(758), + [sym_concatenated_string] = STATE(758), + [sym_string_literal] = STATE(671), + [sym_null] = STATE(758), + [aux_sym_attributed_declarator_repeat1] = STATE(442), + [sym_identifier] = ACTIONS(1567), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -56108,96 +64965,96 @@ 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(378), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1556), - [anon_sym_LBRACE] = ACTIONS(386), - [anon_sym_if] = ACTIONS(390), - [anon_sym_switch] = ACTIONS(392), - [anon_sym_case] = ACTIONS(394), - [anon_sym_default] = ACTIONS(396), - [anon_sym_while] = ACTIONS(398), - [anon_sym_do] = ACTIONS(400), - [anon_sym_for] = ACTIONS(402), - [anon_sym_return] = ACTIONS(404), - [anon_sym_break] = ACTIONS(406), - [anon_sym_continue] = ACTIONS(408), - [anon_sym_goto] = ACTIONS(410), - [anon_sym___try] = ACTIONS(412), - [anon_sym___leave] = ACTIONS(414), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [anon_sym___alignof__] = ACTIONS(89), - [anon_sym___alignof] = ACTIONS(89), - [anon_sym__alignof] = ACTIONS(89), - [anon_sym_alignof] = ACTIONS(89), - [anon_sym__Alignof] = ACTIONS(89), - [anon_sym_offsetof] = ACTIONS(91), - [anon_sym__Generic] = ACTIONS(93), - [anon_sym_asm] = ACTIONS(95), - [anon_sym___asm__] = ACTIONS(95), - [sym_number_literal] = ACTIONS(163), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(165), - [sym_false] = ACTIONS(165), - [anon_sym_NULL] = ACTIONS(105), - [anon_sym_nullptr] = ACTIONS(105), + [anon_sym_SEMI] = ACTIONS(383), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1561), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_if] = ACTIONS(1118), + [anon_sym_switch] = ACTIONS(67), + [anon_sym_case] = ACTIONS(1569), + [anon_sym_default] = ACTIONS(1571), + [anon_sym_while] = ACTIONS(1120), + [anon_sym_do] = ACTIONS(75), + [anon_sym_for] = ACTIONS(1122), + [anon_sym_return] = ACTIONS(79), + [anon_sym_break] = ACTIONS(81), + [anon_sym_continue] = ACTIONS(83), + [anon_sym_goto] = ACTIONS(85), + [anon_sym___try] = ACTIONS(1124), + [anon_sym___leave] = ACTIONS(419), + [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(87), + [anon_sym_sizeof] = ACTIONS(89), + [anon_sym___alignof__] = ACTIONS(91), + [anon_sym___alignof] = ACTIONS(91), + [anon_sym__alignof] = ACTIONS(91), + [anon_sym_alignof] = ACTIONS(91), + [anon_sym__Alignof] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(93), + [anon_sym__Generic] = ACTIONS(95), + [anon_sym_asm] = ACTIONS(97), + [anon_sym___asm__] = ACTIONS(97), + [sym_number_literal] = ACTIONS(165), + [anon_sym_L_SQUOTE] = ACTIONS(101), + [anon_sym_u_SQUOTE] = ACTIONS(101), + [anon_sym_U_SQUOTE] = ACTIONS(101), + [anon_sym_u8_SQUOTE] = ACTIONS(101), + [anon_sym_SQUOTE] = ACTIONS(101), + [anon_sym_L_DQUOTE] = ACTIONS(103), + [anon_sym_u_DQUOTE] = ACTIONS(103), + [anon_sym_U_DQUOTE] = ACTIONS(103), + [anon_sym_u8_DQUOTE] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_true] = ACTIONS(167), + [sym_false] = ACTIONS(167), + [anon_sym_NULL] = ACTIONS(107), + [anon_sym_nullptr] = ACTIONS(107), [sym_comment] = ACTIONS(3), }, - [376] = { - [sym_attribute_declaration] = STATE(375), - [sym_compound_statement] = STATE(148), - [sym_attributed_statement] = STATE(148), - [sym_statement] = STATE(189), - [sym_labeled_statement] = STATE(148), - [sym_expression_statement] = STATE(148), - [sym_if_statement] = STATE(148), - [sym_switch_statement] = STATE(148), - [sym_case_statement] = STATE(148), - [sym_while_statement] = STATE(148), - [sym_do_statement] = STATE(148), - [sym_for_statement] = STATE(148), - [sym_return_statement] = STATE(148), - [sym_break_statement] = STATE(148), - [sym_continue_statement] = STATE(148), - [sym_goto_statement] = STATE(148), - [sym_seh_try_statement] = STATE(148), - [sym_seh_leave_statement] = STATE(148), - [sym_expression] = STATE(1033), - [sym__string] = STATE(663), - [sym_comma_expression] = STATE(1818), - [sym_conditional_expression] = STATE(663), - [sym_assignment_expression] = STATE(663), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(663), - [sym_binary_expression] = STATE(663), - [sym_update_expression] = STATE(663), - [sym_cast_expression] = STATE(663), - [sym_sizeof_expression] = STATE(663), - [sym_alignof_expression] = STATE(663), - [sym_offsetof_expression] = STATE(663), - [sym_generic_expression] = STATE(663), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(663), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(663), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(663), - [sym_concatenated_string] = STATE(663), - [sym_string_literal] = STATE(659), - [sym_null] = STATE(663), - [aux_sym_attributed_declarator_repeat1] = STATE(375), - [sym_identifier] = ACTIONS(1616), + [442] = { + [sym_attribute_declaration] = STATE(406), + [sym_compound_statement] = STATE(290), + [sym_attributed_statement] = STATE(290), + [sym_statement] = STATE(197), + [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_seh_try_statement] = STATE(290), + [sym_seh_leave_statement] = STATE(290), + [sym_expression] = STATE(1167), + [sym__string] = STATE(758), + [sym_comma_expression] = STATE(2207), + [sym_conditional_expression] = STATE(758), + [sym_assignment_expression] = STATE(758), + [sym_pointer_expression] = STATE(944), + [sym_unary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_cast_expression] = STATE(758), + [sym_sizeof_expression] = STATE(758), + [sym_alignof_expression] = STATE(758), + [sym_offsetof_expression] = STATE(758), + [sym_generic_expression] = STATE(758), + [sym_subscript_expression] = STATE(944), + [sym_call_expression] = STATE(944), + [sym_gnu_asm_expression] = STATE(758), + [sym_field_expression] = STATE(944), + [sym_compound_literal_expression] = STATE(758), + [sym_parenthesized_expression] = STATE(944), + [sym_char_literal] = STATE(758), + [sym_concatenated_string] = STATE(758), + [sym_string_literal] = STATE(671), + [sym_null] = STATE(758), + [aux_sym_attributed_declarator_repeat1] = STATE(406), + [sym_identifier] = ACTIONS(1567), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -56205,96 +65062,193 @@ 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(378), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1556), - [anon_sym_LBRACE] = ACTIONS(386), - [anon_sym_if] = ACTIONS(390), - [anon_sym_switch] = ACTIONS(392), - [anon_sym_case] = ACTIONS(394), - [anon_sym_default] = ACTIONS(396), - [anon_sym_while] = ACTIONS(398), - [anon_sym_do] = ACTIONS(400), - [anon_sym_for] = ACTIONS(402), - [anon_sym_return] = ACTIONS(404), - [anon_sym_break] = ACTIONS(406), - [anon_sym_continue] = ACTIONS(408), - [anon_sym_goto] = ACTIONS(410), - [anon_sym___try] = ACTIONS(412), - [anon_sym___leave] = ACTIONS(414), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [anon_sym___alignof__] = ACTIONS(89), - [anon_sym___alignof] = ACTIONS(89), - [anon_sym__alignof] = ACTIONS(89), - [anon_sym_alignof] = ACTIONS(89), - [anon_sym__Alignof] = ACTIONS(89), - [anon_sym_offsetof] = ACTIONS(91), - [anon_sym__Generic] = ACTIONS(93), - [anon_sym_asm] = ACTIONS(95), - [anon_sym___asm__] = ACTIONS(95), - [sym_number_literal] = ACTIONS(163), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(165), - [sym_false] = ACTIONS(165), - [anon_sym_NULL] = ACTIONS(105), - [anon_sym_nullptr] = ACTIONS(105), + [anon_sym_SEMI] = ACTIONS(383), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1561), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_if] = ACTIONS(1118), + [anon_sym_switch] = ACTIONS(67), + [anon_sym_case] = ACTIONS(1569), + [anon_sym_default] = ACTIONS(1571), + [anon_sym_while] = ACTIONS(1120), + [anon_sym_do] = ACTIONS(75), + [anon_sym_for] = ACTIONS(1122), + [anon_sym_return] = ACTIONS(79), + [anon_sym_break] = ACTIONS(81), + [anon_sym_continue] = ACTIONS(83), + [anon_sym_goto] = ACTIONS(85), + [anon_sym___try] = ACTIONS(1124), + [anon_sym___leave] = ACTIONS(419), + [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(87), + [anon_sym_sizeof] = ACTIONS(89), + [anon_sym___alignof__] = ACTIONS(91), + [anon_sym___alignof] = ACTIONS(91), + [anon_sym__alignof] = ACTIONS(91), + [anon_sym_alignof] = ACTIONS(91), + [anon_sym__Alignof] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(93), + [anon_sym__Generic] = ACTIONS(95), + [anon_sym_asm] = ACTIONS(97), + [anon_sym___asm__] = ACTIONS(97), + [sym_number_literal] = ACTIONS(165), + [anon_sym_L_SQUOTE] = ACTIONS(101), + [anon_sym_u_SQUOTE] = ACTIONS(101), + [anon_sym_U_SQUOTE] = ACTIONS(101), + [anon_sym_u8_SQUOTE] = ACTIONS(101), + [anon_sym_SQUOTE] = ACTIONS(101), + [anon_sym_L_DQUOTE] = ACTIONS(103), + [anon_sym_u_DQUOTE] = ACTIONS(103), + [anon_sym_U_DQUOTE] = ACTIONS(103), + [anon_sym_u8_DQUOTE] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_true] = ACTIONS(167), + [sym_false] = ACTIONS(167), + [anon_sym_NULL] = ACTIONS(107), + [anon_sym_nullptr] = ACTIONS(107), [sym_comment] = ACTIONS(3), }, - [377] = { - [sym_attribute_declaration] = STATE(375), - [sym_compound_statement] = STATE(148), - [sym_attributed_statement] = STATE(148), - [sym_statement] = STATE(181), - [sym_labeled_statement] = STATE(148), - [sym_expression_statement] = STATE(148), - [sym_if_statement] = STATE(148), - [sym_switch_statement] = STATE(148), - [sym_case_statement] = STATE(148), - [sym_while_statement] = STATE(148), - [sym_do_statement] = STATE(148), - [sym_for_statement] = STATE(148), - [sym_return_statement] = STATE(148), - [sym_break_statement] = STATE(148), - [sym_continue_statement] = STATE(148), - [sym_goto_statement] = STATE(148), - [sym_seh_try_statement] = STATE(148), - [sym_seh_leave_statement] = STATE(148), - [sym_expression] = STATE(1033), - [sym__string] = STATE(663), - [sym_comma_expression] = STATE(1818), - [sym_conditional_expression] = STATE(663), - [sym_assignment_expression] = STATE(663), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(663), - [sym_binary_expression] = STATE(663), - [sym_update_expression] = STATE(663), - [sym_cast_expression] = STATE(663), - [sym_sizeof_expression] = STATE(663), - [sym_alignof_expression] = STATE(663), - [sym_offsetof_expression] = STATE(663), - [sym_generic_expression] = STATE(663), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(663), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(663), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(663), - [sym_concatenated_string] = STATE(663), - [sym_string_literal] = STATE(659), - [sym_null] = STATE(663), - [aux_sym_attributed_declarator_repeat1] = STATE(375), - [sym_identifier] = ACTIONS(1616), + [443] = { + [sym_identifier] = ACTIONS(1744), + [anon_sym_COMMA] = ACTIONS(1746), + [anon_sym_RPAREN] = ACTIONS(1746), + [anon_sym_LPAREN2] = ACTIONS(1746), + [anon_sym_BANG] = ACTIONS(1746), + [anon_sym_TILDE] = ACTIONS(1746), + [anon_sym_DASH] = ACTIONS(1744), + [anon_sym_PLUS] = ACTIONS(1744), + [anon_sym_STAR] = ACTIONS(1746), + [anon_sym_AMP] = ACTIONS(1746), + [anon_sym_SEMI] = ACTIONS(1746), + [anon_sym___extension__] = ACTIONS(1744), + [anon_sym_extern] = ACTIONS(1744), + [anon_sym___attribute__] = ACTIONS(1744), + [anon_sym___scanf] = ACTIONS(1744), + [anon_sym___printf] = ACTIONS(1744), + [anon_sym___read_mostly] = ACTIONS(1744), + [anon_sym___must_hold] = ACTIONS(1744), + [anon_sym___ro_after_init] = ACTIONS(1744), + [anon_sym___noreturn] = ACTIONS(1744), + [anon_sym___cold] = ACTIONS(1744), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1746), + [anon_sym___declspec] = ACTIONS(1744), + [anon_sym_LBRACE] = ACTIONS(1746), + [anon_sym_signed] = ACTIONS(1744), + [anon_sym_unsigned] = ACTIONS(1744), + [anon_sym_long] = ACTIONS(1744), + [anon_sym_short] = ACTIONS(1744), + [anon_sym_LBRACK] = ACTIONS(1744), + [anon_sym_static] = ACTIONS(1744), + [anon_sym_EQ] = ACTIONS(1746), + [anon_sym_auto] = ACTIONS(1744), + [anon_sym_register] = ACTIONS(1744), + [anon_sym_inline] = ACTIONS(1744), + [anon_sym___inline] = ACTIONS(1744), + [anon_sym___inline__] = ACTIONS(1744), + [anon_sym___forceinline] = ACTIONS(1744), + [anon_sym_thread_local] = ACTIONS(1744), + [anon_sym___thread] = ACTIONS(1744), + [anon_sym_const] = ACTIONS(1744), + [anon_sym_constexpr] = ACTIONS(1744), + [anon_sym_volatile] = ACTIONS(1744), + [anon_sym_restrict] = ACTIONS(1744), + [anon_sym___restrict__] = ACTIONS(1744), + [anon_sym__Atomic] = ACTIONS(1744), + [anon_sym__Noreturn] = ACTIONS(1744), + [anon_sym_noreturn] = ACTIONS(1744), + [anon_sym_alignas] = ACTIONS(1744), + [anon_sym__Alignas] = ACTIONS(1744), + [sym_primitive_type] = ACTIONS(1744), + [anon_sym_enum] = ACTIONS(1744), + [anon_sym_COLON] = ACTIONS(1746), + [anon_sym_struct] = ACTIONS(1744), + [anon_sym_union] = ACTIONS(1744), + [anon_sym_if] = ACTIONS(1744), + [anon_sym_switch] = ACTIONS(1744), + [anon_sym_case] = ACTIONS(1744), + [anon_sym_default] = ACTIONS(1744), + [anon_sym_while] = ACTIONS(1744), + [anon_sym_do] = ACTIONS(1744), + [anon_sym_for] = ACTIONS(1744), + [anon_sym_return] = ACTIONS(1744), + [anon_sym_break] = ACTIONS(1744), + [anon_sym_continue] = ACTIONS(1744), + [anon_sym_goto] = ACTIONS(1744), + [anon_sym___try] = ACTIONS(1744), + [anon_sym___leave] = ACTIONS(1744), + [anon_sym_DASH_DASH] = ACTIONS(1746), + [anon_sym_PLUS_PLUS] = ACTIONS(1746), + [anon_sym_sizeof] = ACTIONS(1744), + [anon_sym___alignof__] = ACTIONS(1744), + [anon_sym___alignof] = ACTIONS(1744), + [anon_sym__alignof] = ACTIONS(1744), + [anon_sym_alignof] = ACTIONS(1744), + [anon_sym__Alignof] = ACTIONS(1744), + [anon_sym_offsetof] = ACTIONS(1744), + [anon_sym__Generic] = ACTIONS(1744), + [anon_sym_asm] = ACTIONS(1744), + [anon_sym___asm__] = ACTIONS(1744), + [sym_number_literal] = ACTIONS(1746), + [anon_sym_L_SQUOTE] = ACTIONS(1746), + [anon_sym_u_SQUOTE] = ACTIONS(1746), + [anon_sym_U_SQUOTE] = ACTIONS(1746), + [anon_sym_u8_SQUOTE] = ACTIONS(1746), + [anon_sym_SQUOTE] = ACTIONS(1746), + [anon_sym_L_DQUOTE] = ACTIONS(1746), + [anon_sym_u_DQUOTE] = ACTIONS(1746), + [anon_sym_U_DQUOTE] = ACTIONS(1746), + [anon_sym_u8_DQUOTE] = ACTIONS(1746), + [anon_sym_DQUOTE] = ACTIONS(1746), + [sym_true] = ACTIONS(1744), + [sym_false] = ACTIONS(1744), + [anon_sym_NULL] = ACTIONS(1744), + [anon_sym_nullptr] = ACTIONS(1744), + [sym_comment] = ACTIONS(3), + }, + [444] = { + [sym_attribute_declaration] = STATE(439), + [sym_compound_statement] = STATE(77), + [sym_attributed_statement] = STATE(77), + [sym_statement] = STATE(80), + [sym_labeled_statement] = STATE(77), + [sym_expression_statement] = STATE(77), + [sym_if_statement] = STATE(77), + [sym_switch_statement] = STATE(77), + [sym_case_statement] = STATE(77), + [sym_while_statement] = STATE(77), + [sym_do_statement] = STATE(77), + [sym_for_statement] = STATE(77), + [sym_return_statement] = STATE(77), + [sym_break_statement] = STATE(77), + [sym_continue_statement] = STATE(77), + [sym_goto_statement] = STATE(77), + [sym_seh_try_statement] = STATE(77), + [sym_seh_leave_statement] = STATE(77), + [sym_expression] = STATE(1157), + [sym__string] = STATE(758), + [sym_comma_expression] = STATE(2232), + [sym_conditional_expression] = STATE(758), + [sym_assignment_expression] = STATE(758), + [sym_pointer_expression] = STATE(944), + [sym_unary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_cast_expression] = STATE(758), + [sym_sizeof_expression] = STATE(758), + [sym_alignof_expression] = STATE(758), + [sym_offsetof_expression] = STATE(758), + [sym_generic_expression] = STATE(758), + [sym_subscript_expression] = STATE(944), + [sym_call_expression] = STATE(944), + [sym_gnu_asm_expression] = STATE(758), + [sym_field_expression] = STATE(944), + [sym_compound_literal_expression] = STATE(758), + [sym_parenthesized_expression] = STATE(944), + [sym_char_literal] = STATE(758), + [sym_concatenated_string] = STATE(758), + [sym_string_literal] = STATE(671), + [sym_null] = STATE(758), + [aux_sym_attributed_declarator_repeat1] = STATE(439), + [sym_identifier] = ACTIONS(1621), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -56302,96 +65256,96 @@ 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(378), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1556), - [anon_sym_LBRACE] = ACTIONS(386), - [anon_sym_if] = ACTIONS(390), - [anon_sym_switch] = ACTIONS(392), - [anon_sym_case] = ACTIONS(394), - [anon_sym_default] = ACTIONS(396), - [anon_sym_while] = ACTIONS(398), - [anon_sym_do] = ACTIONS(400), - [anon_sym_for] = ACTIONS(402), - [anon_sym_return] = ACTIONS(404), - [anon_sym_break] = ACTIONS(406), - [anon_sym_continue] = ACTIONS(408), - [anon_sym_goto] = ACTIONS(410), - [anon_sym___try] = ACTIONS(412), - [anon_sym___leave] = ACTIONS(414), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [anon_sym___alignof__] = ACTIONS(89), - [anon_sym___alignof] = ACTIONS(89), - [anon_sym__alignof] = ACTIONS(89), - [anon_sym_alignof] = ACTIONS(89), - [anon_sym__Alignof] = ACTIONS(89), - [anon_sym_offsetof] = ACTIONS(91), - [anon_sym__Generic] = ACTIONS(93), - [anon_sym_asm] = ACTIONS(95), - [anon_sym___asm__] = ACTIONS(95), - [sym_number_literal] = ACTIONS(163), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(165), - [sym_false] = ACTIONS(165), - [anon_sym_NULL] = ACTIONS(105), - [anon_sym_nullptr] = ACTIONS(105), + [anon_sym_SEMI] = ACTIONS(129), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1561), + [anon_sym_LBRACE] = ACTIONS(137), + [anon_sym_if] = ACTIONS(139), + [anon_sym_switch] = ACTIONS(141), + [anon_sym_case] = ACTIONS(143), + [anon_sym_default] = ACTIONS(145), + [anon_sym_while] = ACTIONS(147), + [anon_sym_do] = ACTIONS(149), + [anon_sym_for] = ACTIONS(151), + [anon_sym_return] = ACTIONS(153), + [anon_sym_break] = ACTIONS(155), + [anon_sym_continue] = ACTIONS(157), + [anon_sym_goto] = ACTIONS(159), + [anon_sym___try] = ACTIONS(161), + [anon_sym___leave] = ACTIONS(163), + [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(87), + [anon_sym_sizeof] = ACTIONS(89), + [anon_sym___alignof__] = ACTIONS(91), + [anon_sym___alignof] = ACTIONS(91), + [anon_sym__alignof] = ACTIONS(91), + [anon_sym_alignof] = ACTIONS(91), + [anon_sym__Alignof] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(93), + [anon_sym__Generic] = ACTIONS(95), + [anon_sym_asm] = ACTIONS(97), + [anon_sym___asm__] = ACTIONS(97), + [sym_number_literal] = ACTIONS(165), + [anon_sym_L_SQUOTE] = ACTIONS(101), + [anon_sym_u_SQUOTE] = ACTIONS(101), + [anon_sym_U_SQUOTE] = ACTIONS(101), + [anon_sym_u8_SQUOTE] = ACTIONS(101), + [anon_sym_SQUOTE] = ACTIONS(101), + [anon_sym_L_DQUOTE] = ACTIONS(103), + [anon_sym_u_DQUOTE] = ACTIONS(103), + [anon_sym_U_DQUOTE] = ACTIONS(103), + [anon_sym_u8_DQUOTE] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_true] = ACTIONS(167), + [sym_false] = ACTIONS(167), + [anon_sym_NULL] = ACTIONS(107), + [anon_sym_nullptr] = ACTIONS(107), [sym_comment] = ACTIONS(3), }, - [378] = { - [sym_attribute_declaration] = STATE(375), - [sym_compound_statement] = STATE(148), - [sym_attributed_statement] = STATE(148), - [sym_statement] = STATE(169), - [sym_labeled_statement] = STATE(148), - [sym_expression_statement] = STATE(148), - [sym_if_statement] = STATE(148), - [sym_switch_statement] = STATE(148), - [sym_case_statement] = STATE(148), - [sym_while_statement] = STATE(148), - [sym_do_statement] = STATE(148), - [sym_for_statement] = STATE(148), - [sym_return_statement] = STATE(148), - [sym_break_statement] = STATE(148), - [sym_continue_statement] = STATE(148), - [sym_goto_statement] = STATE(148), - [sym_seh_try_statement] = STATE(148), - [sym_seh_leave_statement] = STATE(148), - [sym_expression] = STATE(1033), - [sym__string] = STATE(663), - [sym_comma_expression] = STATE(1818), - [sym_conditional_expression] = STATE(663), - [sym_assignment_expression] = STATE(663), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(663), - [sym_binary_expression] = STATE(663), - [sym_update_expression] = STATE(663), - [sym_cast_expression] = STATE(663), - [sym_sizeof_expression] = STATE(663), - [sym_alignof_expression] = STATE(663), - [sym_offsetof_expression] = STATE(663), - [sym_generic_expression] = STATE(663), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(663), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(663), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(663), - [sym_concatenated_string] = STATE(663), - [sym_string_literal] = STATE(659), - [sym_null] = STATE(663), - [aux_sym_attributed_declarator_repeat1] = STATE(375), - [sym_identifier] = ACTIONS(1616), + [445] = { + [sym_attribute_declaration] = STATE(442), + [sym_compound_statement] = STATE(290), + [sym_attributed_statement] = STATE(290), + [sym_statement] = STATE(285), + [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_seh_try_statement] = STATE(290), + [sym_seh_leave_statement] = STATE(290), + [sym_expression] = STATE(1167), + [sym__string] = STATE(758), + [sym_comma_expression] = STATE(2207), + [sym_conditional_expression] = STATE(758), + [sym_assignment_expression] = STATE(758), + [sym_pointer_expression] = STATE(944), + [sym_unary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_cast_expression] = STATE(758), + [sym_sizeof_expression] = STATE(758), + [sym_alignof_expression] = STATE(758), + [sym_offsetof_expression] = STATE(758), + [sym_generic_expression] = STATE(758), + [sym_subscript_expression] = STATE(944), + [sym_call_expression] = STATE(944), + [sym_gnu_asm_expression] = STATE(758), + [sym_field_expression] = STATE(944), + [sym_compound_literal_expression] = STATE(758), + [sym_parenthesized_expression] = STATE(944), + [sym_char_literal] = STATE(758), + [sym_concatenated_string] = STATE(758), + [sym_string_literal] = STATE(671), + [sym_null] = STATE(758), + [aux_sym_attributed_declarator_repeat1] = STATE(442), + [sym_identifier] = ACTIONS(1567), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -56399,193 +65353,96 @@ 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(378), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1556), - [anon_sym_LBRACE] = ACTIONS(386), - [anon_sym_if] = ACTIONS(390), - [anon_sym_switch] = ACTIONS(392), - [anon_sym_case] = ACTIONS(394), - [anon_sym_default] = ACTIONS(396), - [anon_sym_while] = ACTIONS(398), - [anon_sym_do] = ACTIONS(400), - [anon_sym_for] = ACTIONS(402), - [anon_sym_return] = ACTIONS(404), - [anon_sym_break] = ACTIONS(406), - [anon_sym_continue] = ACTIONS(408), - [anon_sym_goto] = ACTIONS(410), - [anon_sym___try] = ACTIONS(412), - [anon_sym___leave] = ACTIONS(414), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [anon_sym___alignof__] = ACTIONS(89), - [anon_sym___alignof] = ACTIONS(89), - [anon_sym__alignof] = ACTIONS(89), - [anon_sym_alignof] = ACTIONS(89), - [anon_sym__Alignof] = ACTIONS(89), - [anon_sym_offsetof] = ACTIONS(91), - [anon_sym__Generic] = ACTIONS(93), - [anon_sym_asm] = ACTIONS(95), - [anon_sym___asm__] = ACTIONS(95), - [sym_number_literal] = ACTIONS(163), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(165), - [sym_false] = ACTIONS(165), - [anon_sym_NULL] = ACTIONS(105), - [anon_sym_nullptr] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - }, - [379] = { - [sym_attribute_declaration] = STATE(379), - [sym_compound_statement] = STATE(148), - [sym_attributed_statement] = STATE(148), - [sym_statement] = STATE(210), - [sym_labeled_statement] = STATE(148), - [sym_expression_statement] = STATE(148), - [sym_if_statement] = STATE(148), - [sym_switch_statement] = STATE(148), - [sym_case_statement] = STATE(148), - [sym_while_statement] = STATE(148), - [sym_do_statement] = STATE(148), - [sym_for_statement] = STATE(148), - [sym_return_statement] = STATE(148), - [sym_break_statement] = STATE(148), - [sym_continue_statement] = STATE(148), - [sym_goto_statement] = STATE(148), - [sym_seh_try_statement] = STATE(148), - [sym_seh_leave_statement] = STATE(148), - [sym_expression] = STATE(1033), - [sym__string] = STATE(663), - [sym_comma_expression] = STATE(1818), - [sym_conditional_expression] = STATE(663), - [sym_assignment_expression] = STATE(663), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(663), - [sym_binary_expression] = STATE(663), - [sym_update_expression] = STATE(663), - [sym_cast_expression] = STATE(663), - [sym_sizeof_expression] = STATE(663), - [sym_alignof_expression] = STATE(663), - [sym_offsetof_expression] = STATE(663), - [sym_generic_expression] = STATE(663), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(663), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(663), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(663), - [sym_concatenated_string] = STATE(663), - [sym_string_literal] = STATE(659), - [sym_null] = STATE(663), - [aux_sym_attributed_declarator_repeat1] = STATE(379), - [sym_identifier] = ACTIONS(1666), - [anon_sym_LPAREN2] = ACTIONS(1434), - [anon_sym_BANG] = ACTIONS(1437), - [anon_sym_TILDE] = ACTIONS(1437), - [anon_sym_DASH] = ACTIONS(1440), - [anon_sym_PLUS] = ACTIONS(1440), - [anon_sym_STAR] = ACTIONS(1443), - [anon_sym_AMP] = ACTIONS(1443), - [anon_sym_SEMI] = ACTIONS(1530), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1449), - [anon_sym_LBRACE] = ACTIONS(1669), - [anon_sym_if] = ACTIONS(1672), - [anon_sym_switch] = ACTIONS(1675), - [anon_sym_case] = ACTIONS(1678), - [anon_sym_default] = ACTIONS(1681), - [anon_sym_while] = ACTIONS(1684), - [anon_sym_do] = ACTIONS(1687), - [anon_sym_for] = ACTIONS(1690), - [anon_sym_return] = ACTIONS(1693), - [anon_sym_break] = ACTIONS(1696), - [anon_sym_continue] = ACTIONS(1699), - [anon_sym_goto] = ACTIONS(1702), - [anon_sym___try] = ACTIONS(1705), - [anon_sym___leave] = ACTIONS(1551), - [anon_sym_DASH_DASH] = ACTIONS(1494), - [anon_sym_PLUS_PLUS] = ACTIONS(1494), - [anon_sym_sizeof] = ACTIONS(1497), - [anon_sym___alignof__] = ACTIONS(1500), - [anon_sym___alignof] = ACTIONS(1500), - [anon_sym__alignof] = ACTIONS(1500), - [anon_sym_alignof] = ACTIONS(1500), - [anon_sym__Alignof] = ACTIONS(1500), - [anon_sym_offsetof] = ACTIONS(1503), - [anon_sym__Generic] = ACTIONS(1506), - [anon_sym_asm] = ACTIONS(1509), - [anon_sym___asm__] = ACTIONS(1509), - [sym_number_literal] = ACTIONS(1512), - [anon_sym_L_SQUOTE] = ACTIONS(1515), - [anon_sym_u_SQUOTE] = ACTIONS(1515), - [anon_sym_U_SQUOTE] = ACTIONS(1515), - [anon_sym_u8_SQUOTE] = ACTIONS(1515), - [anon_sym_SQUOTE] = ACTIONS(1515), - [anon_sym_L_DQUOTE] = ACTIONS(1518), - [anon_sym_u_DQUOTE] = ACTIONS(1518), - [anon_sym_U_DQUOTE] = ACTIONS(1518), - [anon_sym_u8_DQUOTE] = ACTIONS(1518), - [anon_sym_DQUOTE] = ACTIONS(1518), - [sym_true] = ACTIONS(1521), - [sym_false] = ACTIONS(1521), - [anon_sym_NULL] = ACTIONS(1524), - [anon_sym_nullptr] = ACTIONS(1524), + [anon_sym_SEMI] = ACTIONS(383), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1561), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_if] = ACTIONS(1118), + [anon_sym_switch] = ACTIONS(67), + [anon_sym_case] = ACTIONS(1569), + [anon_sym_default] = ACTIONS(1571), + [anon_sym_while] = ACTIONS(1120), + [anon_sym_do] = ACTIONS(75), + [anon_sym_for] = ACTIONS(1122), + [anon_sym_return] = ACTIONS(79), + [anon_sym_break] = ACTIONS(81), + [anon_sym_continue] = ACTIONS(83), + [anon_sym_goto] = ACTIONS(85), + [anon_sym___try] = ACTIONS(1124), + [anon_sym___leave] = ACTIONS(419), + [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(87), + [anon_sym_sizeof] = ACTIONS(89), + [anon_sym___alignof__] = ACTIONS(91), + [anon_sym___alignof] = ACTIONS(91), + [anon_sym__alignof] = ACTIONS(91), + [anon_sym_alignof] = ACTIONS(91), + [anon_sym__Alignof] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(93), + [anon_sym__Generic] = ACTIONS(95), + [anon_sym_asm] = ACTIONS(97), + [anon_sym___asm__] = ACTIONS(97), + [sym_number_literal] = ACTIONS(165), + [anon_sym_L_SQUOTE] = ACTIONS(101), + [anon_sym_u_SQUOTE] = ACTIONS(101), + [anon_sym_U_SQUOTE] = ACTIONS(101), + [anon_sym_u8_SQUOTE] = ACTIONS(101), + [anon_sym_SQUOTE] = ACTIONS(101), + [anon_sym_L_DQUOTE] = ACTIONS(103), + [anon_sym_u_DQUOTE] = ACTIONS(103), + [anon_sym_U_DQUOTE] = ACTIONS(103), + [anon_sym_u8_DQUOTE] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_true] = ACTIONS(167), + [sym_false] = ACTIONS(167), + [anon_sym_NULL] = ACTIONS(107), + [anon_sym_nullptr] = ACTIONS(107), [sym_comment] = ACTIONS(3), }, - [380] = { - [sym_attribute_declaration] = STATE(365), - [sym_compound_statement] = STATE(93), - [sym_attributed_statement] = STATE(93), - [sym_statement] = STATE(97), - [sym_labeled_statement] = STATE(93), - [sym_expression_statement] = STATE(93), - [sym_if_statement] = STATE(93), - [sym_switch_statement] = STATE(93), - [sym_case_statement] = STATE(93), - [sym_while_statement] = STATE(93), - [sym_do_statement] = STATE(93), - [sym_for_statement] = STATE(93), - [sym_return_statement] = STATE(93), - [sym_break_statement] = STATE(93), - [sym_continue_statement] = STATE(93), - [sym_goto_statement] = STATE(93), - [sym_seh_try_statement] = STATE(93), - [sym_seh_leave_statement] = STATE(93), - [sym_expression] = STATE(1073), - [sym__string] = STATE(663), - [sym_comma_expression] = STATE(1821), - [sym_conditional_expression] = STATE(663), - [sym_assignment_expression] = STATE(663), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(663), - [sym_binary_expression] = STATE(663), - [sym_update_expression] = STATE(663), - [sym_cast_expression] = STATE(663), - [sym_sizeof_expression] = STATE(663), - [sym_alignof_expression] = STATE(663), - [sym_offsetof_expression] = STATE(663), - [sym_generic_expression] = STATE(663), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(663), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(663), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(663), - [sym_concatenated_string] = STATE(663), - [sym_string_literal] = STATE(659), - [sym_null] = STATE(663), - [aux_sym_attributed_declarator_repeat1] = STATE(365), - [sym_identifier] = ACTIONS(1614), + [446] = { + [sym_attribute_declaration] = STATE(442), + [sym_compound_statement] = STATE(290), + [sym_attributed_statement] = STATE(290), + [sym_statement] = STATE(2305), + [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_seh_try_statement] = STATE(290), + [sym_seh_leave_statement] = STATE(290), + [sym_expression] = STATE(1167), + [sym__string] = STATE(758), + [sym_comma_expression] = STATE(2207), + [sym_conditional_expression] = STATE(758), + [sym_assignment_expression] = STATE(758), + [sym_pointer_expression] = STATE(944), + [sym_unary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_cast_expression] = STATE(758), + [sym_sizeof_expression] = STATE(758), + [sym_alignof_expression] = STATE(758), + [sym_offsetof_expression] = STATE(758), + [sym_generic_expression] = STATE(758), + [sym_subscript_expression] = STATE(944), + [sym_call_expression] = STATE(944), + [sym_gnu_asm_expression] = STATE(758), + [sym_field_expression] = STATE(944), + [sym_compound_literal_expression] = STATE(758), + [sym_parenthesized_expression] = STATE(944), + [sym_char_literal] = STATE(758), + [sym_concatenated_string] = STATE(758), + [sym_string_literal] = STATE(671), + [sym_null] = STATE(758), + [aux_sym_attributed_declarator_repeat1] = STATE(442), + [sym_identifier] = ACTIONS(1567), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -56593,467 +65450,1307 @@ 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(127), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1556), - [anon_sym_LBRACE] = ACTIONS(135), - [anon_sym_if] = ACTIONS(137), - [anon_sym_switch] = ACTIONS(139), - [anon_sym_case] = ACTIONS(141), - [anon_sym_default] = ACTIONS(143), - [anon_sym_while] = ACTIONS(145), - [anon_sym_do] = ACTIONS(147), - [anon_sym_for] = ACTIONS(149), - [anon_sym_return] = ACTIONS(151), - [anon_sym_break] = ACTIONS(153), - [anon_sym_continue] = ACTIONS(155), - [anon_sym_goto] = ACTIONS(157), - [anon_sym___try] = ACTIONS(159), - [anon_sym___leave] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [anon_sym___alignof__] = ACTIONS(89), - [anon_sym___alignof] = ACTIONS(89), - [anon_sym__alignof] = ACTIONS(89), - [anon_sym_alignof] = ACTIONS(89), - [anon_sym__Alignof] = ACTIONS(89), - [anon_sym_offsetof] = ACTIONS(91), - [anon_sym__Generic] = ACTIONS(93), - [anon_sym_asm] = ACTIONS(95), - [anon_sym___asm__] = ACTIONS(95), - [sym_number_literal] = ACTIONS(163), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(165), - [sym_false] = ACTIONS(165), - [anon_sym_NULL] = ACTIONS(105), - [anon_sym_nullptr] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - }, - [381] = { - [sym_identifier] = ACTIONS(1708), - [anon_sym_COMMA] = ACTIONS(1710), - [anon_sym_RPAREN] = ACTIONS(1710), - [anon_sym_LPAREN2] = ACTIONS(1710), - [anon_sym_BANG] = ACTIONS(1710), - [anon_sym_TILDE] = ACTIONS(1710), - [anon_sym_DASH] = ACTIONS(1708), - [anon_sym_PLUS] = ACTIONS(1708), - [anon_sym_STAR] = ACTIONS(1710), - [anon_sym_AMP] = ACTIONS(1710), - [anon_sym_SEMI] = ACTIONS(1710), - [anon_sym___extension__] = ACTIONS(1708), - [anon_sym_extern] = ACTIONS(1708), - [anon_sym___attribute__] = ACTIONS(1708), - [anon_sym___scanf] = ACTIONS(1708), - [anon_sym___printf] = ACTIONS(1708), - [anon_sym___read_mostly] = ACTIONS(1708), - [anon_sym___must_hold] = ACTIONS(1708), - [anon_sym___ro_after_init] = ACTIONS(1708), - [anon_sym___init] = ACTIONS(1708), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1710), - [anon_sym___declspec] = ACTIONS(1708), - [anon_sym_LBRACE] = ACTIONS(1710), - [anon_sym_signed] = ACTIONS(1708), - [anon_sym_unsigned] = ACTIONS(1708), - [anon_sym_long] = ACTIONS(1708), - [anon_sym_short] = ACTIONS(1708), - [anon_sym_LBRACK] = ACTIONS(1708), - [anon_sym_static] = ACTIONS(1708), - [anon_sym_EQ] = ACTIONS(1710), - [anon_sym_auto] = ACTIONS(1708), - [anon_sym_register] = ACTIONS(1708), - [anon_sym_inline] = ACTIONS(1708), - [anon_sym___inline] = ACTIONS(1708), - [anon_sym___inline__] = ACTIONS(1708), - [anon_sym___forceinline] = ACTIONS(1708), - [anon_sym_thread_local] = ACTIONS(1708), - [anon_sym___thread] = ACTIONS(1708), - [anon_sym_const] = ACTIONS(1708), - [anon_sym_constexpr] = ACTIONS(1708), - [anon_sym_volatile] = ACTIONS(1708), - [anon_sym_restrict] = ACTIONS(1708), - [anon_sym___restrict__] = ACTIONS(1708), - [anon_sym__Atomic] = ACTIONS(1708), - [anon_sym__Noreturn] = ACTIONS(1708), - [anon_sym_noreturn] = ACTIONS(1708), - [anon_sym_alignas] = ACTIONS(1708), - [anon_sym__Alignas] = ACTIONS(1708), - [sym_primitive_type] = ACTIONS(1708), - [anon_sym_enum] = ACTIONS(1708), - [anon_sym_COLON] = ACTIONS(1710), - [anon_sym_struct] = ACTIONS(1708), - [anon_sym_union] = ACTIONS(1708), - [anon_sym_if] = ACTIONS(1708), - [anon_sym_switch] = ACTIONS(1708), - [anon_sym_case] = ACTIONS(1708), - [anon_sym_default] = ACTIONS(1708), - [anon_sym_while] = ACTIONS(1708), - [anon_sym_do] = ACTIONS(1708), - [anon_sym_for] = ACTIONS(1708), - [anon_sym_return] = ACTIONS(1708), - [anon_sym_break] = ACTIONS(1708), - [anon_sym_continue] = ACTIONS(1708), - [anon_sym_goto] = ACTIONS(1708), - [anon_sym___try] = ACTIONS(1708), - [anon_sym___leave] = ACTIONS(1708), - [anon_sym_DASH_DASH] = ACTIONS(1710), - [anon_sym_PLUS_PLUS] = ACTIONS(1710), - [anon_sym_sizeof] = ACTIONS(1708), - [anon_sym___alignof__] = ACTIONS(1708), - [anon_sym___alignof] = ACTIONS(1708), - [anon_sym__alignof] = ACTIONS(1708), - [anon_sym_alignof] = ACTIONS(1708), - [anon_sym__Alignof] = ACTIONS(1708), - [anon_sym_offsetof] = ACTIONS(1708), - [anon_sym__Generic] = ACTIONS(1708), - [anon_sym_asm] = ACTIONS(1708), - [anon_sym___asm__] = ACTIONS(1708), - [sym_number_literal] = ACTIONS(1710), - [anon_sym_L_SQUOTE] = ACTIONS(1710), - [anon_sym_u_SQUOTE] = ACTIONS(1710), - [anon_sym_U_SQUOTE] = ACTIONS(1710), - [anon_sym_u8_SQUOTE] = ACTIONS(1710), - [anon_sym_SQUOTE] = ACTIONS(1710), - [anon_sym_L_DQUOTE] = ACTIONS(1710), - [anon_sym_u_DQUOTE] = ACTIONS(1710), - [anon_sym_U_DQUOTE] = ACTIONS(1710), - [anon_sym_u8_DQUOTE] = ACTIONS(1710), - [anon_sym_DQUOTE] = ACTIONS(1710), - [sym_true] = ACTIONS(1708), - [sym_false] = ACTIONS(1708), - [anon_sym_NULL] = ACTIONS(1708), - [anon_sym_nullptr] = ACTIONS(1708), + [anon_sym_SEMI] = ACTIONS(383), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1561), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_if] = ACTIONS(1118), + [anon_sym_switch] = ACTIONS(67), + [anon_sym_case] = ACTIONS(1569), + [anon_sym_default] = ACTIONS(1571), + [anon_sym_while] = ACTIONS(1120), + [anon_sym_do] = ACTIONS(75), + [anon_sym_for] = ACTIONS(1122), + [anon_sym_return] = ACTIONS(79), + [anon_sym_break] = ACTIONS(81), + [anon_sym_continue] = ACTIONS(83), + [anon_sym_goto] = ACTIONS(85), + [anon_sym___try] = ACTIONS(1124), + [anon_sym___leave] = ACTIONS(419), + [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(87), + [anon_sym_sizeof] = ACTIONS(89), + [anon_sym___alignof__] = ACTIONS(91), + [anon_sym___alignof] = ACTIONS(91), + [anon_sym__alignof] = ACTIONS(91), + [anon_sym_alignof] = ACTIONS(91), + [anon_sym__Alignof] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(93), + [anon_sym__Generic] = ACTIONS(95), + [anon_sym_asm] = ACTIONS(97), + [anon_sym___asm__] = ACTIONS(97), + [sym_number_literal] = ACTIONS(165), + [anon_sym_L_SQUOTE] = ACTIONS(101), + [anon_sym_u_SQUOTE] = ACTIONS(101), + [anon_sym_U_SQUOTE] = ACTIONS(101), + [anon_sym_u8_SQUOTE] = ACTIONS(101), + [anon_sym_SQUOTE] = ACTIONS(101), + [anon_sym_L_DQUOTE] = ACTIONS(103), + [anon_sym_u_DQUOTE] = ACTIONS(103), + [anon_sym_U_DQUOTE] = ACTIONS(103), + [anon_sym_u8_DQUOTE] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_true] = ACTIONS(167), + [sym_false] = ACTIONS(167), + [anon_sym_NULL] = ACTIONS(107), + [anon_sym_nullptr] = ACTIONS(107), [sym_comment] = ACTIONS(3), }, - [382] = { - [sym_identifier] = ACTIONS(1712), - [anon_sym_COMMA] = ACTIONS(1714), - [anon_sym_RPAREN] = ACTIONS(1714), - [anon_sym_LPAREN2] = ACTIONS(1714), - [anon_sym_BANG] = ACTIONS(1714), - [anon_sym_TILDE] = ACTIONS(1714), - [anon_sym_DASH] = ACTIONS(1712), - [anon_sym_PLUS] = ACTIONS(1712), - [anon_sym_STAR] = ACTIONS(1714), - [anon_sym_AMP] = ACTIONS(1714), - [anon_sym_SEMI] = ACTIONS(1714), - [anon_sym___extension__] = ACTIONS(1712), - [anon_sym_extern] = ACTIONS(1712), - [anon_sym___attribute__] = ACTIONS(1712), - [anon_sym___scanf] = ACTIONS(1712), - [anon_sym___printf] = ACTIONS(1712), - [anon_sym___read_mostly] = ACTIONS(1712), - [anon_sym___must_hold] = ACTIONS(1712), - [anon_sym___ro_after_init] = ACTIONS(1712), - [anon_sym___init] = ACTIONS(1712), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1714), - [anon_sym___declspec] = ACTIONS(1712), - [anon_sym_LBRACE] = ACTIONS(1714), - [anon_sym_signed] = ACTIONS(1712), - [anon_sym_unsigned] = ACTIONS(1712), - [anon_sym_long] = ACTIONS(1712), - [anon_sym_short] = ACTIONS(1712), - [anon_sym_LBRACK] = ACTIONS(1712), - [anon_sym_static] = ACTIONS(1712), - [anon_sym_EQ] = ACTIONS(1714), - [anon_sym_auto] = ACTIONS(1712), - [anon_sym_register] = ACTIONS(1712), - [anon_sym_inline] = ACTIONS(1712), - [anon_sym___inline] = ACTIONS(1712), - [anon_sym___inline__] = ACTIONS(1712), - [anon_sym___forceinline] = ACTIONS(1712), - [anon_sym_thread_local] = ACTIONS(1712), - [anon_sym___thread] = ACTIONS(1712), - [anon_sym_const] = ACTIONS(1712), - [anon_sym_constexpr] = ACTIONS(1712), - [anon_sym_volatile] = ACTIONS(1712), - [anon_sym_restrict] = ACTIONS(1712), - [anon_sym___restrict__] = ACTIONS(1712), - [anon_sym__Atomic] = ACTIONS(1712), - [anon_sym__Noreturn] = ACTIONS(1712), - [anon_sym_noreturn] = ACTIONS(1712), - [anon_sym_alignas] = ACTIONS(1712), - [anon_sym__Alignas] = ACTIONS(1712), - [sym_primitive_type] = ACTIONS(1712), - [anon_sym_enum] = ACTIONS(1712), - [anon_sym_COLON] = ACTIONS(1714), - [anon_sym_struct] = ACTIONS(1712), - [anon_sym_union] = ACTIONS(1712), - [anon_sym_if] = ACTIONS(1712), - [anon_sym_switch] = ACTIONS(1712), - [anon_sym_case] = ACTIONS(1712), - [anon_sym_default] = ACTIONS(1712), - [anon_sym_while] = ACTIONS(1712), - [anon_sym_do] = ACTIONS(1712), - [anon_sym_for] = ACTIONS(1712), - [anon_sym_return] = ACTIONS(1712), - [anon_sym_break] = ACTIONS(1712), - [anon_sym_continue] = ACTIONS(1712), - [anon_sym_goto] = ACTIONS(1712), - [anon_sym___try] = ACTIONS(1712), - [anon_sym___leave] = ACTIONS(1712), - [anon_sym_DASH_DASH] = ACTIONS(1714), - [anon_sym_PLUS_PLUS] = ACTIONS(1714), - [anon_sym_sizeof] = ACTIONS(1712), - [anon_sym___alignof__] = ACTIONS(1712), - [anon_sym___alignof] = ACTIONS(1712), - [anon_sym__alignof] = ACTIONS(1712), - [anon_sym_alignof] = ACTIONS(1712), - [anon_sym__Alignof] = ACTIONS(1712), - [anon_sym_offsetof] = ACTIONS(1712), - [anon_sym__Generic] = ACTIONS(1712), - [anon_sym_asm] = ACTIONS(1712), - [anon_sym___asm__] = ACTIONS(1712), - [sym_number_literal] = ACTIONS(1714), - [anon_sym_L_SQUOTE] = ACTIONS(1714), - [anon_sym_u_SQUOTE] = ACTIONS(1714), - [anon_sym_U_SQUOTE] = ACTIONS(1714), - [anon_sym_u8_SQUOTE] = ACTIONS(1714), - [anon_sym_SQUOTE] = ACTIONS(1714), - [anon_sym_L_DQUOTE] = ACTIONS(1714), - [anon_sym_u_DQUOTE] = ACTIONS(1714), - [anon_sym_U_DQUOTE] = ACTIONS(1714), - [anon_sym_u8_DQUOTE] = ACTIONS(1714), - [anon_sym_DQUOTE] = ACTIONS(1714), - [sym_true] = ACTIONS(1712), - [sym_false] = ACTIONS(1712), - [anon_sym_NULL] = ACTIONS(1712), - [anon_sym_nullptr] = ACTIONS(1712), + [447] = { + [sym_string_literal] = STATE(520), + [aux_sym_sized_type_specifier_repeat1] = STATE(885), + [sym_identifier] = ACTIONS(1748), + [anon_sym_COMMA] = ACTIONS(1750), + [anon_sym_LPAREN2] = ACTIONS(1752), + [anon_sym_DASH] = ACTIONS(1756), + [anon_sym_PLUS] = ACTIONS(1756), + [anon_sym_STAR] = ACTIONS(1758), + [anon_sym_SLASH] = ACTIONS(1756), + [anon_sym_PERCENT] = ACTIONS(1756), + [anon_sym_PIPE_PIPE] = ACTIONS(1750), + [anon_sym_AMP_AMP] = ACTIONS(1750), + [anon_sym_PIPE] = ACTIONS(1756), + [anon_sym_CARET] = ACTIONS(1756), + [anon_sym_AMP] = ACTIONS(1756), + [anon_sym_EQ_EQ] = ACTIONS(1750), + [anon_sym_BANG_EQ] = ACTIONS(1750), + [anon_sym_GT] = ACTIONS(1756), + [anon_sym_GT_EQ] = ACTIONS(1750), + [anon_sym_LT_EQ] = ACTIONS(1750), + [anon_sym_LT] = ACTIONS(1756), + [anon_sym_LT_LT] = ACTIONS(1756), + [anon_sym_GT_GT] = ACTIONS(1756), + [anon_sym_SEMI] = ACTIONS(1750), + [anon_sym___extension__] = ACTIONS(1748), + [anon_sym_extern] = ACTIONS(1748), + [anon_sym___attribute__] = ACTIONS(1748), + [anon_sym___scanf] = ACTIONS(1748), + [anon_sym___printf] = ACTIONS(1748), + [anon_sym___read_mostly] = ACTIONS(1748), + [anon_sym___must_hold] = ACTIONS(1748), + [anon_sym___ro_after_init] = ACTIONS(1748), + [anon_sym___noreturn] = ACTIONS(1748), + [anon_sym___cold] = ACTIONS(1748), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1761), + [anon_sym___declspec] = ACTIONS(1748), + [anon_sym___based] = ACTIONS(1748), + [anon_sym___init] = ACTIONS(1748), + [anon_sym___exit] = ACTIONS(1748), + [anon_sym___cdecl] = ACTIONS(1748), + [anon_sym___clrcall] = ACTIONS(1748), + [anon_sym___stdcall] = ACTIONS(1748), + [anon_sym___fastcall] = ACTIONS(1748), + [anon_sym___thiscall] = ACTIONS(1748), + [anon_sym___vectorcall] = ACTIONS(1748), + [anon_sym_signed] = ACTIONS(1763), + [anon_sym_unsigned] = ACTIONS(1763), + [anon_sym_long] = ACTIONS(1763), + [anon_sym_short] = ACTIONS(1763), + [anon_sym_LBRACK] = ACTIONS(1756), + [anon_sym_static] = ACTIONS(1748), + [anon_sym_EQ] = ACTIONS(1765), + [anon_sym_auto] = ACTIONS(1748), + [anon_sym_register] = ACTIONS(1748), + [anon_sym_inline] = ACTIONS(1748), + [anon_sym___inline] = ACTIONS(1748), + [anon_sym___inline__] = ACTIONS(1748), + [anon_sym___forceinline] = ACTIONS(1748), + [anon_sym_thread_local] = ACTIONS(1748), + [anon_sym___thread] = ACTIONS(1748), + [anon_sym_const] = ACTIONS(1748), + [anon_sym_constexpr] = ACTIONS(1748), + [anon_sym_volatile] = ACTIONS(1748), + [anon_sym_restrict] = ACTIONS(1748), + [anon_sym___restrict__] = ACTIONS(1748), + [anon_sym__Atomic] = ACTIONS(1748), + [anon_sym__Noreturn] = ACTIONS(1748), + [anon_sym_noreturn] = ACTIONS(1748), + [anon_sym_alignas] = ACTIONS(1748), + [anon_sym__Alignas] = ACTIONS(1748), + [anon_sym_COLON] = ACTIONS(1767), + [anon_sym_QMARK] = ACTIONS(1750), + [anon_sym_STAR_EQ] = ACTIONS(1769), + [anon_sym_SLASH_EQ] = ACTIONS(1769), + [anon_sym_PERCENT_EQ] = ACTIONS(1769), + [anon_sym_PLUS_EQ] = ACTIONS(1769), + [anon_sym_DASH_EQ] = ACTIONS(1769), + [anon_sym_LT_LT_EQ] = ACTIONS(1769), + [anon_sym_GT_GT_EQ] = ACTIONS(1769), + [anon_sym_AMP_EQ] = ACTIONS(1769), + [anon_sym_CARET_EQ] = ACTIONS(1769), + [anon_sym_PIPE_EQ] = ACTIONS(1769), + [anon_sym_DASH_DASH] = ACTIONS(1750), + [anon_sym_PLUS_PLUS] = ACTIONS(1750), + [anon_sym_DOT] = ACTIONS(1750), + [anon_sym_DASH_GT] = ACTIONS(1750), + [anon_sym_L_DQUOTE] = ACTIONS(103), + [anon_sym_u_DQUOTE] = ACTIONS(103), + [anon_sym_U_DQUOTE] = ACTIONS(103), + [anon_sym_u8_DQUOTE] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [383] = { - [sym_expression] = STATE(917), - [sym__string] = STATE(663), - [sym_conditional_expression] = STATE(663), - [sym_assignment_expression] = STATE(663), - [sym_pointer_expression] = STATE(670), - [sym_unary_expression] = STATE(663), - [sym_binary_expression] = STATE(663), - [sym_update_expression] = STATE(663), - [sym_cast_expression] = STATE(663), - [sym_sizeof_expression] = STATE(663), - [sym_alignof_expression] = STATE(663), - [sym_offsetof_expression] = STATE(663), - [sym_generic_expression] = STATE(663), - [sym_subscript_expression] = STATE(670), - [sym_call_expression] = STATE(670), - [sym_gnu_asm_expression] = STATE(663), - [sym_field_expression] = STATE(670), - [sym_compound_literal_expression] = STATE(663), - [sym_parenthesized_expression] = STATE(670), - [sym_initializer_list] = STATE(661), - [sym_char_literal] = STATE(663), - [sym_concatenated_string] = STATE(663), - [sym_string_literal] = STATE(659), - [sym_null] = STATE(663), - [sym_identifier] = ACTIONS(1397), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1399), - [anon_sym_LPAREN2] = ACTIONS(1399), - [anon_sym_BANG] = ACTIONS(1716), - [anon_sym_TILDE] = ACTIONS(1718), - [anon_sym_DASH] = ACTIONS(1405), - [anon_sym_PLUS] = ACTIONS(1405), - [anon_sym_STAR] = ACTIONS(1405), - [anon_sym_SLASH] = ACTIONS(1405), - [anon_sym_PERCENT] = ACTIONS(1405), - [anon_sym_PIPE_PIPE] = ACTIONS(1399), - [anon_sym_AMP_AMP] = ACTIONS(1399), - [anon_sym_PIPE] = ACTIONS(1405), - [anon_sym_CARET] = ACTIONS(1405), - [anon_sym_AMP] = ACTIONS(1405), - [anon_sym_EQ_EQ] = ACTIONS(1399), - [anon_sym_BANG_EQ] = ACTIONS(1399), - [anon_sym_GT] = ACTIONS(1405), - [anon_sym_GT_EQ] = ACTIONS(1399), - [anon_sym_LT_EQ] = ACTIONS(1399), - [anon_sym_LT] = ACTIONS(1405), - [anon_sym_LT_LT] = ACTIONS(1405), - [anon_sym_GT_GT] = ACTIONS(1405), - [anon_sym_LBRACE] = ACTIONS(1407), - [anon_sym_LBRACK] = ACTIONS(1399), - [anon_sym_RBRACK] = ACTIONS(1399), - [anon_sym_EQ] = ACTIONS(1405), - [anon_sym_QMARK] = ACTIONS(1399), - [anon_sym_STAR_EQ] = ACTIONS(1399), - [anon_sym_SLASH_EQ] = ACTIONS(1399), - [anon_sym_PERCENT_EQ] = ACTIONS(1399), - [anon_sym_PLUS_EQ] = ACTIONS(1399), - [anon_sym_DASH_EQ] = ACTIONS(1399), - [anon_sym_LT_LT_EQ] = ACTIONS(1399), - [anon_sym_GT_GT_EQ] = ACTIONS(1399), - [anon_sym_AMP_EQ] = ACTIONS(1399), - [anon_sym_CARET_EQ] = ACTIONS(1399), - [anon_sym_PIPE_EQ] = ACTIONS(1399), - [anon_sym_DASH_DASH] = ACTIONS(1399), - [anon_sym_PLUS_PLUS] = ACTIONS(1399), - [anon_sym_sizeof] = ACTIONS(1720), - [anon_sym___alignof__] = ACTIONS(89), - [anon_sym___alignof] = ACTIONS(89), - [anon_sym__alignof] = ACTIONS(89), - [anon_sym_alignof] = ACTIONS(89), - [anon_sym__Alignof] = ACTIONS(89), - [anon_sym_offsetof] = ACTIONS(91), - [anon_sym__Generic] = ACTIONS(93), - [anon_sym_asm] = ACTIONS(95), - [anon_sym___asm__] = ACTIONS(95), - [anon_sym_DOT] = ACTIONS(1405), - [anon_sym_DASH_GT] = ACTIONS(1399), - [sym_number_literal] = ACTIONS(163), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(165), - [sym_false] = ACTIONS(165), - [anon_sym_NULL] = ACTIONS(105), - [anon_sym_nullptr] = ACTIONS(105), + [448] = { + [sym_string_literal] = STATE(520), + [aux_sym_sized_type_specifier_repeat1] = STATE(885), + [sym_identifier] = ACTIONS(1748), + [anon_sym_COMMA] = ACTIONS(1750), + [anon_sym_LPAREN2] = ACTIONS(1752), + [anon_sym_DASH] = ACTIONS(1756), + [anon_sym_PLUS] = ACTIONS(1756), + [anon_sym_STAR] = ACTIONS(1758), + [anon_sym_SLASH] = ACTIONS(1756), + [anon_sym_PERCENT] = ACTIONS(1756), + [anon_sym_PIPE_PIPE] = ACTIONS(1750), + [anon_sym_AMP_AMP] = ACTIONS(1750), + [anon_sym_PIPE] = ACTIONS(1756), + [anon_sym_CARET] = ACTIONS(1756), + [anon_sym_AMP] = ACTIONS(1756), + [anon_sym_EQ_EQ] = ACTIONS(1750), + [anon_sym_BANG_EQ] = ACTIONS(1750), + [anon_sym_GT] = ACTIONS(1756), + [anon_sym_GT_EQ] = ACTIONS(1750), + [anon_sym_LT_EQ] = ACTIONS(1750), + [anon_sym_LT] = ACTIONS(1756), + [anon_sym_LT_LT] = ACTIONS(1756), + [anon_sym_GT_GT] = ACTIONS(1756), + [anon_sym_SEMI] = ACTIONS(1750), + [anon_sym___extension__] = ACTIONS(1748), + [anon_sym_extern] = ACTIONS(1748), + [anon_sym___attribute__] = ACTIONS(1748), + [anon_sym___scanf] = ACTIONS(1748), + [anon_sym___printf] = ACTIONS(1748), + [anon_sym___read_mostly] = ACTIONS(1748), + [anon_sym___must_hold] = ACTIONS(1748), + [anon_sym___ro_after_init] = ACTIONS(1748), + [anon_sym___noreturn] = ACTIONS(1748), + [anon_sym___cold] = ACTIONS(1748), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1761), + [anon_sym___declspec] = ACTIONS(1748), + [anon_sym___based] = ACTIONS(1748), + [anon_sym___init] = ACTIONS(1748), + [anon_sym___exit] = ACTIONS(1748), + [anon_sym___cdecl] = ACTIONS(1748), + [anon_sym___clrcall] = ACTIONS(1748), + [anon_sym___stdcall] = ACTIONS(1748), + [anon_sym___fastcall] = ACTIONS(1748), + [anon_sym___thiscall] = ACTIONS(1748), + [anon_sym___vectorcall] = ACTIONS(1748), + [anon_sym_signed] = ACTIONS(1763), + [anon_sym_unsigned] = ACTIONS(1763), + [anon_sym_long] = ACTIONS(1763), + [anon_sym_short] = ACTIONS(1763), + [anon_sym_LBRACK] = ACTIONS(1756), + [anon_sym_static] = ACTIONS(1748), + [anon_sym_EQ] = ACTIONS(1765), + [anon_sym_auto] = ACTIONS(1748), + [anon_sym_register] = ACTIONS(1748), + [anon_sym_inline] = ACTIONS(1748), + [anon_sym___inline] = ACTIONS(1748), + [anon_sym___inline__] = ACTIONS(1748), + [anon_sym___forceinline] = ACTIONS(1748), + [anon_sym_thread_local] = ACTIONS(1748), + [anon_sym___thread] = ACTIONS(1748), + [anon_sym_const] = ACTIONS(1748), + [anon_sym_constexpr] = ACTIONS(1748), + [anon_sym_volatile] = ACTIONS(1748), + [anon_sym_restrict] = ACTIONS(1748), + [anon_sym___restrict__] = ACTIONS(1748), + [anon_sym__Atomic] = ACTIONS(1748), + [anon_sym__Noreturn] = ACTIONS(1748), + [anon_sym_noreturn] = ACTIONS(1748), + [anon_sym_alignas] = ACTIONS(1748), + [anon_sym__Alignas] = ACTIONS(1748), + [anon_sym_COLON] = ACTIONS(1771), + [anon_sym_QMARK] = ACTIONS(1750), + [anon_sym_STAR_EQ] = ACTIONS(1769), + [anon_sym_SLASH_EQ] = ACTIONS(1769), + [anon_sym_PERCENT_EQ] = ACTIONS(1769), + [anon_sym_PLUS_EQ] = ACTIONS(1769), + [anon_sym_DASH_EQ] = ACTIONS(1769), + [anon_sym_LT_LT_EQ] = ACTIONS(1769), + [anon_sym_GT_GT_EQ] = ACTIONS(1769), + [anon_sym_AMP_EQ] = ACTIONS(1769), + [anon_sym_CARET_EQ] = ACTIONS(1769), + [anon_sym_PIPE_EQ] = ACTIONS(1769), + [anon_sym_DASH_DASH] = ACTIONS(1750), + [anon_sym_PLUS_PLUS] = ACTIONS(1750), + [anon_sym_DOT] = ACTIONS(1750), + [anon_sym_DASH_GT] = ACTIONS(1750), + [anon_sym_L_DQUOTE] = ACTIONS(103), + [anon_sym_u_DQUOTE] = ACTIONS(103), + [anon_sym_U_DQUOTE] = ACTIONS(103), + [anon_sym_u8_DQUOTE] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [384] = { - [sym_expression] = STATE(683), - [sym__string] = STATE(663), - [sym_conditional_expression] = STATE(663), - [sym_assignment_expression] = STATE(663), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(663), - [sym_binary_expression] = STATE(663), - [sym_update_expression] = STATE(663), - [sym_cast_expression] = STATE(663), - [sym_sizeof_expression] = STATE(663), - [sym_alignof_expression] = STATE(663), - [sym_offsetof_expression] = STATE(663), - [sym_generic_expression] = STATE(663), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(663), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(663), - [sym_parenthesized_expression] = STATE(818), - [sym_initializer_list] = STATE(661), - [sym_char_literal] = STATE(663), - [sym_concatenated_string] = STATE(663), - [sym_string_literal] = STATE(659), - [sym_null] = STATE(663), - [sym_identifier] = ACTIONS(1722), - [anon_sym_COMMA] = ACTIONS(1399), - [anon_sym_RPAREN] = ACTIONS(1399), - [anon_sym_LPAREN2] = ACTIONS(1399), + [449] = { + [sym_expression] = STATE(771), + [sym__string] = STATE(758), + [sym_conditional_expression] = STATE(758), + [sym_assignment_expression] = STATE(758), + [sym_pointer_expression] = STATE(944), + [sym_unary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_cast_expression] = STATE(758), + [sym_sizeof_expression] = STATE(758), + [sym_alignof_expression] = STATE(758), + [sym_offsetof_expression] = STATE(758), + [sym_generic_expression] = STATE(758), + [sym_subscript_expression] = STATE(944), + [sym_call_expression] = STATE(944), + [sym_gnu_asm_expression] = STATE(758), + [sym_field_expression] = STATE(944), + [sym_compound_literal_expression] = STATE(758), + [sym_parenthesized_expression] = STATE(944), + [sym_initializer_list] = STATE(760), + [sym_char_literal] = STATE(758), + [sym_concatenated_string] = STATE(758), + [sym_string_literal] = STATE(671), + [sym_null] = STATE(758), + [sym_identifier] = ACTIONS(1773), + [anon_sym_COMMA] = ACTIONS(1431), + [anon_sym_RPAREN] = ACTIONS(1431), + [anon_sym_LPAREN2] = ACTIONS(1431), [anon_sym_BANG] = ACTIONS(23), [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(1405), - [anon_sym_PLUS] = ACTIONS(1405), - [anon_sym_STAR] = ACTIONS(1399), - [anon_sym_SLASH] = ACTIONS(1405), - [anon_sym_PERCENT] = ACTIONS(1399), - [anon_sym_PIPE_PIPE] = ACTIONS(1399), - [anon_sym_AMP_AMP] = ACTIONS(1399), - [anon_sym_PIPE] = ACTIONS(1405), - [anon_sym_CARET] = ACTIONS(1399), - [anon_sym_AMP] = ACTIONS(1405), - [anon_sym_EQ_EQ] = ACTIONS(1399), - [anon_sym_BANG_EQ] = ACTIONS(1399), - [anon_sym_GT] = ACTIONS(1405), - [anon_sym_GT_EQ] = ACTIONS(1399), - [anon_sym_LT_EQ] = ACTIONS(1399), - [anon_sym_LT] = ACTIONS(1405), - [anon_sym_LT_LT] = ACTIONS(1399), - [anon_sym_GT_GT] = ACTIONS(1399), - [anon_sym_SEMI] = ACTIONS(1399), - [anon_sym___attribute__] = ACTIONS(1405), - [anon_sym___scanf] = ACTIONS(1405), - [anon_sym___printf] = ACTIONS(1405), - [anon_sym___read_mostly] = ACTIONS(1405), - [anon_sym___must_hold] = ACTIONS(1405), - [anon_sym___ro_after_init] = ACTIONS(1405), - [anon_sym___init] = ACTIONS(1405), - [anon_sym_LBRACE] = ACTIONS(1407), - [anon_sym_RBRACE] = ACTIONS(1399), - [anon_sym_LBRACK] = ACTIONS(1399), - [anon_sym_COLON] = ACTIONS(1399), - [anon_sym_QMARK] = ACTIONS(1399), - [anon_sym_DASH_DASH] = ACTIONS(1399), - [anon_sym_PLUS_PLUS] = ACTIONS(1399), - [anon_sym_sizeof] = ACTIONS(87), - [anon_sym___alignof__] = ACTIONS(89), - [anon_sym___alignof] = ACTIONS(89), - [anon_sym__alignof] = ACTIONS(89), - [anon_sym_alignof] = ACTIONS(89), - [anon_sym__Alignof] = ACTIONS(89), - [anon_sym_offsetof] = ACTIONS(91), - [anon_sym__Generic] = ACTIONS(93), - [anon_sym_asm] = ACTIONS(95), - [anon_sym___asm__] = ACTIONS(95), - [anon_sym_DOT] = ACTIONS(1405), - [anon_sym_DASH_GT] = ACTIONS(1399), - [sym_number_literal] = ACTIONS(163), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(165), - [sym_false] = ACTIONS(165), - [anon_sym_NULL] = ACTIONS(105), - [anon_sym_nullptr] = ACTIONS(105), + [anon_sym_DASH] = ACTIONS(1437), + [anon_sym_PLUS] = ACTIONS(1437), + [anon_sym_STAR] = ACTIONS(1431), + [anon_sym_SLASH] = ACTIONS(1437), + [anon_sym_PERCENT] = ACTIONS(1431), + [anon_sym_PIPE_PIPE] = ACTIONS(1431), + [anon_sym_AMP_AMP] = ACTIONS(1431), + [anon_sym_PIPE] = ACTIONS(1437), + [anon_sym_CARET] = ACTIONS(1431), + [anon_sym_AMP] = ACTIONS(1437), + [anon_sym_EQ_EQ] = ACTIONS(1431), + [anon_sym_BANG_EQ] = ACTIONS(1431), + [anon_sym_GT] = ACTIONS(1437), + [anon_sym_GT_EQ] = ACTIONS(1431), + [anon_sym_LT_EQ] = ACTIONS(1431), + [anon_sym_LT] = ACTIONS(1437), + [anon_sym_LT_LT] = ACTIONS(1431), + [anon_sym_GT_GT] = ACTIONS(1431), + [anon_sym_SEMI] = ACTIONS(1431), + [anon_sym___attribute__] = ACTIONS(1437), + [anon_sym___scanf] = ACTIONS(1437), + [anon_sym___printf] = ACTIONS(1437), + [anon_sym___read_mostly] = ACTIONS(1437), + [anon_sym___must_hold] = ACTIONS(1437), + [anon_sym___ro_after_init] = ACTIONS(1437), + [anon_sym___noreturn] = ACTIONS(1437), + [anon_sym___cold] = ACTIONS(1437), + [anon_sym_LBRACE] = ACTIONS(1439), + [anon_sym_RBRACE] = ACTIONS(1431), + [anon_sym_LBRACK] = ACTIONS(1431), + [anon_sym_COLON] = ACTIONS(1431), + [anon_sym_QMARK] = ACTIONS(1431), + [anon_sym_DASH_DASH] = ACTIONS(1431), + [anon_sym_PLUS_PLUS] = ACTIONS(1431), + [anon_sym_sizeof] = ACTIONS(89), + [anon_sym___alignof__] = ACTIONS(91), + [anon_sym___alignof] = ACTIONS(91), + [anon_sym__alignof] = ACTIONS(91), + [anon_sym_alignof] = ACTIONS(91), + [anon_sym__Alignof] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(93), + [anon_sym__Generic] = ACTIONS(95), + [anon_sym_asm] = ACTIONS(97), + [anon_sym___asm__] = ACTIONS(97), + [anon_sym_DOT] = ACTIONS(1437), + [anon_sym_DASH_GT] = ACTIONS(1431), + [sym_number_literal] = ACTIONS(165), + [anon_sym_L_SQUOTE] = ACTIONS(101), + [anon_sym_u_SQUOTE] = ACTIONS(101), + [anon_sym_U_SQUOTE] = ACTIONS(101), + [anon_sym_u8_SQUOTE] = ACTIONS(101), + [anon_sym_SQUOTE] = ACTIONS(101), + [anon_sym_L_DQUOTE] = ACTIONS(103), + [anon_sym_u_DQUOTE] = ACTIONS(103), + [anon_sym_U_DQUOTE] = ACTIONS(103), + [anon_sym_u8_DQUOTE] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_true] = ACTIONS(167), + [sym_false] = ACTIONS(167), + [anon_sym_NULL] = ACTIONS(107), + [anon_sym_nullptr] = ACTIONS(107), + [sym_comment] = ACTIONS(3), + }, + [450] = { + [sym_expression] = STATE(1057), + [sym__string] = STATE(758), + [sym_conditional_expression] = STATE(758), + [sym_assignment_expression] = STATE(758), + [sym_pointer_expression] = STATE(762), + [sym_unary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_cast_expression] = STATE(758), + [sym_sizeof_expression] = STATE(758), + [sym_alignof_expression] = STATE(758), + [sym_offsetof_expression] = STATE(758), + [sym_generic_expression] = STATE(758), + [sym_subscript_expression] = STATE(762), + [sym_call_expression] = STATE(762), + [sym_gnu_asm_expression] = STATE(758), + [sym_field_expression] = STATE(762), + [sym_compound_literal_expression] = STATE(758), + [sym_parenthesized_expression] = STATE(762), + [sym_initializer_list] = STATE(760), + [sym_char_literal] = STATE(758), + [sym_concatenated_string] = STATE(758), + [sym_string_literal] = STATE(671), + [sym_null] = STATE(758), + [sym_identifier] = ACTIONS(1429), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1431), + [anon_sym_LPAREN2] = ACTIONS(1431), + [anon_sym_BANG] = ACTIONS(1775), + [anon_sym_TILDE] = ACTIONS(1777), + [anon_sym_DASH] = ACTIONS(1437), + [anon_sym_PLUS] = ACTIONS(1437), + [anon_sym_STAR] = ACTIONS(1437), + [anon_sym_SLASH] = ACTIONS(1437), + [anon_sym_PERCENT] = ACTIONS(1437), + [anon_sym_PIPE_PIPE] = ACTIONS(1431), + [anon_sym_AMP_AMP] = ACTIONS(1431), + [anon_sym_PIPE] = ACTIONS(1437), + [anon_sym_CARET] = ACTIONS(1437), + [anon_sym_AMP] = ACTIONS(1437), + [anon_sym_EQ_EQ] = ACTIONS(1431), + [anon_sym_BANG_EQ] = ACTIONS(1431), + [anon_sym_GT] = ACTIONS(1437), + [anon_sym_GT_EQ] = ACTIONS(1431), + [anon_sym_LT_EQ] = ACTIONS(1431), + [anon_sym_LT] = ACTIONS(1437), + [anon_sym_LT_LT] = ACTIONS(1437), + [anon_sym_GT_GT] = ACTIONS(1437), + [anon_sym_LBRACE] = ACTIONS(1439), + [anon_sym_LBRACK] = ACTIONS(1431), + [anon_sym_RBRACK] = ACTIONS(1431), + [anon_sym_EQ] = ACTIONS(1437), + [anon_sym_QMARK] = ACTIONS(1431), + [anon_sym_STAR_EQ] = ACTIONS(1431), + [anon_sym_SLASH_EQ] = ACTIONS(1431), + [anon_sym_PERCENT_EQ] = ACTIONS(1431), + [anon_sym_PLUS_EQ] = ACTIONS(1431), + [anon_sym_DASH_EQ] = ACTIONS(1431), + [anon_sym_LT_LT_EQ] = ACTIONS(1431), + [anon_sym_GT_GT_EQ] = ACTIONS(1431), + [anon_sym_AMP_EQ] = ACTIONS(1431), + [anon_sym_CARET_EQ] = ACTIONS(1431), + [anon_sym_PIPE_EQ] = ACTIONS(1431), + [anon_sym_DASH_DASH] = ACTIONS(1431), + [anon_sym_PLUS_PLUS] = ACTIONS(1431), + [anon_sym_sizeof] = ACTIONS(1779), + [anon_sym___alignof__] = ACTIONS(91), + [anon_sym___alignof] = ACTIONS(91), + [anon_sym__alignof] = ACTIONS(91), + [anon_sym_alignof] = ACTIONS(91), + [anon_sym__Alignof] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(93), + [anon_sym__Generic] = ACTIONS(95), + [anon_sym_asm] = ACTIONS(97), + [anon_sym___asm__] = ACTIONS(97), + [anon_sym_DOT] = ACTIONS(1437), + [anon_sym_DASH_GT] = ACTIONS(1431), + [sym_number_literal] = ACTIONS(165), + [anon_sym_L_SQUOTE] = ACTIONS(101), + [anon_sym_u_SQUOTE] = ACTIONS(101), + [anon_sym_U_SQUOTE] = ACTIONS(101), + [anon_sym_u8_SQUOTE] = ACTIONS(101), + [anon_sym_SQUOTE] = ACTIONS(101), + [anon_sym_L_DQUOTE] = ACTIONS(103), + [anon_sym_u_DQUOTE] = ACTIONS(103), + [anon_sym_U_DQUOTE] = ACTIONS(103), + [anon_sym_u8_DQUOTE] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_true] = ACTIONS(167), + [sym_false] = ACTIONS(167), + [anon_sym_NULL] = ACTIONS(107), + [anon_sym_nullptr] = ACTIONS(107), + [sym_comment] = ACTIONS(3), + }, + [451] = { + [sym_string_literal] = STATE(520), + [aux_sym_sized_type_specifier_repeat1] = STATE(885), + [sym_identifier] = ACTIONS(1748), + [anon_sym_COMMA] = ACTIONS(1750), + [anon_sym_LPAREN2] = ACTIONS(1752), + [anon_sym_DASH] = ACTIONS(1756), + [anon_sym_PLUS] = ACTIONS(1756), + [anon_sym_STAR] = ACTIONS(1758), + [anon_sym_SLASH] = ACTIONS(1756), + [anon_sym_PERCENT] = ACTIONS(1756), + [anon_sym_PIPE_PIPE] = ACTIONS(1750), + [anon_sym_AMP_AMP] = ACTIONS(1750), + [anon_sym_PIPE] = ACTIONS(1756), + [anon_sym_CARET] = ACTIONS(1756), + [anon_sym_AMP] = ACTIONS(1756), + [anon_sym_EQ_EQ] = ACTIONS(1750), + [anon_sym_BANG_EQ] = ACTIONS(1750), + [anon_sym_GT] = ACTIONS(1756), + [anon_sym_GT_EQ] = ACTIONS(1750), + [anon_sym_LT_EQ] = ACTIONS(1750), + [anon_sym_LT] = ACTIONS(1756), + [anon_sym_LT_LT] = ACTIONS(1756), + [anon_sym_GT_GT] = ACTIONS(1756), + [anon_sym_SEMI] = ACTIONS(1781), + [anon_sym___extension__] = ACTIONS(1748), + [anon_sym_extern] = ACTIONS(1748), + [anon_sym___attribute__] = ACTIONS(1748), + [anon_sym___scanf] = ACTIONS(1748), + [anon_sym___printf] = ACTIONS(1748), + [anon_sym___read_mostly] = ACTIONS(1748), + [anon_sym___must_hold] = ACTIONS(1748), + [anon_sym___ro_after_init] = ACTIONS(1748), + [anon_sym___noreturn] = ACTIONS(1748), + [anon_sym___cold] = ACTIONS(1748), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1761), + [anon_sym___declspec] = ACTIONS(1748), + [anon_sym___based] = ACTIONS(1748), + [anon_sym___init] = ACTIONS(1748), + [anon_sym___exit] = ACTIONS(1748), + [anon_sym___cdecl] = ACTIONS(1748), + [anon_sym___clrcall] = ACTIONS(1748), + [anon_sym___stdcall] = ACTIONS(1748), + [anon_sym___fastcall] = ACTIONS(1748), + [anon_sym___thiscall] = ACTIONS(1748), + [anon_sym___vectorcall] = ACTIONS(1748), + [anon_sym_signed] = ACTIONS(1763), + [anon_sym_unsigned] = ACTIONS(1763), + [anon_sym_long] = ACTIONS(1763), + [anon_sym_short] = ACTIONS(1763), + [anon_sym_LBRACK] = ACTIONS(1756), + [anon_sym_static] = ACTIONS(1748), + [anon_sym_EQ] = ACTIONS(1765), + [anon_sym_auto] = ACTIONS(1748), + [anon_sym_register] = ACTIONS(1748), + [anon_sym_inline] = ACTIONS(1748), + [anon_sym___inline] = ACTIONS(1748), + [anon_sym___inline__] = ACTIONS(1748), + [anon_sym___forceinline] = ACTIONS(1748), + [anon_sym_thread_local] = ACTIONS(1748), + [anon_sym___thread] = ACTIONS(1748), + [anon_sym_const] = ACTIONS(1748), + [anon_sym_constexpr] = ACTIONS(1748), + [anon_sym_volatile] = ACTIONS(1748), + [anon_sym_restrict] = ACTIONS(1748), + [anon_sym___restrict__] = ACTIONS(1748), + [anon_sym__Atomic] = ACTIONS(1748), + [anon_sym__Noreturn] = ACTIONS(1748), + [anon_sym_noreturn] = ACTIONS(1748), + [anon_sym_alignas] = ACTIONS(1748), + [anon_sym__Alignas] = ACTIONS(1748), + [anon_sym_COLON] = ACTIONS(1771), + [anon_sym_QMARK] = ACTIONS(1750), + [anon_sym_STAR_EQ] = ACTIONS(1769), + [anon_sym_SLASH_EQ] = ACTIONS(1769), + [anon_sym_PERCENT_EQ] = ACTIONS(1769), + [anon_sym_PLUS_EQ] = ACTIONS(1769), + [anon_sym_DASH_EQ] = ACTIONS(1769), + [anon_sym_LT_LT_EQ] = ACTIONS(1769), + [anon_sym_GT_GT_EQ] = ACTIONS(1769), + [anon_sym_AMP_EQ] = ACTIONS(1769), + [anon_sym_CARET_EQ] = ACTIONS(1769), + [anon_sym_PIPE_EQ] = ACTIONS(1769), + [anon_sym_DASH_DASH] = ACTIONS(1750), + [anon_sym_PLUS_PLUS] = ACTIONS(1750), + [anon_sym_DOT] = ACTIONS(1750), + [anon_sym_DASH_GT] = ACTIONS(1750), + [anon_sym_L_DQUOTE] = ACTIONS(103), + [anon_sym_u_DQUOTE] = ACTIONS(103), + [anon_sym_U_DQUOTE] = ACTIONS(103), + [anon_sym_u8_DQUOTE] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + }, + [452] = { + [sym_string_literal] = STATE(520), + [aux_sym_sized_type_specifier_repeat1] = STATE(885), + [sym_identifier] = ACTIONS(1748), + [anon_sym_COMMA] = ACTIONS(1750), + [anon_sym_LPAREN2] = ACTIONS(1752), + [anon_sym_DASH] = ACTIONS(1756), + [anon_sym_PLUS] = ACTIONS(1756), + [anon_sym_STAR] = ACTIONS(1758), + [anon_sym_SLASH] = ACTIONS(1756), + [anon_sym_PERCENT] = ACTIONS(1756), + [anon_sym_PIPE_PIPE] = ACTIONS(1750), + [anon_sym_AMP_AMP] = ACTIONS(1750), + [anon_sym_PIPE] = ACTIONS(1756), + [anon_sym_CARET] = ACTIONS(1756), + [anon_sym_AMP] = ACTIONS(1756), + [anon_sym_EQ_EQ] = ACTIONS(1750), + [anon_sym_BANG_EQ] = ACTIONS(1750), + [anon_sym_GT] = ACTIONS(1756), + [anon_sym_GT_EQ] = ACTIONS(1750), + [anon_sym_LT_EQ] = ACTIONS(1750), + [anon_sym_LT] = ACTIONS(1756), + [anon_sym_LT_LT] = ACTIONS(1756), + [anon_sym_GT_GT] = ACTIONS(1756), + [anon_sym_SEMI] = ACTIONS(1781), + [anon_sym___extension__] = ACTIONS(1748), + [anon_sym_extern] = ACTIONS(1748), + [anon_sym___attribute__] = ACTIONS(1748), + [anon_sym___scanf] = ACTIONS(1748), + [anon_sym___printf] = ACTIONS(1748), + [anon_sym___read_mostly] = ACTIONS(1748), + [anon_sym___must_hold] = ACTIONS(1748), + [anon_sym___ro_after_init] = ACTIONS(1748), + [anon_sym___noreturn] = ACTIONS(1748), + [anon_sym___cold] = ACTIONS(1748), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1761), + [anon_sym___declspec] = ACTIONS(1748), + [anon_sym___based] = ACTIONS(1748), + [anon_sym___init] = ACTIONS(1748), + [anon_sym___exit] = ACTIONS(1748), + [anon_sym___cdecl] = ACTIONS(1748), + [anon_sym___clrcall] = ACTIONS(1748), + [anon_sym___stdcall] = ACTIONS(1748), + [anon_sym___fastcall] = ACTIONS(1748), + [anon_sym___thiscall] = ACTIONS(1748), + [anon_sym___vectorcall] = ACTIONS(1748), + [anon_sym_signed] = ACTIONS(1763), + [anon_sym_unsigned] = ACTIONS(1763), + [anon_sym_long] = ACTIONS(1763), + [anon_sym_short] = ACTIONS(1763), + [anon_sym_LBRACK] = ACTIONS(1756), + [anon_sym_static] = ACTIONS(1748), + [anon_sym_EQ] = ACTIONS(1765), + [anon_sym_auto] = ACTIONS(1748), + [anon_sym_register] = ACTIONS(1748), + [anon_sym_inline] = ACTIONS(1748), + [anon_sym___inline] = ACTIONS(1748), + [anon_sym___inline__] = ACTIONS(1748), + [anon_sym___forceinline] = ACTIONS(1748), + [anon_sym_thread_local] = ACTIONS(1748), + [anon_sym___thread] = ACTIONS(1748), + [anon_sym_const] = ACTIONS(1748), + [anon_sym_constexpr] = ACTIONS(1748), + [anon_sym_volatile] = ACTIONS(1748), + [anon_sym_restrict] = ACTIONS(1748), + [anon_sym___restrict__] = ACTIONS(1748), + [anon_sym__Atomic] = ACTIONS(1748), + [anon_sym__Noreturn] = ACTIONS(1748), + [anon_sym_noreturn] = ACTIONS(1748), + [anon_sym_alignas] = ACTIONS(1748), + [anon_sym__Alignas] = ACTIONS(1748), + [anon_sym_COLON] = ACTIONS(1767), + [anon_sym_QMARK] = ACTIONS(1750), + [anon_sym_STAR_EQ] = ACTIONS(1769), + [anon_sym_SLASH_EQ] = ACTIONS(1769), + [anon_sym_PERCENT_EQ] = ACTIONS(1769), + [anon_sym_PLUS_EQ] = ACTIONS(1769), + [anon_sym_DASH_EQ] = ACTIONS(1769), + [anon_sym_LT_LT_EQ] = ACTIONS(1769), + [anon_sym_GT_GT_EQ] = ACTIONS(1769), + [anon_sym_AMP_EQ] = ACTIONS(1769), + [anon_sym_CARET_EQ] = ACTIONS(1769), + [anon_sym_PIPE_EQ] = ACTIONS(1769), + [anon_sym_DASH_DASH] = ACTIONS(1750), + [anon_sym_PLUS_PLUS] = ACTIONS(1750), + [anon_sym_DOT] = ACTIONS(1750), + [anon_sym_DASH_GT] = ACTIONS(1750), + [anon_sym_L_DQUOTE] = ACTIONS(103), + [anon_sym_u_DQUOTE] = ACTIONS(103), + [anon_sym_U_DQUOTE] = ACTIONS(103), + [anon_sym_u8_DQUOTE] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + }, + [453] = { + [sym_string_literal] = STATE(520), + [aux_sym_sized_type_specifier_repeat1] = STATE(885), + [sym_identifier] = ACTIONS(1748), + [anon_sym_COMMA] = ACTIONS(1750), + [anon_sym_LPAREN2] = ACTIONS(1752), + [anon_sym_DASH] = ACTIONS(1756), + [anon_sym_PLUS] = ACTIONS(1756), + [anon_sym_STAR] = ACTIONS(1758), + [anon_sym_SLASH] = ACTIONS(1756), + [anon_sym_PERCENT] = ACTIONS(1756), + [anon_sym_PIPE_PIPE] = ACTIONS(1750), + [anon_sym_AMP_AMP] = ACTIONS(1750), + [anon_sym_PIPE] = ACTIONS(1756), + [anon_sym_CARET] = ACTIONS(1756), + [anon_sym_AMP] = ACTIONS(1756), + [anon_sym_EQ_EQ] = ACTIONS(1750), + [anon_sym_BANG_EQ] = ACTIONS(1750), + [anon_sym_GT] = ACTIONS(1756), + [anon_sym_GT_EQ] = ACTIONS(1750), + [anon_sym_LT_EQ] = ACTIONS(1750), + [anon_sym_LT] = ACTIONS(1756), + [anon_sym_LT_LT] = ACTIONS(1756), + [anon_sym_GT_GT] = ACTIONS(1756), + [anon_sym_SEMI] = ACTIONS(1750), + [anon_sym___extension__] = ACTIONS(1748), + [anon_sym_extern] = ACTIONS(1748), + [anon_sym___attribute__] = ACTIONS(1748), + [anon_sym___scanf] = ACTIONS(1748), + [anon_sym___printf] = ACTIONS(1748), + [anon_sym___read_mostly] = ACTIONS(1748), + [anon_sym___must_hold] = ACTIONS(1748), + [anon_sym___ro_after_init] = ACTIONS(1748), + [anon_sym___noreturn] = ACTIONS(1748), + [anon_sym___cold] = ACTIONS(1748), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1761), + [anon_sym___declspec] = ACTIONS(1748), + [anon_sym___based] = ACTIONS(1748), + [anon_sym___init] = ACTIONS(1748), + [anon_sym___exit] = ACTIONS(1748), + [anon_sym___cdecl] = ACTIONS(1748), + [anon_sym___clrcall] = ACTIONS(1748), + [anon_sym___stdcall] = ACTIONS(1748), + [anon_sym___fastcall] = ACTIONS(1748), + [anon_sym___thiscall] = ACTIONS(1748), + [anon_sym___vectorcall] = ACTIONS(1748), + [anon_sym_signed] = ACTIONS(1763), + [anon_sym_unsigned] = ACTIONS(1763), + [anon_sym_long] = ACTIONS(1763), + [anon_sym_short] = ACTIONS(1763), + [anon_sym_LBRACK] = ACTIONS(1756), + [anon_sym_static] = ACTIONS(1748), + [anon_sym_EQ] = ACTIONS(1765), + [anon_sym_auto] = ACTIONS(1748), + [anon_sym_register] = ACTIONS(1748), + [anon_sym_inline] = ACTIONS(1748), + [anon_sym___inline] = ACTIONS(1748), + [anon_sym___inline__] = ACTIONS(1748), + [anon_sym___forceinline] = ACTIONS(1748), + [anon_sym_thread_local] = ACTIONS(1748), + [anon_sym___thread] = ACTIONS(1748), + [anon_sym_const] = ACTIONS(1748), + [anon_sym_constexpr] = ACTIONS(1748), + [anon_sym_volatile] = ACTIONS(1748), + [anon_sym_restrict] = ACTIONS(1748), + [anon_sym___restrict__] = ACTIONS(1748), + [anon_sym__Atomic] = ACTIONS(1748), + [anon_sym__Noreturn] = ACTIONS(1748), + [anon_sym_noreturn] = ACTIONS(1748), + [anon_sym_alignas] = ACTIONS(1748), + [anon_sym__Alignas] = ACTIONS(1748), + [anon_sym_COLON] = ACTIONS(1784), + [anon_sym_QMARK] = ACTIONS(1750), + [anon_sym_STAR_EQ] = ACTIONS(1769), + [anon_sym_SLASH_EQ] = ACTIONS(1769), + [anon_sym_PERCENT_EQ] = ACTIONS(1769), + [anon_sym_PLUS_EQ] = ACTIONS(1769), + [anon_sym_DASH_EQ] = ACTIONS(1769), + [anon_sym_LT_LT_EQ] = ACTIONS(1769), + [anon_sym_GT_GT_EQ] = ACTIONS(1769), + [anon_sym_AMP_EQ] = ACTIONS(1769), + [anon_sym_CARET_EQ] = ACTIONS(1769), + [anon_sym_PIPE_EQ] = ACTIONS(1769), + [anon_sym_DASH_DASH] = ACTIONS(1750), + [anon_sym_PLUS_PLUS] = ACTIONS(1750), + [anon_sym_DOT] = ACTIONS(1750), + [anon_sym_DASH_GT] = ACTIONS(1750), + [anon_sym_L_DQUOTE] = ACTIONS(103), + [anon_sym_u_DQUOTE] = ACTIONS(103), + [anon_sym_U_DQUOTE] = ACTIONS(103), + [anon_sym_u8_DQUOTE] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + }, + [454] = { + [sym_string_literal] = STATE(520), + [aux_sym_sized_type_specifier_repeat1] = STATE(885), + [sym_identifier] = ACTIONS(1748), + [anon_sym_COMMA] = ACTIONS(1750), + [anon_sym_LPAREN2] = ACTIONS(1752), + [anon_sym_DASH] = ACTIONS(1756), + [anon_sym_PLUS] = ACTIONS(1756), + [anon_sym_STAR] = ACTIONS(1758), + [anon_sym_SLASH] = ACTIONS(1756), + [anon_sym_PERCENT] = ACTIONS(1756), + [anon_sym_PIPE_PIPE] = ACTIONS(1750), + [anon_sym_AMP_AMP] = ACTIONS(1750), + [anon_sym_PIPE] = ACTIONS(1756), + [anon_sym_CARET] = ACTIONS(1756), + [anon_sym_AMP] = ACTIONS(1756), + [anon_sym_EQ_EQ] = ACTIONS(1750), + [anon_sym_BANG_EQ] = ACTIONS(1750), + [anon_sym_GT] = ACTIONS(1756), + [anon_sym_GT_EQ] = ACTIONS(1750), + [anon_sym_LT_EQ] = ACTIONS(1750), + [anon_sym_LT] = ACTIONS(1756), + [anon_sym_LT_LT] = ACTIONS(1756), + [anon_sym_GT_GT] = ACTIONS(1756), + [anon_sym_SEMI] = ACTIONS(1750), + [anon_sym___extension__] = ACTIONS(1748), + [anon_sym_extern] = ACTIONS(1748), + [anon_sym___attribute__] = ACTIONS(1748), + [anon_sym___scanf] = ACTIONS(1748), + [anon_sym___printf] = ACTIONS(1748), + [anon_sym___read_mostly] = ACTIONS(1748), + [anon_sym___must_hold] = ACTIONS(1748), + [anon_sym___ro_after_init] = ACTIONS(1748), + [anon_sym___noreturn] = ACTIONS(1748), + [anon_sym___cold] = ACTIONS(1748), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1761), + [anon_sym___declspec] = ACTIONS(1748), + [anon_sym___based] = ACTIONS(1748), + [anon_sym___init] = ACTIONS(1748), + [anon_sym___exit] = ACTIONS(1748), + [anon_sym___cdecl] = ACTIONS(1748), + [anon_sym___clrcall] = ACTIONS(1748), + [anon_sym___stdcall] = ACTIONS(1748), + [anon_sym___fastcall] = ACTIONS(1748), + [anon_sym___thiscall] = ACTIONS(1748), + [anon_sym___vectorcall] = ACTIONS(1748), + [anon_sym_signed] = ACTIONS(1763), + [anon_sym_unsigned] = ACTIONS(1763), + [anon_sym_long] = ACTIONS(1763), + [anon_sym_short] = ACTIONS(1763), + [anon_sym_LBRACK] = ACTIONS(1756), + [anon_sym_static] = ACTIONS(1748), + [anon_sym_EQ] = ACTIONS(1765), + [anon_sym_auto] = ACTIONS(1748), + [anon_sym_register] = ACTIONS(1748), + [anon_sym_inline] = ACTIONS(1748), + [anon_sym___inline] = ACTIONS(1748), + [anon_sym___inline__] = ACTIONS(1748), + [anon_sym___forceinline] = ACTIONS(1748), + [anon_sym_thread_local] = ACTIONS(1748), + [anon_sym___thread] = ACTIONS(1748), + [anon_sym_const] = ACTIONS(1748), + [anon_sym_constexpr] = ACTIONS(1748), + [anon_sym_volatile] = ACTIONS(1748), + [anon_sym_restrict] = ACTIONS(1748), + [anon_sym___restrict__] = ACTIONS(1748), + [anon_sym__Atomic] = ACTIONS(1748), + [anon_sym__Noreturn] = ACTIONS(1748), + [anon_sym_noreturn] = ACTIONS(1748), + [anon_sym_alignas] = ACTIONS(1748), + [anon_sym__Alignas] = ACTIONS(1748), + [anon_sym_COLON] = ACTIONS(1786), + [anon_sym_QMARK] = ACTIONS(1750), + [anon_sym_STAR_EQ] = ACTIONS(1769), + [anon_sym_SLASH_EQ] = ACTIONS(1769), + [anon_sym_PERCENT_EQ] = ACTIONS(1769), + [anon_sym_PLUS_EQ] = ACTIONS(1769), + [anon_sym_DASH_EQ] = ACTIONS(1769), + [anon_sym_LT_LT_EQ] = ACTIONS(1769), + [anon_sym_GT_GT_EQ] = ACTIONS(1769), + [anon_sym_AMP_EQ] = ACTIONS(1769), + [anon_sym_CARET_EQ] = ACTIONS(1769), + [anon_sym_PIPE_EQ] = ACTIONS(1769), + [anon_sym_DASH_DASH] = ACTIONS(1750), + [anon_sym_PLUS_PLUS] = ACTIONS(1750), + [anon_sym_DOT] = ACTIONS(1750), + [anon_sym_DASH_GT] = ACTIONS(1750), + [anon_sym_L_DQUOTE] = ACTIONS(103), + [anon_sym_u_DQUOTE] = ACTIONS(103), + [anon_sym_U_DQUOTE] = ACTIONS(103), + [anon_sym_u8_DQUOTE] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + }, + [455] = { + [sym_string_literal] = STATE(520), + [aux_sym_sized_type_specifier_repeat1] = STATE(885), + [sym_identifier] = ACTIONS(1748), + [anon_sym_COMMA] = ACTIONS(1750), + [anon_sym_LPAREN2] = ACTIONS(1752), + [anon_sym_DASH] = ACTIONS(1756), + [anon_sym_PLUS] = ACTIONS(1756), + [anon_sym_STAR] = ACTIONS(1758), + [anon_sym_SLASH] = ACTIONS(1756), + [anon_sym_PERCENT] = ACTIONS(1756), + [anon_sym_PIPE_PIPE] = ACTIONS(1750), + [anon_sym_AMP_AMP] = ACTIONS(1750), + [anon_sym_PIPE] = ACTIONS(1756), + [anon_sym_CARET] = ACTIONS(1756), + [anon_sym_AMP] = ACTIONS(1756), + [anon_sym_EQ_EQ] = ACTIONS(1750), + [anon_sym_BANG_EQ] = ACTIONS(1750), + [anon_sym_GT] = ACTIONS(1756), + [anon_sym_GT_EQ] = ACTIONS(1750), + [anon_sym_LT_EQ] = ACTIONS(1750), + [anon_sym_LT] = ACTIONS(1756), + [anon_sym_LT_LT] = ACTIONS(1756), + [anon_sym_GT_GT] = ACTIONS(1756), + [anon_sym_SEMI] = ACTIONS(1781), + [anon_sym___extension__] = ACTIONS(1748), + [anon_sym_extern] = ACTIONS(1748), + [anon_sym___attribute__] = ACTIONS(1748), + [anon_sym___scanf] = ACTIONS(1748), + [anon_sym___printf] = ACTIONS(1748), + [anon_sym___read_mostly] = ACTIONS(1748), + [anon_sym___must_hold] = ACTIONS(1748), + [anon_sym___ro_after_init] = ACTIONS(1748), + [anon_sym___noreturn] = ACTIONS(1748), + [anon_sym___cold] = ACTIONS(1748), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1761), + [anon_sym___declspec] = ACTIONS(1748), + [anon_sym___based] = ACTIONS(1748), + [anon_sym___init] = ACTIONS(1748), + [anon_sym___exit] = ACTIONS(1748), + [anon_sym___cdecl] = ACTIONS(1748), + [anon_sym___clrcall] = ACTIONS(1748), + [anon_sym___stdcall] = ACTIONS(1748), + [anon_sym___fastcall] = ACTIONS(1748), + [anon_sym___thiscall] = ACTIONS(1748), + [anon_sym___vectorcall] = ACTIONS(1748), + [anon_sym_signed] = ACTIONS(1763), + [anon_sym_unsigned] = ACTIONS(1763), + [anon_sym_long] = ACTIONS(1763), + [anon_sym_short] = ACTIONS(1763), + [anon_sym_LBRACK] = ACTIONS(1756), + [anon_sym_static] = ACTIONS(1748), + [anon_sym_EQ] = ACTIONS(1765), + [anon_sym_auto] = ACTIONS(1748), + [anon_sym_register] = ACTIONS(1748), + [anon_sym_inline] = ACTIONS(1748), + [anon_sym___inline] = ACTIONS(1748), + [anon_sym___inline__] = ACTIONS(1748), + [anon_sym___forceinline] = ACTIONS(1748), + [anon_sym_thread_local] = ACTIONS(1748), + [anon_sym___thread] = ACTIONS(1748), + [anon_sym_const] = ACTIONS(1748), + [anon_sym_constexpr] = ACTIONS(1748), + [anon_sym_volatile] = ACTIONS(1748), + [anon_sym_restrict] = ACTIONS(1748), + [anon_sym___restrict__] = ACTIONS(1748), + [anon_sym__Atomic] = ACTIONS(1748), + [anon_sym__Noreturn] = ACTIONS(1748), + [anon_sym_noreturn] = ACTIONS(1748), + [anon_sym_alignas] = ACTIONS(1748), + [anon_sym__Alignas] = ACTIONS(1748), + [anon_sym_COLON] = ACTIONS(1786), + [anon_sym_QMARK] = ACTIONS(1750), + [anon_sym_STAR_EQ] = ACTIONS(1769), + [anon_sym_SLASH_EQ] = ACTIONS(1769), + [anon_sym_PERCENT_EQ] = ACTIONS(1769), + [anon_sym_PLUS_EQ] = ACTIONS(1769), + [anon_sym_DASH_EQ] = ACTIONS(1769), + [anon_sym_LT_LT_EQ] = ACTIONS(1769), + [anon_sym_GT_GT_EQ] = ACTIONS(1769), + [anon_sym_AMP_EQ] = ACTIONS(1769), + [anon_sym_CARET_EQ] = ACTIONS(1769), + [anon_sym_PIPE_EQ] = ACTIONS(1769), + [anon_sym_DASH_DASH] = ACTIONS(1750), + [anon_sym_PLUS_PLUS] = ACTIONS(1750), + [anon_sym_DOT] = ACTIONS(1750), + [anon_sym_DASH_GT] = ACTIONS(1750), + [anon_sym_L_DQUOTE] = ACTIONS(103), + [anon_sym_u_DQUOTE] = ACTIONS(103), + [anon_sym_U_DQUOTE] = ACTIONS(103), + [anon_sym_u8_DQUOTE] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + }, + [456] = { + [sym_string_literal] = STATE(520), + [aux_sym_sized_type_specifier_repeat1] = STATE(885), + [sym_identifier] = ACTIONS(1748), + [anon_sym_COMMA] = ACTIONS(1750), + [anon_sym_LPAREN2] = ACTIONS(1752), + [anon_sym_DASH] = ACTIONS(1756), + [anon_sym_PLUS] = ACTIONS(1756), + [anon_sym_STAR] = ACTIONS(1758), + [anon_sym_SLASH] = ACTIONS(1756), + [anon_sym_PERCENT] = ACTIONS(1756), + [anon_sym_PIPE_PIPE] = ACTIONS(1750), + [anon_sym_AMP_AMP] = ACTIONS(1750), + [anon_sym_PIPE] = ACTIONS(1756), + [anon_sym_CARET] = ACTIONS(1756), + [anon_sym_AMP] = ACTIONS(1756), + [anon_sym_EQ_EQ] = ACTIONS(1750), + [anon_sym_BANG_EQ] = ACTIONS(1750), + [anon_sym_GT] = ACTIONS(1756), + [anon_sym_GT_EQ] = ACTIONS(1750), + [anon_sym_LT_EQ] = ACTIONS(1750), + [anon_sym_LT] = ACTIONS(1756), + [anon_sym_LT_LT] = ACTIONS(1756), + [anon_sym_GT_GT] = ACTIONS(1756), + [anon_sym_SEMI] = ACTIONS(1750), + [anon_sym___extension__] = ACTIONS(1748), + [anon_sym_extern] = ACTIONS(1748), + [anon_sym___attribute__] = ACTIONS(1748), + [anon_sym___scanf] = ACTIONS(1748), + [anon_sym___printf] = ACTIONS(1748), + [anon_sym___read_mostly] = ACTIONS(1748), + [anon_sym___must_hold] = ACTIONS(1748), + [anon_sym___ro_after_init] = ACTIONS(1748), + [anon_sym___noreturn] = ACTIONS(1748), + [anon_sym___cold] = ACTIONS(1748), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1761), + [anon_sym___declspec] = ACTIONS(1748), + [anon_sym___based] = ACTIONS(1748), + [anon_sym___init] = ACTIONS(1748), + [anon_sym___exit] = ACTIONS(1748), + [anon_sym___cdecl] = ACTIONS(1748), + [anon_sym___clrcall] = ACTIONS(1748), + [anon_sym___stdcall] = ACTIONS(1748), + [anon_sym___fastcall] = ACTIONS(1748), + [anon_sym___thiscall] = ACTIONS(1748), + [anon_sym___vectorcall] = ACTIONS(1748), + [anon_sym_signed] = ACTIONS(1763), + [anon_sym_unsigned] = ACTIONS(1763), + [anon_sym_long] = ACTIONS(1763), + [anon_sym_short] = ACTIONS(1763), + [anon_sym_LBRACK] = ACTIONS(1756), + [anon_sym_static] = ACTIONS(1748), + [anon_sym_EQ] = ACTIONS(1765), + [anon_sym_auto] = ACTIONS(1748), + [anon_sym_register] = ACTIONS(1748), + [anon_sym_inline] = ACTIONS(1748), + [anon_sym___inline] = ACTIONS(1748), + [anon_sym___inline__] = ACTIONS(1748), + [anon_sym___forceinline] = ACTIONS(1748), + [anon_sym_thread_local] = ACTIONS(1748), + [anon_sym___thread] = ACTIONS(1748), + [anon_sym_const] = ACTIONS(1748), + [anon_sym_constexpr] = ACTIONS(1748), + [anon_sym_volatile] = ACTIONS(1748), + [anon_sym_restrict] = ACTIONS(1748), + [anon_sym___restrict__] = ACTIONS(1748), + [anon_sym__Atomic] = ACTIONS(1748), + [anon_sym__Noreturn] = ACTIONS(1748), + [anon_sym_noreturn] = ACTIONS(1748), + [anon_sym_alignas] = ACTIONS(1748), + [anon_sym__Alignas] = ACTIONS(1748), + [anon_sym_COLON] = ACTIONS(1788), + [anon_sym_QMARK] = ACTIONS(1750), + [anon_sym_STAR_EQ] = ACTIONS(1769), + [anon_sym_SLASH_EQ] = ACTIONS(1769), + [anon_sym_PERCENT_EQ] = ACTIONS(1769), + [anon_sym_PLUS_EQ] = ACTIONS(1769), + [anon_sym_DASH_EQ] = ACTIONS(1769), + [anon_sym_LT_LT_EQ] = ACTIONS(1769), + [anon_sym_GT_GT_EQ] = ACTIONS(1769), + [anon_sym_AMP_EQ] = ACTIONS(1769), + [anon_sym_CARET_EQ] = ACTIONS(1769), + [anon_sym_PIPE_EQ] = ACTIONS(1769), + [anon_sym_DASH_DASH] = ACTIONS(1750), + [anon_sym_PLUS_PLUS] = ACTIONS(1750), + [anon_sym_DOT] = ACTIONS(1750), + [anon_sym_DASH_GT] = ACTIONS(1750), + [anon_sym_L_DQUOTE] = ACTIONS(103), + [anon_sym_u_DQUOTE] = ACTIONS(103), + [anon_sym_U_DQUOTE] = ACTIONS(103), + [anon_sym_u8_DQUOTE] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + }, + [457] = { + [sym_string_literal] = STATE(520), + [aux_sym_sized_type_specifier_repeat1] = STATE(885), + [sym_identifier] = ACTIONS(1748), + [anon_sym_LPAREN2] = ACTIONS(1752), + [anon_sym_DASH] = ACTIONS(1756), + [anon_sym_PLUS] = ACTIONS(1756), + [anon_sym_STAR] = ACTIONS(1758), + [anon_sym_SLASH] = ACTIONS(1756), + [anon_sym_PERCENT] = ACTIONS(1756), + [anon_sym_PIPE_PIPE] = ACTIONS(1750), + [anon_sym_AMP_AMP] = ACTIONS(1750), + [anon_sym_PIPE] = ACTIONS(1756), + [anon_sym_CARET] = ACTIONS(1756), + [anon_sym_AMP] = ACTIONS(1756), + [anon_sym_EQ_EQ] = ACTIONS(1750), + [anon_sym_BANG_EQ] = ACTIONS(1750), + [anon_sym_GT] = ACTIONS(1756), + [anon_sym_GT_EQ] = ACTIONS(1750), + [anon_sym_LT_EQ] = ACTIONS(1750), + [anon_sym_LT] = ACTIONS(1756), + [anon_sym_LT_LT] = ACTIONS(1756), + [anon_sym_GT_GT] = ACTIONS(1756), + [anon_sym_SEMI] = ACTIONS(1790), + [anon_sym___extension__] = ACTIONS(1748), + [anon_sym_extern] = ACTIONS(1748), + [anon_sym___attribute__] = ACTIONS(1748), + [anon_sym___scanf] = ACTIONS(1748), + [anon_sym___printf] = ACTIONS(1748), + [anon_sym___read_mostly] = ACTIONS(1748), + [anon_sym___must_hold] = ACTIONS(1748), + [anon_sym___ro_after_init] = ACTIONS(1748), + [anon_sym___noreturn] = ACTIONS(1748), + [anon_sym___cold] = ACTIONS(1748), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1761), + [anon_sym___declspec] = ACTIONS(1748), + [anon_sym___based] = ACTIONS(1748), + [anon_sym___init] = ACTIONS(1748), + [anon_sym___exit] = ACTIONS(1748), + [anon_sym___cdecl] = ACTIONS(1748), + [anon_sym___clrcall] = ACTIONS(1748), + [anon_sym___stdcall] = ACTIONS(1748), + [anon_sym___fastcall] = ACTIONS(1748), + [anon_sym___thiscall] = ACTIONS(1748), + [anon_sym___vectorcall] = ACTIONS(1748), + [anon_sym_signed] = ACTIONS(1763), + [anon_sym_unsigned] = ACTIONS(1763), + [anon_sym_long] = ACTIONS(1763), + [anon_sym_short] = ACTIONS(1763), + [anon_sym_LBRACK] = ACTIONS(1756), + [anon_sym_static] = ACTIONS(1748), + [anon_sym_EQ] = ACTIONS(1765), + [anon_sym_auto] = ACTIONS(1748), + [anon_sym_register] = ACTIONS(1748), + [anon_sym_inline] = ACTIONS(1748), + [anon_sym___inline] = ACTIONS(1748), + [anon_sym___inline__] = ACTIONS(1748), + [anon_sym___forceinline] = ACTIONS(1748), + [anon_sym_thread_local] = ACTIONS(1748), + [anon_sym___thread] = ACTIONS(1748), + [anon_sym_const] = ACTIONS(1748), + [anon_sym_constexpr] = ACTIONS(1748), + [anon_sym_volatile] = ACTIONS(1748), + [anon_sym_restrict] = ACTIONS(1748), + [anon_sym___restrict__] = ACTIONS(1748), + [anon_sym__Atomic] = ACTIONS(1748), + [anon_sym__Noreturn] = ACTIONS(1748), + [anon_sym_noreturn] = ACTIONS(1748), + [anon_sym_alignas] = ACTIONS(1748), + [anon_sym__Alignas] = ACTIONS(1748), + [anon_sym_COLON] = ACTIONS(1784), + [anon_sym_QMARK] = ACTIONS(1750), + [anon_sym_STAR_EQ] = ACTIONS(1769), + [anon_sym_SLASH_EQ] = ACTIONS(1769), + [anon_sym_PERCENT_EQ] = ACTIONS(1769), + [anon_sym_PLUS_EQ] = ACTIONS(1769), + [anon_sym_DASH_EQ] = ACTIONS(1769), + [anon_sym_LT_LT_EQ] = ACTIONS(1769), + [anon_sym_GT_GT_EQ] = ACTIONS(1769), + [anon_sym_AMP_EQ] = ACTIONS(1769), + [anon_sym_CARET_EQ] = ACTIONS(1769), + [anon_sym_PIPE_EQ] = ACTIONS(1769), + [anon_sym_DASH_DASH] = ACTIONS(1750), + [anon_sym_PLUS_PLUS] = ACTIONS(1750), + [anon_sym_DOT] = ACTIONS(1750), + [anon_sym_DASH_GT] = ACTIONS(1750), + [anon_sym_L_DQUOTE] = ACTIONS(103), + [anon_sym_u_DQUOTE] = ACTIONS(103), + [anon_sym_U_DQUOTE] = ACTIONS(103), + [anon_sym_u8_DQUOTE] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + }, + [458] = { + [sym_else_clause] = STATE(199), + [sym_identifier] = ACTIONS(1147), + [anon_sym_LPAREN2] = ACTIONS(1149), + [anon_sym_BANG] = ACTIONS(1149), + [anon_sym_TILDE] = ACTIONS(1149), + [anon_sym_DASH] = ACTIONS(1147), + [anon_sym_PLUS] = ACTIONS(1147), + [anon_sym_STAR] = ACTIONS(1149), + [anon_sym_AMP] = ACTIONS(1149), + [anon_sym_SEMI] = ACTIONS(1149), + [anon_sym___extension__] = ACTIONS(1147), + [anon_sym_typedef] = ACTIONS(1147), + [anon_sym_extern] = ACTIONS(1147), + [anon_sym___attribute__] = ACTIONS(1147), + [anon_sym___scanf] = ACTIONS(1147), + [anon_sym___printf] = ACTIONS(1147), + [anon_sym___read_mostly] = ACTIONS(1147), + [anon_sym___must_hold] = ACTIONS(1147), + [anon_sym___ro_after_init] = ACTIONS(1147), + [anon_sym___noreturn] = ACTIONS(1147), + [anon_sym___cold] = ACTIONS(1147), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1149), + [anon_sym___declspec] = ACTIONS(1147), + [anon_sym_LBRACE] = ACTIONS(1149), + [anon_sym_signed] = ACTIONS(1147), + [anon_sym_unsigned] = ACTIONS(1147), + [anon_sym_long] = ACTIONS(1147), + [anon_sym_short] = ACTIONS(1147), + [anon_sym_static] = ACTIONS(1147), + [anon_sym_auto] = ACTIONS(1147), + [anon_sym_register] = ACTIONS(1147), + [anon_sym_inline] = ACTIONS(1147), + [anon_sym___inline] = ACTIONS(1147), + [anon_sym___inline__] = ACTIONS(1147), + [anon_sym___forceinline] = ACTIONS(1147), + [anon_sym_thread_local] = ACTIONS(1147), + [anon_sym___thread] = ACTIONS(1147), + [anon_sym_const] = ACTIONS(1147), + [anon_sym_constexpr] = ACTIONS(1147), + [anon_sym_volatile] = ACTIONS(1147), + [anon_sym_restrict] = ACTIONS(1147), + [anon_sym___restrict__] = ACTIONS(1147), + [anon_sym__Atomic] = ACTIONS(1147), + [anon_sym__Noreturn] = ACTIONS(1147), + [anon_sym_noreturn] = ACTIONS(1147), + [anon_sym_alignas] = ACTIONS(1147), + [anon_sym__Alignas] = ACTIONS(1147), + [sym_primitive_type] = ACTIONS(1147), + [anon_sym_enum] = ACTIONS(1147), + [anon_sym_struct] = ACTIONS(1147), + [anon_sym_union] = ACTIONS(1147), + [anon_sym_if] = ACTIONS(1147), + [anon_sym_else] = ACTIONS(1793), + [anon_sym_switch] = ACTIONS(1147), + [anon_sym_while] = ACTIONS(1147), + [anon_sym_do] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1147), + [anon_sym_return] = ACTIONS(1147), + [anon_sym_break] = ACTIONS(1147), + [anon_sym_continue] = ACTIONS(1147), + [anon_sym_goto] = ACTIONS(1147), + [anon_sym___try] = ACTIONS(1147), + [anon_sym___leave] = ACTIONS(1147), + [anon_sym_DASH_DASH] = ACTIONS(1149), + [anon_sym_PLUS_PLUS] = ACTIONS(1149), + [anon_sym_sizeof] = ACTIONS(1147), + [anon_sym___alignof__] = ACTIONS(1147), + [anon_sym___alignof] = ACTIONS(1147), + [anon_sym__alignof] = ACTIONS(1147), + [anon_sym_alignof] = ACTIONS(1147), + [anon_sym__Alignof] = ACTIONS(1147), + [anon_sym_offsetof] = ACTIONS(1147), + [anon_sym__Generic] = ACTIONS(1147), + [anon_sym_asm] = ACTIONS(1147), + [anon_sym___asm__] = ACTIONS(1147), + [sym_number_literal] = ACTIONS(1149), + [anon_sym_L_SQUOTE] = ACTIONS(1149), + [anon_sym_u_SQUOTE] = ACTIONS(1149), + [anon_sym_U_SQUOTE] = ACTIONS(1149), + [anon_sym_u8_SQUOTE] = ACTIONS(1149), + [anon_sym_SQUOTE] = ACTIONS(1149), + [anon_sym_L_DQUOTE] = ACTIONS(1149), + [anon_sym_u_DQUOTE] = ACTIONS(1149), + [anon_sym_U_DQUOTE] = ACTIONS(1149), + [anon_sym_u8_DQUOTE] = ACTIONS(1149), + [anon_sym_DQUOTE] = ACTIONS(1149), + [sym_true] = ACTIONS(1147), + [sym_false] = ACTIONS(1147), + [anon_sym_NULL] = ACTIONS(1147), + [anon_sym_nullptr] = ACTIONS(1147), + [sym_comment] = ACTIONS(3), + }, + [459] = { + [sym_string_literal] = STATE(520), + [aux_sym_sized_type_specifier_repeat1] = STATE(885), + [sym_identifier] = ACTIONS(1748), + [anon_sym_COMMA] = ACTIONS(1750), + [anon_sym_LPAREN2] = ACTIONS(1752), + [anon_sym_DASH] = ACTIONS(1756), + [anon_sym_PLUS] = ACTIONS(1756), + [anon_sym_STAR] = ACTIONS(1758), + [anon_sym_SLASH] = ACTIONS(1756), + [anon_sym_PERCENT] = ACTIONS(1756), + [anon_sym_PIPE_PIPE] = ACTIONS(1750), + [anon_sym_AMP_AMP] = ACTIONS(1750), + [anon_sym_PIPE] = ACTIONS(1756), + [anon_sym_CARET] = ACTIONS(1756), + [anon_sym_AMP] = ACTIONS(1756), + [anon_sym_EQ_EQ] = ACTIONS(1750), + [anon_sym_BANG_EQ] = ACTIONS(1750), + [anon_sym_GT] = ACTIONS(1756), + [anon_sym_GT_EQ] = ACTIONS(1750), + [anon_sym_LT_EQ] = ACTIONS(1750), + [anon_sym_LT] = ACTIONS(1756), + [anon_sym_LT_LT] = ACTIONS(1756), + [anon_sym_GT_GT] = ACTIONS(1756), + [anon_sym_SEMI] = ACTIONS(1750), + [anon_sym___extension__] = ACTIONS(1748), + [anon_sym_extern] = ACTIONS(1748), + [anon_sym___attribute__] = ACTIONS(1748), + [anon_sym___scanf] = ACTIONS(1748), + [anon_sym___printf] = ACTIONS(1748), + [anon_sym___read_mostly] = ACTIONS(1748), + [anon_sym___must_hold] = ACTIONS(1748), + [anon_sym___ro_after_init] = ACTIONS(1748), + [anon_sym___noreturn] = ACTIONS(1748), + [anon_sym___cold] = ACTIONS(1748), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1761), + [anon_sym___declspec] = ACTIONS(1748), + [anon_sym___based] = ACTIONS(1748), + [anon_sym___init] = ACTIONS(1748), + [anon_sym___exit] = ACTIONS(1748), + [anon_sym___cdecl] = ACTIONS(1748), + [anon_sym___clrcall] = ACTIONS(1748), + [anon_sym___stdcall] = ACTIONS(1748), + [anon_sym___fastcall] = ACTIONS(1748), + [anon_sym___thiscall] = ACTIONS(1748), + [anon_sym___vectorcall] = ACTIONS(1748), + [anon_sym_signed] = ACTIONS(1763), + [anon_sym_unsigned] = ACTIONS(1763), + [anon_sym_long] = ACTIONS(1763), + [anon_sym_short] = ACTIONS(1763), + [anon_sym_LBRACK] = ACTIONS(1756), + [anon_sym_static] = ACTIONS(1748), + [anon_sym_EQ] = ACTIONS(1765), + [anon_sym_auto] = ACTIONS(1748), + [anon_sym_register] = ACTIONS(1748), + [anon_sym_inline] = ACTIONS(1748), + [anon_sym___inline] = ACTIONS(1748), + [anon_sym___inline__] = ACTIONS(1748), + [anon_sym___forceinline] = ACTIONS(1748), + [anon_sym_thread_local] = ACTIONS(1748), + [anon_sym___thread] = ACTIONS(1748), + [anon_sym_const] = ACTIONS(1748), + [anon_sym_constexpr] = ACTIONS(1748), + [anon_sym_volatile] = ACTIONS(1748), + [anon_sym_restrict] = ACTIONS(1748), + [anon_sym___restrict__] = ACTIONS(1748), + [anon_sym__Atomic] = ACTIONS(1748), + [anon_sym__Noreturn] = ACTIONS(1748), + [anon_sym_noreturn] = ACTIONS(1748), + [anon_sym_alignas] = ACTIONS(1748), + [anon_sym__Alignas] = ACTIONS(1748), + [anon_sym_QMARK] = ACTIONS(1750), + [anon_sym_STAR_EQ] = ACTIONS(1769), + [anon_sym_SLASH_EQ] = ACTIONS(1769), + [anon_sym_PERCENT_EQ] = ACTIONS(1769), + [anon_sym_PLUS_EQ] = ACTIONS(1769), + [anon_sym_DASH_EQ] = ACTIONS(1769), + [anon_sym_LT_LT_EQ] = ACTIONS(1769), + [anon_sym_GT_GT_EQ] = ACTIONS(1769), + [anon_sym_AMP_EQ] = ACTIONS(1769), + [anon_sym_CARET_EQ] = ACTIONS(1769), + [anon_sym_PIPE_EQ] = ACTIONS(1769), + [anon_sym_DASH_DASH] = ACTIONS(1750), + [anon_sym_PLUS_PLUS] = ACTIONS(1750), + [anon_sym_DOT] = ACTIONS(1750), + [anon_sym_DASH_GT] = ACTIONS(1750), + [anon_sym_L_DQUOTE] = ACTIONS(103), + [anon_sym_u_DQUOTE] = ACTIONS(103), + [anon_sym_U_DQUOTE] = ACTIONS(103), + [anon_sym_u8_DQUOTE] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [385] = { - [sym_type_qualifier] = STATE(1017), - [sym_alignas_qualifier] = STATE(703), - [sym_type_specifier] = STATE(1098), - [sym_sized_type_specifier] = STATE(746), - [sym_enum_specifier] = STATE(746), - [sym_struct_specifier] = STATE(746), - [sym_union_specifier] = STATE(746), - [sym_expression] = STATE(1046), - [sym__string] = STATE(663), - [sym_comma_expression] = STATE(1919), - [sym_conditional_expression] = STATE(663), - [sym_assignment_expression] = STATE(663), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(663), - [sym_binary_expression] = STATE(663), - [sym_update_expression] = STATE(663), - [sym_cast_expression] = STATE(663), - [sym_type_descriptor] = STATE(1808), - [sym_sizeof_expression] = STATE(663), - [sym_alignof_expression] = STATE(663), - [sym_offsetof_expression] = STATE(663), - [sym_generic_expression] = STATE(663), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(663), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(663), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(663), - [sym_concatenated_string] = STATE(663), - [sym_string_literal] = STATE(659), - [sym_null] = STATE(663), - [sym_macro_type_specifier] = STATE(746), - [aux_sym__type_definition_type_repeat1] = STATE(1017), - [aux_sym_sized_type_specifier_repeat1] = STATE(1112), - [sym_identifier] = ACTIONS(1724), + [460] = { + [sym_type_qualifier] = STATE(1135), + [sym_alignas_qualifier] = STATE(799), + [sym_type_specifier] = STATE(1220), + [sym_sized_type_specifier] = STATE(873), + [sym_enum_specifier] = STATE(873), + [sym_struct_specifier] = STATE(873), + [sym_union_specifier] = STATE(873), + [sym_expression] = STATE(1171), + [sym__string] = STATE(758), + [sym_comma_expression] = STATE(2260), + [sym_conditional_expression] = STATE(758), + [sym_assignment_expression] = STATE(758), + [sym_pointer_expression] = STATE(944), + [sym_unary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_cast_expression] = STATE(758), + [sym_type_descriptor] = STATE(2071), + [sym_sizeof_expression] = STATE(758), + [sym_alignof_expression] = STATE(758), + [sym_offsetof_expression] = STATE(758), + [sym_generic_expression] = STATE(758), + [sym_subscript_expression] = STATE(944), + [sym_call_expression] = STATE(944), + [sym_gnu_asm_expression] = STATE(758), + [sym_field_expression] = STATE(944), + [sym_compound_literal_expression] = STATE(758), + [sym_parenthesized_expression] = STATE(944), + [sym_char_literal] = STATE(758), + [sym_concatenated_string] = STATE(758), + [sym_string_literal] = STATE(671), + [sym_null] = STATE(758), + [sym_macro_type_specifier] = STATE(873), + [aux_sym__type_definition_type_repeat1] = STATE(1135), + [aux_sym_sized_type_specifier_repeat1] = STATE(1246), + [sym_identifier] = ACTIONS(1795), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -57061,91 +66758,91 @@ 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___extension__] = ACTIONS(51), - [anon_sym_signed] = ACTIONS(1726), - [anon_sym_unsigned] = ACTIONS(1726), - [anon_sym_long] = ACTIONS(1726), - [anon_sym_short] = ACTIONS(1726), - [anon_sym_const] = ACTIONS(51), - [anon_sym_constexpr] = ACTIONS(51), - [anon_sym_volatile] = ACTIONS(51), - [anon_sym_restrict] = ACTIONS(51), - [anon_sym___restrict__] = ACTIONS(51), - [anon_sym__Atomic] = ACTIONS(51), - [anon_sym__Noreturn] = ACTIONS(51), - [anon_sym_noreturn] = ACTIONS(51), - [anon_sym_alignas] = ACTIONS(53), - [anon_sym__Alignas] = ACTIONS(53), - [sym_primitive_type] = ACTIONS(55), - [anon_sym_enum] = ACTIONS(1728), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [anon_sym___alignof__] = ACTIONS(89), - [anon_sym___alignof] = ACTIONS(89), - [anon_sym__alignof] = ACTIONS(89), - [anon_sym_alignof] = ACTIONS(89), - [anon_sym__Alignof] = ACTIONS(89), - [anon_sym_offsetof] = ACTIONS(91), - [anon_sym__Generic] = ACTIONS(93), - [anon_sym_asm] = ACTIONS(95), - [anon_sym___asm__] = ACTIONS(95), - [sym_number_literal] = ACTIONS(163), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(165), - [sym_false] = ACTIONS(165), - [anon_sym_NULL] = ACTIONS(105), - [anon_sym_nullptr] = ACTIONS(105), + [anon_sym___extension__] = ACTIONS(53), + [anon_sym_signed] = ACTIONS(1797), + [anon_sym_unsigned] = ACTIONS(1797), + [anon_sym_long] = ACTIONS(1797), + [anon_sym_short] = ACTIONS(1797), + [anon_sym_const] = ACTIONS(53), + [anon_sym_constexpr] = ACTIONS(53), + [anon_sym_volatile] = ACTIONS(53), + [anon_sym_restrict] = ACTIONS(53), + [anon_sym___restrict__] = ACTIONS(53), + [anon_sym__Atomic] = ACTIONS(53), + [anon_sym__Noreturn] = ACTIONS(53), + [anon_sym_noreturn] = ACTIONS(53), + [anon_sym_alignas] = ACTIONS(55), + [anon_sym__Alignas] = ACTIONS(55), + [sym_primitive_type] = ACTIONS(57), + [anon_sym_enum] = ACTIONS(1799), + [anon_sym_struct] = ACTIONS(61), + [anon_sym_union] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(87), + [anon_sym_sizeof] = ACTIONS(89), + [anon_sym___alignof__] = ACTIONS(91), + [anon_sym___alignof] = ACTIONS(91), + [anon_sym__alignof] = ACTIONS(91), + [anon_sym_alignof] = ACTIONS(91), + [anon_sym__Alignof] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(93), + [anon_sym__Generic] = ACTIONS(95), + [anon_sym_asm] = ACTIONS(97), + [anon_sym___asm__] = ACTIONS(97), + [sym_number_literal] = ACTIONS(165), + [anon_sym_L_SQUOTE] = ACTIONS(101), + [anon_sym_u_SQUOTE] = ACTIONS(101), + [anon_sym_U_SQUOTE] = ACTIONS(101), + [anon_sym_u8_SQUOTE] = ACTIONS(101), + [anon_sym_SQUOTE] = ACTIONS(101), + [anon_sym_L_DQUOTE] = ACTIONS(103), + [anon_sym_u_DQUOTE] = ACTIONS(103), + [anon_sym_U_DQUOTE] = ACTIONS(103), + [anon_sym_u8_DQUOTE] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_true] = ACTIONS(167), + [sym_false] = ACTIONS(167), + [anon_sym_NULL] = ACTIONS(107), + [anon_sym_nullptr] = ACTIONS(107), [sym_comment] = ACTIONS(3), }, - [386] = { - [sym_type_qualifier] = STATE(1017), - [sym_alignas_qualifier] = STATE(703), - [sym_type_specifier] = STATE(1098), - [sym_sized_type_specifier] = STATE(746), - [sym_enum_specifier] = STATE(746), - [sym_struct_specifier] = STATE(746), - [sym_union_specifier] = STATE(746), - [sym_expression] = STATE(1046), - [sym__string] = STATE(663), - [sym_comma_expression] = STATE(1919), - [sym_conditional_expression] = STATE(663), - [sym_assignment_expression] = STATE(663), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(663), - [sym_binary_expression] = STATE(663), - [sym_update_expression] = STATE(663), - [sym_cast_expression] = STATE(663), - [sym_type_descriptor] = STATE(1917), - [sym_sizeof_expression] = STATE(663), - [sym_alignof_expression] = STATE(663), - [sym_offsetof_expression] = STATE(663), - [sym_generic_expression] = STATE(663), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(663), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(663), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(663), - [sym_concatenated_string] = STATE(663), - [sym_string_literal] = STATE(659), - [sym_null] = STATE(663), - [sym_macro_type_specifier] = STATE(746), - [aux_sym__type_definition_type_repeat1] = STATE(1017), - [aux_sym_sized_type_specifier_repeat1] = STATE(1112), - [sym_identifier] = ACTIONS(1724), + [461] = { + [sym_type_qualifier] = STATE(1135), + [sym_alignas_qualifier] = STATE(799), + [sym_type_specifier] = STATE(1220), + [sym_sized_type_specifier] = STATE(873), + [sym_enum_specifier] = STATE(873), + [sym_struct_specifier] = STATE(873), + [sym_union_specifier] = STATE(873), + [sym_expression] = STATE(1171), + [sym__string] = STATE(758), + [sym_comma_expression] = STATE(2260), + [sym_conditional_expression] = STATE(758), + [sym_assignment_expression] = STATE(758), + [sym_pointer_expression] = STATE(944), + [sym_unary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_cast_expression] = STATE(758), + [sym_type_descriptor] = STATE(2048), + [sym_sizeof_expression] = STATE(758), + [sym_alignof_expression] = STATE(758), + [sym_offsetof_expression] = STATE(758), + [sym_generic_expression] = STATE(758), + [sym_subscript_expression] = STATE(944), + [sym_call_expression] = STATE(944), + [sym_gnu_asm_expression] = STATE(758), + [sym_field_expression] = STATE(944), + [sym_compound_literal_expression] = STATE(758), + [sym_parenthesized_expression] = STATE(944), + [sym_char_literal] = STATE(758), + [sym_concatenated_string] = STATE(758), + [sym_string_literal] = STATE(671), + [sym_null] = STATE(758), + [sym_macro_type_specifier] = STATE(873), + [aux_sym__type_definition_type_repeat1] = STATE(1135), + [aux_sym_sized_type_specifier_repeat1] = STATE(1246), + [sym_identifier] = ACTIONS(1795), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -57153,91 +66850,91 @@ 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___extension__] = ACTIONS(51), - [anon_sym_signed] = ACTIONS(1726), - [anon_sym_unsigned] = ACTIONS(1726), - [anon_sym_long] = ACTIONS(1726), - [anon_sym_short] = ACTIONS(1726), - [anon_sym_const] = ACTIONS(51), - [anon_sym_constexpr] = ACTIONS(51), - [anon_sym_volatile] = ACTIONS(51), - [anon_sym_restrict] = ACTIONS(51), - [anon_sym___restrict__] = ACTIONS(51), - [anon_sym__Atomic] = ACTIONS(51), - [anon_sym__Noreturn] = ACTIONS(51), - [anon_sym_noreturn] = ACTIONS(51), - [anon_sym_alignas] = ACTIONS(53), - [anon_sym__Alignas] = ACTIONS(53), - [sym_primitive_type] = ACTIONS(55), - [anon_sym_enum] = ACTIONS(1728), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [anon_sym___alignof__] = ACTIONS(89), - [anon_sym___alignof] = ACTIONS(89), - [anon_sym__alignof] = ACTIONS(89), - [anon_sym_alignof] = ACTIONS(89), - [anon_sym__Alignof] = ACTIONS(89), - [anon_sym_offsetof] = ACTIONS(91), - [anon_sym__Generic] = ACTIONS(93), - [anon_sym_asm] = ACTIONS(95), - [anon_sym___asm__] = ACTIONS(95), - [sym_number_literal] = ACTIONS(163), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(165), - [sym_false] = ACTIONS(165), - [anon_sym_NULL] = ACTIONS(105), - [anon_sym_nullptr] = ACTIONS(105), + [anon_sym___extension__] = ACTIONS(53), + [anon_sym_signed] = ACTIONS(1797), + [anon_sym_unsigned] = ACTIONS(1797), + [anon_sym_long] = ACTIONS(1797), + [anon_sym_short] = ACTIONS(1797), + [anon_sym_const] = ACTIONS(53), + [anon_sym_constexpr] = ACTIONS(53), + [anon_sym_volatile] = ACTIONS(53), + [anon_sym_restrict] = ACTIONS(53), + [anon_sym___restrict__] = ACTIONS(53), + [anon_sym__Atomic] = ACTIONS(53), + [anon_sym__Noreturn] = ACTIONS(53), + [anon_sym_noreturn] = ACTIONS(53), + [anon_sym_alignas] = ACTIONS(55), + [anon_sym__Alignas] = ACTIONS(55), + [sym_primitive_type] = ACTIONS(57), + [anon_sym_enum] = ACTIONS(1799), + [anon_sym_struct] = ACTIONS(61), + [anon_sym_union] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(87), + [anon_sym_sizeof] = ACTIONS(89), + [anon_sym___alignof__] = ACTIONS(91), + [anon_sym___alignof] = ACTIONS(91), + [anon_sym__alignof] = ACTIONS(91), + [anon_sym_alignof] = ACTIONS(91), + [anon_sym__Alignof] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(93), + [anon_sym__Generic] = ACTIONS(95), + [anon_sym_asm] = ACTIONS(97), + [anon_sym___asm__] = ACTIONS(97), + [sym_number_literal] = ACTIONS(165), + [anon_sym_L_SQUOTE] = ACTIONS(101), + [anon_sym_u_SQUOTE] = ACTIONS(101), + [anon_sym_U_SQUOTE] = ACTIONS(101), + [anon_sym_u8_SQUOTE] = ACTIONS(101), + [anon_sym_SQUOTE] = ACTIONS(101), + [anon_sym_L_DQUOTE] = ACTIONS(103), + [anon_sym_u_DQUOTE] = ACTIONS(103), + [anon_sym_U_DQUOTE] = ACTIONS(103), + [anon_sym_u8_DQUOTE] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_true] = ACTIONS(167), + [sym_false] = ACTIONS(167), + [anon_sym_NULL] = ACTIONS(107), + [anon_sym_nullptr] = ACTIONS(107), [sym_comment] = ACTIONS(3), }, - [387] = { - [sym_type_qualifier] = STATE(1017), - [sym_alignas_qualifier] = STATE(703), - [sym_type_specifier] = STATE(1098), - [sym_sized_type_specifier] = STATE(746), - [sym_enum_specifier] = STATE(746), - [sym_struct_specifier] = STATE(746), - [sym_union_specifier] = STATE(746), - [sym_expression] = STATE(1046), - [sym__string] = STATE(663), - [sym_comma_expression] = STATE(1919), - [sym_conditional_expression] = STATE(663), - [sym_assignment_expression] = STATE(663), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(663), - [sym_binary_expression] = STATE(663), - [sym_update_expression] = STATE(663), - [sym_cast_expression] = STATE(663), - [sym_type_descriptor] = STATE(1848), - [sym_sizeof_expression] = STATE(663), - [sym_alignof_expression] = STATE(663), - [sym_offsetof_expression] = STATE(663), - [sym_generic_expression] = STATE(663), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(663), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(663), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(663), - [sym_concatenated_string] = STATE(663), - [sym_string_literal] = STATE(659), - [sym_null] = STATE(663), - [sym_macro_type_specifier] = STATE(746), - [aux_sym__type_definition_type_repeat1] = STATE(1017), - [aux_sym_sized_type_specifier_repeat1] = STATE(1112), - [sym_identifier] = ACTIONS(1724), + [462] = { + [sym_type_qualifier] = STATE(1135), + [sym_alignas_qualifier] = STATE(799), + [sym_type_specifier] = STATE(1220), + [sym_sized_type_specifier] = STATE(873), + [sym_enum_specifier] = STATE(873), + [sym_struct_specifier] = STATE(873), + [sym_union_specifier] = STATE(873), + [sym_expression] = STATE(1171), + [sym__string] = STATE(758), + [sym_comma_expression] = STATE(2260), + [sym_conditional_expression] = STATE(758), + [sym_assignment_expression] = STATE(758), + [sym_pointer_expression] = STATE(944), + [sym_unary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_cast_expression] = STATE(758), + [sym_type_descriptor] = STATE(2154), + [sym_sizeof_expression] = STATE(758), + [sym_alignof_expression] = STATE(758), + [sym_offsetof_expression] = STATE(758), + [sym_generic_expression] = STATE(758), + [sym_subscript_expression] = STATE(944), + [sym_call_expression] = STATE(944), + [sym_gnu_asm_expression] = STATE(758), + [sym_field_expression] = STATE(944), + [sym_compound_literal_expression] = STATE(758), + [sym_parenthesized_expression] = STATE(944), + [sym_char_literal] = STATE(758), + [sym_concatenated_string] = STATE(758), + [sym_string_literal] = STATE(671), + [sym_null] = STATE(758), + [sym_macro_type_specifier] = STATE(873), + [aux_sym__type_definition_type_repeat1] = STATE(1135), + [aux_sym_sized_type_specifier_repeat1] = STATE(1246), + [sym_identifier] = ACTIONS(1795), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -57245,91 +66942,91 @@ 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___extension__] = ACTIONS(51), - [anon_sym_signed] = ACTIONS(1726), - [anon_sym_unsigned] = ACTIONS(1726), - [anon_sym_long] = ACTIONS(1726), - [anon_sym_short] = ACTIONS(1726), - [anon_sym_const] = ACTIONS(51), - [anon_sym_constexpr] = ACTIONS(51), - [anon_sym_volatile] = ACTIONS(51), - [anon_sym_restrict] = ACTIONS(51), - [anon_sym___restrict__] = ACTIONS(51), - [anon_sym__Atomic] = ACTIONS(51), - [anon_sym__Noreturn] = ACTIONS(51), - [anon_sym_noreturn] = ACTIONS(51), - [anon_sym_alignas] = ACTIONS(53), - [anon_sym__Alignas] = ACTIONS(53), - [sym_primitive_type] = ACTIONS(55), - [anon_sym_enum] = ACTIONS(1728), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [anon_sym___alignof__] = ACTIONS(89), - [anon_sym___alignof] = ACTIONS(89), - [anon_sym__alignof] = ACTIONS(89), - [anon_sym_alignof] = ACTIONS(89), - [anon_sym__Alignof] = ACTIONS(89), - [anon_sym_offsetof] = ACTIONS(91), - [anon_sym__Generic] = ACTIONS(93), - [anon_sym_asm] = ACTIONS(95), - [anon_sym___asm__] = ACTIONS(95), - [sym_number_literal] = ACTIONS(163), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(165), - [sym_false] = ACTIONS(165), - [anon_sym_NULL] = ACTIONS(105), - [anon_sym_nullptr] = ACTIONS(105), + [anon_sym___extension__] = ACTIONS(53), + [anon_sym_signed] = ACTIONS(1797), + [anon_sym_unsigned] = ACTIONS(1797), + [anon_sym_long] = ACTIONS(1797), + [anon_sym_short] = ACTIONS(1797), + [anon_sym_const] = ACTIONS(53), + [anon_sym_constexpr] = ACTIONS(53), + [anon_sym_volatile] = ACTIONS(53), + [anon_sym_restrict] = ACTIONS(53), + [anon_sym___restrict__] = ACTIONS(53), + [anon_sym__Atomic] = ACTIONS(53), + [anon_sym__Noreturn] = ACTIONS(53), + [anon_sym_noreturn] = ACTIONS(53), + [anon_sym_alignas] = ACTIONS(55), + [anon_sym__Alignas] = ACTIONS(55), + [sym_primitive_type] = ACTIONS(57), + [anon_sym_enum] = ACTIONS(1799), + [anon_sym_struct] = ACTIONS(61), + [anon_sym_union] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(87), + [anon_sym_sizeof] = ACTIONS(89), + [anon_sym___alignof__] = ACTIONS(91), + [anon_sym___alignof] = ACTIONS(91), + [anon_sym__alignof] = ACTIONS(91), + [anon_sym_alignof] = ACTIONS(91), + [anon_sym__Alignof] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(93), + [anon_sym__Generic] = ACTIONS(95), + [anon_sym_asm] = ACTIONS(97), + [anon_sym___asm__] = ACTIONS(97), + [sym_number_literal] = ACTIONS(165), + [anon_sym_L_SQUOTE] = ACTIONS(101), + [anon_sym_u_SQUOTE] = ACTIONS(101), + [anon_sym_U_SQUOTE] = ACTIONS(101), + [anon_sym_u8_SQUOTE] = ACTIONS(101), + [anon_sym_SQUOTE] = ACTIONS(101), + [anon_sym_L_DQUOTE] = ACTIONS(103), + [anon_sym_u_DQUOTE] = ACTIONS(103), + [anon_sym_U_DQUOTE] = ACTIONS(103), + [anon_sym_u8_DQUOTE] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_true] = ACTIONS(167), + [sym_false] = ACTIONS(167), + [anon_sym_NULL] = ACTIONS(107), + [anon_sym_nullptr] = ACTIONS(107), [sym_comment] = ACTIONS(3), }, - [388] = { - [sym_type_qualifier] = STATE(1017), - [sym_alignas_qualifier] = STATE(703), - [sym_type_specifier] = STATE(1098), - [sym_sized_type_specifier] = STATE(746), - [sym_enum_specifier] = STATE(746), - [sym_struct_specifier] = STATE(746), - [sym_union_specifier] = STATE(746), - [sym_expression] = STATE(1046), - [sym__string] = STATE(663), - [sym_comma_expression] = STATE(1919), - [sym_conditional_expression] = STATE(663), - [sym_assignment_expression] = STATE(663), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(663), - [sym_binary_expression] = STATE(663), - [sym_update_expression] = STATE(663), - [sym_cast_expression] = STATE(663), - [sym_type_descriptor] = STATE(1896), - [sym_sizeof_expression] = STATE(663), - [sym_alignof_expression] = STATE(663), - [sym_offsetof_expression] = STATE(663), - [sym_generic_expression] = STATE(663), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(663), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(663), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(663), - [sym_concatenated_string] = STATE(663), - [sym_string_literal] = STATE(659), - [sym_null] = STATE(663), - [sym_macro_type_specifier] = STATE(746), - [aux_sym__type_definition_type_repeat1] = STATE(1017), - [aux_sym_sized_type_specifier_repeat1] = STATE(1112), - [sym_identifier] = ACTIONS(1724), + [463] = { + [sym_type_qualifier] = STATE(1135), + [sym_alignas_qualifier] = STATE(799), + [sym_type_specifier] = STATE(1220), + [sym_sized_type_specifier] = STATE(873), + [sym_enum_specifier] = STATE(873), + [sym_struct_specifier] = STATE(873), + [sym_union_specifier] = STATE(873), + [sym_expression] = STATE(1171), + [sym__string] = STATE(758), + [sym_comma_expression] = STATE(2260), + [sym_conditional_expression] = STATE(758), + [sym_assignment_expression] = STATE(758), + [sym_pointer_expression] = STATE(944), + [sym_unary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_cast_expression] = STATE(758), + [sym_type_descriptor] = STATE(2239), + [sym_sizeof_expression] = STATE(758), + [sym_alignof_expression] = STATE(758), + [sym_offsetof_expression] = STATE(758), + [sym_generic_expression] = STATE(758), + [sym_subscript_expression] = STATE(944), + [sym_call_expression] = STATE(944), + [sym_gnu_asm_expression] = STATE(758), + [sym_field_expression] = STATE(944), + [sym_compound_literal_expression] = STATE(758), + [sym_parenthesized_expression] = STATE(944), + [sym_char_literal] = STATE(758), + [sym_concatenated_string] = STATE(758), + [sym_string_literal] = STATE(671), + [sym_null] = STATE(758), + [sym_macro_type_specifier] = STATE(873), + [aux_sym__type_definition_type_repeat1] = STATE(1135), + [aux_sym_sized_type_specifier_repeat1] = STATE(1246), + [sym_identifier] = ACTIONS(1795), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -57337,91 +67034,91 @@ 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___extension__] = ACTIONS(51), - [anon_sym_signed] = ACTIONS(1726), - [anon_sym_unsigned] = ACTIONS(1726), - [anon_sym_long] = ACTIONS(1726), - [anon_sym_short] = ACTIONS(1726), - [anon_sym_const] = ACTIONS(51), - [anon_sym_constexpr] = ACTIONS(51), - [anon_sym_volatile] = ACTIONS(51), - [anon_sym_restrict] = ACTIONS(51), - [anon_sym___restrict__] = ACTIONS(51), - [anon_sym__Atomic] = ACTIONS(51), - [anon_sym__Noreturn] = ACTIONS(51), - [anon_sym_noreturn] = ACTIONS(51), - [anon_sym_alignas] = ACTIONS(53), - [anon_sym__Alignas] = ACTIONS(53), - [sym_primitive_type] = ACTIONS(55), - [anon_sym_enum] = ACTIONS(1728), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [anon_sym___alignof__] = ACTIONS(89), - [anon_sym___alignof] = ACTIONS(89), - [anon_sym__alignof] = ACTIONS(89), - [anon_sym_alignof] = ACTIONS(89), - [anon_sym__Alignof] = ACTIONS(89), - [anon_sym_offsetof] = ACTIONS(91), - [anon_sym__Generic] = ACTIONS(93), - [anon_sym_asm] = ACTIONS(95), - [anon_sym___asm__] = ACTIONS(95), - [sym_number_literal] = ACTIONS(163), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(165), - [sym_false] = ACTIONS(165), - [anon_sym_NULL] = ACTIONS(105), - [anon_sym_nullptr] = ACTIONS(105), + [anon_sym___extension__] = ACTIONS(53), + [anon_sym_signed] = ACTIONS(1797), + [anon_sym_unsigned] = ACTIONS(1797), + [anon_sym_long] = ACTIONS(1797), + [anon_sym_short] = ACTIONS(1797), + [anon_sym_const] = ACTIONS(53), + [anon_sym_constexpr] = ACTIONS(53), + [anon_sym_volatile] = ACTIONS(53), + [anon_sym_restrict] = ACTIONS(53), + [anon_sym___restrict__] = ACTIONS(53), + [anon_sym__Atomic] = ACTIONS(53), + [anon_sym__Noreturn] = ACTIONS(53), + [anon_sym_noreturn] = ACTIONS(53), + [anon_sym_alignas] = ACTIONS(55), + [anon_sym__Alignas] = ACTIONS(55), + [sym_primitive_type] = ACTIONS(57), + [anon_sym_enum] = ACTIONS(1799), + [anon_sym_struct] = ACTIONS(61), + [anon_sym_union] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(87), + [anon_sym_sizeof] = ACTIONS(89), + [anon_sym___alignof__] = ACTIONS(91), + [anon_sym___alignof] = ACTIONS(91), + [anon_sym__alignof] = ACTIONS(91), + [anon_sym_alignof] = ACTIONS(91), + [anon_sym__Alignof] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(93), + [anon_sym__Generic] = ACTIONS(95), + [anon_sym_asm] = ACTIONS(97), + [anon_sym___asm__] = ACTIONS(97), + [sym_number_literal] = ACTIONS(165), + [anon_sym_L_SQUOTE] = ACTIONS(101), + [anon_sym_u_SQUOTE] = ACTIONS(101), + [anon_sym_U_SQUOTE] = ACTIONS(101), + [anon_sym_u8_SQUOTE] = ACTIONS(101), + [anon_sym_SQUOTE] = ACTIONS(101), + [anon_sym_L_DQUOTE] = ACTIONS(103), + [anon_sym_u_DQUOTE] = ACTIONS(103), + [anon_sym_U_DQUOTE] = ACTIONS(103), + [anon_sym_u8_DQUOTE] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_true] = ACTIONS(167), + [sym_false] = ACTIONS(167), + [anon_sym_NULL] = ACTIONS(107), + [anon_sym_nullptr] = ACTIONS(107), [sym_comment] = ACTIONS(3), }, - [389] = { - [sym_type_qualifier] = STATE(1017), - [sym_alignas_qualifier] = STATE(703), - [sym_type_specifier] = STATE(1098), - [sym_sized_type_specifier] = STATE(746), - [sym_enum_specifier] = STATE(746), - [sym_struct_specifier] = STATE(746), - [sym_union_specifier] = STATE(746), - [sym_expression] = STATE(1046), - [sym__string] = STATE(663), - [sym_comma_expression] = STATE(1919), - [sym_conditional_expression] = STATE(663), - [sym_assignment_expression] = STATE(663), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(663), - [sym_binary_expression] = STATE(663), - [sym_update_expression] = STATE(663), - [sym_cast_expression] = STATE(663), - [sym_type_descriptor] = STATE(1846), - [sym_sizeof_expression] = STATE(663), - [sym_alignof_expression] = STATE(663), - [sym_offsetof_expression] = STATE(663), - [sym_generic_expression] = STATE(663), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(663), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(663), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(663), - [sym_concatenated_string] = STATE(663), - [sym_string_literal] = STATE(659), - [sym_null] = STATE(663), - [sym_macro_type_specifier] = STATE(746), - [aux_sym__type_definition_type_repeat1] = STATE(1017), - [aux_sym_sized_type_specifier_repeat1] = STATE(1112), - [sym_identifier] = ACTIONS(1724), + [464] = { + [sym_type_qualifier] = STATE(1135), + [sym_alignas_qualifier] = STATE(799), + [sym_type_specifier] = STATE(1220), + [sym_sized_type_specifier] = STATE(873), + [sym_enum_specifier] = STATE(873), + [sym_struct_specifier] = STATE(873), + [sym_union_specifier] = STATE(873), + [sym_expression] = STATE(1171), + [sym__string] = STATE(758), + [sym_comma_expression] = STATE(2260), + [sym_conditional_expression] = STATE(758), + [sym_assignment_expression] = STATE(758), + [sym_pointer_expression] = STATE(944), + [sym_unary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_cast_expression] = STATE(758), + [sym_type_descriptor] = STATE(2117), + [sym_sizeof_expression] = STATE(758), + [sym_alignof_expression] = STATE(758), + [sym_offsetof_expression] = STATE(758), + [sym_generic_expression] = STATE(758), + [sym_subscript_expression] = STATE(944), + [sym_call_expression] = STATE(944), + [sym_gnu_asm_expression] = STATE(758), + [sym_field_expression] = STATE(944), + [sym_compound_literal_expression] = STATE(758), + [sym_parenthesized_expression] = STATE(944), + [sym_char_literal] = STATE(758), + [sym_concatenated_string] = STATE(758), + [sym_string_literal] = STATE(671), + [sym_null] = STATE(758), + [sym_macro_type_specifier] = STATE(873), + [aux_sym__type_definition_type_repeat1] = STATE(1135), + [aux_sym_sized_type_specifier_repeat1] = STATE(1246), + [sym_identifier] = ACTIONS(1795), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -57429,183 +67126,91 @@ 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___extension__] = ACTIONS(51), - [anon_sym_signed] = ACTIONS(1726), - [anon_sym_unsigned] = ACTIONS(1726), - [anon_sym_long] = ACTIONS(1726), - [anon_sym_short] = ACTIONS(1726), - [anon_sym_const] = ACTIONS(51), - [anon_sym_constexpr] = ACTIONS(51), - [anon_sym_volatile] = ACTIONS(51), - [anon_sym_restrict] = ACTIONS(51), - [anon_sym___restrict__] = ACTIONS(51), - [anon_sym__Atomic] = ACTIONS(51), - [anon_sym__Noreturn] = ACTIONS(51), - [anon_sym_noreturn] = ACTIONS(51), - [anon_sym_alignas] = ACTIONS(53), - [anon_sym__Alignas] = ACTIONS(53), - [sym_primitive_type] = ACTIONS(55), - [anon_sym_enum] = ACTIONS(1728), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [anon_sym___alignof__] = ACTIONS(89), - [anon_sym___alignof] = ACTIONS(89), - [anon_sym__alignof] = ACTIONS(89), - [anon_sym_alignof] = ACTIONS(89), - [anon_sym__Alignof] = ACTIONS(89), - [anon_sym_offsetof] = ACTIONS(91), - [anon_sym__Generic] = ACTIONS(93), - [anon_sym_asm] = ACTIONS(95), - [anon_sym___asm__] = ACTIONS(95), - [sym_number_literal] = ACTIONS(163), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(165), - [sym_false] = ACTIONS(165), - [anon_sym_NULL] = ACTIONS(105), - [anon_sym_nullptr] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - }, - [390] = { - [sym_else_clause] = STATE(196), - [sym_identifier] = ACTIONS(1139), - [anon_sym_LPAREN2] = ACTIONS(1141), - [anon_sym_BANG] = ACTIONS(1141), - [anon_sym_TILDE] = ACTIONS(1141), - [anon_sym_DASH] = ACTIONS(1139), - [anon_sym_PLUS] = ACTIONS(1139), - [anon_sym_STAR] = ACTIONS(1141), - [anon_sym_AMP] = ACTIONS(1141), - [anon_sym_SEMI] = ACTIONS(1141), - [anon_sym___extension__] = ACTIONS(1139), - [anon_sym_typedef] = ACTIONS(1139), - [anon_sym_extern] = ACTIONS(1139), - [anon_sym___attribute__] = ACTIONS(1139), - [anon_sym___scanf] = ACTIONS(1139), - [anon_sym___printf] = ACTIONS(1139), - [anon_sym___read_mostly] = ACTIONS(1139), - [anon_sym___must_hold] = ACTIONS(1139), - [anon_sym___ro_after_init] = ACTIONS(1139), - [anon_sym___init] = ACTIONS(1139), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1141), - [anon_sym___declspec] = ACTIONS(1139), - [anon_sym_LBRACE] = ACTIONS(1141), - [anon_sym_signed] = ACTIONS(1139), - [anon_sym_unsigned] = ACTIONS(1139), - [anon_sym_long] = ACTIONS(1139), - [anon_sym_short] = ACTIONS(1139), - [anon_sym_static] = ACTIONS(1139), - [anon_sym_auto] = ACTIONS(1139), - [anon_sym_register] = ACTIONS(1139), - [anon_sym_inline] = ACTIONS(1139), - [anon_sym___inline] = ACTIONS(1139), - [anon_sym___inline__] = ACTIONS(1139), - [anon_sym___forceinline] = ACTIONS(1139), - [anon_sym_thread_local] = ACTIONS(1139), - [anon_sym___thread] = ACTIONS(1139), - [anon_sym_const] = ACTIONS(1139), - [anon_sym_constexpr] = ACTIONS(1139), - [anon_sym_volatile] = ACTIONS(1139), - [anon_sym_restrict] = ACTIONS(1139), - [anon_sym___restrict__] = ACTIONS(1139), - [anon_sym__Atomic] = ACTIONS(1139), - [anon_sym__Noreturn] = ACTIONS(1139), - [anon_sym_noreturn] = ACTIONS(1139), - [anon_sym_alignas] = ACTIONS(1139), - [anon_sym__Alignas] = ACTIONS(1139), - [sym_primitive_type] = ACTIONS(1139), - [anon_sym_enum] = ACTIONS(1139), - [anon_sym_struct] = ACTIONS(1139), - [anon_sym_union] = ACTIONS(1139), - [anon_sym_if] = ACTIONS(1139), - [anon_sym_else] = ACTIONS(1730), - [anon_sym_switch] = ACTIONS(1139), - [anon_sym_while] = ACTIONS(1139), - [anon_sym_do] = ACTIONS(1139), - [anon_sym_for] = ACTIONS(1139), - [anon_sym_return] = ACTIONS(1139), - [anon_sym_break] = ACTIONS(1139), - [anon_sym_continue] = ACTIONS(1139), - [anon_sym_goto] = ACTIONS(1139), - [anon_sym___try] = ACTIONS(1139), - [anon_sym___leave] = ACTIONS(1139), - [anon_sym_DASH_DASH] = ACTIONS(1141), - [anon_sym_PLUS_PLUS] = ACTIONS(1141), - [anon_sym_sizeof] = ACTIONS(1139), - [anon_sym___alignof__] = ACTIONS(1139), - [anon_sym___alignof] = ACTIONS(1139), - [anon_sym__alignof] = ACTIONS(1139), - [anon_sym_alignof] = ACTIONS(1139), - [anon_sym__Alignof] = ACTIONS(1139), - [anon_sym_offsetof] = ACTIONS(1139), - [anon_sym__Generic] = ACTIONS(1139), - [anon_sym_asm] = ACTIONS(1139), - [anon_sym___asm__] = ACTIONS(1139), - [sym_number_literal] = ACTIONS(1141), - [anon_sym_L_SQUOTE] = ACTIONS(1141), - [anon_sym_u_SQUOTE] = ACTIONS(1141), - [anon_sym_U_SQUOTE] = ACTIONS(1141), - [anon_sym_u8_SQUOTE] = ACTIONS(1141), - [anon_sym_SQUOTE] = ACTIONS(1141), - [anon_sym_L_DQUOTE] = ACTIONS(1141), - [anon_sym_u_DQUOTE] = ACTIONS(1141), - [anon_sym_U_DQUOTE] = ACTIONS(1141), - [anon_sym_u8_DQUOTE] = ACTIONS(1141), - [anon_sym_DQUOTE] = ACTIONS(1141), - [sym_true] = ACTIONS(1139), - [sym_false] = ACTIONS(1139), - [anon_sym_NULL] = ACTIONS(1139), - [anon_sym_nullptr] = ACTIONS(1139), + [anon_sym___extension__] = ACTIONS(53), + [anon_sym_signed] = ACTIONS(1797), + [anon_sym_unsigned] = ACTIONS(1797), + [anon_sym_long] = ACTIONS(1797), + [anon_sym_short] = ACTIONS(1797), + [anon_sym_const] = ACTIONS(53), + [anon_sym_constexpr] = ACTIONS(53), + [anon_sym_volatile] = ACTIONS(53), + [anon_sym_restrict] = ACTIONS(53), + [anon_sym___restrict__] = ACTIONS(53), + [anon_sym__Atomic] = ACTIONS(53), + [anon_sym__Noreturn] = ACTIONS(53), + [anon_sym_noreturn] = ACTIONS(53), + [anon_sym_alignas] = ACTIONS(55), + [anon_sym__Alignas] = ACTIONS(55), + [sym_primitive_type] = ACTIONS(57), + [anon_sym_enum] = ACTIONS(1799), + [anon_sym_struct] = ACTIONS(61), + [anon_sym_union] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(87), + [anon_sym_sizeof] = ACTIONS(89), + [anon_sym___alignof__] = ACTIONS(91), + [anon_sym___alignof] = ACTIONS(91), + [anon_sym__alignof] = ACTIONS(91), + [anon_sym_alignof] = ACTIONS(91), + [anon_sym__Alignof] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(93), + [anon_sym__Generic] = ACTIONS(95), + [anon_sym_asm] = ACTIONS(97), + [anon_sym___asm__] = ACTIONS(97), + [sym_number_literal] = ACTIONS(165), + [anon_sym_L_SQUOTE] = ACTIONS(101), + [anon_sym_u_SQUOTE] = ACTIONS(101), + [anon_sym_U_SQUOTE] = ACTIONS(101), + [anon_sym_u8_SQUOTE] = ACTIONS(101), + [anon_sym_SQUOTE] = ACTIONS(101), + [anon_sym_L_DQUOTE] = ACTIONS(103), + [anon_sym_u_DQUOTE] = ACTIONS(103), + [anon_sym_U_DQUOTE] = ACTIONS(103), + [anon_sym_u8_DQUOTE] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_true] = ACTIONS(167), + [sym_false] = ACTIONS(167), + [anon_sym_NULL] = ACTIONS(107), + [anon_sym_nullptr] = ACTIONS(107), [sym_comment] = ACTIONS(3), }, - [391] = { - [sym_type_qualifier] = STATE(1017), - [sym_alignas_qualifier] = STATE(703), - [sym_type_specifier] = STATE(1098), - [sym_sized_type_specifier] = STATE(746), - [sym_enum_specifier] = STATE(746), - [sym_struct_specifier] = STATE(746), - [sym_union_specifier] = STATE(746), - [sym_expression] = STATE(1046), - [sym__string] = STATE(663), - [sym_comma_expression] = STATE(1919), - [sym_conditional_expression] = STATE(663), - [sym_assignment_expression] = STATE(663), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(663), - [sym_binary_expression] = STATE(663), - [sym_update_expression] = STATE(663), - [sym_cast_expression] = STATE(663), - [sym_type_descriptor] = STATE(1931), - [sym_sizeof_expression] = STATE(663), - [sym_alignof_expression] = STATE(663), - [sym_offsetof_expression] = STATE(663), - [sym_generic_expression] = STATE(663), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(663), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(663), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(663), - [sym_concatenated_string] = STATE(663), - [sym_string_literal] = STATE(659), - [sym_null] = STATE(663), - [sym_macro_type_specifier] = STATE(746), - [aux_sym__type_definition_type_repeat1] = STATE(1017), - [aux_sym_sized_type_specifier_repeat1] = STATE(1112), - [sym_identifier] = ACTIONS(1724), + [465] = { + [sym_type_qualifier] = STATE(1135), + [sym_alignas_qualifier] = STATE(799), + [sym_type_specifier] = STATE(1220), + [sym_sized_type_specifier] = STATE(873), + [sym_enum_specifier] = STATE(873), + [sym_struct_specifier] = STATE(873), + [sym_union_specifier] = STATE(873), + [sym_expression] = STATE(1171), + [sym__string] = STATE(758), + [sym_comma_expression] = STATE(2260), + [sym_conditional_expression] = STATE(758), + [sym_assignment_expression] = STATE(758), + [sym_pointer_expression] = STATE(944), + [sym_unary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_cast_expression] = STATE(758), + [sym_type_descriptor] = STATE(2259), + [sym_sizeof_expression] = STATE(758), + [sym_alignof_expression] = STATE(758), + [sym_offsetof_expression] = STATE(758), + [sym_generic_expression] = STATE(758), + [sym_subscript_expression] = STATE(944), + [sym_call_expression] = STATE(944), + [sym_gnu_asm_expression] = STATE(758), + [sym_field_expression] = STATE(944), + [sym_compound_literal_expression] = STATE(758), + [sym_parenthesized_expression] = STATE(944), + [sym_char_literal] = STATE(758), + [sym_concatenated_string] = STATE(758), + [sym_string_literal] = STATE(671), + [sym_null] = STATE(758), + [sym_macro_type_specifier] = STATE(873), + [aux_sym__type_definition_type_repeat1] = STATE(1135), + [aux_sym_sized_type_specifier_repeat1] = STATE(1246), + [sym_identifier] = ACTIONS(1795), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -57613,91 +67218,91 @@ 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___extension__] = ACTIONS(51), - [anon_sym_signed] = ACTIONS(1726), - [anon_sym_unsigned] = ACTIONS(1726), - [anon_sym_long] = ACTIONS(1726), - [anon_sym_short] = ACTIONS(1726), - [anon_sym_const] = ACTIONS(51), - [anon_sym_constexpr] = ACTIONS(51), - [anon_sym_volatile] = ACTIONS(51), - [anon_sym_restrict] = ACTIONS(51), - [anon_sym___restrict__] = ACTIONS(51), - [anon_sym__Atomic] = ACTIONS(51), - [anon_sym__Noreturn] = ACTIONS(51), - [anon_sym_noreturn] = ACTIONS(51), - [anon_sym_alignas] = ACTIONS(53), - [anon_sym__Alignas] = ACTIONS(53), - [sym_primitive_type] = ACTIONS(55), - [anon_sym_enum] = ACTIONS(1728), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [anon_sym___alignof__] = ACTIONS(89), - [anon_sym___alignof] = ACTIONS(89), - [anon_sym__alignof] = ACTIONS(89), - [anon_sym_alignof] = ACTIONS(89), - [anon_sym__Alignof] = ACTIONS(89), - [anon_sym_offsetof] = ACTIONS(91), - [anon_sym__Generic] = ACTIONS(93), - [anon_sym_asm] = ACTIONS(95), - [anon_sym___asm__] = ACTIONS(95), - [sym_number_literal] = ACTIONS(163), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(165), - [sym_false] = ACTIONS(165), - [anon_sym_NULL] = ACTIONS(105), - [anon_sym_nullptr] = ACTIONS(105), + [anon_sym___extension__] = ACTIONS(53), + [anon_sym_signed] = ACTIONS(1797), + [anon_sym_unsigned] = ACTIONS(1797), + [anon_sym_long] = ACTIONS(1797), + [anon_sym_short] = ACTIONS(1797), + [anon_sym_const] = ACTIONS(53), + [anon_sym_constexpr] = ACTIONS(53), + [anon_sym_volatile] = ACTIONS(53), + [anon_sym_restrict] = ACTIONS(53), + [anon_sym___restrict__] = ACTIONS(53), + [anon_sym__Atomic] = ACTIONS(53), + [anon_sym__Noreturn] = ACTIONS(53), + [anon_sym_noreturn] = ACTIONS(53), + [anon_sym_alignas] = ACTIONS(55), + [anon_sym__Alignas] = ACTIONS(55), + [sym_primitive_type] = ACTIONS(57), + [anon_sym_enum] = ACTIONS(1799), + [anon_sym_struct] = ACTIONS(61), + [anon_sym_union] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(87), + [anon_sym_sizeof] = ACTIONS(89), + [anon_sym___alignof__] = ACTIONS(91), + [anon_sym___alignof] = ACTIONS(91), + [anon_sym__alignof] = ACTIONS(91), + [anon_sym_alignof] = ACTIONS(91), + [anon_sym__Alignof] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(93), + [anon_sym__Generic] = ACTIONS(95), + [anon_sym_asm] = ACTIONS(97), + [anon_sym___asm__] = ACTIONS(97), + [sym_number_literal] = ACTIONS(165), + [anon_sym_L_SQUOTE] = ACTIONS(101), + [anon_sym_u_SQUOTE] = ACTIONS(101), + [anon_sym_U_SQUOTE] = ACTIONS(101), + [anon_sym_u8_SQUOTE] = ACTIONS(101), + [anon_sym_SQUOTE] = ACTIONS(101), + [anon_sym_L_DQUOTE] = ACTIONS(103), + [anon_sym_u_DQUOTE] = ACTIONS(103), + [anon_sym_U_DQUOTE] = ACTIONS(103), + [anon_sym_u8_DQUOTE] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_true] = ACTIONS(167), + [sym_false] = ACTIONS(167), + [anon_sym_NULL] = ACTIONS(107), + [anon_sym_nullptr] = ACTIONS(107), [sym_comment] = ACTIONS(3), }, - [392] = { - [sym_type_qualifier] = STATE(1017), - [sym_alignas_qualifier] = STATE(703), - [sym_type_specifier] = STATE(1098), - [sym_sized_type_specifier] = STATE(746), - [sym_enum_specifier] = STATE(746), - [sym_struct_specifier] = STATE(746), - [sym_union_specifier] = STATE(746), - [sym_expression] = STATE(1046), - [sym__string] = STATE(663), - [sym_comma_expression] = STATE(1919), - [sym_conditional_expression] = STATE(663), - [sym_assignment_expression] = STATE(663), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(663), - [sym_binary_expression] = STATE(663), - [sym_update_expression] = STATE(663), - [sym_cast_expression] = STATE(663), - [sym_type_descriptor] = STATE(1843), - [sym_sizeof_expression] = STATE(663), - [sym_alignof_expression] = STATE(663), - [sym_offsetof_expression] = STATE(663), - [sym_generic_expression] = STATE(663), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(663), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(663), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(663), - [sym_concatenated_string] = STATE(663), - [sym_string_literal] = STATE(659), - [sym_null] = STATE(663), - [sym_macro_type_specifier] = STATE(746), - [aux_sym__type_definition_type_repeat1] = STATE(1017), - [aux_sym_sized_type_specifier_repeat1] = STATE(1112), - [sym_identifier] = ACTIONS(1724), + [466] = { + [sym_type_qualifier] = STATE(1135), + [sym_alignas_qualifier] = STATE(799), + [sym_type_specifier] = STATE(1220), + [sym_sized_type_specifier] = STATE(873), + [sym_enum_specifier] = STATE(873), + [sym_struct_specifier] = STATE(873), + [sym_union_specifier] = STATE(873), + [sym_expression] = STATE(1171), + [sym__string] = STATE(758), + [sym_comma_expression] = STATE(2260), + [sym_conditional_expression] = STATE(758), + [sym_assignment_expression] = STATE(758), + [sym_pointer_expression] = STATE(944), + [sym_unary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_cast_expression] = STATE(758), + [sym_type_descriptor] = STATE(2155), + [sym_sizeof_expression] = STATE(758), + [sym_alignof_expression] = STATE(758), + [sym_offsetof_expression] = STATE(758), + [sym_generic_expression] = STATE(758), + [sym_subscript_expression] = STATE(944), + [sym_call_expression] = STATE(944), + [sym_gnu_asm_expression] = STATE(758), + [sym_field_expression] = STATE(944), + [sym_compound_literal_expression] = STATE(758), + [sym_parenthesized_expression] = STATE(944), + [sym_char_literal] = STATE(758), + [sym_concatenated_string] = STATE(758), + [sym_string_literal] = STATE(671), + [sym_null] = STATE(758), + [sym_macro_type_specifier] = STATE(873), + [aux_sym__type_definition_type_repeat1] = STATE(1135), + [aux_sym_sized_type_specifier_repeat1] = STATE(1246), + [sym_identifier] = ACTIONS(1795), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -57705,91 +67310,91 @@ 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___extension__] = ACTIONS(51), - [anon_sym_signed] = ACTIONS(1726), - [anon_sym_unsigned] = ACTIONS(1726), - [anon_sym_long] = ACTIONS(1726), - [anon_sym_short] = ACTIONS(1726), - [anon_sym_const] = ACTIONS(51), - [anon_sym_constexpr] = ACTIONS(51), - [anon_sym_volatile] = ACTIONS(51), - [anon_sym_restrict] = ACTIONS(51), - [anon_sym___restrict__] = ACTIONS(51), - [anon_sym__Atomic] = ACTIONS(51), - [anon_sym__Noreturn] = ACTIONS(51), - [anon_sym_noreturn] = ACTIONS(51), - [anon_sym_alignas] = ACTIONS(53), - [anon_sym__Alignas] = ACTIONS(53), - [sym_primitive_type] = ACTIONS(55), - [anon_sym_enum] = ACTIONS(1728), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [anon_sym___alignof__] = ACTIONS(89), - [anon_sym___alignof] = ACTIONS(89), - [anon_sym__alignof] = ACTIONS(89), - [anon_sym_alignof] = ACTIONS(89), - [anon_sym__Alignof] = ACTIONS(89), - [anon_sym_offsetof] = ACTIONS(91), - [anon_sym__Generic] = ACTIONS(93), - [anon_sym_asm] = ACTIONS(95), - [anon_sym___asm__] = ACTIONS(95), - [sym_number_literal] = ACTIONS(163), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(165), - [sym_false] = ACTIONS(165), - [anon_sym_NULL] = ACTIONS(105), - [anon_sym_nullptr] = ACTIONS(105), + [anon_sym___extension__] = ACTIONS(53), + [anon_sym_signed] = ACTIONS(1797), + [anon_sym_unsigned] = ACTIONS(1797), + [anon_sym_long] = ACTIONS(1797), + [anon_sym_short] = ACTIONS(1797), + [anon_sym_const] = ACTIONS(53), + [anon_sym_constexpr] = ACTIONS(53), + [anon_sym_volatile] = ACTIONS(53), + [anon_sym_restrict] = ACTIONS(53), + [anon_sym___restrict__] = ACTIONS(53), + [anon_sym__Atomic] = ACTIONS(53), + [anon_sym__Noreturn] = ACTIONS(53), + [anon_sym_noreturn] = ACTIONS(53), + [anon_sym_alignas] = ACTIONS(55), + [anon_sym__Alignas] = ACTIONS(55), + [sym_primitive_type] = ACTIONS(57), + [anon_sym_enum] = ACTIONS(1799), + [anon_sym_struct] = ACTIONS(61), + [anon_sym_union] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(87), + [anon_sym_sizeof] = ACTIONS(89), + [anon_sym___alignof__] = ACTIONS(91), + [anon_sym___alignof] = ACTIONS(91), + [anon_sym__alignof] = ACTIONS(91), + [anon_sym_alignof] = ACTIONS(91), + [anon_sym__Alignof] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(93), + [anon_sym__Generic] = ACTIONS(95), + [anon_sym_asm] = ACTIONS(97), + [anon_sym___asm__] = ACTIONS(97), + [sym_number_literal] = ACTIONS(165), + [anon_sym_L_SQUOTE] = ACTIONS(101), + [anon_sym_u_SQUOTE] = ACTIONS(101), + [anon_sym_U_SQUOTE] = ACTIONS(101), + [anon_sym_u8_SQUOTE] = ACTIONS(101), + [anon_sym_SQUOTE] = ACTIONS(101), + [anon_sym_L_DQUOTE] = ACTIONS(103), + [anon_sym_u_DQUOTE] = ACTIONS(103), + [anon_sym_U_DQUOTE] = ACTIONS(103), + [anon_sym_u8_DQUOTE] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_true] = ACTIONS(167), + [sym_false] = ACTIONS(167), + [anon_sym_NULL] = ACTIONS(107), + [anon_sym_nullptr] = ACTIONS(107), [sym_comment] = ACTIONS(3), }, - [393] = { - [sym_type_qualifier] = STATE(1017), - [sym_alignas_qualifier] = STATE(703), - [sym_type_specifier] = STATE(1098), - [sym_sized_type_specifier] = STATE(746), - [sym_enum_specifier] = STATE(746), - [sym_struct_specifier] = STATE(746), - [sym_union_specifier] = STATE(746), - [sym_expression] = STATE(1046), - [sym__string] = STATE(663), - [sym_comma_expression] = STATE(1919), - [sym_conditional_expression] = STATE(663), - [sym_assignment_expression] = STATE(663), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(663), - [sym_binary_expression] = STATE(663), - [sym_update_expression] = STATE(663), - [sym_cast_expression] = STATE(663), - [sym_type_descriptor] = STATE(1789), - [sym_sizeof_expression] = STATE(663), - [sym_alignof_expression] = STATE(663), - [sym_offsetof_expression] = STATE(663), - [sym_generic_expression] = STATE(663), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(663), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(663), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(663), - [sym_concatenated_string] = STATE(663), - [sym_string_literal] = STATE(659), - [sym_null] = STATE(663), - [sym_macro_type_specifier] = STATE(746), - [aux_sym__type_definition_type_repeat1] = STATE(1017), - [aux_sym_sized_type_specifier_repeat1] = STATE(1112), - [sym_identifier] = ACTIONS(1724), + [467] = { + [sym_type_qualifier] = STATE(1135), + [sym_alignas_qualifier] = STATE(799), + [sym_type_specifier] = STATE(1220), + [sym_sized_type_specifier] = STATE(873), + [sym_enum_specifier] = STATE(873), + [sym_struct_specifier] = STATE(873), + [sym_union_specifier] = STATE(873), + [sym_expression] = STATE(1171), + [sym__string] = STATE(758), + [sym_comma_expression] = STATE(2260), + [sym_conditional_expression] = STATE(758), + [sym_assignment_expression] = STATE(758), + [sym_pointer_expression] = STATE(944), + [sym_unary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_cast_expression] = STATE(758), + [sym_type_descriptor] = STATE(2199), + [sym_sizeof_expression] = STATE(758), + [sym_alignof_expression] = STATE(758), + [sym_offsetof_expression] = STATE(758), + [sym_generic_expression] = STATE(758), + [sym_subscript_expression] = STATE(944), + [sym_call_expression] = STATE(944), + [sym_gnu_asm_expression] = STATE(758), + [sym_field_expression] = STATE(944), + [sym_compound_literal_expression] = STATE(758), + [sym_parenthesized_expression] = STATE(944), + [sym_char_literal] = STATE(758), + [sym_concatenated_string] = STATE(758), + [sym_string_literal] = STATE(671), + [sym_null] = STATE(758), + [sym_macro_type_specifier] = STATE(873), + [aux_sym__type_definition_type_repeat1] = STATE(1135), + [aux_sym_sized_type_specifier_repeat1] = STATE(1246), + [sym_identifier] = ACTIONS(1795), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -57797,183 +67402,183 @@ 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___extension__] = ACTIONS(51), - [anon_sym_signed] = ACTIONS(1726), - [anon_sym_unsigned] = ACTIONS(1726), - [anon_sym_long] = ACTIONS(1726), - [anon_sym_short] = ACTIONS(1726), - [anon_sym_const] = ACTIONS(51), - [anon_sym_constexpr] = ACTIONS(51), - [anon_sym_volatile] = ACTIONS(51), - [anon_sym_restrict] = ACTIONS(51), - [anon_sym___restrict__] = ACTIONS(51), - [anon_sym__Atomic] = ACTIONS(51), - [anon_sym__Noreturn] = ACTIONS(51), - [anon_sym_noreturn] = ACTIONS(51), - [anon_sym_alignas] = ACTIONS(53), - [anon_sym__Alignas] = ACTIONS(53), - [sym_primitive_type] = ACTIONS(55), - [anon_sym_enum] = ACTIONS(1728), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [anon_sym___alignof__] = ACTIONS(89), - [anon_sym___alignof] = ACTIONS(89), - [anon_sym__alignof] = ACTIONS(89), - [anon_sym_alignof] = ACTIONS(89), - [anon_sym__Alignof] = ACTIONS(89), - [anon_sym_offsetof] = ACTIONS(91), - [anon_sym__Generic] = ACTIONS(93), - [anon_sym_asm] = ACTIONS(95), - [anon_sym___asm__] = ACTIONS(95), - [sym_number_literal] = ACTIONS(163), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(165), - [sym_false] = ACTIONS(165), - [anon_sym_NULL] = ACTIONS(105), - [anon_sym_nullptr] = ACTIONS(105), + [anon_sym___extension__] = ACTIONS(53), + [anon_sym_signed] = ACTIONS(1797), + [anon_sym_unsigned] = ACTIONS(1797), + [anon_sym_long] = ACTIONS(1797), + [anon_sym_short] = ACTIONS(1797), + [anon_sym_const] = ACTIONS(53), + [anon_sym_constexpr] = ACTIONS(53), + [anon_sym_volatile] = ACTIONS(53), + [anon_sym_restrict] = ACTIONS(53), + [anon_sym___restrict__] = ACTIONS(53), + [anon_sym__Atomic] = ACTIONS(53), + [anon_sym__Noreturn] = ACTIONS(53), + [anon_sym_noreturn] = ACTIONS(53), + [anon_sym_alignas] = ACTIONS(55), + [anon_sym__Alignas] = ACTIONS(55), + [sym_primitive_type] = ACTIONS(57), + [anon_sym_enum] = ACTIONS(1799), + [anon_sym_struct] = ACTIONS(61), + [anon_sym_union] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(87), + [anon_sym_sizeof] = ACTIONS(89), + [anon_sym___alignof__] = ACTIONS(91), + [anon_sym___alignof] = ACTIONS(91), + [anon_sym__alignof] = ACTIONS(91), + [anon_sym_alignof] = ACTIONS(91), + [anon_sym__Alignof] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(93), + [anon_sym__Generic] = ACTIONS(95), + [anon_sym_asm] = ACTIONS(97), + [anon_sym___asm__] = ACTIONS(97), + [sym_number_literal] = ACTIONS(165), + [anon_sym_L_SQUOTE] = ACTIONS(101), + [anon_sym_u_SQUOTE] = ACTIONS(101), + [anon_sym_U_SQUOTE] = ACTIONS(101), + [anon_sym_u8_SQUOTE] = ACTIONS(101), + [anon_sym_SQUOTE] = ACTIONS(101), + [anon_sym_L_DQUOTE] = ACTIONS(103), + [anon_sym_u_DQUOTE] = ACTIONS(103), + [anon_sym_U_DQUOTE] = ACTIONS(103), + [anon_sym_u8_DQUOTE] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_true] = ACTIONS(167), + [sym_false] = ACTIONS(167), + [anon_sym_NULL] = ACTIONS(107), + [anon_sym_nullptr] = ACTIONS(107), [sym_comment] = ACTIONS(3), }, - [394] = { - [sym_type_qualifier] = STATE(1017), - [sym_alignas_qualifier] = STATE(703), - [sym_type_specifier] = STATE(1098), - [sym_sized_type_specifier] = STATE(746), - [sym_enum_specifier] = STATE(746), - [sym_struct_specifier] = STATE(746), - [sym_union_specifier] = STATE(746), - [sym_expression] = STATE(1046), - [sym__string] = STATE(663), - [sym_comma_expression] = STATE(1919), - [sym_conditional_expression] = STATE(663), - [sym_assignment_expression] = STATE(663), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(663), - [sym_binary_expression] = STATE(663), - [sym_update_expression] = STATE(663), - [sym_cast_expression] = STATE(663), - [sym_type_descriptor] = STATE(2031), - [sym_sizeof_expression] = STATE(663), - [sym_alignof_expression] = STATE(663), - [sym_offsetof_expression] = STATE(663), - [sym_generic_expression] = STATE(663), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(663), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(663), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(663), - [sym_concatenated_string] = STATE(663), - [sym_string_literal] = STATE(659), - [sym_null] = STATE(663), - [sym_macro_type_specifier] = STATE(746), - [aux_sym__type_definition_type_repeat1] = STATE(1017), - [aux_sym_sized_type_specifier_repeat1] = STATE(1112), - [sym_identifier] = ACTIONS(1724), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym___extension__] = ACTIONS(51), - [anon_sym_signed] = ACTIONS(1726), - [anon_sym_unsigned] = ACTIONS(1726), - [anon_sym_long] = ACTIONS(1726), - [anon_sym_short] = ACTIONS(1726), - [anon_sym_const] = ACTIONS(51), - [anon_sym_constexpr] = ACTIONS(51), - [anon_sym_volatile] = ACTIONS(51), - [anon_sym_restrict] = ACTIONS(51), - [anon_sym___restrict__] = ACTIONS(51), - [anon_sym__Atomic] = ACTIONS(51), - [anon_sym__Noreturn] = ACTIONS(51), - [anon_sym_noreturn] = ACTIONS(51), - [anon_sym_alignas] = ACTIONS(53), - [anon_sym__Alignas] = ACTIONS(53), - [sym_primitive_type] = ACTIONS(55), - [anon_sym_enum] = ACTIONS(1728), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [anon_sym___alignof__] = ACTIONS(89), - [anon_sym___alignof] = ACTIONS(89), - [anon_sym__alignof] = ACTIONS(89), - [anon_sym_alignof] = ACTIONS(89), - [anon_sym__Alignof] = ACTIONS(89), - [anon_sym_offsetof] = ACTIONS(91), - [anon_sym__Generic] = ACTIONS(93), - [anon_sym_asm] = ACTIONS(95), - [anon_sym___asm__] = ACTIONS(95), - [sym_number_literal] = ACTIONS(163), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(165), - [sym_false] = ACTIONS(165), - [anon_sym_NULL] = ACTIONS(105), - [anon_sym_nullptr] = ACTIONS(105), + [468] = { + [sym_identifier] = ACTIONS(1801), + [anon_sym_LPAREN2] = ACTIONS(1804), + [anon_sym_BANG] = ACTIONS(1804), + [anon_sym_TILDE] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1806), + [anon_sym_PLUS] = ACTIONS(1806), + [anon_sym_STAR] = ACTIONS(1804), + [anon_sym_AMP] = ACTIONS(1804), + [anon_sym_SEMI] = ACTIONS(1804), + [anon_sym___extension__] = ACTIONS(1808), + [anon_sym_extern] = ACTIONS(1808), + [anon_sym___attribute__] = ACTIONS(1808), + [anon_sym___scanf] = ACTIONS(1808), + [anon_sym___printf] = ACTIONS(1808), + [anon_sym___read_mostly] = ACTIONS(1808), + [anon_sym___must_hold] = ACTIONS(1808), + [anon_sym___ro_after_init] = ACTIONS(1808), + [anon_sym___noreturn] = ACTIONS(1808), + [anon_sym___cold] = ACTIONS(1808), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1810), + [anon_sym___declspec] = ACTIONS(1808), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_signed] = ACTIONS(1808), + [anon_sym_unsigned] = ACTIONS(1808), + [anon_sym_long] = ACTIONS(1808), + [anon_sym_short] = ACTIONS(1808), + [anon_sym_static] = ACTIONS(1808), + [anon_sym_auto] = ACTIONS(1808), + [anon_sym_register] = ACTIONS(1808), + [anon_sym_inline] = ACTIONS(1808), + [anon_sym___inline] = ACTIONS(1808), + [anon_sym___inline__] = ACTIONS(1808), + [anon_sym___forceinline] = ACTIONS(1808), + [anon_sym_thread_local] = ACTIONS(1808), + [anon_sym___thread] = ACTIONS(1808), + [anon_sym_const] = ACTIONS(1808), + [anon_sym_constexpr] = ACTIONS(1808), + [anon_sym_volatile] = ACTIONS(1808), + [anon_sym_restrict] = ACTIONS(1808), + [anon_sym___restrict__] = ACTIONS(1808), + [anon_sym__Atomic] = ACTIONS(1808), + [anon_sym__Noreturn] = ACTIONS(1808), + [anon_sym_noreturn] = ACTIONS(1808), + [anon_sym_alignas] = ACTIONS(1808), + [anon_sym__Alignas] = ACTIONS(1808), + [sym_primitive_type] = ACTIONS(1808), + [anon_sym_enum] = ACTIONS(1808), + [anon_sym_struct] = ACTIONS(1808), + [anon_sym_union] = ACTIONS(1808), + [anon_sym_if] = ACTIONS(1806), + [anon_sym_switch] = ACTIONS(1806), + [anon_sym_case] = ACTIONS(1806), + [anon_sym_default] = ACTIONS(1806), + [anon_sym_while] = ACTIONS(1806), + [anon_sym_do] = ACTIONS(1806), + [anon_sym_for] = ACTIONS(1806), + [anon_sym_return] = ACTIONS(1806), + [anon_sym_break] = ACTIONS(1806), + [anon_sym_continue] = ACTIONS(1806), + [anon_sym_goto] = ACTIONS(1806), + [anon_sym___try] = ACTIONS(1806), + [anon_sym___leave] = ACTIONS(1806), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_PLUS_PLUS] = ACTIONS(1804), + [anon_sym_sizeof] = ACTIONS(1806), + [anon_sym___alignof__] = ACTIONS(1806), + [anon_sym___alignof] = ACTIONS(1806), + [anon_sym__alignof] = ACTIONS(1806), + [anon_sym_alignof] = ACTIONS(1806), + [anon_sym__Alignof] = ACTIONS(1806), + [anon_sym_offsetof] = ACTIONS(1806), + [anon_sym__Generic] = ACTIONS(1806), + [anon_sym_asm] = ACTIONS(1806), + [anon_sym___asm__] = ACTIONS(1806), + [sym_number_literal] = ACTIONS(1804), + [anon_sym_L_SQUOTE] = ACTIONS(1804), + [anon_sym_u_SQUOTE] = ACTIONS(1804), + [anon_sym_U_SQUOTE] = ACTIONS(1804), + [anon_sym_u8_SQUOTE] = ACTIONS(1804), + [anon_sym_SQUOTE] = ACTIONS(1804), + [anon_sym_L_DQUOTE] = ACTIONS(1804), + [anon_sym_u_DQUOTE] = ACTIONS(1804), + [anon_sym_U_DQUOTE] = ACTIONS(1804), + [anon_sym_u8_DQUOTE] = ACTIONS(1804), + [anon_sym_DQUOTE] = ACTIONS(1804), + [sym_true] = ACTIONS(1806), + [sym_false] = ACTIONS(1806), + [anon_sym_NULL] = ACTIONS(1806), + [anon_sym_nullptr] = ACTIONS(1806), [sym_comment] = ACTIONS(3), }, - [395] = { - [sym_type_qualifier] = STATE(1017), - [sym_alignas_qualifier] = STATE(703), - [sym_type_specifier] = STATE(1098), - [sym_sized_type_specifier] = STATE(746), - [sym_enum_specifier] = STATE(746), - [sym_struct_specifier] = STATE(746), - [sym_union_specifier] = STATE(746), - [sym_expression] = STATE(1046), - [sym__string] = STATE(663), - [sym_comma_expression] = STATE(1919), - [sym_conditional_expression] = STATE(663), - [sym_assignment_expression] = STATE(663), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(663), - [sym_binary_expression] = STATE(663), - [sym_update_expression] = STATE(663), - [sym_cast_expression] = STATE(663), - [sym_type_descriptor] = STATE(2052), - [sym_sizeof_expression] = STATE(663), - [sym_alignof_expression] = STATE(663), - [sym_offsetof_expression] = STATE(663), - [sym_generic_expression] = STATE(663), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(663), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(663), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(663), - [sym_concatenated_string] = STATE(663), - [sym_string_literal] = STATE(659), - [sym_null] = STATE(663), - [sym_macro_type_specifier] = STATE(746), - [aux_sym__type_definition_type_repeat1] = STATE(1017), - [aux_sym_sized_type_specifier_repeat1] = STATE(1112), - [sym_identifier] = ACTIONS(1724), + [469] = { + [sym_type_qualifier] = STATE(1135), + [sym_alignas_qualifier] = STATE(799), + [sym_type_specifier] = STATE(1220), + [sym_sized_type_specifier] = STATE(873), + [sym_enum_specifier] = STATE(873), + [sym_struct_specifier] = STATE(873), + [sym_union_specifier] = STATE(873), + [sym_expression] = STATE(1171), + [sym__string] = STATE(758), + [sym_comma_expression] = STATE(2260), + [sym_conditional_expression] = STATE(758), + [sym_assignment_expression] = STATE(758), + [sym_pointer_expression] = STATE(944), + [sym_unary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_cast_expression] = STATE(758), + [sym_type_descriptor] = STATE(2203), + [sym_sizeof_expression] = STATE(758), + [sym_alignof_expression] = STATE(758), + [sym_offsetof_expression] = STATE(758), + [sym_generic_expression] = STATE(758), + [sym_subscript_expression] = STATE(944), + [sym_call_expression] = STATE(944), + [sym_gnu_asm_expression] = STATE(758), + [sym_field_expression] = STATE(944), + [sym_compound_literal_expression] = STATE(758), + [sym_parenthesized_expression] = STATE(944), + [sym_char_literal] = STATE(758), + [sym_concatenated_string] = STATE(758), + [sym_string_literal] = STATE(671), + [sym_null] = STATE(758), + [sym_macro_type_specifier] = STATE(873), + [aux_sym__type_definition_type_repeat1] = STATE(1135), + [aux_sym_sized_type_specifier_repeat1] = STATE(1246), + [sym_identifier] = ACTIONS(1795), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -57981,91 +67586,91 @@ 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___extension__] = ACTIONS(51), - [anon_sym_signed] = ACTIONS(1726), - [anon_sym_unsigned] = ACTIONS(1726), - [anon_sym_long] = ACTIONS(1726), - [anon_sym_short] = ACTIONS(1726), - [anon_sym_const] = ACTIONS(51), - [anon_sym_constexpr] = ACTIONS(51), - [anon_sym_volatile] = ACTIONS(51), - [anon_sym_restrict] = ACTIONS(51), - [anon_sym___restrict__] = ACTIONS(51), - [anon_sym__Atomic] = ACTIONS(51), - [anon_sym__Noreturn] = ACTIONS(51), - [anon_sym_noreturn] = ACTIONS(51), - [anon_sym_alignas] = ACTIONS(53), - [anon_sym__Alignas] = ACTIONS(53), - [sym_primitive_type] = ACTIONS(55), - [anon_sym_enum] = ACTIONS(1728), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [anon_sym___alignof__] = ACTIONS(89), - [anon_sym___alignof] = ACTIONS(89), - [anon_sym__alignof] = ACTIONS(89), - [anon_sym_alignof] = ACTIONS(89), - [anon_sym__Alignof] = ACTIONS(89), - [anon_sym_offsetof] = ACTIONS(91), - [anon_sym__Generic] = ACTIONS(93), - [anon_sym_asm] = ACTIONS(95), - [anon_sym___asm__] = ACTIONS(95), - [sym_number_literal] = ACTIONS(163), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(165), - [sym_false] = ACTIONS(165), - [anon_sym_NULL] = ACTIONS(105), - [anon_sym_nullptr] = ACTIONS(105), + [anon_sym___extension__] = ACTIONS(53), + [anon_sym_signed] = ACTIONS(1797), + [anon_sym_unsigned] = ACTIONS(1797), + [anon_sym_long] = ACTIONS(1797), + [anon_sym_short] = ACTIONS(1797), + [anon_sym_const] = ACTIONS(53), + [anon_sym_constexpr] = ACTIONS(53), + [anon_sym_volatile] = ACTIONS(53), + [anon_sym_restrict] = ACTIONS(53), + [anon_sym___restrict__] = ACTIONS(53), + [anon_sym__Atomic] = ACTIONS(53), + [anon_sym__Noreturn] = ACTIONS(53), + [anon_sym_noreturn] = ACTIONS(53), + [anon_sym_alignas] = ACTIONS(55), + [anon_sym__Alignas] = ACTIONS(55), + [sym_primitive_type] = ACTIONS(57), + [anon_sym_enum] = ACTIONS(1799), + [anon_sym_struct] = ACTIONS(61), + [anon_sym_union] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(87), + [anon_sym_sizeof] = ACTIONS(89), + [anon_sym___alignof__] = ACTIONS(91), + [anon_sym___alignof] = ACTIONS(91), + [anon_sym__alignof] = ACTIONS(91), + [anon_sym_alignof] = ACTIONS(91), + [anon_sym__Alignof] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(93), + [anon_sym__Generic] = ACTIONS(95), + [anon_sym_asm] = ACTIONS(97), + [anon_sym___asm__] = ACTIONS(97), + [sym_number_literal] = ACTIONS(165), + [anon_sym_L_SQUOTE] = ACTIONS(101), + [anon_sym_u_SQUOTE] = ACTIONS(101), + [anon_sym_U_SQUOTE] = ACTIONS(101), + [anon_sym_u8_SQUOTE] = ACTIONS(101), + [anon_sym_SQUOTE] = ACTIONS(101), + [anon_sym_L_DQUOTE] = ACTIONS(103), + [anon_sym_u_DQUOTE] = ACTIONS(103), + [anon_sym_U_DQUOTE] = ACTIONS(103), + [anon_sym_u8_DQUOTE] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_true] = ACTIONS(167), + [sym_false] = ACTIONS(167), + [anon_sym_NULL] = ACTIONS(107), + [anon_sym_nullptr] = ACTIONS(107), [sym_comment] = ACTIONS(3), }, - [396] = { - [sym_type_qualifier] = STATE(1017), - [sym_alignas_qualifier] = STATE(703), - [sym_type_specifier] = STATE(1098), - [sym_sized_type_specifier] = STATE(746), - [sym_enum_specifier] = STATE(746), - [sym_struct_specifier] = STATE(746), - [sym_union_specifier] = STATE(746), - [sym_expression] = STATE(1046), - [sym__string] = STATE(663), - [sym_comma_expression] = STATE(1919), - [sym_conditional_expression] = STATE(663), - [sym_assignment_expression] = STATE(663), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(663), - [sym_binary_expression] = STATE(663), - [sym_update_expression] = STATE(663), - [sym_cast_expression] = STATE(663), - [sym_type_descriptor] = STATE(2030), - [sym_sizeof_expression] = STATE(663), - [sym_alignof_expression] = STATE(663), - [sym_offsetof_expression] = STATE(663), - [sym_generic_expression] = STATE(663), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(663), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(663), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(663), - [sym_concatenated_string] = STATE(663), - [sym_string_literal] = STATE(659), - [sym_null] = STATE(663), - [sym_macro_type_specifier] = STATE(746), - [aux_sym__type_definition_type_repeat1] = STATE(1017), - [aux_sym_sized_type_specifier_repeat1] = STATE(1112), - [sym_identifier] = ACTIONS(1724), + [470] = { + [sym_type_qualifier] = STATE(1135), + [sym_alignas_qualifier] = STATE(799), + [sym_type_specifier] = STATE(1220), + [sym_sized_type_specifier] = STATE(873), + [sym_enum_specifier] = STATE(873), + [sym_struct_specifier] = STATE(873), + [sym_union_specifier] = STATE(873), + [sym_expression] = STATE(1171), + [sym__string] = STATE(758), + [sym_comma_expression] = STATE(2260), + [sym_conditional_expression] = STATE(758), + [sym_assignment_expression] = STATE(758), + [sym_pointer_expression] = STATE(944), + [sym_unary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_cast_expression] = STATE(758), + [sym_type_descriptor] = STATE(2087), + [sym_sizeof_expression] = STATE(758), + [sym_alignof_expression] = STATE(758), + [sym_offsetof_expression] = STATE(758), + [sym_generic_expression] = STATE(758), + [sym_subscript_expression] = STATE(944), + [sym_call_expression] = STATE(944), + [sym_gnu_asm_expression] = STATE(758), + [sym_field_expression] = STATE(944), + [sym_compound_literal_expression] = STATE(758), + [sym_parenthesized_expression] = STATE(944), + [sym_char_literal] = STATE(758), + [sym_concatenated_string] = STATE(758), + [sym_string_literal] = STATE(671), + [sym_null] = STATE(758), + [sym_macro_type_specifier] = STATE(873), + [aux_sym__type_definition_type_repeat1] = STATE(1135), + [aux_sym_sized_type_specifier_repeat1] = STATE(1246), + [sym_identifier] = ACTIONS(1795), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -58073,91 +67678,91 @@ 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___extension__] = ACTIONS(51), - [anon_sym_signed] = ACTIONS(1726), - [anon_sym_unsigned] = ACTIONS(1726), - [anon_sym_long] = ACTIONS(1726), - [anon_sym_short] = ACTIONS(1726), - [anon_sym_const] = ACTIONS(51), - [anon_sym_constexpr] = ACTIONS(51), - [anon_sym_volatile] = ACTIONS(51), - [anon_sym_restrict] = ACTIONS(51), - [anon_sym___restrict__] = ACTIONS(51), - [anon_sym__Atomic] = ACTIONS(51), - [anon_sym__Noreturn] = ACTIONS(51), - [anon_sym_noreturn] = ACTIONS(51), - [anon_sym_alignas] = ACTIONS(53), - [anon_sym__Alignas] = ACTIONS(53), - [sym_primitive_type] = ACTIONS(55), - [anon_sym_enum] = ACTIONS(1728), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [anon_sym___alignof__] = ACTIONS(89), - [anon_sym___alignof] = ACTIONS(89), - [anon_sym__alignof] = ACTIONS(89), - [anon_sym_alignof] = ACTIONS(89), - [anon_sym__Alignof] = ACTIONS(89), - [anon_sym_offsetof] = ACTIONS(91), - [anon_sym__Generic] = ACTIONS(93), - [anon_sym_asm] = ACTIONS(95), - [anon_sym___asm__] = ACTIONS(95), - [sym_number_literal] = ACTIONS(163), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(165), - [sym_false] = ACTIONS(165), - [anon_sym_NULL] = ACTIONS(105), - [anon_sym_nullptr] = ACTIONS(105), + [anon_sym___extension__] = ACTIONS(53), + [anon_sym_signed] = ACTIONS(1797), + [anon_sym_unsigned] = ACTIONS(1797), + [anon_sym_long] = ACTIONS(1797), + [anon_sym_short] = ACTIONS(1797), + [anon_sym_const] = ACTIONS(53), + [anon_sym_constexpr] = ACTIONS(53), + [anon_sym_volatile] = ACTIONS(53), + [anon_sym_restrict] = ACTIONS(53), + [anon_sym___restrict__] = ACTIONS(53), + [anon_sym__Atomic] = ACTIONS(53), + [anon_sym__Noreturn] = ACTIONS(53), + [anon_sym_noreturn] = ACTIONS(53), + [anon_sym_alignas] = ACTIONS(55), + [anon_sym__Alignas] = ACTIONS(55), + [sym_primitive_type] = ACTIONS(57), + [anon_sym_enum] = ACTIONS(1799), + [anon_sym_struct] = ACTIONS(61), + [anon_sym_union] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(87), + [anon_sym_sizeof] = ACTIONS(89), + [anon_sym___alignof__] = ACTIONS(91), + [anon_sym___alignof] = ACTIONS(91), + [anon_sym__alignof] = ACTIONS(91), + [anon_sym_alignof] = ACTIONS(91), + [anon_sym__Alignof] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(93), + [anon_sym__Generic] = ACTIONS(95), + [anon_sym_asm] = ACTIONS(97), + [anon_sym___asm__] = ACTIONS(97), + [sym_number_literal] = ACTIONS(165), + [anon_sym_L_SQUOTE] = ACTIONS(101), + [anon_sym_u_SQUOTE] = ACTIONS(101), + [anon_sym_U_SQUOTE] = ACTIONS(101), + [anon_sym_u8_SQUOTE] = ACTIONS(101), + [anon_sym_SQUOTE] = ACTIONS(101), + [anon_sym_L_DQUOTE] = ACTIONS(103), + [anon_sym_u_DQUOTE] = ACTIONS(103), + [anon_sym_U_DQUOTE] = ACTIONS(103), + [anon_sym_u8_DQUOTE] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_true] = ACTIONS(167), + [sym_false] = ACTIONS(167), + [anon_sym_NULL] = ACTIONS(107), + [anon_sym_nullptr] = ACTIONS(107), [sym_comment] = ACTIONS(3), }, - [397] = { - [sym_type_qualifier] = STATE(1017), - [sym_alignas_qualifier] = STATE(703), - [sym_type_specifier] = STATE(1098), - [sym_sized_type_specifier] = STATE(746), - [sym_enum_specifier] = STATE(746), - [sym_struct_specifier] = STATE(746), - [sym_union_specifier] = STATE(746), - [sym_expression] = STATE(1046), - [sym__string] = STATE(663), - [sym_comma_expression] = STATE(1919), - [sym_conditional_expression] = STATE(663), - [sym_assignment_expression] = STATE(663), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(663), - [sym_binary_expression] = STATE(663), - [sym_update_expression] = STATE(663), - [sym_cast_expression] = STATE(663), - [sym_type_descriptor] = STATE(1886), - [sym_sizeof_expression] = STATE(663), - [sym_alignof_expression] = STATE(663), - [sym_offsetof_expression] = STATE(663), - [sym_generic_expression] = STATE(663), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(663), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(663), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(663), - [sym_concatenated_string] = STATE(663), - [sym_string_literal] = STATE(659), - [sym_null] = STATE(663), - [sym_macro_type_specifier] = STATE(746), - [aux_sym__type_definition_type_repeat1] = STATE(1017), - [aux_sym_sized_type_specifier_repeat1] = STATE(1112), - [sym_identifier] = ACTIONS(1724), + [471] = { + [sym_type_qualifier] = STATE(1135), + [sym_alignas_qualifier] = STATE(799), + [sym_type_specifier] = STATE(1220), + [sym_sized_type_specifier] = STATE(873), + [sym_enum_specifier] = STATE(873), + [sym_struct_specifier] = STATE(873), + [sym_union_specifier] = STATE(873), + [sym_expression] = STATE(1171), + [sym__string] = STATE(758), + [sym_comma_expression] = STATE(2260), + [sym_conditional_expression] = STATE(758), + [sym_assignment_expression] = STATE(758), + [sym_pointer_expression] = STATE(944), + [sym_unary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_cast_expression] = STATE(758), + [sym_type_descriptor] = STATE(2051), + [sym_sizeof_expression] = STATE(758), + [sym_alignof_expression] = STATE(758), + [sym_offsetof_expression] = STATE(758), + [sym_generic_expression] = STATE(758), + [sym_subscript_expression] = STATE(944), + [sym_call_expression] = STATE(944), + [sym_gnu_asm_expression] = STATE(758), + [sym_field_expression] = STATE(944), + [sym_compound_literal_expression] = STATE(758), + [sym_parenthesized_expression] = STATE(944), + [sym_char_literal] = STATE(758), + [sym_concatenated_string] = STATE(758), + [sym_string_literal] = STATE(671), + [sym_null] = STATE(758), + [sym_macro_type_specifier] = STATE(873), + [aux_sym__type_definition_type_repeat1] = STATE(1135), + [aux_sym_sized_type_specifier_repeat1] = STATE(1246), + [sym_identifier] = ACTIONS(1795), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -58165,90 +67770,91 @@ 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___extension__] = ACTIONS(51), - [anon_sym_signed] = ACTIONS(1726), - [anon_sym_unsigned] = ACTIONS(1726), - [anon_sym_long] = ACTIONS(1726), - [anon_sym_short] = ACTIONS(1726), - [anon_sym_const] = ACTIONS(51), - [anon_sym_constexpr] = ACTIONS(51), - [anon_sym_volatile] = ACTIONS(51), - [anon_sym_restrict] = ACTIONS(51), - [anon_sym___restrict__] = ACTIONS(51), - [anon_sym__Atomic] = ACTIONS(51), - [anon_sym__Noreturn] = ACTIONS(51), - [anon_sym_noreturn] = ACTIONS(51), - [anon_sym_alignas] = ACTIONS(53), - [anon_sym__Alignas] = ACTIONS(53), - [sym_primitive_type] = ACTIONS(55), - [anon_sym_enum] = ACTIONS(1728), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [anon_sym___alignof__] = ACTIONS(89), - [anon_sym___alignof] = ACTIONS(89), - [anon_sym__alignof] = ACTIONS(89), - [anon_sym_alignof] = ACTIONS(89), - [anon_sym__Alignof] = ACTIONS(89), - [anon_sym_offsetof] = ACTIONS(91), - [anon_sym__Generic] = ACTIONS(93), - [anon_sym_asm] = ACTIONS(95), - [anon_sym___asm__] = ACTIONS(95), - [sym_number_literal] = ACTIONS(163), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(165), - [sym_false] = ACTIONS(165), - [anon_sym_NULL] = ACTIONS(105), - [anon_sym_nullptr] = ACTIONS(105), + [anon_sym___extension__] = ACTIONS(53), + [anon_sym_signed] = ACTIONS(1797), + [anon_sym_unsigned] = ACTIONS(1797), + [anon_sym_long] = ACTIONS(1797), + [anon_sym_short] = ACTIONS(1797), + [anon_sym_const] = ACTIONS(53), + [anon_sym_constexpr] = ACTIONS(53), + [anon_sym_volatile] = ACTIONS(53), + [anon_sym_restrict] = ACTIONS(53), + [anon_sym___restrict__] = ACTIONS(53), + [anon_sym__Atomic] = ACTIONS(53), + [anon_sym__Noreturn] = ACTIONS(53), + [anon_sym_noreturn] = ACTIONS(53), + [anon_sym_alignas] = ACTIONS(55), + [anon_sym__Alignas] = ACTIONS(55), + [sym_primitive_type] = ACTIONS(57), + [anon_sym_enum] = ACTIONS(1799), + [anon_sym_struct] = ACTIONS(61), + [anon_sym_union] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(87), + [anon_sym_sizeof] = ACTIONS(89), + [anon_sym___alignof__] = ACTIONS(91), + [anon_sym___alignof] = ACTIONS(91), + [anon_sym__alignof] = ACTIONS(91), + [anon_sym_alignof] = ACTIONS(91), + [anon_sym__Alignof] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(93), + [anon_sym__Generic] = ACTIONS(95), + [anon_sym_asm] = ACTIONS(97), + [anon_sym___asm__] = ACTIONS(97), + [sym_number_literal] = ACTIONS(165), + [anon_sym_L_SQUOTE] = ACTIONS(101), + [anon_sym_u_SQUOTE] = ACTIONS(101), + [anon_sym_U_SQUOTE] = ACTIONS(101), + [anon_sym_u8_SQUOTE] = ACTIONS(101), + [anon_sym_SQUOTE] = ACTIONS(101), + [anon_sym_L_DQUOTE] = ACTIONS(103), + [anon_sym_u_DQUOTE] = ACTIONS(103), + [anon_sym_U_DQUOTE] = ACTIONS(103), + [anon_sym_u8_DQUOTE] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_true] = ACTIONS(167), + [sym_false] = ACTIONS(167), + [anon_sym_NULL] = ACTIONS(107), + [anon_sym_nullptr] = ACTIONS(107), [sym_comment] = ACTIONS(3), }, - [398] = { - [sym_type_qualifier] = STATE(1017), - [sym_alignas_qualifier] = STATE(703), - [sym_type_specifier] = STATE(1098), - [sym_sized_type_specifier] = STATE(746), - [sym_enum_specifier] = STATE(746), - [sym_struct_specifier] = STATE(746), - [sym_union_specifier] = STATE(746), - [sym_expression] = STATE(1079), - [sym__string] = STATE(663), - [sym_conditional_expression] = STATE(663), - [sym_assignment_expression] = STATE(663), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(663), - [sym_binary_expression] = STATE(663), - [sym_update_expression] = STATE(663), - [sym_cast_expression] = STATE(663), - [sym_type_descriptor] = STATE(1954), - [sym_sizeof_expression] = STATE(663), - [sym_alignof_expression] = STATE(663), - [sym_offsetof_expression] = STATE(663), - [sym_generic_expression] = STATE(663), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(663), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(663), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(663), - [sym_concatenated_string] = STATE(663), - [sym_string_literal] = STATE(659), - [sym_null] = STATE(663), - [sym_macro_type_specifier] = STATE(746), - [aux_sym__type_definition_type_repeat1] = STATE(1017), - [aux_sym_sized_type_specifier_repeat1] = STATE(1112), - [sym_identifier] = ACTIONS(1724), + [472] = { + [sym_type_qualifier] = STATE(1135), + [sym_alignas_qualifier] = STATE(799), + [sym_type_specifier] = STATE(1220), + [sym_sized_type_specifier] = STATE(873), + [sym_enum_specifier] = STATE(873), + [sym_struct_specifier] = STATE(873), + [sym_union_specifier] = STATE(873), + [sym_expression] = STATE(1171), + [sym__string] = STATE(758), + [sym_comma_expression] = STATE(2260), + [sym_conditional_expression] = STATE(758), + [sym_assignment_expression] = STATE(758), + [sym_pointer_expression] = STATE(944), + [sym_unary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_cast_expression] = STATE(758), + [sym_type_descriptor] = STATE(2276), + [sym_sizeof_expression] = STATE(758), + [sym_alignof_expression] = STATE(758), + [sym_offsetof_expression] = STATE(758), + [sym_generic_expression] = STATE(758), + [sym_subscript_expression] = STATE(944), + [sym_call_expression] = STATE(944), + [sym_gnu_asm_expression] = STATE(758), + [sym_field_expression] = STATE(944), + [sym_compound_literal_expression] = STATE(758), + [sym_parenthesized_expression] = STATE(944), + [sym_char_literal] = STATE(758), + [sym_concatenated_string] = STATE(758), + [sym_string_literal] = STATE(671), + [sym_null] = STATE(758), + [sym_macro_type_specifier] = STATE(873), + [aux_sym__type_definition_type_repeat1] = STATE(1135), + [aux_sym_sized_type_specifier_repeat1] = STATE(1246), + [sym_identifier] = ACTIONS(1795), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -58256,545 +67862,90 @@ 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___extension__] = ACTIONS(51), - [anon_sym_signed] = ACTIONS(1726), - [anon_sym_unsigned] = ACTIONS(1726), - [anon_sym_long] = ACTIONS(1726), - [anon_sym_short] = ACTIONS(1726), - [anon_sym_const] = ACTIONS(51), - [anon_sym_constexpr] = ACTIONS(51), - [anon_sym_volatile] = ACTIONS(51), - [anon_sym_restrict] = ACTIONS(51), - [anon_sym___restrict__] = ACTIONS(51), - [anon_sym__Atomic] = ACTIONS(51), - [anon_sym__Noreturn] = ACTIONS(51), - [anon_sym_noreturn] = ACTIONS(51), - [anon_sym_alignas] = ACTIONS(53), - [anon_sym__Alignas] = ACTIONS(53), - [sym_primitive_type] = ACTIONS(55), - [anon_sym_enum] = ACTIONS(1728), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [anon_sym___alignof__] = ACTIONS(89), - [anon_sym___alignof] = ACTIONS(89), - [anon_sym__alignof] = ACTIONS(89), - [anon_sym_alignof] = ACTIONS(89), - [anon_sym__Alignof] = ACTIONS(89), - [anon_sym_offsetof] = ACTIONS(91), - [anon_sym__Generic] = ACTIONS(93), - [anon_sym_asm] = ACTIONS(95), - [anon_sym___asm__] = ACTIONS(95), - [sym_number_literal] = ACTIONS(163), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(165), - [sym_false] = ACTIONS(165), - [anon_sym_NULL] = ACTIONS(105), - [anon_sym_nullptr] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - }, - [399] = { - [sym_string_literal] = STATE(456), - [aux_sym_sized_type_specifier_repeat1] = STATE(781), - [sym_identifier] = ACTIONS(1732), - [anon_sym_COMMA] = ACTIONS(1734), - [anon_sym_LPAREN2] = ACTIONS(1736), - [anon_sym_DASH] = ACTIONS(1740), - [anon_sym_PLUS] = ACTIONS(1740), - [anon_sym_STAR] = ACTIONS(1742), - [anon_sym_SLASH] = ACTIONS(1740), - [anon_sym_PERCENT] = ACTIONS(1740), - [anon_sym_PIPE_PIPE] = ACTIONS(1734), - [anon_sym_AMP_AMP] = ACTIONS(1734), - [anon_sym_PIPE] = ACTIONS(1740), - [anon_sym_CARET] = ACTIONS(1740), - [anon_sym_AMP] = ACTIONS(1740), - [anon_sym_EQ_EQ] = ACTIONS(1734), - [anon_sym_BANG_EQ] = ACTIONS(1734), - [anon_sym_GT] = ACTIONS(1740), - [anon_sym_GT_EQ] = ACTIONS(1734), - [anon_sym_LT_EQ] = ACTIONS(1734), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_LT_LT] = ACTIONS(1740), - [anon_sym_GT_GT] = ACTIONS(1740), - [anon_sym_SEMI] = ACTIONS(1734), - [anon_sym___extension__] = ACTIONS(1732), - [anon_sym_extern] = ACTIONS(1732), - [anon_sym___attribute__] = ACTIONS(1732), - [anon_sym___scanf] = ACTIONS(1732), - [anon_sym___printf] = ACTIONS(1732), - [anon_sym___read_mostly] = ACTIONS(1732), - [anon_sym___must_hold] = ACTIONS(1732), - [anon_sym___ro_after_init] = ACTIONS(1732), - [anon_sym___init] = ACTIONS(1732), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1745), - [anon_sym___declspec] = ACTIONS(1732), - [anon_sym___based] = ACTIONS(1732), - [anon_sym___cdecl] = ACTIONS(1732), - [anon_sym___clrcall] = ACTIONS(1732), - [anon_sym___stdcall] = ACTIONS(1732), - [anon_sym___fastcall] = ACTIONS(1732), - [anon_sym___thiscall] = ACTIONS(1732), - [anon_sym___vectorcall] = ACTIONS(1732), - [anon_sym_signed] = ACTIONS(1747), - [anon_sym_unsigned] = ACTIONS(1747), - [anon_sym_long] = ACTIONS(1747), - [anon_sym_short] = ACTIONS(1747), - [anon_sym_LBRACK] = ACTIONS(1740), - [anon_sym_static] = ACTIONS(1732), - [anon_sym_EQ] = ACTIONS(1749), - [anon_sym_auto] = ACTIONS(1732), - [anon_sym_register] = ACTIONS(1732), - [anon_sym_inline] = ACTIONS(1732), - [anon_sym___inline] = ACTIONS(1732), - [anon_sym___inline__] = ACTIONS(1732), - [anon_sym___forceinline] = ACTIONS(1732), - [anon_sym_thread_local] = ACTIONS(1732), - [anon_sym___thread] = ACTIONS(1732), - [anon_sym_const] = ACTIONS(1732), - [anon_sym_constexpr] = ACTIONS(1732), - [anon_sym_volatile] = ACTIONS(1732), - [anon_sym_restrict] = ACTIONS(1732), - [anon_sym___restrict__] = ACTIONS(1732), - [anon_sym__Atomic] = ACTIONS(1732), - [anon_sym__Noreturn] = ACTIONS(1732), - [anon_sym_noreturn] = ACTIONS(1732), - [anon_sym_alignas] = ACTIONS(1732), - [anon_sym__Alignas] = ACTIONS(1732), - [anon_sym_COLON] = ACTIONS(1751), - [anon_sym_QMARK] = ACTIONS(1734), - [anon_sym_STAR_EQ] = ACTIONS(1753), - [anon_sym_SLASH_EQ] = ACTIONS(1753), - [anon_sym_PERCENT_EQ] = ACTIONS(1753), - [anon_sym_PLUS_EQ] = ACTIONS(1753), - [anon_sym_DASH_EQ] = ACTIONS(1753), - [anon_sym_LT_LT_EQ] = ACTIONS(1753), - [anon_sym_GT_GT_EQ] = ACTIONS(1753), - [anon_sym_AMP_EQ] = ACTIONS(1753), - [anon_sym_CARET_EQ] = ACTIONS(1753), - [anon_sym_PIPE_EQ] = ACTIONS(1753), - [anon_sym_DASH_DASH] = ACTIONS(1734), - [anon_sym_PLUS_PLUS] = ACTIONS(1734), - [anon_sym_DOT] = ACTIONS(1734), - [anon_sym_DASH_GT] = ACTIONS(1734), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - }, - [400] = { - [sym_string_literal] = STATE(456), - [aux_sym_sized_type_specifier_repeat1] = STATE(781), - [sym_identifier] = ACTIONS(1732), - [anon_sym_COMMA] = ACTIONS(1734), - [anon_sym_LPAREN2] = ACTIONS(1736), - [anon_sym_DASH] = ACTIONS(1740), - [anon_sym_PLUS] = ACTIONS(1740), - [anon_sym_STAR] = ACTIONS(1742), - [anon_sym_SLASH] = ACTIONS(1740), - [anon_sym_PERCENT] = ACTIONS(1740), - [anon_sym_PIPE_PIPE] = ACTIONS(1734), - [anon_sym_AMP_AMP] = ACTIONS(1734), - [anon_sym_PIPE] = ACTIONS(1740), - [anon_sym_CARET] = ACTIONS(1740), - [anon_sym_AMP] = ACTIONS(1740), - [anon_sym_EQ_EQ] = ACTIONS(1734), - [anon_sym_BANG_EQ] = ACTIONS(1734), - [anon_sym_GT] = ACTIONS(1740), - [anon_sym_GT_EQ] = ACTIONS(1734), - [anon_sym_LT_EQ] = ACTIONS(1734), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_LT_LT] = ACTIONS(1740), - [anon_sym_GT_GT] = ACTIONS(1740), - [anon_sym_SEMI] = ACTIONS(1755), - [anon_sym___extension__] = ACTIONS(1732), - [anon_sym_extern] = ACTIONS(1732), - [anon_sym___attribute__] = ACTIONS(1732), - [anon_sym___scanf] = ACTIONS(1732), - [anon_sym___printf] = ACTIONS(1732), - [anon_sym___read_mostly] = ACTIONS(1732), - [anon_sym___must_hold] = ACTIONS(1732), - [anon_sym___ro_after_init] = ACTIONS(1732), - [anon_sym___init] = ACTIONS(1732), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1745), - [anon_sym___declspec] = ACTIONS(1732), - [anon_sym___based] = ACTIONS(1732), - [anon_sym___cdecl] = ACTIONS(1732), - [anon_sym___clrcall] = ACTIONS(1732), - [anon_sym___stdcall] = ACTIONS(1732), - [anon_sym___fastcall] = ACTIONS(1732), - [anon_sym___thiscall] = ACTIONS(1732), - [anon_sym___vectorcall] = ACTIONS(1732), - [anon_sym_signed] = ACTIONS(1747), - [anon_sym_unsigned] = ACTIONS(1747), - [anon_sym_long] = ACTIONS(1747), - [anon_sym_short] = ACTIONS(1747), - [anon_sym_LBRACK] = ACTIONS(1740), - [anon_sym_static] = ACTIONS(1732), - [anon_sym_EQ] = ACTIONS(1749), - [anon_sym_auto] = ACTIONS(1732), - [anon_sym_register] = ACTIONS(1732), - [anon_sym_inline] = ACTIONS(1732), - [anon_sym___inline] = ACTIONS(1732), - [anon_sym___inline__] = ACTIONS(1732), - [anon_sym___forceinline] = ACTIONS(1732), - [anon_sym_thread_local] = ACTIONS(1732), - [anon_sym___thread] = ACTIONS(1732), - [anon_sym_const] = ACTIONS(1732), - [anon_sym_constexpr] = ACTIONS(1732), - [anon_sym_volatile] = ACTIONS(1732), - [anon_sym_restrict] = ACTIONS(1732), - [anon_sym___restrict__] = ACTIONS(1732), - [anon_sym__Atomic] = ACTIONS(1732), - [anon_sym__Noreturn] = ACTIONS(1732), - [anon_sym_noreturn] = ACTIONS(1732), - [anon_sym_alignas] = ACTIONS(1732), - [anon_sym__Alignas] = ACTIONS(1732), - [anon_sym_COLON] = ACTIONS(1758), - [anon_sym_QMARK] = ACTIONS(1734), - [anon_sym_STAR_EQ] = ACTIONS(1753), - [anon_sym_SLASH_EQ] = ACTIONS(1753), - [anon_sym_PERCENT_EQ] = ACTIONS(1753), - [anon_sym_PLUS_EQ] = ACTIONS(1753), - [anon_sym_DASH_EQ] = ACTIONS(1753), - [anon_sym_LT_LT_EQ] = ACTIONS(1753), - [anon_sym_GT_GT_EQ] = ACTIONS(1753), - [anon_sym_AMP_EQ] = ACTIONS(1753), - [anon_sym_CARET_EQ] = ACTIONS(1753), - [anon_sym_PIPE_EQ] = ACTIONS(1753), - [anon_sym_DASH_DASH] = ACTIONS(1734), - [anon_sym_PLUS_PLUS] = ACTIONS(1734), - [anon_sym_DOT] = ACTIONS(1734), - [anon_sym_DASH_GT] = ACTIONS(1734), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - }, - [401] = { - [sym_string_literal] = STATE(456), - [aux_sym_sized_type_specifier_repeat1] = STATE(781), - [sym_identifier] = ACTIONS(1732), - [anon_sym_COMMA] = ACTIONS(1734), - [anon_sym_LPAREN2] = ACTIONS(1736), - [anon_sym_DASH] = ACTIONS(1740), - [anon_sym_PLUS] = ACTIONS(1740), - [anon_sym_STAR] = ACTIONS(1742), - [anon_sym_SLASH] = ACTIONS(1740), - [anon_sym_PERCENT] = ACTIONS(1740), - [anon_sym_PIPE_PIPE] = ACTIONS(1734), - [anon_sym_AMP_AMP] = ACTIONS(1734), - [anon_sym_PIPE] = ACTIONS(1740), - [anon_sym_CARET] = ACTIONS(1740), - [anon_sym_AMP] = ACTIONS(1740), - [anon_sym_EQ_EQ] = ACTIONS(1734), - [anon_sym_BANG_EQ] = ACTIONS(1734), - [anon_sym_GT] = ACTIONS(1740), - [anon_sym_GT_EQ] = ACTIONS(1734), - [anon_sym_LT_EQ] = ACTIONS(1734), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_LT_LT] = ACTIONS(1740), - [anon_sym_GT_GT] = ACTIONS(1740), - [anon_sym_SEMI] = ACTIONS(1734), - [anon_sym___extension__] = ACTIONS(1732), - [anon_sym_extern] = ACTIONS(1732), - [anon_sym___attribute__] = ACTIONS(1732), - [anon_sym___scanf] = ACTIONS(1732), - [anon_sym___printf] = ACTIONS(1732), - [anon_sym___read_mostly] = ACTIONS(1732), - [anon_sym___must_hold] = ACTIONS(1732), - [anon_sym___ro_after_init] = ACTIONS(1732), - [anon_sym___init] = ACTIONS(1732), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1745), - [anon_sym___declspec] = ACTIONS(1732), - [anon_sym___based] = ACTIONS(1732), - [anon_sym___cdecl] = ACTIONS(1732), - [anon_sym___clrcall] = ACTIONS(1732), - [anon_sym___stdcall] = ACTIONS(1732), - [anon_sym___fastcall] = ACTIONS(1732), - [anon_sym___thiscall] = ACTIONS(1732), - [anon_sym___vectorcall] = ACTIONS(1732), - [anon_sym_signed] = ACTIONS(1747), - [anon_sym_unsigned] = ACTIONS(1747), - [anon_sym_long] = ACTIONS(1747), - [anon_sym_short] = ACTIONS(1747), - [anon_sym_LBRACK] = ACTIONS(1740), - [anon_sym_static] = ACTIONS(1732), - [anon_sym_EQ] = ACTIONS(1749), - [anon_sym_auto] = ACTIONS(1732), - [anon_sym_register] = ACTIONS(1732), - [anon_sym_inline] = ACTIONS(1732), - [anon_sym___inline] = ACTIONS(1732), - [anon_sym___inline__] = ACTIONS(1732), - [anon_sym___forceinline] = ACTIONS(1732), - [anon_sym_thread_local] = ACTIONS(1732), - [anon_sym___thread] = ACTIONS(1732), - [anon_sym_const] = ACTIONS(1732), - [anon_sym_constexpr] = ACTIONS(1732), - [anon_sym_volatile] = ACTIONS(1732), - [anon_sym_restrict] = ACTIONS(1732), - [anon_sym___restrict__] = ACTIONS(1732), - [anon_sym__Atomic] = ACTIONS(1732), - [anon_sym__Noreturn] = ACTIONS(1732), - [anon_sym_noreturn] = ACTIONS(1732), - [anon_sym_alignas] = ACTIONS(1732), - [anon_sym__Alignas] = ACTIONS(1732), - [anon_sym_COLON] = ACTIONS(1760), - [anon_sym_QMARK] = ACTIONS(1734), - [anon_sym_STAR_EQ] = ACTIONS(1753), - [anon_sym_SLASH_EQ] = ACTIONS(1753), - [anon_sym_PERCENT_EQ] = ACTIONS(1753), - [anon_sym_PLUS_EQ] = ACTIONS(1753), - [anon_sym_DASH_EQ] = ACTIONS(1753), - [anon_sym_LT_LT_EQ] = ACTIONS(1753), - [anon_sym_GT_GT_EQ] = ACTIONS(1753), - [anon_sym_AMP_EQ] = ACTIONS(1753), - [anon_sym_CARET_EQ] = ACTIONS(1753), - [anon_sym_PIPE_EQ] = ACTIONS(1753), - [anon_sym_DASH_DASH] = ACTIONS(1734), - [anon_sym_PLUS_PLUS] = ACTIONS(1734), - [anon_sym_DOT] = ACTIONS(1734), - [anon_sym_DASH_GT] = ACTIONS(1734), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - }, - [402] = { - [sym_string_literal] = STATE(456), - [aux_sym_sized_type_specifier_repeat1] = STATE(781), - [sym_identifier] = ACTIONS(1732), - [anon_sym_COMMA] = ACTIONS(1734), - [anon_sym_LPAREN2] = ACTIONS(1736), - [anon_sym_DASH] = ACTIONS(1740), - [anon_sym_PLUS] = ACTIONS(1740), - [anon_sym_STAR] = ACTIONS(1742), - [anon_sym_SLASH] = ACTIONS(1740), - [anon_sym_PERCENT] = ACTIONS(1740), - [anon_sym_PIPE_PIPE] = ACTIONS(1734), - [anon_sym_AMP_AMP] = ACTIONS(1734), - [anon_sym_PIPE] = ACTIONS(1740), - [anon_sym_CARET] = ACTIONS(1740), - [anon_sym_AMP] = ACTIONS(1740), - [anon_sym_EQ_EQ] = ACTIONS(1734), - [anon_sym_BANG_EQ] = ACTIONS(1734), - [anon_sym_GT] = ACTIONS(1740), - [anon_sym_GT_EQ] = ACTIONS(1734), - [anon_sym_LT_EQ] = ACTIONS(1734), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_LT_LT] = ACTIONS(1740), - [anon_sym_GT_GT] = ACTIONS(1740), - [anon_sym_SEMI] = ACTIONS(1734), - [anon_sym___extension__] = ACTIONS(1732), - [anon_sym_extern] = ACTIONS(1732), - [anon_sym___attribute__] = ACTIONS(1732), - [anon_sym___scanf] = ACTIONS(1732), - [anon_sym___printf] = ACTIONS(1732), - [anon_sym___read_mostly] = ACTIONS(1732), - [anon_sym___must_hold] = ACTIONS(1732), - [anon_sym___ro_after_init] = ACTIONS(1732), - [anon_sym___init] = ACTIONS(1732), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1745), - [anon_sym___declspec] = ACTIONS(1732), - [anon_sym___based] = ACTIONS(1732), - [anon_sym___cdecl] = ACTIONS(1732), - [anon_sym___clrcall] = ACTIONS(1732), - [anon_sym___stdcall] = ACTIONS(1732), - [anon_sym___fastcall] = ACTIONS(1732), - [anon_sym___thiscall] = ACTIONS(1732), - [anon_sym___vectorcall] = ACTIONS(1732), - [anon_sym_signed] = ACTIONS(1747), - [anon_sym_unsigned] = ACTIONS(1747), - [anon_sym_long] = ACTIONS(1747), - [anon_sym_short] = ACTIONS(1747), - [anon_sym_LBRACK] = ACTIONS(1740), - [anon_sym_static] = ACTIONS(1732), - [anon_sym_EQ] = ACTIONS(1749), - [anon_sym_auto] = ACTIONS(1732), - [anon_sym_register] = ACTIONS(1732), - [anon_sym_inline] = ACTIONS(1732), - [anon_sym___inline] = ACTIONS(1732), - [anon_sym___inline__] = ACTIONS(1732), - [anon_sym___forceinline] = ACTIONS(1732), - [anon_sym_thread_local] = ACTIONS(1732), - [anon_sym___thread] = ACTIONS(1732), - [anon_sym_const] = ACTIONS(1732), - [anon_sym_constexpr] = ACTIONS(1732), - [anon_sym_volatile] = ACTIONS(1732), - [anon_sym_restrict] = ACTIONS(1732), - [anon_sym___restrict__] = ACTIONS(1732), - [anon_sym__Atomic] = ACTIONS(1732), - [anon_sym__Noreturn] = ACTIONS(1732), - [anon_sym_noreturn] = ACTIONS(1732), - [anon_sym_alignas] = ACTIONS(1732), - [anon_sym__Alignas] = ACTIONS(1732), - [anon_sym_COLON] = ACTIONS(1762), - [anon_sym_QMARK] = ACTIONS(1734), - [anon_sym_STAR_EQ] = ACTIONS(1753), - [anon_sym_SLASH_EQ] = ACTIONS(1753), - [anon_sym_PERCENT_EQ] = ACTIONS(1753), - [anon_sym_PLUS_EQ] = ACTIONS(1753), - [anon_sym_DASH_EQ] = ACTIONS(1753), - [anon_sym_LT_LT_EQ] = ACTIONS(1753), - [anon_sym_GT_GT_EQ] = ACTIONS(1753), - [anon_sym_AMP_EQ] = ACTIONS(1753), - [anon_sym_CARET_EQ] = ACTIONS(1753), - [anon_sym_PIPE_EQ] = ACTIONS(1753), - [anon_sym_DASH_DASH] = ACTIONS(1734), - [anon_sym_PLUS_PLUS] = ACTIONS(1734), - [anon_sym_DOT] = ACTIONS(1734), - [anon_sym_DASH_GT] = ACTIONS(1734), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), + [anon_sym___extension__] = ACTIONS(53), + [anon_sym_signed] = ACTIONS(1797), + [anon_sym_unsigned] = ACTIONS(1797), + [anon_sym_long] = ACTIONS(1797), + [anon_sym_short] = ACTIONS(1797), + [anon_sym_const] = ACTIONS(53), + [anon_sym_constexpr] = ACTIONS(53), + [anon_sym_volatile] = ACTIONS(53), + [anon_sym_restrict] = ACTIONS(53), + [anon_sym___restrict__] = ACTIONS(53), + [anon_sym__Atomic] = ACTIONS(53), + [anon_sym__Noreturn] = ACTIONS(53), + [anon_sym_noreturn] = ACTIONS(53), + [anon_sym_alignas] = ACTIONS(55), + [anon_sym__Alignas] = ACTIONS(55), + [sym_primitive_type] = ACTIONS(57), + [anon_sym_enum] = ACTIONS(1799), + [anon_sym_struct] = ACTIONS(61), + [anon_sym_union] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(87), + [anon_sym_sizeof] = ACTIONS(89), + [anon_sym___alignof__] = ACTIONS(91), + [anon_sym___alignof] = ACTIONS(91), + [anon_sym__alignof] = ACTIONS(91), + [anon_sym_alignof] = ACTIONS(91), + [anon_sym__Alignof] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(93), + [anon_sym__Generic] = ACTIONS(95), + [anon_sym_asm] = ACTIONS(97), + [anon_sym___asm__] = ACTIONS(97), + [sym_number_literal] = ACTIONS(165), + [anon_sym_L_SQUOTE] = ACTIONS(101), + [anon_sym_u_SQUOTE] = ACTIONS(101), + [anon_sym_U_SQUOTE] = ACTIONS(101), + [anon_sym_u8_SQUOTE] = ACTIONS(101), + [anon_sym_SQUOTE] = ACTIONS(101), + [anon_sym_L_DQUOTE] = ACTIONS(103), + [anon_sym_u_DQUOTE] = ACTIONS(103), + [anon_sym_U_DQUOTE] = ACTIONS(103), + [anon_sym_u8_DQUOTE] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_true] = ACTIONS(167), + [sym_false] = ACTIONS(167), + [anon_sym_NULL] = ACTIONS(107), + [anon_sym_nullptr] = ACTIONS(107), [sym_comment] = ACTIONS(3), }, - [403] = { - [sym_string_literal] = STATE(456), - [aux_sym_sized_type_specifier_repeat1] = STATE(781), - [sym_identifier] = ACTIONS(1732), - [anon_sym_COMMA] = ACTIONS(1734), - [anon_sym_LPAREN2] = ACTIONS(1736), - [anon_sym_DASH] = ACTIONS(1740), - [anon_sym_PLUS] = ACTIONS(1740), - [anon_sym_STAR] = ACTIONS(1742), - [anon_sym_SLASH] = ACTIONS(1740), - [anon_sym_PERCENT] = ACTIONS(1740), - [anon_sym_PIPE_PIPE] = ACTIONS(1734), - [anon_sym_AMP_AMP] = ACTIONS(1734), - [anon_sym_PIPE] = ACTIONS(1740), - [anon_sym_CARET] = ACTIONS(1740), - [anon_sym_AMP] = ACTIONS(1740), - [anon_sym_EQ_EQ] = ACTIONS(1734), - [anon_sym_BANG_EQ] = ACTIONS(1734), - [anon_sym_GT] = ACTIONS(1740), - [anon_sym_GT_EQ] = ACTIONS(1734), - [anon_sym_LT_EQ] = ACTIONS(1734), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_LT_LT] = ACTIONS(1740), - [anon_sym_GT_GT] = ACTIONS(1740), - [anon_sym_SEMI] = ACTIONS(1734), - [anon_sym___extension__] = ACTIONS(1732), - [anon_sym_extern] = ACTIONS(1732), - [anon_sym___attribute__] = ACTIONS(1732), - [anon_sym___scanf] = ACTIONS(1732), - [anon_sym___printf] = ACTIONS(1732), - [anon_sym___read_mostly] = ACTIONS(1732), - [anon_sym___must_hold] = ACTIONS(1732), - [anon_sym___ro_after_init] = ACTIONS(1732), - [anon_sym___init] = ACTIONS(1732), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1745), - [anon_sym___declspec] = ACTIONS(1732), - [anon_sym___based] = ACTIONS(1732), - [anon_sym___cdecl] = ACTIONS(1732), - [anon_sym___clrcall] = ACTIONS(1732), - [anon_sym___stdcall] = ACTIONS(1732), - [anon_sym___fastcall] = ACTIONS(1732), - [anon_sym___thiscall] = ACTIONS(1732), - [anon_sym___vectorcall] = ACTIONS(1732), - [anon_sym_signed] = ACTIONS(1747), - [anon_sym_unsigned] = ACTIONS(1747), - [anon_sym_long] = ACTIONS(1747), - [anon_sym_short] = ACTIONS(1747), - [anon_sym_LBRACK] = ACTIONS(1740), - [anon_sym_static] = ACTIONS(1732), - [anon_sym_EQ] = ACTIONS(1749), - [anon_sym_auto] = ACTIONS(1732), - [anon_sym_register] = ACTIONS(1732), - [anon_sym_inline] = ACTIONS(1732), - [anon_sym___inline] = ACTIONS(1732), - [anon_sym___inline__] = ACTIONS(1732), - [anon_sym___forceinline] = ACTIONS(1732), - [anon_sym_thread_local] = ACTIONS(1732), - [anon_sym___thread] = ACTIONS(1732), - [anon_sym_const] = ACTIONS(1732), - [anon_sym_constexpr] = ACTIONS(1732), - [anon_sym_volatile] = ACTIONS(1732), - [anon_sym_restrict] = ACTIONS(1732), - [anon_sym___restrict__] = ACTIONS(1732), - [anon_sym__Atomic] = ACTIONS(1732), - [anon_sym__Noreturn] = ACTIONS(1732), - [anon_sym_noreturn] = ACTIONS(1732), - [anon_sym_alignas] = ACTIONS(1732), - [anon_sym__Alignas] = ACTIONS(1732), - [anon_sym_COLON] = ACTIONS(1758), - [anon_sym_QMARK] = ACTIONS(1734), - [anon_sym_STAR_EQ] = ACTIONS(1753), - [anon_sym_SLASH_EQ] = ACTIONS(1753), - [anon_sym_PERCENT_EQ] = ACTIONS(1753), - [anon_sym_PLUS_EQ] = ACTIONS(1753), - [anon_sym_DASH_EQ] = ACTIONS(1753), - [anon_sym_LT_LT_EQ] = ACTIONS(1753), - [anon_sym_GT_GT_EQ] = ACTIONS(1753), - [anon_sym_AMP_EQ] = ACTIONS(1753), - [anon_sym_CARET_EQ] = ACTIONS(1753), - [anon_sym_PIPE_EQ] = ACTIONS(1753), - [anon_sym_DASH_DASH] = ACTIONS(1734), - [anon_sym_PLUS_PLUS] = ACTIONS(1734), - [anon_sym_DOT] = ACTIONS(1734), - [anon_sym_DASH_GT] = ACTIONS(1734), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - }, - [404] = { - [sym_type_qualifier] = STATE(1017), - [sym_alignas_qualifier] = STATE(703), - [sym_type_specifier] = STATE(1098), - [sym_sized_type_specifier] = STATE(746), - [sym_enum_specifier] = STATE(746), - [sym_struct_specifier] = STATE(746), - [sym_union_specifier] = STATE(746), - [sym_expression] = STATE(1082), - [sym__string] = STATE(663), - [sym_conditional_expression] = STATE(663), - [sym_assignment_expression] = STATE(663), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(663), - [sym_binary_expression] = STATE(663), - [sym_update_expression] = STATE(663), - [sym_cast_expression] = STATE(663), - [sym_type_descriptor] = STATE(1947), - [sym_sizeof_expression] = STATE(663), - [sym_alignof_expression] = STATE(663), - [sym_offsetof_expression] = STATE(663), - [sym_generic_expression] = STATE(663), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(663), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(663), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(663), - [sym_concatenated_string] = STATE(663), - [sym_string_literal] = STATE(659), - [sym_null] = STATE(663), - [sym_macro_type_specifier] = STATE(746), - [aux_sym__type_definition_type_repeat1] = STATE(1017), - [aux_sym_sized_type_specifier_repeat1] = STATE(1112), - [sym_identifier] = ACTIONS(1724), + [473] = { + [sym_type_qualifier] = STATE(1135), + [sym_alignas_qualifier] = STATE(799), + [sym_type_specifier] = STATE(1220), + [sym_sized_type_specifier] = STATE(873), + [sym_enum_specifier] = STATE(873), + [sym_struct_specifier] = STATE(873), + [sym_union_specifier] = STATE(873), + [sym_expression] = STATE(1210), + [sym__string] = STATE(758), + [sym_conditional_expression] = STATE(758), + [sym_assignment_expression] = STATE(758), + [sym_pointer_expression] = STATE(944), + [sym_unary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_cast_expression] = STATE(758), + [sym_type_descriptor] = STATE(2197), + [sym_sizeof_expression] = STATE(758), + [sym_alignof_expression] = STATE(758), + [sym_offsetof_expression] = STATE(758), + [sym_generic_expression] = STATE(758), + [sym_subscript_expression] = STATE(944), + [sym_call_expression] = STATE(944), + [sym_gnu_asm_expression] = STATE(758), + [sym_field_expression] = STATE(944), + [sym_compound_literal_expression] = STATE(758), + [sym_parenthesized_expression] = STATE(944), + [sym_char_literal] = STATE(758), + [sym_concatenated_string] = STATE(758), + [sym_string_literal] = STATE(671), + [sym_null] = STATE(758), + [sym_macro_type_specifier] = STATE(873), + [aux_sym__type_definition_type_repeat1] = STATE(1135), + [aux_sym_sized_type_specifier_repeat1] = STATE(1246), + [sym_identifier] = ACTIONS(1795), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -58802,3577 +67953,3337 @@ 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___extension__] = ACTIONS(51), - [anon_sym_signed] = ACTIONS(1726), - [anon_sym_unsigned] = ACTIONS(1726), - [anon_sym_long] = ACTIONS(1726), - [anon_sym_short] = ACTIONS(1726), - [anon_sym_const] = ACTIONS(51), - [anon_sym_constexpr] = ACTIONS(51), - [anon_sym_volatile] = ACTIONS(51), - [anon_sym_restrict] = ACTIONS(51), - [anon_sym___restrict__] = ACTIONS(51), - [anon_sym__Atomic] = ACTIONS(51), - [anon_sym__Noreturn] = ACTIONS(51), - [anon_sym_noreturn] = ACTIONS(51), - [anon_sym_alignas] = ACTIONS(53), - [anon_sym__Alignas] = ACTIONS(53), - [sym_primitive_type] = ACTIONS(55), - [anon_sym_enum] = ACTIONS(1728), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [anon_sym___alignof__] = ACTIONS(89), - [anon_sym___alignof] = ACTIONS(89), - [anon_sym__alignof] = ACTIONS(89), - [anon_sym_alignof] = ACTIONS(89), - [anon_sym__Alignof] = ACTIONS(89), - [anon_sym_offsetof] = ACTIONS(91), - [anon_sym__Generic] = ACTIONS(93), - [anon_sym_asm] = ACTIONS(95), - [anon_sym___asm__] = ACTIONS(95), - [sym_number_literal] = ACTIONS(163), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(165), - [sym_false] = ACTIONS(165), - [anon_sym_NULL] = ACTIONS(105), - [anon_sym_nullptr] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - }, - [405] = { - [sym_identifier] = ACTIONS(1764), - [anon_sym_LPAREN2] = ACTIONS(1767), - [anon_sym_BANG] = ACTIONS(1767), - [anon_sym_TILDE] = ACTIONS(1767), - [anon_sym_DASH] = ACTIONS(1769), - [anon_sym_PLUS] = ACTIONS(1769), - [anon_sym_STAR] = ACTIONS(1767), - [anon_sym_AMP] = ACTIONS(1767), - [anon_sym_SEMI] = ACTIONS(1767), - [anon_sym___extension__] = ACTIONS(1771), - [anon_sym_extern] = ACTIONS(1771), - [anon_sym___attribute__] = ACTIONS(1771), - [anon_sym___scanf] = ACTIONS(1771), - [anon_sym___printf] = ACTIONS(1771), - [anon_sym___read_mostly] = ACTIONS(1771), - [anon_sym___must_hold] = ACTIONS(1771), - [anon_sym___ro_after_init] = ACTIONS(1771), - [anon_sym___init] = ACTIONS(1771), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1773), - [anon_sym___declspec] = ACTIONS(1771), - [anon_sym_LBRACE] = ACTIONS(1767), - [anon_sym_signed] = ACTIONS(1771), - [anon_sym_unsigned] = ACTIONS(1771), - [anon_sym_long] = ACTIONS(1771), - [anon_sym_short] = ACTIONS(1771), - [anon_sym_static] = ACTIONS(1771), - [anon_sym_auto] = ACTIONS(1771), - [anon_sym_register] = ACTIONS(1771), - [anon_sym_inline] = ACTIONS(1771), - [anon_sym___inline] = ACTIONS(1771), - [anon_sym___inline__] = ACTIONS(1771), - [anon_sym___forceinline] = ACTIONS(1771), - [anon_sym_thread_local] = ACTIONS(1771), - [anon_sym___thread] = ACTIONS(1771), - [anon_sym_const] = ACTIONS(1771), - [anon_sym_constexpr] = ACTIONS(1771), - [anon_sym_volatile] = ACTIONS(1771), - [anon_sym_restrict] = ACTIONS(1771), - [anon_sym___restrict__] = ACTIONS(1771), - [anon_sym__Atomic] = ACTIONS(1771), - [anon_sym__Noreturn] = ACTIONS(1771), - [anon_sym_noreturn] = ACTIONS(1771), - [anon_sym_alignas] = ACTIONS(1771), - [anon_sym__Alignas] = ACTIONS(1771), - [sym_primitive_type] = ACTIONS(1771), - [anon_sym_enum] = ACTIONS(1771), - [anon_sym_struct] = ACTIONS(1771), - [anon_sym_union] = ACTIONS(1771), - [anon_sym_if] = ACTIONS(1769), - [anon_sym_switch] = ACTIONS(1769), - [anon_sym_case] = ACTIONS(1769), - [anon_sym_default] = ACTIONS(1769), - [anon_sym_while] = ACTIONS(1769), - [anon_sym_do] = ACTIONS(1769), - [anon_sym_for] = ACTIONS(1769), - [anon_sym_return] = ACTIONS(1769), - [anon_sym_break] = ACTIONS(1769), - [anon_sym_continue] = ACTIONS(1769), - [anon_sym_goto] = ACTIONS(1769), - [anon_sym___try] = ACTIONS(1769), - [anon_sym___leave] = ACTIONS(1769), - [anon_sym_DASH_DASH] = ACTIONS(1767), - [anon_sym_PLUS_PLUS] = ACTIONS(1767), - [anon_sym_sizeof] = ACTIONS(1769), - [anon_sym___alignof__] = ACTIONS(1769), - [anon_sym___alignof] = ACTIONS(1769), - [anon_sym__alignof] = ACTIONS(1769), - [anon_sym_alignof] = ACTIONS(1769), - [anon_sym__Alignof] = ACTIONS(1769), - [anon_sym_offsetof] = ACTIONS(1769), - [anon_sym__Generic] = ACTIONS(1769), - [anon_sym_asm] = ACTIONS(1769), - [anon_sym___asm__] = ACTIONS(1769), - [sym_number_literal] = ACTIONS(1767), - [anon_sym_L_SQUOTE] = ACTIONS(1767), - [anon_sym_u_SQUOTE] = ACTIONS(1767), - [anon_sym_U_SQUOTE] = ACTIONS(1767), - [anon_sym_u8_SQUOTE] = ACTIONS(1767), - [anon_sym_SQUOTE] = ACTIONS(1767), - [anon_sym_L_DQUOTE] = ACTIONS(1767), - [anon_sym_u_DQUOTE] = ACTIONS(1767), - [anon_sym_U_DQUOTE] = ACTIONS(1767), - [anon_sym_u8_DQUOTE] = ACTIONS(1767), - [anon_sym_DQUOTE] = ACTIONS(1767), - [sym_true] = ACTIONS(1769), - [sym_false] = ACTIONS(1769), - [anon_sym_NULL] = ACTIONS(1769), - [anon_sym_nullptr] = ACTIONS(1769), - [sym_comment] = ACTIONS(3), - }, - [406] = { - [sym_string_literal] = STATE(456), - [aux_sym_sized_type_specifier_repeat1] = STATE(781), - [sym_identifier] = ACTIONS(1732), - [anon_sym_COMMA] = ACTIONS(1734), - [anon_sym_LPAREN2] = ACTIONS(1736), - [anon_sym_DASH] = ACTIONS(1740), - [anon_sym_PLUS] = ACTIONS(1740), - [anon_sym_STAR] = ACTIONS(1742), - [anon_sym_SLASH] = ACTIONS(1740), - [anon_sym_PERCENT] = ACTIONS(1740), - [anon_sym_PIPE_PIPE] = ACTIONS(1734), - [anon_sym_AMP_AMP] = ACTIONS(1734), - [anon_sym_PIPE] = ACTIONS(1740), - [anon_sym_CARET] = ACTIONS(1740), - [anon_sym_AMP] = ACTIONS(1740), - [anon_sym_EQ_EQ] = ACTIONS(1734), - [anon_sym_BANG_EQ] = ACTIONS(1734), - [anon_sym_GT] = ACTIONS(1740), - [anon_sym_GT_EQ] = ACTIONS(1734), - [anon_sym_LT_EQ] = ACTIONS(1734), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_LT_LT] = ACTIONS(1740), - [anon_sym_GT_GT] = ACTIONS(1740), - [anon_sym_SEMI] = ACTIONS(1734), - [anon_sym___extension__] = ACTIONS(1732), - [anon_sym_extern] = ACTIONS(1732), - [anon_sym___attribute__] = ACTIONS(1732), - [anon_sym___scanf] = ACTIONS(1732), - [anon_sym___printf] = ACTIONS(1732), - [anon_sym___read_mostly] = ACTIONS(1732), - [anon_sym___must_hold] = ACTIONS(1732), - [anon_sym___ro_after_init] = ACTIONS(1732), - [anon_sym___init] = ACTIONS(1732), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1745), - [anon_sym___declspec] = ACTIONS(1732), - [anon_sym___based] = ACTIONS(1732), - [anon_sym___cdecl] = ACTIONS(1732), - [anon_sym___clrcall] = ACTIONS(1732), - [anon_sym___stdcall] = ACTIONS(1732), - [anon_sym___fastcall] = ACTIONS(1732), - [anon_sym___thiscall] = ACTIONS(1732), - [anon_sym___vectorcall] = ACTIONS(1732), - [anon_sym_signed] = ACTIONS(1747), - [anon_sym_unsigned] = ACTIONS(1747), - [anon_sym_long] = ACTIONS(1747), - [anon_sym_short] = ACTIONS(1747), - [anon_sym_LBRACK] = ACTIONS(1740), - [anon_sym_static] = ACTIONS(1732), - [anon_sym_EQ] = ACTIONS(1749), - [anon_sym_auto] = ACTIONS(1732), - [anon_sym_register] = ACTIONS(1732), - [anon_sym_inline] = ACTIONS(1732), - [anon_sym___inline] = ACTIONS(1732), - [anon_sym___inline__] = ACTIONS(1732), - [anon_sym___forceinline] = ACTIONS(1732), - [anon_sym_thread_local] = ACTIONS(1732), - [anon_sym___thread] = ACTIONS(1732), - [anon_sym_const] = ACTIONS(1732), - [anon_sym_constexpr] = ACTIONS(1732), - [anon_sym_volatile] = ACTIONS(1732), - [anon_sym_restrict] = ACTIONS(1732), - [anon_sym___restrict__] = ACTIONS(1732), - [anon_sym__Atomic] = ACTIONS(1732), - [anon_sym__Noreturn] = ACTIONS(1732), - [anon_sym_noreturn] = ACTIONS(1732), - [anon_sym_alignas] = ACTIONS(1732), - [anon_sym__Alignas] = ACTIONS(1732), - [anon_sym_COLON] = ACTIONS(1776), - [anon_sym_QMARK] = ACTIONS(1734), - [anon_sym_STAR_EQ] = ACTIONS(1753), - [anon_sym_SLASH_EQ] = ACTIONS(1753), - [anon_sym_PERCENT_EQ] = ACTIONS(1753), - [anon_sym_PLUS_EQ] = ACTIONS(1753), - [anon_sym_DASH_EQ] = ACTIONS(1753), - [anon_sym_LT_LT_EQ] = ACTIONS(1753), - [anon_sym_GT_GT_EQ] = ACTIONS(1753), - [anon_sym_AMP_EQ] = ACTIONS(1753), - [anon_sym_CARET_EQ] = ACTIONS(1753), - [anon_sym_PIPE_EQ] = ACTIONS(1753), - [anon_sym_DASH_DASH] = ACTIONS(1734), - [anon_sym_PLUS_PLUS] = ACTIONS(1734), - [anon_sym_DOT] = ACTIONS(1734), - [anon_sym_DASH_GT] = ACTIONS(1734), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - }, - [407] = { - [sym_string_literal] = STATE(456), - [aux_sym_sized_type_specifier_repeat1] = STATE(781), - [sym_identifier] = ACTIONS(1732), - [anon_sym_COMMA] = ACTIONS(1734), - [anon_sym_LPAREN2] = ACTIONS(1736), - [anon_sym_DASH] = ACTIONS(1740), - [anon_sym_PLUS] = ACTIONS(1740), - [anon_sym_STAR] = ACTIONS(1742), - [anon_sym_SLASH] = ACTIONS(1740), - [anon_sym_PERCENT] = ACTIONS(1740), - [anon_sym_PIPE_PIPE] = ACTIONS(1734), - [anon_sym_AMP_AMP] = ACTIONS(1734), - [anon_sym_PIPE] = ACTIONS(1740), - [anon_sym_CARET] = ACTIONS(1740), - [anon_sym_AMP] = ACTIONS(1740), - [anon_sym_EQ_EQ] = ACTIONS(1734), - [anon_sym_BANG_EQ] = ACTIONS(1734), - [anon_sym_GT] = ACTIONS(1740), - [anon_sym_GT_EQ] = ACTIONS(1734), - [anon_sym_LT_EQ] = ACTIONS(1734), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_LT_LT] = ACTIONS(1740), - [anon_sym_GT_GT] = ACTIONS(1740), - [anon_sym_SEMI] = ACTIONS(1755), - [anon_sym___extension__] = ACTIONS(1732), - [anon_sym_extern] = ACTIONS(1732), - [anon_sym___attribute__] = ACTIONS(1732), - [anon_sym___scanf] = ACTIONS(1732), - [anon_sym___printf] = ACTIONS(1732), - [anon_sym___read_mostly] = ACTIONS(1732), - [anon_sym___must_hold] = ACTIONS(1732), - [anon_sym___ro_after_init] = ACTIONS(1732), - [anon_sym___init] = ACTIONS(1732), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1745), - [anon_sym___declspec] = ACTIONS(1732), - [anon_sym___based] = ACTIONS(1732), - [anon_sym___cdecl] = ACTIONS(1732), - [anon_sym___clrcall] = ACTIONS(1732), - [anon_sym___stdcall] = ACTIONS(1732), - [anon_sym___fastcall] = ACTIONS(1732), - [anon_sym___thiscall] = ACTIONS(1732), - [anon_sym___vectorcall] = ACTIONS(1732), - [anon_sym_signed] = ACTIONS(1747), - [anon_sym_unsigned] = ACTIONS(1747), - [anon_sym_long] = ACTIONS(1747), - [anon_sym_short] = ACTIONS(1747), - [anon_sym_LBRACK] = ACTIONS(1740), - [anon_sym_static] = ACTIONS(1732), - [anon_sym_EQ] = ACTIONS(1749), - [anon_sym_auto] = ACTIONS(1732), - [anon_sym_register] = ACTIONS(1732), - [anon_sym_inline] = ACTIONS(1732), - [anon_sym___inline] = ACTIONS(1732), - [anon_sym___inline__] = ACTIONS(1732), - [anon_sym___forceinline] = ACTIONS(1732), - [anon_sym_thread_local] = ACTIONS(1732), - [anon_sym___thread] = ACTIONS(1732), - [anon_sym_const] = ACTIONS(1732), - [anon_sym_constexpr] = ACTIONS(1732), - [anon_sym_volatile] = ACTIONS(1732), - [anon_sym_restrict] = ACTIONS(1732), - [anon_sym___restrict__] = ACTIONS(1732), - [anon_sym__Atomic] = ACTIONS(1732), - [anon_sym__Noreturn] = ACTIONS(1732), - [anon_sym_noreturn] = ACTIONS(1732), - [anon_sym_alignas] = ACTIONS(1732), - [anon_sym__Alignas] = ACTIONS(1732), - [anon_sym_COLON] = ACTIONS(1760), - [anon_sym_QMARK] = ACTIONS(1734), - [anon_sym_STAR_EQ] = ACTIONS(1753), - [anon_sym_SLASH_EQ] = ACTIONS(1753), - [anon_sym_PERCENT_EQ] = ACTIONS(1753), - [anon_sym_PLUS_EQ] = ACTIONS(1753), - [anon_sym_DASH_EQ] = ACTIONS(1753), - [anon_sym_LT_LT_EQ] = ACTIONS(1753), - [anon_sym_GT_GT_EQ] = ACTIONS(1753), - [anon_sym_AMP_EQ] = ACTIONS(1753), - [anon_sym_CARET_EQ] = ACTIONS(1753), - [anon_sym_PIPE_EQ] = ACTIONS(1753), - [anon_sym_DASH_DASH] = ACTIONS(1734), - [anon_sym_PLUS_PLUS] = ACTIONS(1734), - [anon_sym_DOT] = ACTIONS(1734), - [anon_sym_DASH_GT] = ACTIONS(1734), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - }, - [408] = { - [sym_string_literal] = STATE(456), - [aux_sym_sized_type_specifier_repeat1] = STATE(781), - [sym_identifier] = ACTIONS(1732), - [anon_sym_COMMA] = ACTIONS(1734), - [anon_sym_LPAREN2] = ACTIONS(1736), - [anon_sym_DASH] = ACTIONS(1740), - [anon_sym_PLUS] = ACTIONS(1740), - [anon_sym_STAR] = ACTIONS(1742), - [anon_sym_SLASH] = ACTIONS(1740), - [anon_sym_PERCENT] = ACTIONS(1740), - [anon_sym_PIPE_PIPE] = ACTIONS(1734), - [anon_sym_AMP_AMP] = ACTIONS(1734), - [anon_sym_PIPE] = ACTIONS(1740), - [anon_sym_CARET] = ACTIONS(1740), - [anon_sym_AMP] = ACTIONS(1740), - [anon_sym_EQ_EQ] = ACTIONS(1734), - [anon_sym_BANG_EQ] = ACTIONS(1734), - [anon_sym_GT] = ACTIONS(1740), - [anon_sym_GT_EQ] = ACTIONS(1734), - [anon_sym_LT_EQ] = ACTIONS(1734), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_LT_LT] = ACTIONS(1740), - [anon_sym_GT_GT] = ACTIONS(1740), - [anon_sym_SEMI] = ACTIONS(1755), - [anon_sym___extension__] = ACTIONS(1732), - [anon_sym_extern] = ACTIONS(1732), - [anon_sym___attribute__] = ACTIONS(1732), - [anon_sym___scanf] = ACTIONS(1732), - [anon_sym___printf] = ACTIONS(1732), - [anon_sym___read_mostly] = ACTIONS(1732), - [anon_sym___must_hold] = ACTIONS(1732), - [anon_sym___ro_after_init] = ACTIONS(1732), - [anon_sym___init] = ACTIONS(1732), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1745), - [anon_sym___declspec] = ACTIONS(1732), - [anon_sym___based] = ACTIONS(1732), - [anon_sym___cdecl] = ACTIONS(1732), - [anon_sym___clrcall] = ACTIONS(1732), - [anon_sym___stdcall] = ACTIONS(1732), - [anon_sym___fastcall] = ACTIONS(1732), - [anon_sym___thiscall] = ACTIONS(1732), - [anon_sym___vectorcall] = ACTIONS(1732), - [anon_sym_signed] = ACTIONS(1747), - [anon_sym_unsigned] = ACTIONS(1747), - [anon_sym_long] = ACTIONS(1747), - [anon_sym_short] = ACTIONS(1747), - [anon_sym_LBRACK] = ACTIONS(1740), - [anon_sym_static] = ACTIONS(1732), - [anon_sym_EQ] = ACTIONS(1749), - [anon_sym_auto] = ACTIONS(1732), - [anon_sym_register] = ACTIONS(1732), - [anon_sym_inline] = ACTIONS(1732), - [anon_sym___inline] = ACTIONS(1732), - [anon_sym___inline__] = ACTIONS(1732), - [anon_sym___forceinline] = ACTIONS(1732), - [anon_sym_thread_local] = ACTIONS(1732), - [anon_sym___thread] = ACTIONS(1732), - [anon_sym_const] = ACTIONS(1732), - [anon_sym_constexpr] = ACTIONS(1732), - [anon_sym_volatile] = ACTIONS(1732), - [anon_sym_restrict] = ACTIONS(1732), - [anon_sym___restrict__] = ACTIONS(1732), - [anon_sym__Atomic] = ACTIONS(1732), - [anon_sym__Noreturn] = ACTIONS(1732), - [anon_sym_noreturn] = ACTIONS(1732), - [anon_sym_alignas] = ACTIONS(1732), - [anon_sym__Alignas] = ACTIONS(1732), - [anon_sym_COLON] = ACTIONS(1776), - [anon_sym_QMARK] = ACTIONS(1734), - [anon_sym_STAR_EQ] = ACTIONS(1753), - [anon_sym_SLASH_EQ] = ACTIONS(1753), - [anon_sym_PERCENT_EQ] = ACTIONS(1753), - [anon_sym_PLUS_EQ] = ACTIONS(1753), - [anon_sym_DASH_EQ] = ACTIONS(1753), - [anon_sym_LT_LT_EQ] = ACTIONS(1753), - [anon_sym_GT_GT_EQ] = ACTIONS(1753), - [anon_sym_AMP_EQ] = ACTIONS(1753), - [anon_sym_CARET_EQ] = ACTIONS(1753), - [anon_sym_PIPE_EQ] = ACTIONS(1753), - [anon_sym_DASH_DASH] = ACTIONS(1734), - [anon_sym_PLUS_PLUS] = ACTIONS(1734), - [anon_sym_DOT] = ACTIONS(1734), - [anon_sym_DASH_GT] = ACTIONS(1734), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - }, - [409] = { - [sym_string_literal] = STATE(456), - [aux_sym_sized_type_specifier_repeat1] = STATE(781), - [sym_identifier] = ACTIONS(1732), - [anon_sym_COMMA] = ACTIONS(1734), - [anon_sym_LPAREN2] = ACTIONS(1736), - [anon_sym_DASH] = ACTIONS(1740), - [anon_sym_PLUS] = ACTIONS(1740), - [anon_sym_STAR] = ACTIONS(1742), - [anon_sym_SLASH] = ACTIONS(1740), - [anon_sym_PERCENT] = ACTIONS(1740), - [anon_sym_PIPE_PIPE] = ACTIONS(1734), - [anon_sym_AMP_AMP] = ACTIONS(1734), - [anon_sym_PIPE] = ACTIONS(1740), - [anon_sym_CARET] = ACTIONS(1740), - [anon_sym_AMP] = ACTIONS(1740), - [anon_sym_EQ_EQ] = ACTIONS(1734), - [anon_sym_BANG_EQ] = ACTIONS(1734), - [anon_sym_GT] = ACTIONS(1740), - [anon_sym_GT_EQ] = ACTIONS(1734), - [anon_sym_LT_EQ] = ACTIONS(1734), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_LT_LT] = ACTIONS(1740), - [anon_sym_GT_GT] = ACTIONS(1740), - [anon_sym_SEMI] = ACTIONS(1734), - [anon_sym___extension__] = ACTIONS(1732), - [anon_sym_extern] = ACTIONS(1732), - [anon_sym___attribute__] = ACTIONS(1732), - [anon_sym___scanf] = ACTIONS(1732), - [anon_sym___printf] = ACTIONS(1732), - [anon_sym___read_mostly] = ACTIONS(1732), - [anon_sym___must_hold] = ACTIONS(1732), - [anon_sym___ro_after_init] = ACTIONS(1732), - [anon_sym___init] = ACTIONS(1732), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1745), - [anon_sym___declspec] = ACTIONS(1732), - [anon_sym___based] = ACTIONS(1732), - [anon_sym___cdecl] = ACTIONS(1732), - [anon_sym___clrcall] = ACTIONS(1732), - [anon_sym___stdcall] = ACTIONS(1732), - [anon_sym___fastcall] = ACTIONS(1732), - [anon_sym___thiscall] = ACTIONS(1732), - [anon_sym___vectorcall] = ACTIONS(1732), - [anon_sym_signed] = ACTIONS(1747), - [anon_sym_unsigned] = ACTIONS(1747), - [anon_sym_long] = ACTIONS(1747), - [anon_sym_short] = ACTIONS(1747), - [anon_sym_LBRACK] = ACTIONS(1740), - [anon_sym_static] = ACTIONS(1732), - [anon_sym_EQ] = ACTIONS(1749), - [anon_sym_auto] = ACTIONS(1732), - [anon_sym_register] = ACTIONS(1732), - [anon_sym_inline] = ACTIONS(1732), - [anon_sym___inline] = ACTIONS(1732), - [anon_sym___inline__] = ACTIONS(1732), - [anon_sym___forceinline] = ACTIONS(1732), - [anon_sym_thread_local] = ACTIONS(1732), - [anon_sym___thread] = ACTIONS(1732), - [anon_sym_const] = ACTIONS(1732), - [anon_sym_constexpr] = ACTIONS(1732), - [anon_sym_volatile] = ACTIONS(1732), - [anon_sym_restrict] = ACTIONS(1732), - [anon_sym___restrict__] = ACTIONS(1732), - [anon_sym__Atomic] = ACTIONS(1732), - [anon_sym__Noreturn] = ACTIONS(1732), - [anon_sym_noreturn] = ACTIONS(1732), - [anon_sym_alignas] = ACTIONS(1732), - [anon_sym__Alignas] = ACTIONS(1732), - [anon_sym_QMARK] = ACTIONS(1734), - [anon_sym_STAR_EQ] = ACTIONS(1753), - [anon_sym_SLASH_EQ] = ACTIONS(1753), - [anon_sym_PERCENT_EQ] = ACTIONS(1753), - [anon_sym_PLUS_EQ] = ACTIONS(1753), - [anon_sym_DASH_EQ] = ACTIONS(1753), - [anon_sym_LT_LT_EQ] = ACTIONS(1753), - [anon_sym_GT_GT_EQ] = ACTIONS(1753), - [anon_sym_AMP_EQ] = ACTIONS(1753), - [anon_sym_CARET_EQ] = ACTIONS(1753), - [anon_sym_PIPE_EQ] = ACTIONS(1753), - [anon_sym_DASH_DASH] = ACTIONS(1734), - [anon_sym_PLUS_PLUS] = ACTIONS(1734), - [anon_sym_DOT] = ACTIONS(1734), - [anon_sym_DASH_GT] = ACTIONS(1734), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - }, - [410] = { - [sym_string_literal] = STATE(456), - [aux_sym_sized_type_specifier_repeat1] = STATE(781), - [sym_identifier] = ACTIONS(1732), - [anon_sym_LPAREN2] = ACTIONS(1736), - [anon_sym_DASH] = ACTIONS(1740), - [anon_sym_PLUS] = ACTIONS(1740), - [anon_sym_STAR] = ACTIONS(1742), - [anon_sym_SLASH] = ACTIONS(1740), - [anon_sym_PERCENT] = ACTIONS(1740), - [anon_sym_PIPE_PIPE] = ACTIONS(1734), - [anon_sym_AMP_AMP] = ACTIONS(1734), - [anon_sym_PIPE] = ACTIONS(1740), - [anon_sym_CARET] = ACTIONS(1740), - [anon_sym_AMP] = ACTIONS(1740), - [anon_sym_EQ_EQ] = ACTIONS(1734), - [anon_sym_BANG_EQ] = ACTIONS(1734), - [anon_sym_GT] = ACTIONS(1740), - [anon_sym_GT_EQ] = ACTIONS(1734), - [anon_sym_LT_EQ] = ACTIONS(1734), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_LT_LT] = ACTIONS(1740), - [anon_sym_GT_GT] = ACTIONS(1740), - [anon_sym_SEMI] = ACTIONS(1778), - [anon_sym___extension__] = ACTIONS(1732), - [anon_sym_extern] = ACTIONS(1732), - [anon_sym___attribute__] = ACTIONS(1732), - [anon_sym___scanf] = ACTIONS(1732), - [anon_sym___printf] = ACTIONS(1732), - [anon_sym___read_mostly] = ACTIONS(1732), - [anon_sym___must_hold] = ACTIONS(1732), - [anon_sym___ro_after_init] = ACTIONS(1732), - [anon_sym___init] = ACTIONS(1732), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1745), - [anon_sym___declspec] = ACTIONS(1732), - [anon_sym___based] = ACTIONS(1732), - [anon_sym___cdecl] = ACTIONS(1732), - [anon_sym___clrcall] = ACTIONS(1732), - [anon_sym___stdcall] = ACTIONS(1732), - [anon_sym___fastcall] = ACTIONS(1732), - [anon_sym___thiscall] = ACTIONS(1732), - [anon_sym___vectorcall] = ACTIONS(1732), - [anon_sym_signed] = ACTIONS(1747), - [anon_sym_unsigned] = ACTIONS(1747), - [anon_sym_long] = ACTIONS(1747), - [anon_sym_short] = ACTIONS(1747), - [anon_sym_LBRACK] = ACTIONS(1740), - [anon_sym_static] = ACTIONS(1732), - [anon_sym_EQ] = ACTIONS(1749), - [anon_sym_auto] = ACTIONS(1732), - [anon_sym_register] = ACTIONS(1732), - [anon_sym_inline] = ACTIONS(1732), - [anon_sym___inline] = ACTIONS(1732), - [anon_sym___inline__] = ACTIONS(1732), - [anon_sym___forceinline] = ACTIONS(1732), - [anon_sym_thread_local] = ACTIONS(1732), - [anon_sym___thread] = ACTIONS(1732), - [anon_sym_const] = ACTIONS(1732), - [anon_sym_constexpr] = ACTIONS(1732), - [anon_sym_volatile] = ACTIONS(1732), - [anon_sym_restrict] = ACTIONS(1732), - [anon_sym___restrict__] = ACTIONS(1732), - [anon_sym__Atomic] = ACTIONS(1732), - [anon_sym__Noreturn] = ACTIONS(1732), - [anon_sym_noreturn] = ACTIONS(1732), - [anon_sym_alignas] = ACTIONS(1732), - [anon_sym__Alignas] = ACTIONS(1732), - [anon_sym_COLON] = ACTIONS(1762), - [anon_sym_QMARK] = ACTIONS(1734), - [anon_sym_STAR_EQ] = ACTIONS(1753), - [anon_sym_SLASH_EQ] = ACTIONS(1753), - [anon_sym_PERCENT_EQ] = ACTIONS(1753), - [anon_sym_PLUS_EQ] = ACTIONS(1753), - [anon_sym_DASH_EQ] = ACTIONS(1753), - [anon_sym_LT_LT_EQ] = ACTIONS(1753), - [anon_sym_GT_GT_EQ] = ACTIONS(1753), - [anon_sym_AMP_EQ] = ACTIONS(1753), - [anon_sym_CARET_EQ] = ACTIONS(1753), - [anon_sym_PIPE_EQ] = ACTIONS(1753), - [anon_sym_DASH_DASH] = ACTIONS(1734), - [anon_sym_PLUS_PLUS] = ACTIONS(1734), - [anon_sym_DOT] = ACTIONS(1734), - [anon_sym_DASH_GT] = ACTIONS(1734), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - }, - [411] = { - [sym_expression] = STATE(683), - [sym__string] = STATE(663), - [sym_conditional_expression] = STATE(663), - [sym_assignment_expression] = STATE(663), - [sym_pointer_expression] = STATE(890), - [sym_unary_expression] = STATE(663), - [sym_binary_expression] = STATE(663), - [sym_update_expression] = STATE(663), - [sym_cast_expression] = STATE(663), - [sym_sizeof_expression] = STATE(663), - [sym_alignof_expression] = STATE(663), - [sym_offsetof_expression] = STATE(663), - [sym_generic_expression] = STATE(663), - [sym_subscript_expression] = STATE(890), - [sym_call_expression] = STATE(890), - [sym_gnu_asm_expression] = STATE(663), - [sym_field_expression] = STATE(890), - [sym_compound_literal_expression] = STATE(663), - [sym_parenthesized_expression] = STATE(890), - [sym_initializer_list] = STATE(661), - [sym_char_literal] = STATE(663), - [sym_concatenated_string] = STATE(663), - [sym_string_literal] = STATE(799), - [sym_null] = STATE(663), - [sym_identifier] = ACTIONS(1405), - [anon_sym_COMMA] = ACTIONS(1399), - [aux_sym_preproc_if_token2] = ACTIONS(1399), - [aux_sym_preproc_else_token1] = ACTIONS(1399), - [aux_sym_preproc_elif_token1] = ACTIONS(1405), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1399), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1399), - [anon_sym_LPAREN2] = ACTIONS(1399), - [anon_sym_BANG] = ACTIONS(1781), - [anon_sym_TILDE] = ACTIONS(1783), - [anon_sym_DASH] = ACTIONS(1405), - [anon_sym_PLUS] = ACTIONS(1405), - [anon_sym_STAR] = ACTIONS(1399), - [anon_sym_SLASH] = ACTIONS(1405), - [anon_sym_PERCENT] = ACTIONS(1399), - [anon_sym_PIPE_PIPE] = ACTIONS(1399), - [anon_sym_AMP_AMP] = ACTIONS(1399), - [anon_sym_PIPE] = ACTIONS(1405), - [anon_sym_CARET] = ACTIONS(1399), - [anon_sym_AMP] = ACTIONS(1405), - [anon_sym_EQ_EQ] = ACTIONS(1399), - [anon_sym_BANG_EQ] = ACTIONS(1399), - [anon_sym_GT] = ACTIONS(1405), - [anon_sym_GT_EQ] = ACTIONS(1399), - [anon_sym_LT_EQ] = ACTIONS(1399), - [anon_sym_LT] = ACTIONS(1405), - [anon_sym_LT_LT] = ACTIONS(1399), - [anon_sym_GT_GT] = ACTIONS(1399), - [anon_sym_LBRACE] = ACTIONS(1407), - [anon_sym_LBRACK] = ACTIONS(1399), - [anon_sym_QMARK] = ACTIONS(1399), - [anon_sym_DASH_DASH] = ACTIONS(1399), - [anon_sym_PLUS_PLUS] = ACTIONS(1399), - [anon_sym_sizeof] = ACTIONS(1785), - [anon_sym___alignof__] = ACTIONS(89), - [anon_sym___alignof] = ACTIONS(89), - [anon_sym__alignof] = ACTIONS(89), - [anon_sym_alignof] = ACTIONS(89), - [anon_sym__Alignof] = ACTIONS(89), - [anon_sym_offsetof] = ACTIONS(91), - [anon_sym__Generic] = ACTIONS(93), - [anon_sym_asm] = ACTIONS(95), - [anon_sym___asm__] = ACTIONS(95), - [anon_sym_DOT] = ACTIONS(1405), - [anon_sym_DASH_GT] = ACTIONS(1399), - [sym_number_literal] = ACTIONS(163), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(165), - [sym_false] = ACTIONS(165), - [anon_sym_NULL] = ACTIONS(105), - [anon_sym_nullptr] = ACTIONS(105), + [anon_sym___extension__] = ACTIONS(53), + [anon_sym_signed] = ACTIONS(1797), + [anon_sym_unsigned] = ACTIONS(1797), + [anon_sym_long] = ACTIONS(1797), + [anon_sym_short] = ACTIONS(1797), + [anon_sym_const] = ACTIONS(53), + [anon_sym_constexpr] = ACTIONS(53), + [anon_sym_volatile] = ACTIONS(53), + [anon_sym_restrict] = ACTIONS(53), + [anon_sym___restrict__] = ACTIONS(53), + [anon_sym__Atomic] = ACTIONS(53), + [anon_sym__Noreturn] = ACTIONS(53), + [anon_sym_noreturn] = ACTIONS(53), + [anon_sym_alignas] = ACTIONS(55), + [anon_sym__Alignas] = ACTIONS(55), + [sym_primitive_type] = ACTIONS(57), + [anon_sym_enum] = ACTIONS(1799), + [anon_sym_struct] = ACTIONS(61), + [anon_sym_union] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(87), + [anon_sym_sizeof] = ACTIONS(89), + [anon_sym___alignof__] = ACTIONS(91), + [anon_sym___alignof] = ACTIONS(91), + [anon_sym__alignof] = ACTIONS(91), + [anon_sym_alignof] = ACTIONS(91), + [anon_sym__Alignof] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(93), + [anon_sym__Generic] = ACTIONS(95), + [anon_sym_asm] = ACTIONS(97), + [anon_sym___asm__] = ACTIONS(97), + [sym_number_literal] = ACTIONS(165), + [anon_sym_L_SQUOTE] = ACTIONS(101), + [anon_sym_u_SQUOTE] = ACTIONS(101), + [anon_sym_U_SQUOTE] = ACTIONS(101), + [anon_sym_u8_SQUOTE] = ACTIONS(101), + [anon_sym_SQUOTE] = ACTIONS(101), + [anon_sym_L_DQUOTE] = ACTIONS(103), + [anon_sym_u_DQUOTE] = ACTIONS(103), + [anon_sym_U_DQUOTE] = ACTIONS(103), + [anon_sym_u8_DQUOTE] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_true] = ACTIONS(167), + [sym_false] = ACTIONS(167), + [anon_sym_NULL] = ACTIONS(107), + [anon_sym_nullptr] = ACTIONS(107), [sym_comment] = ACTIONS(3), }, - [412] = { - [sym__declaration_modifiers] = STATE(697), - [sym__declaration_specifiers] = STATE(1211), - [sym_attribute_specifier] = STATE(697), - [sym_attribute_declaration] = STATE(697), - [sym_ms_declspec_modifier] = STATE(697), - [sym_ms_based_modifier] = STATE(2016), - [sym_ms_call_modifier] = STATE(1264), - [sym__declarator] = STATE(1438), - [sym__abstract_declarator] = STATE(1515), - [sym_parenthesized_declarator] = STATE(1387), - [sym_abstract_parenthesized_declarator] = STATE(1504), - [sym_attributed_declarator] = STATE(1387), - [sym_pointer_declarator] = STATE(1387), - [sym_abstract_pointer_declarator] = STATE(1504), - [sym_function_declarator] = STATE(1387), - [sym_abstract_function_declarator] = STATE(1504), - [sym_array_declarator] = STATE(1387), - [sym_abstract_array_declarator] = STATE(1504), - [sym_storage_class_specifier] = STATE(697), - [sym_type_qualifier] = STATE(697), - [sym_alignas_qualifier] = STATE(703), - [sym_type_specifier] = STATE(710), - [sym_sized_type_specifier] = STATE(746), - [sym_enum_specifier] = STATE(746), - [sym_struct_specifier] = STATE(746), - [sym_union_specifier] = STATE(746), - [sym_variadic_parameter] = STATE(1666), - [sym_parameter_list] = STATE(1509), - [sym_parameter_declaration] = STATE(1666), - [sym_macro_type_specifier] = STATE(746), - [aux_sym__declaration_specifiers_repeat1] = STATE(697), - [aux_sym_sized_type_specifier_repeat1] = STATE(747), - [sym_identifier] = ACTIONS(1787), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1789), - [anon_sym_RPAREN] = ACTIONS(1791), - [anon_sym_LPAREN2] = ACTIONS(1793), - [anon_sym_STAR] = ACTIONS(1795), - [anon_sym___extension__] = ACTIONS(51), - [anon_sym_extern] = ACTIONS(49), + [474] = { + [sym_preproc_def] = STATE(492), + [sym_preproc_function_def] = STATE(492), + [sym_preproc_call] = STATE(492), + [sym_preproc_if_in_field_declaration_list] = STATE(492), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(492), + [sym_preproc_else_in_field_declaration_list] = STATE(2108), + [sym_preproc_elif_in_field_declaration_list] = STATE(2108), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(2108), + [sym__declaration_modifiers] = STATE(805), + [sym__declaration_specifiers] = STATE(1264), + [sym_attribute_specifier] = STATE(805), + [sym_attribute_declaration] = STATE(805), + [sym_ms_declspec_modifier] = STATE(805), + [sym_ms_based_modifier] = STATE(2174), + [sym__declarator] = STATE(1666), + [sym_parenthesized_declarator] = STATE(1569), + [sym_attributed_declarator] = STATE(1569), + [sym_pointer_declarator] = STATE(1569), + [sym_function_declarator] = STATE(1569), + [sym_array_declarator] = STATE(1569), + [sym_storage_class_specifier] = STATE(805), + [sym_type_qualifier] = STATE(805), + [sym_alignas_qualifier] = STATE(799), + [sym_type_specifier] = STATE(807), + [sym_sized_type_specifier] = STATE(873), + [sym_enum_specifier] = STATE(873), + [sym_struct_specifier] = STATE(873), + [sym_union_specifier] = STATE(873), + [sym__field_declaration_list_item] = STATE(492), + [sym_macro_invocation] = STATE(492), + [sym_field_declaration] = STATE(492), + [sym_macro_type_specifier] = STATE(873), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(492), + [aux_sym__declaration_specifiers_repeat1] = STATE(805), + [aux_sym_sized_type_specifier_repeat1] = STATE(890), + [sym_identifier] = ACTIONS(1813), + [aux_sym_preproc_def_token1] = ACTIONS(1815), + [aux_sym_preproc_if_token1] = ACTIONS(1817), + [aux_sym_preproc_if_token2] = ACTIONS(1819), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1821), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1821), + [aux_sym_preproc_else_token1] = ACTIONS(1823), + [aux_sym_preproc_elif_token1] = ACTIONS(1825), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1827), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1827), + [sym_preproc_directive] = ACTIONS(1829), + [anon_sym_LPAREN2] = ACTIONS(1831), + [anon_sym_STAR] = ACTIONS(1833), + [anon_sym___extension__] = ACTIONS(53), + [anon_sym_extern] = ACTIONS(51), [anon_sym___attribute__] = ACTIONS(33), [anon_sym___scanf] = ACTIONS(35), [anon_sym___printf] = ACTIONS(35), [anon_sym___read_mostly] = ACTIONS(37), [anon_sym___must_hold] = ACTIONS(33), [anon_sym___ro_after_init] = ACTIONS(37), - [anon_sym___init] = ACTIONS(37), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1137), + [anon_sym___noreturn] = ACTIONS(37), + [anon_sym___cold] = ACTIONS(37), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1145), [anon_sym___declspec] = ACTIONS(41), - [anon_sym___based] = ACTIONS(1797), - [anon_sym___cdecl] = ACTIONS(43), - [anon_sym___clrcall] = ACTIONS(43), - [anon_sym___stdcall] = ACTIONS(43), - [anon_sym___fastcall] = ACTIONS(43), - [anon_sym___thiscall] = ACTIONS(43), - [anon_sym___vectorcall] = ACTIONS(43), - [anon_sym_signed] = ACTIONS(47), - [anon_sym_unsigned] = ACTIONS(47), - [anon_sym_long] = ACTIONS(47), - [anon_sym_short] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1799), - [anon_sym_static] = ACTIONS(49), - [anon_sym_auto] = ACTIONS(49), - [anon_sym_register] = ACTIONS(49), - [anon_sym_inline] = ACTIONS(49), - [anon_sym___inline] = ACTIONS(49), - [anon_sym___inline__] = ACTIONS(49), - [anon_sym___forceinline] = ACTIONS(49), - [anon_sym_thread_local] = ACTIONS(49), - [anon_sym___thread] = ACTIONS(49), - [anon_sym_const] = ACTIONS(51), - [anon_sym_constexpr] = ACTIONS(51), - [anon_sym_volatile] = ACTIONS(51), - [anon_sym_restrict] = ACTIONS(51), - [anon_sym___restrict__] = ACTIONS(51), - [anon_sym__Atomic] = ACTIONS(51), - [anon_sym__Noreturn] = ACTIONS(51), - [anon_sym_noreturn] = ACTIONS(51), - [anon_sym_alignas] = ACTIONS(53), - [anon_sym__Alignas] = ACTIONS(53), - [sym_primitive_type] = ACTIONS(55), - [anon_sym_enum] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - }, - [413] = { - [sym_expression] = STATE(917), - [sym__string] = STATE(663), - [sym_conditional_expression] = STATE(663), - [sym_assignment_expression] = STATE(663), - [sym_pointer_expression] = STATE(943), - [sym_unary_expression] = STATE(663), - [sym_binary_expression] = STATE(663), - [sym_update_expression] = STATE(663), - [sym_cast_expression] = STATE(663), - [sym_sizeof_expression] = STATE(663), - [sym_alignof_expression] = STATE(663), - [sym_offsetof_expression] = STATE(663), - [sym_generic_expression] = STATE(663), - [sym_subscript_expression] = STATE(943), - [sym_call_expression] = STATE(943), - [sym_gnu_asm_expression] = STATE(663), - [sym_field_expression] = STATE(943), - [sym_compound_literal_expression] = STATE(663), - [sym_parenthesized_expression] = STATE(943), - [sym_initializer_list] = STATE(661), - [sym_char_literal] = STATE(663), - [sym_concatenated_string] = STATE(663), - [sym_string_literal] = STATE(659), - [sym_null] = STATE(663), - [sym_identifier] = ACTIONS(1801), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1399), - [anon_sym_LPAREN2] = ACTIONS(1399), - [anon_sym_BANG] = ACTIONS(1803), - [anon_sym_TILDE] = ACTIONS(1805), - [anon_sym_DASH] = ACTIONS(1405), - [anon_sym_PLUS] = ACTIONS(1405), - [anon_sym_STAR] = ACTIONS(1399), - [anon_sym_SLASH] = ACTIONS(1405), - [anon_sym_PERCENT] = ACTIONS(1399), - [anon_sym_PIPE_PIPE] = ACTIONS(1399), - [anon_sym_AMP_AMP] = ACTIONS(1399), - [anon_sym_PIPE] = ACTIONS(1405), - [anon_sym_CARET] = ACTIONS(1399), - [anon_sym_AMP] = ACTIONS(1405), - [anon_sym_EQ_EQ] = ACTIONS(1399), - [anon_sym_BANG_EQ] = ACTIONS(1399), - [anon_sym_GT] = ACTIONS(1405), - [anon_sym_GT_EQ] = ACTIONS(1399), - [anon_sym_LT_EQ] = ACTIONS(1399), - [anon_sym_LT] = ACTIONS(1405), - [anon_sym_LT_LT] = ACTIONS(1399), - [anon_sym_GT_GT] = ACTIONS(1399), - [anon_sym_LBRACE] = ACTIONS(1407), - [anon_sym_LBRACK] = ACTIONS(1399), - [anon_sym_RBRACK] = ACTIONS(1399), - [anon_sym_QMARK] = ACTIONS(1399), - [anon_sym_DASH_DASH] = ACTIONS(1399), - [anon_sym_PLUS_PLUS] = ACTIONS(1399), - [anon_sym_sizeof] = ACTIONS(1807), - [anon_sym___alignof__] = ACTIONS(89), - [anon_sym___alignof] = ACTIONS(89), - [anon_sym__alignof] = ACTIONS(89), - [anon_sym_alignof] = ACTIONS(89), - [anon_sym__Alignof] = ACTIONS(89), - [anon_sym_offsetof] = ACTIONS(91), - [anon_sym__Generic] = ACTIONS(93), - [anon_sym_asm] = ACTIONS(95), - [anon_sym___asm__] = ACTIONS(95), - [anon_sym_DOT] = ACTIONS(1405), - [anon_sym_DASH_GT] = ACTIONS(1399), - [sym_number_literal] = ACTIONS(163), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(165), - [sym_false] = ACTIONS(165), - [anon_sym_NULL] = ACTIONS(105), - [anon_sym_nullptr] = ACTIONS(105), + [anon_sym___based] = ACTIONS(1835), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_const] = ACTIONS(53), + [anon_sym_constexpr] = ACTIONS(53), + [anon_sym_volatile] = ACTIONS(53), + [anon_sym_restrict] = ACTIONS(53), + [anon_sym___restrict__] = ACTIONS(53), + [anon_sym__Atomic] = ACTIONS(53), + [anon_sym__Noreturn] = ACTIONS(53), + [anon_sym_noreturn] = ACTIONS(53), + [anon_sym_alignas] = ACTIONS(55), + [anon_sym__Alignas] = ACTIONS(55), + [sym_primitive_type] = ACTIONS(57), + [anon_sym_enum] = ACTIONS(59), + [anon_sym_struct] = ACTIONS(61), + [anon_sym_union] = ACTIONS(63), [sym_comment] = ACTIONS(3), }, - [414] = { - [sym_preproc_def] = STATE(441), - [sym_preproc_function_def] = STATE(441), - [sym_preproc_call] = STATE(441), - [sym_preproc_if_in_field_declaration_list] = STATE(441), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(441), - [sym_preproc_else_in_field_declaration_list] = STATE(1872), - [sym_preproc_elif_in_field_declaration_list] = STATE(1872), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(1872), - [sym__declaration_modifiers] = STATE(697), - [sym__declaration_specifiers] = STATE(1141), - [sym_attribute_specifier] = STATE(697), - [sym_attribute_declaration] = STATE(697), - [sym_ms_declspec_modifier] = STATE(697), - [sym_storage_class_specifier] = STATE(697), - [sym_type_qualifier] = STATE(697), - [sym_alignas_qualifier] = STATE(703), - [sym_type_specifier] = STATE(710), - [sym_sized_type_specifier] = STATE(746), - [sym_enum_specifier] = STATE(746), - [sym_struct_specifier] = STATE(746), - [sym_union_specifier] = STATE(746), - [sym__field_declaration_list_item] = STATE(441), - [sym_field_declaration] = STATE(441), - [sym_macro_type_specifier] = STATE(746), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(441), - [aux_sym__declaration_specifiers_repeat1] = STATE(697), - [aux_sym_sized_type_specifier_repeat1] = STATE(747), - [sym_identifier] = ACTIONS(1809), - [aux_sym_preproc_def_token1] = ACTIONS(1811), - [aux_sym_preproc_if_token1] = ACTIONS(1813), - [aux_sym_preproc_if_token2] = ACTIONS(1815), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1817), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1817), - [aux_sym_preproc_else_token1] = ACTIONS(1819), - [aux_sym_preproc_elif_token1] = ACTIONS(1821), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1823), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1823), - [sym_preproc_directive] = ACTIONS(1825), - [anon_sym___extension__] = ACTIONS(51), - [anon_sym_extern] = ACTIONS(49), + [475] = { + [sym_preproc_def] = STATE(477), + [sym_preproc_function_def] = STATE(477), + [sym_preproc_call] = STATE(477), + [sym_preproc_if_in_field_declaration_list] = STATE(477), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(477), + [sym_preproc_else_in_field_declaration_list] = STATE(2123), + [sym_preproc_elif_in_field_declaration_list] = STATE(2123), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(2123), + [sym__declaration_modifiers] = STATE(805), + [sym__declaration_specifiers] = STATE(1264), + [sym_attribute_specifier] = STATE(805), + [sym_attribute_declaration] = STATE(805), + [sym_ms_declspec_modifier] = STATE(805), + [sym_ms_based_modifier] = STATE(2174), + [sym__declarator] = STATE(1666), + [sym_parenthesized_declarator] = STATE(1569), + [sym_attributed_declarator] = STATE(1569), + [sym_pointer_declarator] = STATE(1569), + [sym_function_declarator] = STATE(1569), + [sym_array_declarator] = STATE(1569), + [sym_storage_class_specifier] = STATE(805), + [sym_type_qualifier] = STATE(805), + [sym_alignas_qualifier] = STATE(799), + [sym_type_specifier] = STATE(807), + [sym_sized_type_specifier] = STATE(873), + [sym_enum_specifier] = STATE(873), + [sym_struct_specifier] = STATE(873), + [sym_union_specifier] = STATE(873), + [sym__field_declaration_list_item] = STATE(477), + [sym_macro_invocation] = STATE(477), + [sym_field_declaration] = STATE(477), + [sym_macro_type_specifier] = STATE(873), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(477), + [aux_sym__declaration_specifiers_repeat1] = STATE(805), + [aux_sym_sized_type_specifier_repeat1] = STATE(890), + [sym_identifier] = ACTIONS(1813), + [aux_sym_preproc_def_token1] = ACTIONS(1815), + [aux_sym_preproc_if_token1] = ACTIONS(1817), + [aux_sym_preproc_if_token2] = ACTIONS(1837), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1821), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1821), + [aux_sym_preproc_else_token1] = ACTIONS(1823), + [aux_sym_preproc_elif_token1] = ACTIONS(1825), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1827), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1827), + [sym_preproc_directive] = ACTIONS(1829), + [anon_sym_LPAREN2] = ACTIONS(1831), + [anon_sym_STAR] = ACTIONS(1833), + [anon_sym___extension__] = ACTIONS(53), + [anon_sym_extern] = ACTIONS(51), [anon_sym___attribute__] = ACTIONS(33), [anon_sym___scanf] = ACTIONS(35), [anon_sym___printf] = ACTIONS(35), [anon_sym___read_mostly] = ACTIONS(37), [anon_sym___must_hold] = ACTIONS(33), [anon_sym___ro_after_init] = ACTIONS(37), - [anon_sym___init] = ACTIONS(37), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1137), + [anon_sym___noreturn] = ACTIONS(37), + [anon_sym___cold] = ACTIONS(37), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1145), [anon_sym___declspec] = ACTIONS(41), - [anon_sym_signed] = ACTIONS(47), - [anon_sym_unsigned] = ACTIONS(47), - [anon_sym_long] = ACTIONS(47), - [anon_sym_short] = ACTIONS(47), - [anon_sym_static] = ACTIONS(49), - [anon_sym_auto] = ACTIONS(49), - [anon_sym_register] = ACTIONS(49), - [anon_sym_inline] = ACTIONS(49), - [anon_sym___inline] = ACTIONS(49), - [anon_sym___inline__] = ACTIONS(49), - [anon_sym___forceinline] = ACTIONS(49), - [anon_sym_thread_local] = ACTIONS(49), - [anon_sym___thread] = ACTIONS(49), - [anon_sym_const] = ACTIONS(51), - [anon_sym_constexpr] = ACTIONS(51), - [anon_sym_volatile] = ACTIONS(51), - [anon_sym_restrict] = ACTIONS(51), - [anon_sym___restrict__] = ACTIONS(51), - [anon_sym__Atomic] = ACTIONS(51), - [anon_sym__Noreturn] = ACTIONS(51), - [anon_sym_noreturn] = ACTIONS(51), - [anon_sym_alignas] = ACTIONS(53), - [anon_sym__Alignas] = ACTIONS(53), - [sym_primitive_type] = ACTIONS(55), - [anon_sym_enum] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), + [anon_sym___based] = ACTIONS(1835), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_const] = ACTIONS(53), + [anon_sym_constexpr] = ACTIONS(53), + [anon_sym_volatile] = ACTIONS(53), + [anon_sym_restrict] = ACTIONS(53), + [anon_sym___restrict__] = ACTIONS(53), + [anon_sym__Atomic] = ACTIONS(53), + [anon_sym__Noreturn] = ACTIONS(53), + [anon_sym_noreturn] = ACTIONS(53), + [anon_sym_alignas] = ACTIONS(55), + [anon_sym__Alignas] = ACTIONS(55), + [sym_primitive_type] = ACTIONS(57), + [anon_sym_enum] = ACTIONS(59), + [anon_sym_struct] = ACTIONS(61), + [anon_sym_union] = ACTIONS(63), [sym_comment] = ACTIONS(3), }, - [415] = { - [sym_preproc_def] = STATE(441), - [sym_preproc_function_def] = STATE(441), - [sym_preproc_call] = STATE(441), - [sym_preproc_if_in_field_declaration_list] = STATE(441), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(441), - [sym_preproc_else_in_field_declaration_list] = STATE(2005), - [sym_preproc_elif_in_field_declaration_list] = STATE(2005), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(2005), - [sym__declaration_modifiers] = STATE(697), - [sym__declaration_specifiers] = STATE(1141), - [sym_attribute_specifier] = STATE(697), - [sym_attribute_declaration] = STATE(697), - [sym_ms_declspec_modifier] = STATE(697), - [sym_storage_class_specifier] = STATE(697), - [sym_type_qualifier] = STATE(697), - [sym_alignas_qualifier] = STATE(703), - [sym_type_specifier] = STATE(710), - [sym_sized_type_specifier] = STATE(746), - [sym_enum_specifier] = STATE(746), - [sym_struct_specifier] = STATE(746), - [sym_union_specifier] = STATE(746), - [sym__field_declaration_list_item] = STATE(441), - [sym_field_declaration] = STATE(441), - [sym_macro_type_specifier] = STATE(746), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(441), - [aux_sym__declaration_specifiers_repeat1] = STATE(697), - [aux_sym_sized_type_specifier_repeat1] = STATE(747), - [sym_identifier] = ACTIONS(1809), - [aux_sym_preproc_def_token1] = ACTIONS(1811), - [aux_sym_preproc_if_token1] = ACTIONS(1813), - [aux_sym_preproc_if_token2] = ACTIONS(1827), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1817), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1817), - [aux_sym_preproc_else_token1] = ACTIONS(1819), - [aux_sym_preproc_elif_token1] = ACTIONS(1821), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1823), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1823), - [sym_preproc_directive] = ACTIONS(1825), - [anon_sym___extension__] = ACTIONS(51), - [anon_sym_extern] = ACTIONS(49), + [476] = { + [sym_preproc_def] = STATE(486), + [sym_preproc_function_def] = STATE(486), + [sym_preproc_call] = STATE(486), + [sym_preproc_if_in_field_declaration_list] = STATE(486), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(486), + [sym_preproc_else_in_field_declaration_list] = STATE(2312), + [sym_preproc_elif_in_field_declaration_list] = STATE(2312), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(2312), + [sym__declaration_modifiers] = STATE(805), + [sym__declaration_specifiers] = STATE(1264), + [sym_attribute_specifier] = STATE(805), + [sym_attribute_declaration] = STATE(805), + [sym_ms_declspec_modifier] = STATE(805), + [sym_ms_based_modifier] = STATE(2174), + [sym__declarator] = STATE(1666), + [sym_parenthesized_declarator] = STATE(1569), + [sym_attributed_declarator] = STATE(1569), + [sym_pointer_declarator] = STATE(1569), + [sym_function_declarator] = STATE(1569), + [sym_array_declarator] = STATE(1569), + [sym_storage_class_specifier] = STATE(805), + [sym_type_qualifier] = STATE(805), + [sym_alignas_qualifier] = STATE(799), + [sym_type_specifier] = STATE(807), + [sym_sized_type_specifier] = STATE(873), + [sym_enum_specifier] = STATE(873), + [sym_struct_specifier] = STATE(873), + [sym_union_specifier] = STATE(873), + [sym__field_declaration_list_item] = STATE(486), + [sym_macro_invocation] = STATE(486), + [sym_field_declaration] = STATE(486), + [sym_macro_type_specifier] = STATE(873), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(486), + [aux_sym__declaration_specifiers_repeat1] = STATE(805), + [aux_sym_sized_type_specifier_repeat1] = STATE(890), + [sym_identifier] = ACTIONS(1813), + [aux_sym_preproc_def_token1] = ACTIONS(1815), + [aux_sym_preproc_if_token1] = ACTIONS(1817), + [aux_sym_preproc_if_token2] = ACTIONS(1839), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1821), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1821), + [aux_sym_preproc_else_token1] = ACTIONS(1823), + [aux_sym_preproc_elif_token1] = ACTIONS(1825), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1827), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1827), + [sym_preproc_directive] = ACTIONS(1829), + [anon_sym_LPAREN2] = ACTIONS(1831), + [anon_sym_STAR] = ACTIONS(1833), + [anon_sym___extension__] = ACTIONS(53), + [anon_sym_extern] = ACTIONS(51), [anon_sym___attribute__] = ACTIONS(33), [anon_sym___scanf] = ACTIONS(35), [anon_sym___printf] = ACTIONS(35), [anon_sym___read_mostly] = ACTIONS(37), [anon_sym___must_hold] = ACTIONS(33), [anon_sym___ro_after_init] = ACTIONS(37), - [anon_sym___init] = ACTIONS(37), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1137), + [anon_sym___noreturn] = ACTIONS(37), + [anon_sym___cold] = ACTIONS(37), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1145), [anon_sym___declspec] = ACTIONS(41), - [anon_sym_signed] = ACTIONS(47), - [anon_sym_unsigned] = ACTIONS(47), - [anon_sym_long] = ACTIONS(47), - [anon_sym_short] = ACTIONS(47), - [anon_sym_static] = ACTIONS(49), - [anon_sym_auto] = ACTIONS(49), - [anon_sym_register] = ACTIONS(49), - [anon_sym_inline] = ACTIONS(49), - [anon_sym___inline] = ACTIONS(49), - [anon_sym___inline__] = ACTIONS(49), - [anon_sym___forceinline] = ACTIONS(49), - [anon_sym_thread_local] = ACTIONS(49), - [anon_sym___thread] = ACTIONS(49), - [anon_sym_const] = ACTIONS(51), - [anon_sym_constexpr] = ACTIONS(51), - [anon_sym_volatile] = ACTIONS(51), - [anon_sym_restrict] = ACTIONS(51), - [anon_sym___restrict__] = ACTIONS(51), - [anon_sym__Atomic] = ACTIONS(51), - [anon_sym__Noreturn] = ACTIONS(51), - [anon_sym_noreturn] = ACTIONS(51), - [anon_sym_alignas] = ACTIONS(53), - [anon_sym__Alignas] = ACTIONS(53), - [sym_primitive_type] = ACTIONS(55), - [anon_sym_enum] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), + [anon_sym___based] = ACTIONS(1835), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_const] = ACTIONS(53), + [anon_sym_constexpr] = ACTIONS(53), + [anon_sym_volatile] = ACTIONS(53), + [anon_sym_restrict] = ACTIONS(53), + [anon_sym___restrict__] = ACTIONS(53), + [anon_sym__Atomic] = ACTIONS(53), + [anon_sym__Noreturn] = ACTIONS(53), + [anon_sym_noreturn] = ACTIONS(53), + [anon_sym_alignas] = ACTIONS(55), + [anon_sym__Alignas] = ACTIONS(55), + [sym_primitive_type] = ACTIONS(57), + [anon_sym_enum] = ACTIONS(59), + [anon_sym_struct] = ACTIONS(61), + [anon_sym_union] = ACTIONS(63), [sym_comment] = ACTIONS(3), }, - [416] = { - [sym_preproc_def] = STATE(425), - [sym_preproc_function_def] = STATE(425), - [sym_preproc_call] = STATE(425), - [sym_preproc_if_in_field_declaration_list] = STATE(425), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(425), - [sym_preproc_else_in_field_declaration_list] = STATE(1912), - [sym_preproc_elif_in_field_declaration_list] = STATE(1912), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(1912), - [sym__declaration_modifiers] = STATE(697), - [sym__declaration_specifiers] = STATE(1141), - [sym_attribute_specifier] = STATE(697), - [sym_attribute_declaration] = STATE(697), - [sym_ms_declspec_modifier] = STATE(697), - [sym_storage_class_specifier] = STATE(697), - [sym_type_qualifier] = STATE(697), - [sym_alignas_qualifier] = STATE(703), - [sym_type_specifier] = STATE(710), - [sym_sized_type_specifier] = STATE(746), - [sym_enum_specifier] = STATE(746), - [sym_struct_specifier] = STATE(746), - [sym_union_specifier] = STATE(746), - [sym__field_declaration_list_item] = STATE(425), - [sym_field_declaration] = STATE(425), - [sym_macro_type_specifier] = STATE(746), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(425), - [aux_sym__declaration_specifiers_repeat1] = STATE(697), - [aux_sym_sized_type_specifier_repeat1] = STATE(747), - [sym_identifier] = ACTIONS(1809), - [aux_sym_preproc_def_token1] = ACTIONS(1811), - [aux_sym_preproc_if_token1] = ACTIONS(1813), - [aux_sym_preproc_if_token2] = ACTIONS(1829), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1817), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1817), - [aux_sym_preproc_else_token1] = ACTIONS(1819), - [aux_sym_preproc_elif_token1] = ACTIONS(1821), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1823), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1823), - [sym_preproc_directive] = ACTIONS(1825), - [anon_sym___extension__] = ACTIONS(51), - [anon_sym_extern] = ACTIONS(49), + [477] = { + [sym_preproc_def] = STATE(492), + [sym_preproc_function_def] = STATE(492), + [sym_preproc_call] = STATE(492), + [sym_preproc_if_in_field_declaration_list] = STATE(492), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(492), + [sym_preproc_else_in_field_declaration_list] = STATE(2110), + [sym_preproc_elif_in_field_declaration_list] = STATE(2110), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(2110), + [sym__declaration_modifiers] = STATE(805), + [sym__declaration_specifiers] = STATE(1264), + [sym_attribute_specifier] = STATE(805), + [sym_attribute_declaration] = STATE(805), + [sym_ms_declspec_modifier] = STATE(805), + [sym_ms_based_modifier] = STATE(2174), + [sym__declarator] = STATE(1666), + [sym_parenthesized_declarator] = STATE(1569), + [sym_attributed_declarator] = STATE(1569), + [sym_pointer_declarator] = STATE(1569), + [sym_function_declarator] = STATE(1569), + [sym_array_declarator] = STATE(1569), + [sym_storage_class_specifier] = STATE(805), + [sym_type_qualifier] = STATE(805), + [sym_alignas_qualifier] = STATE(799), + [sym_type_specifier] = STATE(807), + [sym_sized_type_specifier] = STATE(873), + [sym_enum_specifier] = STATE(873), + [sym_struct_specifier] = STATE(873), + [sym_union_specifier] = STATE(873), + [sym__field_declaration_list_item] = STATE(492), + [sym_macro_invocation] = STATE(492), + [sym_field_declaration] = STATE(492), + [sym_macro_type_specifier] = STATE(873), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(492), + [aux_sym__declaration_specifiers_repeat1] = STATE(805), + [aux_sym_sized_type_specifier_repeat1] = STATE(890), + [sym_identifier] = ACTIONS(1813), + [aux_sym_preproc_def_token1] = ACTIONS(1815), + [aux_sym_preproc_if_token1] = ACTIONS(1817), + [aux_sym_preproc_if_token2] = ACTIONS(1841), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1821), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1821), + [aux_sym_preproc_else_token1] = ACTIONS(1823), + [aux_sym_preproc_elif_token1] = ACTIONS(1825), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1827), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1827), + [sym_preproc_directive] = ACTIONS(1829), + [anon_sym_LPAREN2] = ACTIONS(1831), + [anon_sym_STAR] = ACTIONS(1833), + [anon_sym___extension__] = ACTIONS(53), + [anon_sym_extern] = ACTIONS(51), [anon_sym___attribute__] = ACTIONS(33), [anon_sym___scanf] = ACTIONS(35), [anon_sym___printf] = ACTIONS(35), [anon_sym___read_mostly] = ACTIONS(37), [anon_sym___must_hold] = ACTIONS(33), [anon_sym___ro_after_init] = ACTIONS(37), - [anon_sym___init] = ACTIONS(37), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1137), + [anon_sym___noreturn] = ACTIONS(37), + [anon_sym___cold] = ACTIONS(37), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1145), [anon_sym___declspec] = ACTIONS(41), - [anon_sym_signed] = ACTIONS(47), - [anon_sym_unsigned] = ACTIONS(47), - [anon_sym_long] = ACTIONS(47), - [anon_sym_short] = ACTIONS(47), - [anon_sym_static] = ACTIONS(49), - [anon_sym_auto] = ACTIONS(49), - [anon_sym_register] = ACTIONS(49), - [anon_sym_inline] = ACTIONS(49), - [anon_sym___inline] = ACTIONS(49), - [anon_sym___inline__] = ACTIONS(49), - [anon_sym___forceinline] = ACTIONS(49), - [anon_sym_thread_local] = ACTIONS(49), - [anon_sym___thread] = ACTIONS(49), - [anon_sym_const] = ACTIONS(51), - [anon_sym_constexpr] = ACTIONS(51), - [anon_sym_volatile] = ACTIONS(51), - [anon_sym_restrict] = ACTIONS(51), - [anon_sym___restrict__] = ACTIONS(51), - [anon_sym__Atomic] = ACTIONS(51), - [anon_sym__Noreturn] = ACTIONS(51), - [anon_sym_noreturn] = ACTIONS(51), - [anon_sym_alignas] = ACTIONS(53), - [anon_sym__Alignas] = ACTIONS(53), - [sym_primitive_type] = ACTIONS(55), - [anon_sym_enum] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), + [anon_sym___based] = ACTIONS(1835), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_const] = ACTIONS(53), + [anon_sym_constexpr] = ACTIONS(53), + [anon_sym_volatile] = ACTIONS(53), + [anon_sym_restrict] = ACTIONS(53), + [anon_sym___restrict__] = ACTIONS(53), + [anon_sym__Atomic] = ACTIONS(53), + [anon_sym__Noreturn] = ACTIONS(53), + [anon_sym_noreturn] = ACTIONS(53), + [anon_sym_alignas] = ACTIONS(55), + [anon_sym__Alignas] = ACTIONS(55), + [sym_primitive_type] = ACTIONS(57), + [anon_sym_enum] = ACTIONS(59), + [anon_sym_struct] = ACTIONS(61), + [anon_sym_union] = ACTIONS(63), [sym_comment] = ACTIONS(3), }, - [417] = { - [sym_preproc_def] = STATE(418), - [sym_preproc_function_def] = STATE(418), - [sym_preproc_call] = STATE(418), - [sym_preproc_if_in_field_declaration_list] = STATE(418), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(418), - [sym_preproc_else_in_field_declaration_list] = STATE(2008), - [sym_preproc_elif_in_field_declaration_list] = STATE(2008), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(2008), - [sym__declaration_modifiers] = STATE(697), - [sym__declaration_specifiers] = STATE(1141), - [sym_attribute_specifier] = STATE(697), - [sym_attribute_declaration] = STATE(697), - [sym_ms_declspec_modifier] = STATE(697), - [sym_storage_class_specifier] = STATE(697), - [sym_type_qualifier] = STATE(697), - [sym_alignas_qualifier] = STATE(703), - [sym_type_specifier] = STATE(710), - [sym_sized_type_specifier] = STATE(746), - [sym_enum_specifier] = STATE(746), - [sym_struct_specifier] = STATE(746), - [sym_union_specifier] = STATE(746), - [sym__field_declaration_list_item] = STATE(418), - [sym_field_declaration] = STATE(418), - [sym_macro_type_specifier] = STATE(746), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(418), - [aux_sym__declaration_specifiers_repeat1] = STATE(697), - [aux_sym_sized_type_specifier_repeat1] = STATE(747), - [sym_identifier] = ACTIONS(1809), - [aux_sym_preproc_def_token1] = ACTIONS(1811), - [aux_sym_preproc_if_token1] = ACTIONS(1813), - [aux_sym_preproc_if_token2] = ACTIONS(1831), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1817), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1817), - [aux_sym_preproc_else_token1] = ACTIONS(1819), - [aux_sym_preproc_elif_token1] = ACTIONS(1821), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1823), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1823), - [sym_preproc_directive] = ACTIONS(1825), - [anon_sym___extension__] = ACTIONS(51), - [anon_sym_extern] = ACTIONS(49), + [478] = { + [sym_preproc_def] = STATE(492), + [sym_preproc_function_def] = STATE(492), + [sym_preproc_call] = STATE(492), + [sym_preproc_if_in_field_declaration_list] = STATE(492), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(492), + [sym_preproc_else_in_field_declaration_list] = STATE(2256), + [sym_preproc_elif_in_field_declaration_list] = STATE(2256), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(2256), + [sym__declaration_modifiers] = STATE(805), + [sym__declaration_specifiers] = STATE(1264), + [sym_attribute_specifier] = STATE(805), + [sym_attribute_declaration] = STATE(805), + [sym_ms_declspec_modifier] = STATE(805), + [sym_ms_based_modifier] = STATE(2174), + [sym__declarator] = STATE(1666), + [sym_parenthesized_declarator] = STATE(1569), + [sym_attributed_declarator] = STATE(1569), + [sym_pointer_declarator] = STATE(1569), + [sym_function_declarator] = STATE(1569), + [sym_array_declarator] = STATE(1569), + [sym_storage_class_specifier] = STATE(805), + [sym_type_qualifier] = STATE(805), + [sym_alignas_qualifier] = STATE(799), + [sym_type_specifier] = STATE(807), + [sym_sized_type_specifier] = STATE(873), + [sym_enum_specifier] = STATE(873), + [sym_struct_specifier] = STATE(873), + [sym_union_specifier] = STATE(873), + [sym__field_declaration_list_item] = STATE(492), + [sym_macro_invocation] = STATE(492), + [sym_field_declaration] = STATE(492), + [sym_macro_type_specifier] = STATE(873), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(492), + [aux_sym__declaration_specifiers_repeat1] = STATE(805), + [aux_sym_sized_type_specifier_repeat1] = STATE(890), + [sym_identifier] = ACTIONS(1813), + [aux_sym_preproc_def_token1] = ACTIONS(1815), + [aux_sym_preproc_if_token1] = ACTIONS(1817), + [aux_sym_preproc_if_token2] = ACTIONS(1843), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1821), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1821), + [aux_sym_preproc_else_token1] = ACTIONS(1823), + [aux_sym_preproc_elif_token1] = ACTIONS(1825), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1827), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1827), + [sym_preproc_directive] = ACTIONS(1829), + [anon_sym_LPAREN2] = ACTIONS(1831), + [anon_sym_STAR] = ACTIONS(1833), + [anon_sym___extension__] = ACTIONS(53), + [anon_sym_extern] = ACTIONS(51), [anon_sym___attribute__] = ACTIONS(33), [anon_sym___scanf] = ACTIONS(35), [anon_sym___printf] = ACTIONS(35), [anon_sym___read_mostly] = ACTIONS(37), [anon_sym___must_hold] = ACTIONS(33), [anon_sym___ro_after_init] = ACTIONS(37), - [anon_sym___init] = ACTIONS(37), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1137), + [anon_sym___noreturn] = ACTIONS(37), + [anon_sym___cold] = ACTIONS(37), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1145), [anon_sym___declspec] = ACTIONS(41), - [anon_sym_signed] = ACTIONS(47), - [anon_sym_unsigned] = ACTIONS(47), - [anon_sym_long] = ACTIONS(47), - [anon_sym_short] = ACTIONS(47), - [anon_sym_static] = ACTIONS(49), - [anon_sym_auto] = ACTIONS(49), - [anon_sym_register] = ACTIONS(49), - [anon_sym_inline] = ACTIONS(49), - [anon_sym___inline] = ACTIONS(49), - [anon_sym___inline__] = ACTIONS(49), - [anon_sym___forceinline] = ACTIONS(49), - [anon_sym_thread_local] = ACTIONS(49), - [anon_sym___thread] = ACTIONS(49), - [anon_sym_const] = ACTIONS(51), - [anon_sym_constexpr] = ACTIONS(51), - [anon_sym_volatile] = ACTIONS(51), - [anon_sym_restrict] = ACTIONS(51), - [anon_sym___restrict__] = ACTIONS(51), - [anon_sym__Atomic] = ACTIONS(51), - [anon_sym__Noreturn] = ACTIONS(51), - [anon_sym_noreturn] = ACTIONS(51), - [anon_sym_alignas] = ACTIONS(53), - [anon_sym__Alignas] = ACTIONS(53), - [sym_primitive_type] = ACTIONS(55), - [anon_sym_enum] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), + [anon_sym___based] = ACTIONS(1835), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_const] = ACTIONS(53), + [anon_sym_constexpr] = ACTIONS(53), + [anon_sym_volatile] = ACTIONS(53), + [anon_sym_restrict] = ACTIONS(53), + [anon_sym___restrict__] = ACTIONS(53), + [anon_sym__Atomic] = ACTIONS(53), + [anon_sym__Noreturn] = ACTIONS(53), + [anon_sym_noreturn] = ACTIONS(53), + [anon_sym_alignas] = ACTIONS(55), + [anon_sym__Alignas] = ACTIONS(55), + [sym_primitive_type] = ACTIONS(57), + [anon_sym_enum] = ACTIONS(59), + [anon_sym_struct] = ACTIONS(61), + [anon_sym_union] = ACTIONS(63), [sym_comment] = ACTIONS(3), }, - [418] = { - [sym_preproc_def] = STATE(441), - [sym_preproc_function_def] = STATE(441), - [sym_preproc_call] = STATE(441), - [sym_preproc_if_in_field_declaration_list] = STATE(441), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(441), - [sym_preproc_else_in_field_declaration_list] = STATE(1913), - [sym_preproc_elif_in_field_declaration_list] = STATE(1913), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(1913), - [sym__declaration_modifiers] = STATE(697), - [sym__declaration_specifiers] = STATE(1141), - [sym_attribute_specifier] = STATE(697), - [sym_attribute_declaration] = STATE(697), - [sym_ms_declspec_modifier] = STATE(697), - [sym_storage_class_specifier] = STATE(697), - [sym_type_qualifier] = STATE(697), - [sym_alignas_qualifier] = STATE(703), - [sym_type_specifier] = STATE(710), - [sym_sized_type_specifier] = STATE(746), - [sym_enum_specifier] = STATE(746), - [sym_struct_specifier] = STATE(746), - [sym_union_specifier] = STATE(746), - [sym__field_declaration_list_item] = STATE(441), - [sym_field_declaration] = STATE(441), - [sym_macro_type_specifier] = STATE(746), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(441), - [aux_sym__declaration_specifiers_repeat1] = STATE(697), - [aux_sym_sized_type_specifier_repeat1] = STATE(747), - [sym_identifier] = ACTIONS(1809), - [aux_sym_preproc_def_token1] = ACTIONS(1811), - [aux_sym_preproc_if_token1] = ACTIONS(1813), - [aux_sym_preproc_if_token2] = ACTIONS(1833), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1817), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1817), - [aux_sym_preproc_else_token1] = ACTIONS(1819), - [aux_sym_preproc_elif_token1] = ACTIONS(1821), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1823), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1823), - [sym_preproc_directive] = ACTIONS(1825), - [anon_sym___extension__] = ACTIONS(51), - [anon_sym_extern] = ACTIONS(49), + [479] = { + [sym_preproc_def] = STATE(492), + [sym_preproc_function_def] = STATE(492), + [sym_preproc_call] = STATE(492), + [sym_preproc_if_in_field_declaration_list] = STATE(492), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(492), + [sym_preproc_else_in_field_declaration_list] = STATE(2118), + [sym_preproc_elif_in_field_declaration_list] = STATE(2118), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(2118), + [sym__declaration_modifiers] = STATE(805), + [sym__declaration_specifiers] = STATE(1264), + [sym_attribute_specifier] = STATE(805), + [sym_attribute_declaration] = STATE(805), + [sym_ms_declspec_modifier] = STATE(805), + [sym_ms_based_modifier] = STATE(2174), + [sym__declarator] = STATE(1666), + [sym_parenthesized_declarator] = STATE(1569), + [sym_attributed_declarator] = STATE(1569), + [sym_pointer_declarator] = STATE(1569), + [sym_function_declarator] = STATE(1569), + [sym_array_declarator] = STATE(1569), + [sym_storage_class_specifier] = STATE(805), + [sym_type_qualifier] = STATE(805), + [sym_alignas_qualifier] = STATE(799), + [sym_type_specifier] = STATE(807), + [sym_sized_type_specifier] = STATE(873), + [sym_enum_specifier] = STATE(873), + [sym_struct_specifier] = STATE(873), + [sym_union_specifier] = STATE(873), + [sym__field_declaration_list_item] = STATE(492), + [sym_macro_invocation] = STATE(492), + [sym_field_declaration] = STATE(492), + [sym_macro_type_specifier] = STATE(873), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(492), + [aux_sym__declaration_specifiers_repeat1] = STATE(805), + [aux_sym_sized_type_specifier_repeat1] = STATE(890), + [sym_identifier] = ACTIONS(1813), + [aux_sym_preproc_def_token1] = ACTIONS(1815), + [aux_sym_preproc_if_token1] = ACTIONS(1817), + [aux_sym_preproc_if_token2] = ACTIONS(1845), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1821), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1821), + [aux_sym_preproc_else_token1] = ACTIONS(1823), + [aux_sym_preproc_elif_token1] = ACTIONS(1825), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1827), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1827), + [sym_preproc_directive] = ACTIONS(1829), + [anon_sym_LPAREN2] = ACTIONS(1831), + [anon_sym_STAR] = ACTIONS(1833), + [anon_sym___extension__] = ACTIONS(53), + [anon_sym_extern] = ACTIONS(51), [anon_sym___attribute__] = ACTIONS(33), [anon_sym___scanf] = ACTIONS(35), [anon_sym___printf] = ACTIONS(35), [anon_sym___read_mostly] = ACTIONS(37), [anon_sym___must_hold] = ACTIONS(33), [anon_sym___ro_after_init] = ACTIONS(37), - [anon_sym___init] = ACTIONS(37), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1137), + [anon_sym___noreturn] = ACTIONS(37), + [anon_sym___cold] = ACTIONS(37), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1145), [anon_sym___declspec] = ACTIONS(41), - [anon_sym_signed] = ACTIONS(47), - [anon_sym_unsigned] = ACTIONS(47), - [anon_sym_long] = ACTIONS(47), - [anon_sym_short] = ACTIONS(47), - [anon_sym_static] = ACTIONS(49), - [anon_sym_auto] = ACTIONS(49), - [anon_sym_register] = ACTIONS(49), - [anon_sym_inline] = ACTIONS(49), - [anon_sym___inline] = ACTIONS(49), - [anon_sym___inline__] = ACTIONS(49), - [anon_sym___forceinline] = ACTIONS(49), - [anon_sym_thread_local] = ACTIONS(49), - [anon_sym___thread] = ACTIONS(49), - [anon_sym_const] = ACTIONS(51), - [anon_sym_constexpr] = ACTIONS(51), - [anon_sym_volatile] = ACTIONS(51), - [anon_sym_restrict] = ACTIONS(51), - [anon_sym___restrict__] = ACTIONS(51), - [anon_sym__Atomic] = ACTIONS(51), - [anon_sym__Noreturn] = ACTIONS(51), - [anon_sym_noreturn] = ACTIONS(51), - [anon_sym_alignas] = ACTIONS(53), - [anon_sym__Alignas] = ACTIONS(53), - [sym_primitive_type] = ACTIONS(55), - [anon_sym_enum] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), + [anon_sym___based] = ACTIONS(1835), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_const] = ACTIONS(53), + [anon_sym_constexpr] = ACTIONS(53), + [anon_sym_volatile] = ACTIONS(53), + [anon_sym_restrict] = ACTIONS(53), + [anon_sym___restrict__] = ACTIONS(53), + [anon_sym__Atomic] = ACTIONS(53), + [anon_sym__Noreturn] = ACTIONS(53), + [anon_sym_noreturn] = ACTIONS(53), + [anon_sym_alignas] = ACTIONS(55), + [anon_sym__Alignas] = ACTIONS(55), + [sym_primitive_type] = ACTIONS(57), + [anon_sym_enum] = ACTIONS(59), + [anon_sym_struct] = ACTIONS(61), + [anon_sym_union] = ACTIONS(63), [sym_comment] = ACTIONS(3), }, - [419] = { - [sym_preproc_def] = STATE(441), - [sym_preproc_function_def] = STATE(441), - [sym_preproc_call] = STATE(441), - [sym_preproc_if_in_field_declaration_list] = STATE(441), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(441), - [sym_preproc_else_in_field_declaration_list] = STATE(1904), - [sym_preproc_elif_in_field_declaration_list] = STATE(1904), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(1904), - [sym__declaration_modifiers] = STATE(697), - [sym__declaration_specifiers] = STATE(1141), - [sym_attribute_specifier] = STATE(697), - [sym_attribute_declaration] = STATE(697), - [sym_ms_declspec_modifier] = STATE(697), - [sym_storage_class_specifier] = STATE(697), - [sym_type_qualifier] = STATE(697), - [sym_alignas_qualifier] = STATE(703), - [sym_type_specifier] = STATE(710), - [sym_sized_type_specifier] = STATE(746), - [sym_enum_specifier] = STATE(746), - [sym_struct_specifier] = STATE(746), - [sym_union_specifier] = STATE(746), - [sym__field_declaration_list_item] = STATE(441), - [sym_field_declaration] = STATE(441), - [sym_macro_type_specifier] = STATE(746), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(441), - [aux_sym__declaration_specifiers_repeat1] = STATE(697), - [aux_sym_sized_type_specifier_repeat1] = STATE(747), - [sym_identifier] = ACTIONS(1809), - [aux_sym_preproc_def_token1] = ACTIONS(1811), - [aux_sym_preproc_if_token1] = ACTIONS(1813), - [aux_sym_preproc_if_token2] = ACTIONS(1835), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1817), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1817), - [aux_sym_preproc_else_token1] = ACTIONS(1819), - [aux_sym_preproc_elif_token1] = ACTIONS(1821), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1823), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1823), - [sym_preproc_directive] = ACTIONS(1825), - [anon_sym___extension__] = ACTIONS(51), - [anon_sym_extern] = ACTIONS(49), + [480] = { + [sym_preproc_def] = STATE(482), + [sym_preproc_function_def] = STATE(482), + [sym_preproc_call] = STATE(482), + [sym_preproc_if_in_field_declaration_list] = STATE(482), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(482), + [sym_preproc_else_in_field_declaration_list] = STATE(2116), + [sym_preproc_elif_in_field_declaration_list] = STATE(2116), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(2116), + [sym__declaration_modifiers] = STATE(805), + [sym__declaration_specifiers] = STATE(1264), + [sym_attribute_specifier] = STATE(805), + [sym_attribute_declaration] = STATE(805), + [sym_ms_declspec_modifier] = STATE(805), + [sym_ms_based_modifier] = STATE(2174), + [sym__declarator] = STATE(1666), + [sym_parenthesized_declarator] = STATE(1569), + [sym_attributed_declarator] = STATE(1569), + [sym_pointer_declarator] = STATE(1569), + [sym_function_declarator] = STATE(1569), + [sym_array_declarator] = STATE(1569), + [sym_storage_class_specifier] = STATE(805), + [sym_type_qualifier] = STATE(805), + [sym_alignas_qualifier] = STATE(799), + [sym_type_specifier] = STATE(807), + [sym_sized_type_specifier] = STATE(873), + [sym_enum_specifier] = STATE(873), + [sym_struct_specifier] = STATE(873), + [sym_union_specifier] = STATE(873), + [sym__field_declaration_list_item] = STATE(482), + [sym_macro_invocation] = STATE(482), + [sym_field_declaration] = STATE(482), + [sym_macro_type_specifier] = STATE(873), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(482), + [aux_sym__declaration_specifiers_repeat1] = STATE(805), + [aux_sym_sized_type_specifier_repeat1] = STATE(890), + [sym_identifier] = ACTIONS(1813), + [aux_sym_preproc_def_token1] = ACTIONS(1815), + [aux_sym_preproc_if_token1] = ACTIONS(1817), + [aux_sym_preproc_if_token2] = ACTIONS(1847), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1821), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1821), + [aux_sym_preproc_else_token1] = ACTIONS(1823), + [aux_sym_preproc_elif_token1] = ACTIONS(1825), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1827), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1827), + [sym_preproc_directive] = ACTIONS(1829), + [anon_sym_LPAREN2] = ACTIONS(1831), + [anon_sym_STAR] = ACTIONS(1833), + [anon_sym___extension__] = ACTIONS(53), + [anon_sym_extern] = ACTIONS(51), [anon_sym___attribute__] = ACTIONS(33), [anon_sym___scanf] = ACTIONS(35), [anon_sym___printf] = ACTIONS(35), [anon_sym___read_mostly] = ACTIONS(37), [anon_sym___must_hold] = ACTIONS(33), [anon_sym___ro_after_init] = ACTIONS(37), - [anon_sym___init] = ACTIONS(37), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1137), + [anon_sym___noreturn] = ACTIONS(37), + [anon_sym___cold] = ACTIONS(37), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1145), [anon_sym___declspec] = ACTIONS(41), - [anon_sym_signed] = ACTIONS(47), - [anon_sym_unsigned] = ACTIONS(47), - [anon_sym_long] = ACTIONS(47), - [anon_sym_short] = ACTIONS(47), - [anon_sym_static] = ACTIONS(49), - [anon_sym_auto] = ACTIONS(49), - [anon_sym_register] = ACTIONS(49), - [anon_sym_inline] = ACTIONS(49), - [anon_sym___inline] = ACTIONS(49), - [anon_sym___inline__] = ACTIONS(49), - [anon_sym___forceinline] = ACTIONS(49), - [anon_sym_thread_local] = ACTIONS(49), - [anon_sym___thread] = ACTIONS(49), - [anon_sym_const] = ACTIONS(51), - [anon_sym_constexpr] = ACTIONS(51), - [anon_sym_volatile] = ACTIONS(51), - [anon_sym_restrict] = ACTIONS(51), - [anon_sym___restrict__] = ACTIONS(51), - [anon_sym__Atomic] = ACTIONS(51), - [anon_sym__Noreturn] = ACTIONS(51), - [anon_sym_noreturn] = ACTIONS(51), - [anon_sym_alignas] = ACTIONS(53), - [anon_sym__Alignas] = ACTIONS(53), - [sym_primitive_type] = ACTIONS(55), - [anon_sym_enum] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), + [anon_sym___based] = ACTIONS(1835), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_const] = ACTIONS(53), + [anon_sym_constexpr] = ACTIONS(53), + [anon_sym_volatile] = ACTIONS(53), + [anon_sym_restrict] = ACTIONS(53), + [anon_sym___restrict__] = ACTIONS(53), + [anon_sym__Atomic] = ACTIONS(53), + [anon_sym__Noreturn] = ACTIONS(53), + [anon_sym_noreturn] = ACTIONS(53), + [anon_sym_alignas] = ACTIONS(55), + [anon_sym__Alignas] = ACTIONS(55), + [sym_primitive_type] = ACTIONS(57), + [anon_sym_enum] = ACTIONS(59), + [anon_sym_struct] = ACTIONS(61), + [anon_sym_union] = ACTIONS(63), [sym_comment] = ACTIONS(3), }, - [420] = { - [sym_preproc_def] = STATE(441), - [sym_preproc_function_def] = STATE(441), - [sym_preproc_call] = STATE(441), - [sym_preproc_if_in_field_declaration_list] = STATE(441), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(441), - [sym_preproc_else_in_field_declaration_list] = STATE(1905), - [sym_preproc_elif_in_field_declaration_list] = STATE(1905), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(1905), - [sym__declaration_modifiers] = STATE(697), - [sym__declaration_specifiers] = STATE(1141), - [sym_attribute_specifier] = STATE(697), - [sym_attribute_declaration] = STATE(697), - [sym_ms_declspec_modifier] = STATE(697), - [sym_storage_class_specifier] = STATE(697), - [sym_type_qualifier] = STATE(697), - [sym_alignas_qualifier] = STATE(703), - [sym_type_specifier] = STATE(710), - [sym_sized_type_specifier] = STATE(746), - [sym_enum_specifier] = STATE(746), - [sym_struct_specifier] = STATE(746), - [sym_union_specifier] = STATE(746), - [sym__field_declaration_list_item] = STATE(441), - [sym_field_declaration] = STATE(441), - [sym_macro_type_specifier] = STATE(746), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(441), - [aux_sym__declaration_specifiers_repeat1] = STATE(697), - [aux_sym_sized_type_specifier_repeat1] = STATE(747), - [sym_identifier] = ACTIONS(1809), - [aux_sym_preproc_def_token1] = ACTIONS(1811), - [aux_sym_preproc_if_token1] = ACTIONS(1813), - [aux_sym_preproc_if_token2] = ACTIONS(1837), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1817), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1817), - [aux_sym_preproc_else_token1] = ACTIONS(1819), - [aux_sym_preproc_elif_token1] = ACTIONS(1821), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1823), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1823), - [sym_preproc_directive] = ACTIONS(1825), - [anon_sym___extension__] = ACTIONS(51), - [anon_sym_extern] = ACTIONS(49), + [481] = { + [sym_preproc_def] = STATE(485), + [sym_preproc_function_def] = STATE(485), + [sym_preproc_call] = STATE(485), + [sym_preproc_if_in_field_declaration_list] = STATE(485), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(485), + [sym_preproc_else_in_field_declaration_list] = STATE(2182), + [sym_preproc_elif_in_field_declaration_list] = STATE(2182), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(2182), + [sym__declaration_modifiers] = STATE(805), + [sym__declaration_specifiers] = STATE(1264), + [sym_attribute_specifier] = STATE(805), + [sym_attribute_declaration] = STATE(805), + [sym_ms_declspec_modifier] = STATE(805), + [sym_ms_based_modifier] = STATE(2174), + [sym__declarator] = STATE(1666), + [sym_parenthesized_declarator] = STATE(1569), + [sym_attributed_declarator] = STATE(1569), + [sym_pointer_declarator] = STATE(1569), + [sym_function_declarator] = STATE(1569), + [sym_array_declarator] = STATE(1569), + [sym_storage_class_specifier] = STATE(805), + [sym_type_qualifier] = STATE(805), + [sym_alignas_qualifier] = STATE(799), + [sym_type_specifier] = STATE(807), + [sym_sized_type_specifier] = STATE(873), + [sym_enum_specifier] = STATE(873), + [sym_struct_specifier] = STATE(873), + [sym_union_specifier] = STATE(873), + [sym__field_declaration_list_item] = STATE(485), + [sym_macro_invocation] = STATE(485), + [sym_field_declaration] = STATE(485), + [sym_macro_type_specifier] = STATE(873), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(485), + [aux_sym__declaration_specifiers_repeat1] = STATE(805), + [aux_sym_sized_type_specifier_repeat1] = STATE(890), + [sym_identifier] = ACTIONS(1813), + [aux_sym_preproc_def_token1] = ACTIONS(1815), + [aux_sym_preproc_if_token1] = ACTIONS(1817), + [aux_sym_preproc_if_token2] = ACTIONS(1849), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1821), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1821), + [aux_sym_preproc_else_token1] = ACTIONS(1823), + [aux_sym_preproc_elif_token1] = ACTIONS(1825), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1827), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1827), + [sym_preproc_directive] = ACTIONS(1829), + [anon_sym_LPAREN2] = ACTIONS(1831), + [anon_sym_STAR] = ACTIONS(1833), + [anon_sym___extension__] = ACTIONS(53), + [anon_sym_extern] = ACTIONS(51), [anon_sym___attribute__] = ACTIONS(33), [anon_sym___scanf] = ACTIONS(35), [anon_sym___printf] = ACTIONS(35), [anon_sym___read_mostly] = ACTIONS(37), [anon_sym___must_hold] = ACTIONS(33), [anon_sym___ro_after_init] = ACTIONS(37), - [anon_sym___init] = ACTIONS(37), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1137), + [anon_sym___noreturn] = ACTIONS(37), + [anon_sym___cold] = ACTIONS(37), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1145), [anon_sym___declspec] = ACTIONS(41), - [anon_sym_signed] = ACTIONS(47), - [anon_sym_unsigned] = ACTIONS(47), - [anon_sym_long] = ACTIONS(47), - [anon_sym_short] = ACTIONS(47), - [anon_sym_static] = ACTIONS(49), - [anon_sym_auto] = ACTIONS(49), - [anon_sym_register] = ACTIONS(49), - [anon_sym_inline] = ACTIONS(49), - [anon_sym___inline] = ACTIONS(49), - [anon_sym___inline__] = ACTIONS(49), - [anon_sym___forceinline] = ACTIONS(49), - [anon_sym_thread_local] = ACTIONS(49), - [anon_sym___thread] = ACTIONS(49), - [anon_sym_const] = ACTIONS(51), - [anon_sym_constexpr] = ACTIONS(51), - [anon_sym_volatile] = ACTIONS(51), - [anon_sym_restrict] = ACTIONS(51), - [anon_sym___restrict__] = ACTIONS(51), - [anon_sym__Atomic] = ACTIONS(51), - [anon_sym__Noreturn] = ACTIONS(51), - [anon_sym_noreturn] = ACTIONS(51), - [anon_sym_alignas] = ACTIONS(53), - [anon_sym__Alignas] = ACTIONS(53), - [sym_primitive_type] = ACTIONS(55), - [anon_sym_enum] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), + [anon_sym___based] = ACTIONS(1835), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_const] = ACTIONS(53), + [anon_sym_constexpr] = ACTIONS(53), + [anon_sym_volatile] = ACTIONS(53), + [anon_sym_restrict] = ACTIONS(53), + [anon_sym___restrict__] = ACTIONS(53), + [anon_sym__Atomic] = ACTIONS(53), + [anon_sym__Noreturn] = ACTIONS(53), + [anon_sym_noreturn] = ACTIONS(53), + [anon_sym_alignas] = ACTIONS(55), + [anon_sym__Alignas] = ACTIONS(55), + [sym_primitive_type] = ACTIONS(57), + [anon_sym_enum] = ACTIONS(59), + [anon_sym_struct] = ACTIONS(61), + [anon_sym_union] = ACTIONS(63), [sym_comment] = ACTIONS(3), }, - [421] = { - [sym_preproc_def] = STATE(414), - [sym_preproc_function_def] = STATE(414), - [sym_preproc_call] = STATE(414), - [sym_preproc_if_in_field_declaration_list] = STATE(414), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(414), - [sym_preproc_else_in_field_declaration_list] = STATE(1893), - [sym_preproc_elif_in_field_declaration_list] = STATE(1893), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(1893), - [sym__declaration_modifiers] = STATE(697), - [sym__declaration_specifiers] = STATE(1141), - [sym_attribute_specifier] = STATE(697), - [sym_attribute_declaration] = STATE(697), - [sym_ms_declspec_modifier] = STATE(697), - [sym_storage_class_specifier] = STATE(697), - [sym_type_qualifier] = STATE(697), - [sym_alignas_qualifier] = STATE(703), - [sym_type_specifier] = STATE(710), - [sym_sized_type_specifier] = STATE(746), - [sym_enum_specifier] = STATE(746), - [sym_struct_specifier] = STATE(746), - [sym_union_specifier] = STATE(746), - [sym__field_declaration_list_item] = STATE(414), - [sym_field_declaration] = STATE(414), - [sym_macro_type_specifier] = STATE(746), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(414), - [aux_sym__declaration_specifiers_repeat1] = STATE(697), - [aux_sym_sized_type_specifier_repeat1] = STATE(747), - [sym_identifier] = ACTIONS(1809), - [aux_sym_preproc_def_token1] = ACTIONS(1811), - [aux_sym_preproc_if_token1] = ACTIONS(1813), - [aux_sym_preproc_if_token2] = ACTIONS(1839), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1817), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1817), - [aux_sym_preproc_else_token1] = ACTIONS(1819), - [aux_sym_preproc_elif_token1] = ACTIONS(1821), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1823), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1823), - [sym_preproc_directive] = ACTIONS(1825), - [anon_sym___extension__] = ACTIONS(51), - [anon_sym_extern] = ACTIONS(49), + [482] = { + [sym_preproc_def] = STATE(492), + [sym_preproc_function_def] = STATE(492), + [sym_preproc_call] = STATE(492), + [sym_preproc_if_in_field_declaration_list] = STATE(492), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(492), + [sym_preproc_else_in_field_declaration_list] = STATE(2181), + [sym_preproc_elif_in_field_declaration_list] = STATE(2181), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(2181), + [sym__declaration_modifiers] = STATE(805), + [sym__declaration_specifiers] = STATE(1264), + [sym_attribute_specifier] = STATE(805), + [sym_attribute_declaration] = STATE(805), + [sym_ms_declspec_modifier] = STATE(805), + [sym_ms_based_modifier] = STATE(2174), + [sym__declarator] = STATE(1666), + [sym_parenthesized_declarator] = STATE(1569), + [sym_attributed_declarator] = STATE(1569), + [sym_pointer_declarator] = STATE(1569), + [sym_function_declarator] = STATE(1569), + [sym_array_declarator] = STATE(1569), + [sym_storage_class_specifier] = STATE(805), + [sym_type_qualifier] = STATE(805), + [sym_alignas_qualifier] = STATE(799), + [sym_type_specifier] = STATE(807), + [sym_sized_type_specifier] = STATE(873), + [sym_enum_specifier] = STATE(873), + [sym_struct_specifier] = STATE(873), + [sym_union_specifier] = STATE(873), + [sym__field_declaration_list_item] = STATE(492), + [sym_macro_invocation] = STATE(492), + [sym_field_declaration] = STATE(492), + [sym_macro_type_specifier] = STATE(873), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(492), + [aux_sym__declaration_specifiers_repeat1] = STATE(805), + [aux_sym_sized_type_specifier_repeat1] = STATE(890), + [sym_identifier] = ACTIONS(1813), + [aux_sym_preproc_def_token1] = ACTIONS(1815), + [aux_sym_preproc_if_token1] = ACTIONS(1817), + [aux_sym_preproc_if_token2] = ACTIONS(1851), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1821), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1821), + [aux_sym_preproc_else_token1] = ACTIONS(1823), + [aux_sym_preproc_elif_token1] = ACTIONS(1825), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1827), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1827), + [sym_preproc_directive] = ACTIONS(1829), + [anon_sym_LPAREN2] = ACTIONS(1831), + [anon_sym_STAR] = ACTIONS(1833), + [anon_sym___extension__] = ACTIONS(53), + [anon_sym_extern] = ACTIONS(51), [anon_sym___attribute__] = ACTIONS(33), [anon_sym___scanf] = ACTIONS(35), [anon_sym___printf] = ACTIONS(35), [anon_sym___read_mostly] = ACTIONS(37), [anon_sym___must_hold] = ACTIONS(33), [anon_sym___ro_after_init] = ACTIONS(37), - [anon_sym___init] = ACTIONS(37), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1137), + [anon_sym___noreturn] = ACTIONS(37), + [anon_sym___cold] = ACTIONS(37), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1145), [anon_sym___declspec] = ACTIONS(41), - [anon_sym_signed] = ACTIONS(47), - [anon_sym_unsigned] = ACTIONS(47), - [anon_sym_long] = ACTIONS(47), - [anon_sym_short] = ACTIONS(47), - [anon_sym_static] = ACTIONS(49), - [anon_sym_auto] = ACTIONS(49), - [anon_sym_register] = ACTIONS(49), - [anon_sym_inline] = ACTIONS(49), - [anon_sym___inline] = ACTIONS(49), - [anon_sym___inline__] = ACTIONS(49), - [anon_sym___forceinline] = ACTIONS(49), - [anon_sym_thread_local] = ACTIONS(49), - [anon_sym___thread] = ACTIONS(49), - [anon_sym_const] = ACTIONS(51), - [anon_sym_constexpr] = ACTIONS(51), - [anon_sym_volatile] = ACTIONS(51), - [anon_sym_restrict] = ACTIONS(51), - [anon_sym___restrict__] = ACTIONS(51), - [anon_sym__Atomic] = ACTIONS(51), - [anon_sym__Noreturn] = ACTIONS(51), - [anon_sym_noreturn] = ACTIONS(51), - [anon_sym_alignas] = ACTIONS(53), - [anon_sym__Alignas] = ACTIONS(53), - [sym_primitive_type] = ACTIONS(55), - [anon_sym_enum] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), + [anon_sym___based] = ACTIONS(1835), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_const] = ACTIONS(53), + [anon_sym_constexpr] = ACTIONS(53), + [anon_sym_volatile] = ACTIONS(53), + [anon_sym_restrict] = ACTIONS(53), + [anon_sym___restrict__] = ACTIONS(53), + [anon_sym__Atomic] = ACTIONS(53), + [anon_sym__Noreturn] = ACTIONS(53), + [anon_sym_noreturn] = ACTIONS(53), + [anon_sym_alignas] = ACTIONS(55), + [anon_sym__Alignas] = ACTIONS(55), + [sym_primitive_type] = ACTIONS(57), + [anon_sym_enum] = ACTIONS(59), + [anon_sym_struct] = ACTIONS(61), + [anon_sym_union] = ACTIONS(63), [sym_comment] = ACTIONS(3), }, - [422] = { - [sym_preproc_def] = STATE(419), - [sym_preproc_function_def] = STATE(419), - [sym_preproc_call] = STATE(419), - [sym_preproc_if_in_field_declaration_list] = STATE(419), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(419), - [sym_preproc_else_in_field_declaration_list] = STATE(1911), - [sym_preproc_elif_in_field_declaration_list] = STATE(1911), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(1911), - [sym__declaration_modifiers] = STATE(697), - [sym__declaration_specifiers] = STATE(1141), - [sym_attribute_specifier] = STATE(697), - [sym_attribute_declaration] = STATE(697), - [sym_ms_declspec_modifier] = STATE(697), - [sym_storage_class_specifier] = STATE(697), - [sym_type_qualifier] = STATE(697), - [sym_alignas_qualifier] = STATE(703), - [sym_type_specifier] = STATE(710), - [sym_sized_type_specifier] = STATE(746), - [sym_enum_specifier] = STATE(746), - [sym_struct_specifier] = STATE(746), - [sym_union_specifier] = STATE(746), - [sym__field_declaration_list_item] = STATE(419), - [sym_field_declaration] = STATE(419), - [sym_macro_type_specifier] = STATE(746), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(419), - [aux_sym__declaration_specifiers_repeat1] = STATE(697), - [aux_sym_sized_type_specifier_repeat1] = STATE(747), - [sym_identifier] = ACTIONS(1809), - [aux_sym_preproc_def_token1] = ACTIONS(1811), - [aux_sym_preproc_if_token1] = ACTIONS(1813), - [aux_sym_preproc_if_token2] = ACTIONS(1841), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1817), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1817), - [aux_sym_preproc_else_token1] = ACTIONS(1819), - [aux_sym_preproc_elif_token1] = ACTIONS(1821), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1823), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1823), - [sym_preproc_directive] = ACTIONS(1825), - [anon_sym___extension__] = ACTIONS(51), - [anon_sym_extern] = ACTIONS(49), + [483] = { + [sym_preproc_def] = STATE(479), + [sym_preproc_function_def] = STATE(479), + [sym_preproc_call] = STATE(479), + [sym_preproc_if_in_field_declaration_list] = STATE(479), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(479), + [sym_preproc_else_in_field_declaration_list] = STATE(2106), + [sym_preproc_elif_in_field_declaration_list] = STATE(2106), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(2106), + [sym__declaration_modifiers] = STATE(805), + [sym__declaration_specifiers] = STATE(1264), + [sym_attribute_specifier] = STATE(805), + [sym_attribute_declaration] = STATE(805), + [sym_ms_declspec_modifier] = STATE(805), + [sym_ms_based_modifier] = STATE(2174), + [sym__declarator] = STATE(1666), + [sym_parenthesized_declarator] = STATE(1569), + [sym_attributed_declarator] = STATE(1569), + [sym_pointer_declarator] = STATE(1569), + [sym_function_declarator] = STATE(1569), + [sym_array_declarator] = STATE(1569), + [sym_storage_class_specifier] = STATE(805), + [sym_type_qualifier] = STATE(805), + [sym_alignas_qualifier] = STATE(799), + [sym_type_specifier] = STATE(807), + [sym_sized_type_specifier] = STATE(873), + [sym_enum_specifier] = STATE(873), + [sym_struct_specifier] = STATE(873), + [sym_union_specifier] = STATE(873), + [sym__field_declaration_list_item] = STATE(479), + [sym_macro_invocation] = STATE(479), + [sym_field_declaration] = STATE(479), + [sym_macro_type_specifier] = STATE(873), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(479), + [aux_sym__declaration_specifiers_repeat1] = STATE(805), + [aux_sym_sized_type_specifier_repeat1] = STATE(890), + [sym_identifier] = ACTIONS(1813), + [aux_sym_preproc_def_token1] = ACTIONS(1815), + [aux_sym_preproc_if_token1] = ACTIONS(1817), + [aux_sym_preproc_if_token2] = ACTIONS(1853), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1821), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1821), + [aux_sym_preproc_else_token1] = ACTIONS(1823), + [aux_sym_preproc_elif_token1] = ACTIONS(1825), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1827), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1827), + [sym_preproc_directive] = ACTIONS(1829), + [anon_sym_LPAREN2] = ACTIONS(1831), + [anon_sym_STAR] = ACTIONS(1833), + [anon_sym___extension__] = ACTIONS(53), + [anon_sym_extern] = ACTIONS(51), [anon_sym___attribute__] = ACTIONS(33), [anon_sym___scanf] = ACTIONS(35), [anon_sym___printf] = ACTIONS(35), [anon_sym___read_mostly] = ACTIONS(37), [anon_sym___must_hold] = ACTIONS(33), [anon_sym___ro_after_init] = ACTIONS(37), - [anon_sym___init] = ACTIONS(37), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1137), + [anon_sym___noreturn] = ACTIONS(37), + [anon_sym___cold] = ACTIONS(37), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1145), [anon_sym___declspec] = ACTIONS(41), - [anon_sym_signed] = ACTIONS(47), - [anon_sym_unsigned] = ACTIONS(47), - [anon_sym_long] = ACTIONS(47), - [anon_sym_short] = ACTIONS(47), - [anon_sym_static] = ACTIONS(49), - [anon_sym_auto] = ACTIONS(49), - [anon_sym_register] = ACTIONS(49), - [anon_sym_inline] = ACTIONS(49), - [anon_sym___inline] = ACTIONS(49), - [anon_sym___inline__] = ACTIONS(49), - [anon_sym___forceinline] = ACTIONS(49), - [anon_sym_thread_local] = ACTIONS(49), - [anon_sym___thread] = ACTIONS(49), - [anon_sym_const] = ACTIONS(51), - [anon_sym_constexpr] = ACTIONS(51), - [anon_sym_volatile] = ACTIONS(51), - [anon_sym_restrict] = ACTIONS(51), - [anon_sym___restrict__] = ACTIONS(51), - [anon_sym__Atomic] = ACTIONS(51), - [anon_sym__Noreturn] = ACTIONS(51), - [anon_sym_noreturn] = ACTIONS(51), - [anon_sym_alignas] = ACTIONS(53), - [anon_sym__Alignas] = ACTIONS(53), - [sym_primitive_type] = ACTIONS(55), - [anon_sym_enum] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), + [anon_sym___based] = ACTIONS(1835), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_const] = ACTIONS(53), + [anon_sym_constexpr] = ACTIONS(53), + [anon_sym_volatile] = ACTIONS(53), + [anon_sym_restrict] = ACTIONS(53), + [anon_sym___restrict__] = ACTIONS(53), + [anon_sym__Atomic] = ACTIONS(53), + [anon_sym__Noreturn] = ACTIONS(53), + [anon_sym_noreturn] = ACTIONS(53), + [anon_sym_alignas] = ACTIONS(55), + [anon_sym__Alignas] = ACTIONS(55), + [sym_primitive_type] = ACTIONS(57), + [anon_sym_enum] = ACTIONS(59), + [anon_sym_struct] = ACTIONS(61), + [anon_sym_union] = ACTIONS(63), [sym_comment] = ACTIONS(3), }, - [423] = { - [sym_preproc_def] = STATE(441), - [sym_preproc_function_def] = STATE(441), - [sym_preproc_call] = STATE(441), - [sym_preproc_if_in_field_declaration_list] = STATE(441), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(441), - [sym_preproc_else_in_field_declaration_list] = STATE(1871), - [sym_preproc_elif_in_field_declaration_list] = STATE(1871), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(1871), - [sym__declaration_modifiers] = STATE(697), - [sym__declaration_specifiers] = STATE(1141), - [sym_attribute_specifier] = STATE(697), - [sym_attribute_declaration] = STATE(697), - [sym_ms_declspec_modifier] = STATE(697), - [sym_storage_class_specifier] = STATE(697), - [sym_type_qualifier] = STATE(697), - [sym_alignas_qualifier] = STATE(703), - [sym_type_specifier] = STATE(710), - [sym_sized_type_specifier] = STATE(746), - [sym_enum_specifier] = STATE(746), - [sym_struct_specifier] = STATE(746), - [sym_union_specifier] = STATE(746), - [sym__field_declaration_list_item] = STATE(441), - [sym_field_declaration] = STATE(441), - [sym_macro_type_specifier] = STATE(746), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(441), - [aux_sym__declaration_specifiers_repeat1] = STATE(697), - [aux_sym_sized_type_specifier_repeat1] = STATE(747), - [sym_identifier] = ACTIONS(1809), - [aux_sym_preproc_def_token1] = ACTIONS(1811), - [aux_sym_preproc_if_token1] = ACTIONS(1813), - [aux_sym_preproc_if_token2] = ACTIONS(1843), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1817), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1817), - [aux_sym_preproc_else_token1] = ACTIONS(1819), - [aux_sym_preproc_elif_token1] = ACTIONS(1821), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1823), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1823), - [sym_preproc_directive] = ACTIONS(1825), - [anon_sym___extension__] = ACTIONS(51), - [anon_sym_extern] = ACTIONS(49), + [484] = { + [sym_preproc_def] = STATE(478), + [sym_preproc_function_def] = STATE(478), + [sym_preproc_call] = STATE(478), + [sym_preproc_if_in_field_declaration_list] = STATE(478), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(478), + [sym_preproc_else_in_field_declaration_list] = STATE(2234), + [sym_preproc_elif_in_field_declaration_list] = STATE(2234), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(2234), + [sym__declaration_modifiers] = STATE(805), + [sym__declaration_specifiers] = STATE(1264), + [sym_attribute_specifier] = STATE(805), + [sym_attribute_declaration] = STATE(805), + [sym_ms_declspec_modifier] = STATE(805), + [sym_ms_based_modifier] = STATE(2174), + [sym__declarator] = STATE(1666), + [sym_parenthesized_declarator] = STATE(1569), + [sym_attributed_declarator] = STATE(1569), + [sym_pointer_declarator] = STATE(1569), + [sym_function_declarator] = STATE(1569), + [sym_array_declarator] = STATE(1569), + [sym_storage_class_specifier] = STATE(805), + [sym_type_qualifier] = STATE(805), + [sym_alignas_qualifier] = STATE(799), + [sym_type_specifier] = STATE(807), + [sym_sized_type_specifier] = STATE(873), + [sym_enum_specifier] = STATE(873), + [sym_struct_specifier] = STATE(873), + [sym_union_specifier] = STATE(873), + [sym__field_declaration_list_item] = STATE(478), + [sym_macro_invocation] = STATE(478), + [sym_field_declaration] = STATE(478), + [sym_macro_type_specifier] = STATE(873), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(478), + [aux_sym__declaration_specifiers_repeat1] = STATE(805), + [aux_sym_sized_type_specifier_repeat1] = STATE(890), + [sym_identifier] = ACTIONS(1813), + [aux_sym_preproc_def_token1] = ACTIONS(1815), + [aux_sym_preproc_if_token1] = ACTIONS(1817), + [aux_sym_preproc_if_token2] = ACTIONS(1855), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1821), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1821), + [aux_sym_preproc_else_token1] = ACTIONS(1823), + [aux_sym_preproc_elif_token1] = ACTIONS(1825), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1827), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1827), + [sym_preproc_directive] = ACTIONS(1829), + [anon_sym_LPAREN2] = ACTIONS(1831), + [anon_sym_STAR] = ACTIONS(1833), + [anon_sym___extension__] = ACTIONS(53), + [anon_sym_extern] = ACTIONS(51), [anon_sym___attribute__] = ACTIONS(33), [anon_sym___scanf] = ACTIONS(35), [anon_sym___printf] = ACTIONS(35), [anon_sym___read_mostly] = ACTIONS(37), [anon_sym___must_hold] = ACTIONS(33), [anon_sym___ro_after_init] = ACTIONS(37), - [anon_sym___init] = ACTIONS(37), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1137), + [anon_sym___noreturn] = ACTIONS(37), + [anon_sym___cold] = ACTIONS(37), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1145), [anon_sym___declspec] = ACTIONS(41), - [anon_sym_signed] = ACTIONS(47), - [anon_sym_unsigned] = ACTIONS(47), - [anon_sym_long] = ACTIONS(47), - [anon_sym_short] = ACTIONS(47), - [anon_sym_static] = ACTIONS(49), - [anon_sym_auto] = ACTIONS(49), - [anon_sym_register] = ACTIONS(49), - [anon_sym_inline] = ACTIONS(49), - [anon_sym___inline] = ACTIONS(49), - [anon_sym___inline__] = ACTIONS(49), - [anon_sym___forceinline] = ACTIONS(49), - [anon_sym_thread_local] = ACTIONS(49), - [anon_sym___thread] = ACTIONS(49), - [anon_sym_const] = ACTIONS(51), - [anon_sym_constexpr] = ACTIONS(51), - [anon_sym_volatile] = ACTIONS(51), - [anon_sym_restrict] = ACTIONS(51), - [anon_sym___restrict__] = ACTIONS(51), - [anon_sym__Atomic] = ACTIONS(51), - [anon_sym__Noreturn] = ACTIONS(51), - [anon_sym_noreturn] = ACTIONS(51), - [anon_sym_alignas] = ACTIONS(53), - [anon_sym__Alignas] = ACTIONS(53), - [sym_primitive_type] = ACTIONS(55), - [anon_sym_enum] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), + [anon_sym___based] = ACTIONS(1835), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_const] = ACTIONS(53), + [anon_sym_constexpr] = ACTIONS(53), + [anon_sym_volatile] = ACTIONS(53), + [anon_sym_restrict] = ACTIONS(53), + [anon_sym___restrict__] = ACTIONS(53), + [anon_sym__Atomic] = ACTIONS(53), + [anon_sym__Noreturn] = ACTIONS(53), + [anon_sym_noreturn] = ACTIONS(53), + [anon_sym_alignas] = ACTIONS(55), + [anon_sym__Alignas] = ACTIONS(55), + [sym_primitive_type] = ACTIONS(57), + [anon_sym_enum] = ACTIONS(59), + [anon_sym_struct] = ACTIONS(61), + [anon_sym_union] = ACTIONS(63), [sym_comment] = ACTIONS(3), }, - [424] = { - [sym_preproc_def] = STATE(423), - [sym_preproc_function_def] = STATE(423), - [sym_preproc_call] = STATE(423), - [sym_preproc_if_in_field_declaration_list] = STATE(423), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(423), - [sym_preproc_else_in_field_declaration_list] = STATE(1874), - [sym_preproc_elif_in_field_declaration_list] = STATE(1874), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(1874), - [sym__declaration_modifiers] = STATE(697), - [sym__declaration_specifiers] = STATE(1141), - [sym_attribute_specifier] = STATE(697), - [sym_attribute_declaration] = STATE(697), - [sym_ms_declspec_modifier] = STATE(697), - [sym_storage_class_specifier] = STATE(697), - [sym_type_qualifier] = STATE(697), - [sym_alignas_qualifier] = STATE(703), - [sym_type_specifier] = STATE(710), - [sym_sized_type_specifier] = STATE(746), - [sym_enum_specifier] = STATE(746), - [sym_struct_specifier] = STATE(746), - [sym_union_specifier] = STATE(746), - [sym__field_declaration_list_item] = STATE(423), - [sym_field_declaration] = STATE(423), - [sym_macro_type_specifier] = STATE(746), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(423), - [aux_sym__declaration_specifiers_repeat1] = STATE(697), - [aux_sym_sized_type_specifier_repeat1] = STATE(747), - [sym_identifier] = ACTIONS(1809), - [aux_sym_preproc_def_token1] = ACTIONS(1811), - [aux_sym_preproc_if_token1] = ACTIONS(1813), - [aux_sym_preproc_if_token2] = ACTIONS(1845), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1817), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1817), - [aux_sym_preproc_else_token1] = ACTIONS(1819), - [aux_sym_preproc_elif_token1] = ACTIONS(1821), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1823), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1823), - [sym_preproc_directive] = ACTIONS(1825), - [anon_sym___extension__] = ACTIONS(51), - [anon_sym_extern] = ACTIONS(49), + [485] = { + [sym_preproc_def] = STATE(492), + [sym_preproc_function_def] = STATE(492), + [sym_preproc_call] = STATE(492), + [sym_preproc_if_in_field_declaration_list] = STATE(492), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(492), + [sym_preproc_else_in_field_declaration_list] = STATE(2237), + [sym_preproc_elif_in_field_declaration_list] = STATE(2237), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(2237), + [sym__declaration_modifiers] = STATE(805), + [sym__declaration_specifiers] = STATE(1264), + [sym_attribute_specifier] = STATE(805), + [sym_attribute_declaration] = STATE(805), + [sym_ms_declspec_modifier] = STATE(805), + [sym_ms_based_modifier] = STATE(2174), + [sym__declarator] = STATE(1666), + [sym_parenthesized_declarator] = STATE(1569), + [sym_attributed_declarator] = STATE(1569), + [sym_pointer_declarator] = STATE(1569), + [sym_function_declarator] = STATE(1569), + [sym_array_declarator] = STATE(1569), + [sym_storage_class_specifier] = STATE(805), + [sym_type_qualifier] = STATE(805), + [sym_alignas_qualifier] = STATE(799), + [sym_type_specifier] = STATE(807), + [sym_sized_type_specifier] = STATE(873), + [sym_enum_specifier] = STATE(873), + [sym_struct_specifier] = STATE(873), + [sym_union_specifier] = STATE(873), + [sym__field_declaration_list_item] = STATE(492), + [sym_macro_invocation] = STATE(492), + [sym_field_declaration] = STATE(492), + [sym_macro_type_specifier] = STATE(873), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(492), + [aux_sym__declaration_specifiers_repeat1] = STATE(805), + [aux_sym_sized_type_specifier_repeat1] = STATE(890), + [sym_identifier] = ACTIONS(1813), + [aux_sym_preproc_def_token1] = ACTIONS(1815), + [aux_sym_preproc_if_token1] = ACTIONS(1817), + [aux_sym_preproc_if_token2] = ACTIONS(1857), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1821), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1821), + [aux_sym_preproc_else_token1] = ACTIONS(1823), + [aux_sym_preproc_elif_token1] = ACTIONS(1825), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1827), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1827), + [sym_preproc_directive] = ACTIONS(1829), + [anon_sym_LPAREN2] = ACTIONS(1831), + [anon_sym_STAR] = ACTIONS(1833), + [anon_sym___extension__] = ACTIONS(53), + [anon_sym_extern] = ACTIONS(51), [anon_sym___attribute__] = ACTIONS(33), [anon_sym___scanf] = ACTIONS(35), [anon_sym___printf] = ACTIONS(35), [anon_sym___read_mostly] = ACTIONS(37), [anon_sym___must_hold] = ACTIONS(33), [anon_sym___ro_after_init] = ACTIONS(37), - [anon_sym___init] = ACTIONS(37), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1137), + [anon_sym___noreturn] = ACTIONS(37), + [anon_sym___cold] = ACTIONS(37), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1145), [anon_sym___declspec] = ACTIONS(41), - [anon_sym_signed] = ACTIONS(47), - [anon_sym_unsigned] = ACTIONS(47), - [anon_sym_long] = ACTIONS(47), - [anon_sym_short] = ACTIONS(47), - [anon_sym_static] = ACTIONS(49), - [anon_sym_auto] = ACTIONS(49), - [anon_sym_register] = ACTIONS(49), - [anon_sym_inline] = ACTIONS(49), - [anon_sym___inline] = ACTIONS(49), - [anon_sym___inline__] = ACTIONS(49), - [anon_sym___forceinline] = ACTIONS(49), - [anon_sym_thread_local] = ACTIONS(49), - [anon_sym___thread] = ACTIONS(49), - [anon_sym_const] = ACTIONS(51), - [anon_sym_constexpr] = ACTIONS(51), - [anon_sym_volatile] = ACTIONS(51), - [anon_sym_restrict] = ACTIONS(51), - [anon_sym___restrict__] = ACTIONS(51), - [anon_sym__Atomic] = ACTIONS(51), - [anon_sym__Noreturn] = ACTIONS(51), - [anon_sym_noreturn] = ACTIONS(51), - [anon_sym_alignas] = ACTIONS(53), - [anon_sym__Alignas] = ACTIONS(53), - [sym_primitive_type] = ACTIONS(55), - [anon_sym_enum] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), + [anon_sym___based] = ACTIONS(1835), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_const] = ACTIONS(53), + [anon_sym_constexpr] = ACTIONS(53), + [anon_sym_volatile] = ACTIONS(53), + [anon_sym_restrict] = ACTIONS(53), + [anon_sym___restrict__] = ACTIONS(53), + [anon_sym__Atomic] = ACTIONS(53), + [anon_sym__Noreturn] = ACTIONS(53), + [anon_sym_noreturn] = ACTIONS(53), + [anon_sym_alignas] = ACTIONS(55), + [anon_sym__Alignas] = ACTIONS(55), + [sym_primitive_type] = ACTIONS(57), + [anon_sym_enum] = ACTIONS(59), + [anon_sym_struct] = ACTIONS(61), + [anon_sym_union] = ACTIONS(63), [sym_comment] = ACTIONS(3), }, - [425] = { - [sym_preproc_def] = STATE(441), - [sym_preproc_function_def] = STATE(441), - [sym_preproc_call] = STATE(441), - [sym_preproc_if_in_field_declaration_list] = STATE(441), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(441), - [sym_preproc_else_in_field_declaration_list] = STATE(1820), - [sym_preproc_elif_in_field_declaration_list] = STATE(1820), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(1820), - [sym__declaration_modifiers] = STATE(697), - [sym__declaration_specifiers] = STATE(1141), - [sym_attribute_specifier] = STATE(697), - [sym_attribute_declaration] = STATE(697), - [sym_ms_declspec_modifier] = STATE(697), - [sym_storage_class_specifier] = STATE(697), - [sym_type_qualifier] = STATE(697), - [sym_alignas_qualifier] = STATE(703), - [sym_type_specifier] = STATE(710), - [sym_sized_type_specifier] = STATE(746), - [sym_enum_specifier] = STATE(746), - [sym_struct_specifier] = STATE(746), - [sym_union_specifier] = STATE(746), - [sym__field_declaration_list_item] = STATE(441), - [sym_field_declaration] = STATE(441), - [sym_macro_type_specifier] = STATE(746), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(441), - [aux_sym__declaration_specifiers_repeat1] = STATE(697), - [aux_sym_sized_type_specifier_repeat1] = STATE(747), - [sym_identifier] = ACTIONS(1809), - [aux_sym_preproc_def_token1] = ACTIONS(1811), - [aux_sym_preproc_if_token1] = ACTIONS(1813), - [aux_sym_preproc_if_token2] = ACTIONS(1847), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1817), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1817), - [aux_sym_preproc_else_token1] = ACTIONS(1819), - [aux_sym_preproc_elif_token1] = ACTIONS(1821), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1823), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1823), - [sym_preproc_directive] = ACTIONS(1825), - [anon_sym___extension__] = ACTIONS(51), - [anon_sym_extern] = ACTIONS(49), + [486] = { + [sym_preproc_def] = STATE(492), + [sym_preproc_function_def] = STATE(492), + [sym_preproc_call] = STATE(492), + [sym_preproc_if_in_field_declaration_list] = STATE(492), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(492), + [sym_preproc_else_in_field_declaration_list] = STATE(2302), + [sym_preproc_elif_in_field_declaration_list] = STATE(2302), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(2302), + [sym__declaration_modifiers] = STATE(805), + [sym__declaration_specifiers] = STATE(1264), + [sym_attribute_specifier] = STATE(805), + [sym_attribute_declaration] = STATE(805), + [sym_ms_declspec_modifier] = STATE(805), + [sym_ms_based_modifier] = STATE(2174), + [sym__declarator] = STATE(1666), + [sym_parenthesized_declarator] = STATE(1569), + [sym_attributed_declarator] = STATE(1569), + [sym_pointer_declarator] = STATE(1569), + [sym_function_declarator] = STATE(1569), + [sym_array_declarator] = STATE(1569), + [sym_storage_class_specifier] = STATE(805), + [sym_type_qualifier] = STATE(805), + [sym_alignas_qualifier] = STATE(799), + [sym_type_specifier] = STATE(807), + [sym_sized_type_specifier] = STATE(873), + [sym_enum_specifier] = STATE(873), + [sym_struct_specifier] = STATE(873), + [sym_union_specifier] = STATE(873), + [sym__field_declaration_list_item] = STATE(492), + [sym_macro_invocation] = STATE(492), + [sym_field_declaration] = STATE(492), + [sym_macro_type_specifier] = STATE(873), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(492), + [aux_sym__declaration_specifiers_repeat1] = STATE(805), + [aux_sym_sized_type_specifier_repeat1] = STATE(890), + [sym_identifier] = ACTIONS(1813), + [aux_sym_preproc_def_token1] = ACTIONS(1815), + [aux_sym_preproc_if_token1] = ACTIONS(1817), + [aux_sym_preproc_if_token2] = ACTIONS(1859), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1821), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1821), + [aux_sym_preproc_else_token1] = ACTIONS(1823), + [aux_sym_preproc_elif_token1] = ACTIONS(1825), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1827), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1827), + [sym_preproc_directive] = ACTIONS(1829), + [anon_sym_LPAREN2] = ACTIONS(1831), + [anon_sym_STAR] = ACTIONS(1833), + [anon_sym___extension__] = ACTIONS(53), + [anon_sym_extern] = ACTIONS(51), [anon_sym___attribute__] = ACTIONS(33), [anon_sym___scanf] = ACTIONS(35), [anon_sym___printf] = ACTIONS(35), [anon_sym___read_mostly] = ACTIONS(37), [anon_sym___must_hold] = ACTIONS(33), [anon_sym___ro_after_init] = ACTIONS(37), - [anon_sym___init] = ACTIONS(37), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1137), + [anon_sym___noreturn] = ACTIONS(37), + [anon_sym___cold] = ACTIONS(37), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1145), [anon_sym___declspec] = ACTIONS(41), - [anon_sym_signed] = ACTIONS(47), - [anon_sym_unsigned] = ACTIONS(47), - [anon_sym_long] = ACTIONS(47), - [anon_sym_short] = ACTIONS(47), - [anon_sym_static] = ACTIONS(49), - [anon_sym_auto] = ACTIONS(49), - [anon_sym_register] = ACTIONS(49), - [anon_sym_inline] = ACTIONS(49), - [anon_sym___inline] = ACTIONS(49), - [anon_sym___inline__] = ACTIONS(49), - [anon_sym___forceinline] = ACTIONS(49), - [anon_sym_thread_local] = ACTIONS(49), - [anon_sym___thread] = ACTIONS(49), - [anon_sym_const] = ACTIONS(51), - [anon_sym_constexpr] = ACTIONS(51), - [anon_sym_volatile] = ACTIONS(51), - [anon_sym_restrict] = ACTIONS(51), - [anon_sym___restrict__] = ACTIONS(51), - [anon_sym__Atomic] = ACTIONS(51), - [anon_sym__Noreturn] = ACTIONS(51), - [anon_sym_noreturn] = ACTIONS(51), - [anon_sym_alignas] = ACTIONS(53), - [anon_sym__Alignas] = ACTIONS(53), - [sym_primitive_type] = ACTIONS(55), - [anon_sym_enum] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), + [anon_sym___based] = ACTIONS(1835), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_const] = ACTIONS(53), + [anon_sym_constexpr] = ACTIONS(53), + [anon_sym_volatile] = ACTIONS(53), + [anon_sym_restrict] = ACTIONS(53), + [anon_sym___restrict__] = ACTIONS(53), + [anon_sym__Atomic] = ACTIONS(53), + [anon_sym__Noreturn] = ACTIONS(53), + [anon_sym_noreturn] = ACTIONS(53), + [anon_sym_alignas] = ACTIONS(55), + [anon_sym__Alignas] = ACTIONS(55), + [sym_primitive_type] = ACTIONS(57), + [anon_sym_enum] = ACTIONS(59), + [anon_sym_struct] = ACTIONS(61), + [anon_sym_union] = ACTIONS(63), [sym_comment] = ACTIONS(3), }, - [426] = { - [sym_preproc_def] = STATE(420), - [sym_preproc_function_def] = STATE(420), - [sym_preproc_call] = STATE(420), - [sym_preproc_if_in_field_declaration_list] = STATE(420), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(420), - [sym_preproc_else_in_field_declaration_list] = STATE(1933), - [sym_preproc_elif_in_field_declaration_list] = STATE(1933), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(1933), - [sym__declaration_modifiers] = STATE(697), - [sym__declaration_specifiers] = STATE(1141), - [sym_attribute_specifier] = STATE(697), - [sym_attribute_declaration] = STATE(697), - [sym_ms_declspec_modifier] = STATE(697), - [sym_storage_class_specifier] = STATE(697), - [sym_type_qualifier] = STATE(697), - [sym_alignas_qualifier] = STATE(703), - [sym_type_specifier] = STATE(710), - [sym_sized_type_specifier] = STATE(746), - [sym_enum_specifier] = STATE(746), - [sym_struct_specifier] = STATE(746), - [sym_union_specifier] = STATE(746), - [sym__field_declaration_list_item] = STATE(420), - [sym_field_declaration] = STATE(420), - [sym_macro_type_specifier] = STATE(746), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(420), - [aux_sym__declaration_specifiers_repeat1] = STATE(697), - [aux_sym_sized_type_specifier_repeat1] = STATE(747), - [sym_identifier] = ACTIONS(1809), - [aux_sym_preproc_def_token1] = ACTIONS(1811), - [aux_sym_preproc_if_token1] = ACTIONS(1813), - [aux_sym_preproc_if_token2] = ACTIONS(1849), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1817), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1817), - [aux_sym_preproc_else_token1] = ACTIONS(1819), - [aux_sym_preproc_elif_token1] = ACTIONS(1821), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1823), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1823), - [sym_preproc_directive] = ACTIONS(1825), - [anon_sym___extension__] = ACTIONS(51), - [anon_sym_extern] = ACTIONS(49), + [487] = { + [sym_preproc_def] = STATE(492), + [sym_preproc_function_def] = STATE(492), + [sym_preproc_call] = STATE(492), + [sym_preproc_if_in_field_declaration_list] = STATE(492), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(492), + [sym_preproc_else_in_field_declaration_list] = STATE(2301), + [sym_preproc_elif_in_field_declaration_list] = STATE(2301), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(2301), + [sym__declaration_modifiers] = STATE(805), + [sym__declaration_specifiers] = STATE(1264), + [sym_attribute_specifier] = STATE(805), + [sym_attribute_declaration] = STATE(805), + [sym_ms_declspec_modifier] = STATE(805), + [sym_ms_based_modifier] = STATE(2174), + [sym__declarator] = STATE(1666), + [sym_parenthesized_declarator] = STATE(1569), + [sym_attributed_declarator] = STATE(1569), + [sym_pointer_declarator] = STATE(1569), + [sym_function_declarator] = STATE(1569), + [sym_array_declarator] = STATE(1569), + [sym_storage_class_specifier] = STATE(805), + [sym_type_qualifier] = STATE(805), + [sym_alignas_qualifier] = STATE(799), + [sym_type_specifier] = STATE(807), + [sym_sized_type_specifier] = STATE(873), + [sym_enum_specifier] = STATE(873), + [sym_struct_specifier] = STATE(873), + [sym_union_specifier] = STATE(873), + [sym__field_declaration_list_item] = STATE(492), + [sym_macro_invocation] = STATE(492), + [sym_field_declaration] = STATE(492), + [sym_macro_type_specifier] = STATE(873), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(492), + [aux_sym__declaration_specifiers_repeat1] = STATE(805), + [aux_sym_sized_type_specifier_repeat1] = STATE(890), + [sym_identifier] = ACTIONS(1813), + [aux_sym_preproc_def_token1] = ACTIONS(1815), + [aux_sym_preproc_if_token1] = ACTIONS(1817), + [aux_sym_preproc_if_token2] = ACTIONS(1861), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1821), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1821), + [aux_sym_preproc_else_token1] = ACTIONS(1823), + [aux_sym_preproc_elif_token1] = ACTIONS(1825), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1827), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1827), + [sym_preproc_directive] = ACTIONS(1829), + [anon_sym_LPAREN2] = ACTIONS(1831), + [anon_sym_STAR] = ACTIONS(1833), + [anon_sym___extension__] = ACTIONS(53), + [anon_sym_extern] = ACTIONS(51), [anon_sym___attribute__] = ACTIONS(33), [anon_sym___scanf] = ACTIONS(35), [anon_sym___printf] = ACTIONS(35), [anon_sym___read_mostly] = ACTIONS(37), [anon_sym___must_hold] = ACTIONS(33), [anon_sym___ro_after_init] = ACTIONS(37), - [anon_sym___init] = ACTIONS(37), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1137), + [anon_sym___noreturn] = ACTIONS(37), + [anon_sym___cold] = ACTIONS(37), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1145), [anon_sym___declspec] = ACTIONS(41), - [anon_sym_signed] = ACTIONS(47), - [anon_sym_unsigned] = ACTIONS(47), - [anon_sym_long] = ACTIONS(47), - [anon_sym_short] = ACTIONS(47), - [anon_sym_static] = ACTIONS(49), - [anon_sym_auto] = ACTIONS(49), - [anon_sym_register] = ACTIONS(49), - [anon_sym_inline] = ACTIONS(49), - [anon_sym___inline] = ACTIONS(49), - [anon_sym___inline__] = ACTIONS(49), - [anon_sym___forceinline] = ACTIONS(49), - [anon_sym_thread_local] = ACTIONS(49), - [anon_sym___thread] = ACTIONS(49), - [anon_sym_const] = ACTIONS(51), - [anon_sym_constexpr] = ACTIONS(51), - [anon_sym_volatile] = ACTIONS(51), - [anon_sym_restrict] = ACTIONS(51), - [anon_sym___restrict__] = ACTIONS(51), - [anon_sym__Atomic] = ACTIONS(51), - [anon_sym__Noreturn] = ACTIONS(51), - [anon_sym_noreturn] = ACTIONS(51), - [anon_sym_alignas] = ACTIONS(53), - [anon_sym__Alignas] = ACTIONS(53), - [sym_primitive_type] = ACTIONS(55), - [anon_sym_enum] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), + [anon_sym___based] = ACTIONS(1835), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_const] = ACTIONS(53), + [anon_sym_constexpr] = ACTIONS(53), + [anon_sym_volatile] = ACTIONS(53), + [anon_sym_restrict] = ACTIONS(53), + [anon_sym___restrict__] = ACTIONS(53), + [anon_sym__Atomic] = ACTIONS(53), + [anon_sym__Noreturn] = ACTIONS(53), + [anon_sym_noreturn] = ACTIONS(53), + [anon_sym_alignas] = ACTIONS(55), + [anon_sym__Alignas] = ACTIONS(55), + [sym_primitive_type] = ACTIONS(57), + [anon_sym_enum] = ACTIONS(59), + [anon_sym_struct] = ACTIONS(61), + [anon_sym_union] = ACTIONS(63), [sym_comment] = ACTIONS(3), }, - [427] = { - [sym_preproc_def] = STATE(429), - [sym_preproc_function_def] = STATE(429), - [sym_preproc_call] = STATE(429), - [sym_preproc_if_in_field_declaration_list] = STATE(429), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(429), - [sym_preproc_else_in_field_declaration_list] = STATE(1822), - [sym_preproc_elif_in_field_declaration_list] = STATE(1822), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(1822), - [sym__declaration_modifiers] = STATE(697), - [sym__declaration_specifiers] = STATE(1141), - [sym_attribute_specifier] = STATE(697), - [sym_attribute_declaration] = STATE(697), - [sym_ms_declspec_modifier] = STATE(697), - [sym_storage_class_specifier] = STATE(697), - [sym_type_qualifier] = STATE(697), - [sym_alignas_qualifier] = STATE(703), - [sym_type_specifier] = STATE(710), - [sym_sized_type_specifier] = STATE(746), - [sym_enum_specifier] = STATE(746), - [sym_struct_specifier] = STATE(746), - [sym_union_specifier] = STATE(746), - [sym__field_declaration_list_item] = STATE(429), - [sym_field_declaration] = STATE(429), - [sym_macro_type_specifier] = STATE(746), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(429), - [aux_sym__declaration_specifiers_repeat1] = STATE(697), - [aux_sym_sized_type_specifier_repeat1] = STATE(747), - [sym_identifier] = ACTIONS(1809), - [aux_sym_preproc_def_token1] = ACTIONS(1811), - [aux_sym_preproc_if_token1] = ACTIONS(1813), - [aux_sym_preproc_if_token2] = ACTIONS(1851), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1817), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1817), - [aux_sym_preproc_else_token1] = ACTIONS(1819), - [aux_sym_preproc_elif_token1] = ACTIONS(1821), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1823), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1823), - [sym_preproc_directive] = ACTIONS(1825), - [anon_sym___extension__] = ACTIONS(51), - [anon_sym_extern] = ACTIONS(49), + [488] = { + [sym_preproc_def] = STATE(487), + [sym_preproc_function_def] = STATE(487), + [sym_preproc_call] = STATE(487), + [sym_preproc_if_in_field_declaration_list] = STATE(487), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(487), + [sym_preproc_else_in_field_declaration_list] = STATE(2304), + [sym_preproc_elif_in_field_declaration_list] = STATE(2304), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(2304), + [sym__declaration_modifiers] = STATE(805), + [sym__declaration_specifiers] = STATE(1264), + [sym_attribute_specifier] = STATE(805), + [sym_attribute_declaration] = STATE(805), + [sym_ms_declspec_modifier] = STATE(805), + [sym_ms_based_modifier] = STATE(2174), + [sym__declarator] = STATE(1666), + [sym_parenthesized_declarator] = STATE(1569), + [sym_attributed_declarator] = STATE(1569), + [sym_pointer_declarator] = STATE(1569), + [sym_function_declarator] = STATE(1569), + [sym_array_declarator] = STATE(1569), + [sym_storage_class_specifier] = STATE(805), + [sym_type_qualifier] = STATE(805), + [sym_alignas_qualifier] = STATE(799), + [sym_type_specifier] = STATE(807), + [sym_sized_type_specifier] = STATE(873), + [sym_enum_specifier] = STATE(873), + [sym_struct_specifier] = STATE(873), + [sym_union_specifier] = STATE(873), + [sym__field_declaration_list_item] = STATE(487), + [sym_macro_invocation] = STATE(487), + [sym_field_declaration] = STATE(487), + [sym_macro_type_specifier] = STATE(873), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(487), + [aux_sym__declaration_specifiers_repeat1] = STATE(805), + [aux_sym_sized_type_specifier_repeat1] = STATE(890), + [sym_identifier] = ACTIONS(1813), + [aux_sym_preproc_def_token1] = ACTIONS(1815), + [aux_sym_preproc_if_token1] = ACTIONS(1817), + [aux_sym_preproc_if_token2] = ACTIONS(1863), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1821), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1821), + [aux_sym_preproc_else_token1] = ACTIONS(1823), + [aux_sym_preproc_elif_token1] = ACTIONS(1825), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1827), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1827), + [sym_preproc_directive] = ACTIONS(1829), + [anon_sym_LPAREN2] = ACTIONS(1831), + [anon_sym_STAR] = ACTIONS(1833), + [anon_sym___extension__] = ACTIONS(53), + [anon_sym_extern] = ACTIONS(51), [anon_sym___attribute__] = ACTIONS(33), [anon_sym___scanf] = ACTIONS(35), [anon_sym___printf] = ACTIONS(35), [anon_sym___read_mostly] = ACTIONS(37), [anon_sym___must_hold] = ACTIONS(33), [anon_sym___ro_after_init] = ACTIONS(37), - [anon_sym___init] = ACTIONS(37), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1137), + [anon_sym___noreturn] = ACTIONS(37), + [anon_sym___cold] = ACTIONS(37), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1145), [anon_sym___declspec] = ACTIONS(41), - [anon_sym_signed] = ACTIONS(47), - [anon_sym_unsigned] = ACTIONS(47), - [anon_sym_long] = ACTIONS(47), - [anon_sym_short] = ACTIONS(47), - [anon_sym_static] = ACTIONS(49), - [anon_sym_auto] = ACTIONS(49), - [anon_sym_register] = ACTIONS(49), - [anon_sym_inline] = ACTIONS(49), - [anon_sym___inline] = ACTIONS(49), - [anon_sym___inline__] = ACTIONS(49), - [anon_sym___forceinline] = ACTIONS(49), - [anon_sym_thread_local] = ACTIONS(49), - [anon_sym___thread] = ACTIONS(49), - [anon_sym_const] = ACTIONS(51), - [anon_sym_constexpr] = ACTIONS(51), - [anon_sym_volatile] = ACTIONS(51), - [anon_sym_restrict] = ACTIONS(51), - [anon_sym___restrict__] = ACTIONS(51), - [anon_sym__Atomic] = ACTIONS(51), - [anon_sym__Noreturn] = ACTIONS(51), - [anon_sym_noreturn] = ACTIONS(51), - [anon_sym_alignas] = ACTIONS(53), - [anon_sym__Alignas] = ACTIONS(53), - [sym_primitive_type] = ACTIONS(55), - [anon_sym_enum] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), + [anon_sym___based] = ACTIONS(1835), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_const] = ACTIONS(53), + [anon_sym_constexpr] = ACTIONS(53), + [anon_sym_volatile] = ACTIONS(53), + [anon_sym_restrict] = ACTIONS(53), + [anon_sym___restrict__] = ACTIONS(53), + [anon_sym__Atomic] = ACTIONS(53), + [anon_sym__Noreturn] = ACTIONS(53), + [anon_sym_noreturn] = ACTIONS(53), + [anon_sym_alignas] = ACTIONS(55), + [anon_sym__Alignas] = ACTIONS(55), + [sym_primitive_type] = ACTIONS(57), + [anon_sym_enum] = ACTIONS(59), + [anon_sym_struct] = ACTIONS(61), + [anon_sym_union] = ACTIONS(63), [sym_comment] = ACTIONS(3), }, - [428] = { - [sym_preproc_def] = STATE(415), - [sym_preproc_function_def] = STATE(415), - [sym_preproc_call] = STATE(415), - [sym_preproc_if_in_field_declaration_list] = STATE(415), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(415), - [sym_preproc_else_in_field_declaration_list] = STATE(1887), - [sym_preproc_elif_in_field_declaration_list] = STATE(1887), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(1887), - [sym__declaration_modifiers] = STATE(697), - [sym__declaration_specifiers] = STATE(1141), - [sym_attribute_specifier] = STATE(697), - [sym_attribute_declaration] = STATE(697), - [sym_ms_declspec_modifier] = STATE(697), - [sym_storage_class_specifier] = STATE(697), - [sym_type_qualifier] = STATE(697), - [sym_alignas_qualifier] = STATE(703), - [sym_type_specifier] = STATE(710), - [sym_sized_type_specifier] = STATE(746), - [sym_enum_specifier] = STATE(746), - [sym_struct_specifier] = STATE(746), - [sym_union_specifier] = STATE(746), - [sym__field_declaration_list_item] = STATE(415), - [sym_field_declaration] = STATE(415), - [sym_macro_type_specifier] = STATE(746), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(415), - [aux_sym__declaration_specifiers_repeat1] = STATE(697), - [aux_sym_sized_type_specifier_repeat1] = STATE(747), - [sym_identifier] = ACTIONS(1809), - [aux_sym_preproc_def_token1] = ACTIONS(1811), - [aux_sym_preproc_if_token1] = ACTIONS(1813), - [aux_sym_preproc_if_token2] = ACTIONS(1853), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1817), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1817), - [aux_sym_preproc_else_token1] = ACTIONS(1819), - [aux_sym_preproc_elif_token1] = ACTIONS(1821), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1823), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1823), - [sym_preproc_directive] = ACTIONS(1825), - [anon_sym___extension__] = ACTIONS(51), - [anon_sym_extern] = ACTIONS(49), + [489] = { + [sym_type_qualifier] = STATE(1135), + [sym_alignas_qualifier] = STATE(799), + [sym_type_specifier] = STATE(1220), + [sym_sized_type_specifier] = STATE(873), + [sym_enum_specifier] = STATE(873), + [sym_struct_specifier] = STATE(873), + [sym_union_specifier] = STATE(873), + [sym_expression] = STATE(1205), + [sym__string] = STATE(758), + [sym_conditional_expression] = STATE(758), + [sym_assignment_expression] = STATE(758), + [sym_pointer_expression] = STATE(944), + [sym_unary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_cast_expression] = STATE(758), + [sym_type_descriptor] = STATE(2054), + [sym_sizeof_expression] = STATE(758), + [sym_alignof_expression] = STATE(758), + [sym_offsetof_expression] = STATE(758), + [sym_generic_expression] = STATE(758), + [sym_subscript_expression] = STATE(944), + [sym_call_expression] = STATE(944), + [sym_gnu_asm_expression] = STATE(758), + [sym_field_expression] = STATE(944), + [sym_compound_literal_expression] = STATE(758), + [sym_parenthesized_expression] = STATE(944), + [sym_char_literal] = STATE(758), + [sym_concatenated_string] = STATE(758), + [sym_string_literal] = STATE(671), + [sym_null] = STATE(758), + [sym_macro_type_specifier] = STATE(873), + [aux_sym__type_definition_type_repeat1] = STATE(1135), + [aux_sym_sized_type_specifier_repeat1] = STATE(1246), + [sym_identifier] = ACTIONS(1795), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym___extension__] = ACTIONS(53), + [anon_sym_signed] = ACTIONS(1797), + [anon_sym_unsigned] = ACTIONS(1797), + [anon_sym_long] = ACTIONS(1797), + [anon_sym_short] = ACTIONS(1797), + [anon_sym_const] = ACTIONS(53), + [anon_sym_constexpr] = ACTIONS(53), + [anon_sym_volatile] = ACTIONS(53), + [anon_sym_restrict] = ACTIONS(53), + [anon_sym___restrict__] = ACTIONS(53), + [anon_sym__Atomic] = ACTIONS(53), + [anon_sym__Noreturn] = ACTIONS(53), + [anon_sym_noreturn] = ACTIONS(53), + [anon_sym_alignas] = ACTIONS(55), + [anon_sym__Alignas] = ACTIONS(55), + [sym_primitive_type] = ACTIONS(57), + [anon_sym_enum] = ACTIONS(1799), + [anon_sym_struct] = ACTIONS(61), + [anon_sym_union] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(87), + [anon_sym_sizeof] = ACTIONS(89), + [anon_sym___alignof__] = ACTIONS(91), + [anon_sym___alignof] = ACTIONS(91), + [anon_sym__alignof] = ACTIONS(91), + [anon_sym_alignof] = ACTIONS(91), + [anon_sym__Alignof] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(93), + [anon_sym__Generic] = ACTIONS(95), + [anon_sym_asm] = ACTIONS(97), + [anon_sym___asm__] = ACTIONS(97), + [sym_number_literal] = ACTIONS(165), + [anon_sym_L_SQUOTE] = ACTIONS(101), + [anon_sym_u_SQUOTE] = ACTIONS(101), + [anon_sym_U_SQUOTE] = ACTIONS(101), + [anon_sym_u8_SQUOTE] = ACTIONS(101), + [anon_sym_SQUOTE] = ACTIONS(101), + [anon_sym_L_DQUOTE] = ACTIONS(103), + [anon_sym_u_DQUOTE] = ACTIONS(103), + [anon_sym_U_DQUOTE] = ACTIONS(103), + [anon_sym_u8_DQUOTE] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_true] = ACTIONS(167), + [sym_false] = ACTIONS(167), + [anon_sym_NULL] = ACTIONS(107), + [anon_sym_nullptr] = ACTIONS(107), + [sym_comment] = ACTIONS(3), + }, + [490] = { + [sym_preproc_def] = STATE(474), + [sym_preproc_function_def] = STATE(474), + [sym_preproc_call] = STATE(474), + [sym_preproc_if_in_field_declaration_list] = STATE(474), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(474), + [sym_preproc_else_in_field_declaration_list] = STATE(2112), + [sym_preproc_elif_in_field_declaration_list] = STATE(2112), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(2112), + [sym__declaration_modifiers] = STATE(805), + [sym__declaration_specifiers] = STATE(1264), + [sym_attribute_specifier] = STATE(805), + [sym_attribute_declaration] = STATE(805), + [sym_ms_declspec_modifier] = STATE(805), + [sym_ms_based_modifier] = STATE(2174), + [sym__declarator] = STATE(1666), + [sym_parenthesized_declarator] = STATE(1569), + [sym_attributed_declarator] = STATE(1569), + [sym_pointer_declarator] = STATE(1569), + [sym_function_declarator] = STATE(1569), + [sym_array_declarator] = STATE(1569), + [sym_storage_class_specifier] = STATE(805), + [sym_type_qualifier] = STATE(805), + [sym_alignas_qualifier] = STATE(799), + [sym_type_specifier] = STATE(807), + [sym_sized_type_specifier] = STATE(873), + [sym_enum_specifier] = STATE(873), + [sym_struct_specifier] = STATE(873), + [sym_union_specifier] = STATE(873), + [sym__field_declaration_list_item] = STATE(474), + [sym_macro_invocation] = STATE(474), + [sym_field_declaration] = STATE(474), + [sym_macro_type_specifier] = STATE(873), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(474), + [aux_sym__declaration_specifiers_repeat1] = STATE(805), + [aux_sym_sized_type_specifier_repeat1] = STATE(890), + [sym_identifier] = ACTIONS(1813), + [aux_sym_preproc_def_token1] = ACTIONS(1815), + [aux_sym_preproc_if_token1] = ACTIONS(1817), + [aux_sym_preproc_if_token2] = ACTIONS(1865), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1821), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1821), + [aux_sym_preproc_else_token1] = ACTIONS(1823), + [aux_sym_preproc_elif_token1] = ACTIONS(1825), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1827), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1827), + [sym_preproc_directive] = ACTIONS(1829), + [anon_sym_LPAREN2] = ACTIONS(1831), + [anon_sym_STAR] = ACTIONS(1833), + [anon_sym___extension__] = ACTIONS(53), + [anon_sym_extern] = ACTIONS(51), [anon_sym___attribute__] = ACTIONS(33), [anon_sym___scanf] = ACTIONS(35), [anon_sym___printf] = ACTIONS(35), [anon_sym___read_mostly] = ACTIONS(37), [anon_sym___must_hold] = ACTIONS(33), [anon_sym___ro_after_init] = ACTIONS(37), - [anon_sym___init] = ACTIONS(37), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1137), + [anon_sym___noreturn] = ACTIONS(37), + [anon_sym___cold] = ACTIONS(37), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1145), [anon_sym___declspec] = ACTIONS(41), - [anon_sym_signed] = ACTIONS(47), - [anon_sym_unsigned] = ACTIONS(47), - [anon_sym_long] = ACTIONS(47), - [anon_sym_short] = ACTIONS(47), - [anon_sym_static] = ACTIONS(49), - [anon_sym_auto] = ACTIONS(49), - [anon_sym_register] = ACTIONS(49), - [anon_sym_inline] = ACTIONS(49), - [anon_sym___inline] = ACTIONS(49), - [anon_sym___inline__] = ACTIONS(49), - [anon_sym___forceinline] = ACTIONS(49), - [anon_sym_thread_local] = ACTIONS(49), - [anon_sym___thread] = ACTIONS(49), - [anon_sym_const] = ACTIONS(51), - [anon_sym_constexpr] = ACTIONS(51), - [anon_sym_volatile] = ACTIONS(51), - [anon_sym_restrict] = ACTIONS(51), - [anon_sym___restrict__] = ACTIONS(51), - [anon_sym__Atomic] = ACTIONS(51), - [anon_sym__Noreturn] = ACTIONS(51), - [anon_sym_noreturn] = ACTIONS(51), - [anon_sym_alignas] = ACTIONS(53), - [anon_sym__Alignas] = ACTIONS(53), - [sym_primitive_type] = ACTIONS(55), - [anon_sym_enum] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), + [anon_sym___based] = ACTIONS(1835), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_const] = ACTIONS(53), + [anon_sym_constexpr] = ACTIONS(53), + [anon_sym_volatile] = ACTIONS(53), + [anon_sym_restrict] = ACTIONS(53), + [anon_sym___restrict__] = ACTIONS(53), + [anon_sym__Atomic] = ACTIONS(53), + [anon_sym__Noreturn] = ACTIONS(53), + [anon_sym_noreturn] = ACTIONS(53), + [anon_sym_alignas] = ACTIONS(55), + [anon_sym__Alignas] = ACTIONS(55), + [sym_primitive_type] = ACTIONS(57), + [anon_sym_enum] = ACTIONS(59), + [anon_sym_struct] = ACTIONS(61), + [anon_sym_union] = ACTIONS(63), [sym_comment] = ACTIONS(3), }, - [429] = { - [sym_preproc_def] = STATE(441), - [sym_preproc_function_def] = STATE(441), - [sym_preproc_call] = STATE(441), - [sym_preproc_if_in_field_declaration_list] = STATE(441), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(441), - [sym_preproc_else_in_field_declaration_list] = STATE(1787), - [sym_preproc_elif_in_field_declaration_list] = STATE(1787), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(1787), - [sym__declaration_modifiers] = STATE(697), - [sym__declaration_specifiers] = STATE(1141), - [sym_attribute_specifier] = STATE(697), - [sym_attribute_declaration] = STATE(697), - [sym_ms_declspec_modifier] = STATE(697), - [sym_storage_class_specifier] = STATE(697), - [sym_type_qualifier] = STATE(697), - [sym_alignas_qualifier] = STATE(703), - [sym_type_specifier] = STATE(710), - [sym_sized_type_specifier] = STATE(746), - [sym_enum_specifier] = STATE(746), - [sym_struct_specifier] = STATE(746), - [sym_union_specifier] = STATE(746), - [sym__field_declaration_list_item] = STATE(441), - [sym_field_declaration] = STATE(441), - [sym_macro_type_specifier] = STATE(746), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(441), - [aux_sym__declaration_specifiers_repeat1] = STATE(697), - [aux_sym_sized_type_specifier_repeat1] = STATE(747), - [sym_identifier] = ACTIONS(1809), - [aux_sym_preproc_def_token1] = ACTIONS(1811), - [aux_sym_preproc_if_token1] = ACTIONS(1813), - [aux_sym_preproc_if_token2] = ACTIONS(1855), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1817), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1817), - [aux_sym_preproc_else_token1] = ACTIONS(1819), - [aux_sym_preproc_elif_token1] = ACTIONS(1821), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1823), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1823), - [sym_preproc_directive] = ACTIONS(1825), - [anon_sym___extension__] = ACTIONS(51), - [anon_sym_extern] = ACTIONS(49), + [491] = { + [sym__declaration_modifiers] = STATE(805), + [sym__declaration_specifiers] = STATE(1343), + [sym_attribute_specifier] = STATE(805), + [sym_attribute_declaration] = STATE(805), + [sym_ms_declspec_modifier] = STATE(805), + [sym_ms_based_modifier] = STATE(2174), + [sym_macro_modifier] = STATE(1391), + [sym_ms_call_modifier] = STATE(1282), + [sym__declarator] = STATE(1630), + [sym__abstract_declarator] = STATE(1727), + [sym_parenthesized_declarator] = STATE(1569), + [sym_abstract_parenthesized_declarator] = STATE(1717), + [sym_attributed_declarator] = STATE(1569), + [sym_pointer_declarator] = STATE(1569), + [sym_abstract_pointer_declarator] = STATE(1717), + [sym_function_declarator] = STATE(1569), + [sym_abstract_function_declarator] = STATE(1717), + [sym_array_declarator] = STATE(1569), + [sym_abstract_array_declarator] = STATE(1717), + [sym_storage_class_specifier] = STATE(805), + [sym_type_qualifier] = STATE(805), + [sym_alignas_qualifier] = STATE(799), + [sym_type_specifier] = STATE(807), + [sym_sized_type_specifier] = STATE(873), + [sym_enum_specifier] = STATE(873), + [sym_struct_specifier] = STATE(873), + [sym_union_specifier] = STATE(873), + [sym_variadic_parameter] = STATE(1832), + [sym_parameter_list] = STATE(1691), + [sym_parameter_declaration] = STATE(1832), + [sym_macro_type_specifier] = STATE(873), + [aux_sym__declaration_specifiers_repeat1] = STATE(805), + [aux_sym_sized_type_specifier_repeat1] = STATE(890), + [sym_identifier] = ACTIONS(1867), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1869), + [anon_sym_RPAREN] = ACTIONS(1871), + [anon_sym_LPAREN2] = ACTIONS(1873), + [anon_sym_STAR] = ACTIONS(1875), + [anon_sym___extension__] = ACTIONS(53), + [anon_sym_extern] = ACTIONS(51), [anon_sym___attribute__] = ACTIONS(33), [anon_sym___scanf] = ACTIONS(35), [anon_sym___printf] = ACTIONS(35), [anon_sym___read_mostly] = ACTIONS(37), [anon_sym___must_hold] = ACTIONS(33), [anon_sym___ro_after_init] = ACTIONS(37), - [anon_sym___init] = ACTIONS(37), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1137), + [anon_sym___noreturn] = ACTIONS(37), + [anon_sym___cold] = ACTIONS(37), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1145), [anon_sym___declspec] = ACTIONS(41), - [anon_sym_signed] = ACTIONS(47), - [anon_sym_unsigned] = ACTIONS(47), - [anon_sym_long] = ACTIONS(47), - [anon_sym_short] = ACTIONS(47), - [anon_sym_static] = ACTIONS(49), - [anon_sym_auto] = ACTIONS(49), - [anon_sym_register] = ACTIONS(49), - [anon_sym_inline] = ACTIONS(49), - [anon_sym___inline] = ACTIONS(49), - [anon_sym___inline__] = ACTIONS(49), - [anon_sym___forceinline] = ACTIONS(49), - [anon_sym_thread_local] = ACTIONS(49), - [anon_sym___thread] = ACTIONS(49), - [anon_sym_const] = ACTIONS(51), - [anon_sym_constexpr] = ACTIONS(51), - [anon_sym_volatile] = ACTIONS(51), - [anon_sym_restrict] = ACTIONS(51), - [anon_sym___restrict__] = ACTIONS(51), - [anon_sym__Atomic] = ACTIONS(51), - [anon_sym__Noreturn] = ACTIONS(51), - [anon_sym_noreturn] = ACTIONS(51), - [anon_sym_alignas] = ACTIONS(53), - [anon_sym__Alignas] = ACTIONS(53), - [sym_primitive_type] = ACTIONS(55), - [anon_sym_enum] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), + [anon_sym___based] = ACTIONS(1835), + [anon_sym___init] = ACTIONS(43), + [anon_sym___exit] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_LBRACK] = ACTIONS(1877), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_const] = ACTIONS(53), + [anon_sym_constexpr] = ACTIONS(53), + [anon_sym_volatile] = ACTIONS(53), + [anon_sym_restrict] = ACTIONS(53), + [anon_sym___restrict__] = ACTIONS(53), + [anon_sym__Atomic] = ACTIONS(53), + [anon_sym__Noreturn] = ACTIONS(53), + [anon_sym_noreturn] = ACTIONS(53), + [anon_sym_alignas] = ACTIONS(55), + [anon_sym__Alignas] = ACTIONS(55), + [sym_primitive_type] = ACTIONS(57), + [anon_sym_enum] = ACTIONS(59), + [anon_sym_struct] = ACTIONS(61), + [anon_sym_union] = ACTIONS(63), [sym_comment] = ACTIONS(3), }, - [430] = { - [sym__declaration_modifiers] = STATE(697), - [sym__declaration_specifiers] = STATE(1211), - [sym_attribute_specifier] = STATE(697), - [sym_attribute_declaration] = STATE(697), - [sym_ms_declspec_modifier] = STATE(697), - [sym_ms_call_modifier] = STATE(1398), - [sym__abstract_declarator] = STATE(1515), - [sym_abstract_parenthesized_declarator] = STATE(1504), - [sym_abstract_pointer_declarator] = STATE(1504), - [sym_abstract_function_declarator] = STATE(1504), - [sym_abstract_array_declarator] = STATE(1504), - [sym_storage_class_specifier] = STATE(697), - [sym_type_qualifier] = STATE(697), - [sym_alignas_qualifier] = STATE(703), - [sym_type_specifier] = STATE(710), - [sym_sized_type_specifier] = STATE(746), - [sym_enum_specifier] = STATE(746), - [sym_struct_specifier] = STATE(746), - [sym_union_specifier] = STATE(746), - [sym_variadic_parameter] = STATE(1666), - [sym_parameter_list] = STATE(1509), - [sym_parameter_declaration] = STATE(1666), - [sym_macro_type_specifier] = STATE(746), - [aux_sym__declaration_specifiers_repeat1] = STATE(697), - [aux_sym_sized_type_specifier_repeat1] = STATE(747), - [sym_identifier] = ACTIONS(1809), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1789), - [anon_sym_RPAREN] = ACTIONS(1791), - [anon_sym_LPAREN2] = ACTIONS(1857), - [anon_sym_STAR] = ACTIONS(1859), - [anon_sym___extension__] = ACTIONS(51), - [anon_sym_extern] = ACTIONS(49), + [492] = { + [sym_preproc_def] = STATE(492), + [sym_preproc_function_def] = STATE(492), + [sym_preproc_call] = STATE(492), + [sym_preproc_if_in_field_declaration_list] = STATE(492), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(492), + [sym__declaration_modifiers] = STATE(805), + [sym__declaration_specifiers] = STATE(1264), + [sym_attribute_specifier] = STATE(805), + [sym_attribute_declaration] = STATE(805), + [sym_ms_declspec_modifier] = STATE(805), + [sym_ms_based_modifier] = STATE(2174), + [sym__declarator] = STATE(1666), + [sym_parenthesized_declarator] = STATE(1569), + [sym_attributed_declarator] = STATE(1569), + [sym_pointer_declarator] = STATE(1569), + [sym_function_declarator] = STATE(1569), + [sym_array_declarator] = STATE(1569), + [sym_storage_class_specifier] = STATE(805), + [sym_type_qualifier] = STATE(805), + [sym_alignas_qualifier] = STATE(799), + [sym_type_specifier] = STATE(807), + [sym_sized_type_specifier] = STATE(873), + [sym_enum_specifier] = STATE(873), + [sym_struct_specifier] = STATE(873), + [sym_union_specifier] = STATE(873), + [sym__field_declaration_list_item] = STATE(492), + [sym_macro_invocation] = STATE(492), + [sym_field_declaration] = STATE(492), + [sym_macro_type_specifier] = STATE(873), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(492), + [aux_sym__declaration_specifiers_repeat1] = STATE(805), + [aux_sym_sized_type_specifier_repeat1] = STATE(890), + [sym_identifier] = ACTIONS(1879), + [aux_sym_preproc_def_token1] = ACTIONS(1882), + [aux_sym_preproc_if_token1] = ACTIONS(1885), + [aux_sym_preproc_if_token2] = ACTIONS(1888), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1890), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1890), + [aux_sym_preproc_else_token1] = ACTIONS(1888), + [aux_sym_preproc_elif_token1] = ACTIONS(1888), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1888), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1888), + [sym_preproc_directive] = ACTIONS(1893), + [anon_sym_LPAREN2] = ACTIONS(1896), + [anon_sym_STAR] = ACTIONS(1899), + [anon_sym___extension__] = ACTIONS(1902), + [anon_sym_extern] = ACTIONS(1905), + [anon_sym___attribute__] = ACTIONS(1908), + [anon_sym___scanf] = ACTIONS(1911), + [anon_sym___printf] = ACTIONS(1911), + [anon_sym___read_mostly] = ACTIONS(1914), + [anon_sym___must_hold] = ACTIONS(1908), + [anon_sym___ro_after_init] = ACTIONS(1914), + [anon_sym___noreturn] = ACTIONS(1914), + [anon_sym___cold] = ACTIONS(1914), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1917), + [anon_sym___declspec] = ACTIONS(1920), + [anon_sym___based] = ACTIONS(1923), + [anon_sym_signed] = ACTIONS(1926), + [anon_sym_unsigned] = ACTIONS(1926), + [anon_sym_long] = ACTIONS(1926), + [anon_sym_short] = ACTIONS(1926), + [anon_sym_static] = ACTIONS(1905), + [anon_sym_auto] = ACTIONS(1905), + [anon_sym_register] = ACTIONS(1905), + [anon_sym_inline] = ACTIONS(1905), + [anon_sym___inline] = ACTIONS(1905), + [anon_sym___inline__] = ACTIONS(1905), + [anon_sym___forceinline] = ACTIONS(1905), + [anon_sym_thread_local] = ACTIONS(1905), + [anon_sym___thread] = ACTIONS(1905), + [anon_sym_const] = ACTIONS(1902), + [anon_sym_constexpr] = ACTIONS(1902), + [anon_sym_volatile] = ACTIONS(1902), + [anon_sym_restrict] = ACTIONS(1902), + [anon_sym___restrict__] = ACTIONS(1902), + [anon_sym__Atomic] = ACTIONS(1902), + [anon_sym__Noreturn] = ACTIONS(1902), + [anon_sym_noreturn] = ACTIONS(1902), + [anon_sym_alignas] = ACTIONS(1929), + [anon_sym__Alignas] = ACTIONS(1929), + [sym_primitive_type] = ACTIONS(1932), + [anon_sym_enum] = ACTIONS(1935), + [anon_sym_struct] = ACTIONS(1938), + [anon_sym_union] = ACTIONS(1941), + [sym_comment] = ACTIONS(3), + }, + [493] = { + [sym_expression] = STATE(771), + [sym__string] = STATE(758), + [sym_conditional_expression] = STATE(758), + [sym_assignment_expression] = STATE(758), + [sym_pointer_expression] = STATE(997), + [sym_unary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_cast_expression] = STATE(758), + [sym_sizeof_expression] = STATE(758), + [sym_alignof_expression] = STATE(758), + [sym_offsetof_expression] = STATE(758), + [sym_generic_expression] = STATE(758), + [sym_subscript_expression] = STATE(997), + [sym_call_expression] = STATE(997), + [sym_gnu_asm_expression] = STATE(758), + [sym_field_expression] = STATE(997), + [sym_compound_literal_expression] = STATE(758), + [sym_parenthesized_expression] = STATE(997), + [sym_initializer_list] = STATE(760), + [sym_char_literal] = STATE(758), + [sym_concatenated_string] = STATE(758), + [sym_string_literal] = STATE(940), + [sym_null] = STATE(758), + [sym_identifier] = ACTIONS(1437), + [anon_sym_COMMA] = ACTIONS(1431), + [aux_sym_preproc_if_token2] = ACTIONS(1431), + [aux_sym_preproc_else_token1] = ACTIONS(1431), + [aux_sym_preproc_elif_token1] = ACTIONS(1437), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1431), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1431), + [anon_sym_LPAREN2] = ACTIONS(1431), + [anon_sym_BANG] = ACTIONS(1944), + [anon_sym_TILDE] = ACTIONS(1946), + [anon_sym_DASH] = ACTIONS(1437), + [anon_sym_PLUS] = ACTIONS(1437), + [anon_sym_STAR] = ACTIONS(1431), + [anon_sym_SLASH] = ACTIONS(1437), + [anon_sym_PERCENT] = ACTIONS(1431), + [anon_sym_PIPE_PIPE] = ACTIONS(1431), + [anon_sym_AMP_AMP] = ACTIONS(1431), + [anon_sym_PIPE] = ACTIONS(1437), + [anon_sym_CARET] = ACTIONS(1431), + [anon_sym_AMP] = ACTIONS(1437), + [anon_sym_EQ_EQ] = ACTIONS(1431), + [anon_sym_BANG_EQ] = ACTIONS(1431), + [anon_sym_GT] = ACTIONS(1437), + [anon_sym_GT_EQ] = ACTIONS(1431), + [anon_sym_LT_EQ] = ACTIONS(1431), + [anon_sym_LT] = ACTIONS(1437), + [anon_sym_LT_LT] = ACTIONS(1431), + [anon_sym_GT_GT] = ACTIONS(1431), + [anon_sym_LBRACE] = ACTIONS(1439), + [anon_sym_LBRACK] = ACTIONS(1431), + [anon_sym_QMARK] = ACTIONS(1431), + [anon_sym_DASH_DASH] = ACTIONS(1431), + [anon_sym_PLUS_PLUS] = ACTIONS(1431), + [anon_sym_sizeof] = ACTIONS(1948), + [anon_sym___alignof__] = ACTIONS(91), + [anon_sym___alignof] = ACTIONS(91), + [anon_sym__alignof] = ACTIONS(91), + [anon_sym_alignof] = ACTIONS(91), + [anon_sym__Alignof] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(93), + [anon_sym__Generic] = ACTIONS(95), + [anon_sym_asm] = ACTIONS(97), + [anon_sym___asm__] = ACTIONS(97), + [anon_sym_DOT] = ACTIONS(1437), + [anon_sym_DASH_GT] = ACTIONS(1431), + [sym_number_literal] = ACTIONS(165), + [anon_sym_L_SQUOTE] = ACTIONS(101), + [anon_sym_u_SQUOTE] = ACTIONS(101), + [anon_sym_U_SQUOTE] = ACTIONS(101), + [anon_sym_u8_SQUOTE] = ACTIONS(101), + [anon_sym_SQUOTE] = ACTIONS(101), + [anon_sym_L_DQUOTE] = ACTIONS(103), + [anon_sym_u_DQUOTE] = ACTIONS(103), + [anon_sym_U_DQUOTE] = ACTIONS(103), + [anon_sym_u8_DQUOTE] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_true] = ACTIONS(167), + [sym_false] = ACTIONS(167), + [anon_sym_NULL] = ACTIONS(107), + [anon_sym_nullptr] = ACTIONS(107), + [sym_comment] = ACTIONS(3), + }, + [494] = { + [sym_preproc_def] = STATE(495), + [sym_preproc_function_def] = STATE(495), + [sym_preproc_call] = STATE(495), + [sym_preproc_if_in_field_declaration_list] = STATE(495), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(495), + [sym__declaration_modifiers] = STATE(805), + [sym__declaration_specifiers] = STATE(1268), + [sym_attribute_specifier] = STATE(805), + [sym_attribute_declaration] = STATE(805), + [sym_ms_declspec_modifier] = STATE(805), + [sym_ms_based_modifier] = STATE(2174), + [sym__declarator] = STATE(1668), + [sym_parenthesized_declarator] = STATE(1569), + [sym_attributed_declarator] = STATE(1569), + [sym_pointer_declarator] = STATE(1569), + [sym_function_declarator] = STATE(1569), + [sym_array_declarator] = STATE(1569), + [sym_storage_class_specifier] = STATE(805), + [sym_type_qualifier] = STATE(805), + [sym_alignas_qualifier] = STATE(799), + [sym_type_specifier] = STATE(807), + [sym_sized_type_specifier] = STATE(873), + [sym_enum_specifier] = STATE(873), + [sym_struct_specifier] = STATE(873), + [sym_union_specifier] = STATE(873), + [sym__field_declaration_list_item] = STATE(495), + [sym_macro_invocation] = STATE(495), + [sym_field_declaration] = STATE(495), + [sym_macro_type_specifier] = STATE(873), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(495), + [aux_sym__declaration_specifiers_repeat1] = STATE(805), + [aux_sym_sized_type_specifier_repeat1] = STATE(890), + [sym_identifier] = ACTIONS(1813), + [aux_sym_preproc_def_token1] = ACTIONS(1950), + [aux_sym_preproc_if_token1] = ACTIONS(1952), + [aux_sym_preproc_if_token2] = ACTIONS(1954), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1956), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1956), + [sym_preproc_directive] = ACTIONS(1958), + [anon_sym_LPAREN2] = ACTIONS(1831), + [anon_sym_STAR] = ACTIONS(1833), + [anon_sym___extension__] = ACTIONS(53), + [anon_sym_extern] = ACTIONS(51), [anon_sym___attribute__] = ACTIONS(33), [anon_sym___scanf] = ACTIONS(35), [anon_sym___printf] = ACTIONS(35), [anon_sym___read_mostly] = ACTIONS(37), [anon_sym___must_hold] = ACTIONS(33), [anon_sym___ro_after_init] = ACTIONS(37), - [anon_sym___init] = ACTIONS(37), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1137), + [anon_sym___noreturn] = ACTIONS(37), + [anon_sym___cold] = ACTIONS(37), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1145), [anon_sym___declspec] = ACTIONS(41), - [anon_sym___cdecl] = ACTIONS(43), - [anon_sym___clrcall] = ACTIONS(43), - [anon_sym___stdcall] = ACTIONS(43), - [anon_sym___fastcall] = ACTIONS(43), - [anon_sym___thiscall] = ACTIONS(43), - [anon_sym___vectorcall] = ACTIONS(43), - [anon_sym_signed] = ACTIONS(47), - [anon_sym_unsigned] = ACTIONS(47), - [anon_sym_long] = ACTIONS(47), - [anon_sym_short] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1799), - [anon_sym_static] = ACTIONS(49), - [anon_sym_auto] = ACTIONS(49), - [anon_sym_register] = ACTIONS(49), - [anon_sym_inline] = ACTIONS(49), - [anon_sym___inline] = ACTIONS(49), - [anon_sym___inline__] = ACTIONS(49), - [anon_sym___forceinline] = ACTIONS(49), - [anon_sym_thread_local] = ACTIONS(49), - [anon_sym___thread] = ACTIONS(49), - [anon_sym_const] = ACTIONS(51), - [anon_sym_constexpr] = ACTIONS(51), - [anon_sym_volatile] = ACTIONS(51), - [anon_sym_restrict] = ACTIONS(51), - [anon_sym___restrict__] = ACTIONS(51), - [anon_sym__Atomic] = ACTIONS(51), - [anon_sym__Noreturn] = ACTIONS(51), - [anon_sym_noreturn] = ACTIONS(51), - [anon_sym_alignas] = ACTIONS(53), - [anon_sym__Alignas] = ACTIONS(53), - [sym_primitive_type] = ACTIONS(55), - [anon_sym_enum] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - }, - [431] = { - [sym_type_qualifier] = STATE(733), - [sym_alignas_qualifier] = STATE(821), - [sym_expression] = STATE(1090), - [sym__string] = STATE(663), - [sym_conditional_expression] = STATE(663), - [sym_assignment_expression] = STATE(663), - [sym_pointer_expression] = STATE(943), - [sym_unary_expression] = STATE(663), - [sym_binary_expression] = STATE(663), - [sym_update_expression] = STATE(663), - [sym_cast_expression] = STATE(663), - [sym_sizeof_expression] = STATE(663), - [sym_alignof_expression] = STATE(663), - [sym_offsetof_expression] = STATE(663), - [sym_generic_expression] = STATE(663), - [sym_subscript_expression] = STATE(943), - [sym_call_expression] = STATE(943), - [sym_gnu_asm_expression] = STATE(663), - [sym_field_expression] = STATE(943), - [sym_compound_literal_expression] = STATE(663), - [sym_parenthesized_expression] = STATE(943), - [sym_char_literal] = STATE(663), - [sym_concatenated_string] = STATE(663), - [sym_string_literal] = STATE(659), - [sym_null] = STATE(663), - [aux_sym_array_declarator_repeat1] = STATE(733), - [sym_identifier] = ACTIONS(1801), - [anon_sym_LPAREN2] = ACTIONS(1861), - [anon_sym_BANG] = ACTIONS(1805), - [anon_sym_TILDE] = ACTIONS(1805), - [anon_sym_DASH] = ACTIONS(1803), - [anon_sym_PLUS] = ACTIONS(1803), - [anon_sym_STAR] = ACTIONS(1863), - [anon_sym_AMP] = ACTIONS(1865), - [anon_sym___extension__] = ACTIONS(1867), - [anon_sym_static] = ACTIONS(1869), - [anon_sym_RBRACK] = ACTIONS(1871), - [anon_sym_const] = ACTIONS(1867), - [anon_sym_constexpr] = ACTIONS(1867), - [anon_sym_volatile] = ACTIONS(1867), - [anon_sym_restrict] = ACTIONS(1867), - [anon_sym___restrict__] = ACTIONS(1867), - [anon_sym__Atomic] = ACTIONS(1867), - [anon_sym__Noreturn] = ACTIONS(1867), - [anon_sym_noreturn] = ACTIONS(1867), - [anon_sym_alignas] = ACTIONS(1873), - [anon_sym__Alignas] = ACTIONS(1873), - [anon_sym_DASH_DASH] = ACTIONS(1875), - [anon_sym_PLUS_PLUS] = ACTIONS(1875), - [anon_sym_sizeof] = ACTIONS(1807), - [anon_sym___alignof__] = ACTIONS(89), - [anon_sym___alignof] = ACTIONS(89), - [anon_sym__alignof] = ACTIONS(89), - [anon_sym_alignof] = ACTIONS(89), - [anon_sym__Alignof] = ACTIONS(89), - [anon_sym_offsetof] = ACTIONS(91), - [anon_sym__Generic] = ACTIONS(93), - [anon_sym_asm] = ACTIONS(95), - [anon_sym___asm__] = ACTIONS(95), - [sym_number_literal] = ACTIONS(163), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(165), - [sym_false] = ACTIONS(165), - [anon_sym_NULL] = ACTIONS(105), - [anon_sym_nullptr] = ACTIONS(105), + [anon_sym___based] = ACTIONS(1835), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_const] = ACTIONS(53), + [anon_sym_constexpr] = ACTIONS(53), + [anon_sym_volatile] = ACTIONS(53), + [anon_sym_restrict] = ACTIONS(53), + [anon_sym___restrict__] = ACTIONS(53), + [anon_sym__Atomic] = ACTIONS(53), + [anon_sym__Noreturn] = ACTIONS(53), + [anon_sym_noreturn] = ACTIONS(53), + [anon_sym_alignas] = ACTIONS(55), + [anon_sym__Alignas] = ACTIONS(55), + [sym_primitive_type] = ACTIONS(57), + [anon_sym_enum] = ACTIONS(59), + [anon_sym_struct] = ACTIONS(61), + [anon_sym_union] = ACTIONS(63), [sym_comment] = ACTIONS(3), }, - [432] = { - [sym_type_qualifier] = STATE(438), - [sym_alignas_qualifier] = STATE(821), - [sym_expression] = STATE(1093), - [sym__string] = STATE(663), - [sym_conditional_expression] = STATE(663), - [sym_assignment_expression] = STATE(663), - [sym_pointer_expression] = STATE(943), - [sym_unary_expression] = STATE(663), - [sym_binary_expression] = STATE(663), - [sym_update_expression] = STATE(663), - [sym_cast_expression] = STATE(663), - [sym_sizeof_expression] = STATE(663), - [sym_alignof_expression] = STATE(663), - [sym_offsetof_expression] = STATE(663), - [sym_generic_expression] = STATE(663), - [sym_subscript_expression] = STATE(943), - [sym_call_expression] = STATE(943), - [sym_gnu_asm_expression] = STATE(663), - [sym_field_expression] = STATE(943), - [sym_compound_literal_expression] = STATE(663), - [sym_parenthesized_expression] = STATE(943), - [sym_char_literal] = STATE(663), - [sym_concatenated_string] = STATE(663), - [sym_string_literal] = STATE(659), - [sym_null] = STATE(663), - [aux_sym_array_declarator_repeat1] = STATE(438), - [sym_identifier] = ACTIONS(1801), - [anon_sym_LPAREN2] = ACTIONS(1861), - [anon_sym_BANG] = ACTIONS(1805), - [anon_sym_TILDE] = ACTIONS(1805), - [anon_sym_DASH] = ACTIONS(1803), - [anon_sym_PLUS] = ACTIONS(1803), - [anon_sym_STAR] = ACTIONS(1877), - [anon_sym_AMP] = ACTIONS(1865), - [anon_sym___extension__] = ACTIONS(1867), - [anon_sym_static] = ACTIONS(1879), - [anon_sym_RBRACK] = ACTIONS(1881), - [anon_sym_const] = ACTIONS(1867), - [anon_sym_constexpr] = ACTIONS(1867), - [anon_sym_volatile] = ACTIONS(1867), - [anon_sym_restrict] = ACTIONS(1867), - [anon_sym___restrict__] = ACTIONS(1867), - [anon_sym__Atomic] = ACTIONS(1867), - [anon_sym__Noreturn] = ACTIONS(1867), - [anon_sym_noreturn] = ACTIONS(1867), - [anon_sym_alignas] = ACTIONS(1873), - [anon_sym__Alignas] = ACTIONS(1873), - [anon_sym_DASH_DASH] = ACTIONS(1875), - [anon_sym_PLUS_PLUS] = ACTIONS(1875), - [anon_sym_sizeof] = ACTIONS(1807), - [anon_sym___alignof__] = ACTIONS(89), - [anon_sym___alignof] = ACTIONS(89), - [anon_sym__alignof] = ACTIONS(89), - [anon_sym_alignof] = ACTIONS(89), - [anon_sym__Alignof] = ACTIONS(89), - [anon_sym_offsetof] = ACTIONS(91), - [anon_sym__Generic] = ACTIONS(93), - [anon_sym_asm] = ACTIONS(95), - [anon_sym___asm__] = ACTIONS(95), - [sym_number_literal] = ACTIONS(163), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(165), - [sym_false] = ACTIONS(165), - [anon_sym_NULL] = ACTIONS(105), - [anon_sym_nullptr] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - }, - [433] = { - [sym_type_qualifier] = STATE(733), - [sym_alignas_qualifier] = STATE(821), - [sym_expression] = STATE(1080), - [sym__string] = STATE(663), - [sym_conditional_expression] = STATE(663), - [sym_assignment_expression] = STATE(663), - [sym_pointer_expression] = STATE(943), - [sym_unary_expression] = STATE(663), - [sym_binary_expression] = STATE(663), - [sym_update_expression] = STATE(663), - [sym_cast_expression] = STATE(663), - [sym_sizeof_expression] = STATE(663), - [sym_alignof_expression] = STATE(663), - [sym_offsetof_expression] = STATE(663), - [sym_generic_expression] = STATE(663), - [sym_subscript_expression] = STATE(943), - [sym_call_expression] = STATE(943), - [sym_gnu_asm_expression] = STATE(663), - [sym_field_expression] = STATE(943), - [sym_compound_literal_expression] = STATE(663), - [sym_parenthesized_expression] = STATE(943), - [sym_char_literal] = STATE(663), - [sym_concatenated_string] = STATE(663), - [sym_string_literal] = STATE(659), - [sym_null] = STATE(663), - [aux_sym_array_declarator_repeat1] = STATE(733), - [sym_identifier] = ACTIONS(1801), - [anon_sym_LPAREN2] = ACTIONS(1861), - [anon_sym_BANG] = ACTIONS(1805), - [anon_sym_TILDE] = ACTIONS(1805), - [anon_sym_DASH] = ACTIONS(1803), - [anon_sym_PLUS] = ACTIONS(1803), - [anon_sym_STAR] = ACTIONS(1883), - [anon_sym_AMP] = ACTIONS(1865), - [anon_sym___extension__] = ACTIONS(1867), - [anon_sym_static] = ACTIONS(1869), - [anon_sym_RBRACK] = ACTIONS(1885), - [anon_sym_const] = ACTIONS(1867), - [anon_sym_constexpr] = ACTIONS(1867), - [anon_sym_volatile] = ACTIONS(1867), - [anon_sym_restrict] = ACTIONS(1867), - [anon_sym___restrict__] = ACTIONS(1867), - [anon_sym__Atomic] = ACTIONS(1867), - [anon_sym__Noreturn] = ACTIONS(1867), - [anon_sym_noreturn] = ACTIONS(1867), - [anon_sym_alignas] = ACTIONS(1873), - [anon_sym__Alignas] = ACTIONS(1873), - [anon_sym_DASH_DASH] = ACTIONS(1875), - [anon_sym_PLUS_PLUS] = ACTIONS(1875), - [anon_sym_sizeof] = ACTIONS(1807), - [anon_sym___alignof__] = ACTIONS(89), - [anon_sym___alignof] = ACTIONS(89), - [anon_sym__alignof] = ACTIONS(89), - [anon_sym_alignof] = ACTIONS(89), - [anon_sym__Alignof] = ACTIONS(89), - [anon_sym_offsetof] = ACTIONS(91), - [anon_sym__Generic] = ACTIONS(93), - [anon_sym_asm] = ACTIONS(95), - [anon_sym___asm__] = ACTIONS(95), - [sym_number_literal] = ACTIONS(163), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(165), - [sym_false] = ACTIONS(165), - [anon_sym_NULL] = ACTIONS(105), - [anon_sym_nullptr] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - }, - [434] = { - [sym_type_qualifier] = STATE(733), - [sym_alignas_qualifier] = STATE(821), - [sym_expression] = STATE(1086), - [sym__string] = STATE(663), - [sym_conditional_expression] = STATE(663), - [sym_assignment_expression] = STATE(663), - [sym_pointer_expression] = STATE(943), - [sym_unary_expression] = STATE(663), - [sym_binary_expression] = STATE(663), - [sym_update_expression] = STATE(663), - [sym_cast_expression] = STATE(663), - [sym_sizeof_expression] = STATE(663), - [sym_alignof_expression] = STATE(663), - [sym_offsetof_expression] = STATE(663), - [sym_generic_expression] = STATE(663), - [sym_subscript_expression] = STATE(943), - [sym_call_expression] = STATE(943), - [sym_gnu_asm_expression] = STATE(663), - [sym_field_expression] = STATE(943), - [sym_compound_literal_expression] = STATE(663), - [sym_parenthesized_expression] = STATE(943), - [sym_char_literal] = STATE(663), - [sym_concatenated_string] = STATE(663), - [sym_string_literal] = STATE(659), - [sym_null] = STATE(663), - [aux_sym_array_declarator_repeat1] = STATE(733), - [sym_identifier] = ACTIONS(1801), - [anon_sym_LPAREN2] = ACTIONS(1861), - [anon_sym_BANG] = ACTIONS(1805), - [anon_sym_TILDE] = ACTIONS(1805), - [anon_sym_DASH] = ACTIONS(1803), - [anon_sym_PLUS] = ACTIONS(1803), - [anon_sym_STAR] = ACTIONS(1887), - [anon_sym_AMP] = ACTIONS(1865), - [anon_sym___extension__] = ACTIONS(1867), - [anon_sym_static] = ACTIONS(1869), - [anon_sym_RBRACK] = ACTIONS(1889), - [anon_sym_const] = ACTIONS(1867), - [anon_sym_constexpr] = ACTIONS(1867), - [anon_sym_volatile] = ACTIONS(1867), - [anon_sym_restrict] = ACTIONS(1867), - [anon_sym___restrict__] = ACTIONS(1867), - [anon_sym__Atomic] = ACTIONS(1867), - [anon_sym__Noreturn] = ACTIONS(1867), - [anon_sym_noreturn] = ACTIONS(1867), - [anon_sym_alignas] = ACTIONS(1873), - [anon_sym__Alignas] = ACTIONS(1873), - [anon_sym_DASH_DASH] = ACTIONS(1875), - [anon_sym_PLUS_PLUS] = ACTIONS(1875), - [anon_sym_sizeof] = ACTIONS(1807), - [anon_sym___alignof__] = ACTIONS(89), - [anon_sym___alignof] = ACTIONS(89), - [anon_sym__alignof] = ACTIONS(89), - [anon_sym_alignof] = ACTIONS(89), - [anon_sym__Alignof] = ACTIONS(89), - [anon_sym_offsetof] = ACTIONS(91), - [anon_sym__Generic] = ACTIONS(93), - [anon_sym_asm] = ACTIONS(95), - [anon_sym___asm__] = ACTIONS(95), - [sym_number_literal] = ACTIONS(163), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(165), - [sym_false] = ACTIONS(165), - [anon_sym_NULL] = ACTIONS(105), - [anon_sym_nullptr] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - }, - [435] = { - [sym_type_qualifier] = STATE(433), - [sym_alignas_qualifier] = STATE(821), - [sym_expression] = STATE(1095), - [sym__string] = STATE(663), - [sym_conditional_expression] = STATE(663), - [sym_assignment_expression] = STATE(663), - [sym_pointer_expression] = STATE(943), - [sym_unary_expression] = STATE(663), - [sym_binary_expression] = STATE(663), - [sym_update_expression] = STATE(663), - [sym_cast_expression] = STATE(663), - [sym_sizeof_expression] = STATE(663), - [sym_alignof_expression] = STATE(663), - [sym_offsetof_expression] = STATE(663), - [sym_generic_expression] = STATE(663), - [sym_subscript_expression] = STATE(943), - [sym_call_expression] = STATE(943), - [sym_gnu_asm_expression] = STATE(663), - [sym_field_expression] = STATE(943), - [sym_compound_literal_expression] = STATE(663), - [sym_parenthesized_expression] = STATE(943), - [sym_char_literal] = STATE(663), - [sym_concatenated_string] = STATE(663), - [sym_string_literal] = STATE(659), - [sym_null] = STATE(663), - [aux_sym_array_declarator_repeat1] = STATE(433), - [sym_identifier] = ACTIONS(1801), - [anon_sym_LPAREN2] = ACTIONS(1861), - [anon_sym_BANG] = ACTIONS(1805), - [anon_sym_TILDE] = ACTIONS(1805), - [anon_sym_DASH] = ACTIONS(1803), - [anon_sym_PLUS] = ACTIONS(1803), - [anon_sym_STAR] = ACTIONS(1891), - [anon_sym_AMP] = ACTIONS(1865), - [anon_sym___extension__] = ACTIONS(1867), - [anon_sym_static] = ACTIONS(1893), - [anon_sym_RBRACK] = ACTIONS(1895), - [anon_sym_const] = ACTIONS(1867), - [anon_sym_constexpr] = ACTIONS(1867), - [anon_sym_volatile] = ACTIONS(1867), - [anon_sym_restrict] = ACTIONS(1867), - [anon_sym___restrict__] = ACTIONS(1867), - [anon_sym__Atomic] = ACTIONS(1867), - [anon_sym__Noreturn] = ACTIONS(1867), - [anon_sym_noreturn] = ACTIONS(1867), - [anon_sym_alignas] = ACTIONS(1873), - [anon_sym__Alignas] = ACTIONS(1873), - [anon_sym_DASH_DASH] = ACTIONS(1875), - [anon_sym_PLUS_PLUS] = ACTIONS(1875), - [anon_sym_sizeof] = ACTIONS(1807), - [anon_sym___alignof__] = ACTIONS(89), - [anon_sym___alignof] = ACTIONS(89), - [anon_sym__alignof] = ACTIONS(89), - [anon_sym_alignof] = ACTIONS(89), - [anon_sym__Alignof] = ACTIONS(89), - [anon_sym_offsetof] = ACTIONS(91), - [anon_sym__Generic] = ACTIONS(93), - [anon_sym_asm] = ACTIONS(95), - [anon_sym___asm__] = ACTIONS(95), - [sym_number_literal] = ACTIONS(163), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(165), - [sym_false] = ACTIONS(165), - [anon_sym_NULL] = ACTIONS(105), - [anon_sym_nullptr] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - }, - [436] = { - [sym_type_qualifier] = STATE(733), - [sym_alignas_qualifier] = STATE(821), - [sym_expression] = STATE(1077), - [sym__string] = STATE(663), - [sym_conditional_expression] = STATE(663), - [sym_assignment_expression] = STATE(663), - [sym_pointer_expression] = STATE(943), - [sym_unary_expression] = STATE(663), - [sym_binary_expression] = STATE(663), - [sym_update_expression] = STATE(663), - [sym_cast_expression] = STATE(663), - [sym_sizeof_expression] = STATE(663), - [sym_alignof_expression] = STATE(663), - [sym_offsetof_expression] = STATE(663), - [sym_generic_expression] = STATE(663), - [sym_subscript_expression] = STATE(943), - [sym_call_expression] = STATE(943), - [sym_gnu_asm_expression] = STATE(663), - [sym_field_expression] = STATE(943), - [sym_compound_literal_expression] = STATE(663), - [sym_parenthesized_expression] = STATE(943), - [sym_char_literal] = STATE(663), - [sym_concatenated_string] = STATE(663), - [sym_string_literal] = STATE(659), - [sym_null] = STATE(663), - [aux_sym_array_declarator_repeat1] = STATE(733), - [sym_identifier] = ACTIONS(1801), - [anon_sym_LPAREN2] = ACTIONS(1861), - [anon_sym_BANG] = ACTIONS(1805), - [anon_sym_TILDE] = ACTIONS(1805), - [anon_sym_DASH] = ACTIONS(1803), - [anon_sym_PLUS] = ACTIONS(1803), - [anon_sym_STAR] = ACTIONS(1897), - [anon_sym_AMP] = ACTIONS(1865), - [anon_sym___extension__] = ACTIONS(1867), - [anon_sym_static] = ACTIONS(1869), - [anon_sym_RBRACK] = ACTIONS(1899), - [anon_sym_const] = ACTIONS(1867), - [anon_sym_constexpr] = ACTIONS(1867), - [anon_sym_volatile] = ACTIONS(1867), - [anon_sym_restrict] = ACTIONS(1867), - [anon_sym___restrict__] = ACTIONS(1867), - [anon_sym__Atomic] = ACTIONS(1867), - [anon_sym__Noreturn] = ACTIONS(1867), - [anon_sym_noreturn] = ACTIONS(1867), - [anon_sym_alignas] = ACTIONS(1873), - [anon_sym__Alignas] = ACTIONS(1873), - [anon_sym_DASH_DASH] = ACTIONS(1875), - [anon_sym_PLUS_PLUS] = ACTIONS(1875), - [anon_sym_sizeof] = ACTIONS(1807), - [anon_sym___alignof__] = ACTIONS(89), - [anon_sym___alignof] = ACTIONS(89), - [anon_sym__alignof] = ACTIONS(89), - [anon_sym_alignof] = ACTIONS(89), - [anon_sym__Alignof] = ACTIONS(89), - [anon_sym_offsetof] = ACTIONS(91), - [anon_sym__Generic] = ACTIONS(93), - [anon_sym_asm] = ACTIONS(95), - [anon_sym___asm__] = ACTIONS(95), - [sym_number_literal] = ACTIONS(163), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(165), - [sym_false] = ACTIONS(165), - [anon_sym_NULL] = ACTIONS(105), - [anon_sym_nullptr] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - }, - [437] = { - [sym_type_qualifier] = STATE(436), - [sym_alignas_qualifier] = STATE(821), - [sym_expression] = STATE(1091), - [sym__string] = STATE(663), - [sym_conditional_expression] = STATE(663), - [sym_assignment_expression] = STATE(663), - [sym_pointer_expression] = STATE(943), - [sym_unary_expression] = STATE(663), - [sym_binary_expression] = STATE(663), - [sym_update_expression] = STATE(663), - [sym_cast_expression] = STATE(663), - [sym_sizeof_expression] = STATE(663), - [sym_alignof_expression] = STATE(663), - [sym_offsetof_expression] = STATE(663), - [sym_generic_expression] = STATE(663), - [sym_subscript_expression] = STATE(943), - [sym_call_expression] = STATE(943), - [sym_gnu_asm_expression] = STATE(663), - [sym_field_expression] = STATE(943), - [sym_compound_literal_expression] = STATE(663), - [sym_parenthesized_expression] = STATE(943), - [sym_char_literal] = STATE(663), - [sym_concatenated_string] = STATE(663), - [sym_string_literal] = STATE(659), - [sym_null] = STATE(663), - [aux_sym_array_declarator_repeat1] = STATE(436), - [sym_identifier] = ACTIONS(1801), - [anon_sym_LPAREN2] = ACTIONS(1861), - [anon_sym_BANG] = ACTIONS(1805), - [anon_sym_TILDE] = ACTIONS(1805), - [anon_sym_DASH] = ACTIONS(1803), - [anon_sym_PLUS] = ACTIONS(1803), - [anon_sym_STAR] = ACTIONS(1901), - [anon_sym_AMP] = ACTIONS(1865), - [anon_sym___extension__] = ACTIONS(1867), - [anon_sym_static] = ACTIONS(1903), - [anon_sym_RBRACK] = ACTIONS(1905), - [anon_sym_const] = ACTIONS(1867), - [anon_sym_constexpr] = ACTIONS(1867), - [anon_sym_volatile] = ACTIONS(1867), - [anon_sym_restrict] = ACTIONS(1867), - [anon_sym___restrict__] = ACTIONS(1867), - [anon_sym__Atomic] = ACTIONS(1867), - [anon_sym__Noreturn] = ACTIONS(1867), - [anon_sym_noreturn] = ACTIONS(1867), - [anon_sym_alignas] = ACTIONS(1873), - [anon_sym__Alignas] = ACTIONS(1873), - [anon_sym_DASH_DASH] = ACTIONS(1875), - [anon_sym_PLUS_PLUS] = ACTIONS(1875), - [anon_sym_sizeof] = ACTIONS(1807), - [anon_sym___alignof__] = ACTIONS(89), - [anon_sym___alignof] = ACTIONS(89), - [anon_sym__alignof] = ACTIONS(89), - [anon_sym_alignof] = ACTIONS(89), - [anon_sym__Alignof] = ACTIONS(89), - [anon_sym_offsetof] = ACTIONS(91), - [anon_sym__Generic] = ACTIONS(93), - [anon_sym_asm] = ACTIONS(95), - [anon_sym___asm__] = ACTIONS(95), - [sym_number_literal] = ACTIONS(163), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(165), - [sym_false] = ACTIONS(165), - [anon_sym_NULL] = ACTIONS(105), - [anon_sym_nullptr] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - }, - [438] = { - [sym_type_qualifier] = STATE(733), - [sym_alignas_qualifier] = STATE(821), - [sym_expression] = STATE(1094), - [sym__string] = STATE(663), - [sym_conditional_expression] = STATE(663), - [sym_assignment_expression] = STATE(663), - [sym_pointer_expression] = STATE(943), - [sym_unary_expression] = STATE(663), - [sym_binary_expression] = STATE(663), - [sym_update_expression] = STATE(663), - [sym_cast_expression] = STATE(663), - [sym_sizeof_expression] = STATE(663), - [sym_alignof_expression] = STATE(663), - [sym_offsetof_expression] = STATE(663), - [sym_generic_expression] = STATE(663), - [sym_subscript_expression] = STATE(943), - [sym_call_expression] = STATE(943), - [sym_gnu_asm_expression] = STATE(663), - [sym_field_expression] = STATE(943), - [sym_compound_literal_expression] = STATE(663), - [sym_parenthesized_expression] = STATE(943), - [sym_char_literal] = STATE(663), - [sym_concatenated_string] = STATE(663), - [sym_string_literal] = STATE(659), - [sym_null] = STATE(663), - [aux_sym_array_declarator_repeat1] = STATE(733), - [sym_identifier] = ACTIONS(1801), - [anon_sym_LPAREN2] = ACTIONS(1861), - [anon_sym_BANG] = ACTIONS(1805), - [anon_sym_TILDE] = ACTIONS(1805), - [anon_sym_DASH] = ACTIONS(1803), - [anon_sym_PLUS] = ACTIONS(1803), - [anon_sym_STAR] = ACTIONS(1907), - [anon_sym_AMP] = ACTIONS(1865), - [anon_sym___extension__] = ACTIONS(1867), - [anon_sym_static] = ACTIONS(1869), - [anon_sym_RBRACK] = ACTIONS(1909), - [anon_sym_const] = ACTIONS(1867), - [anon_sym_constexpr] = ACTIONS(1867), - [anon_sym_volatile] = ACTIONS(1867), - [anon_sym_restrict] = ACTIONS(1867), - [anon_sym___restrict__] = ACTIONS(1867), - [anon_sym__Atomic] = ACTIONS(1867), - [anon_sym__Noreturn] = ACTIONS(1867), - [anon_sym_noreturn] = ACTIONS(1867), - [anon_sym_alignas] = ACTIONS(1873), - [anon_sym__Alignas] = ACTIONS(1873), - [anon_sym_DASH_DASH] = ACTIONS(1875), - [anon_sym_PLUS_PLUS] = ACTIONS(1875), - [anon_sym_sizeof] = ACTIONS(1807), - [anon_sym___alignof__] = ACTIONS(89), - [anon_sym___alignof] = ACTIONS(89), - [anon_sym__alignof] = ACTIONS(89), - [anon_sym_alignof] = ACTIONS(89), - [anon_sym__Alignof] = ACTIONS(89), - [anon_sym_offsetof] = ACTIONS(91), - [anon_sym__Generic] = ACTIONS(93), - [anon_sym_asm] = ACTIONS(95), - [anon_sym___asm__] = ACTIONS(95), - [sym_number_literal] = ACTIONS(163), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(165), - [sym_false] = ACTIONS(165), - [anon_sym_NULL] = ACTIONS(105), - [anon_sym_nullptr] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - }, - [439] = { - [sym_type_qualifier] = STATE(434), - [sym_alignas_qualifier] = STATE(821), - [sym_expression] = STATE(1087), - [sym__string] = STATE(663), - [sym_conditional_expression] = STATE(663), - [sym_assignment_expression] = STATE(663), - [sym_pointer_expression] = STATE(943), - [sym_unary_expression] = STATE(663), - [sym_binary_expression] = STATE(663), - [sym_update_expression] = STATE(663), - [sym_cast_expression] = STATE(663), - [sym_sizeof_expression] = STATE(663), - [sym_alignof_expression] = STATE(663), - [sym_offsetof_expression] = STATE(663), - [sym_generic_expression] = STATE(663), - [sym_subscript_expression] = STATE(943), - [sym_call_expression] = STATE(943), - [sym_gnu_asm_expression] = STATE(663), - [sym_field_expression] = STATE(943), - [sym_compound_literal_expression] = STATE(663), - [sym_parenthesized_expression] = STATE(943), - [sym_char_literal] = STATE(663), - [sym_concatenated_string] = STATE(663), - [sym_string_literal] = STATE(659), - [sym_null] = STATE(663), - [aux_sym_array_declarator_repeat1] = STATE(434), - [sym_identifier] = ACTIONS(1801), - [anon_sym_LPAREN2] = ACTIONS(1861), - [anon_sym_BANG] = ACTIONS(1805), - [anon_sym_TILDE] = ACTIONS(1805), - [anon_sym_DASH] = ACTIONS(1803), - [anon_sym_PLUS] = ACTIONS(1803), - [anon_sym_STAR] = ACTIONS(1911), - [anon_sym_AMP] = ACTIONS(1865), - [anon_sym___extension__] = ACTIONS(1867), - [anon_sym_static] = ACTIONS(1913), - [anon_sym_RBRACK] = ACTIONS(1915), - [anon_sym_const] = ACTIONS(1867), - [anon_sym_constexpr] = ACTIONS(1867), - [anon_sym_volatile] = ACTIONS(1867), - [anon_sym_restrict] = ACTIONS(1867), - [anon_sym___restrict__] = ACTIONS(1867), - [anon_sym__Atomic] = ACTIONS(1867), - [anon_sym__Noreturn] = ACTIONS(1867), - [anon_sym_noreturn] = ACTIONS(1867), - [anon_sym_alignas] = ACTIONS(1873), - [anon_sym__Alignas] = ACTIONS(1873), - [anon_sym_DASH_DASH] = ACTIONS(1875), - [anon_sym_PLUS_PLUS] = ACTIONS(1875), - [anon_sym_sizeof] = ACTIONS(1807), - [anon_sym___alignof__] = ACTIONS(89), - [anon_sym___alignof] = ACTIONS(89), - [anon_sym__alignof] = ACTIONS(89), - [anon_sym_alignof] = ACTIONS(89), - [anon_sym__Alignof] = ACTIONS(89), - [anon_sym_offsetof] = ACTIONS(91), - [anon_sym__Generic] = ACTIONS(93), - [anon_sym_asm] = ACTIONS(95), - [anon_sym___asm__] = ACTIONS(95), - [sym_number_literal] = ACTIONS(163), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(165), - [sym_false] = ACTIONS(165), - [anon_sym_NULL] = ACTIONS(105), - [anon_sym_nullptr] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - }, - [440] = { - [sym_type_qualifier] = STATE(431), - [sym_alignas_qualifier] = STATE(821), - [sym_expression] = STATE(1092), - [sym__string] = STATE(663), - [sym_conditional_expression] = STATE(663), - [sym_assignment_expression] = STATE(663), - [sym_pointer_expression] = STATE(943), - [sym_unary_expression] = STATE(663), - [sym_binary_expression] = STATE(663), - [sym_update_expression] = STATE(663), - [sym_cast_expression] = STATE(663), - [sym_sizeof_expression] = STATE(663), - [sym_alignof_expression] = STATE(663), - [sym_offsetof_expression] = STATE(663), - [sym_generic_expression] = STATE(663), - [sym_subscript_expression] = STATE(943), - [sym_call_expression] = STATE(943), - [sym_gnu_asm_expression] = STATE(663), - [sym_field_expression] = STATE(943), - [sym_compound_literal_expression] = STATE(663), - [sym_parenthesized_expression] = STATE(943), - [sym_char_literal] = STATE(663), - [sym_concatenated_string] = STATE(663), - [sym_string_literal] = STATE(659), - [sym_null] = STATE(663), - [aux_sym_array_declarator_repeat1] = STATE(431), - [sym_identifier] = ACTIONS(1801), - [anon_sym_LPAREN2] = ACTIONS(1861), - [anon_sym_BANG] = ACTIONS(1805), - [anon_sym_TILDE] = ACTIONS(1805), - [anon_sym_DASH] = ACTIONS(1803), - [anon_sym_PLUS] = ACTIONS(1803), - [anon_sym_STAR] = ACTIONS(1917), - [anon_sym_AMP] = ACTIONS(1865), - [anon_sym___extension__] = ACTIONS(1867), - [anon_sym_static] = ACTIONS(1919), - [anon_sym_RBRACK] = ACTIONS(1921), - [anon_sym_const] = ACTIONS(1867), - [anon_sym_constexpr] = ACTIONS(1867), - [anon_sym_volatile] = ACTIONS(1867), - [anon_sym_restrict] = ACTIONS(1867), - [anon_sym___restrict__] = ACTIONS(1867), - [anon_sym__Atomic] = ACTIONS(1867), - [anon_sym__Noreturn] = ACTIONS(1867), - [anon_sym_noreturn] = ACTIONS(1867), - [anon_sym_alignas] = ACTIONS(1873), - [anon_sym__Alignas] = ACTIONS(1873), - [anon_sym_DASH_DASH] = ACTIONS(1875), - [anon_sym_PLUS_PLUS] = ACTIONS(1875), - [anon_sym_sizeof] = ACTIONS(1807), - [anon_sym___alignof__] = ACTIONS(89), - [anon_sym___alignof] = ACTIONS(89), - [anon_sym__alignof] = ACTIONS(89), - [anon_sym_alignof] = ACTIONS(89), - [anon_sym__Alignof] = ACTIONS(89), - [anon_sym_offsetof] = ACTIONS(91), - [anon_sym__Generic] = ACTIONS(93), - [anon_sym_asm] = ACTIONS(95), - [anon_sym___asm__] = ACTIONS(95), - [sym_number_literal] = ACTIONS(163), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(165), - [sym_false] = ACTIONS(165), - [anon_sym_NULL] = ACTIONS(105), - [anon_sym_nullptr] = ACTIONS(105), + [495] = { + [sym_preproc_def] = STATE(495), + [sym_preproc_function_def] = STATE(495), + [sym_preproc_call] = STATE(495), + [sym_preproc_if_in_field_declaration_list] = STATE(495), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(495), + [sym__declaration_modifiers] = STATE(805), + [sym__declaration_specifiers] = STATE(1268), + [sym_attribute_specifier] = STATE(805), + [sym_attribute_declaration] = STATE(805), + [sym_ms_declspec_modifier] = STATE(805), + [sym_ms_based_modifier] = STATE(2174), + [sym__declarator] = STATE(1668), + [sym_parenthesized_declarator] = STATE(1569), + [sym_attributed_declarator] = STATE(1569), + [sym_pointer_declarator] = STATE(1569), + [sym_function_declarator] = STATE(1569), + [sym_array_declarator] = STATE(1569), + [sym_storage_class_specifier] = STATE(805), + [sym_type_qualifier] = STATE(805), + [sym_alignas_qualifier] = STATE(799), + [sym_type_specifier] = STATE(807), + [sym_sized_type_specifier] = STATE(873), + [sym_enum_specifier] = STATE(873), + [sym_struct_specifier] = STATE(873), + [sym_union_specifier] = STATE(873), + [sym__field_declaration_list_item] = STATE(495), + [sym_macro_invocation] = STATE(495), + [sym_field_declaration] = STATE(495), + [sym_macro_type_specifier] = STATE(873), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(495), + [aux_sym__declaration_specifiers_repeat1] = STATE(805), + [aux_sym_sized_type_specifier_repeat1] = STATE(890), + [sym_identifier] = ACTIONS(1879), + [aux_sym_preproc_def_token1] = ACTIONS(1960), + [aux_sym_preproc_if_token1] = ACTIONS(1963), + [aux_sym_preproc_if_token2] = ACTIONS(1888), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1966), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1966), + [sym_preproc_directive] = ACTIONS(1969), + [anon_sym_LPAREN2] = ACTIONS(1896), + [anon_sym_STAR] = ACTIONS(1899), + [anon_sym___extension__] = ACTIONS(1902), + [anon_sym_extern] = ACTIONS(1905), + [anon_sym___attribute__] = ACTIONS(1908), + [anon_sym___scanf] = ACTIONS(1911), + [anon_sym___printf] = ACTIONS(1911), + [anon_sym___read_mostly] = ACTIONS(1914), + [anon_sym___must_hold] = ACTIONS(1908), + [anon_sym___ro_after_init] = ACTIONS(1914), + [anon_sym___noreturn] = ACTIONS(1914), + [anon_sym___cold] = ACTIONS(1914), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1917), + [anon_sym___declspec] = ACTIONS(1920), + [anon_sym___based] = ACTIONS(1923), + [anon_sym_signed] = ACTIONS(1926), + [anon_sym_unsigned] = ACTIONS(1926), + [anon_sym_long] = ACTIONS(1926), + [anon_sym_short] = ACTIONS(1926), + [anon_sym_static] = ACTIONS(1905), + [anon_sym_auto] = ACTIONS(1905), + [anon_sym_register] = ACTIONS(1905), + [anon_sym_inline] = ACTIONS(1905), + [anon_sym___inline] = ACTIONS(1905), + [anon_sym___inline__] = ACTIONS(1905), + [anon_sym___forceinline] = ACTIONS(1905), + [anon_sym_thread_local] = ACTIONS(1905), + [anon_sym___thread] = ACTIONS(1905), + [anon_sym_const] = ACTIONS(1902), + [anon_sym_constexpr] = ACTIONS(1902), + [anon_sym_volatile] = ACTIONS(1902), + [anon_sym_restrict] = ACTIONS(1902), + [anon_sym___restrict__] = ACTIONS(1902), + [anon_sym__Atomic] = ACTIONS(1902), + [anon_sym__Noreturn] = ACTIONS(1902), + [anon_sym_noreturn] = ACTIONS(1902), + [anon_sym_alignas] = ACTIONS(1929), + [anon_sym__Alignas] = ACTIONS(1929), + [sym_primitive_type] = ACTIONS(1932), + [anon_sym_enum] = ACTIONS(1935), + [anon_sym_struct] = ACTIONS(1938), + [anon_sym_union] = ACTIONS(1941), [sym_comment] = ACTIONS(3), }, - [441] = { - [sym_preproc_def] = STATE(441), - [sym_preproc_function_def] = STATE(441), - [sym_preproc_call] = STATE(441), - [sym_preproc_if_in_field_declaration_list] = STATE(441), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(441), - [sym__declaration_modifiers] = STATE(697), - [sym__declaration_specifiers] = STATE(1141), - [sym_attribute_specifier] = STATE(697), - [sym_attribute_declaration] = STATE(697), - [sym_ms_declspec_modifier] = STATE(697), - [sym_storage_class_specifier] = STATE(697), - [sym_type_qualifier] = STATE(697), - [sym_alignas_qualifier] = STATE(703), - [sym_type_specifier] = STATE(710), - [sym_sized_type_specifier] = STATE(746), - [sym_enum_specifier] = STATE(746), - [sym_struct_specifier] = STATE(746), - [sym_union_specifier] = STATE(746), - [sym__field_declaration_list_item] = STATE(441), - [sym_field_declaration] = STATE(441), - [sym_macro_type_specifier] = STATE(746), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(441), - [aux_sym__declaration_specifiers_repeat1] = STATE(697), - [aux_sym_sized_type_specifier_repeat1] = STATE(747), - [sym_identifier] = ACTIONS(1923), - [aux_sym_preproc_def_token1] = ACTIONS(1926), - [aux_sym_preproc_if_token1] = ACTIONS(1929), - [aux_sym_preproc_if_token2] = ACTIONS(1932), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1934), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1934), - [aux_sym_preproc_else_token1] = ACTIONS(1932), - [aux_sym_preproc_elif_token1] = ACTIONS(1932), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1932), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1932), - [sym_preproc_directive] = ACTIONS(1937), - [anon_sym___extension__] = ACTIONS(1940), - [anon_sym_extern] = ACTIONS(1943), - [anon_sym___attribute__] = ACTIONS(1946), - [anon_sym___scanf] = ACTIONS(1949), - [anon_sym___printf] = ACTIONS(1949), - [anon_sym___read_mostly] = ACTIONS(1952), - [anon_sym___must_hold] = ACTIONS(1946), - [anon_sym___ro_after_init] = ACTIONS(1952), - [anon_sym___init] = ACTIONS(1952), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1955), - [anon_sym___declspec] = ACTIONS(1958), - [anon_sym_signed] = ACTIONS(1961), - [anon_sym_unsigned] = ACTIONS(1961), - [anon_sym_long] = ACTIONS(1961), - [anon_sym_short] = ACTIONS(1961), - [anon_sym_static] = ACTIONS(1943), - [anon_sym_auto] = ACTIONS(1943), - [anon_sym_register] = ACTIONS(1943), - [anon_sym_inline] = ACTIONS(1943), - [anon_sym___inline] = ACTIONS(1943), - [anon_sym___inline__] = ACTIONS(1943), - [anon_sym___forceinline] = ACTIONS(1943), - [anon_sym_thread_local] = ACTIONS(1943), - [anon_sym___thread] = ACTIONS(1943), - [anon_sym_const] = ACTIONS(1940), - [anon_sym_constexpr] = ACTIONS(1940), - [anon_sym_volatile] = ACTIONS(1940), - [anon_sym_restrict] = ACTIONS(1940), - [anon_sym___restrict__] = ACTIONS(1940), - [anon_sym__Atomic] = ACTIONS(1940), - [anon_sym__Noreturn] = ACTIONS(1940), - [anon_sym_noreturn] = ACTIONS(1940), - [anon_sym_alignas] = ACTIONS(1964), - [anon_sym__Alignas] = ACTIONS(1964), - [sym_primitive_type] = ACTIONS(1967), - [anon_sym_enum] = ACTIONS(1970), - [anon_sym_struct] = ACTIONS(1973), - [anon_sym_union] = ACTIONS(1976), + [496] = { + [sym_preproc_def] = STATE(496), + [sym_preproc_function_def] = STATE(496), + [sym_preproc_call] = STATE(496), + [sym_preproc_if_in_field_declaration_list] = STATE(496), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(496), + [sym__declaration_modifiers] = STATE(805), + [sym__declaration_specifiers] = STATE(1261), + [sym_attribute_specifier] = STATE(805), + [sym_attribute_declaration] = STATE(805), + [sym_ms_declspec_modifier] = STATE(805), + [sym_ms_based_modifier] = STATE(2174), + [sym__declarator] = STATE(1660), + [sym_parenthesized_declarator] = STATE(1569), + [sym_attributed_declarator] = STATE(1569), + [sym_pointer_declarator] = STATE(1569), + [sym_function_declarator] = STATE(1569), + [sym_array_declarator] = STATE(1569), + [sym_storage_class_specifier] = STATE(805), + [sym_type_qualifier] = STATE(805), + [sym_alignas_qualifier] = STATE(799), + [sym_type_specifier] = STATE(807), + [sym_sized_type_specifier] = STATE(873), + [sym_enum_specifier] = STATE(873), + [sym_struct_specifier] = STATE(873), + [sym_union_specifier] = STATE(873), + [sym__field_declaration_list_item] = STATE(496), + [sym_macro_invocation] = STATE(496), + [sym_field_declaration] = STATE(496), + [sym_macro_type_specifier] = STATE(873), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(496), + [aux_sym__declaration_specifiers_repeat1] = STATE(805), + [aux_sym_sized_type_specifier_repeat1] = STATE(890), + [sym_identifier] = ACTIONS(1879), + [aux_sym_preproc_def_token1] = ACTIONS(1972), + [aux_sym_preproc_if_token1] = ACTIONS(1975), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1978), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1978), + [sym_preproc_directive] = ACTIONS(1981), + [anon_sym_LPAREN2] = ACTIONS(1896), + [anon_sym_STAR] = ACTIONS(1899), + [anon_sym___extension__] = ACTIONS(1902), + [anon_sym_extern] = ACTIONS(1905), + [anon_sym___attribute__] = ACTIONS(1908), + [anon_sym___scanf] = ACTIONS(1911), + [anon_sym___printf] = ACTIONS(1911), + [anon_sym___read_mostly] = ACTIONS(1914), + [anon_sym___must_hold] = ACTIONS(1908), + [anon_sym___ro_after_init] = ACTIONS(1914), + [anon_sym___noreturn] = ACTIONS(1914), + [anon_sym___cold] = ACTIONS(1914), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1917), + [anon_sym___declspec] = ACTIONS(1920), + [anon_sym___based] = ACTIONS(1923), + [anon_sym_RBRACE] = ACTIONS(1984), + [anon_sym_signed] = ACTIONS(1926), + [anon_sym_unsigned] = ACTIONS(1926), + [anon_sym_long] = ACTIONS(1926), + [anon_sym_short] = ACTIONS(1926), + [anon_sym_static] = ACTIONS(1905), + [anon_sym_auto] = ACTIONS(1905), + [anon_sym_register] = ACTIONS(1905), + [anon_sym_inline] = ACTIONS(1905), + [anon_sym___inline] = ACTIONS(1905), + [anon_sym___inline__] = ACTIONS(1905), + [anon_sym___forceinline] = ACTIONS(1905), + [anon_sym_thread_local] = ACTIONS(1905), + [anon_sym___thread] = ACTIONS(1905), + [anon_sym_const] = ACTIONS(1902), + [anon_sym_constexpr] = ACTIONS(1902), + [anon_sym_volatile] = ACTIONS(1902), + [anon_sym_restrict] = ACTIONS(1902), + [anon_sym___restrict__] = ACTIONS(1902), + [anon_sym__Atomic] = ACTIONS(1902), + [anon_sym__Noreturn] = ACTIONS(1902), + [anon_sym_noreturn] = ACTIONS(1902), + [anon_sym_alignas] = ACTIONS(1929), + [anon_sym__Alignas] = ACTIONS(1929), + [sym_primitive_type] = ACTIONS(1932), + [anon_sym_enum] = ACTIONS(1935), + [anon_sym_struct] = ACTIONS(1938), + [anon_sym_union] = ACTIONS(1941), [sym_comment] = ACTIONS(3), }, - [442] = { - [sym_preproc_def] = STATE(445), - [sym_preproc_function_def] = STATE(445), - [sym_preproc_call] = STATE(445), - [sym_preproc_if_in_field_declaration_list] = STATE(445), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(445), - [sym__declaration_modifiers] = STATE(697), - [sym__declaration_specifiers] = STATE(1157), - [sym_attribute_specifier] = STATE(697), - [sym_attribute_declaration] = STATE(697), - [sym_ms_declspec_modifier] = STATE(697), - [sym_storage_class_specifier] = STATE(697), - [sym_type_qualifier] = STATE(697), - [sym_alignas_qualifier] = STATE(703), - [sym_type_specifier] = STATE(710), - [sym_sized_type_specifier] = STATE(746), - [sym_enum_specifier] = STATE(746), - [sym_struct_specifier] = STATE(746), - [sym_union_specifier] = STATE(746), - [sym__field_declaration_list_item] = STATE(445), - [sym_field_declaration] = STATE(445), - [sym_macro_type_specifier] = STATE(746), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(445), - [aux_sym__declaration_specifiers_repeat1] = STATE(697), - [aux_sym_sized_type_specifier_repeat1] = STATE(747), - [sym_identifier] = ACTIONS(1809), - [aux_sym_preproc_def_token1] = ACTIONS(1979), - [aux_sym_preproc_if_token1] = ACTIONS(1981), - [aux_sym_preproc_if_token2] = ACTIONS(1983), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1985), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1985), - [sym_preproc_directive] = ACTIONS(1987), - [anon_sym___extension__] = ACTIONS(51), - [anon_sym_extern] = ACTIONS(49), + [497] = { + [sym_preproc_def] = STATE(494), + [sym_preproc_function_def] = STATE(494), + [sym_preproc_call] = STATE(494), + [sym_preproc_if_in_field_declaration_list] = STATE(494), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(494), + [sym__declaration_modifiers] = STATE(805), + [sym__declaration_specifiers] = STATE(1268), + [sym_attribute_specifier] = STATE(805), + [sym_attribute_declaration] = STATE(805), + [sym_ms_declspec_modifier] = STATE(805), + [sym_ms_based_modifier] = STATE(2174), + [sym__declarator] = STATE(1668), + [sym_parenthesized_declarator] = STATE(1569), + [sym_attributed_declarator] = STATE(1569), + [sym_pointer_declarator] = STATE(1569), + [sym_function_declarator] = STATE(1569), + [sym_array_declarator] = STATE(1569), + [sym_storage_class_specifier] = STATE(805), + [sym_type_qualifier] = STATE(805), + [sym_alignas_qualifier] = STATE(799), + [sym_type_specifier] = STATE(807), + [sym_sized_type_specifier] = STATE(873), + [sym_enum_specifier] = STATE(873), + [sym_struct_specifier] = STATE(873), + [sym_union_specifier] = STATE(873), + [sym__field_declaration_list_item] = STATE(494), + [sym_macro_invocation] = STATE(494), + [sym_field_declaration] = STATE(494), + [sym_macro_type_specifier] = STATE(873), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(494), + [aux_sym__declaration_specifiers_repeat1] = STATE(805), + [aux_sym_sized_type_specifier_repeat1] = STATE(890), + [sym_identifier] = ACTIONS(1813), + [aux_sym_preproc_def_token1] = ACTIONS(1950), + [aux_sym_preproc_if_token1] = ACTIONS(1952), + [aux_sym_preproc_if_token2] = ACTIONS(1986), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1956), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1956), + [sym_preproc_directive] = ACTIONS(1958), + [anon_sym_LPAREN2] = ACTIONS(1831), + [anon_sym_STAR] = ACTIONS(1833), + [anon_sym___extension__] = ACTIONS(53), + [anon_sym_extern] = ACTIONS(51), [anon_sym___attribute__] = ACTIONS(33), [anon_sym___scanf] = ACTIONS(35), [anon_sym___printf] = ACTIONS(35), [anon_sym___read_mostly] = ACTIONS(37), [anon_sym___must_hold] = ACTIONS(33), [anon_sym___ro_after_init] = ACTIONS(37), - [anon_sym___init] = ACTIONS(37), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1137), + [anon_sym___noreturn] = ACTIONS(37), + [anon_sym___cold] = ACTIONS(37), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1145), [anon_sym___declspec] = ACTIONS(41), - [anon_sym_signed] = ACTIONS(47), - [anon_sym_unsigned] = ACTIONS(47), - [anon_sym_long] = ACTIONS(47), - [anon_sym_short] = ACTIONS(47), - [anon_sym_static] = ACTIONS(49), - [anon_sym_auto] = ACTIONS(49), - [anon_sym_register] = ACTIONS(49), - [anon_sym_inline] = ACTIONS(49), - [anon_sym___inline] = ACTIONS(49), - [anon_sym___inline__] = ACTIONS(49), - [anon_sym___forceinline] = ACTIONS(49), - [anon_sym_thread_local] = ACTIONS(49), - [anon_sym___thread] = ACTIONS(49), - [anon_sym_const] = ACTIONS(51), - [anon_sym_constexpr] = ACTIONS(51), - [anon_sym_volatile] = ACTIONS(51), - [anon_sym_restrict] = ACTIONS(51), - [anon_sym___restrict__] = ACTIONS(51), - [anon_sym__Atomic] = ACTIONS(51), - [anon_sym__Noreturn] = ACTIONS(51), - [anon_sym_noreturn] = ACTIONS(51), - [anon_sym_alignas] = ACTIONS(53), - [anon_sym__Alignas] = ACTIONS(53), - [sym_primitive_type] = ACTIONS(55), - [anon_sym_enum] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), + [anon_sym___based] = ACTIONS(1835), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_const] = ACTIONS(53), + [anon_sym_constexpr] = ACTIONS(53), + [anon_sym_volatile] = ACTIONS(53), + [anon_sym_restrict] = ACTIONS(53), + [anon_sym___restrict__] = ACTIONS(53), + [anon_sym__Atomic] = ACTIONS(53), + [anon_sym__Noreturn] = ACTIONS(53), + [anon_sym_noreturn] = ACTIONS(53), + [anon_sym_alignas] = ACTIONS(55), + [anon_sym__Alignas] = ACTIONS(55), + [sym_primitive_type] = ACTIONS(57), + [anon_sym_enum] = ACTIONS(59), + [anon_sym_struct] = ACTIONS(61), + [anon_sym_union] = ACTIONS(63), [sym_comment] = ACTIONS(3), }, - [443] = { - [sym_preproc_def] = STATE(448), - [sym_preproc_function_def] = STATE(448), - [sym_preproc_call] = STATE(448), - [sym_preproc_if_in_field_declaration_list] = STATE(448), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(448), - [sym__declaration_modifiers] = STATE(697), - [sym__declaration_specifiers] = STATE(1142), - [sym_attribute_specifier] = STATE(697), - [sym_attribute_declaration] = STATE(697), - [sym_ms_declspec_modifier] = STATE(697), - [sym_storage_class_specifier] = STATE(697), - [sym_type_qualifier] = STATE(697), - [sym_alignas_qualifier] = STATE(703), - [sym_type_specifier] = STATE(710), - [sym_sized_type_specifier] = STATE(746), - [sym_enum_specifier] = STATE(746), - [sym_struct_specifier] = STATE(746), - [sym_union_specifier] = STATE(746), - [sym__field_declaration_list_item] = STATE(448), - [sym_field_declaration] = STATE(448), - [sym_macro_type_specifier] = STATE(746), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(448), - [aux_sym__declaration_specifiers_repeat1] = STATE(697), - [aux_sym_sized_type_specifier_repeat1] = STATE(747), - [sym_identifier] = ACTIONS(1809), - [aux_sym_preproc_def_token1] = ACTIONS(1989), - [aux_sym_preproc_if_token1] = ACTIONS(1991), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1993), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1993), - [sym_preproc_directive] = ACTIONS(1995), - [anon_sym___extension__] = ACTIONS(51), - [anon_sym_extern] = ACTIONS(49), + [498] = { + [sym_preproc_def] = STATE(496), + [sym_preproc_function_def] = STATE(496), + [sym_preproc_call] = STATE(496), + [sym_preproc_if_in_field_declaration_list] = STATE(496), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(496), + [sym__declaration_modifiers] = STATE(805), + [sym__declaration_specifiers] = STATE(1261), + [sym_attribute_specifier] = STATE(805), + [sym_attribute_declaration] = STATE(805), + [sym_ms_declspec_modifier] = STATE(805), + [sym_ms_based_modifier] = STATE(2174), + [sym__declarator] = STATE(1660), + [sym_parenthesized_declarator] = STATE(1569), + [sym_attributed_declarator] = STATE(1569), + [sym_pointer_declarator] = STATE(1569), + [sym_function_declarator] = STATE(1569), + [sym_array_declarator] = STATE(1569), + [sym_storage_class_specifier] = STATE(805), + [sym_type_qualifier] = STATE(805), + [sym_alignas_qualifier] = STATE(799), + [sym_type_specifier] = STATE(807), + [sym_sized_type_specifier] = STATE(873), + [sym_enum_specifier] = STATE(873), + [sym_struct_specifier] = STATE(873), + [sym_union_specifier] = STATE(873), + [sym__field_declaration_list_item] = STATE(496), + [sym_macro_invocation] = STATE(496), + [sym_field_declaration] = STATE(496), + [sym_macro_type_specifier] = STATE(873), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(496), + [aux_sym__declaration_specifiers_repeat1] = STATE(805), + [aux_sym_sized_type_specifier_repeat1] = STATE(890), + [sym_identifier] = ACTIONS(1813), + [aux_sym_preproc_def_token1] = ACTIONS(1988), + [aux_sym_preproc_if_token1] = ACTIONS(1990), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1992), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1992), + [sym_preproc_directive] = ACTIONS(1994), + [anon_sym_LPAREN2] = ACTIONS(1831), + [anon_sym_STAR] = ACTIONS(1833), + [anon_sym___extension__] = ACTIONS(53), + [anon_sym_extern] = ACTIONS(51), [anon_sym___attribute__] = ACTIONS(33), [anon_sym___scanf] = ACTIONS(35), [anon_sym___printf] = ACTIONS(35), [anon_sym___read_mostly] = ACTIONS(37), [anon_sym___must_hold] = ACTIONS(33), [anon_sym___ro_after_init] = ACTIONS(37), - [anon_sym___init] = ACTIONS(37), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1137), + [anon_sym___noreturn] = ACTIONS(37), + [anon_sym___cold] = ACTIONS(37), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1145), [anon_sym___declspec] = ACTIONS(41), - [anon_sym_RBRACE] = ACTIONS(1997), - [anon_sym_signed] = ACTIONS(47), - [anon_sym_unsigned] = ACTIONS(47), - [anon_sym_long] = ACTIONS(47), - [anon_sym_short] = ACTIONS(47), - [anon_sym_static] = ACTIONS(49), - [anon_sym_auto] = ACTIONS(49), - [anon_sym_register] = ACTIONS(49), - [anon_sym_inline] = ACTIONS(49), - [anon_sym___inline] = ACTIONS(49), - [anon_sym___inline__] = ACTIONS(49), - [anon_sym___forceinline] = ACTIONS(49), - [anon_sym_thread_local] = ACTIONS(49), - [anon_sym___thread] = ACTIONS(49), - [anon_sym_const] = ACTIONS(51), - [anon_sym_constexpr] = ACTIONS(51), - [anon_sym_volatile] = ACTIONS(51), - [anon_sym_restrict] = ACTIONS(51), - [anon_sym___restrict__] = ACTIONS(51), - [anon_sym__Atomic] = ACTIONS(51), - [anon_sym__Noreturn] = ACTIONS(51), - [anon_sym_noreturn] = ACTIONS(51), - [anon_sym_alignas] = ACTIONS(53), - [anon_sym__Alignas] = ACTIONS(53), - [sym_primitive_type] = ACTIONS(55), - [anon_sym_enum] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), + [anon_sym___based] = ACTIONS(1835), + [anon_sym_RBRACE] = ACTIONS(1996), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_const] = ACTIONS(53), + [anon_sym_constexpr] = ACTIONS(53), + [anon_sym_volatile] = ACTIONS(53), + [anon_sym_restrict] = ACTIONS(53), + [anon_sym___restrict__] = ACTIONS(53), + [anon_sym__Atomic] = ACTIONS(53), + [anon_sym__Noreturn] = ACTIONS(53), + [anon_sym_noreturn] = ACTIONS(53), + [anon_sym_alignas] = ACTIONS(55), + [anon_sym__Alignas] = ACTIONS(55), + [sym_primitive_type] = ACTIONS(57), + [anon_sym_enum] = ACTIONS(59), + [anon_sym_struct] = ACTIONS(61), + [anon_sym_union] = ACTIONS(63), [sym_comment] = ACTIONS(3), }, - [444] = { - [sym_preproc_def] = STATE(443), - [sym_preproc_function_def] = STATE(443), - [sym_preproc_call] = STATE(443), - [sym_preproc_if_in_field_declaration_list] = STATE(443), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(443), - [sym__declaration_modifiers] = STATE(697), - [sym__declaration_specifiers] = STATE(1142), - [sym_attribute_specifier] = STATE(697), - [sym_attribute_declaration] = STATE(697), - [sym_ms_declspec_modifier] = STATE(697), - [sym_storage_class_specifier] = STATE(697), - [sym_type_qualifier] = STATE(697), - [sym_alignas_qualifier] = STATE(703), - [sym_type_specifier] = STATE(710), - [sym_sized_type_specifier] = STATE(746), - [sym_enum_specifier] = STATE(746), - [sym_struct_specifier] = STATE(746), - [sym_union_specifier] = STATE(746), - [sym__field_declaration_list_item] = STATE(443), - [sym_field_declaration] = STATE(443), - [sym_macro_type_specifier] = STATE(746), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(443), - [aux_sym__declaration_specifiers_repeat1] = STATE(697), - [aux_sym_sized_type_specifier_repeat1] = STATE(747), - [sym_identifier] = ACTIONS(1809), - [aux_sym_preproc_def_token1] = ACTIONS(1989), - [aux_sym_preproc_if_token1] = ACTIONS(1991), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1993), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1993), - [sym_preproc_directive] = ACTIONS(1995), - [anon_sym___extension__] = ACTIONS(51), - [anon_sym_extern] = ACTIONS(49), + [499] = { + [sym_preproc_def] = STATE(498), + [sym_preproc_function_def] = STATE(498), + [sym_preproc_call] = STATE(498), + [sym_preproc_if_in_field_declaration_list] = STATE(498), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(498), + [sym__declaration_modifiers] = STATE(805), + [sym__declaration_specifiers] = STATE(1261), + [sym_attribute_specifier] = STATE(805), + [sym_attribute_declaration] = STATE(805), + [sym_ms_declspec_modifier] = STATE(805), + [sym_ms_based_modifier] = STATE(2174), + [sym__declarator] = STATE(1660), + [sym_parenthesized_declarator] = STATE(1569), + [sym_attributed_declarator] = STATE(1569), + [sym_pointer_declarator] = STATE(1569), + [sym_function_declarator] = STATE(1569), + [sym_array_declarator] = STATE(1569), + [sym_storage_class_specifier] = STATE(805), + [sym_type_qualifier] = STATE(805), + [sym_alignas_qualifier] = STATE(799), + [sym_type_specifier] = STATE(807), + [sym_sized_type_specifier] = STATE(873), + [sym_enum_specifier] = STATE(873), + [sym_struct_specifier] = STATE(873), + [sym_union_specifier] = STATE(873), + [sym__field_declaration_list_item] = STATE(498), + [sym_macro_invocation] = STATE(498), + [sym_field_declaration] = STATE(498), + [sym_macro_type_specifier] = STATE(873), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(498), + [aux_sym__declaration_specifiers_repeat1] = STATE(805), + [aux_sym_sized_type_specifier_repeat1] = STATE(890), + [sym_identifier] = ACTIONS(1813), + [aux_sym_preproc_def_token1] = ACTIONS(1988), + [aux_sym_preproc_if_token1] = ACTIONS(1990), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1992), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1992), + [sym_preproc_directive] = ACTIONS(1994), + [anon_sym_LPAREN2] = ACTIONS(1831), + [anon_sym_STAR] = ACTIONS(1833), + [anon_sym___extension__] = ACTIONS(53), + [anon_sym_extern] = ACTIONS(51), [anon_sym___attribute__] = ACTIONS(33), [anon_sym___scanf] = ACTIONS(35), [anon_sym___printf] = ACTIONS(35), [anon_sym___read_mostly] = ACTIONS(37), [anon_sym___must_hold] = ACTIONS(33), [anon_sym___ro_after_init] = ACTIONS(37), - [anon_sym___init] = ACTIONS(37), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1137), + [anon_sym___noreturn] = ACTIONS(37), + [anon_sym___cold] = ACTIONS(37), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1145), [anon_sym___declspec] = ACTIONS(41), - [anon_sym_RBRACE] = ACTIONS(1999), - [anon_sym_signed] = ACTIONS(47), - [anon_sym_unsigned] = ACTIONS(47), - [anon_sym_long] = ACTIONS(47), - [anon_sym_short] = ACTIONS(47), - [anon_sym_static] = ACTIONS(49), - [anon_sym_auto] = ACTIONS(49), - [anon_sym_register] = ACTIONS(49), - [anon_sym_inline] = ACTIONS(49), - [anon_sym___inline] = ACTIONS(49), - [anon_sym___inline__] = ACTIONS(49), - [anon_sym___forceinline] = ACTIONS(49), - [anon_sym_thread_local] = ACTIONS(49), - [anon_sym___thread] = ACTIONS(49), - [anon_sym_const] = ACTIONS(51), - [anon_sym_constexpr] = ACTIONS(51), - [anon_sym_volatile] = ACTIONS(51), - [anon_sym_restrict] = ACTIONS(51), - [anon_sym___restrict__] = ACTIONS(51), - [anon_sym__Atomic] = ACTIONS(51), - [anon_sym__Noreturn] = ACTIONS(51), - [anon_sym_noreturn] = ACTIONS(51), - [anon_sym_alignas] = ACTIONS(53), - [anon_sym__Alignas] = ACTIONS(53), - [sym_primitive_type] = ACTIONS(55), - [anon_sym_enum] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), + [anon_sym___based] = ACTIONS(1835), + [anon_sym_RBRACE] = ACTIONS(1998), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_const] = ACTIONS(53), + [anon_sym_constexpr] = ACTIONS(53), + [anon_sym_volatile] = ACTIONS(53), + [anon_sym_restrict] = ACTIONS(53), + [anon_sym___restrict__] = ACTIONS(53), + [anon_sym__Atomic] = ACTIONS(53), + [anon_sym__Noreturn] = ACTIONS(53), + [anon_sym_noreturn] = ACTIONS(53), + [anon_sym_alignas] = ACTIONS(55), + [anon_sym__Alignas] = ACTIONS(55), + [sym_primitive_type] = ACTIONS(57), + [anon_sym_enum] = ACTIONS(59), + [anon_sym_struct] = ACTIONS(61), + [anon_sym_union] = ACTIONS(63), [sym_comment] = ACTIONS(3), }, - [445] = { - [sym_preproc_def] = STATE(446), - [sym_preproc_function_def] = STATE(446), - [sym_preproc_call] = STATE(446), - [sym_preproc_if_in_field_declaration_list] = STATE(446), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(446), - [sym__declaration_modifiers] = STATE(697), - [sym__declaration_specifiers] = STATE(1157), - [sym_attribute_specifier] = STATE(697), - [sym_attribute_declaration] = STATE(697), - [sym_ms_declspec_modifier] = STATE(697), - [sym_storage_class_specifier] = STATE(697), - [sym_type_qualifier] = STATE(697), - [sym_alignas_qualifier] = STATE(703), - [sym_type_specifier] = STATE(710), - [sym_sized_type_specifier] = STATE(746), - [sym_enum_specifier] = STATE(746), - [sym_struct_specifier] = STATE(746), - [sym_union_specifier] = STATE(746), - [sym__field_declaration_list_item] = STATE(446), - [sym_field_declaration] = STATE(446), - [sym_macro_type_specifier] = STATE(746), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(446), - [aux_sym__declaration_specifiers_repeat1] = STATE(697), - [aux_sym_sized_type_specifier_repeat1] = STATE(747), - [sym_identifier] = ACTIONS(1809), - [aux_sym_preproc_def_token1] = ACTIONS(1979), - [aux_sym_preproc_if_token1] = ACTIONS(1981), - [aux_sym_preproc_if_token2] = ACTIONS(2001), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1985), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1985), - [sym_preproc_directive] = ACTIONS(1987), - [anon_sym___extension__] = ACTIONS(51), - [anon_sym_extern] = ACTIONS(49), + [500] = { + [sym_expression] = STATE(1057), + [sym__string] = STATE(758), + [sym_conditional_expression] = STATE(758), + [sym_assignment_expression] = STATE(758), + [sym_pointer_expression] = STATE(1066), + [sym_unary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_cast_expression] = STATE(758), + [sym_sizeof_expression] = STATE(758), + [sym_alignof_expression] = STATE(758), + [sym_offsetof_expression] = STATE(758), + [sym_generic_expression] = STATE(758), + [sym_subscript_expression] = STATE(1066), + [sym_call_expression] = STATE(1066), + [sym_gnu_asm_expression] = STATE(758), + [sym_field_expression] = STATE(1066), + [sym_compound_literal_expression] = STATE(758), + [sym_parenthesized_expression] = STATE(1066), + [sym_initializer_list] = STATE(760), + [sym_char_literal] = STATE(758), + [sym_concatenated_string] = STATE(758), + [sym_string_literal] = STATE(671), + [sym_null] = STATE(758), + [sym_identifier] = ACTIONS(2000), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1431), + [anon_sym_LPAREN2] = ACTIONS(1431), + [anon_sym_BANG] = ACTIONS(2002), + [anon_sym_TILDE] = ACTIONS(2004), + [anon_sym_DASH] = ACTIONS(1437), + [anon_sym_PLUS] = ACTIONS(1437), + [anon_sym_STAR] = ACTIONS(1431), + [anon_sym_SLASH] = ACTIONS(1437), + [anon_sym_PERCENT] = ACTIONS(1431), + [anon_sym_PIPE_PIPE] = ACTIONS(1431), + [anon_sym_AMP_AMP] = ACTIONS(1431), + [anon_sym_PIPE] = ACTIONS(1437), + [anon_sym_CARET] = ACTIONS(1431), + [anon_sym_AMP] = ACTIONS(1437), + [anon_sym_EQ_EQ] = ACTIONS(1431), + [anon_sym_BANG_EQ] = ACTIONS(1431), + [anon_sym_GT] = ACTIONS(1437), + [anon_sym_GT_EQ] = ACTIONS(1431), + [anon_sym_LT_EQ] = ACTIONS(1431), + [anon_sym_LT] = ACTIONS(1437), + [anon_sym_LT_LT] = ACTIONS(1431), + [anon_sym_GT_GT] = ACTIONS(1431), + [anon_sym_LBRACE] = ACTIONS(1439), + [anon_sym_LBRACK] = ACTIONS(1431), + [anon_sym_RBRACK] = ACTIONS(1431), + [anon_sym_QMARK] = ACTIONS(1431), + [anon_sym_DASH_DASH] = ACTIONS(1431), + [anon_sym_PLUS_PLUS] = ACTIONS(1431), + [anon_sym_sizeof] = ACTIONS(2006), + [anon_sym___alignof__] = ACTIONS(91), + [anon_sym___alignof] = ACTIONS(91), + [anon_sym__alignof] = ACTIONS(91), + [anon_sym_alignof] = ACTIONS(91), + [anon_sym__Alignof] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(93), + [anon_sym__Generic] = ACTIONS(95), + [anon_sym_asm] = ACTIONS(97), + [anon_sym___asm__] = ACTIONS(97), + [anon_sym_DOT] = ACTIONS(1437), + [anon_sym_DASH_GT] = ACTIONS(1431), + [sym_number_literal] = ACTIONS(165), + [anon_sym_L_SQUOTE] = ACTIONS(101), + [anon_sym_u_SQUOTE] = ACTIONS(101), + [anon_sym_U_SQUOTE] = ACTIONS(101), + [anon_sym_u8_SQUOTE] = ACTIONS(101), + [anon_sym_SQUOTE] = ACTIONS(101), + [anon_sym_L_DQUOTE] = ACTIONS(103), + [anon_sym_u_DQUOTE] = ACTIONS(103), + [anon_sym_U_DQUOTE] = ACTIONS(103), + [anon_sym_u8_DQUOTE] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_true] = ACTIONS(167), + [sym_false] = ACTIONS(167), + [anon_sym_NULL] = ACTIONS(107), + [anon_sym_nullptr] = ACTIONS(107), + [sym_comment] = ACTIONS(3), + }, + [501] = { + [sym__declaration_modifiers] = STATE(805), + [sym__declaration_specifiers] = STATE(1343), + [sym_attribute_specifier] = STATE(805), + [sym_attribute_declaration] = STATE(805), + [sym_ms_declspec_modifier] = STATE(805), + [sym_macro_modifier] = STATE(1587), + [sym_ms_call_modifier] = STATE(1500), + [sym__abstract_declarator] = STATE(1727), + [sym_abstract_parenthesized_declarator] = STATE(1717), + [sym_abstract_pointer_declarator] = STATE(1717), + [sym_abstract_function_declarator] = STATE(1717), + [sym_abstract_array_declarator] = STATE(1717), + [sym_storage_class_specifier] = STATE(805), + [sym_type_qualifier] = STATE(805), + [sym_alignas_qualifier] = STATE(799), + [sym_type_specifier] = STATE(807), + [sym_sized_type_specifier] = STATE(873), + [sym_enum_specifier] = STATE(873), + [sym_struct_specifier] = STATE(873), + [sym_union_specifier] = STATE(873), + [sym_variadic_parameter] = STATE(1832), + [sym_parameter_list] = STATE(1691), + [sym_parameter_declaration] = STATE(1832), + [sym_macro_type_specifier] = STATE(873), + [aux_sym__declaration_specifiers_repeat1] = STATE(805), + [aux_sym_sized_type_specifier_repeat1] = STATE(890), + [sym_identifier] = ACTIONS(2008), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1869), + [anon_sym_RPAREN] = ACTIONS(1871), + [anon_sym_LPAREN2] = ACTIONS(2010), + [anon_sym_STAR] = ACTIONS(2012), + [anon_sym___extension__] = ACTIONS(53), + [anon_sym_extern] = ACTIONS(51), [anon_sym___attribute__] = ACTIONS(33), [anon_sym___scanf] = ACTIONS(35), [anon_sym___printf] = ACTIONS(35), [anon_sym___read_mostly] = ACTIONS(37), [anon_sym___must_hold] = ACTIONS(33), [anon_sym___ro_after_init] = ACTIONS(37), - [anon_sym___init] = ACTIONS(37), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1137), + [anon_sym___noreturn] = ACTIONS(37), + [anon_sym___cold] = ACTIONS(37), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1145), [anon_sym___declspec] = ACTIONS(41), - [anon_sym_signed] = ACTIONS(47), - [anon_sym_unsigned] = ACTIONS(47), - [anon_sym_long] = ACTIONS(47), - [anon_sym_short] = ACTIONS(47), - [anon_sym_static] = ACTIONS(49), - [anon_sym_auto] = ACTIONS(49), - [anon_sym_register] = ACTIONS(49), - [anon_sym_inline] = ACTIONS(49), - [anon_sym___inline] = ACTIONS(49), - [anon_sym___inline__] = ACTIONS(49), - [anon_sym___forceinline] = ACTIONS(49), - [anon_sym_thread_local] = ACTIONS(49), - [anon_sym___thread] = ACTIONS(49), - [anon_sym_const] = ACTIONS(51), - [anon_sym_constexpr] = ACTIONS(51), - [anon_sym_volatile] = ACTIONS(51), - [anon_sym_restrict] = ACTIONS(51), - [anon_sym___restrict__] = ACTIONS(51), - [anon_sym__Atomic] = ACTIONS(51), - [anon_sym__Noreturn] = ACTIONS(51), - [anon_sym_noreturn] = ACTIONS(51), - [anon_sym_alignas] = ACTIONS(53), - [anon_sym__Alignas] = ACTIONS(53), - [sym_primitive_type] = ACTIONS(55), - [anon_sym_enum] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), + [anon_sym___init] = ACTIONS(43), + [anon_sym___exit] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_LBRACK] = ACTIONS(1877), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_const] = ACTIONS(53), + [anon_sym_constexpr] = ACTIONS(53), + [anon_sym_volatile] = ACTIONS(53), + [anon_sym_restrict] = ACTIONS(53), + [anon_sym___restrict__] = ACTIONS(53), + [anon_sym__Atomic] = ACTIONS(53), + [anon_sym__Noreturn] = ACTIONS(53), + [anon_sym_noreturn] = ACTIONS(53), + [anon_sym_alignas] = ACTIONS(55), + [anon_sym__Alignas] = ACTIONS(55), + [sym_primitive_type] = ACTIONS(57), + [anon_sym_enum] = ACTIONS(59), + [anon_sym_struct] = ACTIONS(61), + [anon_sym_union] = ACTIONS(63), [sym_comment] = ACTIONS(3), }, - [446] = { - [sym_preproc_def] = STATE(446), - [sym_preproc_function_def] = STATE(446), - [sym_preproc_call] = STATE(446), - [sym_preproc_if_in_field_declaration_list] = STATE(446), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(446), - [sym__declaration_modifiers] = STATE(697), - [sym__declaration_specifiers] = STATE(1157), - [sym_attribute_specifier] = STATE(697), - [sym_attribute_declaration] = STATE(697), - [sym_ms_declspec_modifier] = STATE(697), - [sym_storage_class_specifier] = STATE(697), - [sym_type_qualifier] = STATE(697), - [sym_alignas_qualifier] = STATE(703), - [sym_type_specifier] = STATE(710), - [sym_sized_type_specifier] = STATE(746), - [sym_enum_specifier] = STATE(746), - [sym_struct_specifier] = STATE(746), - [sym_union_specifier] = STATE(746), - [sym__field_declaration_list_item] = STATE(446), - [sym_field_declaration] = STATE(446), - [sym_macro_type_specifier] = STATE(746), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(446), - [aux_sym__declaration_specifiers_repeat1] = STATE(697), - [aux_sym_sized_type_specifier_repeat1] = STATE(747), - [sym_identifier] = ACTIONS(1923), - [aux_sym_preproc_def_token1] = ACTIONS(2003), - [aux_sym_preproc_if_token1] = ACTIONS(2006), - [aux_sym_preproc_if_token2] = ACTIONS(1932), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2009), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2009), - [sym_preproc_directive] = ACTIONS(2012), - [anon_sym___extension__] = ACTIONS(1940), - [anon_sym_extern] = ACTIONS(1943), - [anon_sym___attribute__] = ACTIONS(1946), - [anon_sym___scanf] = ACTIONS(1949), - [anon_sym___printf] = ACTIONS(1949), - [anon_sym___read_mostly] = ACTIONS(1952), - [anon_sym___must_hold] = ACTIONS(1946), - [anon_sym___ro_after_init] = ACTIONS(1952), - [anon_sym___init] = ACTIONS(1952), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1955), - [anon_sym___declspec] = ACTIONS(1958), - [anon_sym_signed] = ACTIONS(1961), - [anon_sym_unsigned] = ACTIONS(1961), - [anon_sym_long] = ACTIONS(1961), - [anon_sym_short] = ACTIONS(1961), - [anon_sym_static] = ACTIONS(1943), - [anon_sym_auto] = ACTIONS(1943), - [anon_sym_register] = ACTIONS(1943), - [anon_sym_inline] = ACTIONS(1943), - [anon_sym___inline] = ACTIONS(1943), - [anon_sym___inline__] = ACTIONS(1943), - [anon_sym___forceinline] = ACTIONS(1943), - [anon_sym_thread_local] = ACTIONS(1943), - [anon_sym___thread] = ACTIONS(1943), - [anon_sym_const] = ACTIONS(1940), - [anon_sym_constexpr] = ACTIONS(1940), - [anon_sym_volatile] = ACTIONS(1940), - [anon_sym_restrict] = ACTIONS(1940), - [anon_sym___restrict__] = ACTIONS(1940), - [anon_sym__Atomic] = ACTIONS(1940), - [anon_sym__Noreturn] = ACTIONS(1940), - [anon_sym_noreturn] = ACTIONS(1940), - [anon_sym_alignas] = ACTIONS(1964), - [anon_sym__Alignas] = ACTIONS(1964), - [sym_primitive_type] = ACTIONS(1967), - [anon_sym_enum] = ACTIONS(1970), - [anon_sym_struct] = ACTIONS(1973), - [anon_sym_union] = ACTIONS(1976), + [502] = { + [sym_type_qualifier] = STATE(511), + [sym_alignas_qualifier] = STATE(965), + [sym_expression] = STATE(1206), + [sym__string] = STATE(758), + [sym_conditional_expression] = STATE(758), + [sym_assignment_expression] = STATE(758), + [sym_pointer_expression] = STATE(1066), + [sym_unary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_cast_expression] = STATE(758), + [sym_sizeof_expression] = STATE(758), + [sym_alignof_expression] = STATE(758), + [sym_offsetof_expression] = STATE(758), + [sym_generic_expression] = STATE(758), + [sym_subscript_expression] = STATE(1066), + [sym_call_expression] = STATE(1066), + [sym_gnu_asm_expression] = STATE(758), + [sym_field_expression] = STATE(1066), + [sym_compound_literal_expression] = STATE(758), + [sym_parenthesized_expression] = STATE(1066), + [sym_char_literal] = STATE(758), + [sym_concatenated_string] = STATE(758), + [sym_string_literal] = STATE(671), + [sym_null] = STATE(758), + [aux_sym_array_declarator_repeat1] = STATE(511), + [sym_identifier] = ACTIONS(2000), + [anon_sym_LPAREN2] = ACTIONS(2014), + [anon_sym_BANG] = ACTIONS(2004), + [anon_sym_TILDE] = ACTIONS(2004), + [anon_sym_DASH] = ACTIONS(2002), + [anon_sym_PLUS] = ACTIONS(2002), + [anon_sym_STAR] = ACTIONS(2016), + [anon_sym_AMP] = ACTIONS(2018), + [anon_sym___extension__] = ACTIONS(2020), + [anon_sym_static] = ACTIONS(2022), + [anon_sym_RBRACK] = ACTIONS(2024), + [anon_sym_const] = ACTIONS(2020), + [anon_sym_constexpr] = ACTIONS(2020), + [anon_sym_volatile] = ACTIONS(2020), + [anon_sym_restrict] = ACTIONS(2020), + [anon_sym___restrict__] = ACTIONS(2020), + [anon_sym__Atomic] = ACTIONS(2020), + [anon_sym__Noreturn] = ACTIONS(2020), + [anon_sym_noreturn] = ACTIONS(2020), + [anon_sym_alignas] = ACTIONS(2026), + [anon_sym__Alignas] = ACTIONS(2026), + [anon_sym_DASH_DASH] = ACTIONS(2028), + [anon_sym_PLUS_PLUS] = ACTIONS(2028), + [anon_sym_sizeof] = ACTIONS(2006), + [anon_sym___alignof__] = ACTIONS(91), + [anon_sym___alignof] = ACTIONS(91), + [anon_sym__alignof] = ACTIONS(91), + [anon_sym_alignof] = ACTIONS(91), + [anon_sym__Alignof] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(93), + [anon_sym__Generic] = ACTIONS(95), + [anon_sym_asm] = ACTIONS(97), + [anon_sym___asm__] = ACTIONS(97), + [sym_number_literal] = ACTIONS(165), + [anon_sym_L_SQUOTE] = ACTIONS(101), + [anon_sym_u_SQUOTE] = ACTIONS(101), + [anon_sym_U_SQUOTE] = ACTIONS(101), + [anon_sym_u8_SQUOTE] = ACTIONS(101), + [anon_sym_SQUOTE] = ACTIONS(101), + [anon_sym_L_DQUOTE] = ACTIONS(103), + [anon_sym_u_DQUOTE] = ACTIONS(103), + [anon_sym_U_DQUOTE] = ACTIONS(103), + [anon_sym_u8_DQUOTE] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_true] = ACTIONS(167), + [sym_false] = ACTIONS(167), + [anon_sym_NULL] = ACTIONS(107), + [anon_sym_nullptr] = ACTIONS(107), [sym_comment] = ACTIONS(3), }, - [447] = { - [sym_expression] = STATE(1021), - [sym__string] = STATE(663), - [sym_conditional_expression] = STATE(663), - [sym_assignment_expression] = STATE(663), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(663), - [sym_binary_expression] = STATE(663), - [sym_update_expression] = STATE(663), - [sym_cast_expression] = STATE(663), - [sym_sizeof_expression] = STATE(663), - [sym_alignof_expression] = STATE(663), - [sym_offsetof_expression] = STATE(663), - [sym_generic_expression] = STATE(663), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(663), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(663), - [sym_parenthesized_expression] = STATE(818), - [sym_initializer_list] = STATE(1683), - [sym_initializer_pair] = STATE(1683), - [sym_subscript_designator] = STATE(1441), - [sym_subscript_range_designator] = STATE(1441), - [sym_field_designator] = STATE(1441), - [sym_char_literal] = STATE(663), - [sym_concatenated_string] = STATE(663), - [sym_string_literal] = STATE(659), - [sym_null] = STATE(663), - [aux_sym_initializer_pair_repeat1] = STATE(1441), - [sym_identifier] = ACTIONS(2015), - [anon_sym_COMMA] = ACTIONS(2017), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(1407), - [anon_sym_RBRACE] = ACTIONS(2019), - [anon_sym_LBRACK] = ACTIONS(2021), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [anon_sym___alignof__] = ACTIONS(89), - [anon_sym___alignof] = ACTIONS(89), - [anon_sym__alignof] = ACTIONS(89), - [anon_sym_alignof] = ACTIONS(89), - [anon_sym__Alignof] = ACTIONS(89), - [anon_sym_offsetof] = ACTIONS(91), - [anon_sym__Generic] = ACTIONS(93), - [anon_sym_asm] = ACTIONS(95), - [anon_sym___asm__] = ACTIONS(95), - [anon_sym_DOT] = ACTIONS(2023), - [sym_number_literal] = ACTIONS(163), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(165), - [sym_false] = ACTIONS(165), - [anon_sym_NULL] = ACTIONS(105), - [anon_sym_nullptr] = ACTIONS(105), + [503] = { + [sym_type_qualifier] = STATE(505), + [sym_alignas_qualifier] = STATE(965), + [sym_expression] = STATE(1219), + [sym__string] = STATE(758), + [sym_conditional_expression] = STATE(758), + [sym_assignment_expression] = STATE(758), + [sym_pointer_expression] = STATE(1066), + [sym_unary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_cast_expression] = STATE(758), + [sym_sizeof_expression] = STATE(758), + [sym_alignof_expression] = STATE(758), + [sym_offsetof_expression] = STATE(758), + [sym_generic_expression] = STATE(758), + [sym_subscript_expression] = STATE(1066), + [sym_call_expression] = STATE(1066), + [sym_gnu_asm_expression] = STATE(758), + [sym_field_expression] = STATE(1066), + [sym_compound_literal_expression] = STATE(758), + [sym_parenthesized_expression] = STATE(1066), + [sym_char_literal] = STATE(758), + [sym_concatenated_string] = STATE(758), + [sym_string_literal] = STATE(671), + [sym_null] = STATE(758), + [aux_sym_array_declarator_repeat1] = STATE(505), + [sym_identifier] = ACTIONS(2000), + [anon_sym_LPAREN2] = ACTIONS(2014), + [anon_sym_BANG] = ACTIONS(2004), + [anon_sym_TILDE] = ACTIONS(2004), + [anon_sym_DASH] = ACTIONS(2002), + [anon_sym_PLUS] = ACTIONS(2002), + [anon_sym_STAR] = ACTIONS(2030), + [anon_sym_AMP] = ACTIONS(2018), + [anon_sym___extension__] = ACTIONS(2020), + [anon_sym_static] = ACTIONS(2032), + [anon_sym_RBRACK] = ACTIONS(2034), + [anon_sym_const] = ACTIONS(2020), + [anon_sym_constexpr] = ACTIONS(2020), + [anon_sym_volatile] = ACTIONS(2020), + [anon_sym_restrict] = ACTIONS(2020), + [anon_sym___restrict__] = ACTIONS(2020), + [anon_sym__Atomic] = ACTIONS(2020), + [anon_sym__Noreturn] = ACTIONS(2020), + [anon_sym_noreturn] = ACTIONS(2020), + [anon_sym_alignas] = ACTIONS(2026), + [anon_sym__Alignas] = ACTIONS(2026), + [anon_sym_DASH_DASH] = ACTIONS(2028), + [anon_sym_PLUS_PLUS] = ACTIONS(2028), + [anon_sym_sizeof] = ACTIONS(2006), + [anon_sym___alignof__] = ACTIONS(91), + [anon_sym___alignof] = ACTIONS(91), + [anon_sym__alignof] = ACTIONS(91), + [anon_sym_alignof] = ACTIONS(91), + [anon_sym__Alignof] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(93), + [anon_sym__Generic] = ACTIONS(95), + [anon_sym_asm] = ACTIONS(97), + [anon_sym___asm__] = ACTIONS(97), + [sym_number_literal] = ACTIONS(165), + [anon_sym_L_SQUOTE] = ACTIONS(101), + [anon_sym_u_SQUOTE] = ACTIONS(101), + [anon_sym_U_SQUOTE] = ACTIONS(101), + [anon_sym_u8_SQUOTE] = ACTIONS(101), + [anon_sym_SQUOTE] = ACTIONS(101), + [anon_sym_L_DQUOTE] = ACTIONS(103), + [anon_sym_u_DQUOTE] = ACTIONS(103), + [anon_sym_U_DQUOTE] = ACTIONS(103), + [anon_sym_u8_DQUOTE] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_true] = ACTIONS(167), + [sym_false] = ACTIONS(167), + [anon_sym_NULL] = ACTIONS(107), + [anon_sym_nullptr] = ACTIONS(107), [sym_comment] = ACTIONS(3), }, - [448] = { - [sym_preproc_def] = STATE(448), - [sym_preproc_function_def] = STATE(448), - [sym_preproc_call] = STATE(448), - [sym_preproc_if_in_field_declaration_list] = STATE(448), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(448), - [sym__declaration_modifiers] = STATE(697), - [sym__declaration_specifiers] = STATE(1142), - [sym_attribute_specifier] = STATE(697), - [sym_attribute_declaration] = STATE(697), - [sym_ms_declspec_modifier] = STATE(697), - [sym_storage_class_specifier] = STATE(697), - [sym_type_qualifier] = STATE(697), - [sym_alignas_qualifier] = STATE(703), - [sym_type_specifier] = STATE(710), - [sym_sized_type_specifier] = STATE(746), - [sym_enum_specifier] = STATE(746), - [sym_struct_specifier] = STATE(746), - [sym_union_specifier] = STATE(746), - [sym__field_declaration_list_item] = STATE(448), - [sym_field_declaration] = STATE(448), - [sym_macro_type_specifier] = STATE(746), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(448), - [aux_sym__declaration_specifiers_repeat1] = STATE(697), - [aux_sym_sized_type_specifier_repeat1] = STATE(747), - [sym_identifier] = ACTIONS(1923), - [aux_sym_preproc_def_token1] = ACTIONS(2025), - [aux_sym_preproc_if_token1] = ACTIONS(2028), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2031), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2031), - [sym_preproc_directive] = ACTIONS(2034), - [anon_sym___extension__] = ACTIONS(1940), - [anon_sym_extern] = ACTIONS(1943), - [anon_sym___attribute__] = ACTIONS(1946), - [anon_sym___scanf] = ACTIONS(1949), - [anon_sym___printf] = ACTIONS(1949), - [anon_sym___read_mostly] = ACTIONS(1952), - [anon_sym___must_hold] = ACTIONS(1946), - [anon_sym___ro_after_init] = ACTIONS(1952), - [anon_sym___init] = ACTIONS(1952), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1955), - [anon_sym___declspec] = ACTIONS(1958), - [anon_sym_RBRACE] = ACTIONS(2037), - [anon_sym_signed] = ACTIONS(1961), - [anon_sym_unsigned] = ACTIONS(1961), - [anon_sym_long] = ACTIONS(1961), - [anon_sym_short] = ACTIONS(1961), - [anon_sym_static] = ACTIONS(1943), - [anon_sym_auto] = ACTIONS(1943), - [anon_sym_register] = ACTIONS(1943), - [anon_sym_inline] = ACTIONS(1943), - [anon_sym___inline] = ACTIONS(1943), - [anon_sym___inline__] = ACTIONS(1943), - [anon_sym___forceinline] = ACTIONS(1943), - [anon_sym_thread_local] = ACTIONS(1943), - [anon_sym___thread] = ACTIONS(1943), - [anon_sym_const] = ACTIONS(1940), - [anon_sym_constexpr] = ACTIONS(1940), - [anon_sym_volatile] = ACTIONS(1940), - [anon_sym_restrict] = ACTIONS(1940), - [anon_sym___restrict__] = ACTIONS(1940), - [anon_sym__Atomic] = ACTIONS(1940), - [anon_sym__Noreturn] = ACTIONS(1940), - [anon_sym_noreturn] = ACTIONS(1940), - [anon_sym_alignas] = ACTIONS(1964), - [anon_sym__Alignas] = ACTIONS(1964), - [sym_primitive_type] = ACTIONS(1967), - [anon_sym_enum] = ACTIONS(1970), - [anon_sym_struct] = ACTIONS(1973), - [anon_sym_union] = ACTIONS(1976), + [504] = { + [sym_type_qualifier] = STATE(906), + [sym_alignas_qualifier] = STATE(965), + [sym_expression] = STATE(1209), + [sym__string] = STATE(758), + [sym_conditional_expression] = STATE(758), + [sym_assignment_expression] = STATE(758), + [sym_pointer_expression] = STATE(1066), + [sym_unary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_cast_expression] = STATE(758), + [sym_sizeof_expression] = STATE(758), + [sym_alignof_expression] = STATE(758), + [sym_offsetof_expression] = STATE(758), + [sym_generic_expression] = STATE(758), + [sym_subscript_expression] = STATE(1066), + [sym_call_expression] = STATE(1066), + [sym_gnu_asm_expression] = STATE(758), + [sym_field_expression] = STATE(1066), + [sym_compound_literal_expression] = STATE(758), + [sym_parenthesized_expression] = STATE(1066), + [sym_char_literal] = STATE(758), + [sym_concatenated_string] = STATE(758), + [sym_string_literal] = STATE(671), + [sym_null] = STATE(758), + [aux_sym_array_declarator_repeat1] = STATE(906), + [sym_identifier] = ACTIONS(2000), + [anon_sym_LPAREN2] = ACTIONS(2014), + [anon_sym_BANG] = ACTIONS(2004), + [anon_sym_TILDE] = ACTIONS(2004), + [anon_sym_DASH] = ACTIONS(2002), + [anon_sym_PLUS] = ACTIONS(2002), + [anon_sym_STAR] = ACTIONS(2036), + [anon_sym_AMP] = ACTIONS(2018), + [anon_sym___extension__] = ACTIONS(2020), + [anon_sym_static] = ACTIONS(2038), + [anon_sym_RBRACK] = ACTIONS(2040), + [anon_sym_const] = ACTIONS(2020), + [anon_sym_constexpr] = ACTIONS(2020), + [anon_sym_volatile] = ACTIONS(2020), + [anon_sym_restrict] = ACTIONS(2020), + [anon_sym___restrict__] = ACTIONS(2020), + [anon_sym__Atomic] = ACTIONS(2020), + [anon_sym__Noreturn] = ACTIONS(2020), + [anon_sym_noreturn] = ACTIONS(2020), + [anon_sym_alignas] = ACTIONS(2026), + [anon_sym__Alignas] = ACTIONS(2026), + [anon_sym_DASH_DASH] = ACTIONS(2028), + [anon_sym_PLUS_PLUS] = ACTIONS(2028), + [anon_sym_sizeof] = ACTIONS(2006), + [anon_sym___alignof__] = ACTIONS(91), + [anon_sym___alignof] = ACTIONS(91), + [anon_sym__alignof] = ACTIONS(91), + [anon_sym_alignof] = ACTIONS(91), + [anon_sym__Alignof] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(93), + [anon_sym__Generic] = ACTIONS(95), + [anon_sym_asm] = ACTIONS(97), + [anon_sym___asm__] = ACTIONS(97), + [sym_number_literal] = ACTIONS(165), + [anon_sym_L_SQUOTE] = ACTIONS(101), + [anon_sym_u_SQUOTE] = ACTIONS(101), + [anon_sym_U_SQUOTE] = ACTIONS(101), + [anon_sym_u8_SQUOTE] = ACTIONS(101), + [anon_sym_SQUOTE] = ACTIONS(101), + [anon_sym_L_DQUOTE] = ACTIONS(103), + [anon_sym_u_DQUOTE] = ACTIONS(103), + [anon_sym_U_DQUOTE] = ACTIONS(103), + [anon_sym_u8_DQUOTE] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_true] = ACTIONS(167), + [sym_false] = ACTIONS(167), + [anon_sym_NULL] = ACTIONS(107), + [anon_sym_nullptr] = ACTIONS(107), [sym_comment] = ACTIONS(3), }, - [449] = { - [sym_expression] = STATE(1056), - [sym__string] = STATE(663), - [sym_conditional_expression] = STATE(663), - [sym_assignment_expression] = STATE(663), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(663), - [sym_binary_expression] = STATE(663), - [sym_update_expression] = STATE(663), - [sym_cast_expression] = STATE(663), - [sym_sizeof_expression] = STATE(663), - [sym_alignof_expression] = STATE(663), - [sym_offsetof_expression] = STATE(663), - [sym_generic_expression] = STATE(663), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(663), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(663), - [sym_parenthesized_expression] = STATE(818), - [sym_initializer_list] = STATE(1739), - [sym_initializer_pair] = STATE(1739), - [sym_subscript_designator] = STATE(1441), - [sym_subscript_range_designator] = STATE(1441), - [sym_field_designator] = STATE(1441), - [sym_char_literal] = STATE(663), - [sym_concatenated_string] = STATE(663), - [sym_string_literal] = STATE(659), - [sym_null] = STATE(663), - [aux_sym_initializer_pair_repeat1] = STATE(1441), - [sym_identifier] = ACTIONS(2015), + [505] = { + [sym_type_qualifier] = STATE(906), + [sym_alignas_qualifier] = STATE(965), + [sym_expression] = STATE(1202), + [sym__string] = STATE(758), + [sym_conditional_expression] = STATE(758), + [sym_assignment_expression] = STATE(758), + [sym_pointer_expression] = STATE(1066), + [sym_unary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_cast_expression] = STATE(758), + [sym_sizeof_expression] = STATE(758), + [sym_alignof_expression] = STATE(758), + [sym_offsetof_expression] = STATE(758), + [sym_generic_expression] = STATE(758), + [sym_subscript_expression] = STATE(1066), + [sym_call_expression] = STATE(1066), + [sym_gnu_asm_expression] = STATE(758), + [sym_field_expression] = STATE(1066), + [sym_compound_literal_expression] = STATE(758), + [sym_parenthesized_expression] = STATE(1066), + [sym_char_literal] = STATE(758), + [sym_concatenated_string] = STATE(758), + [sym_string_literal] = STATE(671), + [sym_null] = STATE(758), + [aux_sym_array_declarator_repeat1] = STATE(906), + [sym_identifier] = ACTIONS(2000), + [anon_sym_LPAREN2] = ACTIONS(2014), + [anon_sym_BANG] = ACTIONS(2004), + [anon_sym_TILDE] = ACTIONS(2004), + [anon_sym_DASH] = ACTIONS(2002), + [anon_sym_PLUS] = ACTIONS(2002), + [anon_sym_STAR] = ACTIONS(2042), + [anon_sym_AMP] = ACTIONS(2018), + [anon_sym___extension__] = ACTIONS(2020), + [anon_sym_static] = ACTIONS(2038), + [anon_sym_RBRACK] = ACTIONS(2044), + [anon_sym_const] = ACTIONS(2020), + [anon_sym_constexpr] = ACTIONS(2020), + [anon_sym_volatile] = ACTIONS(2020), + [anon_sym_restrict] = ACTIONS(2020), + [anon_sym___restrict__] = ACTIONS(2020), + [anon_sym__Atomic] = ACTIONS(2020), + [anon_sym__Noreturn] = ACTIONS(2020), + [anon_sym_noreturn] = ACTIONS(2020), + [anon_sym_alignas] = ACTIONS(2026), + [anon_sym__Alignas] = ACTIONS(2026), + [anon_sym_DASH_DASH] = ACTIONS(2028), + [anon_sym_PLUS_PLUS] = ACTIONS(2028), + [anon_sym_sizeof] = ACTIONS(2006), + [anon_sym___alignof__] = ACTIONS(91), + [anon_sym___alignof] = ACTIONS(91), + [anon_sym__alignof] = ACTIONS(91), + [anon_sym_alignof] = ACTIONS(91), + [anon_sym__Alignof] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(93), + [anon_sym__Generic] = ACTIONS(95), + [anon_sym_asm] = ACTIONS(97), + [anon_sym___asm__] = ACTIONS(97), + [sym_number_literal] = ACTIONS(165), + [anon_sym_L_SQUOTE] = ACTIONS(101), + [anon_sym_u_SQUOTE] = ACTIONS(101), + [anon_sym_U_SQUOTE] = ACTIONS(101), + [anon_sym_u8_SQUOTE] = ACTIONS(101), + [anon_sym_SQUOTE] = ACTIONS(101), + [anon_sym_L_DQUOTE] = ACTIONS(103), + [anon_sym_u_DQUOTE] = ACTIONS(103), + [anon_sym_U_DQUOTE] = ACTIONS(103), + [anon_sym_u8_DQUOTE] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_true] = ACTIONS(167), + [sym_false] = ACTIONS(167), + [anon_sym_NULL] = ACTIONS(107), + [anon_sym_nullptr] = ACTIONS(107), + [sym_comment] = ACTIONS(3), + }, + [506] = { + [sym_type_qualifier] = STATE(906), + [sym_alignas_qualifier] = STATE(965), + [sym_expression] = STATE(1215), + [sym__string] = STATE(758), + [sym_conditional_expression] = STATE(758), + [sym_assignment_expression] = STATE(758), + [sym_pointer_expression] = STATE(1066), + [sym_unary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_cast_expression] = STATE(758), + [sym_sizeof_expression] = STATE(758), + [sym_alignof_expression] = STATE(758), + [sym_offsetof_expression] = STATE(758), + [sym_generic_expression] = STATE(758), + [sym_subscript_expression] = STATE(1066), + [sym_call_expression] = STATE(1066), + [sym_gnu_asm_expression] = STATE(758), + [sym_field_expression] = STATE(1066), + [sym_compound_literal_expression] = STATE(758), + [sym_parenthesized_expression] = STATE(1066), + [sym_char_literal] = STATE(758), + [sym_concatenated_string] = STATE(758), + [sym_string_literal] = STATE(671), + [sym_null] = STATE(758), + [aux_sym_array_declarator_repeat1] = STATE(906), + [sym_identifier] = ACTIONS(2000), + [anon_sym_LPAREN2] = ACTIONS(2014), + [anon_sym_BANG] = ACTIONS(2004), + [anon_sym_TILDE] = ACTIONS(2004), + [anon_sym_DASH] = ACTIONS(2002), + [anon_sym_PLUS] = ACTIONS(2002), + [anon_sym_STAR] = ACTIONS(2046), + [anon_sym_AMP] = ACTIONS(2018), + [anon_sym___extension__] = ACTIONS(2020), + [anon_sym_static] = ACTIONS(2038), + [anon_sym_RBRACK] = ACTIONS(2048), + [anon_sym_const] = ACTIONS(2020), + [anon_sym_constexpr] = ACTIONS(2020), + [anon_sym_volatile] = ACTIONS(2020), + [anon_sym_restrict] = ACTIONS(2020), + [anon_sym___restrict__] = ACTIONS(2020), + [anon_sym__Atomic] = ACTIONS(2020), + [anon_sym__Noreturn] = ACTIONS(2020), + [anon_sym_noreturn] = ACTIONS(2020), + [anon_sym_alignas] = ACTIONS(2026), + [anon_sym__Alignas] = ACTIONS(2026), + [anon_sym_DASH_DASH] = ACTIONS(2028), + [anon_sym_PLUS_PLUS] = ACTIONS(2028), + [anon_sym_sizeof] = ACTIONS(2006), + [anon_sym___alignof__] = ACTIONS(91), + [anon_sym___alignof] = ACTIONS(91), + [anon_sym__alignof] = ACTIONS(91), + [anon_sym_alignof] = ACTIONS(91), + [anon_sym__Alignof] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(93), + [anon_sym__Generic] = ACTIONS(95), + [anon_sym_asm] = ACTIONS(97), + [anon_sym___asm__] = ACTIONS(97), + [sym_number_literal] = ACTIONS(165), + [anon_sym_L_SQUOTE] = ACTIONS(101), + [anon_sym_u_SQUOTE] = ACTIONS(101), + [anon_sym_U_SQUOTE] = ACTIONS(101), + [anon_sym_u8_SQUOTE] = ACTIONS(101), + [anon_sym_SQUOTE] = ACTIONS(101), + [anon_sym_L_DQUOTE] = ACTIONS(103), + [anon_sym_u_DQUOTE] = ACTIONS(103), + [anon_sym_U_DQUOTE] = ACTIONS(103), + [anon_sym_u8_DQUOTE] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_true] = ACTIONS(167), + [sym_false] = ACTIONS(167), + [anon_sym_NULL] = ACTIONS(107), + [anon_sym_nullptr] = ACTIONS(107), + [sym_comment] = ACTIONS(3), + }, + [507] = { + [sym_type_qualifier] = STATE(504), + [sym_alignas_qualifier] = STATE(965), + [sym_expression] = STATE(1204), + [sym__string] = STATE(758), + [sym_conditional_expression] = STATE(758), + [sym_assignment_expression] = STATE(758), + [sym_pointer_expression] = STATE(1066), + [sym_unary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_cast_expression] = STATE(758), + [sym_sizeof_expression] = STATE(758), + [sym_alignof_expression] = STATE(758), + [sym_offsetof_expression] = STATE(758), + [sym_generic_expression] = STATE(758), + [sym_subscript_expression] = STATE(1066), + [sym_call_expression] = STATE(1066), + [sym_gnu_asm_expression] = STATE(758), + [sym_field_expression] = STATE(1066), + [sym_compound_literal_expression] = STATE(758), + [sym_parenthesized_expression] = STATE(1066), + [sym_char_literal] = STATE(758), + [sym_concatenated_string] = STATE(758), + [sym_string_literal] = STATE(671), + [sym_null] = STATE(758), + [aux_sym_array_declarator_repeat1] = STATE(504), + [sym_identifier] = ACTIONS(2000), + [anon_sym_LPAREN2] = ACTIONS(2014), + [anon_sym_BANG] = ACTIONS(2004), + [anon_sym_TILDE] = ACTIONS(2004), + [anon_sym_DASH] = ACTIONS(2002), + [anon_sym_PLUS] = ACTIONS(2002), + [anon_sym_STAR] = ACTIONS(2050), + [anon_sym_AMP] = ACTIONS(2018), + [anon_sym___extension__] = ACTIONS(2020), + [anon_sym_static] = ACTIONS(2052), + [anon_sym_RBRACK] = ACTIONS(2054), + [anon_sym_const] = ACTIONS(2020), + [anon_sym_constexpr] = ACTIONS(2020), + [anon_sym_volatile] = ACTIONS(2020), + [anon_sym_restrict] = ACTIONS(2020), + [anon_sym___restrict__] = ACTIONS(2020), + [anon_sym__Atomic] = ACTIONS(2020), + [anon_sym__Noreturn] = ACTIONS(2020), + [anon_sym_noreturn] = ACTIONS(2020), + [anon_sym_alignas] = ACTIONS(2026), + [anon_sym__Alignas] = ACTIONS(2026), + [anon_sym_DASH_DASH] = ACTIONS(2028), + [anon_sym_PLUS_PLUS] = ACTIONS(2028), + [anon_sym_sizeof] = ACTIONS(2006), + [anon_sym___alignof__] = ACTIONS(91), + [anon_sym___alignof] = ACTIONS(91), + [anon_sym__alignof] = ACTIONS(91), + [anon_sym_alignof] = ACTIONS(91), + [anon_sym__Alignof] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(93), + [anon_sym__Generic] = ACTIONS(95), + [anon_sym_asm] = ACTIONS(97), + [anon_sym___asm__] = ACTIONS(97), + [sym_number_literal] = ACTIONS(165), + [anon_sym_L_SQUOTE] = ACTIONS(101), + [anon_sym_u_SQUOTE] = ACTIONS(101), + [anon_sym_U_SQUOTE] = ACTIONS(101), + [anon_sym_u8_SQUOTE] = ACTIONS(101), + [anon_sym_SQUOTE] = ACTIONS(101), + [anon_sym_L_DQUOTE] = ACTIONS(103), + [anon_sym_u_DQUOTE] = ACTIONS(103), + [anon_sym_U_DQUOTE] = ACTIONS(103), + [anon_sym_u8_DQUOTE] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_true] = ACTIONS(167), + [sym_false] = ACTIONS(167), + [anon_sym_NULL] = ACTIONS(107), + [anon_sym_nullptr] = ACTIONS(107), + [sym_comment] = ACTIONS(3), + }, + [508] = { + [sym_type_qualifier] = STATE(510), + [sym_alignas_qualifier] = STATE(965), + [sym_expression] = STATE(1198), + [sym__string] = STATE(758), + [sym_conditional_expression] = STATE(758), + [sym_assignment_expression] = STATE(758), + [sym_pointer_expression] = STATE(1066), + [sym_unary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_cast_expression] = STATE(758), + [sym_sizeof_expression] = STATE(758), + [sym_alignof_expression] = STATE(758), + [sym_offsetof_expression] = STATE(758), + [sym_generic_expression] = STATE(758), + [sym_subscript_expression] = STATE(1066), + [sym_call_expression] = STATE(1066), + [sym_gnu_asm_expression] = STATE(758), + [sym_field_expression] = STATE(1066), + [sym_compound_literal_expression] = STATE(758), + [sym_parenthesized_expression] = STATE(1066), + [sym_char_literal] = STATE(758), + [sym_concatenated_string] = STATE(758), + [sym_string_literal] = STATE(671), + [sym_null] = STATE(758), + [aux_sym_array_declarator_repeat1] = STATE(510), + [sym_identifier] = ACTIONS(2000), + [anon_sym_LPAREN2] = ACTIONS(2014), + [anon_sym_BANG] = ACTIONS(2004), + [anon_sym_TILDE] = ACTIONS(2004), + [anon_sym_DASH] = ACTIONS(2002), + [anon_sym_PLUS] = ACTIONS(2002), + [anon_sym_STAR] = ACTIONS(2056), + [anon_sym_AMP] = ACTIONS(2018), + [anon_sym___extension__] = ACTIONS(2020), + [anon_sym_static] = ACTIONS(2058), + [anon_sym_RBRACK] = ACTIONS(2060), + [anon_sym_const] = ACTIONS(2020), + [anon_sym_constexpr] = ACTIONS(2020), + [anon_sym_volatile] = ACTIONS(2020), + [anon_sym_restrict] = ACTIONS(2020), + [anon_sym___restrict__] = ACTIONS(2020), + [anon_sym__Atomic] = ACTIONS(2020), + [anon_sym__Noreturn] = ACTIONS(2020), + [anon_sym_noreturn] = ACTIONS(2020), + [anon_sym_alignas] = ACTIONS(2026), + [anon_sym__Alignas] = ACTIONS(2026), + [anon_sym_DASH_DASH] = ACTIONS(2028), + [anon_sym_PLUS_PLUS] = ACTIONS(2028), + [anon_sym_sizeof] = ACTIONS(2006), + [anon_sym___alignof__] = ACTIONS(91), + [anon_sym___alignof] = ACTIONS(91), + [anon_sym__alignof] = ACTIONS(91), + [anon_sym_alignof] = ACTIONS(91), + [anon_sym__Alignof] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(93), + [anon_sym__Generic] = ACTIONS(95), + [anon_sym_asm] = ACTIONS(97), + [anon_sym___asm__] = ACTIONS(97), + [sym_number_literal] = ACTIONS(165), + [anon_sym_L_SQUOTE] = ACTIONS(101), + [anon_sym_u_SQUOTE] = ACTIONS(101), + [anon_sym_U_SQUOTE] = ACTIONS(101), + [anon_sym_u8_SQUOTE] = ACTIONS(101), + [anon_sym_SQUOTE] = ACTIONS(101), + [anon_sym_L_DQUOTE] = ACTIONS(103), + [anon_sym_u_DQUOTE] = ACTIONS(103), + [anon_sym_U_DQUOTE] = ACTIONS(103), + [anon_sym_u8_DQUOTE] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_true] = ACTIONS(167), + [sym_false] = ACTIONS(167), + [anon_sym_NULL] = ACTIONS(107), + [anon_sym_nullptr] = ACTIONS(107), + [sym_comment] = ACTIONS(3), + }, + [509] = { + [sym_type_qualifier] = STATE(506), + [sym_alignas_qualifier] = STATE(965), + [sym_expression] = STATE(1216), + [sym__string] = STATE(758), + [sym_conditional_expression] = STATE(758), + [sym_assignment_expression] = STATE(758), + [sym_pointer_expression] = STATE(1066), + [sym_unary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_cast_expression] = STATE(758), + [sym_sizeof_expression] = STATE(758), + [sym_alignof_expression] = STATE(758), + [sym_offsetof_expression] = STATE(758), + [sym_generic_expression] = STATE(758), + [sym_subscript_expression] = STATE(1066), + [sym_call_expression] = STATE(1066), + [sym_gnu_asm_expression] = STATE(758), + [sym_field_expression] = STATE(1066), + [sym_compound_literal_expression] = STATE(758), + [sym_parenthesized_expression] = STATE(1066), + [sym_char_literal] = STATE(758), + [sym_concatenated_string] = STATE(758), + [sym_string_literal] = STATE(671), + [sym_null] = STATE(758), + [aux_sym_array_declarator_repeat1] = STATE(506), + [sym_identifier] = ACTIONS(2000), + [anon_sym_LPAREN2] = ACTIONS(2014), + [anon_sym_BANG] = ACTIONS(2004), + [anon_sym_TILDE] = ACTIONS(2004), + [anon_sym_DASH] = ACTIONS(2002), + [anon_sym_PLUS] = ACTIONS(2002), + [anon_sym_STAR] = ACTIONS(2062), + [anon_sym_AMP] = ACTIONS(2018), + [anon_sym___extension__] = ACTIONS(2020), + [anon_sym_static] = ACTIONS(2064), + [anon_sym_RBRACK] = ACTIONS(2066), + [anon_sym_const] = ACTIONS(2020), + [anon_sym_constexpr] = ACTIONS(2020), + [anon_sym_volatile] = ACTIONS(2020), + [anon_sym_restrict] = ACTIONS(2020), + [anon_sym___restrict__] = ACTIONS(2020), + [anon_sym__Atomic] = ACTIONS(2020), + [anon_sym__Noreturn] = ACTIONS(2020), + [anon_sym_noreturn] = ACTIONS(2020), + [anon_sym_alignas] = ACTIONS(2026), + [anon_sym__Alignas] = ACTIONS(2026), + [anon_sym_DASH_DASH] = ACTIONS(2028), + [anon_sym_PLUS_PLUS] = ACTIONS(2028), + [anon_sym_sizeof] = ACTIONS(2006), + [anon_sym___alignof__] = ACTIONS(91), + [anon_sym___alignof] = ACTIONS(91), + [anon_sym__alignof] = ACTIONS(91), + [anon_sym_alignof] = ACTIONS(91), + [anon_sym__Alignof] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(93), + [anon_sym__Generic] = ACTIONS(95), + [anon_sym_asm] = ACTIONS(97), + [anon_sym___asm__] = ACTIONS(97), + [sym_number_literal] = ACTIONS(165), + [anon_sym_L_SQUOTE] = ACTIONS(101), + [anon_sym_u_SQUOTE] = ACTIONS(101), + [anon_sym_U_SQUOTE] = ACTIONS(101), + [anon_sym_u8_SQUOTE] = ACTIONS(101), + [anon_sym_SQUOTE] = ACTIONS(101), + [anon_sym_L_DQUOTE] = ACTIONS(103), + [anon_sym_u_DQUOTE] = ACTIONS(103), + [anon_sym_U_DQUOTE] = ACTIONS(103), + [anon_sym_u8_DQUOTE] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_true] = ACTIONS(167), + [sym_false] = ACTIONS(167), + [anon_sym_NULL] = ACTIONS(107), + [anon_sym_nullptr] = ACTIONS(107), + [sym_comment] = ACTIONS(3), + }, + [510] = { + [sym_type_qualifier] = STATE(906), + [sym_alignas_qualifier] = STATE(965), + [sym_expression] = STATE(1200), + [sym__string] = STATE(758), + [sym_conditional_expression] = STATE(758), + [sym_assignment_expression] = STATE(758), + [sym_pointer_expression] = STATE(1066), + [sym_unary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_cast_expression] = STATE(758), + [sym_sizeof_expression] = STATE(758), + [sym_alignof_expression] = STATE(758), + [sym_offsetof_expression] = STATE(758), + [sym_generic_expression] = STATE(758), + [sym_subscript_expression] = STATE(1066), + [sym_call_expression] = STATE(1066), + [sym_gnu_asm_expression] = STATE(758), + [sym_field_expression] = STATE(1066), + [sym_compound_literal_expression] = STATE(758), + [sym_parenthesized_expression] = STATE(1066), + [sym_char_literal] = STATE(758), + [sym_concatenated_string] = STATE(758), + [sym_string_literal] = STATE(671), + [sym_null] = STATE(758), + [aux_sym_array_declarator_repeat1] = STATE(906), + [sym_identifier] = ACTIONS(2000), + [anon_sym_LPAREN2] = ACTIONS(2014), + [anon_sym_BANG] = ACTIONS(2004), + [anon_sym_TILDE] = ACTIONS(2004), + [anon_sym_DASH] = ACTIONS(2002), + [anon_sym_PLUS] = ACTIONS(2002), + [anon_sym_STAR] = ACTIONS(2068), + [anon_sym_AMP] = ACTIONS(2018), + [anon_sym___extension__] = ACTIONS(2020), + [anon_sym_static] = ACTIONS(2038), + [anon_sym_RBRACK] = ACTIONS(2070), + [anon_sym_const] = ACTIONS(2020), + [anon_sym_constexpr] = ACTIONS(2020), + [anon_sym_volatile] = ACTIONS(2020), + [anon_sym_restrict] = ACTIONS(2020), + [anon_sym___restrict__] = ACTIONS(2020), + [anon_sym__Atomic] = ACTIONS(2020), + [anon_sym__Noreturn] = ACTIONS(2020), + [anon_sym_noreturn] = ACTIONS(2020), + [anon_sym_alignas] = ACTIONS(2026), + [anon_sym__Alignas] = ACTIONS(2026), + [anon_sym_DASH_DASH] = ACTIONS(2028), + [anon_sym_PLUS_PLUS] = ACTIONS(2028), + [anon_sym_sizeof] = ACTIONS(2006), + [anon_sym___alignof__] = ACTIONS(91), + [anon_sym___alignof] = ACTIONS(91), + [anon_sym__alignof] = ACTIONS(91), + [anon_sym_alignof] = ACTIONS(91), + [anon_sym__Alignof] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(93), + [anon_sym__Generic] = ACTIONS(95), + [anon_sym_asm] = ACTIONS(97), + [anon_sym___asm__] = ACTIONS(97), + [sym_number_literal] = ACTIONS(165), + [anon_sym_L_SQUOTE] = ACTIONS(101), + [anon_sym_u_SQUOTE] = ACTIONS(101), + [anon_sym_U_SQUOTE] = ACTIONS(101), + [anon_sym_u8_SQUOTE] = ACTIONS(101), + [anon_sym_SQUOTE] = ACTIONS(101), + [anon_sym_L_DQUOTE] = ACTIONS(103), + [anon_sym_u_DQUOTE] = ACTIONS(103), + [anon_sym_U_DQUOTE] = ACTIONS(103), + [anon_sym_u8_DQUOTE] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_true] = ACTIONS(167), + [sym_false] = ACTIONS(167), + [anon_sym_NULL] = ACTIONS(107), + [anon_sym_nullptr] = ACTIONS(107), + [sym_comment] = ACTIONS(3), + }, + [511] = { + [sym_type_qualifier] = STATE(906), + [sym_alignas_qualifier] = STATE(965), + [sym_expression] = STATE(1203), + [sym__string] = STATE(758), + [sym_conditional_expression] = STATE(758), + [sym_assignment_expression] = STATE(758), + [sym_pointer_expression] = STATE(1066), + [sym_unary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_cast_expression] = STATE(758), + [sym_sizeof_expression] = STATE(758), + [sym_alignof_expression] = STATE(758), + [sym_offsetof_expression] = STATE(758), + [sym_generic_expression] = STATE(758), + [sym_subscript_expression] = STATE(1066), + [sym_call_expression] = STATE(1066), + [sym_gnu_asm_expression] = STATE(758), + [sym_field_expression] = STATE(1066), + [sym_compound_literal_expression] = STATE(758), + [sym_parenthesized_expression] = STATE(1066), + [sym_char_literal] = STATE(758), + [sym_concatenated_string] = STATE(758), + [sym_string_literal] = STATE(671), + [sym_null] = STATE(758), + [aux_sym_array_declarator_repeat1] = STATE(906), + [sym_identifier] = ACTIONS(2000), + [anon_sym_LPAREN2] = ACTIONS(2014), + [anon_sym_BANG] = ACTIONS(2004), + [anon_sym_TILDE] = ACTIONS(2004), + [anon_sym_DASH] = ACTIONS(2002), + [anon_sym_PLUS] = ACTIONS(2002), + [anon_sym_STAR] = ACTIONS(2072), + [anon_sym_AMP] = ACTIONS(2018), + [anon_sym___extension__] = ACTIONS(2020), + [anon_sym_static] = ACTIONS(2038), + [anon_sym_RBRACK] = ACTIONS(2074), + [anon_sym_const] = ACTIONS(2020), + [anon_sym_constexpr] = ACTIONS(2020), + [anon_sym_volatile] = ACTIONS(2020), + [anon_sym_restrict] = ACTIONS(2020), + [anon_sym___restrict__] = ACTIONS(2020), + [anon_sym__Atomic] = ACTIONS(2020), + [anon_sym__Noreturn] = ACTIONS(2020), + [anon_sym_noreturn] = ACTIONS(2020), + [anon_sym_alignas] = ACTIONS(2026), + [anon_sym__Alignas] = ACTIONS(2026), + [anon_sym_DASH_DASH] = ACTIONS(2028), + [anon_sym_PLUS_PLUS] = ACTIONS(2028), + [anon_sym_sizeof] = ACTIONS(2006), + [anon_sym___alignof__] = ACTIONS(91), + [anon_sym___alignof] = ACTIONS(91), + [anon_sym__alignof] = ACTIONS(91), + [anon_sym_alignof] = ACTIONS(91), + [anon_sym__Alignof] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(93), + [anon_sym__Generic] = ACTIONS(95), + [anon_sym_asm] = ACTIONS(97), + [anon_sym___asm__] = ACTIONS(97), + [sym_number_literal] = ACTIONS(165), + [anon_sym_L_SQUOTE] = ACTIONS(101), + [anon_sym_u_SQUOTE] = ACTIONS(101), + [anon_sym_U_SQUOTE] = ACTIONS(101), + [anon_sym_u8_SQUOTE] = ACTIONS(101), + [anon_sym_SQUOTE] = ACTIONS(101), + [anon_sym_L_DQUOTE] = ACTIONS(103), + [anon_sym_u_DQUOTE] = ACTIONS(103), + [anon_sym_U_DQUOTE] = ACTIONS(103), + [anon_sym_u8_DQUOTE] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_true] = ACTIONS(167), + [sym_false] = ACTIONS(167), + [anon_sym_NULL] = ACTIONS(107), + [anon_sym_nullptr] = ACTIONS(107), + [sym_comment] = ACTIONS(3), + }, + [512] = { + [sym_expression] = STATE(1148), + [sym__string] = STATE(758), + [sym_conditional_expression] = STATE(758), + [sym_assignment_expression] = STATE(758), + [sym_pointer_expression] = STATE(944), + [sym_unary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_cast_expression] = STATE(758), + [sym_sizeof_expression] = STATE(758), + [sym_alignof_expression] = STATE(758), + [sym_offsetof_expression] = STATE(758), + [sym_generic_expression] = STATE(758), + [sym_subscript_expression] = STATE(944), + [sym_call_expression] = STATE(944), + [sym_gnu_asm_expression] = STATE(758), + [sym_field_expression] = STATE(944), + [sym_compound_literal_expression] = STATE(758), + [sym_parenthesized_expression] = STATE(944), + [sym_initializer_list] = STATE(1873), + [sym_initializer_pair] = STATE(1873), + [sym_subscript_designator] = STATE(1627), + [sym_subscript_range_designator] = STATE(1627), + [sym_field_designator] = STATE(1627), + [sym_char_literal] = STATE(758), + [sym_concatenated_string] = STATE(758), + [sym_string_literal] = STATE(671), + [sym_null] = STATE(758), + [aux_sym_initializer_pair_repeat1] = STATE(1627), + [sym_identifier] = ACTIONS(2076), + [anon_sym_COMMA] = ACTIONS(2078), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -62380,70 +71291,70 @@ 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_LBRACE] = ACTIONS(1407), - [anon_sym_RBRACE] = ACTIONS(2039), - [anon_sym_LBRACK] = ACTIONS(2021), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [anon_sym___alignof__] = ACTIONS(89), - [anon_sym___alignof] = ACTIONS(89), - [anon_sym__alignof] = ACTIONS(89), - [anon_sym_alignof] = ACTIONS(89), - [anon_sym__Alignof] = ACTIONS(89), - [anon_sym_offsetof] = ACTIONS(91), - [anon_sym__Generic] = ACTIONS(93), - [anon_sym_asm] = ACTIONS(95), - [anon_sym___asm__] = ACTIONS(95), - [anon_sym_DOT] = ACTIONS(2023), - [sym_number_literal] = ACTIONS(163), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(165), - [sym_false] = ACTIONS(165), - [anon_sym_NULL] = ACTIONS(105), - [anon_sym_nullptr] = ACTIONS(105), + [anon_sym_LBRACE] = ACTIONS(1439), + [anon_sym_RBRACE] = ACTIONS(2080), + [anon_sym_LBRACK] = ACTIONS(2082), + [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(87), + [anon_sym_sizeof] = ACTIONS(89), + [anon_sym___alignof__] = ACTIONS(91), + [anon_sym___alignof] = ACTIONS(91), + [anon_sym__alignof] = ACTIONS(91), + [anon_sym_alignof] = ACTIONS(91), + [anon_sym__Alignof] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(93), + [anon_sym__Generic] = ACTIONS(95), + [anon_sym_asm] = ACTIONS(97), + [anon_sym___asm__] = ACTIONS(97), + [anon_sym_DOT] = ACTIONS(2084), + [sym_number_literal] = ACTIONS(165), + [anon_sym_L_SQUOTE] = ACTIONS(101), + [anon_sym_u_SQUOTE] = ACTIONS(101), + [anon_sym_U_SQUOTE] = ACTIONS(101), + [anon_sym_u8_SQUOTE] = ACTIONS(101), + [anon_sym_SQUOTE] = ACTIONS(101), + [anon_sym_L_DQUOTE] = ACTIONS(103), + [anon_sym_u_DQUOTE] = ACTIONS(103), + [anon_sym_U_DQUOTE] = ACTIONS(103), + [anon_sym_u8_DQUOTE] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_true] = ACTIONS(167), + [sym_false] = ACTIONS(167), + [anon_sym_NULL] = ACTIONS(107), + [anon_sym_nullptr] = ACTIONS(107), [sym_comment] = ACTIONS(3), }, - [450] = { - [sym_expression] = STATE(1056), - [sym__string] = STATE(663), - [sym_conditional_expression] = STATE(663), - [sym_assignment_expression] = STATE(663), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(663), - [sym_binary_expression] = STATE(663), - [sym_update_expression] = STATE(663), - [sym_cast_expression] = STATE(663), - [sym_sizeof_expression] = STATE(663), - [sym_alignof_expression] = STATE(663), - [sym_offsetof_expression] = STATE(663), - [sym_generic_expression] = STATE(663), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(663), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(663), - [sym_parenthesized_expression] = STATE(818), - [sym_initializer_list] = STATE(1739), - [sym_initializer_pair] = STATE(1739), - [sym_subscript_designator] = STATE(1441), - [sym_subscript_range_designator] = STATE(1441), - [sym_field_designator] = STATE(1441), - [sym_char_literal] = STATE(663), - [sym_concatenated_string] = STATE(663), - [sym_string_literal] = STATE(659), - [sym_null] = STATE(663), - [aux_sym_initializer_pair_repeat1] = STATE(1441), - [sym_identifier] = ACTIONS(2015), + [513] = { + [sym_expression] = STATE(1182), + [sym__string] = STATE(758), + [sym_conditional_expression] = STATE(758), + [sym_assignment_expression] = STATE(758), + [sym_pointer_expression] = STATE(944), + [sym_unary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_cast_expression] = STATE(758), + [sym_sizeof_expression] = STATE(758), + [sym_alignof_expression] = STATE(758), + [sym_offsetof_expression] = STATE(758), + [sym_generic_expression] = STATE(758), + [sym_subscript_expression] = STATE(944), + [sym_call_expression] = STATE(944), + [sym_gnu_asm_expression] = STATE(758), + [sym_field_expression] = STATE(944), + [sym_compound_literal_expression] = STATE(758), + [sym_parenthesized_expression] = STATE(944), + [sym_initializer_list] = STATE(1980), + [sym_initializer_pair] = STATE(1980), + [sym_subscript_designator] = STATE(1627), + [sym_subscript_range_designator] = STATE(1627), + [sym_field_designator] = STATE(1627), + [sym_char_literal] = STATE(758), + [sym_concatenated_string] = STATE(758), + [sym_string_literal] = STATE(671), + [sym_null] = STATE(758), + [aux_sym_initializer_pair_repeat1] = STATE(1627), + [sym_identifier] = ACTIONS(2076), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -62451,70 +71362,70 @@ 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_LBRACE] = ACTIONS(1407), - [anon_sym_RBRACE] = ACTIONS(2041), - [anon_sym_LBRACK] = ACTIONS(2021), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [anon_sym___alignof__] = ACTIONS(89), - [anon_sym___alignof] = ACTIONS(89), - [anon_sym__alignof] = ACTIONS(89), - [anon_sym_alignof] = ACTIONS(89), - [anon_sym__Alignof] = ACTIONS(89), - [anon_sym_offsetof] = ACTIONS(91), - [anon_sym__Generic] = ACTIONS(93), - [anon_sym_asm] = ACTIONS(95), - [anon_sym___asm__] = ACTIONS(95), - [anon_sym_DOT] = ACTIONS(2023), - [sym_number_literal] = ACTIONS(163), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(165), - [sym_false] = ACTIONS(165), - [anon_sym_NULL] = ACTIONS(105), - [anon_sym_nullptr] = ACTIONS(105), + [anon_sym_LBRACE] = ACTIONS(1439), + [anon_sym_RBRACE] = ACTIONS(2086), + [anon_sym_LBRACK] = ACTIONS(2082), + [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(87), + [anon_sym_sizeof] = ACTIONS(89), + [anon_sym___alignof__] = ACTIONS(91), + [anon_sym___alignof] = ACTIONS(91), + [anon_sym__alignof] = ACTIONS(91), + [anon_sym_alignof] = ACTIONS(91), + [anon_sym__Alignof] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(93), + [anon_sym__Generic] = ACTIONS(95), + [anon_sym_asm] = ACTIONS(97), + [anon_sym___asm__] = ACTIONS(97), + [anon_sym_DOT] = ACTIONS(2084), + [sym_number_literal] = ACTIONS(165), + [anon_sym_L_SQUOTE] = ACTIONS(101), + [anon_sym_u_SQUOTE] = ACTIONS(101), + [anon_sym_U_SQUOTE] = ACTIONS(101), + [anon_sym_u8_SQUOTE] = ACTIONS(101), + [anon_sym_SQUOTE] = ACTIONS(101), + [anon_sym_L_DQUOTE] = ACTIONS(103), + [anon_sym_u_DQUOTE] = ACTIONS(103), + [anon_sym_U_DQUOTE] = ACTIONS(103), + [anon_sym_u8_DQUOTE] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_true] = ACTIONS(167), + [sym_false] = ACTIONS(167), + [anon_sym_NULL] = ACTIONS(107), + [anon_sym_nullptr] = ACTIONS(107), [sym_comment] = ACTIONS(3), }, - [451] = { - [sym_expression] = STATE(1056), - [sym__string] = STATE(663), - [sym_conditional_expression] = STATE(663), - [sym_assignment_expression] = STATE(663), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(663), - [sym_binary_expression] = STATE(663), - [sym_update_expression] = STATE(663), - [sym_cast_expression] = STATE(663), - [sym_sizeof_expression] = STATE(663), - [sym_alignof_expression] = STATE(663), - [sym_offsetof_expression] = STATE(663), - [sym_generic_expression] = STATE(663), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(663), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(663), - [sym_parenthesized_expression] = STATE(818), - [sym_initializer_list] = STATE(1739), - [sym_initializer_pair] = STATE(1739), - [sym_subscript_designator] = STATE(1441), - [sym_subscript_range_designator] = STATE(1441), - [sym_field_designator] = STATE(1441), - [sym_char_literal] = STATE(663), - [sym_concatenated_string] = STATE(663), - [sym_string_literal] = STATE(659), - [sym_null] = STATE(663), - [aux_sym_initializer_pair_repeat1] = STATE(1441), - [sym_identifier] = ACTIONS(2015), + [514] = { + [sym_expression] = STATE(1182), + [sym__string] = STATE(758), + [sym_conditional_expression] = STATE(758), + [sym_assignment_expression] = STATE(758), + [sym_pointer_expression] = STATE(944), + [sym_unary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_cast_expression] = STATE(758), + [sym_sizeof_expression] = STATE(758), + [sym_alignof_expression] = STATE(758), + [sym_offsetof_expression] = STATE(758), + [sym_generic_expression] = STATE(758), + [sym_subscript_expression] = STATE(944), + [sym_call_expression] = STATE(944), + [sym_gnu_asm_expression] = STATE(758), + [sym_field_expression] = STATE(944), + [sym_compound_literal_expression] = STATE(758), + [sym_parenthesized_expression] = STATE(944), + [sym_initializer_list] = STATE(1980), + [sym_initializer_pair] = STATE(1980), + [sym_subscript_designator] = STATE(1627), + [sym_subscript_range_designator] = STATE(1627), + [sym_field_designator] = STATE(1627), + [sym_char_literal] = STATE(758), + [sym_concatenated_string] = STATE(758), + [sym_string_literal] = STATE(671), + [sym_null] = STATE(758), + [aux_sym_initializer_pair_repeat1] = STATE(1627), + [sym_identifier] = ACTIONS(2076), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -62522,332 +71433,1540 @@ 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_LBRACE] = ACTIONS(1407), - [anon_sym_LBRACK] = ACTIONS(2021), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [anon_sym___alignof__] = ACTIONS(89), - [anon_sym___alignof] = ACTIONS(89), - [anon_sym__alignof] = ACTIONS(89), - [anon_sym_alignof] = ACTIONS(89), - [anon_sym__Alignof] = ACTIONS(89), - [anon_sym_offsetof] = ACTIONS(91), - [anon_sym__Generic] = ACTIONS(93), - [anon_sym_asm] = ACTIONS(95), - [anon_sym___asm__] = ACTIONS(95), - [anon_sym_DOT] = ACTIONS(2023), - [sym_number_literal] = ACTIONS(163), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(165), - [sym_false] = ACTIONS(165), - [anon_sym_NULL] = ACTIONS(105), - [anon_sym_nullptr] = ACTIONS(105), + [anon_sym_LBRACE] = ACTIONS(1439), + [anon_sym_RBRACE] = ACTIONS(2088), + [anon_sym_LBRACK] = ACTIONS(2082), + [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(87), + [anon_sym_sizeof] = ACTIONS(89), + [anon_sym___alignof__] = ACTIONS(91), + [anon_sym___alignof] = ACTIONS(91), + [anon_sym__alignof] = ACTIONS(91), + [anon_sym_alignof] = ACTIONS(91), + [anon_sym__Alignof] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(93), + [anon_sym__Generic] = ACTIONS(95), + [anon_sym_asm] = ACTIONS(97), + [anon_sym___asm__] = ACTIONS(97), + [anon_sym_DOT] = ACTIONS(2084), + [sym_number_literal] = ACTIONS(165), + [anon_sym_L_SQUOTE] = ACTIONS(101), + [anon_sym_u_SQUOTE] = ACTIONS(101), + [anon_sym_U_SQUOTE] = ACTIONS(101), + [anon_sym_u8_SQUOTE] = ACTIONS(101), + [anon_sym_SQUOTE] = ACTIONS(101), + [anon_sym_L_DQUOTE] = ACTIONS(103), + [anon_sym_u_DQUOTE] = ACTIONS(103), + [anon_sym_U_DQUOTE] = ACTIONS(103), + [anon_sym_u8_DQUOTE] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_true] = ACTIONS(167), + [sym_false] = ACTIONS(167), + [anon_sym_NULL] = ACTIONS(107), + [anon_sym_nullptr] = ACTIONS(107), [sym_comment] = ACTIONS(3), }, - [452] = { + [515] = { [sym_function_definition] = STATE(339), [sym_declaration] = STATE(339), - [sym__declaration_modifiers] = STATE(697), - [sym__declaration_specifiers] = STATE(1143), - [sym_attribute_specifier] = STATE(697), - [sym_attribute_declaration] = STATE(697), - [sym_ms_declspec_modifier] = STATE(697), - [sym_ms_call_modifier] = STATE(682), + [sym__declaration_modifiers] = STATE(805), + [sym__declaration_specifiers] = STATE(1250), + [sym_attribute_specifier] = STATE(805), + [sym_attribute_declaration] = STATE(805), + [sym_ms_declspec_modifier] = STATE(805), + [sym_ms_call_modifier] = STATE(773), [sym_declaration_list] = STATE(339), - [sym_storage_class_specifier] = STATE(697), - [sym_type_qualifier] = STATE(697), - [sym_alignas_qualifier] = STATE(703), - [sym_type_specifier] = STATE(710), - [sym_sized_type_specifier] = STATE(746), - [sym_enum_specifier] = STATE(746), - [sym_struct_specifier] = STATE(746), - [sym_union_specifier] = STATE(746), - [sym_macro_type_specifier] = STATE(746), - [aux_sym__declaration_specifiers_repeat1] = STATE(697), - [aux_sym_sized_type_specifier_repeat1] = STATE(747), - [sym_identifier] = ACTIONS(1809), - [anon_sym___extension__] = ACTIONS(51), - [anon_sym_extern] = ACTIONS(49), + [sym_storage_class_specifier] = STATE(805), + [sym_type_qualifier] = STATE(805), + [sym_alignas_qualifier] = STATE(799), + [sym_type_specifier] = STATE(807), + [sym_sized_type_specifier] = STATE(873), + [sym_enum_specifier] = STATE(873), + [sym_struct_specifier] = STATE(873), + [sym_union_specifier] = STATE(873), + [sym_macro_type_specifier] = STATE(873), + [aux_sym__declaration_specifiers_repeat1] = STATE(805), + [aux_sym_sized_type_specifier_repeat1] = STATE(890), + [sym_identifier] = ACTIONS(2008), + [anon_sym___extension__] = ACTIONS(53), + [anon_sym_extern] = ACTIONS(51), [anon_sym___attribute__] = ACTIONS(33), [anon_sym___scanf] = ACTIONS(35), [anon_sym___printf] = ACTIONS(35), [anon_sym___read_mostly] = ACTIONS(37), [anon_sym___must_hold] = ACTIONS(33), [anon_sym___ro_after_init] = ACTIONS(37), - [anon_sym___init] = ACTIONS(37), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1137), + [anon_sym___noreturn] = ACTIONS(37), + [anon_sym___cold] = ACTIONS(37), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1145), [anon_sym___declspec] = ACTIONS(41), - [anon_sym___cdecl] = ACTIONS(43), - [anon_sym___clrcall] = ACTIONS(43), - [anon_sym___stdcall] = ACTIONS(43), - [anon_sym___fastcall] = ACTIONS(43), - [anon_sym___thiscall] = ACTIONS(43), - [anon_sym___vectorcall] = ACTIONS(43), - [anon_sym_LBRACE] = ACTIONS(2043), - [anon_sym_signed] = ACTIONS(47), - [anon_sym_unsigned] = ACTIONS(47), - [anon_sym_long] = ACTIONS(47), - [anon_sym_short] = ACTIONS(47), - [anon_sym_static] = ACTIONS(49), - [anon_sym_auto] = ACTIONS(49), - [anon_sym_register] = ACTIONS(49), - [anon_sym_inline] = ACTIONS(49), - [anon_sym___inline] = ACTIONS(49), - [anon_sym___inline__] = ACTIONS(49), - [anon_sym___forceinline] = ACTIONS(49), - [anon_sym_thread_local] = ACTIONS(49), - [anon_sym___thread] = ACTIONS(49), - [anon_sym_const] = ACTIONS(51), - [anon_sym_constexpr] = ACTIONS(51), - [anon_sym_volatile] = ACTIONS(51), - [anon_sym_restrict] = ACTIONS(51), - [anon_sym___restrict__] = ACTIONS(51), - [anon_sym__Atomic] = ACTIONS(51), - [anon_sym__Noreturn] = ACTIONS(51), - [anon_sym_noreturn] = ACTIONS(51), - [anon_sym_alignas] = ACTIONS(53), - [anon_sym__Alignas] = ACTIONS(53), - [sym_primitive_type] = ACTIONS(55), - [anon_sym_enum] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(2090), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_const] = ACTIONS(53), + [anon_sym_constexpr] = ACTIONS(53), + [anon_sym_volatile] = ACTIONS(53), + [anon_sym_restrict] = ACTIONS(53), + [anon_sym___restrict__] = ACTIONS(53), + [anon_sym__Atomic] = ACTIONS(53), + [anon_sym__Noreturn] = ACTIONS(53), + [anon_sym_noreturn] = ACTIONS(53), + [anon_sym_alignas] = ACTIONS(55), + [anon_sym__Alignas] = ACTIONS(55), + [sym_primitive_type] = ACTIONS(57), + [anon_sym_enum] = ACTIONS(59), + [anon_sym_struct] = ACTIONS(61), + [anon_sym_union] = ACTIONS(63), [sym_comment] = ACTIONS(3), }, - [453] = { - [sym_function_definition] = STATE(302), - [sym_declaration] = STATE(302), - [sym__declaration_modifiers] = STATE(697), - [sym__declaration_specifiers] = STATE(1145), - [sym_attribute_specifier] = STATE(697), - [sym_attribute_declaration] = STATE(697), - [sym_ms_declspec_modifier] = STATE(697), - [sym_ms_call_modifier] = STATE(692), - [sym_declaration_list] = STATE(302), - [sym_storage_class_specifier] = STATE(697), - [sym_type_qualifier] = STATE(697), - [sym_alignas_qualifier] = STATE(703), - [sym_type_specifier] = STATE(710), - [sym_sized_type_specifier] = STATE(746), - [sym_enum_specifier] = STATE(746), - [sym_struct_specifier] = STATE(746), - [sym_union_specifier] = STATE(746), - [sym_macro_type_specifier] = STATE(746), - [aux_sym__declaration_specifiers_repeat1] = STATE(697), - [aux_sym_sized_type_specifier_repeat1] = STATE(747), - [sym_identifier] = ACTIONS(1809), - [anon_sym___extension__] = ACTIONS(51), - [anon_sym_extern] = ACTIONS(49), + [516] = { + [sym_function_definition] = STATE(129), + [sym_declaration] = STATE(129), + [sym__declaration_modifiers] = STATE(805), + [sym__declaration_specifiers] = STATE(1245), + [sym_attribute_specifier] = STATE(805), + [sym_attribute_declaration] = STATE(805), + [sym_ms_declspec_modifier] = STATE(805), + [sym_ms_call_modifier] = STATE(784), + [sym_declaration_list] = STATE(129), + [sym_storage_class_specifier] = STATE(805), + [sym_type_qualifier] = STATE(805), + [sym_alignas_qualifier] = STATE(799), + [sym_type_specifier] = STATE(807), + [sym_sized_type_specifier] = STATE(873), + [sym_enum_specifier] = STATE(873), + [sym_struct_specifier] = STATE(873), + [sym_union_specifier] = STATE(873), + [sym_macro_type_specifier] = STATE(873), + [aux_sym__declaration_specifiers_repeat1] = STATE(805), + [aux_sym_sized_type_specifier_repeat1] = STATE(890), + [sym_identifier] = ACTIONS(2008), + [anon_sym___extension__] = ACTIONS(53), + [anon_sym_extern] = ACTIONS(51), [anon_sym___attribute__] = ACTIONS(33), [anon_sym___scanf] = ACTIONS(35), [anon_sym___printf] = ACTIONS(35), [anon_sym___read_mostly] = ACTIONS(37), [anon_sym___must_hold] = ACTIONS(33), [anon_sym___ro_after_init] = ACTIONS(37), - [anon_sym___init] = ACTIONS(37), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1137), + [anon_sym___noreturn] = ACTIONS(37), + [anon_sym___cold] = ACTIONS(37), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1145), [anon_sym___declspec] = ACTIONS(41), - [anon_sym___cdecl] = ACTIONS(43), - [anon_sym___clrcall] = ACTIONS(43), - [anon_sym___stdcall] = ACTIONS(43), - [anon_sym___fastcall] = ACTIONS(43), - [anon_sym___thiscall] = ACTIONS(43), - [anon_sym___vectorcall] = ACTIONS(43), - [anon_sym_LBRACE] = ACTIONS(2045), - [anon_sym_signed] = ACTIONS(47), - [anon_sym_unsigned] = ACTIONS(47), - [anon_sym_long] = ACTIONS(47), - [anon_sym_short] = ACTIONS(47), - [anon_sym_static] = ACTIONS(49), - [anon_sym_auto] = ACTIONS(49), - [anon_sym_register] = ACTIONS(49), - [anon_sym_inline] = ACTIONS(49), - [anon_sym___inline] = ACTIONS(49), - [anon_sym___inline__] = ACTIONS(49), - [anon_sym___forceinline] = ACTIONS(49), - [anon_sym_thread_local] = ACTIONS(49), - [anon_sym___thread] = ACTIONS(49), - [anon_sym_const] = ACTIONS(51), - [anon_sym_constexpr] = ACTIONS(51), - [anon_sym_volatile] = ACTIONS(51), - [anon_sym_restrict] = ACTIONS(51), - [anon_sym___restrict__] = ACTIONS(51), - [anon_sym__Atomic] = ACTIONS(51), - [anon_sym__Noreturn] = ACTIONS(51), - [anon_sym_noreturn] = ACTIONS(51), - [anon_sym_alignas] = ACTIONS(53), - [anon_sym__Alignas] = ACTIONS(53), - [sym_primitive_type] = ACTIONS(55), - [anon_sym_enum] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(2092), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_const] = ACTIONS(53), + [anon_sym_constexpr] = ACTIONS(53), + [anon_sym_volatile] = ACTIONS(53), + [anon_sym_restrict] = ACTIONS(53), + [anon_sym___restrict__] = ACTIONS(53), + [anon_sym__Atomic] = ACTIONS(53), + [anon_sym__Noreturn] = ACTIONS(53), + [anon_sym_noreturn] = ACTIONS(53), + [anon_sym_alignas] = ACTIONS(55), + [anon_sym__Alignas] = ACTIONS(55), + [sym_primitive_type] = ACTIONS(57), + [anon_sym_enum] = ACTIONS(59), + [anon_sym_struct] = ACTIONS(61), + [anon_sym_union] = ACTIONS(63), [sym_comment] = ACTIONS(3), }, - [454] = { - [sym_function_definition] = STATE(126), - [sym_declaration] = STATE(126), - [sym__declaration_modifiers] = STATE(697), - [sym__declaration_specifiers] = STATE(1158), - [sym_attribute_specifier] = STATE(697), - [sym_attribute_declaration] = STATE(697), - [sym_ms_declspec_modifier] = STATE(697), - [sym_ms_call_modifier] = STATE(688), - [sym_declaration_list] = STATE(126), - [sym_storage_class_specifier] = STATE(697), - [sym_type_qualifier] = STATE(697), - [sym_alignas_qualifier] = STATE(703), - [sym_type_specifier] = STATE(710), - [sym_sized_type_specifier] = STATE(746), - [sym_enum_specifier] = STATE(746), - [sym_struct_specifier] = STATE(746), - [sym_union_specifier] = STATE(746), - [sym_macro_type_specifier] = STATE(746), - [aux_sym__declaration_specifiers_repeat1] = STATE(697), - [aux_sym_sized_type_specifier_repeat1] = STATE(747), - [sym_identifier] = ACTIONS(1809), - [anon_sym___extension__] = ACTIONS(51), - [anon_sym_extern] = ACTIONS(49), + [517] = { + [sym_function_definition] = STATE(338), + [sym_declaration] = STATE(338), + [sym__declaration_modifiers] = STATE(805), + [sym__declaration_specifiers] = STATE(1251), + [sym_attribute_specifier] = STATE(805), + [sym_attribute_declaration] = STATE(805), + [sym_ms_declspec_modifier] = STATE(805), + [sym_ms_call_modifier] = STATE(802), + [sym_declaration_list] = STATE(338), + [sym_storage_class_specifier] = STATE(805), + [sym_type_qualifier] = STATE(805), + [sym_alignas_qualifier] = STATE(799), + [sym_type_specifier] = STATE(807), + [sym_sized_type_specifier] = STATE(873), + [sym_enum_specifier] = STATE(873), + [sym_struct_specifier] = STATE(873), + [sym_union_specifier] = STATE(873), + [sym_macro_type_specifier] = STATE(873), + [aux_sym__declaration_specifiers_repeat1] = STATE(805), + [aux_sym_sized_type_specifier_repeat1] = STATE(890), + [sym_identifier] = ACTIONS(2008), + [anon_sym___extension__] = ACTIONS(53), + [anon_sym_extern] = ACTIONS(51), [anon_sym___attribute__] = ACTIONS(33), [anon_sym___scanf] = ACTIONS(35), [anon_sym___printf] = ACTIONS(35), [anon_sym___read_mostly] = ACTIONS(37), [anon_sym___must_hold] = ACTIONS(33), [anon_sym___ro_after_init] = ACTIONS(37), - [anon_sym___init] = ACTIONS(37), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1137), + [anon_sym___noreturn] = ACTIONS(37), + [anon_sym___cold] = ACTIONS(37), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1145), [anon_sym___declspec] = ACTIONS(41), - [anon_sym___cdecl] = ACTIONS(43), - [anon_sym___clrcall] = ACTIONS(43), - [anon_sym___stdcall] = ACTIONS(43), - [anon_sym___fastcall] = ACTIONS(43), - [anon_sym___thiscall] = ACTIONS(43), - [anon_sym___vectorcall] = ACTIONS(43), - [anon_sym_LBRACE] = ACTIONS(2047), - [anon_sym_signed] = ACTIONS(47), - [anon_sym_unsigned] = ACTIONS(47), - [anon_sym_long] = ACTIONS(47), - [anon_sym_short] = ACTIONS(47), - [anon_sym_static] = ACTIONS(49), - [anon_sym_auto] = ACTIONS(49), - [anon_sym_register] = ACTIONS(49), - [anon_sym_inline] = ACTIONS(49), - [anon_sym___inline] = ACTIONS(49), - [anon_sym___inline__] = ACTIONS(49), - [anon_sym___forceinline] = ACTIONS(49), - [anon_sym_thread_local] = ACTIONS(49), - [anon_sym___thread] = ACTIONS(49), - [anon_sym_const] = ACTIONS(51), - [anon_sym_constexpr] = ACTIONS(51), - [anon_sym_volatile] = ACTIONS(51), - [anon_sym_restrict] = ACTIONS(51), - [anon_sym___restrict__] = ACTIONS(51), - [anon_sym__Atomic] = ACTIONS(51), - [anon_sym__Noreturn] = ACTIONS(51), - [anon_sym_noreturn] = ACTIONS(51), - [anon_sym_alignas] = ACTIONS(53), - [anon_sym__Alignas] = ACTIONS(53), - [sym_primitive_type] = ACTIONS(55), - [anon_sym_enum] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(2094), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_const] = ACTIONS(53), + [anon_sym_constexpr] = ACTIONS(53), + [anon_sym_volatile] = ACTIONS(53), + [anon_sym_restrict] = ACTIONS(53), + [anon_sym___restrict__] = ACTIONS(53), + [anon_sym__Atomic] = ACTIONS(53), + [anon_sym__Noreturn] = ACTIONS(53), + [anon_sym_noreturn] = ACTIONS(53), + [anon_sym_alignas] = ACTIONS(55), + [anon_sym__Alignas] = ACTIONS(55), + [sym_primitive_type] = ACTIONS(57), + [anon_sym_enum] = ACTIONS(59), + [anon_sym_struct] = ACTIONS(61), + [anon_sym_union] = ACTIONS(63), [sym_comment] = ACTIONS(3), }, - [455] = { - [sym_function_definition] = STATE(295), - [sym_declaration] = STATE(295), - [sym__declaration_modifiers] = STATE(697), - [sym__declaration_specifiers] = STATE(1134), - [sym_attribute_specifier] = STATE(697), - [sym_attribute_declaration] = STATE(697), - [sym_ms_declspec_modifier] = STATE(697), - [sym_ms_call_modifier] = STATE(684), - [sym_declaration_list] = STATE(295), - [sym_storage_class_specifier] = STATE(697), - [sym_type_qualifier] = STATE(697), - [sym_alignas_qualifier] = STATE(703), - [sym_type_specifier] = STATE(710), - [sym_sized_type_specifier] = STATE(746), - [sym_enum_specifier] = STATE(746), - [sym_struct_specifier] = STATE(746), - [sym_union_specifier] = STATE(746), - [sym_macro_type_specifier] = STATE(746), - [aux_sym__declaration_specifiers_repeat1] = STATE(697), - [aux_sym_sized_type_specifier_repeat1] = STATE(747), - [sym_identifier] = ACTIONS(1809), - [anon_sym___extension__] = ACTIONS(51), - [anon_sym_extern] = ACTIONS(49), + [518] = { + [sym_expression] = STATE(1182), + [sym__string] = STATE(758), + [sym_conditional_expression] = STATE(758), + [sym_assignment_expression] = STATE(758), + [sym_pointer_expression] = STATE(944), + [sym_unary_expression] = STATE(758), + [sym_binary_expression] = STATE(758), + [sym_update_expression] = STATE(758), + [sym_cast_expression] = STATE(758), + [sym_sizeof_expression] = STATE(758), + [sym_alignof_expression] = STATE(758), + [sym_offsetof_expression] = STATE(758), + [sym_generic_expression] = STATE(758), + [sym_subscript_expression] = STATE(944), + [sym_call_expression] = STATE(944), + [sym_gnu_asm_expression] = STATE(758), + [sym_field_expression] = STATE(944), + [sym_compound_literal_expression] = STATE(758), + [sym_parenthesized_expression] = STATE(944), + [sym_initializer_list] = STATE(1980), + [sym_initializer_pair] = STATE(1980), + [sym_subscript_designator] = STATE(1627), + [sym_subscript_range_designator] = STATE(1627), + [sym_field_designator] = STATE(1627), + [sym_char_literal] = STATE(758), + [sym_concatenated_string] = STATE(758), + [sym_string_literal] = STATE(671), + [sym_null] = STATE(758), + [aux_sym_initializer_pair_repeat1] = STATE(1627), + [sym_identifier] = ACTIONS(2076), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(1439), + [anon_sym_LBRACK] = ACTIONS(2082), + [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(87), + [anon_sym_sizeof] = ACTIONS(89), + [anon_sym___alignof__] = ACTIONS(91), + [anon_sym___alignof] = ACTIONS(91), + [anon_sym__alignof] = ACTIONS(91), + [anon_sym_alignof] = ACTIONS(91), + [anon_sym__Alignof] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(93), + [anon_sym__Generic] = ACTIONS(95), + [anon_sym_asm] = ACTIONS(97), + [anon_sym___asm__] = ACTIONS(97), + [anon_sym_DOT] = ACTIONS(2084), + [sym_number_literal] = ACTIONS(165), + [anon_sym_L_SQUOTE] = ACTIONS(101), + [anon_sym_u_SQUOTE] = ACTIONS(101), + [anon_sym_U_SQUOTE] = ACTIONS(101), + [anon_sym_u8_SQUOTE] = ACTIONS(101), + [anon_sym_SQUOTE] = ACTIONS(101), + [anon_sym_L_DQUOTE] = ACTIONS(103), + [anon_sym_u_DQUOTE] = ACTIONS(103), + [anon_sym_U_DQUOTE] = ACTIONS(103), + [anon_sym_u8_DQUOTE] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_true] = ACTIONS(167), + [sym_false] = ACTIONS(167), + [anon_sym_NULL] = ACTIONS(107), + [anon_sym_nullptr] = ACTIONS(107), + [sym_comment] = ACTIONS(3), + }, + [519] = { + [sym_function_definition] = STATE(392), + [sym_declaration] = STATE(392), + [sym__declaration_modifiers] = STATE(805), + [sym__declaration_specifiers] = STATE(1252), + [sym_attribute_specifier] = STATE(805), + [sym_attribute_declaration] = STATE(805), + [sym_ms_declspec_modifier] = STATE(805), + [sym_ms_call_modifier] = STATE(790), + [sym_declaration_list] = STATE(392), + [sym_storage_class_specifier] = STATE(805), + [sym_type_qualifier] = STATE(805), + [sym_alignas_qualifier] = STATE(799), + [sym_type_specifier] = STATE(807), + [sym_sized_type_specifier] = STATE(873), + [sym_enum_specifier] = STATE(873), + [sym_struct_specifier] = STATE(873), + [sym_union_specifier] = STATE(873), + [sym_macro_type_specifier] = STATE(873), + [aux_sym__declaration_specifiers_repeat1] = STATE(805), + [aux_sym_sized_type_specifier_repeat1] = STATE(890), + [sym_identifier] = ACTIONS(2008), + [anon_sym___extension__] = ACTIONS(53), + [anon_sym_extern] = ACTIONS(51), [anon_sym___attribute__] = ACTIONS(33), [anon_sym___scanf] = ACTIONS(35), [anon_sym___printf] = ACTIONS(35), [anon_sym___read_mostly] = ACTIONS(37), [anon_sym___must_hold] = ACTIONS(33), [anon_sym___ro_after_init] = ACTIONS(37), - [anon_sym___init] = ACTIONS(37), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1137), + [anon_sym___noreturn] = ACTIONS(37), + [anon_sym___cold] = ACTIONS(37), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1145), [anon_sym___declspec] = ACTIONS(41), - [anon_sym___cdecl] = ACTIONS(43), - [anon_sym___clrcall] = ACTIONS(43), - [anon_sym___stdcall] = ACTIONS(43), - [anon_sym___fastcall] = ACTIONS(43), - [anon_sym___thiscall] = ACTIONS(43), - [anon_sym___vectorcall] = ACTIONS(43), - [anon_sym_LBRACE] = ACTIONS(2049), - [anon_sym_signed] = ACTIONS(47), - [anon_sym_unsigned] = ACTIONS(47), - [anon_sym_long] = ACTIONS(47), - [anon_sym_short] = ACTIONS(47), - [anon_sym_static] = ACTIONS(49), - [anon_sym_auto] = ACTIONS(49), - [anon_sym_register] = ACTIONS(49), - [anon_sym_inline] = ACTIONS(49), - [anon_sym___inline] = ACTIONS(49), - [anon_sym___inline__] = ACTIONS(49), - [anon_sym___forceinline] = ACTIONS(49), - [anon_sym_thread_local] = ACTIONS(49), - [anon_sym___thread] = ACTIONS(49), - [anon_sym_const] = ACTIONS(51), - [anon_sym_constexpr] = ACTIONS(51), - [anon_sym_volatile] = ACTIONS(51), - [anon_sym_restrict] = ACTIONS(51), - [anon_sym___restrict__] = ACTIONS(51), - [anon_sym__Atomic] = ACTIONS(51), - [anon_sym__Noreturn] = ACTIONS(51), - [anon_sym_noreturn] = ACTIONS(51), - [anon_sym_alignas] = ACTIONS(53), - [anon_sym__Alignas] = ACTIONS(53), - [sym_primitive_type] = ACTIONS(55), - [anon_sym_enum] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(2096), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(51), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_const] = ACTIONS(53), + [anon_sym_constexpr] = ACTIONS(53), + [anon_sym_volatile] = ACTIONS(53), + [anon_sym_restrict] = ACTIONS(53), + [anon_sym___restrict__] = ACTIONS(53), + [anon_sym__Atomic] = ACTIONS(53), + [anon_sym__Noreturn] = ACTIONS(53), + [anon_sym_noreturn] = ACTIONS(53), + [anon_sym_alignas] = ACTIONS(55), + [anon_sym__Alignas] = ACTIONS(55), + [sym_primitive_type] = ACTIONS(57), + [anon_sym_enum] = ACTIONS(59), + [anon_sym_struct] = ACTIONS(61), + [anon_sym_union] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + }, + [520] = { + [sym_string_literal] = STATE(521), + [aux_sym_concatenated_string_repeat1] = STATE(521), + [sym_identifier] = ACTIONS(2098), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2100), + [anon_sym_COMMA] = ACTIONS(2100), + [anon_sym_RPAREN] = ACTIONS(2100), + [aux_sym_preproc_if_token2] = ACTIONS(2100), + [aux_sym_preproc_else_token1] = ACTIONS(2100), + [aux_sym_preproc_elif_token1] = ACTIONS(2102), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2100), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2100), + [anon_sym_LPAREN2] = ACTIONS(2100), + [anon_sym_DASH] = ACTIONS(2102), + [anon_sym_PLUS] = ACTIONS(2102), + [anon_sym_STAR] = ACTIONS(2102), + [anon_sym_SLASH] = ACTIONS(2102), + [anon_sym_PERCENT] = ACTIONS(2102), + [anon_sym_PIPE_PIPE] = ACTIONS(2100), + [anon_sym_AMP_AMP] = ACTIONS(2100), + [anon_sym_PIPE] = ACTIONS(2102), + [anon_sym_CARET] = ACTIONS(2102), + [anon_sym_AMP] = ACTIONS(2102), + [anon_sym_EQ_EQ] = ACTIONS(2100), + [anon_sym_BANG_EQ] = ACTIONS(2100), + [anon_sym_GT] = ACTIONS(2102), + [anon_sym_GT_EQ] = ACTIONS(2100), + [anon_sym_LT_EQ] = ACTIONS(2100), + [anon_sym_LT] = ACTIONS(2102), + [anon_sym_LT_LT] = ACTIONS(2102), + [anon_sym_GT_GT] = ACTIONS(2102), + [anon_sym_SEMI] = ACTIONS(2100), + [anon_sym___attribute__] = ACTIONS(2102), + [anon_sym___scanf] = ACTIONS(2102), + [anon_sym___printf] = ACTIONS(2102), + [anon_sym___read_mostly] = ACTIONS(2102), + [anon_sym___must_hold] = ACTIONS(2102), + [anon_sym___ro_after_init] = ACTIONS(2102), + [anon_sym___noreturn] = ACTIONS(2102), + [anon_sym___cold] = ACTIONS(2102), + [anon_sym_RBRACE] = ACTIONS(2100), + [anon_sym_LBRACK] = ACTIONS(2100), + [anon_sym_RBRACK] = ACTIONS(2100), + [anon_sym_EQ] = ACTIONS(2102), + [anon_sym_COLON] = ACTIONS(2100), + [anon_sym_QMARK] = ACTIONS(2100), + [anon_sym_STAR_EQ] = ACTIONS(2100), + [anon_sym_SLASH_EQ] = ACTIONS(2100), + [anon_sym_PERCENT_EQ] = ACTIONS(2100), + [anon_sym_PLUS_EQ] = ACTIONS(2100), + [anon_sym_DASH_EQ] = ACTIONS(2100), + [anon_sym_LT_LT_EQ] = ACTIONS(2100), + [anon_sym_GT_GT_EQ] = ACTIONS(2100), + [anon_sym_AMP_EQ] = ACTIONS(2100), + [anon_sym_CARET_EQ] = ACTIONS(2100), + [anon_sym_PIPE_EQ] = ACTIONS(2100), + [anon_sym_DASH_DASH] = ACTIONS(2100), + [anon_sym_PLUS_PLUS] = ACTIONS(2100), + [anon_sym_DOT] = ACTIONS(2102), + [anon_sym_DASH_GT] = ACTIONS(2100), + [anon_sym_L_DQUOTE] = ACTIONS(103), + [anon_sym_u_DQUOTE] = ACTIONS(103), + [anon_sym_U_DQUOTE] = ACTIONS(103), + [anon_sym_u8_DQUOTE] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + }, + [521] = { + [sym_string_literal] = STATE(522), + [aux_sym_concatenated_string_repeat1] = STATE(522), + [sym_identifier] = ACTIONS(2104), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2106), + [anon_sym_COMMA] = ACTIONS(2106), + [anon_sym_RPAREN] = ACTIONS(2106), + [aux_sym_preproc_if_token2] = ACTIONS(2106), + [aux_sym_preproc_else_token1] = ACTIONS(2106), + [aux_sym_preproc_elif_token1] = ACTIONS(2108), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2106), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2106), + [anon_sym_LPAREN2] = ACTIONS(2106), + [anon_sym_DASH] = ACTIONS(2108), + [anon_sym_PLUS] = ACTIONS(2108), + [anon_sym_STAR] = ACTIONS(2108), + [anon_sym_SLASH] = ACTIONS(2108), + [anon_sym_PERCENT] = ACTIONS(2108), + [anon_sym_PIPE_PIPE] = ACTIONS(2106), + [anon_sym_AMP_AMP] = ACTIONS(2106), + [anon_sym_PIPE] = ACTIONS(2108), + [anon_sym_CARET] = ACTIONS(2108), + [anon_sym_AMP] = ACTIONS(2108), + [anon_sym_EQ_EQ] = ACTIONS(2106), + [anon_sym_BANG_EQ] = ACTIONS(2106), + [anon_sym_GT] = ACTIONS(2108), + [anon_sym_GT_EQ] = ACTIONS(2106), + [anon_sym_LT_EQ] = ACTIONS(2106), + [anon_sym_LT] = ACTIONS(2108), + [anon_sym_LT_LT] = ACTIONS(2108), + [anon_sym_GT_GT] = ACTIONS(2108), + [anon_sym_SEMI] = ACTIONS(2106), + [anon_sym___attribute__] = ACTIONS(2108), + [anon_sym___scanf] = ACTIONS(2108), + [anon_sym___printf] = ACTIONS(2108), + [anon_sym___read_mostly] = ACTIONS(2108), + [anon_sym___must_hold] = ACTIONS(2108), + [anon_sym___ro_after_init] = ACTIONS(2108), + [anon_sym___noreturn] = ACTIONS(2108), + [anon_sym___cold] = ACTIONS(2108), + [anon_sym_RBRACE] = ACTIONS(2106), + [anon_sym_LBRACK] = ACTIONS(2106), + [anon_sym_RBRACK] = ACTIONS(2106), + [anon_sym_EQ] = ACTIONS(2108), + [anon_sym_COLON] = ACTIONS(2106), + [anon_sym_QMARK] = ACTIONS(2106), + [anon_sym_STAR_EQ] = ACTIONS(2106), + [anon_sym_SLASH_EQ] = ACTIONS(2106), + [anon_sym_PERCENT_EQ] = ACTIONS(2106), + [anon_sym_PLUS_EQ] = ACTIONS(2106), + [anon_sym_DASH_EQ] = ACTIONS(2106), + [anon_sym_LT_LT_EQ] = ACTIONS(2106), + [anon_sym_GT_GT_EQ] = ACTIONS(2106), + [anon_sym_AMP_EQ] = ACTIONS(2106), + [anon_sym_CARET_EQ] = ACTIONS(2106), + [anon_sym_PIPE_EQ] = ACTIONS(2106), + [anon_sym_DASH_DASH] = ACTIONS(2106), + [anon_sym_PLUS_PLUS] = ACTIONS(2106), + [anon_sym_DOT] = ACTIONS(2108), + [anon_sym_DASH_GT] = ACTIONS(2106), + [anon_sym_L_DQUOTE] = ACTIONS(103), + [anon_sym_u_DQUOTE] = ACTIONS(103), + [anon_sym_U_DQUOTE] = ACTIONS(103), + [anon_sym_u8_DQUOTE] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + }, + [522] = { + [sym_string_literal] = STATE(522), + [aux_sym_concatenated_string_repeat1] = STATE(522), + [sym_identifier] = ACTIONS(2110), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2113), + [anon_sym_COMMA] = ACTIONS(2113), + [anon_sym_RPAREN] = ACTIONS(2113), + [aux_sym_preproc_if_token2] = ACTIONS(2113), + [aux_sym_preproc_else_token1] = ACTIONS(2113), + [aux_sym_preproc_elif_token1] = ACTIONS(2115), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2113), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2113), + [anon_sym_LPAREN2] = ACTIONS(2113), + [anon_sym_DASH] = ACTIONS(2115), + [anon_sym_PLUS] = ACTIONS(2115), + [anon_sym_STAR] = ACTIONS(2115), + [anon_sym_SLASH] = ACTIONS(2115), + [anon_sym_PERCENT] = ACTIONS(2115), + [anon_sym_PIPE_PIPE] = ACTIONS(2113), + [anon_sym_AMP_AMP] = ACTIONS(2113), + [anon_sym_PIPE] = ACTIONS(2115), + [anon_sym_CARET] = ACTIONS(2115), + [anon_sym_AMP] = ACTIONS(2115), + [anon_sym_EQ_EQ] = ACTIONS(2113), + [anon_sym_BANG_EQ] = ACTIONS(2113), + [anon_sym_GT] = ACTIONS(2115), + [anon_sym_GT_EQ] = ACTIONS(2113), + [anon_sym_LT_EQ] = ACTIONS(2113), + [anon_sym_LT] = ACTIONS(2115), + [anon_sym_LT_LT] = ACTIONS(2115), + [anon_sym_GT_GT] = ACTIONS(2115), + [anon_sym_SEMI] = ACTIONS(2113), + [anon_sym___attribute__] = ACTIONS(2115), + [anon_sym___scanf] = ACTIONS(2115), + [anon_sym___printf] = ACTIONS(2115), + [anon_sym___read_mostly] = ACTIONS(2115), + [anon_sym___must_hold] = ACTIONS(2115), + [anon_sym___ro_after_init] = ACTIONS(2115), + [anon_sym___noreturn] = ACTIONS(2115), + [anon_sym___cold] = ACTIONS(2115), + [anon_sym_RBRACE] = ACTIONS(2113), + [anon_sym_LBRACK] = ACTIONS(2113), + [anon_sym_RBRACK] = ACTIONS(2113), + [anon_sym_EQ] = ACTIONS(2115), + [anon_sym_COLON] = ACTIONS(2113), + [anon_sym_QMARK] = ACTIONS(2113), + [anon_sym_STAR_EQ] = ACTIONS(2113), + [anon_sym_SLASH_EQ] = ACTIONS(2113), + [anon_sym_PERCENT_EQ] = ACTIONS(2113), + [anon_sym_PLUS_EQ] = ACTIONS(2113), + [anon_sym_DASH_EQ] = ACTIONS(2113), + [anon_sym_LT_LT_EQ] = ACTIONS(2113), + [anon_sym_GT_GT_EQ] = ACTIONS(2113), + [anon_sym_AMP_EQ] = ACTIONS(2113), + [anon_sym_CARET_EQ] = ACTIONS(2113), + [anon_sym_PIPE_EQ] = ACTIONS(2113), + [anon_sym_DASH_DASH] = ACTIONS(2113), + [anon_sym_PLUS_PLUS] = ACTIONS(2113), + [anon_sym_DOT] = ACTIONS(2115), + [anon_sym_DASH_GT] = ACTIONS(2113), + [anon_sym_L_DQUOTE] = ACTIONS(2117), + [anon_sym_u_DQUOTE] = ACTIONS(2117), + [anon_sym_U_DQUOTE] = ACTIONS(2117), + [anon_sym_u8_DQUOTE] = ACTIONS(2117), + [anon_sym_DQUOTE] = ACTIONS(2117), [sym_comment] = ACTIONS(3), }, }; static const uint16_t ts_small_parse_table[] = { - [0] = 6, + [0] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(520), 1, + sym_string_literal, + ACTIONS(103), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(1756), 24, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym___scanf, + anon_sym___printf, + anon_sym___read_mostly, + anon_sym___must_hold, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + anon_sym_EQ, + anon_sym_DOT, + sym_identifier, + ACTIONS(1750), 33, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [75] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2139), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2142), 1, + anon_sym___declspec, + STATE(799), 1, + sym_alignas_qualifier, + ACTIONS(2130), 2, + anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(2133), 2, + anon_sym___scanf, + anon_sym___printf, + ACTIONS(2145), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(2136), 4, + anon_sym___read_mostly, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + ACTIONS(2122), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + STATE(524), 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(2124), 9, + anon_sym___extension__, + 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(2127), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + ACTIONS(2120), 19, + anon_sym___based, + anon_sym___init, + anon_sym___exit, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [166] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2148), 24, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym___scanf, + anon_sym___printf, + anon_sym___read_mostly, + anon_sym___must_hold, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + anon_sym_EQ, + anon_sym_DOT, + sym_identifier, + ACTIONS(2150), 38, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [236] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(47), 1, + anon_sym_LBRACE, + ACTIONS(89), 1, + anon_sym_sizeof, + ACTIONS(93), 1, + anon_sym_offsetof, + ACTIONS(95), 1, + anon_sym__Generic, + ACTIONS(165), 1, + sym_number_literal, + ACTIONS(1773), 1, + sym_identifier, + ACTIONS(2152), 1, + anon_sym_RPAREN, + ACTIONS(2154), 1, + anon_sym___extension__, + STATE(671), 1, + sym_string_literal, + STATE(1147), 1, + sym_expression, + STATE(1893), 1, + sym_compound_statement, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(87), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(97), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(107), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(167), 2, + sym_true, + sym_false, + ACTIONS(91), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(101), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(103), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(944), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(758), 16, + sym__string, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [350] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(47), 1, + anon_sym_LBRACE, + ACTIONS(89), 1, + anon_sym_sizeof, + ACTIONS(93), 1, + anon_sym_offsetof, + ACTIONS(95), 1, + anon_sym__Generic, + ACTIONS(165), 1, + sym_number_literal, + ACTIONS(1773), 1, + sym_identifier, + ACTIONS(2156), 1, + anon_sym_RPAREN, + ACTIONS(2158), 1, + anon_sym___extension__, + STATE(671), 1, + sym_string_literal, + STATE(1150), 1, + sym_expression, + STATE(1841), 1, + sym_compound_statement, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(87), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(97), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(107), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(167), 2, + sym_true, + sym_false, + ACTIONS(91), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(101), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(103), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(944), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(758), 16, + sym__string, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [464] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2160), 24, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym___scanf, + anon_sym___printf, + anon_sym___read_mostly, + anon_sym___must_hold, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + anon_sym_EQ, + anon_sym_DOT, + sym_identifier, + ACTIONS(2162), 38, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [534] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2166), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(2164), 52, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___scanf, + anon_sym___printf, + anon_sym___read_mostly, + anon_sym___must_hold, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + anon_sym___declspec, + anon_sym___based, + anon_sym___init, + anon_sym___exit, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym___aligned, + anon_sym_union, + anon_sym_asm, + anon_sym___asm__, + sym_identifier, + [603] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2170), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(2168), 52, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___scanf, + anon_sym___printf, + anon_sym___read_mostly, + anon_sym___must_hold, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + anon_sym___declspec, + anon_sym___based, + anon_sym___init, + anon_sym___exit, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym___aligned, + anon_sym_union, + anon_sym_asm, + anon_sym___asm__, + sym_identifier, + [672] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2174), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(2172), 52, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___scanf, + anon_sym___printf, + anon_sym___read_mostly, + anon_sym___must_hold, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + anon_sym___declspec, + anon_sym___based, + anon_sym___init, + anon_sym___exit, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym___aligned, + anon_sym_union, + anon_sym_asm, + anon_sym___asm__, + sym_identifier, + [741] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2178), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(2176), 52, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___scanf, + anon_sym___printf, + anon_sym___read_mostly, + anon_sym___must_hold, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + anon_sym___declspec, + anon_sym___based, + anon_sym___init, + anon_sym___exit, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym___aligned, + anon_sym_union, + anon_sym_asm, + anon_sym___asm__, + sym_identifier, + [810] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2180), 27, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym___scanf, + anon_sym___printf, + anon_sym___read_mostly, + anon_sym___must_hold, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_DOT, + sym_identifier, + ACTIONS(2182), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [879] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2184), 27, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym___scanf, + anon_sym___printf, + anon_sym___read_mostly, + anon_sym___must_hold, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_DOT, + sym_identifier, + ACTIONS(2186), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [948] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(2051), 1, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(47), 1, + anon_sym_LBRACE, + ACTIONS(89), 1, + anon_sym_sizeof, + ACTIONS(93), 1, + anon_sym_offsetof, + ACTIONS(95), 1, + anon_sym__Generic, + ACTIONS(165), 1, + sym_number_literal, + ACTIONS(1773), 1, sym_identifier, - STATE(458), 2, + ACTIONS(2188), 1, + anon_sym___extension__, + STATE(671), 1, sym_string_literal, - aux_sym_concatenated_string_repeat1, + STATE(1194), 1, + sym_expression, + STATE(2028), 1, + sym_compound_statement, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(87), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(97), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(107), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(167), 2, + sym_true, + sym_false, + ACTIONS(91), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, ACTIONS(101), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(103), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(2055), 22, + STATE(944), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(758), 16, + sym__string, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [1059] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2190), 27, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -62867,10 +72986,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___read_mostly, anon_sym___must_hold, anon_sym___ro_after_init, - anon_sym___init, + anon_sym___noreturn, + anon_sym___cold, + anon_sym_LBRACK, anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, anon_sym_DOT, - ACTIONS(2053), 33, + sym_identifier, + ACTIONS(2192), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -62886,8 +73010,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, @@ -62904,21 +73029,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [77] = 6, + [1128] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2057), 1, - sym_identifier, - STATE(457), 2, - sym_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(2064), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(2062), 22, + ACTIONS(2194), 27, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -62938,10 +73052,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___read_mostly, anon_sym___must_hold, anon_sym___ro_after_init, - anon_sym___init, + anon_sym___noreturn, + anon_sym___cold, + anon_sym_LBRACK, anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, anon_sym_DOT, - ACTIONS(2060), 33, + sym_identifier, + ACTIONS(2196), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -62957,8 +73076,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, @@ -62975,21 +73095,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [154] = 6, + [1197] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2067), 1, - sym_identifier, - STATE(457), 2, - sym_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(101), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(2071), 22, + ACTIONS(2198), 27, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -63009,10 +73118,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___read_mostly, anon_sym___must_hold, anon_sym___ro_after_init, - anon_sym___init, + anon_sym___noreturn, + anon_sym___cold, + anon_sym_LBRACK, anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, anon_sym_DOT, - ACTIONS(2069), 33, + sym_identifier, + ACTIONS(2200), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -63028,8 +73142,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, @@ -63046,107 +73161,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [231] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(45), 1, - anon_sym_LBRACE, - ACTIONS(87), 1, - anon_sym_sizeof, - ACTIONS(91), 1, - anon_sym_offsetof, - ACTIONS(93), 1, - anon_sym__Generic, - ACTIONS(163), 1, - sym_number_literal, - ACTIONS(1722), 1, - sym_identifier, - ACTIONS(2073), 1, - anon_sym_RPAREN, - ACTIONS(2075), 1, - anon_sym___extension__, - STATE(659), 1, - sym_string_literal, - STATE(1025), 1, - sym_expression, - STATE(1576), 1, - sym_compound_statement, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(85), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(95), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(105), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(165), 2, - sym_true, - sym_false, - ACTIONS(89), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(99), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(101), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(818), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(663), 16, - sym__string, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_alignof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_gnu_asm_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [345] = 5, + [1266] = 3, ACTIONS(3), 1, sym_comment, - STATE(456), 1, - sym_string_literal, - ACTIONS(101), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1740), 23, + ACTIONS(2202), 27, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -63166,11 +73184,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___read_mostly, anon_sym___must_hold, anon_sym___ro_after_init, - anon_sym___init, + anon_sym___noreturn, + anon_sym___cold, + anon_sym_LBRACK, anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, anon_sym_DOT, sym_identifier, - ACTIONS(1734), 33, + ACTIONS(2204), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -63186,8 +73208,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, @@ -63204,99 +73227,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [419] = 25, + [1335] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(45), 1, - anon_sym_LBRACE, - ACTIONS(87), 1, - anon_sym_sizeof, - ACTIONS(91), 1, - anon_sym_offsetof, - ACTIONS(93), 1, - anon_sym__Generic, - ACTIONS(163), 1, - sym_number_literal, - ACTIONS(1722), 1, - sym_identifier, - ACTIONS(2077), 1, - anon_sym_RPAREN, - ACTIONS(2079), 1, - anon_sym___extension__, - STATE(659), 1, - sym_string_literal, - STATE(1026), 1, - sym_expression, - STATE(1555), 1, - sym_compound_statement, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(85), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(95), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(105), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(165), 2, - sym_true, - sym_false, - ACTIONS(89), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(99), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(101), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(818), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(663), 16, - sym__string, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_alignof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_gnu_asm_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [533] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2081), 23, + ACTIONS(2206), 27, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -63316,11 +73250,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___read_mostly, anon_sym___must_hold, anon_sym___ro_after_init, - anon_sym___init, + anon_sym___noreturn, + anon_sym___cold, + anon_sym_LBRACK, anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, anon_sym_DOT, sym_identifier, - ACTIONS(2083), 38, + ACTIONS(2208), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -63336,8 +73274,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, @@ -63354,102 +73293,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [602] = 24, + [1404] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(45), 1, - anon_sym_LBRACE, - ACTIONS(87), 1, - anon_sym_sizeof, - ACTIONS(91), 1, - anon_sym_offsetof, - ACTIONS(93), 1, - anon_sym__Generic, - ACTIONS(163), 1, - sym_number_literal, - ACTIONS(1722), 1, - sym_identifier, - ACTIONS(2085), 1, - anon_sym___extension__, - STATE(659), 1, - sym_string_literal, - STATE(1069), 1, - sym_expression, - STATE(1688), 1, - sym_compound_statement, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(2210), 27, + aux_sym_preproc_elif_token1, 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(85), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(95), 2, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym___scanf, + anon_sym___printf, + anon_sym___read_mostly, + anon_sym___must_hold, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + anon_sym_LBRACK, + anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - ACTIONS(105), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(165), 2, - sym_true, - sym_false, - ACTIONS(89), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(99), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(101), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(818), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(663), 16, - sym__string, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_alignof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_gnu_asm_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [713] = 3, + anon_sym_DOT, + sym_identifier, + ACTIONS(2212), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [1473] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2087), 23, + ACTIONS(2214), 27, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -63469,11 +73382,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___read_mostly, anon_sym___must_hold, anon_sym___ro_after_init, - anon_sym___init, + anon_sym___noreturn, + anon_sym___cold, + anon_sym_LBRACK, anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, anon_sym_DOT, sym_identifier, - ACTIONS(2089), 38, + ACTIONS(2216), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -63489,8 +73406,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, @@ -63507,203 +73425,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [782] = 23, + [1542] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(87), 1, - anon_sym_sizeof, - ACTIONS(91), 1, - anon_sym_offsetof, - ACTIONS(93), 1, - anon_sym__Generic, - ACTIONS(163), 1, - sym_number_literal, - ACTIONS(1407), 1, - anon_sym_LBRACE, - ACTIONS(1722), 1, - sym_identifier, - STATE(659), 1, - sym_string_literal, - STATE(661), 1, - sym_initializer_list, - STATE(683), 1, - sym_expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(2218), 27, + aux_sym_preproc_elif_token1, 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(85), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(95), 2, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym___scanf, + anon_sym___printf, + anon_sym___read_mostly, + anon_sym___must_hold, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + anon_sym_LBRACK, + anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - ACTIONS(105), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(165), 2, - sym_true, - sym_false, - ACTIONS(89), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(99), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(101), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(818), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(663), 16, - sym__string, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_alignof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_gnu_asm_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [890] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(87), 1, - anon_sym_sizeof, - ACTIONS(91), 1, - anon_sym_offsetof, - ACTIONS(93), 1, - anon_sym__Generic, - ACTIONS(163), 1, - sym_number_literal, - ACTIONS(1722), 1, + anon_sym_DOT, sym_identifier, - ACTIONS(2091), 1, + ACTIONS(2220), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_RPAREN, - STATE(659), 1, - sym_string_literal, - STATE(1028), 1, - sym_expression, - STATE(1960), 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(85), 2, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(95), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(105), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(165), 2, - sym_true, - sym_false, - ACTIONS(89), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(99), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(101), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(818), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(663), 16, - sym__string, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_alignof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_gnu_asm_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [998] = 23, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [1611] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(87), 1, + ACTIONS(89), 1, anon_sym_sizeof, - ACTIONS(91), 1, - anon_sym_offsetof, ACTIONS(93), 1, + anon_sym_offsetof, + ACTIONS(95), 1, anon_sym__Generic, - ACTIONS(163), 1, + ACTIONS(165), 1, sym_number_literal, - ACTIONS(1722), 1, + ACTIONS(1773), 1, sym_identifier, - ACTIONS(2093), 1, - anon_sym_SEMI, - STATE(659), 1, + ACTIONS(2222), 1, + anon_sym_COLON, + STATE(671), 1, sym_string_literal, - STATE(1074), 1, + STATE(1154), 1, sym_expression, - STATE(1827), 1, + STATE(2253), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -63714,43 +73523,43 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(85), 2, + ACTIONS(87), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(95), 2, + ACTIONS(97), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(105), 2, + ACTIONS(107), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(165), 2, + ACTIONS(167), 2, sym_true, sym_false, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(99), 5, + ACTIONS(101), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(101), 5, + ACTIONS(103), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(818), 5, + STATE(944), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(663), 16, + STATE(758), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -63767,58 +73576,121 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [1106] = 3, + [1719] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2095), 26, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(2224), 1, + sym_identifier, + ACTIONS(2230), 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, + ACTIONS(2232), 1, + anon_sym_LBRACK, + STATE(1271), 1, + sym_gnu_asm_expression, + ACTIONS(33), 2, anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(35), 2, anon_sym___scanf, anon_sym___printf, - anon_sym___read_mostly, - anon_sym___must_hold, - anon_sym___ro_after_init, - anon_sym___init, - anon_sym_LBRACK, - anon_sym_EQ, + ACTIONS(97), 2, anon_sym_asm, anon_sym___asm__, - anon_sym_DOT, - sym_identifier, - ACTIONS(2097), 34, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2228), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + STATE(1259), 3, + sym_preproc_call_expression, + sym_attribute_specifier, + aux_sym_function_declarator_repeat1, + ACTIONS(37), 4, + anon_sym___read_mostly, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + ACTIONS(2226), 41, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, + sym_preproc_directive, + anon_sym___extension__, + anon_sym_extern, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + [1805] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1748), 1, + anon_sym_const, + ACTIONS(1752), 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_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, + ACTIONS(1758), 1, + anon_sym_STAR, + ACTIONS(1765), 1, + anon_sym_EQ, + STATE(520), 1, + sym_string_literal, + STATE(885), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(1781), 2, + anon_sym_RPAREN, + anon_sym_LBRACK, + ACTIONS(2234), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(103), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(1761), 10, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(1769), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -63829,31 +73701,226 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + ACTIONS(1756), 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(1750), 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, - [1174] = 23, + [1895] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(41), 1, + anon_sym___declspec, + ACTIONS(57), 1, + sym_primitive_type, + ACTIONS(59), 1, + anon_sym_enum, + ACTIONS(61), 1, + anon_sym_struct, + ACTIONS(63), 1, + anon_sym_union, + ACTIONS(1145), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1869), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2236), 1, + sym_identifier, + ACTIONS(2238), 1, + anon_sym_RPAREN, + STATE(799), 1, + sym_alignas_qualifier, + STATE(807), 1, + sym_type_specifier, + STATE(890), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1343), 1, + sym__declaration_specifiers, + STATE(1738), 1, + sym_variadic_parameter, + STATE(1832), 1, + sym_parameter_declaration, + ACTIONS(33), 2, + anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(35), 2, + anon_sym___scanf, + anon_sym___printf, + ACTIONS(55), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(37), 4, + anon_sym___read_mostly, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + ACTIONS(49), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(873), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(805), 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(53), 9, + anon_sym___extension__, + 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(51), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [2007] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(41), 1, + anon_sym___declspec, + ACTIONS(57), 1, + sym_primitive_type, + ACTIONS(59), 1, + anon_sym_enum, + ACTIONS(61), 1, + anon_sym_struct, + ACTIONS(63), 1, + anon_sym_union, + ACTIONS(391), 1, + anon_sym_LBRACE, + ACTIONS(1145), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2008), 1, + sym_identifier, + STATE(309), 1, + sym_compound_statement, + STATE(799), 1, + sym_alignas_qualifier, + STATE(807), 1, + sym_type_specifier, + STATE(890), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1248), 1, + sym__declaration_specifiers, + ACTIONS(33), 2, + anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(35), 2, + anon_sym___scanf, + anon_sym___printf, + ACTIONS(55), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(581), 2, + sym_declaration, + aux_sym__old_style_function_definition_repeat1, + ACTIONS(37), 4, + anon_sym___read_mostly, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + ACTIONS(49), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(873), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(805), 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(53), 9, + anon_sym___extension__, + 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(51), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [2117] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(87), 1, + ACTIONS(89), 1, anon_sym_sizeof, - ACTIONS(91), 1, - anon_sym_offsetof, ACTIONS(93), 1, + anon_sym_offsetof, + ACTIONS(95), 1, anon_sym__Generic, - ACTIONS(163), 1, + ACTIONS(165), 1, sym_number_literal, - ACTIONS(1722), 1, + ACTIONS(1773), 1, sym_identifier, - ACTIONS(2099), 1, - anon_sym_RPAREN, - STATE(659), 1, + ACTIONS(2240), 1, + anon_sym_COLON, + STATE(671), 1, sym_string_literal, - STATE(1047), 1, + STATE(1169), 1, sym_expression, - STATE(1937), 1, + STATE(2186), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -63864,43 +73931,43 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(85), 2, + ACTIONS(87), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(95), 2, + ACTIONS(97), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(105), 2, + ACTIONS(107), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(165), 2, + ACTIONS(167), 2, sym_true, sym_false, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(99), 5, + ACTIONS(101), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(101), 5, + ACTIONS(103), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(818), 5, + STATE(944), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(663), 16, + STATE(758), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -63917,225 +73984,505 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [1282] = 3, + [2225] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(2101), 26, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(41), 1, + anon_sym___declspec, + ACTIONS(57), 1, + sym_primitive_type, + ACTIONS(59), 1, + anon_sym_enum, + ACTIONS(61), 1, + anon_sym_struct, + ACTIONS(63), 1, + anon_sym_union, + ACTIONS(1145), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1869), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2008), 1, + sym_identifier, + ACTIONS(2242), 1, + anon_sym_RPAREN, + STATE(799), 1, + sym_alignas_qualifier, + STATE(807), 1, + sym_type_specifier, + STATE(890), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1343), 1, + sym__declaration_specifiers, + ACTIONS(33), 2, + anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(35), 2, + anon_sym___scanf, + anon_sym___printf, + ACTIONS(55), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(1890), 2, + sym_variadic_parameter, + sym_parameter_declaration, + ACTIONS(37), 4, + anon_sym___read_mostly, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + ACTIONS(49), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(873), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(805), 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(53), 9, + anon_sym___extension__, + 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(51), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [2335] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(41), 1, + anon_sym___declspec, + ACTIONS(47), 1, + anon_sym_LBRACE, + ACTIONS(57), 1, + sym_primitive_type, + ACTIONS(59), 1, + anon_sym_enum, + ACTIONS(61), 1, + anon_sym_struct, + ACTIONS(63), 1, + anon_sym_union, + ACTIONS(1145), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2008), 1, + sym_identifier, + STATE(380), 1, + sym_compound_statement, + STATE(799), 1, + sym_alignas_qualifier, + STATE(807), 1, + sym_type_specifier, + STATE(890), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1248), 1, + sym__declaration_specifiers, + ACTIONS(33), 2, + anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(35), 2, + anon_sym___scanf, + anon_sym___printf, + ACTIONS(55), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(605), 2, + sym_declaration, + aux_sym__old_style_function_definition_repeat1, + ACTIONS(37), 4, + anon_sym___read_mostly, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + ACTIONS(49), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(873), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(805), 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(53), 9, + anon_sym___extension__, + 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(51), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [2445] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(41), 1, + anon_sym___declspec, + ACTIONS(57), 1, + sym_primitive_type, + ACTIONS(59), 1, + anon_sym_enum, + ACTIONS(61), 1, + anon_sym_struct, + ACTIONS(63), 1, + anon_sym_union, + ACTIONS(137), 1, + anon_sym_LBRACE, + ACTIONS(1145), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2008), 1, + sym_identifier, + STATE(131), 1, + sym_compound_statement, + STATE(799), 1, + sym_alignas_qualifier, + STATE(807), 1, + sym_type_specifier, + STATE(890), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1248), 1, + sym__declaration_specifiers, + ACTIONS(33), 2, + anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(35), 2, + anon_sym___scanf, + anon_sym___printf, + ACTIONS(55), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(556), 2, + sym_declaration, + aux_sym__old_style_function_definition_repeat1, + ACTIONS(37), 4, + anon_sym___read_mostly, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + ACTIONS(49), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(873), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(805), 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(53), 9, + anon_sym___extension__, + 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(51), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [2555] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(41), 1, + anon_sym___declspec, + ACTIONS(57), 1, + sym_primitive_type, + ACTIONS(59), 1, + anon_sym_enum, + ACTIONS(61), 1, + anon_sym_struct, + ACTIONS(63), 1, + anon_sym_union, + ACTIONS(137), 1, + anon_sym_LBRACE, + ACTIONS(1145), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2008), 1, + sym_identifier, + STATE(158), 1, + sym_compound_statement, + STATE(799), 1, + sym_alignas_qualifier, + STATE(807), 1, + sym_type_specifier, + STATE(890), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1248), 1, + sym__declaration_specifiers, + ACTIONS(33), 2, anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(35), 2, anon_sym___scanf, anon_sym___printf, + ACTIONS(55), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(613), 2, + sym_declaration, + aux_sym__old_style_function_definition_repeat1, + ACTIONS(37), 4, anon_sym___read_mostly, - anon_sym___must_hold, anon_sym___ro_after_init, - anon_sym___init, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_DOT, - sym_identifier, - ACTIONS(2103), 34, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [1350] = 23, + anon_sym___noreturn, + anon_sym___cold, + ACTIONS(49), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(873), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(805), 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(53), 9, + anon_sym___extension__, + 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(51), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [2665] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(87), 1, - anon_sym_sizeof, - ACTIONS(91), 1, - anon_sym_offsetof, - ACTIONS(93), 1, - anon_sym__Generic, - ACTIONS(163), 1, - sym_number_literal, - ACTIONS(1722), 1, + ACTIONS(41), 1, + anon_sym___declspec, + ACTIONS(47), 1, + anon_sym_LBRACE, + ACTIONS(57), 1, + sym_primitive_type, + ACTIONS(59), 1, + anon_sym_enum, + ACTIONS(61), 1, + anon_sym_struct, + ACTIONS(63), 1, + anon_sym_union, + ACTIONS(1145), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2008), 1, sym_identifier, - ACTIONS(2105), 1, - anon_sym_RPAREN, - STATE(659), 1, - sym_string_literal, - STATE(1042), 1, - sym_expression, - STATE(1894), 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(85), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(95), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(105), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(165), 2, - sym_true, - sym_false, - ACTIONS(89), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(99), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(101), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(818), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(663), 16, - sym__string, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_alignof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_gnu_asm_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [1458] = 23, + STATE(375), 1, + sym_compound_statement, + STATE(799), 1, + sym_alignas_qualifier, + STATE(807), 1, + sym_type_specifier, + STATE(890), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1248), 1, + sym__declaration_specifiers, + ACTIONS(33), 2, + anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(35), 2, + anon_sym___scanf, + anon_sym___printf, + ACTIONS(55), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(602), 2, + sym_declaration, + aux_sym__old_style_function_definition_repeat1, + ACTIONS(37), 4, + anon_sym___read_mostly, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + ACTIONS(49), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(873), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(805), 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(53), 9, + anon_sym___extension__, + 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(51), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [2775] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_offsetof, ACTIONS(93), 1, + anon_sym_offsetof, + ACTIONS(95), 1, anon_sym__Generic, - ACTIONS(163), 1, + ACTIONS(165), 1, sym_number_literal, - ACTIONS(1397), 1, + ACTIONS(1429), 1, sym_identifier, - ACTIONS(1407), 1, + ACTIONS(1439), 1, anon_sym_LBRACE, - ACTIONS(1409), 1, + ACTIONS(1779), 1, anon_sym_sizeof, - ACTIONS(2107), 1, + ACTIONS(2244), 1, anon_sym_LPAREN2, - STATE(659), 1, + STATE(671), 1, sym_string_literal, - STATE(661), 1, + STATE(760), 1, sym_initializer_list, - STATE(683), 1, + STATE(1057), 1, sym_expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(95), 2, + ACTIONS(97), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(105), 2, + ACTIONS(107), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(165), 2, + ACTIONS(167), 2, sym_true, sym_false, - ACTIONS(1401), 2, + ACTIONS(1775), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1403), 2, + ACTIONS(1777), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2109), 2, + ACTIONS(2018), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2246), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(99), 5, + ACTIONS(101), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(101), 5, + ACTIONS(103), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(670), 5, + STATE(762), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(663), 16, + STATE(758), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -64152,283 +74499,372 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [1566] = 23, + [2883] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(87), 1, - anon_sym_sizeof, - ACTIONS(91), 1, - anon_sym_offsetof, - ACTIONS(93), 1, - anon_sym__Generic, - ACTIONS(163), 1, - sym_number_literal, - ACTIONS(1722), 1, + ACTIONS(41), 1, + anon_sym___declspec, + ACTIONS(57), 1, + sym_primitive_type, + ACTIONS(59), 1, + anon_sym_enum, + ACTIONS(61), 1, + anon_sym_struct, + ACTIONS(63), 1, + anon_sym_union, + ACTIONS(137), 1, + anon_sym_LBRACE, + ACTIONS(1145), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2008), 1, sym_identifier, - ACTIONS(2111), 1, - anon_sym_COLON, - STATE(659), 1, - sym_string_literal, - STATE(1063), 1, - sym_expression, - STATE(1995), 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(85), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(95), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(105), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(165), 2, - sym_true, - sym_false, - ACTIONS(89), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(99), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(101), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(818), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(663), 16, - sym__string, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_alignof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_gnu_asm_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [1674] = 23, + STATE(153), 1, + sym_compound_statement, + STATE(799), 1, + sym_alignas_qualifier, + STATE(807), 1, + sym_type_specifier, + STATE(890), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1248), 1, + sym__declaration_specifiers, + ACTIONS(33), 2, + anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(35), 2, + anon_sym___scanf, + anon_sym___printf, + ACTIONS(55), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(613), 2, + sym_declaration, + aux_sym__old_style_function_definition_repeat1, + ACTIONS(37), 4, + anon_sym___read_mostly, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + ACTIONS(49), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(873), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(805), 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(53), 9, + anon_sym___extension__, + 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(51), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [2993] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(87), 1, - anon_sym_sizeof, - ACTIONS(91), 1, - anon_sym_offsetof, - ACTIONS(93), 1, - anon_sym__Generic, - ACTIONS(163), 1, - sym_number_literal, - ACTIONS(1722), 1, + ACTIONS(41), 1, + anon_sym___declspec, + ACTIONS(57), 1, + sym_primitive_type, + ACTIONS(59), 1, + anon_sym_enum, + ACTIONS(61), 1, + anon_sym_struct, + ACTIONS(63), 1, + anon_sym_union, + ACTIONS(137), 1, + anon_sym_LBRACE, + ACTIONS(1145), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2008), 1, sym_identifier, - ACTIONS(2113), 1, - anon_sym_COLON, - STATE(659), 1, - sym_string_literal, - STATE(1059), 1, - sym_expression, - STATE(1852), 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(85), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(95), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(105), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(165), 2, - sym_true, - sym_false, - ACTIONS(89), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(99), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(101), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(818), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(663), 16, - sym__string, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_alignof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_gnu_asm_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [1782] = 23, + STATE(122), 1, + sym_compound_statement, + STATE(799), 1, + sym_alignas_qualifier, + STATE(807), 1, + sym_type_specifier, + STATE(890), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1248), 1, + sym__declaration_specifiers, + ACTIONS(33), 2, + anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(35), 2, + anon_sym___scanf, + anon_sym___printf, + ACTIONS(55), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(613), 2, + sym_declaration, + aux_sym__old_style_function_definition_repeat1, + ACTIONS(37), 4, + anon_sym___read_mostly, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + ACTIONS(49), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(873), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(805), 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(53), 9, + anon_sym___extension__, + 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(51), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [3103] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(41), 1, + anon_sym___declspec, + ACTIONS(47), 1, + anon_sym_LBRACE, + ACTIONS(57), 1, + sym_primitive_type, + ACTIONS(59), 1, + anon_sym_enum, + ACTIONS(61), 1, + anon_sym_struct, + ACTIONS(63), 1, + anon_sym_union, + ACTIONS(1145), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2008), 1, + sym_identifier, + STATE(394), 1, + sym_compound_statement, + STATE(799), 1, + sym_alignas_qualifier, + STATE(807), 1, + sym_type_specifier, + STATE(890), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1248), 1, + sym__declaration_specifiers, + ACTIONS(33), 2, + anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(35), 2, + anon_sym___scanf, + anon_sym___printf, + ACTIONS(55), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(559), 2, + sym_declaration, + aux_sym__old_style_function_definition_repeat1, + ACTIONS(37), 4, + anon_sym___read_mostly, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + ACTIONS(49), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(873), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(805), 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(53), 9, + anon_sym___extension__, + 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(51), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [3213] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(87), 1, - anon_sym_sizeof, - ACTIONS(91), 1, - anon_sym_offsetof, - ACTIONS(93), 1, - anon_sym__Generic, - ACTIONS(163), 1, - sym_number_literal, - ACTIONS(1722), 1, + ACTIONS(41), 1, + anon_sym___declspec, + ACTIONS(47), 1, + anon_sym_LBRACE, + ACTIONS(57), 1, + sym_primitive_type, + ACTIONS(59), 1, + anon_sym_enum, + ACTIONS(61), 1, + anon_sym_struct, + ACTIONS(63), 1, + anon_sym_union, + ACTIONS(1145), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2008), 1, sym_identifier, - ACTIONS(2115), 1, - anon_sym_SEMI, - STATE(659), 1, - sym_string_literal, - STATE(1067), 1, - sym_expression, - STATE(2020), 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(85), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(95), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(105), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(165), 2, - sym_true, - sym_false, - ACTIONS(89), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(99), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(101), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(818), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(663), 16, - sym__string, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_alignof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_gnu_asm_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [1890] = 23, + STATE(378), 1, + sym_compound_statement, + STATE(799), 1, + sym_alignas_qualifier, + STATE(807), 1, + sym_type_specifier, + STATE(890), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1248), 1, + sym__declaration_specifiers, + ACTIONS(33), 2, + anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(35), 2, + anon_sym___scanf, + anon_sym___printf, + ACTIONS(55), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(613), 2, + sym_declaration, + aux_sym__old_style_function_definition_repeat1, + ACTIONS(37), 4, + anon_sym___read_mostly, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + ACTIONS(49), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(873), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(805), 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(53), 9, + anon_sym___extension__, + 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(51), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [3323] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(87), 1, + ACTIONS(89), 1, anon_sym_sizeof, - ACTIONS(91), 1, - anon_sym_offsetof, ACTIONS(93), 1, + anon_sym_offsetof, + ACTIONS(95), 1, anon_sym__Generic, - ACTIONS(163), 1, + ACTIONS(165), 1, sym_number_literal, - ACTIONS(1722), 1, + ACTIONS(1773), 1, sym_identifier, - ACTIONS(2117), 1, - anon_sym_SEMI, - STATE(659), 1, + ACTIONS(2248), 1, + anon_sym_COLON, + STATE(671), 1, sym_string_literal, - STATE(1040), 1, + STATE(1155), 1, sym_expression, - STATE(2014), 1, + STATE(2166), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -64439,43 +74875,43 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(85), 2, + ACTIONS(87), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(95), 2, + ACTIONS(97), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(105), 2, + ACTIONS(107), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(165), 2, + ACTIONS(167), 2, sym_true, sym_false, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(99), 5, + ACTIONS(101), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(101), 5, + ACTIONS(103), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(818), 5, + STATE(944), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(663), 16, + STATE(758), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -64492,165 +74928,150 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [1998] = 3, + [3431] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(2119), 26, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym___scanf, - anon_sym___printf, - anon_sym___read_mostly, - anon_sym___must_hold, - anon_sym___ro_after_init, - anon_sym___init, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_DOT, - sym_identifier, - ACTIONS(2121), 34, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, + ACTIONS(41), 1, + anon_sym___declspec, + ACTIONS(57), 1, + sym_primitive_type, + ACTIONS(59), 1, + anon_sym_enum, + ACTIONS(61), 1, + anon_sym_struct, + ACTIONS(63), 1, + anon_sym_union, + ACTIONS(137), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [2066] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2123), 26, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(1145), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2008), 1, + sym_identifier, + STATE(123), 1, + sym_compound_statement, + STATE(799), 1, + sym_alignas_qualifier, + STATE(807), 1, + sym_type_specifier, + STATE(890), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1248), 1, + sym__declaration_specifiers, + ACTIONS(33), 2, anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(35), 2, anon_sym___scanf, anon_sym___printf, + ACTIONS(55), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(613), 2, + sym_declaration, + aux_sym__old_style_function_definition_repeat1, + ACTIONS(37), 4, anon_sym___read_mostly, - anon_sym___must_hold, anon_sym___ro_after_init, - anon_sym___init, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_DOT, - sym_identifier, - ACTIONS(2125), 34, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [2134] = 13, + anon_sym___noreturn, + anon_sym___cold, + ACTIONS(49), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(873), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(805), 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(53), 9, + anon_sym___extension__, + 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(51), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [3541] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(2146), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2149), 1, + ACTIONS(41), 1, anon_sym___declspec, - STATE(703), 1, + ACTIONS(57), 1, + sym_primitive_type, + ACTIONS(59), 1, + anon_sym_enum, + ACTIONS(61), 1, + anon_sym_struct, + ACTIONS(63), 1, + anon_sym_union, + ACTIONS(137), 1, + anon_sym_LBRACE, + ACTIONS(1145), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2008), 1, + sym_identifier, + STATE(139), 1, + sym_compound_statement, + STATE(799), 1, sym_alignas_qualifier, - ACTIONS(2137), 2, + STATE(807), 1, + sym_type_specifier, + STATE(890), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1248), 1, + sym__declaration_specifiers, + ACTIONS(33), 2, anon_sym___attribute__, anon_sym___must_hold, - ACTIONS(2140), 2, + ACTIONS(35), 2, anon_sym___scanf, anon_sym___printf, - ACTIONS(2152), 2, + ACTIONS(55), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(2143), 3, + STATE(553), 2, + sym_declaration, + aux_sym__old_style_function_definition_repeat1, + ACTIONS(37), 4, anon_sym___read_mostly, anon_sym___ro_after_init, - anon_sym___init, - ACTIONS(2129), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - STATE(479), 7, + anon_sym___noreturn, + anon_sym___cold, + ACTIONS(49), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(873), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(805), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -64658,7 +75079,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(2131), 9, + ACTIONS(53), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -64668,7 +75089,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - ACTIONS(2134), 10, + ACTIONS(51), 10, anon_sym_extern, anon_sym_static, anon_sym_auto, @@ -64679,131 +75100,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - ACTIONS(2127), 17, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [2222] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(91), 1, - anon_sym_offsetof, - ACTIONS(93), 1, - anon_sym__Generic, - ACTIONS(163), 1, - sym_number_literal, - ACTIONS(1407), 1, - anon_sym_LBRACE, - ACTIONS(1801), 1, - sym_identifier, - ACTIONS(1807), 1, - anon_sym_sizeof, - ACTIONS(1861), 1, - anon_sym_LPAREN2, - STATE(659), 1, - sym_string_literal, - STATE(661), 1, - sym_initializer_list, - STATE(917), 1, - sym_expression, - ACTIONS(95), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(105), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(165), 2, - sym_true, - sym_false, - ACTIONS(1803), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1805), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1865), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1875), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(89), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(99), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(101), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(943), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(663), 16, - sym__string, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_alignof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_gnu_asm_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [2330] = 23, + [3651] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(87), 1, + ACTIONS(89), 1, anon_sym_sizeof, - ACTIONS(91), 1, - anon_sym_offsetof, ACTIONS(93), 1, + anon_sym_offsetof, + ACTIONS(95), 1, anon_sym__Generic, - ACTIONS(163), 1, + ACTIONS(165), 1, sym_number_literal, - ACTIONS(1722), 1, + ACTIONS(1773), 1, sym_identifier, - ACTIONS(2155), 1, + ACTIONS(2250), 1, anon_sym_COLON, - STATE(659), 1, + STATE(671), 1, sym_string_literal, - STATE(1045), 1, + STATE(1163), 1, sym_expression, - STATE(1936), 1, + STATE(2222), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -64814,43 +75132,43 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(85), 2, + ACTIONS(87), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(95), 2, + ACTIONS(97), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(105), 2, + ACTIONS(107), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(165), 2, + ACTIONS(167), 2, sym_true, sym_false, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(99), 5, + ACTIONS(101), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(101), 5, + ACTIONS(103), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(818), 5, + STATE(944), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(663), 16, + STATE(758), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -64867,28 +75185,28 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [2438] = 23, + [3759] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(87), 1, + ACTIONS(89), 1, anon_sym_sizeof, - ACTIONS(91), 1, - anon_sym_offsetof, ACTIONS(93), 1, + anon_sym_offsetof, + ACTIONS(95), 1, anon_sym__Generic, - ACTIONS(163), 1, + ACTIONS(165), 1, sym_number_literal, - ACTIONS(1722), 1, + ACTIONS(1773), 1, sym_identifier, - ACTIONS(2157), 1, - anon_sym_COLON, - STATE(659), 1, + ACTIONS(2252), 1, + anon_sym_RPAREN, + STATE(671), 1, sym_string_literal, - STATE(1049), 1, + STATE(1190), 1, sym_expression, - STATE(1959), 1, + STATE(2056), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -64899,43 +75217,43 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(85), 2, + ACTIONS(87), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(95), 2, + ACTIONS(97), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(105), 2, + ACTIONS(107), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(165), 2, + ACTIONS(167), 2, sym_true, sym_false, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(99), 5, + ACTIONS(101), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(101), 5, + ACTIONS(103), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(818), 5, + STATE(944), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(663), 16, + STATE(758), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -64952,28 +75270,28 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [2546] = 23, + [3867] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(87), 1, + ACTIONS(89), 1, anon_sym_sizeof, - ACTIONS(91), 1, - anon_sym_offsetof, ACTIONS(93), 1, + anon_sym_offsetof, + ACTIONS(95), 1, anon_sym__Generic, - ACTIONS(163), 1, + ACTIONS(165), 1, sym_number_literal, - ACTIONS(1722), 1, + ACTIONS(1773), 1, sym_identifier, - ACTIONS(2159), 1, - anon_sym_SEMI, - STATE(659), 1, + ACTIONS(2254), 1, + anon_sym_RPAREN, + STATE(671), 1, sym_string_literal, - STATE(1058), 1, + STATE(1191), 1, sym_expression, - STATE(1862), 1, + STATE(2055), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -64984,43 +75302,43 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(85), 2, + ACTIONS(87), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(95), 2, + ACTIONS(97), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(105), 2, + ACTIONS(107), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(165), 2, + ACTIONS(167), 2, sym_true, sym_false, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(99), 5, + ACTIONS(101), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(101), 5, + ACTIONS(103), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(818), 5, + STATE(944), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(663), 16, + STATE(758), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -65037,28 +75355,28 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [2654] = 23, + [3975] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(87), 1, + ACTIONS(89), 1, anon_sym_sizeof, - ACTIONS(91), 1, - anon_sym_offsetof, ACTIONS(93), 1, + anon_sym_offsetof, + ACTIONS(95), 1, anon_sym__Generic, - ACTIONS(163), 1, + ACTIONS(165), 1, sym_number_literal, - ACTIONS(1722), 1, + ACTIONS(1773), 1, sym_identifier, - ACTIONS(2161), 1, - anon_sym_RPAREN, - STATE(659), 1, + ACTIONS(2256), 1, + anon_sym_SEMI, + STATE(671), 1, sym_string_literal, - STATE(1052), 1, + STATE(1192), 1, sym_expression, - STATE(1961), 1, + STATE(2049), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -65069,43 +75387,43 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(85), 2, + ACTIONS(87), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(95), 2, + ACTIONS(97), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(105), 2, + ACTIONS(107), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(165), 2, + ACTIONS(167), 2, sym_true, sym_false, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(99), 5, + ACTIONS(101), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(101), 5, + ACTIONS(103), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(818), 5, + STATE(944), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(663), 16, + STATE(758), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -65122,75 +75440,161 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [2762] = 23, + [4083] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(41), 1, + anon_sym___declspec, + ACTIONS(57), 1, + sym_primitive_type, + ACTIONS(59), 1, + anon_sym_enum, + ACTIONS(61), 1, + anon_sym_struct, + ACTIONS(63), 1, + anon_sym_union, + ACTIONS(137), 1, + anon_sym_LBRACE, + ACTIONS(1145), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2008), 1, + sym_identifier, + STATE(138), 1, + sym_compound_statement, + STATE(799), 1, + sym_alignas_qualifier, + STATE(807), 1, + sym_type_specifier, + STATE(890), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1248), 1, + sym__declaration_specifiers, + ACTIONS(33), 2, + anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(35), 2, + anon_sym___scanf, + anon_sym___printf, + ACTIONS(55), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(561), 2, + sym_declaration, + aux_sym__old_style_function_definition_repeat1, + ACTIONS(37), 4, + anon_sym___read_mostly, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + ACTIONS(49), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(873), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(805), 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(53), 9, + anon_sym___extension__, + 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(51), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [4193] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_offsetof, ACTIONS(93), 1, + anon_sym_offsetof, + ACTIONS(95), 1, anon_sym__Generic, - ACTIONS(163), 1, + ACTIONS(165), 1, sym_number_literal, - ACTIONS(1397), 1, - sym_identifier, - ACTIONS(1407), 1, + ACTIONS(1439), 1, anon_sym_LBRACE, - ACTIONS(1429), 1, + ACTIONS(2000), 1, + sym_identifier, + ACTIONS(2006), 1, anon_sym_sizeof, - ACTIONS(2163), 1, + ACTIONS(2014), 1, anon_sym_LPAREN2, - STATE(661), 1, + STATE(671), 1, + sym_string_literal, + STATE(760), 1, sym_initializer_list, - STATE(683), 1, + STATE(1057), 1, sym_expression, - STATE(799), 1, - sym_string_literal, - ACTIONS(95), 2, + ACTIONS(97), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(105), 2, + ACTIONS(107), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(165), 2, + ACTIONS(167), 2, sym_true, sym_false, - ACTIONS(1425), 2, + ACTIONS(2002), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1427), 2, + ACTIONS(2004), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2165), 2, + ACTIONS(2018), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2167), 2, + ACTIONS(2028), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(99), 5, + ACTIONS(101), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(101), 5, + ACTIONS(103), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(670), 5, + STATE(1066), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(663), 16, + STATE(758), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -65207,167 +75611,74 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [2870] = 3, + [4301] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(2169), 26, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym___scanf, - anon_sym___printf, - anon_sym___read_mostly, - anon_sym___must_hold, - anon_sym___ro_after_init, - anon_sym___init, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_DOT, - sym_identifier, - ACTIONS(2171), 34, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, + ACTIONS(41), 1, + anon_sym___declspec, + ACTIONS(57), 1, + sym_primitive_type, + ACTIONS(59), 1, + anon_sym_enum, + ACTIONS(61), 1, + anon_sym_struct, + ACTIONS(63), 1, + anon_sym_union, + ACTIONS(391), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [2938] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2173), 26, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(1145), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2008), 1, + sym_identifier, + STATE(363), 1, + sym_compound_statement, + STATE(799), 1, + sym_alignas_qualifier, + STATE(807), 1, + sym_type_specifier, + STATE(890), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1248), 1, + sym__declaration_specifiers, + ACTIONS(33), 2, anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(35), 2, anon_sym___scanf, anon_sym___printf, + ACTIONS(55), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(613), 2, + sym_declaration, + aux_sym__old_style_function_definition_repeat1, + ACTIONS(37), 4, anon_sym___read_mostly, - anon_sym___must_hold, anon_sym___ro_after_init, - anon_sym___init, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_DOT, - sym_identifier, - ACTIONS(2175), 34, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [3006] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1732), 1, - anon_sym_const, - ACTIONS(1736), 1, - anon_sym_LPAREN2, - ACTIONS(1742), 1, - anon_sym_STAR, - ACTIONS(1749), 1, - anon_sym_EQ, - STATE(456), 1, - sym_string_literal, - STATE(781), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(1755), 2, - anon_sym_RPAREN, - anon_sym_LBRACK, - ACTIONS(2177), 4, + anon_sym___noreturn, + anon_sym___cold, + ACTIONS(49), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(101), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1745), 10, + STATE(873), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(805), 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(53), 9, anon_sym___extension__, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -65375,178 +75686,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(1753), 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(1740), 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(1734), 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, - [3096] = 3, + ACTIONS(51), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [4411] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(2179), 26, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym___scanf, - anon_sym___printf, - anon_sym___read_mostly, - anon_sym___must_hold, - anon_sym___ro_after_init, - anon_sym___init, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_DOT, - sym_identifier, - ACTIONS(2181), 34, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + 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_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [3164] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(91), 1, - anon_sym_offsetof, + ACTIONS(89), 1, + anon_sym_sizeof, ACTIONS(93), 1, + anon_sym_offsetof, + ACTIONS(95), 1, anon_sym__Generic, - ACTIONS(163), 1, + ACTIONS(165), 1, sym_number_literal, - ACTIONS(1407), 1, - anon_sym_LBRACE, - ACTIONS(1785), 1, - anon_sym_sizeof, - ACTIONS(2183), 1, + ACTIONS(1773), 1, sym_identifier, - ACTIONS(2185), 1, - anon_sym_LPAREN2, - STATE(661), 1, - sym_initializer_list, - STATE(683), 1, - sym_expression, - STATE(799), 1, + ACTIONS(2258), 1, + anon_sym_COLON, + STATE(671), 1, sym_string_literal, - ACTIONS(95), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(105), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(165), 2, - sym_true, - sym_false, - ACTIONS(1781), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1783), 2, + STATE(1178), 1, + sym_expression, + STATE(2162), 1, + sym_comma_expression, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2165), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2187), 2, + ACTIONS(87), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(89), 5, + ACTIONS(97), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(107), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(167), 2, + sym_true, + sym_false, + ACTIONS(91), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(99), 5, + ACTIONS(101), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(101), 5, + ACTIONS(103), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(890), 5, + STATE(944), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(663), 16, + STATE(758), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -65563,159 +75782,115 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [3272] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2189), 26, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym___scanf, - anon_sym___printf, - anon_sym___read_mostly, - anon_sym___must_hold, - anon_sym___ro_after_init, - anon_sym___init, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_DOT, - sym_identifier, - ACTIONS(2191), 34, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [3340] = 3, + [4519] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(2193), 26, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym___scanf, - anon_sym___printf, - anon_sym___read_mostly, - anon_sym___must_hold, - anon_sym___ro_after_init, - anon_sym___init, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_DOT, - sym_identifier, - ACTIONS(2195), 34, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [3408] = 23, + ACTIONS(41), 1, + anon_sym___declspec, + ACTIONS(57), 1, + sym_primitive_type, + ACTIONS(59), 1, + anon_sym_enum, + ACTIONS(61), 1, + anon_sym_struct, + ACTIONS(63), 1, + anon_sym_union, + ACTIONS(1145), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1869), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1871), 1, + anon_sym_RPAREN, + ACTIONS(2008), 1, + sym_identifier, + STATE(799), 1, + sym_alignas_qualifier, + STATE(807), 1, + sym_type_specifier, + STATE(890), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1343), 1, + sym__declaration_specifiers, + ACTIONS(33), 2, + anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(35), 2, + anon_sym___scanf, + anon_sym___printf, + ACTIONS(55), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(1832), 2, + sym_variadic_parameter, + sym_parameter_declaration, + ACTIONS(37), 4, + anon_sym___read_mostly, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + ACTIONS(49), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(873), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(805), 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(53), 9, + anon_sym___extension__, + 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(51), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [4629] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(87), 1, + ACTIONS(89), 1, anon_sym_sizeof, - ACTIONS(91), 1, - anon_sym_offsetof, ACTIONS(93), 1, + anon_sym_offsetof, + ACTIONS(95), 1, anon_sym__Generic, - ACTIONS(163), 1, + ACTIONS(165), 1, sym_number_literal, - ACTIONS(1407), 1, - anon_sym_LBRACE, - ACTIONS(1722), 1, + ACTIONS(1773), 1, sym_identifier, - STATE(659), 1, + ACTIONS(2260), 1, + anon_sym_RPAREN, + STATE(671), 1, sym_string_literal, - STATE(1041), 1, + STATE(1153), 1, sym_expression, - STATE(1745), 1, - sym_initializer_list, + STATE(2315), 1, + sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -65725,43 +75900,128 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(85), 2, + ACTIONS(87), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(95), 2, + ACTIONS(97), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(105), 2, + ACTIONS(107), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(165), 2, + ACTIONS(167), 2, sym_true, sym_false, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(99), 5, + ACTIONS(101), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, + ACTIONS(103), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(944), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(758), 16, + sym__string, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [4737] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(93), 1, + anon_sym_offsetof, + ACTIONS(95), 1, + anon_sym__Generic, + ACTIONS(165), 1, + sym_number_literal, + ACTIONS(1429), 1, + sym_identifier, + ACTIONS(1439), 1, + anon_sym_LBRACE, + ACTIONS(1441), 1, + anon_sym_sizeof, + ACTIONS(2262), 1, + anon_sym_LPAREN2, + STATE(671), 1, + sym_string_literal, + STATE(760), 1, + sym_initializer_list, + STATE(771), 1, + sym_expression, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(97), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(107), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(167), 2, + sym_true, + sym_false, + ACTIONS(1433), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1435), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2264), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(91), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, ACTIONS(101), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(103), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(818), 5, + STATE(762), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(663), 16, + STATE(758), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -65778,28 +76038,114 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [3516] = 23, + [4845] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(41), 1, + anon_sym___declspec, + ACTIONS(57), 1, + sym_primitive_type, + ACTIONS(59), 1, + anon_sym_enum, + ACTIONS(61), 1, + anon_sym_struct, + ACTIONS(63), 1, + anon_sym_union, + ACTIONS(137), 1, + anon_sym_LBRACE, + ACTIONS(1145), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2008), 1, + sym_identifier, + STATE(150), 1, + sym_compound_statement, + STATE(799), 1, + sym_alignas_qualifier, + STATE(807), 1, + sym_type_specifier, + STATE(890), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1248), 1, + sym__declaration_specifiers, + ACTIONS(33), 2, + anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(35), 2, + anon_sym___scanf, + anon_sym___printf, + ACTIONS(55), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(557), 2, + sym_declaration, + aux_sym__old_style_function_definition_repeat1, + ACTIONS(37), 4, + anon_sym___read_mostly, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + ACTIONS(49), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(873), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(805), 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(53), 9, + anon_sym___extension__, + 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(51), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [4955] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(87), 1, + ACTIONS(89), 1, anon_sym_sizeof, - ACTIONS(91), 1, - anon_sym_offsetof, ACTIONS(93), 1, + anon_sym_offsetof, + ACTIONS(95), 1, anon_sym__Generic, - ACTIONS(163), 1, + ACTIONS(165), 1, sym_number_literal, - ACTIONS(1722), 1, + ACTIONS(1773), 1, sym_identifier, - ACTIONS(2197), 1, + ACTIONS(2266), 1, anon_sym_SEMI, - STATE(659), 1, + STATE(671), 1, sym_string_literal, - STATE(1043), 1, + STATE(1177), 1, sym_expression, - STATE(1957), 1, + STATE(2170), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -65810,43 +76156,43 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(85), 2, + ACTIONS(87), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(95), 2, + ACTIONS(97), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(105), 2, + ACTIONS(107), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(165), 2, + ACTIONS(167), 2, sym_true, sym_false, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(99), 5, + ACTIONS(101), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(101), 5, + ACTIONS(103), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(818), 5, + STATE(944), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(663), 16, + STATE(758), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -65863,28 +76209,115 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [3624] = 23, + [5063] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(41), 1, + anon_sym___declspec, + ACTIONS(57), 1, + sym_primitive_type, + ACTIONS(59), 1, + anon_sym_enum, + ACTIONS(61), 1, + anon_sym_struct, + ACTIONS(63), 1, + anon_sym_union, + ACTIONS(1145), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1869), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2236), 1, + sym_identifier, + ACTIONS(2268), 1, + anon_sym_RPAREN, + STATE(799), 1, + sym_alignas_qualifier, + STATE(807), 1, + sym_type_specifier, + STATE(890), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1343), 1, + sym__declaration_specifiers, + STATE(1726), 1, + sym_variadic_parameter, + STATE(1832), 1, + sym_parameter_declaration, + ACTIONS(33), 2, + anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(35), 2, + anon_sym___scanf, + anon_sym___printf, + ACTIONS(55), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(37), 4, + anon_sym___read_mostly, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + ACTIONS(49), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(873), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(805), 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(53), 9, + anon_sym___extension__, + 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(51), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [5175] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(87), 1, + ACTIONS(89), 1, anon_sym_sizeof, - ACTIONS(91), 1, - anon_sym_offsetof, ACTIONS(93), 1, + anon_sym_offsetof, + ACTIONS(95), 1, anon_sym__Generic, - ACTIONS(163), 1, + ACTIONS(165), 1, sym_number_literal, - ACTIONS(1722), 1, + ACTIONS(1773), 1, sym_identifier, - ACTIONS(2199), 1, + ACTIONS(2270), 1, anon_sym_SEMI, - STATE(659), 1, + STATE(671), 1, sym_string_literal, - STATE(1048), 1, + STATE(1156), 1, sym_expression, - STATE(1979), 1, + STATE(2221), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -65895,43 +76328,43 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(85), 2, + ACTIONS(87), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(95), 2, + ACTIONS(97), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(105), 2, + ACTIONS(107), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(165), 2, + ACTIONS(167), 2, sym_true, sym_false, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(99), 5, + ACTIONS(101), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(101), 5, + ACTIONS(103), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(818), 5, + STATE(944), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(663), 16, + STATE(758), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -65948,29 +76381,373 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [3732] = 23, + [5283] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(41), 1, + anon_sym___declspec, + ACTIONS(57), 1, + sym_primitive_type, + ACTIONS(59), 1, + anon_sym_enum, + ACTIONS(61), 1, + anon_sym_struct, + ACTIONS(63), 1, + anon_sym_union, + ACTIONS(391), 1, + anon_sym_LBRACE, + ACTIONS(1145), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2008), 1, + sym_identifier, + STATE(351), 1, + sym_compound_statement, + STATE(799), 1, + sym_alignas_qualifier, + STATE(807), 1, + sym_type_specifier, + STATE(890), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1248), 1, + sym__declaration_specifiers, + ACTIONS(33), 2, + anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(35), 2, + anon_sym___scanf, + anon_sym___printf, + ACTIONS(55), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(569), 2, + sym_declaration, + aux_sym__old_style_function_definition_repeat1, + ACTIONS(37), 4, + anon_sym___read_mostly, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + ACTIONS(49), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(873), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(805), 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(53), 9, + anon_sym___extension__, + 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(51), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [5393] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(41), 1, + anon_sym___declspec, + ACTIONS(57), 1, + sym_primitive_type, + ACTIONS(59), 1, + anon_sym_enum, + ACTIONS(61), 1, + anon_sym_struct, + ACTIONS(63), 1, + anon_sym_union, + ACTIONS(391), 1, + anon_sym_LBRACE, + ACTIONS(1145), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2008), 1, + sym_identifier, + STATE(349), 1, + sym_compound_statement, + STATE(799), 1, + sym_alignas_qualifier, + STATE(807), 1, + sym_type_specifier, + STATE(890), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1248), 1, + sym__declaration_specifiers, + ACTIONS(33), 2, + anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(35), 2, + anon_sym___scanf, + anon_sym___printf, + ACTIONS(55), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(613), 2, + sym_declaration, + aux_sym__old_style_function_definition_repeat1, + ACTIONS(37), 4, + anon_sym___read_mostly, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + ACTIONS(49), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(873), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(805), 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(53), 9, + anon_sym___extension__, + 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(51), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [5503] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(41), 1, + anon_sym___declspec, + ACTIONS(57), 1, + sym_primitive_type, + ACTIONS(59), 1, + anon_sym_enum, + ACTIONS(61), 1, + anon_sym_struct, + ACTIONS(63), 1, + anon_sym_union, + ACTIONS(391), 1, + anon_sym_LBRACE, + ACTIONS(1145), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2008), 1, + sym_identifier, + STATE(344), 1, + sym_compound_statement, + STATE(799), 1, + sym_alignas_qualifier, + STATE(807), 1, + sym_type_specifier, + STATE(890), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1248), 1, + sym__declaration_specifiers, + ACTIONS(33), 2, + anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(35), 2, + anon_sym___scanf, + anon_sym___printf, + ACTIONS(55), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(613), 2, + sym_declaration, + aux_sym__old_style_function_definition_repeat1, + ACTIONS(37), 4, + anon_sym___read_mostly, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + ACTIONS(49), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(873), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(805), 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(53), 9, + anon_sym___extension__, + 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(51), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [5613] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(41), 1, + anon_sym___declspec, + ACTIONS(57), 1, + sym_primitive_type, + ACTIONS(59), 1, + anon_sym_enum, + ACTIONS(61), 1, + anon_sym_struct, + ACTIONS(63), 1, + anon_sym_union, + ACTIONS(391), 1, + anon_sym_LBRACE, + ACTIONS(1145), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2008), 1, + sym_identifier, + STATE(362), 1, + sym_compound_statement, + STATE(799), 1, + sym_alignas_qualifier, + STATE(807), 1, + sym_type_specifier, + STATE(890), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1248), 1, + sym__declaration_specifiers, + ACTIONS(33), 2, + anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(35), 2, + anon_sym___scanf, + anon_sym___printf, + ACTIONS(55), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(613), 2, + sym_declaration, + aux_sym__old_style_function_definition_repeat1, + ACTIONS(37), 4, + anon_sym___read_mostly, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + ACTIONS(49), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(873), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(805), 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(53), 9, + anon_sym___extension__, + 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(51), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [5723] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(87), 1, + ACTIONS(89), 1, anon_sym_sizeof, - ACTIONS(91), 1, - anon_sym_offsetof, ACTIONS(93), 1, + anon_sym_offsetof, + ACTIONS(95), 1, anon_sym__Generic, - ACTIONS(163), 1, + ACTIONS(165), 1, sym_number_literal, - ACTIONS(1722), 1, + ACTIONS(1439), 1, + anon_sym_LBRACE, + ACTIONS(1773), 1, sym_identifier, - ACTIONS(2201), 1, - anon_sym_COLON, - STATE(659), 1, + STATE(671), 1, sym_string_literal, - STATE(1036), 1, + STATE(760), 1, + sym_initializer_list, + STATE(771), 1, sym_expression, - STATE(2041), 1, - sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -65980,43 +76757,43 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(85), 2, + ACTIONS(87), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(95), 2, + ACTIONS(97), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(105), 2, + ACTIONS(107), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(165), 2, + ACTIONS(167), 2, sym_true, sym_false, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(99), 5, + ACTIONS(101), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(101), 5, + ACTIONS(103), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(818), 5, + STATE(944), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(663), 16, + STATE(758), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -66033,75 +76810,505 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [3840] = 23, + [5831] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(41), 1, + anon_sym___declspec, + ACTIONS(57), 1, + sym_primitive_type, + ACTIONS(59), 1, + anon_sym_enum, + ACTIONS(61), 1, + anon_sym_struct, + ACTIONS(63), 1, + anon_sym_union, + ACTIONS(455), 1, + anon_sym_LBRACE, + ACTIONS(1145), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2008), 1, + sym_identifier, + STATE(297), 1, + sym_compound_statement, + STATE(799), 1, + sym_alignas_qualifier, + STATE(807), 1, + sym_type_specifier, + STATE(890), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1248), 1, + sym__declaration_specifiers, + ACTIONS(33), 2, + anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(35), 2, + anon_sym___scanf, + anon_sym___printf, + ACTIONS(55), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(613), 2, + sym_declaration, + aux_sym__old_style_function_definition_repeat1, + ACTIONS(37), 4, + anon_sym___read_mostly, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + ACTIONS(49), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(873), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(805), 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(53), 9, + anon_sym___extension__, + 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(51), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [5941] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(41), 1, + anon_sym___declspec, + ACTIONS(57), 1, + sym_primitive_type, + ACTIONS(59), 1, + anon_sym_enum, + ACTIONS(61), 1, + anon_sym_struct, + ACTIONS(63), 1, + anon_sym_union, + ACTIONS(391), 1, + anon_sym_LBRACE, + ACTIONS(1145), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2008), 1, + sym_identifier, + STATE(365), 1, + sym_compound_statement, + STATE(799), 1, + sym_alignas_qualifier, + STATE(807), 1, + sym_type_specifier, + STATE(890), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1248), 1, + sym__declaration_specifiers, + ACTIONS(33), 2, + anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(35), 2, + anon_sym___scanf, + anon_sym___printf, + ACTIONS(55), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(580), 2, + sym_declaration, + aux_sym__old_style_function_definition_repeat1, + ACTIONS(37), 4, + anon_sym___read_mostly, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + ACTIONS(49), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(873), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(805), 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(53), 9, + anon_sym___extension__, + 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(51), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [6051] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(41), 1, + anon_sym___declspec, + ACTIONS(57), 1, + sym_primitive_type, + ACTIONS(59), 1, + anon_sym_enum, + ACTIONS(61), 1, + anon_sym_struct, + ACTIONS(63), 1, + anon_sym_union, + ACTIONS(455), 1, + anon_sym_LBRACE, + ACTIONS(1145), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2008), 1, + sym_identifier, + STATE(294), 1, + sym_compound_statement, + STATE(799), 1, + sym_alignas_qualifier, + STATE(807), 1, + sym_type_specifier, + STATE(890), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1248), 1, + sym__declaration_specifiers, + ACTIONS(33), 2, + anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(35), 2, + anon_sym___scanf, + anon_sym___printf, + ACTIONS(55), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(583), 2, + sym_declaration, + aux_sym__old_style_function_definition_repeat1, + ACTIONS(37), 4, + anon_sym___read_mostly, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + ACTIONS(49), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(873), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(805), 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(53), 9, + anon_sym___extension__, + 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(51), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [6161] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(41), 1, + anon_sym___declspec, + ACTIONS(57), 1, + sym_primitive_type, + ACTIONS(59), 1, + anon_sym_enum, + ACTIONS(61), 1, + anon_sym_struct, + ACTIONS(63), 1, + anon_sym_union, + ACTIONS(391), 1, + anon_sym_LBRACE, + ACTIONS(1145), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2008), 1, + sym_identifier, + STATE(335), 1, + sym_compound_statement, + STATE(799), 1, + sym_alignas_qualifier, + STATE(807), 1, + sym_type_specifier, + STATE(890), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1248), 1, + sym__declaration_specifiers, + ACTIONS(33), 2, + anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(35), 2, + anon_sym___scanf, + anon_sym___printf, + ACTIONS(55), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(579), 2, + sym_declaration, + aux_sym__old_style_function_definition_repeat1, + ACTIONS(37), 4, + anon_sym___read_mostly, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + ACTIONS(49), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(873), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(805), 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(53), 9, + anon_sym___extension__, + 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(51), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [6271] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(41), 1, + anon_sym___declspec, + ACTIONS(57), 1, + sym_primitive_type, + ACTIONS(59), 1, + anon_sym_enum, + ACTIONS(61), 1, + anon_sym_struct, + ACTIONS(63), 1, + anon_sym_union, + ACTIONS(455), 1, + anon_sym_LBRACE, + ACTIONS(1145), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2008), 1, + sym_identifier, + STATE(307), 1, + sym_compound_statement, + STATE(799), 1, + sym_alignas_qualifier, + STATE(807), 1, + sym_type_specifier, + STATE(890), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1248), 1, + sym__declaration_specifiers, + ACTIONS(33), 2, + anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(35), 2, + anon_sym___scanf, + anon_sym___printf, + ACTIONS(55), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(613), 2, + sym_declaration, + aux_sym__old_style_function_definition_repeat1, + ACTIONS(37), 4, + anon_sym___read_mostly, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + ACTIONS(49), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(873), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(805), 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(53), 9, + anon_sym___extension__, + 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(51), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [6381] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(87), 1, - anon_sym_sizeof, - ACTIONS(91), 1, - anon_sym_offsetof, ACTIONS(93), 1, + anon_sym_offsetof, + ACTIONS(95), 1, anon_sym__Generic, - ACTIONS(163), 1, + ACTIONS(165), 1, sym_number_literal, - ACTIONS(1722), 1, + ACTIONS(1439), 1, + anon_sym_LBRACE, + ACTIONS(1948), 1, + anon_sym_sizeof, + ACTIONS(2272), 1, sym_identifier, - ACTIONS(2203), 1, - anon_sym_RPAREN, - STATE(659), 1, - sym_string_literal, - STATE(1035), 1, + ACTIONS(2274), 1, + anon_sym_LPAREN2, + STATE(760), 1, + sym_initializer_list, + STATE(771), 1, sym_expression, - STATE(1956), 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(85), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(95), 2, + STATE(940), 1, + sym_string_literal, + ACTIONS(97), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(105), 2, + ACTIONS(107), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(165), 2, + ACTIONS(167), 2, sym_true, sym_false, - ACTIONS(89), 5, + ACTIONS(1944), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1946), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2276), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2278), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(91), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(99), 5, + ACTIONS(101), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(101), 5, + ACTIONS(103), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(818), 5, + STATE(997), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(663), 16, + STATE(758), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -66118,28 +77325,200 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [3948] = 23, + [6489] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(41), 1, + anon_sym___declspec, + ACTIONS(57), 1, + sym_primitive_type, + ACTIONS(59), 1, + anon_sym_enum, + ACTIONS(61), 1, + anon_sym_struct, + ACTIONS(63), 1, + anon_sym_union, + ACTIONS(455), 1, + anon_sym_LBRACE, + ACTIONS(1145), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2008), 1, + sym_identifier, + STATE(300), 1, + sym_compound_statement, + STATE(799), 1, + sym_alignas_qualifier, + STATE(807), 1, + sym_type_specifier, + STATE(890), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1248), 1, + sym__declaration_specifiers, + ACTIONS(33), 2, + anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(35), 2, + anon_sym___scanf, + anon_sym___printf, + ACTIONS(55), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(613), 2, + sym_declaration, + aux_sym__old_style_function_definition_repeat1, + ACTIONS(37), 4, + anon_sym___read_mostly, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + ACTIONS(49), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(873), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(805), 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(53), 9, + anon_sym___extension__, + 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(51), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [6599] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(41), 1, + anon_sym___declspec, + ACTIONS(57), 1, + sym_primitive_type, + ACTIONS(59), 1, + anon_sym_enum, + ACTIONS(61), 1, + anon_sym_struct, + ACTIONS(63), 1, + anon_sym_union, + ACTIONS(455), 1, + anon_sym_LBRACE, + ACTIONS(1145), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2008), 1, + sym_identifier, + STATE(317), 1, + sym_compound_statement, + STATE(799), 1, + sym_alignas_qualifier, + STATE(807), 1, + sym_type_specifier, + STATE(890), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1248), 1, + sym__declaration_specifiers, + ACTIONS(33), 2, + anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(35), 2, + anon_sym___scanf, + anon_sym___printf, + ACTIONS(55), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(587), 2, + sym_declaration, + aux_sym__old_style_function_definition_repeat1, + ACTIONS(37), 4, + anon_sym___read_mostly, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + ACTIONS(49), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(873), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(805), 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(53), 9, + anon_sym___extension__, + 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(51), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [6709] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(87), 1, + ACTIONS(89), 1, anon_sym_sizeof, - ACTIONS(91), 1, - anon_sym_offsetof, ACTIONS(93), 1, + anon_sym_offsetof, + ACTIONS(95), 1, anon_sym__Generic, - ACTIONS(163), 1, + ACTIONS(165), 1, sym_number_literal, - ACTIONS(1407), 1, + ACTIONS(1439), 1, anon_sym_LBRACE, - ACTIONS(1722), 1, + ACTIONS(1773), 1, sym_identifier, - STATE(659), 1, + STATE(671), 1, sym_string_literal, - STATE(1037), 1, + STATE(1180), 1, sym_expression, - STATE(1736), 1, + STATE(1982), 1, sym_initializer_list, ACTIONS(21), 2, anon_sym_BANG, @@ -66150,43 +77529,43 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(85), 2, + ACTIONS(87), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(95), 2, + ACTIONS(97), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(105), 2, + ACTIONS(107), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(165), 2, + ACTIONS(167), 2, sym_true, sym_false, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(99), 5, + ACTIONS(101), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(101), 5, + ACTIONS(103), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(818), 5, + STATE(944), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(663), 16, + STATE(758), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -66203,29 +77582,29 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [4056] = 23, + [6817] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(87), 1, + ACTIONS(89), 1, anon_sym_sizeof, - ACTIONS(91), 1, - anon_sym_offsetof, ACTIONS(93), 1, + anon_sym_offsetof, + ACTIONS(95), 1, anon_sym__Generic, - ACTIONS(163), 1, + ACTIONS(165), 1, sym_number_literal, - ACTIONS(1722), 1, + ACTIONS(1439), 1, + anon_sym_LBRACE, + ACTIONS(1773), 1, sym_identifier, - ACTIONS(2205), 1, - anon_sym_SEMI, - STATE(659), 1, + STATE(671), 1, sym_string_literal, - STATE(1057), 1, + STATE(1183), 1, sym_expression, - STATE(1796), 1, - sym_comma_expression, + STATE(1964), 1, + sym_initializer_list, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -66235,43 +77614,43 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(85), 2, + ACTIONS(87), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(95), 2, + ACTIONS(97), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(105), 2, + ACTIONS(107), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(165), 2, + ACTIONS(167), 2, sym_true, sym_false, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(99), 5, + ACTIONS(101), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(101), 5, + ACTIONS(103), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(818), 5, + STATE(944), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(663), 16, + STATE(758), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -66288,28 +77667,28 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [4164] = 23, + [6925] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(87), 1, + ACTIONS(89), 1, anon_sym_sizeof, - ACTIONS(91), 1, - anon_sym_offsetof, ACTIONS(93), 1, + anon_sym_offsetof, + ACTIONS(95), 1, anon_sym__Generic, - ACTIONS(163), 1, + ACTIONS(165), 1, sym_number_literal, - ACTIONS(1722), 1, + ACTIONS(1773), 1, sym_identifier, - ACTIONS(2207), 1, - anon_sym_RPAREN, - STATE(659), 1, + ACTIONS(2280), 1, + anon_sym_COLON, + STATE(671), 1, sym_string_literal, - STATE(1068), 1, + STATE(1195), 1, sym_expression, - STATE(1948), 1, + STATE(2288), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -66320,43 +77699,43 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(85), 2, + ACTIONS(87), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(95), 2, + ACTIONS(97), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(105), 2, + ACTIONS(107), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(165), 2, + ACTIONS(167), 2, sym_true, sym_false, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(99), 5, + ACTIONS(101), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(101), 5, + ACTIONS(103), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(818), 5, + STATE(944), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(663), 16, + STATE(758), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -66373,94 +77752,115 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [4272] = 3, + [7033] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(2209), 26, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(41), 1, + anon_sym___declspec, + ACTIONS(57), 1, + sym_primitive_type, + ACTIONS(59), 1, + anon_sym_enum, + ACTIONS(61), 1, + anon_sym_struct, + ACTIONS(63), 1, + anon_sym_union, + ACTIONS(455), 1, + anon_sym_LBRACE, + ACTIONS(1145), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2008), 1, + sym_identifier, + STATE(319), 1, + sym_compound_statement, + STATE(799), 1, + sym_alignas_qualifier, + STATE(807), 1, + sym_type_specifier, + STATE(890), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1248), 1, + sym__declaration_specifiers, + ACTIONS(33), 2, anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(35), 2, anon_sym___scanf, anon_sym___printf, + ACTIONS(55), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(589), 2, + sym_declaration, + aux_sym__old_style_function_definition_repeat1, + ACTIONS(37), 4, anon_sym___read_mostly, - anon_sym___must_hold, anon_sym___ro_after_init, - anon_sym___init, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_DOT, - sym_identifier, - ACTIONS(2211), 34, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [4340] = 23, + anon_sym___noreturn, + anon_sym___cold, + ACTIONS(49), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(873), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(805), 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(53), 9, + anon_sym___extension__, + 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(51), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [7143] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(87), 1, + ACTIONS(89), 1, anon_sym_sizeof, - ACTIONS(91), 1, - anon_sym_offsetof, ACTIONS(93), 1, + anon_sym_offsetof, + ACTIONS(95), 1, anon_sym__Generic, - ACTIONS(163), 1, + ACTIONS(165), 1, sym_number_literal, - ACTIONS(1407), 1, - anon_sym_LBRACE, - ACTIONS(1722), 1, + ACTIONS(1773), 1, sym_identifier, - STATE(659), 1, + ACTIONS(2282), 1, + anon_sym_SEMI, + STATE(671), 1, sym_string_literal, - STATE(1030), 1, + STATE(1173), 1, sym_expression, - STATE(1708), 1, - sym_initializer_list, + STATE(2184), 1, + sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -66470,43 +77870,43 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(85), 2, + ACTIONS(87), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(95), 2, + ACTIONS(97), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(105), 2, + ACTIONS(107), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(165), 2, + ACTIONS(167), 2, sym_true, sym_false, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(99), 5, + ACTIONS(101), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(101), 5, + ACTIONS(103), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(818), 5, + STATE(944), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(663), 16, + STATE(758), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -66523,75 +77923,75 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [4448] = 23, + [7251] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_offsetof, ACTIONS(93), 1, + anon_sym_offsetof, + ACTIONS(95), 1, anon_sym__Generic, - ACTIONS(163), 1, + ACTIONS(165), 1, sym_number_literal, - ACTIONS(1397), 1, + ACTIONS(1429), 1, sym_identifier, - ACTIONS(1407), 1, + ACTIONS(1439), 1, anon_sym_LBRACE, - ACTIONS(1720), 1, + ACTIONS(1461), 1, anon_sym_sizeof, - ACTIONS(2213), 1, + ACTIONS(2284), 1, anon_sym_LPAREN2, - STATE(659), 1, - sym_string_literal, - STATE(661), 1, + STATE(760), 1, sym_initializer_list, - STATE(917), 1, + STATE(771), 1, sym_expression, - ACTIONS(95), 2, + STATE(940), 1, + sym_string_literal, + ACTIONS(97), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(105), 2, + ACTIONS(107), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(165), 2, + ACTIONS(167), 2, sym_true, sym_false, - ACTIONS(1716), 2, + ACTIONS(1457), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1718), 2, + ACTIONS(1459), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1865), 2, + ACTIONS(2276), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2215), 2, + ACTIONS(2286), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(99), 5, + ACTIONS(101), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(101), 5, + ACTIONS(103), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(670), 5, + STATE(762), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(663), 16, + STATE(758), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -66608,28 +78008,286 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [4556] = 23, + [7359] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(41), 1, + anon_sym___declspec, + ACTIONS(57), 1, + sym_primitive_type, + ACTIONS(59), 1, + anon_sym_enum, + ACTIONS(61), 1, + anon_sym_struct, + ACTIONS(63), 1, + anon_sym_union, + ACTIONS(455), 1, + anon_sym_LBRACE, + ACTIONS(1145), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2008), 1, + sym_identifier, + STATE(320), 1, + sym_compound_statement, + STATE(799), 1, + sym_alignas_qualifier, + STATE(807), 1, + sym_type_specifier, + STATE(890), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1248), 1, + sym__declaration_specifiers, + ACTIONS(33), 2, + anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(35), 2, + anon_sym___scanf, + anon_sym___printf, + ACTIONS(55), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(613), 2, + sym_declaration, + aux_sym__old_style_function_definition_repeat1, + ACTIONS(37), 4, + anon_sym___read_mostly, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + ACTIONS(49), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(873), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(805), 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(53), 9, + anon_sym___extension__, + 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(51), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [7469] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(41), 1, + anon_sym___declspec, + ACTIONS(57), 1, + sym_primitive_type, + ACTIONS(59), 1, + anon_sym_enum, + ACTIONS(61), 1, + anon_sym_struct, + ACTIONS(63), 1, + anon_sym_union, + ACTIONS(455), 1, + anon_sym_LBRACE, + ACTIONS(1145), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2008), 1, + sym_identifier, + STATE(328), 1, + sym_compound_statement, + STATE(799), 1, + sym_alignas_qualifier, + STATE(807), 1, + sym_type_specifier, + STATE(890), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1248), 1, + sym__declaration_specifiers, + ACTIONS(33), 2, + anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(35), 2, + anon_sym___scanf, + anon_sym___printf, + ACTIONS(55), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(597), 2, + sym_declaration, + aux_sym__old_style_function_definition_repeat1, + ACTIONS(37), 4, + anon_sym___read_mostly, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + ACTIONS(49), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(873), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(805), 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(53), 9, + anon_sym___extension__, + 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(51), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [7579] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(41), 1, + anon_sym___declspec, + ACTIONS(47), 1, + anon_sym_LBRACE, + ACTIONS(57), 1, + sym_primitive_type, + ACTIONS(59), 1, + anon_sym_enum, + ACTIONS(61), 1, + anon_sym_struct, + ACTIONS(63), 1, + anon_sym_union, + ACTIONS(1145), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2008), 1, + sym_identifier, + STATE(368), 1, + sym_compound_statement, + STATE(799), 1, + sym_alignas_qualifier, + STATE(807), 1, + sym_type_specifier, + STATE(890), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1248), 1, + sym__declaration_specifiers, + ACTIONS(33), 2, + anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(35), 2, + anon_sym___scanf, + anon_sym___printf, + ACTIONS(55), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(613), 2, + sym_declaration, + aux_sym__old_style_function_definition_repeat1, + ACTIONS(37), 4, + anon_sym___read_mostly, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + ACTIONS(49), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(873), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(805), 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(53), 9, + anon_sym___extension__, + 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(51), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [7689] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(87), 1, + ACTIONS(89), 1, anon_sym_sizeof, - ACTIONS(91), 1, - anon_sym_offsetof, ACTIONS(93), 1, + anon_sym_offsetof, + ACTIONS(95), 1, anon_sym__Generic, - ACTIONS(163), 1, + ACTIONS(165), 1, sym_number_literal, - ACTIONS(1722), 1, + ACTIONS(1773), 1, sym_identifier, - ACTIONS(2217), 1, - anon_sym_COLON, - STATE(659), 1, + ACTIONS(2288), 1, + anon_sym_SEMI, + STATE(671), 1, sym_string_literal, - STATE(1061), 1, + STATE(1196), 1, sym_expression, - STATE(1807), 1, + STATE(2063), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -66640,43 +78298,43 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(85), 2, + ACTIONS(87), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(95), 2, + ACTIONS(97), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(105), 2, + ACTIONS(107), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(165), 2, + ACTIONS(167), 2, sym_true, sym_false, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(99), 5, + ACTIONS(101), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(101), 5, + ACTIONS(103), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(818), 5, + STATE(944), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(663), 16, + STATE(758), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -66693,119 +78351,119 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [4664] = 24, + [7797] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(41), 1, - anon_sym___declspec, - ACTIONS(55), 1, - sym_primitive_type, - ACTIONS(57), 1, - anon_sym_enum, - ACTIONS(59), 1, - anon_sym_struct, - ACTIONS(61), 1, - anon_sym_union, - ACTIONS(386), 1, - anon_sym_LBRACE, - ACTIONS(1137), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1809), 1, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(89), 1, + anon_sym_sizeof, + ACTIONS(93), 1, + anon_sym_offsetof, + ACTIONS(95), 1, + anon_sym__Generic, + ACTIONS(165), 1, + sym_number_literal, + ACTIONS(1773), 1, sym_identifier, - STATE(261), 1, - sym_compound_statement, - STATE(703), 1, - sym_alignas_qualifier, - STATE(710), 1, - sym_type_specifier, - STATE(747), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1136), 1, - sym__declaration_specifiers, - ACTIONS(33), 2, - anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(35), 2, - anon_sym___scanf, - anon_sym___printf, - ACTIONS(53), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(562), 2, - sym_declaration, - aux_sym__old_style_function_definition_repeat1, - ACTIONS(37), 3, - anon_sym___read_mostly, - anon_sym___ro_after_init, - anon_sym___init, - ACTIONS(47), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(746), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(697), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(51), 9, - anon_sym___extension__, - 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(49), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - [4773] = 24, + ACTIONS(2290), 1, + anon_sym_SEMI, + STATE(671), 1, + sym_string_literal, + STATE(1159), 1, + sym_expression, + STATE(2299), 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(87), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(97), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(107), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(167), 2, + sym_true, + sym_false, + ACTIONS(91), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(101), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(103), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(944), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(758), 16, + sym__string, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [7905] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(41), 1, anon_sym___declspec, - ACTIONS(55), 1, - sym_primitive_type, + ACTIONS(47), 1, + anon_sym_LBRACE, ACTIONS(57), 1, - anon_sym_enum, + sym_primitive_type, ACTIONS(59), 1, - anon_sym_struct, + anon_sym_enum, ACTIONS(61), 1, + anon_sym_struct, + ACTIONS(63), 1, anon_sym_union, - ACTIONS(524), 1, - anon_sym_LBRACE, - ACTIONS(1137), 1, + ACTIONS(1145), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1809), 1, + ACTIONS(2008), 1, sym_identifier, - STATE(272), 1, + STATE(383), 1, sym_compound_statement, - STATE(703), 1, + STATE(799), 1, sym_alignas_qualifier, - STATE(710), 1, + STATE(807), 1, sym_type_specifier, - STATE(747), 1, + STATE(890), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1136), 1, + STATE(1248), 1, sym__declaration_specifiers, ACTIONS(33), 2, anon_sym___attribute__, @@ -66813,28 +78471,29 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(35), 2, anon_sym___scanf, anon_sym___printf, - ACTIONS(53), 2, + ACTIONS(55), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(562), 2, + STATE(613), 2, sym_declaration, aux_sym__old_style_function_definition_repeat1, - ACTIONS(37), 3, + ACTIONS(37), 4, anon_sym___read_mostly, anon_sym___ro_after_init, - anon_sym___init, - ACTIONS(47), 4, + anon_sym___noreturn, + anon_sym___cold, + ACTIONS(49), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(746), 5, + STATE(873), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(697), 7, + STATE(805), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -66842,7 +78501,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(51), 9, + ACTIONS(53), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -66852,7 +78511,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - ACTIONS(49), 10, + ACTIONS(51), 10, anon_sym_extern, anon_sym_static, anon_sym_auto, @@ -66863,34 +78522,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [4882] = 24, + [8015] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(41), 1, anon_sym___declspec, - ACTIONS(45), 1, - anon_sym_LBRACE, - ACTIONS(55), 1, - sym_primitive_type, ACTIONS(57), 1, - anon_sym_enum, + sym_primitive_type, ACTIONS(59), 1, - anon_sym_struct, + anon_sym_enum, ACTIONS(61), 1, + anon_sym_struct, + ACTIONS(63), 1, anon_sym_union, - ACTIONS(1137), 1, + ACTIONS(1145), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1809), 1, + ACTIONS(1869), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2008), 1, sym_identifier, - STATE(337), 1, - sym_compound_statement, - STATE(703), 1, + ACTIONS(2292), 1, + anon_sym_RPAREN, + STATE(799), 1, sym_alignas_qualifier, - STATE(710), 1, + STATE(807), 1, sym_type_specifier, - STATE(747), 1, + STATE(890), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1136), 1, + STATE(1343), 1, sym__declaration_specifiers, ACTIONS(33), 2, anon_sym___attribute__, @@ -66898,28 +78557,29 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(35), 2, anon_sym___scanf, anon_sym___printf, - ACTIONS(53), 2, + ACTIONS(55), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(562), 2, - sym_declaration, - aux_sym__old_style_function_definition_repeat1, - ACTIONS(37), 3, + STATE(1816), 2, + sym_variadic_parameter, + sym_parameter_declaration, + ACTIONS(37), 4, anon_sym___read_mostly, anon_sym___ro_after_init, - anon_sym___init, - ACTIONS(47), 4, + anon_sym___noreturn, + anon_sym___cold, + ACTIONS(49), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(746), 5, + STATE(873), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(697), 7, + STATE(805), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -66927,7 +78587,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(51), 9, + ACTIONS(53), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -66937,7 +78597,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - ACTIONS(49), 10, + ACTIONS(51), 10, anon_sym_extern, anon_sym_static, anon_sym_auto, @@ -66948,73 +78608,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [4991] = 22, + [8125] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_offsetof, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(89), 1, + anon_sym_sizeof, ACTIONS(93), 1, + anon_sym_offsetof, + ACTIONS(95), 1, anon_sym__Generic, - ACTIONS(163), 1, + ACTIONS(165), 1, sym_number_literal, - ACTIONS(1397), 1, + ACTIONS(1773), 1, sym_identifier, - ACTIONS(1720), 1, - anon_sym_sizeof, - ACTIONS(2213), 1, - anon_sym_LPAREN2, - ACTIONS(2219), 1, - anon_sym_RBRACK, - STATE(659), 1, + ACTIONS(2294), 1, + anon_sym_SEMI, + STATE(671), 1, sym_string_literal, - STATE(927), 1, + STATE(1176), 1, sym_expression, - ACTIONS(95), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(105), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(165), 2, - sym_true, - sym_false, - ACTIONS(1716), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1718), 2, + STATE(2298), 1, + sym_comma_expression, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1865), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2215), 2, + ACTIONS(87), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(89), 5, + ACTIONS(97), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(107), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(167), 2, + sym_true, + sym_false, + ACTIONS(91), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(99), 5, + ACTIONS(101), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(101), 5, + ACTIONS(103), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(670), 5, + STATE(944), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(663), 16, + STATE(758), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -67031,120 +78693,34 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [5096] = 25, + [8233] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(41), 1, anon_sym___declspec, - ACTIONS(55), 1, - sym_primitive_type, + ACTIONS(47), 1, + anon_sym_LBRACE, ACTIONS(57), 1, - anon_sym_enum, - ACTIONS(59), 1, - anon_sym_struct, - ACTIONS(61), 1, - anon_sym_union, - ACTIONS(1137), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1789), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2221), 1, - sym_identifier, - ACTIONS(2223), 1, - anon_sym_RPAREN, - STATE(703), 1, - sym_alignas_qualifier, - STATE(710), 1, - sym_type_specifier, - STATE(747), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1211), 1, - sym__declaration_specifiers, - STATE(1544), 1, - sym_variadic_parameter, - STATE(1666), 1, - sym_parameter_declaration, - ACTIONS(33), 2, - anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(35), 2, - anon_sym___scanf, - anon_sym___printf, - ACTIONS(53), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(37), 3, - anon_sym___read_mostly, - anon_sym___ro_after_init, - anon_sym___init, - ACTIONS(47), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(746), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(697), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(51), 9, - anon_sym___extension__, - 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(49), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - [5207] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(41), 1, - anon_sym___declspec, - ACTIONS(55), 1, sym_primitive_type, - ACTIONS(57), 1, - anon_sym_enum, ACTIONS(59), 1, - anon_sym_struct, + anon_sym_enum, ACTIONS(61), 1, + anon_sym_struct, + ACTIONS(63), 1, anon_sym_union, - ACTIONS(1137), 1, + ACTIONS(1145), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1789), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1791), 1, - anon_sym_RPAREN, - ACTIONS(1809), 1, + ACTIONS(2008), 1, sym_identifier, - STATE(703), 1, + STATE(369), 1, + sym_compound_statement, + STATE(799), 1, sym_alignas_qualifier, - STATE(710), 1, + STATE(807), 1, sym_type_specifier, - STATE(747), 1, + STATE(890), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1211), 1, + STATE(1248), 1, sym__declaration_specifiers, ACTIONS(33), 2, anon_sym___attribute__, @@ -67152,28 +78728,29 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(35), 2, anon_sym___scanf, anon_sym___printf, - ACTIONS(53), 2, + ACTIONS(55), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1666), 2, - sym_variadic_parameter, - sym_parameter_declaration, - ACTIONS(37), 3, + STATE(613), 2, + sym_declaration, + aux_sym__old_style_function_definition_repeat1, + ACTIONS(37), 4, anon_sym___read_mostly, anon_sym___ro_after_init, - anon_sym___init, - ACTIONS(47), 4, + anon_sym___noreturn, + anon_sym___cold, + ACTIONS(49), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(746), 5, + STATE(873), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(697), 7, + STATE(805), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -67181,7 +78758,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(51), 9, + ACTIONS(53), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -67191,7 +78768,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - ACTIONS(49), 10, + ACTIONS(51), 10, anon_sym_extern, anon_sym_static, anon_sym_auto, @@ -67202,34 +78779,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [5316] = 24, + [8343] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(41), 1, anon_sym___declspec, - ACTIONS(45), 1, + ACTIONS(47), 1, anon_sym_LBRACE, - ACTIONS(55), 1, - sym_primitive_type, ACTIONS(57), 1, - anon_sym_enum, + sym_primitive_type, ACTIONS(59), 1, - anon_sym_struct, + anon_sym_enum, ACTIONS(61), 1, + anon_sym_struct, + ACTIONS(63), 1, anon_sym_union, - ACTIONS(1137), 1, + ACTIONS(1145), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1809), 1, + ACTIONS(2008), 1, sym_identifier, - STATE(333), 1, + STATE(388), 1, sym_compound_statement, - STATE(703), 1, + STATE(799), 1, sym_alignas_qualifier, - STATE(710), 1, + STATE(807), 1, sym_type_specifier, - STATE(747), 1, + STATE(890), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1136), 1, + STATE(1248), 1, sym__declaration_specifiers, ACTIONS(33), 2, anon_sym___attribute__, @@ -67237,28 +78814,29 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(35), 2, anon_sym___scanf, anon_sym___printf, - ACTIONS(53), 2, + ACTIONS(55), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(507), 2, + STATE(599), 2, sym_declaration, aux_sym__old_style_function_definition_repeat1, - ACTIONS(37), 3, + ACTIONS(37), 4, anon_sym___read_mostly, anon_sym___ro_after_init, - anon_sym___init, - ACTIONS(47), 4, + anon_sym___noreturn, + anon_sym___cold, + ACTIONS(49), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(746), 5, + STATE(873), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(697), 7, + STATE(805), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -67266,7 +78844,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(51), 9, + ACTIONS(53), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -67276,7 +78854,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - ACTIONS(49), 10, + ACTIONS(51), 10, anon_sym_extern, anon_sym_static, anon_sym_auto, @@ -67287,73 +78865,330 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [5425] = 22, + [8453] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_offsetof, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(89), 1, + anon_sym_sizeof, ACTIONS(93), 1, + anon_sym_offsetof, + ACTIONS(95), 1, anon_sym__Generic, - ACTIONS(163), 1, + ACTIONS(165), 1, sym_number_literal, - ACTIONS(1397), 1, + ACTIONS(1439), 1, + anon_sym_LBRACE, + ACTIONS(1773), 1, sym_identifier, - ACTIONS(1720), 1, - anon_sym_sizeof, - ACTIONS(2213), 1, - anon_sym_LPAREN2, - ACTIONS(2225), 1, - anon_sym_RBRACK, - STATE(659), 1, + STATE(671), 1, sym_string_literal, - STATE(927), 1, + STATE(1162), 1, sym_expression, - ACTIONS(95), 2, + STATE(2003), 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(87), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(97), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(105), 2, + ACTIONS(107), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(165), 2, + ACTIONS(167), 2, sym_true, sym_false, - ACTIONS(1716), 2, + ACTIONS(91), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(101), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(103), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(944), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(758), 16, + sym__string, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [8561] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(89), 1, + anon_sym_sizeof, + ACTIONS(93), 1, + anon_sym_offsetof, + ACTIONS(95), 1, + anon_sym__Generic, + ACTIONS(165), 1, + sym_number_literal, + ACTIONS(1773), 1, + sym_identifier, + ACTIONS(2296), 1, + anon_sym_RPAREN, + STATE(671), 1, + sym_string_literal, + STATE(1185), 1, + sym_expression, + STATE(2140), 1, + sym_comma_expression, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1718), 2, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(87), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(97), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(107), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(167), 2, + sym_true, + sym_false, + ACTIONS(91), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(101), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(103), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(944), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(758), 16, + sym__string, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [8669] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(89), 1, + anon_sym_sizeof, + ACTIONS(93), 1, + anon_sym_offsetof, + ACTIONS(95), 1, + anon_sym__Generic, + ACTIONS(165), 1, + sym_number_literal, + ACTIONS(1773), 1, + sym_identifier, + ACTIONS(2298), 1, + anon_sym_RPAREN, + STATE(671), 1, + sym_string_literal, + STATE(1186), 1, + sym_expression, + STATE(2139), 1, + sym_comma_expression, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1865), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2215), 2, + ACTIONS(87), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(89), 5, + ACTIONS(97), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(107), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(167), 2, + sym_true, + sym_false, + ACTIONS(91), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(99), 5, + ACTIONS(101), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, + ACTIONS(103), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(944), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(758), 16, + sym__string, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [8777] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(89), 1, + anon_sym_sizeof, + ACTIONS(93), 1, + anon_sym_offsetof, + ACTIONS(95), 1, + anon_sym__Generic, + ACTIONS(165), 1, + sym_number_literal, + ACTIONS(1773), 1, + sym_identifier, + ACTIONS(2300), 1, + anon_sym_RPAREN, + STATE(671), 1, + sym_string_literal, + STATE(1187), 1, + sym_expression, + STATE(2138), 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(87), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(97), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(107), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(167), 2, + sym_true, + sym_false, + ACTIONS(91), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, ACTIONS(101), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(103), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(670), 5, + STATE(944), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(663), 16, + STATE(758), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -67370,63 +79205,63 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [5530] = 24, + [8885] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(41), 1, anon_sym___declspec, - ACTIONS(55), 1, - sym_primitive_type, ACTIONS(57), 1, - anon_sym_enum, + sym_primitive_type, ACTIONS(59), 1, - anon_sym_struct, + anon_sym_enum, ACTIONS(61), 1, + anon_sym_struct, + ACTIONS(63), 1, anon_sym_union, - ACTIONS(386), 1, - anon_sym_LBRACE, - ACTIONS(1137), 1, + ACTIONS(1145), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1809), 1, + ACTIONS(1869), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2302), 1, sym_identifier, - STATE(290), 1, - sym_compound_statement, - STATE(703), 1, + STATE(799), 1, sym_alignas_qualifier, - STATE(710), 1, + STATE(807), 1, sym_type_specifier, - STATE(747), 1, + STATE(890), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1136), 1, + STATE(1343), 1, sym__declaration_specifiers, + STATE(1958), 1, + sym_variadic_parameter, + STATE(2006), 1, + sym_parameter_declaration, ACTIONS(33), 2, anon_sym___attribute__, anon_sym___must_hold, ACTIONS(35), 2, anon_sym___scanf, anon_sym___printf, - ACTIONS(53), 2, + ACTIONS(55), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(527), 2, - sym_declaration, - aux_sym__old_style_function_definition_repeat1, - ACTIONS(37), 3, + ACTIONS(37), 4, anon_sym___read_mostly, anon_sym___ro_after_init, - anon_sym___init, - ACTIONS(47), 4, + anon_sym___noreturn, + anon_sym___cold, + ACTIONS(49), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(746), 5, + STATE(873), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(697), 7, + STATE(805), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -67434,7 +79269,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(51), 9, + ACTIONS(53), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -67444,7 +79279,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - ACTIONS(49), 10, + ACTIONS(51), 10, anon_sym_extern, anon_sym_static, anon_sym_auto, @@ -67455,63 +79290,145 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [5639] = 24, + [8994] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(41), 1, + ACTIONS(93), 1, + anon_sym_offsetof, + ACTIONS(95), 1, + anon_sym__Generic, + ACTIONS(165), 1, + sym_number_literal, + ACTIONS(1429), 1, + sym_identifier, + ACTIONS(1779), 1, + anon_sym_sizeof, + ACTIONS(2244), 1, + anon_sym_LPAREN2, + ACTIONS(2304), 1, + anon_sym_RBRACK, + STATE(671), 1, + sym_string_literal, + STATE(1037), 1, + sym_expression, + ACTIONS(97), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(107), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(167), 2, + sym_true, + sym_false, + ACTIONS(1775), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1777), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2018), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2246), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(91), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(101), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(103), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(762), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(758), 16, + sym__string, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [9099] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2306), 1, + sym_identifier, + ACTIONS(2324), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2327), 1, anon_sym___declspec, - ACTIONS(55), 1, + ACTIONS(2330), 1, + anon_sym_LBRACE, + ACTIONS(2338), 1, sym_primitive_type, - ACTIONS(57), 1, + ACTIONS(2341), 1, anon_sym_enum, - ACTIONS(59), 1, + ACTIONS(2344), 1, anon_sym_struct, - ACTIONS(61), 1, + ACTIONS(2347), 1, anon_sym_union, - ACTIONS(135), 1, - anon_sym_LBRACE, - ACTIONS(1137), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1809), 1, - sym_identifier, - STATE(129), 1, - sym_compound_statement, - STATE(703), 1, + STATE(799), 1, sym_alignas_qualifier, - STATE(710), 1, + STATE(807), 1, sym_type_specifier, - STATE(747), 1, + STATE(890), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1136), 1, + STATE(1248), 1, sym__declaration_specifiers, - ACTIONS(33), 2, + ACTIONS(2315), 2, anon_sym___attribute__, anon_sym___must_hold, - ACTIONS(35), 2, + ACTIONS(2318), 2, anon_sym___scanf, anon_sym___printf, - ACTIONS(53), 2, + ACTIONS(2335), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(562), 2, + STATE(613), 2, sym_declaration, aux_sym__old_style_function_definition_repeat1, - ACTIONS(37), 3, + ACTIONS(2321), 4, anon_sym___read_mostly, anon_sym___ro_after_init, - anon_sym___init, - ACTIONS(47), 4, + anon_sym___noreturn, + anon_sym___cold, + ACTIONS(2332), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(746), 5, + STATE(873), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(697), 7, + STATE(805), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -67519,7 +79436,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(51), 9, + ACTIONS(2309), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -67529,7 +79446,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - ACTIONS(49), 10, + ACTIONS(2312), 10, anon_sym_extern, anon_sym_static, anon_sym_auto, @@ -67540,73 +79457,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [5748] = 22, + [9206] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_offsetof, ACTIONS(93), 1, + anon_sym_offsetof, + ACTIONS(95), 1, anon_sym__Generic, - ACTIONS(163), 1, + ACTIONS(165), 1, sym_number_literal, - ACTIONS(1397), 1, + ACTIONS(1429), 1, sym_identifier, - ACTIONS(1720), 1, + ACTIONS(1779), 1, anon_sym_sizeof, - ACTIONS(2213), 1, + ACTIONS(2244), 1, anon_sym_LPAREN2, - ACTIONS(2227), 1, + ACTIONS(2350), 1, anon_sym_RBRACK, - STATE(659), 1, + STATE(671), 1, sym_string_literal, - STATE(927), 1, + STATE(1037), 1, sym_expression, - ACTIONS(95), 2, + ACTIONS(97), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(105), 2, + ACTIONS(107), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(165), 2, + ACTIONS(167), 2, sym_true, sym_false, - ACTIONS(1716), 2, + ACTIONS(1775), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1718), 2, + ACTIONS(1777), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1865), 2, + ACTIONS(2018), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2215), 2, + ACTIONS(2246), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(99), 5, + ACTIONS(101), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(101), 5, + ACTIONS(103), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(670), 5, + STATE(762), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(663), 16, + STATE(758), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -67623,34 +79540,32 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [5853] = 24, + [9311] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(41), 1, anon_sym___declspec, - ACTIONS(55), 1, - sym_primitive_type, ACTIONS(57), 1, - anon_sym_enum, + sym_primitive_type, ACTIONS(59), 1, - anon_sym_struct, + anon_sym_enum, ACTIONS(61), 1, + anon_sym_struct, + ACTIONS(63), 1, anon_sym_union, - ACTIONS(524), 1, - anon_sym_LBRACE, - ACTIONS(1137), 1, + ACTIONS(1145), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1809), 1, + ACTIONS(2008), 1, sym_identifier, - STATE(291), 1, - sym_compound_statement, - STATE(703), 1, + STATE(772), 1, + sym_macro_modifier, + STATE(799), 1, sym_alignas_qualifier, - STATE(710), 1, + STATE(807), 1, sym_type_specifier, - STATE(747), 1, + STATE(890), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1136), 1, + STATE(1267), 1, sym__declaration_specifiers, ACTIONS(33), 2, anon_sym___attribute__, @@ -67658,28 +79573,29 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(35), 2, anon_sym___scanf, anon_sym___printf, - ACTIONS(53), 2, + ACTIONS(43), 2, + anon_sym___init, + anon_sym___exit, + ACTIONS(55), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(562), 2, - sym_declaration, - aux_sym__old_style_function_definition_repeat1, - ACTIONS(37), 3, + ACTIONS(37), 4, anon_sym___read_mostly, anon_sym___ro_after_init, - anon_sym___init, - ACTIONS(47), 4, + anon_sym___noreturn, + anon_sym___cold, + ACTIONS(49), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(746), 5, + STATE(873), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(697), 7, + STATE(805), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -67687,7 +79603,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(51), 9, + ACTIONS(53), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -67697,7 +79613,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - ACTIONS(49), 10, + ACTIONS(51), 10, anon_sym_extern, anon_sym_static, anon_sym_auto, @@ -67708,73 +79624,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [5962] = 22, + [9418] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_offsetof, ACTIONS(93), 1, + anon_sym_offsetof, + ACTIONS(95), 1, anon_sym__Generic, - ACTIONS(163), 1, + ACTIONS(165), 1, sym_number_literal, - ACTIONS(1397), 1, + ACTIONS(1429), 1, sym_identifier, - ACTIONS(1720), 1, + ACTIONS(1779), 1, anon_sym_sizeof, - ACTIONS(2213), 1, + ACTIONS(2244), 1, anon_sym_LPAREN2, - ACTIONS(2229), 1, + ACTIONS(2352), 1, anon_sym_RBRACK, - STATE(659), 1, + STATE(671), 1, sym_string_literal, - STATE(927), 1, + STATE(1037), 1, sym_expression, - ACTIONS(95), 2, + ACTIONS(97), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(105), 2, + ACTIONS(107), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(165), 2, + ACTIONS(167), 2, sym_true, sym_false, - ACTIONS(1716), 2, + ACTIONS(1775), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1718), 2, + ACTIONS(1777), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1865), 2, + ACTIONS(2018), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2215), 2, + ACTIONS(2246), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(99), 5, + ACTIONS(101), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(101), 5, + ACTIONS(103), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(670), 5, + STATE(762), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(663), 16, + STATE(758), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -67791,73 +79707,73 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [6067] = 22, + [9523] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_offsetof, ACTIONS(93), 1, + anon_sym_offsetof, + ACTIONS(95), 1, anon_sym__Generic, - ACTIONS(163), 1, + ACTIONS(165), 1, sym_number_literal, - ACTIONS(1397), 1, + ACTIONS(1429), 1, sym_identifier, - ACTIONS(1720), 1, + ACTIONS(1779), 1, anon_sym_sizeof, - ACTIONS(2213), 1, + ACTIONS(2244), 1, anon_sym_LPAREN2, - ACTIONS(2231), 1, + ACTIONS(2354), 1, anon_sym_RBRACK, - STATE(659), 1, + STATE(671), 1, sym_string_literal, - STATE(927), 1, + STATE(1037), 1, sym_expression, - ACTIONS(95), 2, + ACTIONS(97), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(105), 2, + ACTIONS(107), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(165), 2, + ACTIONS(167), 2, sym_true, sym_false, - ACTIONS(1716), 2, + ACTIONS(1775), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1718), 2, + ACTIONS(1777), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1865), 2, + ACTIONS(2018), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2215), 2, + ACTIONS(2246), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(99), 5, + ACTIONS(101), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(101), 5, + ACTIONS(103), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(670), 5, + STATE(762), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(663), 16, + STATE(758), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -67874,158 +79790,156 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [6172] = 24, + [9628] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(41), 1, - anon_sym___declspec, - ACTIONS(45), 1, - anon_sym_LBRACE, - ACTIONS(55), 1, - sym_primitive_type, - ACTIONS(57), 1, - anon_sym_enum, - ACTIONS(59), 1, - anon_sym_struct, - ACTIONS(61), 1, - anon_sym_union, - ACTIONS(1137), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1809), 1, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(89), 1, + anon_sym_sizeof, + ACTIONS(93), 1, + anon_sym_offsetof, + ACTIONS(95), 1, + anon_sym__Generic, + ACTIONS(165), 1, + sym_number_literal, + ACTIONS(1773), 1, sym_identifier, - STATE(336), 1, - sym_compound_statement, - STATE(703), 1, - sym_alignas_qualifier, - STATE(710), 1, - sym_type_specifier, - STATE(747), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1136), 1, - sym__declaration_specifiers, - ACTIONS(33), 2, - anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(35), 2, - anon_sym___scanf, - anon_sym___printf, - ACTIONS(53), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(562), 2, - sym_declaration, - aux_sym__old_style_function_definition_repeat1, - ACTIONS(37), 3, - anon_sym___read_mostly, - anon_sym___ro_after_init, - anon_sym___init, - ACTIONS(47), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(746), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(697), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(51), 9, - anon_sym___extension__, - 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(49), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - [6281] = 22, + STATE(671), 1, + sym_string_literal, + STATE(1138), 1, + sym_expression, + STATE(1823), 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(87), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(97), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(107), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(167), 2, + sym_true, + sym_false, + ACTIONS(91), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(101), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(103), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(944), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(758), 16, + sym__string, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [9733] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_offsetof, ACTIONS(93), 1, + anon_sym_offsetof, + ACTIONS(95), 1, anon_sym__Generic, - ACTIONS(163), 1, + ACTIONS(165), 1, sym_number_literal, - ACTIONS(1397), 1, + ACTIONS(1429), 1, sym_identifier, - ACTIONS(1720), 1, + ACTIONS(1779), 1, anon_sym_sizeof, - ACTIONS(2213), 1, + ACTIONS(2244), 1, anon_sym_LPAREN2, - ACTIONS(2233), 1, + ACTIONS(2356), 1, anon_sym_RBRACK, - STATE(659), 1, + STATE(671), 1, sym_string_literal, - STATE(927), 1, + STATE(1037), 1, sym_expression, - ACTIONS(95), 2, + ACTIONS(97), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(105), 2, + ACTIONS(107), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(165), 2, + ACTIONS(167), 2, sym_true, sym_false, - ACTIONS(1716), 2, + ACTIONS(1775), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1718), 2, + ACTIONS(1777), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1865), 2, + ACTIONS(2018), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2215), 2, + ACTIONS(2246), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(99), 5, + ACTIONS(101), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(101), 5, + ACTIONS(103), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(670), 5, + STATE(762), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(663), 16, + STATE(758), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -68042,289 +79956,32 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [6386] = 24, + [9838] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(41), 1, anon_sym___declspec, - ACTIONS(55), 1, - sym_primitive_type, ACTIONS(57), 1, - anon_sym_enum, - ACTIONS(59), 1, - anon_sym_struct, - ACTIONS(61), 1, - anon_sym_union, - ACTIONS(524), 1, - anon_sym_LBRACE, - ACTIONS(1137), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1809), 1, - sym_identifier, - STATE(308), 1, - sym_compound_statement, - STATE(703), 1, - sym_alignas_qualifier, - STATE(710), 1, - sym_type_specifier, - STATE(747), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1136), 1, - sym__declaration_specifiers, - ACTIONS(33), 2, - anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(35), 2, - anon_sym___scanf, - anon_sym___printf, - ACTIONS(53), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(506), 2, - sym_declaration, - aux_sym__old_style_function_definition_repeat1, - ACTIONS(37), 3, - anon_sym___read_mostly, - anon_sym___ro_after_init, - anon_sym___init, - ACTIONS(47), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(746), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(697), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(51), 9, - anon_sym___extension__, - 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(49), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - [6495] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(41), 1, - anon_sym___declspec, - ACTIONS(55), 1, sym_primitive_type, - ACTIONS(57), 1, - anon_sym_enum, ACTIONS(59), 1, - anon_sym_struct, - ACTIONS(61), 1, - anon_sym_union, - ACTIONS(135), 1, - anon_sym_LBRACE, - ACTIONS(1137), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1809), 1, - sym_identifier, - STATE(139), 1, - sym_compound_statement, - STATE(703), 1, - sym_alignas_qualifier, - STATE(710), 1, - sym_type_specifier, - STATE(747), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1136), 1, - sym__declaration_specifiers, - ACTIONS(33), 2, - anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(35), 2, - anon_sym___scanf, - anon_sym___printf, - ACTIONS(53), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(514), 2, - sym_declaration, - aux_sym__old_style_function_definition_repeat1, - ACTIONS(37), 3, - anon_sym___read_mostly, - anon_sym___ro_after_init, - anon_sym___init, - ACTIONS(47), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(746), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(697), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(51), 9, - anon_sym___extension__, - 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(49), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - [6604] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(41), 1, - anon_sym___declspec, - ACTIONS(55), 1, - sym_primitive_type, - ACTIONS(57), 1, anon_sym_enum, - ACTIONS(59), 1, - anon_sym_struct, ACTIONS(61), 1, - anon_sym_union, - ACTIONS(524), 1, - anon_sym_LBRACE, - ACTIONS(1137), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1809), 1, - sym_identifier, - STATE(252), 1, - sym_compound_statement, - STATE(703), 1, - sym_alignas_qualifier, - STATE(710), 1, - sym_type_specifier, - STATE(747), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1136), 1, - sym__declaration_specifiers, - ACTIONS(33), 2, - anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(35), 2, - anon_sym___scanf, - anon_sym___printf, - ACTIONS(53), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(516), 2, - sym_declaration, - aux_sym__old_style_function_definition_repeat1, - ACTIONS(37), 3, - anon_sym___read_mostly, - anon_sym___ro_after_init, - anon_sym___init, - ACTIONS(47), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(746), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(697), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(51), 9, - anon_sym___extension__, - 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(49), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - [6713] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(41), 1, - anon_sym___declspec, - ACTIONS(55), 1, - sym_primitive_type, - ACTIONS(57), 1, - anon_sym_enum, - ACTIONS(59), 1, anon_sym_struct, - ACTIONS(61), 1, + ACTIONS(63), 1, anon_sym_union, - ACTIONS(135), 1, - anon_sym_LBRACE, - ACTIONS(1137), 1, + ACTIONS(1145), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1809), 1, + ACTIONS(2008), 1, sym_identifier, - STATE(115), 1, - sym_compound_statement, - STATE(703), 1, + STATE(798), 1, + sym_macro_modifier, + STATE(799), 1, sym_alignas_qualifier, - STATE(710), 1, + STATE(807), 1, sym_type_specifier, - STATE(747), 1, + STATE(890), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1136), 1, + STATE(1265), 1, sym__declaration_specifiers, ACTIONS(33), 2, anon_sym___attribute__, @@ -68332,28 +79989,29 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(35), 2, anon_sym___scanf, anon_sym___printf, - ACTIONS(53), 2, + ACTIONS(43), 2, + anon_sym___init, + anon_sym___exit, + ACTIONS(55), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(562), 2, - sym_declaration, - aux_sym__old_style_function_definition_repeat1, - ACTIONS(37), 3, + ACTIONS(37), 4, anon_sym___read_mostly, anon_sym___ro_after_init, - anon_sym___init, - ACTIONS(47), 4, + anon_sym___noreturn, + anon_sym___cold, + ACTIONS(49), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(746), 5, + STATE(873), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(697), 7, + STATE(805), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -68361,7 +80019,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(51), 9, + ACTIONS(53), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -68371,7 +80029,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - ACTIONS(49), 10, + ACTIONS(51), 10, anon_sym_extern, anon_sym_static, anon_sym_auto, @@ -68382,109 +80040,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [6822] = 22, + [9945] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(87), 1, + ACTIONS(89), 1, anon_sym_sizeof, - ACTIONS(91), 1, - anon_sym_offsetof, ACTIONS(93), 1, - anon_sym__Generic, - ACTIONS(163), 1, - sym_number_literal, - ACTIONS(1722), 1, - sym_identifier, - STATE(659), 1, - sym_string_literal, - STATE(1050), 1, - sym_expression, - STATE(1836), 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(85), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(95), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(105), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(165), 2, - sym_true, - sym_false, - ACTIONS(89), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(99), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(101), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(818), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(663), 16, - sym__string, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_alignof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_gnu_asm_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [6927] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(87), 1, - anon_sym_sizeof, - ACTIONS(91), 1, anon_sym_offsetof, - ACTIONS(93), 1, + ACTIONS(95), 1, anon_sym__Generic, - ACTIONS(163), 1, + ACTIONS(165), 1, sym_number_literal, - ACTIONS(1722), 1, + ACTIONS(1773), 1, sym_identifier, - STATE(659), 1, + STATE(671), 1, sym_string_literal, - STATE(1046), 1, + STATE(1171), 1, sym_expression, - STATE(1919), 1, + STATE(2260), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -68495,43 +80070,43 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(85), 2, + ACTIONS(87), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(95), 2, + ACTIONS(97), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(105), 2, + ACTIONS(107), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(165), 2, + ACTIONS(167), 2, sym_true, sym_false, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(99), 5, + ACTIONS(101), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(101), 5, + ACTIONS(103), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(818), 5, + STATE(944), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(663), 16, + STATE(758), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -68548,34 +80123,32 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [7032] = 24, + [10050] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(41), 1, anon_sym___declspec, - ACTIONS(55), 1, - sym_primitive_type, ACTIONS(57), 1, - anon_sym_enum, + sym_primitive_type, ACTIONS(59), 1, - anon_sym_struct, + anon_sym_enum, ACTIONS(61), 1, + anon_sym_struct, + ACTIONS(63), 1, anon_sym_union, - ACTIONS(386), 1, - anon_sym_LBRACE, - ACTIONS(1137), 1, + ACTIONS(1145), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1809), 1, + ACTIONS(2008), 1, sym_identifier, - STATE(274), 1, - sym_compound_statement, - STATE(703), 1, + STATE(786), 1, + sym_macro_modifier, + STATE(799), 1, sym_alignas_qualifier, - STATE(710), 1, + STATE(807), 1, sym_type_specifier, - STATE(747), 1, + STATE(890), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1136), 1, + STATE(1260), 1, sym__declaration_specifiers, ACTIONS(33), 2, anon_sym___attribute__, @@ -68583,28 +80156,29 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(35), 2, anon_sym___scanf, anon_sym___printf, - ACTIONS(53), 2, + ACTIONS(43), 2, + anon_sym___init, + anon_sym___exit, + ACTIONS(55), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(562), 2, - sym_declaration, - aux_sym__old_style_function_definition_repeat1, - ACTIONS(37), 3, + ACTIONS(37), 4, anon_sym___read_mostly, anon_sym___ro_after_init, - anon_sym___init, - ACTIONS(47), 4, + anon_sym___noreturn, + anon_sym___cold, + ACTIONS(49), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(746), 5, + STATE(873), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(697), 7, + STATE(805), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -68612,7 +80186,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(51), 9, + ACTIONS(53), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -68622,7 +80196,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - ACTIONS(49), 10, + ACTIONS(51), 10, anon_sym_extern, anon_sym_static, anon_sym_auto, @@ -68633,73 +80207,156 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [7141] = 22, + [10157] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_offsetof, ACTIONS(93), 1, + anon_sym_offsetof, + ACTIONS(95), 1, anon_sym__Generic, - ACTIONS(163), 1, + ACTIONS(165), 1, sym_number_literal, - ACTIONS(1397), 1, + ACTIONS(1429), 1, sym_identifier, - ACTIONS(1720), 1, + ACTIONS(1779), 1, anon_sym_sizeof, - ACTIONS(2213), 1, + ACTIONS(2244), 1, anon_sym_LPAREN2, - ACTIONS(2235), 1, + ACTIONS(2358), 1, anon_sym_RBRACK, - STATE(659), 1, + STATE(671), 1, sym_string_literal, - STATE(927), 1, + STATE(1037), 1, sym_expression, - ACTIONS(95), 2, + ACTIONS(97), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(105), 2, + ACTIONS(107), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(165), 2, + ACTIONS(167), 2, sym_true, sym_false, - ACTIONS(1716), 2, + ACTIONS(1775), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1718), 2, + ACTIONS(1777), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1865), 2, + ACTIONS(2018), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2215), 2, + ACTIONS(2246), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(99), 5, + ACTIONS(101), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, + ACTIONS(103), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(762), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(758), 16, + sym__string, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [10262] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(93), 1, + anon_sym_offsetof, + ACTIONS(95), 1, + anon_sym__Generic, + ACTIONS(165), 1, + sym_number_literal, + ACTIONS(1429), 1, + sym_identifier, + ACTIONS(1779), 1, + anon_sym_sizeof, + ACTIONS(2244), 1, + anon_sym_LPAREN2, + ACTIONS(2360), 1, + anon_sym_RBRACK, + STATE(671), 1, + sym_string_literal, + STATE(1037), 1, + sym_expression, + ACTIONS(97), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(107), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(167), 2, + sym_true, + sym_false, + ACTIONS(1775), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1777), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2018), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2246), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(91), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, ACTIONS(101), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(103), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(670), 5, + STATE(762), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(663), 16, + STATE(758), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -68716,73 +80373,73 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [7246] = 22, + [10367] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_offsetof, ACTIONS(93), 1, + anon_sym_offsetof, + ACTIONS(95), 1, anon_sym__Generic, - ACTIONS(163), 1, + ACTIONS(165), 1, sym_number_literal, - ACTIONS(1397), 1, + ACTIONS(1429), 1, sym_identifier, - ACTIONS(1720), 1, + ACTIONS(1779), 1, anon_sym_sizeof, - ACTIONS(2213), 1, + ACTIONS(2244), 1, anon_sym_LPAREN2, - ACTIONS(2237), 1, + ACTIONS(2362), 1, anon_sym_RBRACK, - STATE(659), 1, + STATE(671), 1, sym_string_literal, - STATE(927), 1, + STATE(1037), 1, sym_expression, - ACTIONS(95), 2, + ACTIONS(97), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(105), 2, + ACTIONS(107), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(165), 2, + ACTIONS(167), 2, sym_true, sym_false, - ACTIONS(1716), 2, + ACTIONS(1775), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1718), 2, + ACTIONS(1777), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1865), 2, + ACTIONS(2018), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2215), 2, + ACTIONS(2246), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(99), 5, + ACTIONS(101), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(101), 5, + ACTIONS(103), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(670), 5, + STATE(762), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(663), 16, + STATE(758), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -68799,73 +80456,73 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [7351] = 22, + [10472] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(87), 1, - anon_sym_sizeof, - ACTIONS(91), 1, - anon_sym_offsetof, ACTIONS(93), 1, + anon_sym_offsetof, + ACTIONS(95), 1, anon_sym__Generic, - ACTIONS(163), 1, + ACTIONS(165), 1, sym_number_literal, - ACTIONS(1722), 1, + ACTIONS(1429), 1, sym_identifier, - STATE(659), 1, + ACTIONS(1779), 1, + anon_sym_sizeof, + ACTIONS(2244), 1, + anon_sym_LPAREN2, + ACTIONS(2364), 1, + anon_sym_RBRACK, + STATE(671), 1, sym_string_literal, - STATE(1014), 1, + STATE(1037), 1, sym_expression, - STATE(1669), 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(85), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(95), 2, + ACTIONS(97), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(105), 2, + ACTIONS(107), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(165), 2, + ACTIONS(167), 2, sym_true, sym_false, - ACTIONS(89), 5, + ACTIONS(1775), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1777), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2018), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2246), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(91), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(99), 5, + ACTIONS(101), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(101), 5, + ACTIONS(103), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(818), 5, + STATE(762), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(663), 16, + STATE(758), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -68882,119 +80539,32 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [7456] = 24, + [10577] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(41), 1, anon_sym___declspec, - ACTIONS(55), 1, - sym_primitive_type, ACTIONS(57), 1, - anon_sym_enum, - ACTIONS(59), 1, - anon_sym_struct, - ACTIONS(61), 1, - anon_sym_union, - ACTIONS(386), 1, - anon_sym_LBRACE, - ACTIONS(1137), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1809), 1, - sym_identifier, - STATE(307), 1, - sym_compound_statement, - STATE(703), 1, - sym_alignas_qualifier, - STATE(710), 1, - sym_type_specifier, - STATE(747), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1136), 1, - sym__declaration_specifiers, - ACTIONS(33), 2, - anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(35), 2, - anon_sym___scanf, - anon_sym___printf, - ACTIONS(53), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(505), 2, - sym_declaration, - aux_sym__old_style_function_definition_repeat1, - ACTIONS(37), 3, - anon_sym___read_mostly, - anon_sym___ro_after_init, - anon_sym___init, - ACTIONS(47), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(746), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(697), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(51), 9, - anon_sym___extension__, - 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(49), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - [7565] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(41), 1, - anon_sym___declspec, - ACTIONS(45), 1, - anon_sym_LBRACE, - ACTIONS(55), 1, sym_primitive_type, - ACTIONS(57), 1, - anon_sym_enum, ACTIONS(59), 1, - anon_sym_struct, + anon_sym_enum, ACTIONS(61), 1, + anon_sym_struct, + ACTIONS(63), 1, anon_sym_union, - ACTIONS(1137), 1, + ACTIONS(1145), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1809), 1, + ACTIONS(2008), 1, sym_identifier, - STATE(324), 1, - sym_compound_statement, - STATE(703), 1, + STATE(785), 1, + sym_macro_modifier, + STATE(799), 1, sym_alignas_qualifier, - STATE(710), 1, + STATE(807), 1, sym_type_specifier, - STATE(747), 1, + STATE(890), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1136), 1, + STATE(1269), 1, sym__declaration_specifiers, ACTIONS(33), 2, anon_sym___attribute__, @@ -69002,28 +80572,29 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(35), 2, anon_sym___scanf, anon_sym___printf, - ACTIONS(53), 2, + ACTIONS(43), 2, + anon_sym___init, + anon_sym___exit, + ACTIONS(55), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(519), 2, - sym_declaration, - aux_sym__old_style_function_definition_repeat1, - ACTIONS(37), 3, + ACTIONS(37), 4, anon_sym___read_mostly, anon_sym___ro_after_init, - anon_sym___init, - ACTIONS(47), 4, + anon_sym___noreturn, + anon_sym___cold, + ACTIONS(49), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(746), 5, + STATE(873), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(697), 7, + STATE(805), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -69031,7 +80602,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(51), 9, + ACTIONS(53), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -69041,7 +80612,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - ACTIONS(49), 10, + ACTIONS(51), 10, anon_sym_extern, anon_sym_static, anon_sym_auto, @@ -69052,156 +80623,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [7674] = 22, + [10684] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_offsetof, ACTIONS(93), 1, - anon_sym__Generic, - ACTIONS(163), 1, - sym_number_literal, - ACTIONS(1397), 1, - sym_identifier, - ACTIONS(1720), 1, - anon_sym_sizeof, - ACTIONS(2213), 1, - anon_sym_LPAREN2, - ACTIONS(2239), 1, - anon_sym_RBRACK, - STATE(659), 1, - sym_string_literal, - STATE(927), 1, - sym_expression, - ACTIONS(95), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(105), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(165), 2, - sym_true, - sym_false, - ACTIONS(1716), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1718), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1865), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2215), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(89), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(99), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(101), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(670), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(663), 16, - sym__string, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_alignof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_gnu_asm_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [7779] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(91), 1, anon_sym_offsetof, - ACTIONS(93), 1, + ACTIONS(95), 1, anon_sym__Generic, - ACTIONS(163), 1, + ACTIONS(165), 1, sym_number_literal, - ACTIONS(1397), 1, + ACTIONS(1429), 1, sym_identifier, - ACTIONS(1720), 1, + ACTIONS(1779), 1, anon_sym_sizeof, - ACTIONS(2213), 1, + ACTIONS(2244), 1, anon_sym_LPAREN2, - ACTIONS(2241), 1, + ACTIONS(2366), 1, anon_sym_RBRACK, - STATE(659), 1, + STATE(671), 1, sym_string_literal, - STATE(927), 1, + STATE(1037), 1, sym_expression, - ACTIONS(95), 2, + ACTIONS(97), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(105), 2, + ACTIONS(107), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(165), 2, + ACTIONS(167), 2, sym_true, sym_false, - ACTIONS(1716), 2, + ACTIONS(1775), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1718), 2, + ACTIONS(1777), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1865), 2, + ACTIONS(2018), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2215), 2, + ACTIONS(2246), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(99), 5, + ACTIONS(101), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(101), 5, + ACTIONS(103), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(670), 5, + STATE(762), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(663), 16, + STATE(758), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -69218,34 +80706,32 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [7884] = 24, + [10789] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(41), 1, anon_sym___declspec, - ACTIONS(55), 1, - sym_primitive_type, ACTIONS(57), 1, - anon_sym_enum, + sym_primitive_type, ACTIONS(59), 1, - anon_sym_struct, + anon_sym_enum, ACTIONS(61), 1, + anon_sym_struct, + ACTIONS(63), 1, anon_sym_union, - ACTIONS(135), 1, - anon_sym_LBRACE, - ACTIONS(1137), 1, + ACTIONS(1145), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1809), 1, + ACTIONS(1869), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2008), 1, sym_identifier, - STATE(131), 1, - sym_compound_statement, - STATE(703), 1, + STATE(799), 1, sym_alignas_qualifier, - STATE(710), 1, + STATE(807), 1, sym_type_specifier, - STATE(747), 1, + STATE(890), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1136), 1, + STATE(1343), 1, sym__declaration_specifiers, ACTIONS(33), 2, anon_sym___attribute__, @@ -69253,28 +80739,29 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(35), 2, anon_sym___scanf, anon_sym___printf, - ACTIONS(53), 2, + ACTIONS(55), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(524), 2, - sym_declaration, - aux_sym__old_style_function_definition_repeat1, - ACTIONS(37), 3, + STATE(2006), 2, + sym_variadic_parameter, + sym_parameter_declaration, + ACTIONS(37), 4, anon_sym___read_mostly, anon_sym___ro_after_init, - anon_sym___init, - ACTIONS(47), 4, + anon_sym___noreturn, + anon_sym___cold, + ACTIONS(49), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(746), 5, + STATE(873), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(697), 7, + STATE(805), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -69282,7 +80769,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(51), 9, + ACTIONS(53), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -69292,7 +80779,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - ACTIONS(49), 10, + ACTIONS(51), 10, anon_sym_extern, anon_sym_static, anon_sym_auto, @@ -69303,25 +80790,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [7993] = 21, + [10896] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(89), 1, anon_sym_sizeof, - ACTIONS(91), 1, - anon_sym_offsetof, ACTIONS(93), 1, + anon_sym_offsetof, + ACTIONS(95), 1, anon_sym__Generic, - ACTIONS(163), 1, + ACTIONS(165), 1, sym_number_literal, - ACTIONS(1722), 1, + ACTIONS(1773), 1, sym_identifier, - ACTIONS(2243), 1, - anon_sym_LPAREN2, - STATE(659), 1, + STATE(671), 1, sym_string_literal, - STATE(686), 1, + STATE(1181), 1, sym_expression, + STATE(2145), 1, + sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -69331,43 +80820,43 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(85), 2, + ACTIONS(87), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(95), 2, + ACTIONS(97), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(105), 2, + ACTIONS(107), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(165), 2, + ACTIONS(167), 2, sym_true, sym_false, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(99), 5, + ACTIONS(101), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(101), 5, + ACTIONS(103), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(818), 5, + STATE(944), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(663), 16, + STATE(758), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -69384,71 +80873,71 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [8095] = 21, + [11001] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(87), 1, - anon_sym_sizeof, - ACTIONS(91), 1, - anon_sym_offsetof, ACTIONS(93), 1, + anon_sym_offsetof, + ACTIONS(95), 1, anon_sym__Generic, - ACTIONS(163), 1, + ACTIONS(165), 1, sym_number_literal, - ACTIONS(1722), 1, + ACTIONS(1429), 1, sym_identifier, - STATE(659), 1, + ACTIONS(1779), 1, + anon_sym_sizeof, + ACTIONS(2244), 1, + anon_sym_LPAREN2, + STATE(671), 1, sym_string_literal, - STATE(1072), 1, + STATE(1038), 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(85), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(95), 2, + ACTIONS(97), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(105), 2, + ACTIONS(107), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(165), 2, + ACTIONS(167), 2, sym_true, sym_false, - ACTIONS(89), 5, + ACTIONS(1775), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1777), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2018), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2246), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(91), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(99), 5, + ACTIONS(101), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(101), 5, + ACTIONS(103), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(818), 5, + STATE(762), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(663), 16, + STATE(758), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -69465,71 +80954,71 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [8197] = 21, + [11103] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_offsetof, ACTIONS(93), 1, + anon_sym_offsetof, + ACTIONS(95), 1, anon_sym__Generic, - ACTIONS(163), 1, + ACTIONS(165), 1, sym_number_literal, - ACTIONS(1785), 1, - anon_sym_sizeof, - ACTIONS(2183), 1, + ACTIONS(1429), 1, sym_identifier, - ACTIONS(2185), 1, + ACTIONS(1779), 1, + anon_sym_sizeof, + ACTIONS(2244), 1, anon_sym_LPAREN2, - STATE(799), 1, + STATE(671), 1, sym_string_literal, - STATE(983), 1, + STATE(1047), 1, sym_expression, - ACTIONS(95), 2, + ACTIONS(97), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(105), 2, + ACTIONS(107), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(165), 2, + ACTIONS(167), 2, sym_true, sym_false, - ACTIONS(1781), 2, + ACTIONS(1775), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1783), 2, + ACTIONS(1777), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2165), 2, + ACTIONS(2018), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2187), 2, + ACTIONS(2246), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(99), 5, + ACTIONS(101), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(101), 5, + ACTIONS(103), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(890), 5, + STATE(762), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(663), 16, + STATE(758), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -69546,71 +81035,152 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [8299] = 21, + [11205] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_offsetof, ACTIONS(93), 1, + anon_sym_offsetof, + ACTIONS(95), 1, anon_sym__Generic, - ACTIONS(163), 1, + ACTIONS(165), 1, sym_number_literal, - ACTIONS(1785), 1, - anon_sym_sizeof, - ACTIONS(2183), 1, + ACTIONS(1429), 1, sym_identifier, - ACTIONS(2185), 1, + ACTIONS(1779), 1, + anon_sym_sizeof, + ACTIONS(2244), 1, anon_sym_LPAREN2, - STATE(799), 1, + STATE(671), 1, sym_string_literal, - STATE(987), 1, + STATE(1044), 1, sym_expression, - ACTIONS(95), 2, + ACTIONS(97), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(105), 2, + ACTIONS(107), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(165), 2, + ACTIONS(167), 2, sym_true, sym_false, - ACTIONS(1781), 2, + ACTIONS(1775), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1783), 2, + ACTIONS(1777), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2165), 2, + ACTIONS(2018), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2187), 2, + ACTIONS(2246), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(99), 5, + ACTIONS(101), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, + ACTIONS(103), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(762), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(758), 16, + sym__string, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [11307] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(89), 1, + anon_sym_sizeof, + ACTIONS(93), 1, + anon_sym_offsetof, + ACTIONS(95), 1, + anon_sym__Generic, + ACTIONS(165), 1, + sym_number_literal, + ACTIONS(1773), 1, + sym_identifier, + STATE(671), 1, + sym_string_literal, + STATE(1218), 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(87), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(97), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(107), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(167), 2, + sym_true, + sym_false, + ACTIONS(91), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, ACTIONS(101), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(103), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(890), 5, + STATE(944), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(663), 16, + STATE(758), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -69627,71 +81197,71 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [8401] = 21, + [11409] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_offsetof, ACTIONS(93), 1, + anon_sym_offsetof, + ACTIONS(95), 1, anon_sym__Generic, - ACTIONS(163), 1, + ACTIONS(165), 1, sym_number_literal, - ACTIONS(1801), 1, + ACTIONS(1429), 1, sym_identifier, - ACTIONS(1807), 1, + ACTIONS(1461), 1, anon_sym_sizeof, - ACTIONS(1861), 1, + ACTIONS(2284), 1, anon_sym_LPAREN2, - STATE(659), 1, + STATE(940), 1, sym_string_literal, - STATE(1034), 1, + STATE(989), 1, sym_expression, - ACTIONS(95), 2, + ACTIONS(97), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(105), 2, + ACTIONS(107), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(165), 2, + ACTIONS(167), 2, sym_true, sym_false, - ACTIONS(1803), 2, + ACTIONS(1457), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1805), 2, + ACTIONS(1459), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1865), 2, + ACTIONS(2276), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1875), 2, + ACTIONS(2286), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(99), 5, + ACTIONS(101), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(101), 5, + ACTIONS(103), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(943), 5, + STATE(762), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(663), 16, + STATE(758), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -69708,71 +81278,71 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [8503] = 21, + [11511] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_offsetof, ACTIONS(93), 1, + anon_sym_offsetof, + ACTIONS(95), 1, anon_sym__Generic, - ACTIONS(163), 1, + ACTIONS(165), 1, sym_number_literal, - ACTIONS(1397), 1, + ACTIONS(2000), 1, sym_identifier, - ACTIONS(1720), 1, + ACTIONS(2006), 1, anon_sym_sizeof, - ACTIONS(2213), 1, + ACTIONS(2014), 1, anon_sym_LPAREN2, - STATE(659), 1, + STATE(671), 1, sym_string_literal, - STATE(926), 1, + STATE(1049), 1, sym_expression, - ACTIONS(95), 2, + ACTIONS(97), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(105), 2, + ACTIONS(107), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(165), 2, + ACTIONS(167), 2, sym_true, sym_false, - ACTIONS(1716), 2, + ACTIONS(2002), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1718), 2, + ACTIONS(2004), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1865), 2, + ACTIONS(2018), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2215), 2, + ACTIONS(2028), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(99), 5, + ACTIONS(101), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(101), 5, + ACTIONS(103), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(670), 5, + STATE(1066), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(663), 16, + STATE(758), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -69789,71 +81359,71 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [8605] = 21, + [11613] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_offsetof, ACTIONS(93), 1, + anon_sym_offsetof, + ACTIONS(95), 1, anon_sym__Generic, - ACTIONS(163), 1, + ACTIONS(165), 1, sym_number_literal, - ACTIONS(1397), 1, - sym_identifier, ACTIONS(1429), 1, + sym_identifier, + ACTIONS(1779), 1, anon_sym_sizeof, - ACTIONS(2163), 1, + ACTIONS(2244), 1, anon_sym_LPAREN2, - STATE(799), 1, + STATE(671), 1, sym_string_literal, - STATE(876), 1, + STATE(1034), 1, sym_expression, - ACTIONS(95), 2, + ACTIONS(97), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(105), 2, + ACTIONS(107), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(165), 2, + ACTIONS(167), 2, sym_true, sym_false, - ACTIONS(1425), 2, + ACTIONS(1775), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1427), 2, + ACTIONS(1777), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2165), 2, + ACTIONS(2018), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2167), 2, + ACTIONS(2246), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(99), 5, + ACTIONS(101), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(101), 5, + ACTIONS(103), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(670), 5, + STATE(762), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(663), 16, + STATE(758), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -69870,71 +81440,134 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [8707] = 21, + [11715] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2370), 10, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(2368), 48, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___scanf, + anon_sym___printf, + anon_sym___read_mostly, + anon_sym___must_hold, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + anon_sym_asm, + anon_sym___asm__, + sym_identifier, + [11781] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_offsetof, ACTIONS(93), 1, + anon_sym_offsetof, + ACTIONS(95), 1, anon_sym__Generic, - ACTIONS(163), 1, + ACTIONS(165), 1, sym_number_literal, - ACTIONS(1397), 1, + ACTIONS(1429), 1, sym_identifier, - ACTIONS(1720), 1, + ACTIONS(1461), 1, anon_sym_sizeof, - ACTIONS(2213), 1, + ACTIONS(2284), 1, anon_sym_LPAREN2, - STATE(659), 1, + STATE(940), 1, sym_string_literal, - STATE(928), 1, + STATE(993), 1, sym_expression, - ACTIONS(95), 2, + ACTIONS(97), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(105), 2, + ACTIONS(107), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(165), 2, + ACTIONS(167), 2, sym_true, sym_false, - ACTIONS(1716), 2, + ACTIONS(1457), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1718), 2, + ACTIONS(1459), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1865), 2, + ACTIONS(2276), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2215), 2, + ACTIONS(2286), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(99), 5, + ACTIONS(101), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(101), 5, + ACTIONS(103), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(670), 5, + STATE(762), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(663), 16, + STATE(758), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -69951,71 +81584,71 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [8809] = 21, + [11883] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_offsetof, + ACTIONS(89), 1, + anon_sym_sizeof, ACTIONS(93), 1, + anon_sym_offsetof, + ACTIONS(95), 1, anon_sym__Generic, - ACTIONS(163), 1, + ACTIONS(165), 1, sym_number_literal, - ACTIONS(1397), 1, + ACTIONS(1773), 1, sym_identifier, - ACTIONS(1720), 1, - anon_sym_sizeof, - ACTIONS(2213), 1, + ACTIONS(2372), 1, anon_sym_LPAREN2, - STATE(659), 1, + STATE(671), 1, sym_string_literal, - STATE(930), 1, + STATE(782), 1, sym_expression, - ACTIONS(95), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(105), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(165), 2, - sym_true, - sym_false, - ACTIONS(1716), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1718), 2, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1865), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2215), 2, + ACTIONS(87), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(89), 5, + ACTIONS(97), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(107), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(167), 2, + sym_true, + sym_false, + ACTIONS(91), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(99), 5, + ACTIONS(101), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(101), 5, + ACTIONS(103), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(670), 5, + STATE(944), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(663), 16, + STATE(758), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -70032,71 +81665,71 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [8911] = 21, + [11985] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_offsetof, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(89), 1, + anon_sym_sizeof, ACTIONS(93), 1, + anon_sym_offsetof, + ACTIONS(95), 1, anon_sym__Generic, - ACTIONS(163), 1, + ACTIONS(165), 1, sym_number_literal, - ACTIONS(1801), 1, + ACTIONS(1773), 1, sym_identifier, - ACTIONS(1807), 1, - anon_sym_sizeof, - ACTIONS(1861), 1, - anon_sym_LPAREN2, - STATE(659), 1, + STATE(671), 1, sym_string_literal, - STATE(1044), 1, + STATE(783), 1, sym_expression, - ACTIONS(95), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(105), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(165), 2, - sym_true, - sym_false, - ACTIONS(1803), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1805), 2, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1865), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1875), 2, + ACTIONS(87), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(89), 5, + ACTIONS(97), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(107), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(167), 2, + sym_true, + sym_false, + ACTIONS(91), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(99), 5, + ACTIONS(101), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(101), 5, + ACTIONS(103), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(943), 5, + STATE(944), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(663), 16, + STATE(758), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -70113,71 +81746,71 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [9013] = 21, + [12087] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_offsetof, ACTIONS(93), 1, + anon_sym_offsetof, + ACTIONS(95), 1, anon_sym__Generic, - ACTIONS(163), 1, + ACTIONS(165), 1, sym_number_literal, - ACTIONS(1397), 1, + ACTIONS(1429), 1, sym_identifier, - ACTIONS(1720), 1, + ACTIONS(1461), 1, anon_sym_sizeof, - ACTIONS(2213), 1, + ACTIONS(2284), 1, anon_sym_LPAREN2, - STATE(659), 1, + STATE(940), 1, sym_string_literal, - STATE(913), 1, + STATE(986), 1, sym_expression, - ACTIONS(95), 2, + ACTIONS(97), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(105), 2, + ACTIONS(107), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(165), 2, + ACTIONS(167), 2, sym_true, sym_false, - ACTIONS(1716), 2, + ACTIONS(1457), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1718), 2, + ACTIONS(1459), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1865), 2, + ACTIONS(2276), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2215), 2, + ACTIONS(2286), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(99), 5, + ACTIONS(101), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(101), 5, + ACTIONS(103), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(670), 5, + STATE(762), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(663), 16, + STATE(758), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -70194,71 +81827,71 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [9115] = 21, + [12189] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_offsetof, ACTIONS(93), 1, + anon_sym_offsetof, + ACTIONS(95), 1, anon_sym__Generic, - ACTIONS(163), 1, + ACTIONS(165), 1, sym_number_literal, - ACTIONS(1397), 1, + ACTIONS(2000), 1, sym_identifier, - ACTIONS(1720), 1, + ACTIONS(2006), 1, anon_sym_sizeof, - ACTIONS(2213), 1, + ACTIONS(2014), 1, anon_sym_LPAREN2, - STATE(659), 1, + STATE(671), 1, sym_string_literal, - STATE(914), 1, + STATE(1050), 1, sym_expression, - ACTIONS(95), 2, + ACTIONS(97), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(105), 2, + ACTIONS(107), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(165), 2, + ACTIONS(167), 2, sym_true, sym_false, - ACTIONS(1716), 2, + ACTIONS(2002), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1718), 2, + ACTIONS(2004), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1865), 2, + ACTIONS(2018), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2215), 2, + ACTIONS(2028), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(99), 5, + ACTIONS(101), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(101), 5, + ACTIONS(103), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(670), 5, + STATE(1066), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(663), 16, + STATE(758), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -70275,71 +81908,71 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [9217] = 21, + [12291] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_offsetof, ACTIONS(93), 1, + anon_sym_offsetof, + ACTIONS(95), 1, anon_sym__Generic, - ACTIONS(163), 1, + ACTIONS(165), 1, sym_number_literal, - ACTIONS(1801), 1, + ACTIONS(1429), 1, sym_identifier, - ACTIONS(1807), 1, + ACTIONS(1779), 1, anon_sym_sizeof, - ACTIONS(1861), 1, + ACTIONS(2244), 1, anon_sym_LPAREN2, - STATE(659), 1, + STATE(671), 1, sym_string_literal, - STATE(1064), 1, + STATE(1043), 1, sym_expression, - ACTIONS(95), 2, + ACTIONS(97), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(105), 2, + ACTIONS(107), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(165), 2, + ACTIONS(167), 2, sym_true, sym_false, - ACTIONS(1803), 2, + ACTIONS(1775), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1805), 2, + ACTIONS(1777), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1865), 2, + ACTIONS(2018), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1875), 2, + ACTIONS(2246), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(99), 5, + ACTIONS(101), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(101), 5, + ACTIONS(103), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(943), 5, + STATE(762), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(663), 16, + STATE(758), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -70356,24 +81989,24 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [9319] = 21, + [12393] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(87), 1, + ACTIONS(89), 1, anon_sym_sizeof, - ACTIONS(91), 1, - anon_sym_offsetof, ACTIONS(93), 1, + anon_sym_offsetof, + ACTIONS(95), 1, anon_sym__Generic, - ACTIONS(163), 1, + ACTIONS(165), 1, sym_number_literal, - ACTIONS(1722), 1, + ACTIONS(1773), 1, sym_identifier, - STATE(659), 1, + STATE(671), 1, sym_string_literal, - STATE(1071), 1, + STATE(1146), 1, sym_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -70384,43 +82017,43 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(85), 2, + ACTIONS(87), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(95), 2, + ACTIONS(97), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(105), 2, + ACTIONS(107), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(165), 2, + ACTIONS(167), 2, sym_true, sym_false, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(99), 5, + ACTIONS(101), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(101), 5, + ACTIONS(103), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(818), 5, + STATE(944), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(663), 16, + STATE(758), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -70437,71 +82070,71 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [9421] = 21, + [12495] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_offsetof, ACTIONS(93), 1, + anon_sym_offsetof, + ACTIONS(95), 1, anon_sym__Generic, - ACTIONS(163), 1, + ACTIONS(165), 1, sym_number_literal, - ACTIONS(1801), 1, + ACTIONS(1429), 1, sym_identifier, - ACTIONS(1807), 1, + ACTIONS(1461), 1, anon_sym_sizeof, - ACTIONS(1861), 1, + ACTIONS(2284), 1, anon_sym_LPAREN2, - STATE(659), 1, + STATE(940), 1, sym_string_literal, - STATE(1038), 1, + STATE(985), 1, sym_expression, - ACTIONS(95), 2, + ACTIONS(97), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(105), 2, + ACTIONS(107), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(165), 2, + ACTIONS(167), 2, sym_true, sym_false, - ACTIONS(1803), 2, + ACTIONS(1457), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1805), 2, + ACTIONS(1459), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1865), 2, + ACTIONS(2276), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1875), 2, + ACTIONS(2286), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(99), 5, + ACTIONS(101), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(101), 5, + ACTIONS(103), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(943), 5, + STATE(762), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(663), 16, + STATE(758), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -70518,71 +82151,71 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [9523] = 21, + [12597] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_offsetof, ACTIONS(93), 1, + anon_sym_offsetof, + ACTIONS(95), 1, anon_sym__Generic, - ACTIONS(163), 1, + ACTIONS(165), 1, sym_number_literal, - ACTIONS(1397), 1, - sym_identifier, - ACTIONS(1429), 1, + ACTIONS(1948), 1, anon_sym_sizeof, - ACTIONS(2163), 1, + ACTIONS(2272), 1, + sym_identifier, + ACTIONS(2274), 1, anon_sym_LPAREN2, - STATE(799), 1, + STATE(940), 1, sym_string_literal, - STATE(877), 1, + STATE(1104), 1, sym_expression, - ACTIONS(95), 2, + ACTIONS(97), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(105), 2, + ACTIONS(107), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(165), 2, + ACTIONS(167), 2, sym_true, sym_false, - ACTIONS(1425), 2, + ACTIONS(1944), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1427), 2, + ACTIONS(1946), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2165), 2, + ACTIONS(2276), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2167), 2, + ACTIONS(2278), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(99), 5, + ACTIONS(101), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(101), 5, + ACTIONS(103), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(670), 5, + STATE(997), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(663), 16, + STATE(758), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -70599,155 +82232,71 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [9625] = 24, + [12699] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(41), 1, - anon_sym___declspec, - ACTIONS(55), 1, - sym_primitive_type, - ACTIONS(57), 1, - anon_sym_enum, - ACTIONS(59), 1, - anon_sym_struct, - ACTIONS(61), 1, - anon_sym_union, - ACTIONS(1137), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1789), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2245), 1, - sym_identifier, - STATE(703), 1, - sym_alignas_qualifier, - STATE(710), 1, - sym_type_specifier, - STATE(747), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1211), 1, - sym__declaration_specifiers, - STATE(1692), 1, - sym_parameter_declaration, - STATE(1731), 1, - sym_variadic_parameter, - ACTIONS(33), 2, - anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(35), 2, - anon_sym___scanf, - anon_sym___printf, - ACTIONS(53), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(37), 3, - anon_sym___read_mostly, - anon_sym___ro_after_init, - anon_sym___init, - ACTIONS(47), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(746), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(697), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(51), 9, - anon_sym___extension__, - 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(49), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - [9733] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(91), 1, - anon_sym_offsetof, ACTIONS(93), 1, + anon_sym_offsetof, + ACTIONS(95), 1, anon_sym__Generic, - ACTIONS(163), 1, + ACTIONS(165), 1, sym_number_literal, - ACTIONS(1801), 1, + ACTIONS(1429), 1, sym_identifier, - ACTIONS(1807), 1, + ACTIONS(1461), 1, anon_sym_sizeof, - ACTIONS(1861), 1, + ACTIONS(2284), 1, anon_sym_LPAREN2, - STATE(659), 1, + STATE(940), 1, sym_string_literal, - STATE(1032), 1, + STATE(988), 1, sym_expression, - ACTIONS(95), 2, + ACTIONS(97), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(105), 2, + ACTIONS(107), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(165), 2, + ACTIONS(167), 2, sym_true, sym_false, - ACTIONS(1803), 2, + ACTIONS(1457), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1805), 2, + ACTIONS(1459), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1865), 2, + ACTIONS(2276), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1875), 2, + ACTIONS(2286), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(99), 5, + ACTIONS(101), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(101), 5, + ACTIONS(103), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(943), 5, + STATE(762), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(663), 16, + STATE(758), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -70764,71 +82313,71 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [9835] = 21, + [12801] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_offsetof, ACTIONS(93), 1, + anon_sym_offsetof, + ACTIONS(95), 1, anon_sym__Generic, - ACTIONS(163), 1, + ACTIONS(165), 1, sym_number_literal, - ACTIONS(1801), 1, + ACTIONS(2000), 1, sym_identifier, - ACTIONS(1807), 1, + ACTIONS(2006), 1, anon_sym_sizeof, - ACTIONS(1861), 1, + ACTIONS(2014), 1, anon_sym_LPAREN2, - STATE(659), 1, + STATE(671), 1, sym_string_literal, - STATE(1029), 1, + STATE(1197), 1, sym_expression, - ACTIONS(95), 2, + ACTIONS(97), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(105), 2, + ACTIONS(107), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(165), 2, + ACTIONS(167), 2, sym_true, sym_false, - ACTIONS(1803), 2, + ACTIONS(2002), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1805), 2, + ACTIONS(2004), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1865), 2, + ACTIONS(2018), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1875), 2, + ACTIONS(2028), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(99), 5, + ACTIONS(101), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(101), 5, + ACTIONS(103), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(943), 5, + STATE(1066), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(663), 16, + STATE(758), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -70845,71 +82394,71 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [9937] = 21, + [12903] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(87), 1, - anon_sym_sizeof, - ACTIONS(91), 1, - anon_sym_offsetof, ACTIONS(93), 1, + anon_sym_offsetof, + ACTIONS(95), 1, anon_sym__Generic, - ACTIONS(163), 1, + ACTIONS(165), 1, sym_number_literal, - ACTIONS(1722), 1, + ACTIONS(1948), 1, + anon_sym_sizeof, + ACTIONS(2272), 1, sym_identifier, - STATE(659), 1, + ACTIONS(2274), 1, + anon_sym_LPAREN2, + STATE(940), 1, sym_string_literal, - STATE(1022), 1, + STATE(1105), 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(85), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(95), 2, + ACTIONS(97), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(105), 2, + ACTIONS(107), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(165), 2, + ACTIONS(167), 2, sym_true, sym_false, - ACTIONS(89), 5, + ACTIONS(1944), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1946), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2276), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2278), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(91), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(99), 5, + ACTIONS(101), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(101), 5, + ACTIONS(103), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(818), 5, + STATE(997), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(663), 16, + STATE(758), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -70926,71 +82475,71 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [10039] = 21, + [13005] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_offsetof, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(89), 1, + anon_sym_sizeof, ACTIONS(93), 1, + anon_sym_offsetof, + ACTIONS(95), 1, anon_sym__Generic, - ACTIONS(163), 1, + ACTIONS(165), 1, sym_number_literal, - ACTIONS(1801), 1, + ACTIONS(1773), 1, sym_identifier, - ACTIONS(1807), 1, - anon_sym_sizeof, - ACTIONS(1861), 1, - anon_sym_LPAREN2, - STATE(659), 1, + STATE(671), 1, sym_string_literal, STATE(1055), 1, sym_expression, - ACTIONS(95), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(105), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(165), 2, - sym_true, - sym_false, - ACTIONS(1803), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1805), 2, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1865), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1875), 2, + ACTIONS(87), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(89), 5, + ACTIONS(97), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(107), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(167), 2, + sym_true, + sym_false, + ACTIONS(91), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(99), 5, + ACTIONS(101), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(101), 5, + ACTIONS(103), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(943), 5, + STATE(944), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(663), 16, + STATE(758), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -71007,71 +82556,71 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [10141] = 21, + [13107] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_offsetof, ACTIONS(93), 1, + anon_sym_offsetof, + ACTIONS(95), 1, anon_sym__Generic, - ACTIONS(163), 1, + ACTIONS(165), 1, sym_number_literal, - ACTIONS(1397), 1, + ACTIONS(1429), 1, sym_identifier, - ACTIONS(1720), 1, + ACTIONS(1779), 1, anon_sym_sizeof, - ACTIONS(2213), 1, + ACTIONS(2244), 1, anon_sym_LPAREN2, - STATE(659), 1, + STATE(671), 1, sym_string_literal, - STATE(915), 1, + STATE(1035), 1, sym_expression, - ACTIONS(95), 2, + ACTIONS(97), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(105), 2, + ACTIONS(107), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(165), 2, + ACTIONS(167), 2, sym_true, sym_false, - ACTIONS(1716), 2, + ACTIONS(1775), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1718), 2, + ACTIONS(1777), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1865), 2, + ACTIONS(2018), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2215), 2, + ACTIONS(2246), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(99), 5, + ACTIONS(101), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(101), 5, + ACTIONS(103), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(670), 5, + STATE(762), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(663), 16, + STATE(758), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -71088,71 +82637,71 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [10243] = 21, + [13209] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_offsetof, ACTIONS(93), 1, + anon_sym_offsetof, + ACTIONS(95), 1, anon_sym__Generic, - ACTIONS(163), 1, + ACTIONS(165), 1, sym_number_literal, - ACTIONS(1397), 1, - sym_identifier, - ACTIONS(1409), 1, + ACTIONS(1948), 1, anon_sym_sizeof, - ACTIONS(2107), 1, + ACTIONS(2272), 1, + sym_identifier, + ACTIONS(2274), 1, anon_sym_LPAREN2, - STATE(659), 1, + STATE(940), 1, sym_string_literal, - STATE(801), 1, + STATE(1098), 1, sym_expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(95), 2, + ACTIONS(97), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(105), 2, + ACTIONS(107), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(165), 2, + ACTIONS(167), 2, sym_true, sym_false, - ACTIONS(1401), 2, + ACTIONS(1944), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1403), 2, + ACTIONS(1946), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2109), 2, + ACTIONS(2276), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2278), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(99), 5, + ACTIONS(101), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(101), 5, + ACTIONS(103), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(670), 5, + STATE(997), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(663), 16, + STATE(758), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -71169,71 +82718,71 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [10345] = 21, + [13311] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_offsetof, ACTIONS(93), 1, + anon_sym_offsetof, + ACTIONS(95), 1, anon_sym__Generic, - ACTIONS(163), 1, + ACTIONS(165), 1, sym_number_literal, - ACTIONS(1397), 1, - sym_identifier, - ACTIONS(1720), 1, + ACTIONS(1948), 1, anon_sym_sizeof, - ACTIONS(2213), 1, + ACTIONS(2272), 1, + sym_identifier, + ACTIONS(2274), 1, anon_sym_LPAREN2, - STATE(659), 1, + STATE(940), 1, sym_string_literal, - STATE(921), 1, + STATE(1111), 1, sym_expression, - ACTIONS(95), 2, + ACTIONS(97), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(105), 2, + ACTIONS(107), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(165), 2, + ACTIONS(167), 2, sym_true, sym_false, - ACTIONS(1716), 2, + ACTIONS(1944), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1718), 2, + ACTIONS(1946), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1865), 2, + ACTIONS(2276), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2215), 2, + ACTIONS(2278), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(99), 5, + ACTIONS(101), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(101), 5, + ACTIONS(103), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(670), 5, + STATE(997), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(663), 16, + STATE(758), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -71250,152 +82799,71 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [10447] = 21, + [13413] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_offsetof, ACTIONS(93), 1, + anon_sym_offsetof, + ACTIONS(95), 1, anon_sym__Generic, - ACTIONS(163), 1, + ACTIONS(165), 1, sym_number_literal, - ACTIONS(1801), 1, - sym_identifier, - ACTIONS(1807), 1, + ACTIONS(1948), 1, anon_sym_sizeof, - ACTIONS(1861), 1, + ACTIONS(2272), 1, + sym_identifier, + ACTIONS(2274), 1, anon_sym_LPAREN2, - STATE(659), 1, + STATE(940), 1, sym_string_literal, - STATE(1054), 1, + STATE(1112), 1, sym_expression, - ACTIONS(95), 2, + ACTIONS(97), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(105), 2, + ACTIONS(107), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(165), 2, + ACTIONS(167), 2, sym_true, sym_false, - ACTIONS(1803), 2, + ACTIONS(1944), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1805), 2, + ACTIONS(1946), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1865), 2, + ACTIONS(2276), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1875), 2, + ACTIONS(2278), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(99), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, ACTIONS(101), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(943), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(663), 16, - sym__string, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_alignof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_gnu_asm_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [10549] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(87), 1, - anon_sym_sizeof, - ACTIONS(91), 1, - anon_sym_offsetof, - ACTIONS(93), 1, - anon_sym__Generic, - ACTIONS(163), 1, - sym_number_literal, - ACTIONS(1722), 1, - sym_identifier, - STATE(659), 1, - sym_string_literal, - STATE(936), 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(85), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(95), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(105), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(165), 2, - sym_true, - sym_false, - ACTIONS(89), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(99), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(101), 5, + ACTIONS(103), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(818), 5, + STATE(997), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(663), 16, + STATE(758), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -71412,154 +82880,71 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [10651] = 23, + [13515] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2247), 1, - sym_identifier, - ACTIONS(2265), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2268), 1, - anon_sym___declspec, - ACTIONS(2271), 1, - anon_sym_LBRACE, - ACTIONS(2279), 1, - sym_primitive_type, - ACTIONS(2282), 1, - anon_sym_enum, - ACTIONS(2285), 1, - anon_sym_struct, - ACTIONS(2288), 1, - anon_sym_union, - STATE(703), 1, - sym_alignas_qualifier, - STATE(710), 1, - sym_type_specifier, - STATE(747), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1136), 1, - sym__declaration_specifiers, - ACTIONS(2256), 2, - anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(2259), 2, - anon_sym___scanf, - anon_sym___printf, - ACTIONS(2276), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(562), 2, - sym_declaration, - aux_sym__old_style_function_definition_repeat1, - ACTIONS(2262), 3, - anon_sym___read_mostly, - anon_sym___ro_after_init, - anon_sym___init, - ACTIONS(2273), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(746), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(697), 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(2250), 9, - anon_sym___extension__, - 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(2253), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - [10757] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(91), 1, - anon_sym_offsetof, ACTIONS(93), 1, + anon_sym_offsetof, + ACTIONS(95), 1, anon_sym__Generic, - ACTIONS(163), 1, + ACTIONS(165), 1, sym_number_literal, - ACTIONS(1785), 1, - anon_sym_sizeof, - ACTIONS(2183), 1, + ACTIONS(1429), 1, sym_identifier, - ACTIONS(2185), 1, + ACTIONS(1779), 1, + anon_sym_sizeof, + ACTIONS(2244), 1, anon_sym_LPAREN2, - STATE(799), 1, + STATE(671), 1, sym_string_literal, - STATE(977), 1, + STATE(1036), 1, sym_expression, - ACTIONS(95), 2, + ACTIONS(97), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(105), 2, + ACTIONS(107), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(165), 2, + ACTIONS(167), 2, sym_true, sym_false, - ACTIONS(1781), 2, + ACTIONS(1775), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1783), 2, + ACTIONS(1777), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2165), 2, + ACTIONS(2018), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2187), 2, + ACTIONS(2246), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(99), 5, + ACTIONS(101), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(101), 5, + ACTIONS(103), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(890), 5, + STATE(762), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(663), 16, + STATE(758), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -71576,71 +82961,71 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [10859] = 21, + [13617] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_offsetof, ACTIONS(93), 1, + anon_sym_offsetof, + ACTIONS(95), 1, anon_sym__Generic, - ACTIONS(163), 1, + ACTIONS(165), 1, sym_number_literal, - ACTIONS(1801), 1, - sym_identifier, - ACTIONS(1807), 1, + ACTIONS(1948), 1, anon_sym_sizeof, - ACTIONS(1861), 1, + ACTIONS(2272), 1, + sym_identifier, + ACTIONS(2274), 1, anon_sym_LPAREN2, - STATE(659), 1, + STATE(940), 1, sym_string_literal, - STATE(1053), 1, + STATE(1113), 1, sym_expression, - ACTIONS(95), 2, + ACTIONS(97), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(105), 2, + ACTIONS(107), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(165), 2, + ACTIONS(167), 2, sym_true, sym_false, - ACTIONS(1803), 2, + ACTIONS(1944), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1805), 2, + ACTIONS(1946), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1865), 2, + ACTIONS(2276), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1875), 2, + ACTIONS(2278), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(99), 5, + ACTIONS(101), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(101), 5, + ACTIONS(103), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(943), 5, + STATE(997), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(663), 16, + STATE(758), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -71657,71 +83042,71 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [10961] = 21, + [13719] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_offsetof, ACTIONS(93), 1, + anon_sym_offsetof, + ACTIONS(95), 1, anon_sym__Generic, - ACTIONS(163), 1, + ACTIONS(165), 1, sym_number_literal, - ACTIONS(1801), 1, - sym_identifier, - ACTIONS(1807), 1, + ACTIONS(1948), 1, anon_sym_sizeof, - ACTIONS(1861), 1, + ACTIONS(2272), 1, + sym_identifier, + ACTIONS(2274), 1, anon_sym_LPAREN2, - STATE(659), 1, + STATE(940), 1, sym_string_literal, - STATE(916), 1, + STATE(1114), 1, sym_expression, - ACTIONS(95), 2, + ACTIONS(97), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(105), 2, + ACTIONS(107), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(165), 2, + ACTIONS(167), 2, sym_true, sym_false, - ACTIONS(1803), 2, + ACTIONS(1944), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1805), 2, + ACTIONS(1946), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1865), 2, + ACTIONS(2276), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1875), 2, + ACTIONS(2278), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(99), 5, + ACTIONS(101), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(101), 5, + ACTIONS(103), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(943), 5, + STATE(997), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(663), 16, + STATE(758), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -71738,71 +83123,71 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [11063] = 21, + [13821] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_offsetof, ACTIONS(93), 1, + anon_sym_offsetof, + ACTIONS(95), 1, anon_sym__Generic, - ACTIONS(163), 1, + ACTIONS(165), 1, sym_number_literal, - ACTIONS(1801), 1, - sym_identifier, - ACTIONS(1807), 1, + ACTIONS(1948), 1, anon_sym_sizeof, - ACTIONS(1861), 1, + ACTIONS(2272), 1, + sym_identifier, + ACTIONS(2274), 1, anon_sym_LPAREN2, - STATE(659), 1, + STATE(940), 1, sym_string_literal, - STATE(1070), 1, + STATE(1115), 1, sym_expression, - ACTIONS(95), 2, + ACTIONS(97), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(105), 2, + ACTIONS(107), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(165), 2, + ACTIONS(167), 2, sym_true, sym_false, - ACTIONS(1803), 2, + ACTIONS(1944), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1805), 2, + ACTIONS(1946), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1865), 2, + ACTIONS(2276), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1875), 2, + ACTIONS(2278), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(99), 5, + ACTIONS(101), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(101), 5, + ACTIONS(103), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(943), 5, + STATE(997), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(663), 16, + STATE(758), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -71819,71 +83204,71 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [11165] = 21, + [13923] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_offsetof, ACTIONS(93), 1, + anon_sym_offsetof, + ACTIONS(95), 1, anon_sym__Generic, - ACTIONS(163), 1, + ACTIONS(165), 1, sym_number_literal, - ACTIONS(1801), 1, - sym_identifier, - ACTIONS(1807), 1, + ACTIONS(1948), 1, anon_sym_sizeof, - ACTIONS(1861), 1, + ACTIONS(2272), 1, + sym_identifier, + ACTIONS(2274), 1, anon_sym_LPAREN2, - STATE(659), 1, - sym_string_literal, - STATE(1066), 1, + STATE(801), 1, sym_expression, - ACTIONS(95), 2, + STATE(940), 1, + sym_string_literal, + ACTIONS(97), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(105), 2, + ACTIONS(107), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(165), 2, + ACTIONS(167), 2, sym_true, sym_false, - ACTIONS(1803), 2, + ACTIONS(1944), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1805), 2, + ACTIONS(1946), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1865), 2, + ACTIONS(2276), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1875), 2, + ACTIONS(2278), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(99), 5, + ACTIONS(101), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(101), 5, + ACTIONS(103), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(943), 5, + STATE(997), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(663), 16, + STATE(758), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -71900,71 +83285,71 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [11267] = 21, + [14025] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_offsetof, ACTIONS(93), 1, + anon_sym_offsetof, + ACTIONS(95), 1, anon_sym__Generic, - ACTIONS(163), 1, + ACTIONS(165), 1, sym_number_literal, - ACTIONS(1397), 1, - sym_identifier, - ACTIONS(1720), 1, + ACTIONS(1948), 1, anon_sym_sizeof, - ACTIONS(2213), 1, + ACTIONS(2272), 1, + sym_identifier, + ACTIONS(2274), 1, anon_sym_LPAREN2, - STATE(659), 1, + STATE(940), 1, sym_string_literal, - STATE(922), 1, + STATE(1117), 1, sym_expression, - ACTIONS(95), 2, + ACTIONS(97), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(105), 2, + ACTIONS(107), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(165), 2, + ACTIONS(167), 2, sym_true, sym_false, - ACTIONS(1716), 2, + ACTIONS(1944), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1718), 2, + ACTIONS(1946), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1865), 2, + ACTIONS(2276), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2215), 2, + ACTIONS(2278), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(99), 5, + ACTIONS(101), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(101), 5, + ACTIONS(103), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(670), 5, + STATE(997), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(663), 16, + STATE(758), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -71981,71 +83366,134 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [11369] = 21, + [14127] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2374), 24, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym___scanf, + anon_sym___printf, + anon_sym___read_mostly, + anon_sym___must_hold, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + anon_sym_EQ, + anon_sym_DOT, + sym_identifier, + ACTIONS(2376), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, + 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_DASH_GT, + [14193] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_offsetof, ACTIONS(93), 1, + anon_sym_offsetof, + ACTIONS(95), 1, anon_sym__Generic, - ACTIONS(163), 1, + ACTIONS(165), 1, sym_number_literal, - ACTIONS(1785), 1, - anon_sym_sizeof, - ACTIONS(2183), 1, + ACTIONS(1429), 1, sym_identifier, - ACTIONS(2185), 1, + ACTIONS(1779), 1, + anon_sym_sizeof, + ACTIONS(2244), 1, anon_sym_LPAREN2, - STATE(799), 1, + STATE(671), 1, sym_string_literal, - STATE(991), 1, + STATE(1040), 1, sym_expression, - ACTIONS(95), 2, + ACTIONS(97), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(105), 2, + ACTIONS(107), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(165), 2, + ACTIONS(167), 2, sym_true, sym_false, - ACTIONS(1781), 2, + ACTIONS(1775), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1783), 2, + ACTIONS(1777), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2165), 2, + ACTIONS(2018), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2187), 2, + ACTIONS(2246), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(99), 5, + ACTIONS(101), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(101), 5, + ACTIONS(103), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(890), 5, + STATE(762), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(663), 16, + STATE(758), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -72062,71 +83510,71 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [11471] = 21, + [14295] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_offsetof, ACTIONS(93), 1, + anon_sym_offsetof, + ACTIONS(95), 1, anon_sym__Generic, - ACTIONS(163), 1, + ACTIONS(165), 1, sym_number_literal, - ACTIONS(1785), 1, - anon_sym_sizeof, - ACTIONS(2183), 1, + ACTIONS(2000), 1, sym_identifier, - ACTIONS(2185), 1, + ACTIONS(2006), 1, + anon_sym_sizeof, + ACTIONS(2014), 1, anon_sym_LPAREN2, - STATE(799), 1, + STATE(671), 1, sym_string_literal, - STATE(985), 1, + STATE(1160), 1, sym_expression, - ACTIONS(95), 2, + ACTIONS(97), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(105), 2, + ACTIONS(107), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(165), 2, + ACTIONS(167), 2, sym_true, sym_false, - ACTIONS(1781), 2, + ACTIONS(2002), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1783), 2, + ACTIONS(2004), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2165), 2, + ACTIONS(2018), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2187), 2, + ACTIONS(2028), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(99), 5, + ACTIONS(101), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(101), 5, + ACTIONS(103), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(890), 5, + STATE(1066), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(663), 16, + STATE(758), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -72143,71 +83591,71 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [11573] = 21, + [14397] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_offsetof, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(89), 1, + anon_sym_sizeof, ACTIONS(93), 1, + anon_sym_offsetof, + ACTIONS(95), 1, anon_sym__Generic, - ACTIONS(163), 1, + ACTIONS(165), 1, sym_number_literal, - ACTIONS(1785), 1, - anon_sym_sizeof, - ACTIONS(2183), 1, + ACTIONS(1773), 1, sym_identifier, - ACTIONS(2185), 1, - anon_sym_LPAREN2, - STATE(799), 1, + STATE(671), 1, sym_string_literal, - STATE(993), 1, + STATE(1214), 1, sym_expression, - ACTIONS(95), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(105), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(165), 2, - sym_true, - sym_false, - ACTIONS(1781), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1783), 2, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2165), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2187), 2, + ACTIONS(87), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(89), 5, + ACTIONS(97), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(107), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(167), 2, + sym_true, + sym_false, + ACTIONS(91), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(99), 5, + ACTIONS(101), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(101), 5, + ACTIONS(103), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(890), 5, + STATE(944), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(663), 16, + STATE(758), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -72224,71 +83672,71 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [11675] = 21, + [14499] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_offsetof, ACTIONS(93), 1, + anon_sym_offsetof, + ACTIONS(95), 1, anon_sym__Generic, - ACTIONS(163), 1, + ACTIONS(165), 1, sym_number_literal, - ACTIONS(1785), 1, - anon_sym_sizeof, - ACTIONS(2183), 1, + ACTIONS(1429), 1, sym_identifier, - ACTIONS(2185), 1, + ACTIONS(1779), 1, + anon_sym_sizeof, + ACTIONS(2378), 1, anon_sym_LPAREN2, - STATE(799), 1, + STATE(671), 1, sym_string_literal, - STATE(975), 1, + STATE(1056), 1, sym_expression, - ACTIONS(95), 2, + ACTIONS(97), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(105), 2, + ACTIONS(107), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(165), 2, + ACTIONS(167), 2, sym_true, sym_false, - ACTIONS(1781), 2, + ACTIONS(1775), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1783), 2, + ACTIONS(1777), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2165), 2, + ACTIONS(2018), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2187), 2, + ACTIONS(2246), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(99), 5, + ACTIONS(101), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(101), 5, + ACTIONS(103), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(890), 5, + STATE(762), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(663), 16, + STATE(758), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -72305,71 +83753,71 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [11777] = 21, + [14601] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_offsetof, ACTIONS(93), 1, + anon_sym_offsetof, + ACTIONS(95), 1, anon_sym__Generic, - ACTIONS(163), 1, + ACTIONS(165), 1, sym_number_literal, - ACTIONS(1397), 1, + ACTIONS(2000), 1, sym_identifier, - ACTIONS(1720), 1, + ACTIONS(2006), 1, anon_sym_sizeof, - ACTIONS(2213), 1, + ACTIONS(2014), 1, anon_sym_LPAREN2, - STATE(659), 1, + STATE(671), 1, sym_string_literal, - STATE(923), 1, + STATE(1161), 1, sym_expression, - ACTIONS(95), 2, + ACTIONS(97), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(105), 2, + ACTIONS(107), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(165), 2, + ACTIONS(167), 2, sym_true, sym_false, - ACTIONS(1716), 2, + ACTIONS(2002), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1718), 2, + ACTIONS(2004), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1865), 2, + ACTIONS(2018), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2215), 2, + ACTIONS(2028), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(99), 5, + ACTIONS(101), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(101), 5, + ACTIONS(103), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(670), 5, + STATE(1066), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(663), 16, + STATE(758), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -72386,24 +83834,24 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [11879] = 21, + [14703] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(87), 1, + ACTIONS(89), 1, anon_sym_sizeof, - ACTIONS(91), 1, - anon_sym_offsetof, ACTIONS(93), 1, + anon_sym_offsetof, + ACTIONS(95), 1, anon_sym__Generic, - ACTIONS(163), 1, + ACTIONS(165), 1, sym_number_literal, - ACTIONS(1722), 1, + ACTIONS(1773), 1, sym_identifier, - STATE(659), 1, + STATE(671), 1, sym_string_literal, - STATE(931), 1, + STATE(1184), 1, sym_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -72414,43 +83862,43 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(85), 2, + ACTIONS(87), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(95), 2, + ACTIONS(97), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(105), 2, + ACTIONS(107), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(165), 2, + ACTIONS(167), 2, sym_true, sym_false, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(99), 5, + ACTIONS(101), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(101), 5, + ACTIONS(103), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(818), 5, + STATE(944), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(663), 16, + STATE(758), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -72467,71 +83915,71 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [11981] = 21, + [14805] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_offsetof, ACTIONS(93), 1, + anon_sym_offsetof, + ACTIONS(95), 1, anon_sym__Generic, - ACTIONS(163), 1, + ACTIONS(165), 1, sym_number_literal, - ACTIONS(1785), 1, + ACTIONS(1948), 1, anon_sym_sizeof, - ACTIONS(2183), 1, + ACTIONS(2272), 1, sym_identifier, - ACTIONS(2185), 1, + ACTIONS(2274), 1, anon_sym_LPAREN2, - STATE(799), 1, + STATE(940), 1, sym_string_literal, - STATE(994), 1, + STATE(1103), 1, sym_expression, - ACTIONS(95), 2, + ACTIONS(97), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(105), 2, + ACTIONS(107), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(165), 2, + ACTIONS(167), 2, sym_true, sym_false, - ACTIONS(1781), 2, + ACTIONS(1944), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1783), 2, + ACTIONS(1946), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2165), 2, + ACTIONS(2276), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2187), 2, + ACTIONS(2278), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(99), 5, + ACTIONS(101), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(101), 5, + ACTIONS(103), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(890), 5, + STATE(997), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(663), 16, + STATE(758), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -72548,71 +83996,71 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [12083] = 21, + [14907] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(87), 1, - anon_sym_sizeof, - ACTIONS(91), 1, - anon_sym_offsetof, ACTIONS(93), 1, + anon_sym_offsetof, + ACTIONS(95), 1, anon_sym__Generic, - ACTIONS(163), 1, + ACTIONS(165), 1, sym_number_literal, - ACTIONS(1722), 1, + ACTIONS(1429), 1, sym_identifier, - STATE(659), 1, + ACTIONS(1461), 1, + anon_sym_sizeof, + ACTIONS(2284), 1, + anon_sym_LPAREN2, + STATE(940), 1, sym_string_literal, - STATE(1078), 1, + STATE(984), 1, sym_expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(85), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(95), 2, + ACTIONS(97), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(105), 2, + ACTIONS(107), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(165), 2, + ACTIONS(167), 2, sym_true, sym_false, - ACTIONS(89), 5, + ACTIONS(1457), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1459), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2276), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2286), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(91), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(99), 5, + ACTIONS(101), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(101), 5, + ACTIONS(103), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(818), 5, + STATE(762), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(663), 16, + STATE(758), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -72629,71 +84077,137 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [12185] = 21, + [15009] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2380), 1, + sym_identifier, + STATE(520), 1, + sym_string_literal, + ACTIONS(103), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(2384), 22, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym___scanf, + anon_sym___printf, + anon_sym___read_mostly, + anon_sym___must_hold, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + anon_sym_EQ, + anon_sym_DOT, + ACTIONS(2382), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [15081] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_offsetof, ACTIONS(93), 1, + anon_sym_offsetof, + ACTIONS(95), 1, anon_sym__Generic, - ACTIONS(163), 1, + ACTIONS(165), 1, sym_number_literal, - ACTIONS(1785), 1, - anon_sym_sizeof, - ACTIONS(2183), 1, + ACTIONS(1429), 1, sym_identifier, - ACTIONS(2185), 1, + ACTIONS(1779), 1, + anon_sym_sizeof, + ACTIONS(2244), 1, anon_sym_LPAREN2, - STATE(799), 1, + STATE(671), 1, sym_string_literal, - STATE(990), 1, + STATE(1050), 1, sym_expression, - ACTIONS(95), 2, + ACTIONS(97), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(105), 2, + ACTIONS(107), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(165), 2, + ACTIONS(167), 2, sym_true, sym_false, - ACTIONS(1781), 2, + ACTIONS(1775), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1783), 2, + ACTIONS(1777), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2165), 2, + ACTIONS(2018), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2187), 2, + ACTIONS(2246), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(99), 5, + ACTIONS(101), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(101), 5, + ACTIONS(103), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(890), 5, + STATE(762), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(663), 16, + STATE(758), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -72710,71 +84224,152 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [12287] = 21, + [15183] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(89), 1, + anon_sym_sizeof, + ACTIONS(93), 1, anon_sym_offsetof, + ACTIONS(95), 1, + anon_sym__Generic, + ACTIONS(165), 1, + sym_number_literal, + ACTIONS(1773), 1, + sym_identifier, + STATE(671), 1, + sym_string_literal, + STATE(1217), 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(87), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(97), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(107), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(167), 2, + sym_true, + sym_false, + ACTIONS(91), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(101), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(103), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(944), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(758), 16, + sym__string, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [15285] = 21, + ACTIONS(3), 1, + sym_comment, ACTIONS(93), 1, + anon_sym_offsetof, + ACTIONS(95), 1, anon_sym__Generic, - ACTIONS(163), 1, + ACTIONS(165), 1, sym_number_literal, - ACTIONS(1785), 1, - anon_sym_sizeof, - ACTIONS(2183), 1, + ACTIONS(1429), 1, sym_identifier, - ACTIONS(2185), 1, + ACTIONS(1461), 1, + anon_sym_sizeof, + ACTIONS(2284), 1, anon_sym_LPAREN2, - STATE(799), 1, + STATE(940), 1, sym_string_literal, - STATE(986), 1, + STATE(983), 1, sym_expression, - ACTIONS(95), 2, + ACTIONS(97), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(105), 2, + ACTIONS(107), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(165), 2, + ACTIONS(167), 2, sym_true, sym_false, - ACTIONS(1781), 2, + ACTIONS(1457), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1783), 2, + ACTIONS(1459), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2165), 2, + ACTIONS(2276), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2187), 2, + ACTIONS(2286), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(99), 5, + ACTIONS(101), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(101), 5, + ACTIONS(103), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(890), 5, + STATE(762), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(663), 16, + STATE(758), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -72791,71 +84386,71 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [12389] = 21, + [15387] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_offsetof, ACTIONS(93), 1, + anon_sym_offsetof, + ACTIONS(95), 1, anon_sym__Generic, - ACTIONS(163), 1, + ACTIONS(165), 1, sym_number_literal, - ACTIONS(1785), 1, - anon_sym_sizeof, - ACTIONS(2183), 1, + ACTIONS(1429), 1, sym_identifier, - ACTIONS(2185), 1, + ACTIONS(1461), 1, + anon_sym_sizeof, + ACTIONS(2284), 1, anon_sym_LPAREN2, - STATE(799), 1, + STATE(940), 1, sym_string_literal, - STATE(974), 1, + STATE(995), 1, sym_expression, - ACTIONS(95), 2, + ACTIONS(97), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(105), 2, + ACTIONS(107), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(165), 2, + ACTIONS(167), 2, sym_true, sym_false, - ACTIONS(1781), 2, + ACTIONS(1457), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1783), 2, + ACTIONS(1459), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2165), 2, + ACTIONS(2276), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2187), 2, + ACTIONS(2286), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(99), 5, + ACTIONS(101), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(101), 5, + ACTIONS(103), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(890), 5, + STATE(762), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(663), 16, + STATE(758), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -72872,71 +84467,71 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [12491] = 21, + [15489] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_offsetof, ACTIONS(93), 1, + anon_sym_offsetof, + ACTIONS(95), 1, anon_sym__Generic, - ACTIONS(163), 1, + ACTIONS(165), 1, sym_number_literal, - ACTIONS(1397), 1, - sym_identifier, - ACTIONS(1720), 1, + ACTIONS(1948), 1, anon_sym_sizeof, - ACTIONS(2213), 1, + ACTIONS(2272), 1, + sym_identifier, + ACTIONS(2274), 1, anon_sym_LPAREN2, - STATE(659), 1, + STATE(940), 1, sym_string_literal, - STATE(929), 1, + STATE(1107), 1, sym_expression, - ACTIONS(95), 2, + ACTIONS(97), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(105), 2, + ACTIONS(107), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(165), 2, + ACTIONS(167), 2, sym_true, sym_false, - ACTIONS(1716), 2, + ACTIONS(1944), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1718), 2, + ACTIONS(1946), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1865), 2, + ACTIONS(2276), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2215), 2, + ACTIONS(2278), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(99), 5, + ACTIONS(101), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(101), 5, + ACTIONS(103), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(670), 5, + STATE(997), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(663), 16, + STATE(758), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -72953,24 +84548,24 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [12593] = 21, + [15591] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(87), 1, + ACTIONS(89), 1, anon_sym_sizeof, - ACTIONS(91), 1, - anon_sym_offsetof, ACTIONS(93), 1, + anon_sym_offsetof, + ACTIONS(95), 1, anon_sym__Generic, - ACTIONS(163), 1, + ACTIONS(165), 1, sym_number_literal, - ACTIONS(1722), 1, + ACTIONS(1773), 1, sym_identifier, - STATE(659), 1, + STATE(671), 1, sym_string_literal, - STATE(679), 1, + STATE(1053), 1, sym_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -72981,43 +84576,43 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(85), 2, + ACTIONS(87), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(95), 2, + ACTIONS(97), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(105), 2, + ACTIONS(107), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(165), 2, + ACTIONS(167), 2, sym_true, sym_false, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(99), 5, + ACTIONS(101), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(101), 5, + ACTIONS(103), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(818), 5, + STATE(944), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(663), 16, + STATE(758), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -73034,71 +84629,71 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [12695] = 21, + [15693] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_offsetof, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(89), 1, + anon_sym_sizeof, ACTIONS(93), 1, + anon_sym_offsetof, + ACTIONS(95), 1, anon_sym__Generic, - ACTIONS(163), 1, + ACTIONS(165), 1, sym_number_literal, - ACTIONS(1785), 1, - anon_sym_sizeof, - ACTIONS(2183), 1, + ACTIONS(1773), 1, sym_identifier, - ACTIONS(2185), 1, - anon_sym_LPAREN2, - STATE(681), 1, - sym_expression, - STATE(799), 1, + STATE(671), 1, sym_string_literal, - ACTIONS(95), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(105), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(165), 2, - sym_true, - sym_false, - ACTIONS(1781), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1783), 2, + STATE(801), 1, + sym_expression, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2165), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2187), 2, + ACTIONS(87), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(89), 5, + ACTIONS(97), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(107), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(167), 2, + sym_true, + sym_false, + ACTIONS(91), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(99), 5, + ACTIONS(101), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(101), 5, + ACTIONS(103), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(890), 5, + STATE(944), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(663), 16, + STATE(758), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -73115,71 +84710,71 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [12797] = 21, + [15795] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_offsetof, ACTIONS(93), 1, + anon_sym_offsetof, + ACTIONS(95), 1, anon_sym__Generic, - ACTIONS(163), 1, + ACTIONS(165), 1, sym_number_literal, - ACTIONS(1785), 1, - anon_sym_sizeof, - ACTIONS(2183), 1, + ACTIONS(1429), 1, sym_identifier, - ACTIONS(2185), 1, + ACTIONS(1441), 1, + anon_sym_sizeof, + ACTIONS(2262), 1, anon_sym_LPAREN2, - STATE(799), 1, + STATE(671), 1, sym_string_literal, - STATE(982), 1, + STATE(801), 1, sym_expression, - ACTIONS(95), 2, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(97), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(105), 2, + ACTIONS(107), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(165), 2, + ACTIONS(167), 2, sym_true, sym_false, - ACTIONS(1781), 2, + ACTIONS(1433), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1783), 2, + ACTIONS(1435), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2165), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2187), 2, + ACTIONS(2264), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(99), 5, + ACTIONS(101), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(101), 5, + ACTIONS(103), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(890), 5, + STATE(762), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(663), 16, + STATE(758), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -73196,71 +84791,71 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [12899] = 21, + [15897] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_offsetof, ACTIONS(93), 1, + anon_sym_offsetof, + ACTIONS(95), 1, anon_sym__Generic, - ACTIONS(163), 1, + ACTIONS(165), 1, sym_number_literal, - ACTIONS(1397), 1, + ACTIONS(1429), 1, sym_identifier, - ACTIONS(1409), 1, + ACTIONS(1441), 1, anon_sym_sizeof, - ACTIONS(2107), 1, + ACTIONS(2262), 1, anon_sym_LPAREN2, - STATE(659), 1, + STATE(671), 1, sym_string_literal, - STATE(685), 1, + STATE(914), 1, sym_expression, ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(95), 2, + ACTIONS(97), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(105), 2, + ACTIONS(107), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(165), 2, + ACTIONS(167), 2, sym_true, sym_false, - ACTIONS(1401), 2, + ACTIONS(1433), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1403), 2, + ACTIONS(1435), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2109), 2, + ACTIONS(2264), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(99), 5, + ACTIONS(101), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(101), 5, + ACTIONS(103), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(670), 5, + STATE(762), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(663), 16, + STATE(758), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -73277,71 +84872,152 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [13001] = 21, + [15999] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(89), 1, + anon_sym_sizeof, + ACTIONS(93), 1, anon_sym_offsetof, + ACTIONS(95), 1, + anon_sym__Generic, + ACTIONS(165), 1, + sym_number_literal, + ACTIONS(1773), 1, + sym_identifier, + STATE(671), 1, + sym_string_literal, + STATE(1032), 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(87), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(97), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(107), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(167), 2, + sym_true, + sym_false, + ACTIONS(91), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(101), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(103), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(944), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(758), 16, + sym__string, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [16101] = 21, + ACTIONS(3), 1, + sym_comment, ACTIONS(93), 1, + anon_sym_offsetof, + ACTIONS(95), 1, anon_sym__Generic, - ACTIONS(163), 1, + ACTIONS(165), 1, sym_number_literal, - ACTIONS(1397), 1, + ACTIONS(1429), 1, sym_identifier, - ACTIONS(1720), 1, + ACTIONS(1779), 1, anon_sym_sizeof, - ACTIONS(2213), 1, + ACTIONS(2244), 1, anon_sym_LPAREN2, - STATE(659), 1, + STATE(671), 1, sym_string_literal, - STATE(919), 1, + STATE(1037), 1, sym_expression, - ACTIONS(95), 2, + ACTIONS(97), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(105), 2, + ACTIONS(107), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(165), 2, + ACTIONS(167), 2, sym_true, sym_false, - ACTIONS(1716), 2, + ACTIONS(1775), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1718), 2, + ACTIONS(1777), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1865), 2, + ACTIONS(2018), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2215), 2, + ACTIONS(2246), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(99), 5, + ACTIONS(101), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(101), 5, + ACTIONS(103), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(670), 5, + STATE(762), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(663), 16, + STATE(758), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -73358,24 +85034,24 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [13103] = 21, + [16203] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(87), 1, + ACTIONS(89), 1, anon_sym_sizeof, - ACTIONS(91), 1, - anon_sym_offsetof, ACTIONS(93), 1, + anon_sym_offsetof, + ACTIONS(95), 1, anon_sym__Generic, - ACTIONS(163), 1, + ACTIONS(165), 1, sym_number_literal, - ACTIONS(1722), 1, + ACTIONS(1773), 1, sym_identifier, - STATE(659), 1, + STATE(671), 1, sym_string_literal, - STATE(1027), 1, + STATE(1029), 1, sym_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -73386,43 +85062,43 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(85), 2, + ACTIONS(87), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(95), 2, + ACTIONS(97), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(105), 2, + ACTIONS(107), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(165), 2, + ACTIONS(167), 2, sym_true, sym_false, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(99), 5, + ACTIONS(101), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(101), 5, + ACTIONS(103), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(818), 5, + STATE(944), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(663), 16, + STATE(758), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -73439,71 +85115,71 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [13205] = 21, + [16305] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_offsetof, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(89), 1, + anon_sym_sizeof, ACTIONS(93), 1, + anon_sym_offsetof, + ACTIONS(95), 1, anon_sym__Generic, - ACTIONS(163), 1, + ACTIONS(165), 1, sym_number_literal, - ACTIONS(1785), 1, - anon_sym_sizeof, - ACTIONS(2183), 1, + ACTIONS(1773), 1, sym_identifier, - ACTIONS(2185), 1, - anon_sym_LPAREN2, - STATE(799), 1, + STATE(671), 1, sym_string_literal, - STATE(978), 1, + STATE(1039), 1, sym_expression, - ACTIONS(95), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(105), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(165), 2, - sym_true, - sym_false, - ACTIONS(1781), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1783), 2, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2165), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2187), 2, + ACTIONS(87), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(89), 5, + ACTIONS(97), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(107), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(167), 2, + sym_true, + sym_false, + ACTIONS(91), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(99), 5, + ACTIONS(101), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(101), 5, + ACTIONS(103), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(890), 5, + STATE(944), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(663), 16, + STATE(758), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -73520,71 +85196,71 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [13307] = 21, + [16407] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_offsetof, ACTIONS(93), 1, + anon_sym_offsetof, + ACTIONS(95), 1, anon_sym__Generic, - ACTIONS(163), 1, + ACTIONS(165), 1, sym_number_literal, - ACTIONS(1801), 1, + ACTIONS(1429), 1, sym_identifier, - ACTIONS(1807), 1, + ACTIONS(1441), 1, anon_sym_sizeof, - ACTIONS(1861), 1, + ACTIONS(2386), 1, anon_sym_LPAREN2, - STATE(659), 1, + STATE(671), 1, sym_string_literal, - STATE(1081), 1, + STATE(782), 1, sym_expression, - ACTIONS(95), 2, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(97), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(105), 2, + ACTIONS(107), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(165), 2, + ACTIONS(167), 2, sym_true, sym_false, - ACTIONS(1803), 2, + ACTIONS(1433), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1805), 2, + ACTIONS(1435), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1865), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1875), 2, + ACTIONS(2264), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(99), 5, + ACTIONS(101), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(101), 5, + ACTIONS(103), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(943), 5, + STATE(762), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(663), 16, + STATE(758), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -73601,71 +85277,71 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [13409] = 21, + [16509] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_offsetof, ACTIONS(93), 1, + anon_sym_offsetof, + ACTIONS(95), 1, anon_sym__Generic, - ACTIONS(163), 1, + ACTIONS(165), 1, sym_number_literal, - ACTIONS(1397), 1, - sym_identifier, ACTIONS(1429), 1, + sym_identifier, + ACTIONS(1441), 1, anon_sym_sizeof, - ACTIONS(2163), 1, + ACTIONS(2262), 1, anon_sym_LPAREN2, - STATE(799), 1, + STATE(671), 1, sym_string_literal, - STATE(887), 1, + STATE(919), 1, sym_expression, - ACTIONS(95), 2, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(97), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(105), 2, + ACTIONS(107), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(165), 2, + ACTIONS(167), 2, sym_true, sym_false, - ACTIONS(1425), 2, + ACTIONS(1433), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1427), 2, + ACTIONS(1435), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2165), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2167), 2, + ACTIONS(2264), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(99), 5, + ACTIONS(101), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(101), 5, + ACTIONS(103), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(670), 5, + STATE(762), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(663), 16, + STATE(758), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -73682,71 +85358,71 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [13511] = 21, + [16611] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_offsetof, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(89), 1, + anon_sym_sizeof, ACTIONS(93), 1, + anon_sym_offsetof, + ACTIONS(95), 1, anon_sym__Generic, - ACTIONS(163), 1, + ACTIONS(165), 1, sym_number_literal, - ACTIONS(1397), 1, + ACTIONS(1773), 1, sym_identifier, - ACTIONS(1720), 1, - anon_sym_sizeof, - ACTIONS(2213), 1, - anon_sym_LPAREN2, - STATE(659), 1, + STATE(671), 1, sym_string_literal, - STATE(916), 1, + STATE(1033), 1, sym_expression, - ACTIONS(95), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(105), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(165), 2, - sym_true, - sym_false, - ACTIONS(1716), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1718), 2, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1865), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2215), 2, + ACTIONS(87), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(89), 5, + ACTIONS(97), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(107), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(167), 2, + sym_true, + sym_false, + ACTIONS(91), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(99), 5, + ACTIONS(101), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(101), 5, + ACTIONS(103), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(670), 5, + STATE(944), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(663), 16, + STATE(758), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -73763,71 +85439,71 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [13613] = 21, + [16713] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_offsetof, ACTIONS(93), 1, + anon_sym_offsetof, + ACTIONS(95), 1, anon_sym__Generic, - ACTIONS(163), 1, + ACTIONS(165), 1, sym_number_literal, - ACTIONS(1397), 1, + ACTIONS(1429), 1, sym_identifier, - ACTIONS(1409), 1, + ACTIONS(1441), 1, anon_sym_sizeof, - ACTIONS(2291), 1, + ACTIONS(2262), 1, anon_sym_LPAREN2, - STATE(659), 1, + STATE(671), 1, sym_string_literal, - STATE(686), 1, + STATE(783), 1, sym_expression, ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(95), 2, + ACTIONS(97), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(105), 2, + ACTIONS(107), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(165), 2, + ACTIONS(167), 2, sym_true, sym_false, - ACTIONS(1401), 2, + ACTIONS(1433), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1403), 2, + ACTIONS(1435), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2109), 2, + ACTIONS(2264), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(99), 5, + ACTIONS(101), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(101), 5, + ACTIONS(103), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(670), 5, + STATE(762), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(663), 16, + STATE(758), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -73844,71 +85520,71 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [13715] = 21, + [16815] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_offsetof, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(89), 1, + anon_sym_sizeof, ACTIONS(93), 1, + anon_sym_offsetof, + ACTIONS(95), 1, anon_sym__Generic, - ACTIONS(163), 1, + ACTIONS(165), 1, sym_number_literal, - ACTIONS(1397), 1, + ACTIONS(1773), 1, sym_identifier, - ACTIONS(1720), 1, - anon_sym_sizeof, - ACTIONS(2213), 1, - anon_sym_LPAREN2, - STATE(659), 1, + STATE(671), 1, sym_string_literal, - STATE(925), 1, + STATE(1042), 1, sym_expression, - ACTIONS(95), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(105), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(165), 2, - sym_true, - sym_false, - ACTIONS(1716), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1718), 2, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1865), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2215), 2, + ACTIONS(87), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(89), 5, + ACTIONS(97), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(107), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(167), 2, + sym_true, + sym_false, + ACTIONS(91), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(99), 5, + ACTIONS(101), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(101), 5, + ACTIONS(103), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(670), 5, + STATE(944), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(663), 16, + STATE(758), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -73925,71 +85601,71 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [13817] = 21, + [16917] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_offsetof, ACTIONS(93), 1, + anon_sym_offsetof, + ACTIONS(95), 1, anon_sym__Generic, - ACTIONS(163), 1, + ACTIONS(165), 1, sym_number_literal, - ACTIONS(1397), 1, + ACTIONS(1429), 1, sym_identifier, - ACTIONS(1409), 1, + ACTIONS(1779), 1, anon_sym_sizeof, - ACTIONS(2107), 1, + ACTIONS(2244), 1, anon_sym_LPAREN2, - STATE(659), 1, + STATE(671), 1, sym_string_literal, - STATE(689), 1, + STATE(1028), 1, sym_expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(95), 2, + ACTIONS(97), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(105), 2, + ACTIONS(107), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(165), 2, + ACTIONS(167), 2, sym_true, sym_false, - ACTIONS(1401), 2, + ACTIONS(1775), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1403), 2, + ACTIONS(1777), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2109), 2, + ACTIONS(2018), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2246), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(99), 5, + ACTIONS(101), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(101), 5, + ACTIONS(103), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(670), 5, + STATE(762), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(663), 16, + STATE(758), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -74006,71 +85682,71 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [13919] = 21, + [17019] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_offsetof, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(89), 1, + anon_sym_sizeof, ACTIONS(93), 1, + anon_sym_offsetof, + ACTIONS(95), 1, anon_sym__Generic, - ACTIONS(163), 1, + ACTIONS(165), 1, sym_number_literal, - ACTIONS(1397), 1, + ACTIONS(1773), 1, sym_identifier, - ACTIONS(1429), 1, - anon_sym_sizeof, - ACTIONS(2293), 1, - anon_sym_LPAREN2, - STATE(686), 1, - sym_expression, - STATE(799), 1, + STATE(671), 1, sym_string_literal, - ACTIONS(95), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(105), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(165), 2, - sym_true, - sym_false, - ACTIONS(1425), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1427), 2, + STATE(1213), 1, + sym_expression, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2165), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2167), 2, + ACTIONS(87), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(89), 5, + ACTIONS(97), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(107), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(167), 2, + sym_true, + sym_false, + ACTIONS(91), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(99), 5, + ACTIONS(101), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(101), 5, + ACTIONS(103), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(670), 5, + STATE(944), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(663), 16, + STATE(758), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -74087,71 +85763,71 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [14021] = 21, + [17121] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_offsetof, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(89), 1, + anon_sym_sizeof, ACTIONS(93), 1, + anon_sym_offsetof, + ACTIONS(95), 1, anon_sym__Generic, - ACTIONS(163), 1, + ACTIONS(165), 1, sym_number_literal, - ACTIONS(1397), 1, + ACTIONS(1773), 1, sym_identifier, - ACTIONS(1720), 1, - anon_sym_sizeof, - ACTIONS(2213), 1, - anon_sym_LPAREN2, - STATE(659), 1, + STATE(671), 1, sym_string_literal, - STATE(918), 1, + STATE(1041), 1, sym_expression, - ACTIONS(95), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(105), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(165), 2, - sym_true, - sym_false, - ACTIONS(1716), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1718), 2, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1865), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2215), 2, + ACTIONS(87), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(89), 5, + ACTIONS(97), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(107), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(167), 2, + sym_true, + sym_false, + ACTIONS(91), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(99), 5, + ACTIONS(101), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(101), 5, + ACTIONS(103), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(670), 5, + STATE(944), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(663), 16, + STATE(758), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -74168,93 +85844,10 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [14123] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(41), 1, - anon_sym___declspec, - ACTIONS(55), 1, - sym_primitive_type, - ACTIONS(57), 1, - anon_sym_enum, - ACTIONS(59), 1, - anon_sym_struct, - ACTIONS(61), 1, - anon_sym_union, - ACTIONS(1137), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1789), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1809), 1, - sym_identifier, - STATE(703), 1, - sym_alignas_qualifier, - STATE(710), 1, - sym_type_specifier, - STATE(747), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1211), 1, - sym__declaration_specifiers, - ACTIONS(33), 2, - anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(35), 2, - anon_sym___scanf, - anon_sym___printf, - ACTIONS(53), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(1692), 2, - sym_variadic_parameter, - sym_parameter_declaration, - ACTIONS(37), 3, - anon_sym___read_mostly, - anon_sym___ro_after_init, - anon_sym___init, - ACTIONS(47), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(746), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(697), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(51), 9, - anon_sym___extension__, - 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(49), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - [14229] = 3, + [17223] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2297), 9, + ACTIONS(2390), 10, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -74262,9 +85855,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_EQ, anon_sym_COLON, - ACTIONS(2295), 49, + ACTIONS(2388), 48, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -74273,15 +85872,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___read_mostly, anon_sym___must_hold, anon_sym___ro_after_init, - anon_sym___init, + anon_sym___noreturn, + anon_sym___cold, anon_sym___declspec, anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, anon_sym_signed, anon_sym_unsigned, anon_sym_long, @@ -74309,110 +85903,28 @@ static const uint16_t ts_small_parse_table[] = { sym_primitive_type, anon_sym_enum, anon_sym_struct, - anon_sym___aligned, anon_sym_union, anon_sym_asm, anon_sym___asm__, sym_identifier, - [14295] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(91), 1, - anon_sym_offsetof, - ACTIONS(93), 1, - anon_sym__Generic, - ACTIONS(163), 1, - sym_number_literal, - ACTIONS(1397), 1, - sym_identifier, - ACTIONS(1429), 1, - anon_sym_sizeof, - ACTIONS(2163), 1, - anon_sym_LPAREN2, - STATE(689), 1, - sym_expression, - STATE(799), 1, - sym_string_literal, - ACTIONS(95), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(105), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(165), 2, - sym_true, - sym_false, - ACTIONS(1425), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1427), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2165), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2167), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(89), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(99), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(101), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(670), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(663), 16, - sym__string, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_alignof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_gnu_asm_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [14397] = 21, + [17289] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(87), 1, + ACTIONS(89), 1, anon_sym_sizeof, - ACTIONS(91), 1, - anon_sym_offsetof, ACTIONS(93), 1, + anon_sym_offsetof, + ACTIONS(95), 1, anon_sym__Generic, - ACTIONS(163), 1, + ACTIONS(165), 1, sym_number_literal, - ACTIONS(1722), 1, + ACTIONS(1773), 1, sym_identifier, - STATE(659), 1, + STATE(671), 1, sym_string_literal, - STATE(1084), 1, + STATE(1045), 1, sym_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -74423,43 +85935,43 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(85), 2, + ACTIONS(87), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(95), 2, + ACTIONS(97), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(105), 2, + ACTIONS(107), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(165), 2, + ACTIONS(167), 2, sym_true, sym_false, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(99), 5, + ACTIONS(101), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(101), 5, + ACTIONS(103), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(818), 5, + STATE(944), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(663), 16, + STATE(758), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -74476,71 +85988,71 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [14499] = 21, + [17391] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_offsetof, ACTIONS(93), 1, + anon_sym_offsetof, + ACTIONS(95), 1, anon_sym__Generic, - ACTIONS(163), 1, + ACTIONS(165), 1, sym_number_literal, - ACTIONS(1397), 1, + ACTIONS(2000), 1, sym_identifier, - ACTIONS(1429), 1, + ACTIONS(2006), 1, anon_sym_sizeof, - ACTIONS(2163), 1, + ACTIONS(2392), 1, anon_sym_LPAREN2, - STATE(679), 1, - sym_expression, - STATE(799), 1, + STATE(671), 1, sym_string_literal, - ACTIONS(95), 2, + STATE(1056), 1, + sym_expression, + ACTIONS(97), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(105), 2, + ACTIONS(107), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(165), 2, + ACTIONS(167), 2, sym_true, sym_false, - ACTIONS(1425), 2, + ACTIONS(2002), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1427), 2, + ACTIONS(2004), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2165), 2, + ACTIONS(2018), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2167), 2, + ACTIONS(2028), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(99), 5, + ACTIONS(101), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(101), 5, + ACTIONS(103), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(670), 5, + STATE(1066), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(663), 16, + STATE(758), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -74557,71 +86069,71 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [14601] = 21, + [17493] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(87), 1, - anon_sym_sizeof, - ACTIONS(91), 1, - anon_sym_offsetof, ACTIONS(93), 1, + anon_sym_offsetof, + ACTIONS(95), 1, anon_sym__Generic, - ACTIONS(163), 1, + ACTIONS(165), 1, sym_number_literal, - ACTIONS(1722), 1, + ACTIONS(1429), 1, sym_identifier, - STATE(659), 1, - sym_string_literal, - STATE(1023), 1, + ACTIONS(1461), 1, + anon_sym_sizeof, + ACTIONS(2284), 1, + anon_sym_LPAREN2, + STATE(781), 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(85), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(95), 2, + STATE(940), 1, + sym_string_literal, + ACTIONS(97), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(105), 2, + ACTIONS(107), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(165), 2, + ACTIONS(167), 2, sym_true, sym_false, - ACTIONS(89), 5, + ACTIONS(1457), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1459), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2276), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2286), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(91), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(99), 5, + ACTIONS(101), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(101), 5, + ACTIONS(103), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(818), 5, + STATE(762), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(663), 16, + STATE(758), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -74638,71 +86150,71 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [14703] = 21, + [17595] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_offsetof, ACTIONS(93), 1, + anon_sym_offsetof, + ACTIONS(95), 1, anon_sym__Generic, - ACTIONS(163), 1, + ACTIONS(165), 1, sym_number_literal, - ACTIONS(1397), 1, - sym_identifier, ACTIONS(1429), 1, + sym_identifier, + ACTIONS(1441), 1, anon_sym_sizeof, - ACTIONS(2163), 1, + ACTIONS(2262), 1, anon_sym_LPAREN2, - STATE(685), 1, - sym_expression, - STATE(799), 1, + STATE(671), 1, sym_string_literal, - ACTIONS(95), 2, + STATE(789), 1, + sym_expression, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(97), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(105), 2, + ACTIONS(107), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(165), 2, + ACTIONS(167), 2, sym_true, sym_false, - ACTIONS(1425), 2, + ACTIONS(1433), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1427), 2, + ACTIONS(1435), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2165), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2167), 2, + ACTIONS(2264), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(99), 5, + ACTIONS(101), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(101), 5, + ACTIONS(103), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(670), 5, + STATE(762), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(663), 16, + STATE(758), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -74719,71 +86231,71 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [14805] = 21, + [17697] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_offsetof, ACTIONS(93), 1, + anon_sym_offsetof, + ACTIONS(95), 1, anon_sym__Generic, - ACTIONS(163), 1, + ACTIONS(165), 1, sym_number_literal, - ACTIONS(1397), 1, + ACTIONS(2000), 1, sym_identifier, - ACTIONS(1409), 1, + ACTIONS(2006), 1, anon_sym_sizeof, - ACTIONS(2107), 1, + ACTIONS(2014), 1, anon_sym_LPAREN2, - STATE(659), 1, + STATE(671), 1, sym_string_literal, - STATE(795), 1, + STATE(1212), 1, sym_expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(95), 2, + ACTIONS(97), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(105), 2, + ACTIONS(107), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(165), 2, + ACTIONS(167), 2, sym_true, sym_false, - ACTIONS(1401), 2, + ACTIONS(2002), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1403), 2, + ACTIONS(2004), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2109), 2, + ACTIONS(2018), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2028), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(99), 5, + ACTIONS(101), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(101), 5, + ACTIONS(103), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(670), 5, + STATE(1066), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(663), 16, + STATE(758), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -74800,71 +86312,71 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [14907] = 21, + [17799] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_offsetof, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(89), 1, + anon_sym_sizeof, ACTIONS(93), 1, + anon_sym_offsetof, + ACTIONS(95), 1, anon_sym__Generic, - ACTIONS(163), 1, + ACTIONS(165), 1, sym_number_literal, - ACTIONS(1397), 1, + ACTIONS(1773), 1, sym_identifier, - ACTIONS(1720), 1, - anon_sym_sizeof, - ACTIONS(2299), 1, - anon_sym_LPAREN2, - STATE(659), 1, + STATE(671), 1, sym_string_literal, - STATE(920), 1, + STATE(1207), 1, sym_expression, - ACTIONS(95), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(105), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(165), 2, - sym_true, - sym_false, - ACTIONS(1716), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1718), 2, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1865), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2215), 2, + ACTIONS(87), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(89), 5, + ACTIONS(97), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(107), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(167), 2, + sym_true, + sym_false, + ACTIONS(91), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(99), 5, + ACTIONS(101), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(101), 5, + ACTIONS(103), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(670), 5, + STATE(944), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(663), 16, + STATE(758), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -74881,71 +86393,71 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [15009] = 21, + [17901] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_offsetof, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(89), 1, + anon_sym_sizeof, ACTIONS(93), 1, + anon_sym_offsetof, + ACTIONS(95), 1, anon_sym__Generic, - ACTIONS(163), 1, + ACTIONS(165), 1, sym_number_literal, - ACTIONS(1397), 1, + ACTIONS(1773), 1, sym_identifier, - ACTIONS(1409), 1, - anon_sym_sizeof, - ACTIONS(2107), 1, - anon_sym_LPAREN2, - STATE(659), 1, + STATE(671), 1, sym_string_literal, - STATE(679), 1, + STATE(1051), 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(95), 2, + ACTIONS(87), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(97), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(105), 2, + ACTIONS(107), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(165), 2, + ACTIONS(167), 2, sym_true, sym_false, - ACTIONS(1401), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1403), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2109), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(99), 5, + ACTIONS(101), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(101), 5, + ACTIONS(103), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(670), 5, + STATE(944), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(663), 16, + STATE(758), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -74962,71 +86474,71 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [15111] = 21, + [18003] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_offsetof, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(89), 1, + anon_sym_sizeof, ACTIONS(93), 1, + anon_sym_offsetof, + ACTIONS(95), 1, anon_sym__Generic, - ACTIONS(163), 1, + ACTIONS(165), 1, sym_number_literal, - ACTIONS(1397), 1, + ACTIONS(1773), 1, sym_identifier, - ACTIONS(1429), 1, - anon_sym_sizeof, - ACTIONS(2163), 1, - anon_sym_LPAREN2, - STATE(799), 1, + STATE(671), 1, sym_string_literal, - STATE(886), 1, + STATE(1052), 1, sym_expression, - ACTIONS(95), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(105), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(165), 2, - sym_true, - sym_false, - ACTIONS(1425), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1427), 2, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2165), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2167), 2, + ACTIONS(87), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(89), 5, + ACTIONS(97), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(107), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(167), 2, + sym_true, + sym_false, + ACTIONS(91), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(99), 5, + ACTIONS(101), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(101), 5, + ACTIONS(103), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(670), 5, + STATE(944), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(663), 16, + STATE(758), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -75043,71 +86555,71 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [15213] = 21, + [18105] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_offsetof, ACTIONS(93), 1, + anon_sym_offsetof, + ACTIONS(95), 1, anon_sym__Generic, - ACTIONS(163), 1, + ACTIONS(165), 1, sym_number_literal, - ACTIONS(1397), 1, + ACTIONS(2000), 1, sym_identifier, - ACTIONS(1429), 1, + ACTIONS(2006), 1, anon_sym_sizeof, - ACTIONS(2163), 1, + ACTIONS(2014), 1, anon_sym_LPAREN2, - STATE(681), 1, - sym_expression, - STATE(799), 1, + STATE(671), 1, sym_string_literal, - ACTIONS(95), 2, + STATE(1199), 1, + sym_expression, + ACTIONS(97), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(105), 2, + ACTIONS(107), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(165), 2, + ACTIONS(167), 2, sym_true, sym_false, - ACTIONS(1425), 2, + ACTIONS(2002), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1427), 2, + ACTIONS(2004), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2165), 2, + ACTIONS(2018), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2167), 2, + ACTIONS(2028), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(99), 5, + ACTIONS(101), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(101), 5, + ACTIONS(103), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(670), 5, + STATE(1066), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(663), 16, + STATE(758), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -75124,71 +86636,71 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [15315] = 21, + [18207] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(87), 1, - anon_sym_sizeof, - ACTIONS(91), 1, - anon_sym_offsetof, ACTIONS(93), 1, + anon_sym_offsetof, + ACTIONS(95), 1, anon_sym__Generic, - ACTIONS(163), 1, + ACTIONS(165), 1, sym_number_literal, - ACTIONS(1722), 1, + ACTIONS(1948), 1, + anon_sym_sizeof, + ACTIONS(2272), 1, sym_identifier, - STATE(659), 1, + ACTIONS(2274), 1, + anon_sym_LPAREN2, + STATE(940), 1, sym_string_literal, - STATE(1076), 1, + STATE(1108), 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(85), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(95), 2, + ACTIONS(97), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(105), 2, + ACTIONS(107), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(165), 2, + ACTIONS(167), 2, sym_true, sym_false, - ACTIONS(89), 5, + ACTIONS(1944), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1946), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2276), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2278), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(91), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(99), 5, + ACTIONS(101), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(101), 5, + ACTIONS(103), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(818), 5, + STATE(997), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(663), 16, + STATE(758), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -75205,134 +86717,71 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [15417] = 3, + [18309] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2303), 9, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - ACTIONS(2301), 49, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___scanf, - anon_sym___printf, - anon_sym___read_mostly, - anon_sym___must_hold, - anon_sym___ro_after_init, - anon_sym___init, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym___aligned, - anon_sym_union, - anon_sym_asm, - anon_sym___asm__, - sym_identifier, - [15483] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(91), 1, - anon_sym_offsetof, ACTIONS(93), 1, + anon_sym_offsetof, + ACTIONS(95), 1, anon_sym__Generic, - ACTIONS(163), 1, + ACTIONS(165), 1, sym_number_literal, - ACTIONS(1397), 1, - sym_identifier, ACTIONS(1429), 1, + sym_identifier, + ACTIONS(1441), 1, anon_sym_sizeof, - ACTIONS(2163), 1, + ACTIONS(2262), 1, anon_sym_LPAREN2, - STATE(799), 1, + STATE(671), 1, sym_string_literal, - STATE(884), 1, + STATE(908), 1, sym_expression, - ACTIONS(95), 2, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(97), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(105), 2, + ACTIONS(107), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(165), 2, + ACTIONS(167), 2, sym_true, sym_false, - ACTIONS(1425), 2, + ACTIONS(1433), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1427), 2, + ACTIONS(1435), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2165), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2167), 2, + ACTIONS(2264), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(99), 5, + ACTIONS(101), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(101), 5, + ACTIONS(103), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(670), 5, + STATE(762), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(663), 16, + STATE(758), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -75349,152 +86798,71 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [15585] = 21, + [18411] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_offsetof, ACTIONS(93), 1, + anon_sym_offsetof, + ACTIONS(95), 1, anon_sym__Generic, - ACTIONS(163), 1, + ACTIONS(165), 1, sym_number_literal, - ACTIONS(1397), 1, - sym_identifier, ACTIONS(1429), 1, + sym_identifier, + ACTIONS(1441), 1, anon_sym_sizeof, - ACTIONS(2163), 1, + ACTIONS(2262), 1, anon_sym_LPAREN2, - STATE(799), 1, + STATE(671), 1, sym_string_literal, - STATE(883), 1, + STATE(918), 1, sym_expression, - ACTIONS(95), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(105), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(165), 2, - sym_true, - sym_false, - ACTIONS(1425), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1427), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2165), 2, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2167), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(89), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(99), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(101), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(670), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(663), 16, - sym__string, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_alignof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_gnu_asm_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [15687] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(91), 1, - anon_sym_offsetof, - ACTIONS(93), 1, - anon_sym__Generic, - ACTIONS(163), 1, - sym_number_literal, - ACTIONS(1801), 1, - sym_identifier, - ACTIONS(1807), 1, - anon_sym_sizeof, - ACTIONS(1861), 1, - anon_sym_LPAREN2, - STATE(659), 1, - sym_string_literal, - STATE(1065), 1, - sym_expression, - ACTIONS(95), 2, + ACTIONS(97), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(105), 2, + ACTIONS(107), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(165), 2, + ACTIONS(167), 2, sym_true, sym_false, - ACTIONS(1803), 2, + ACTIONS(1433), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1805), 2, + ACTIONS(1435), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1865), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1875), 2, + ACTIONS(2264), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(99), 5, + ACTIONS(101), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(101), 5, + ACTIONS(103), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(943), 5, + STATE(762), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(663), 16, + STATE(758), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -75511,24 +86879,24 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [15789] = 21, + [18513] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(87), 1, + ACTIONS(89), 1, anon_sym_sizeof, - ACTIONS(91), 1, - anon_sym_offsetof, ACTIONS(93), 1, + anon_sym_offsetof, + ACTIONS(95), 1, anon_sym__Generic, - ACTIONS(163), 1, + ACTIONS(165), 1, sym_number_literal, - ACTIONS(1722), 1, + ACTIONS(1773), 1, sym_identifier, - STATE(659), 1, + STATE(671), 1, sym_string_literal, - STATE(1051), 1, + STATE(1201), 1, sym_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -75539,43 +86907,43 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(85), 2, + ACTIONS(87), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(95), 2, + ACTIONS(97), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(105), 2, + ACTIONS(107), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(165), 2, + ACTIONS(167), 2, sym_true, sym_false, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(99), 5, + ACTIONS(101), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(101), 5, + ACTIONS(103), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(818), 5, + STATE(944), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(663), 16, + STATE(758), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -75592,71 +86960,71 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [15891] = 21, + [18615] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(87), 1, - anon_sym_sizeof, - ACTIONS(91), 1, - anon_sym_offsetof, ACTIONS(93), 1, + anon_sym_offsetof, + ACTIONS(95), 1, anon_sym__Generic, - ACTIONS(163), 1, + ACTIONS(165), 1, sym_number_literal, - ACTIONS(1722), 1, + ACTIONS(1429), 1, sym_identifier, - STATE(659), 1, + ACTIONS(1441), 1, + anon_sym_sizeof, + ACTIONS(2262), 1, + anon_sym_LPAREN2, + STATE(671), 1, sym_string_literal, - STATE(967), 1, + 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(85), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(95), 2, + ACTIONS(97), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(105), 2, + ACTIONS(107), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(165), 2, + ACTIONS(167), 2, sym_true, sym_false, - ACTIONS(89), 5, + ACTIONS(1433), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1435), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2264), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(91), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(99), 5, + ACTIONS(101), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(101), 5, + ACTIONS(103), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(818), 5, + STATE(762), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(663), 16, + STATE(758), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -75673,24 +87041,24 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [15993] = 21, + [18717] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(87), 1, + ACTIONS(89), 1, anon_sym_sizeof, - ACTIONS(91), 1, - anon_sym_offsetof, ACTIONS(93), 1, + anon_sym_offsetof, + ACTIONS(95), 1, anon_sym__Generic, - ACTIONS(163), 1, + ACTIONS(165), 1, sym_number_literal, - ACTIONS(1722), 1, + ACTIONS(1773), 1, sym_identifier, - STATE(659), 1, + STATE(671), 1, sym_string_literal, - STATE(1089), 1, + STATE(1144), 1, sym_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -75701,43 +87069,43 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(85), 2, + ACTIONS(87), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(95), 2, + ACTIONS(97), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(105), 2, + ACTIONS(107), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(165), 2, + ACTIONS(167), 2, sym_true, sym_false, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(99), 5, + ACTIONS(101), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(101), 5, + ACTIONS(103), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(818), 5, + STATE(944), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(663), 16, + STATE(758), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -75754,71 +87122,71 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [16095] = 21, + [18819] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_offsetof, ACTIONS(93), 1, + anon_sym_offsetof, + ACTIONS(95), 1, anon_sym__Generic, - ACTIONS(163), 1, + ACTIONS(165), 1, sym_number_literal, - ACTIONS(1397), 1, - sym_identifier, ACTIONS(1429), 1, + sym_identifier, + ACTIONS(1461), 1, anon_sym_sizeof, - ACTIONS(2163), 1, + ACTIONS(2284), 1, anon_sym_LPAREN2, - STATE(799), 1, - sym_string_literal, - STATE(882), 1, + STATE(801), 1, sym_expression, - ACTIONS(95), 2, + STATE(940), 1, + sym_string_literal, + ACTIONS(97), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(105), 2, + ACTIONS(107), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(165), 2, + ACTIONS(167), 2, sym_true, sym_false, - ACTIONS(1425), 2, + ACTIONS(1457), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1427), 2, + ACTIONS(1459), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2165), 2, + ACTIONS(2276), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2167), 2, + ACTIONS(2286), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(99), 5, + ACTIONS(101), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(101), 5, + ACTIONS(103), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(670), 5, + STATE(762), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(663), 16, + STATE(758), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -75835,24 +87203,24 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [16197] = 21, + [18921] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(87), 1, + ACTIONS(89), 1, anon_sym_sizeof, - ACTIONS(91), 1, - anon_sym_offsetof, ACTIONS(93), 1, + anon_sym_offsetof, + ACTIONS(95), 1, anon_sym__Generic, - ACTIONS(163), 1, + ACTIONS(165), 1, sym_number_literal, - ACTIONS(1722), 1, + ACTIONS(1773), 1, sym_identifier, - STATE(659), 1, + STATE(671), 1, sym_string_literal, - STATE(689), 1, + STATE(1086), 1, sym_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -75863,43 +87231,43 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(85), 2, + ACTIONS(87), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(95), 2, + ACTIONS(97), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(105), 2, + ACTIONS(107), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(165), 2, + ACTIONS(167), 2, sym_true, sym_false, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(99), 5, + ACTIONS(101), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(101), 5, + ACTIONS(103), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(818), 5, + STATE(944), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(663), 16, + STATE(758), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -75916,24 +87284,87 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [16299] = 21, + [19023] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2396), 10, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(2394), 48, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___scanf, + anon_sym___printf, + anon_sym___read_mostly, + anon_sym___must_hold, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + anon_sym_asm, + anon_sym___asm__, + sym_identifier, + [19089] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(87), 1, + ACTIONS(89), 1, anon_sym_sizeof, - ACTIONS(91), 1, - anon_sym_offsetof, ACTIONS(93), 1, + anon_sym_offsetof, + ACTIONS(95), 1, anon_sym__Generic, - ACTIONS(163), 1, + ACTIONS(165), 1, sym_number_literal, - ACTIONS(1722), 1, + ACTIONS(1773), 1, sym_identifier, - STATE(659), 1, + STATE(671), 1, sym_string_literal, - STATE(1075), 1, + STATE(789), 1, sym_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -75944,43 +87375,43 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(85), 2, + ACTIONS(87), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(95), 2, + ACTIONS(97), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(105), 2, + ACTIONS(107), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(165), 2, + ACTIONS(167), 2, sym_true, sym_false, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(99), 5, + ACTIONS(101), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(101), 5, + ACTIONS(103), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(818), 5, + STATE(944), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(663), 16, + STATE(758), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -75997,152 +87428,71 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [16401] = 21, + [19191] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_offsetof, ACTIONS(93), 1, + anon_sym_offsetof, + ACTIONS(95), 1, anon_sym__Generic, - ACTIONS(163), 1, + ACTIONS(165), 1, sym_number_literal, - ACTIONS(1397), 1, - sym_identifier, ACTIONS(1429), 1, + sym_identifier, + ACTIONS(1461), 1, anon_sym_sizeof, - ACTIONS(2163), 1, + ACTIONS(2284), 1, anon_sym_LPAREN2, - STATE(799), 1, + STATE(940), 1, sym_string_literal, - STATE(880), 1, + STATE(996), 1, sym_expression, - ACTIONS(95), 2, + ACTIONS(97), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(105), 2, + ACTIONS(107), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(165), 2, + ACTIONS(167), 2, sym_true, sym_false, - ACTIONS(1425), 2, + ACTIONS(1457), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1427), 2, + ACTIONS(1459), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2165), 2, + ACTIONS(2276), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2167), 2, + ACTIONS(2286), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(99), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, ACTIONS(101), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(670), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(663), 16, - sym__string, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_alignof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_gnu_asm_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [16503] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(87), 1, - anon_sym_sizeof, - ACTIONS(91), 1, - anon_sym_offsetof, - ACTIONS(93), 1, - anon_sym__Generic, - ACTIONS(163), 1, - sym_number_literal, - ACTIONS(1722), 1, - sym_identifier, - STATE(659), 1, - sym_string_literal, - STATE(951), 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(85), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(95), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(105), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(165), 2, - sym_true, - sym_false, - ACTIONS(89), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(99), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(101), 5, + ACTIONS(103), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(818), 5, + STATE(762), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(663), 16, + STATE(758), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -76159,24 +87509,24 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [16605] = 21, + [19293] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(87), 1, + ACTIONS(89), 1, anon_sym_sizeof, - ACTIONS(91), 1, - anon_sym_offsetof, ACTIONS(93), 1, + anon_sym_offsetof, + ACTIONS(95), 1, anon_sym__Generic, - ACTIONS(163), 1, + ACTIONS(165), 1, sym_number_literal, - ACTIONS(1722), 1, + ACTIONS(1773), 1, sym_identifier, - STATE(659), 1, + STATE(671), 1, sym_string_literal, - STATE(1083), 1, + STATE(1208), 1, sym_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -76187,43 +87537,43 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(85), 2, + ACTIONS(87), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(95), 2, + ACTIONS(97), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(105), 2, + ACTIONS(107), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(165), 2, + ACTIONS(167), 2, sym_true, sym_false, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(99), 5, + ACTIONS(101), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(101), 5, + ACTIONS(103), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(818), 5, + STATE(944), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(663), 16, + STATE(758), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -76240,71 +87590,71 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [16707] = 21, + [19395] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(87), 1, - anon_sym_sizeof, - ACTIONS(91), 1, - anon_sym_offsetof, ACTIONS(93), 1, + anon_sym_offsetof, + ACTIONS(95), 1, anon_sym__Generic, - ACTIONS(163), 1, + ACTIONS(165), 1, sym_number_literal, - ACTIONS(1722), 1, + ACTIONS(1429), 1, sym_identifier, - STATE(659), 1, + ACTIONS(1779), 1, + anon_sym_sizeof, + ACTIONS(2244), 1, + anon_sym_LPAREN2, + STATE(671), 1, sym_string_literal, - STATE(681), 1, + STATE(1030), 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(85), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(95), 2, + ACTIONS(97), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(105), 2, + ACTIONS(107), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(165), 2, + ACTIONS(167), 2, sym_true, sym_false, - ACTIONS(89), 5, + ACTIONS(1775), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1777), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2018), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2246), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(91), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(99), 5, + ACTIONS(101), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(101), 5, + ACTIONS(103), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(818), 5, + STATE(762), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(663), 16, + STATE(758), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -76321,71 +87671,71 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [16809] = 21, + [19497] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(87), 1, - anon_sym_sizeof, - ACTIONS(91), 1, - anon_sym_offsetof, ACTIONS(93), 1, + anon_sym_offsetof, + ACTIONS(95), 1, anon_sym__Generic, - ACTIONS(163), 1, + ACTIONS(165), 1, sym_number_literal, - ACTIONS(1722), 1, + ACTIONS(1429), 1, sym_identifier, - STATE(659), 1, + ACTIONS(1441), 1, + anon_sym_sizeof, + ACTIONS(2262), 1, + anon_sym_LPAREN2, + STATE(671), 1, sym_string_literal, - STATE(937), 1, + STATE(781), 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(85), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(95), 2, + ACTIONS(97), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(105), 2, + ACTIONS(107), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(165), 2, + ACTIONS(167), 2, sym_true, sym_false, - ACTIONS(89), 5, + ACTIONS(1433), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1435), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2264), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(91), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(99), 5, + ACTIONS(101), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(101), 5, + ACTIONS(103), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(818), 5, + STATE(762), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(663), 16, + STATE(758), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -76402,71 +87752,71 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [16911] = 21, + [19599] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(87), 1, - anon_sym_sizeof, - ACTIONS(91), 1, - anon_sym_offsetof, ACTIONS(93), 1, + anon_sym_offsetof, + ACTIONS(95), 1, anon_sym__Generic, - ACTIONS(163), 1, + ACTIONS(165), 1, sym_number_literal, - ACTIONS(1722), 1, + ACTIONS(1948), 1, + anon_sym_sizeof, + ACTIONS(2272), 1, sym_identifier, - STATE(659), 1, - sym_string_literal, - STATE(1085), 1, + ACTIONS(2274), 1, + anon_sym_LPAREN2, + STATE(789), 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(85), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(95), 2, + STATE(940), 1, + sym_string_literal, + ACTIONS(97), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(105), 2, + ACTIONS(107), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(165), 2, + ACTIONS(167), 2, sym_true, sym_false, - ACTIONS(89), 5, + ACTIONS(1944), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1946), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2276), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2278), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(91), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(99), 5, + ACTIONS(101), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(101), 5, + ACTIONS(103), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(818), 5, + STATE(997), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(663), 16, + STATE(758), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -76483,71 +87833,71 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [17013] = 21, + [19701] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(87), 1, - anon_sym_sizeof, - ACTIONS(91), 1, - anon_sym_offsetof, ACTIONS(93), 1, + anon_sym_offsetof, + ACTIONS(95), 1, anon_sym__Generic, - ACTIONS(163), 1, + ACTIONS(165), 1, sym_number_literal, - ACTIONS(1722), 1, + ACTIONS(1948), 1, + anon_sym_sizeof, + ACTIONS(2272), 1, sym_identifier, - STATE(659), 1, + ACTIONS(2274), 1, + anon_sym_LPAREN2, + STATE(940), 1, sym_string_literal, - STATE(1088), 1, + STATE(1099), 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(85), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(95), 2, + ACTIONS(97), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(105), 2, + ACTIONS(107), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(165), 2, + ACTIONS(167), 2, sym_true, sym_false, - ACTIONS(89), 5, + ACTIONS(1944), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1946), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2276), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2278), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(91), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(99), 5, + ACTIONS(101), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(101), 5, + ACTIONS(103), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(818), 5, + STATE(997), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(663), 16, + STATE(758), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -76564,71 +87914,71 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [17115] = 21, + [19803] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(87), 1, - anon_sym_sizeof, - ACTIONS(91), 1, - anon_sym_offsetof, ACTIONS(93), 1, + anon_sym_offsetof, + ACTIONS(95), 1, anon_sym__Generic, - ACTIONS(163), 1, + ACTIONS(165), 1, sym_number_literal, - ACTIONS(1722), 1, + ACTIONS(1429), 1, sym_identifier, - STATE(659), 1, - sym_string_literal, - STATE(935), 1, + ACTIONS(1461), 1, + anon_sym_sizeof, + ACTIONS(2284), 1, + anon_sym_LPAREN2, + STATE(789), 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(85), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(95), 2, + STATE(940), 1, + sym_string_literal, + ACTIONS(97), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(105), 2, + ACTIONS(107), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(165), 2, + ACTIONS(167), 2, sym_true, sym_false, - ACTIONS(89), 5, + ACTIONS(1457), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1459), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2276), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2286), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(91), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(99), 5, + ACTIONS(101), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(101), 5, + ACTIONS(103), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(818), 5, + STATE(762), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(663), 16, + STATE(758), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -76645,71 +87995,71 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [17217] = 21, + [19905] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_offsetof, ACTIONS(93), 1, + anon_sym_offsetof, + ACTIONS(95), 1, anon_sym__Generic, - ACTIONS(163), 1, + ACTIONS(165), 1, sym_number_literal, - ACTIONS(1397), 1, - sym_identifier, ACTIONS(1429), 1, + sym_identifier, + ACTIONS(1441), 1, anon_sym_sizeof, - ACTIONS(2163), 1, + ACTIONS(2262), 1, anon_sym_LPAREN2, - STATE(799), 1, + STATE(671), 1, sym_string_literal, - STATE(879), 1, + STATE(910), 1, sym_expression, - ACTIONS(95), 2, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(97), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(105), 2, + ACTIONS(107), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(165), 2, + ACTIONS(167), 2, sym_true, sym_false, - ACTIONS(1425), 2, + ACTIONS(1433), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1427), 2, + ACTIONS(1435), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2165), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2167), 2, + ACTIONS(2264), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(99), 5, + ACTIONS(101), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(101), 5, + ACTIONS(103), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(670), 5, + STATE(762), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(663), 16, + STATE(758), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -76726,24 +88076,24 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [17319] = 21, + [20007] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(87), 1, + ACTIONS(89), 1, anon_sym_sizeof, - ACTIONS(91), 1, - anon_sym_offsetof, ACTIONS(93), 1, + anon_sym_offsetof, + ACTIONS(95), 1, anon_sym__Generic, - ACTIONS(163), 1, + ACTIONS(165), 1, sym_number_literal, - ACTIONS(1722), 1, + ACTIONS(1773), 1, sym_identifier, - STATE(659), 1, + STATE(671), 1, sym_string_literal, - STATE(933), 1, + STATE(1143), 1, sym_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -76754,43 +88104,43 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(85), 2, + ACTIONS(87), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(95), 2, + ACTIONS(97), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(105), 2, + ACTIONS(107), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(165), 2, + ACTIONS(167), 2, sym_true, sym_false, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(99), 5, + ACTIONS(101), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(101), 5, + ACTIONS(103), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(818), 5, + STATE(944), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(663), 16, + STATE(758), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -76807,71 +88157,71 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [17421] = 21, + [20109] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(87), 1, - anon_sym_sizeof, - ACTIONS(91), 1, - anon_sym_offsetof, ACTIONS(93), 1, + anon_sym_offsetof, + ACTIONS(95), 1, anon_sym__Generic, - ACTIONS(163), 1, + ACTIONS(165), 1, sym_number_literal, - ACTIONS(1722), 1, + ACTIONS(1948), 1, + anon_sym_sizeof, + ACTIONS(2272), 1, sym_identifier, - STATE(659), 1, - sym_string_literal, - STATE(939), 1, + ACTIONS(2274), 1, + anon_sym_LPAREN2, + STATE(783), 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(85), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(95), 2, + STATE(940), 1, + sym_string_literal, + ACTIONS(97), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(105), 2, + ACTIONS(107), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(165), 2, + ACTIONS(167), 2, sym_true, sym_false, - ACTIONS(89), 5, + ACTIONS(1944), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1946), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2276), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2278), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(91), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(99), 5, + ACTIONS(101), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(101), 5, + ACTIONS(103), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(818), 5, + STATE(997), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(663), 16, + STATE(758), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -76888,24 +88238,24 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [17523] = 21, + [20211] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(87), 1, + ACTIONS(89), 1, anon_sym_sizeof, - ACTIONS(91), 1, - anon_sym_offsetof, ACTIONS(93), 1, + anon_sym_offsetof, + ACTIONS(95), 1, anon_sym__Generic, - ACTIONS(163), 1, + ACTIONS(165), 1, sym_number_literal, - ACTIONS(1722), 1, + ACTIONS(1773), 1, sym_identifier, - STATE(659), 1, + STATE(671), 1, sym_string_literal, - STATE(941), 1, + STATE(1031), 1, sym_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -76916,124 +88266,43 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(85), 2, + ACTIONS(87), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(95), 2, + ACTIONS(97), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(105), 2, + ACTIONS(107), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(165), 2, + ACTIONS(167), 2, sym_true, sym_false, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(99), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, ACTIONS(101), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(818), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(663), 16, - sym__string, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_alignof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_gnu_asm_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [17625] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(91), 1, - anon_sym_offsetof, - ACTIONS(93), 1, - anon_sym__Generic, - ACTIONS(163), 1, - sym_number_literal, - ACTIONS(1397), 1, - sym_identifier, - ACTIONS(1429), 1, - anon_sym_sizeof, - ACTIONS(2163), 1, - anon_sym_LPAREN2, - STATE(799), 1, - sym_string_literal, - STATE(878), 1, - sym_expression, - ACTIONS(95), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(105), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(165), 2, - sym_true, - sym_false, - ACTIONS(1425), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1427), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2165), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2167), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(89), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(99), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(101), 5, + ACTIONS(103), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(670), 5, + STATE(944), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(663), 16, + STATE(758), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -77050,71 +88319,71 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [17727] = 21, + [20313] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(87), 1, - anon_sym_sizeof, - ACTIONS(91), 1, - anon_sym_offsetof, ACTIONS(93), 1, + anon_sym_offsetof, + ACTIONS(95), 1, anon_sym__Generic, - ACTIONS(163), 1, + ACTIONS(165), 1, sym_number_literal, - ACTIONS(1722), 1, + ACTIONS(1429), 1, sym_identifier, - STATE(659), 1, + ACTIONS(1441), 1, + anon_sym_sizeof, + ACTIONS(2262), 1, + anon_sym_LPAREN2, + STATE(671), 1, sym_string_literal, - STATE(945), 1, + STATE(915), 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(85), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(95), 2, + ACTIONS(97), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(105), 2, + ACTIONS(107), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(165), 2, + ACTIONS(167), 2, sym_true, sym_false, - ACTIONS(89), 5, + ACTIONS(1433), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1435), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2264), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(91), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(99), 5, + ACTIONS(101), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(101), 5, + ACTIONS(103), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(818), 5, + STATE(762), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(663), 16, + STATE(758), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -77131,71 +88400,71 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [17829] = 21, + [20415] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(87), 1, - anon_sym_sizeof, - ACTIONS(91), 1, - anon_sym_offsetof, ACTIONS(93), 1, + anon_sym_offsetof, + ACTIONS(95), 1, anon_sym__Generic, - ACTIONS(163), 1, + ACTIONS(165), 1, sym_number_literal, - ACTIONS(1722), 1, + ACTIONS(1948), 1, + anon_sym_sizeof, + ACTIONS(2272), 1, sym_identifier, - STATE(659), 1, - sym_string_literal, - STATE(932), 1, + ACTIONS(2398), 1, + anon_sym_LPAREN2, + STATE(782), 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(85), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(95), 2, + STATE(940), 1, + sym_string_literal, + ACTIONS(97), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(105), 2, + ACTIONS(107), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(165), 2, + ACTIONS(167), 2, sym_true, sym_false, - ACTIONS(89), 5, + ACTIONS(1944), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1946), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2276), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2278), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(91), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(99), 5, + ACTIONS(101), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(101), 5, + ACTIONS(103), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(818), 5, + STATE(997), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(663), 16, + STATE(758), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -77212,71 +88481,71 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [17931] = 21, + [20517] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(87), 1, - anon_sym_sizeof, - ACTIONS(91), 1, - anon_sym_offsetof, ACTIONS(93), 1, + anon_sym_offsetof, + ACTIONS(95), 1, anon_sym__Generic, - ACTIONS(163), 1, + ACTIONS(165), 1, sym_number_literal, - ACTIONS(1722), 1, + ACTIONS(1429), 1, sym_identifier, - STATE(659), 1, - sym_string_literal, - STATE(949), 1, + ACTIONS(1461), 1, + anon_sym_sizeof, + ACTIONS(2284), 1, + anon_sym_LPAREN2, + STATE(783), 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(85), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(95), 2, + STATE(940), 1, + sym_string_literal, + ACTIONS(97), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(105), 2, + ACTIONS(107), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(165), 2, + ACTIONS(167), 2, sym_true, sym_false, - ACTIONS(89), 5, + ACTIONS(1457), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1459), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2276), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2286), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(91), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(99), 5, + ACTIONS(101), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(101), 5, + ACTIONS(103), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(818), 5, + STATE(762), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(663), 16, + STATE(758), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -77293,71 +88562,71 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [18033] = 21, + [20619] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_offsetof, ACTIONS(93), 1, + anon_sym_offsetof, + ACTIONS(95), 1, anon_sym__Generic, - ACTIONS(163), 1, + ACTIONS(165), 1, sym_number_literal, - ACTIONS(1801), 1, + ACTIONS(2000), 1, sym_identifier, - ACTIONS(1807), 1, + ACTIONS(2006), 1, anon_sym_sizeof, - ACTIONS(1861), 1, + ACTIONS(2014), 1, anon_sym_LPAREN2, - STATE(659), 1, + STATE(671), 1, sym_string_literal, - STATE(1096), 1, + STATE(1164), 1, sym_expression, - ACTIONS(95), 2, + ACTIONS(97), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(105), 2, + ACTIONS(107), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(165), 2, + ACTIONS(167), 2, sym_true, sym_false, - ACTIONS(1803), 2, + ACTIONS(2002), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1805), 2, + ACTIONS(2004), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1865), 2, + ACTIONS(2018), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1875), 2, + ACTIONS(2028), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(99), 5, + ACTIONS(101), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(101), 5, + ACTIONS(103), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(943), 5, + STATE(1066), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(663), 16, + STATE(758), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -77374,71 +88643,71 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [18135] = 21, + [20721] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_offsetof, ACTIONS(93), 1, + anon_sym_offsetof, + ACTIONS(95), 1, anon_sym__Generic, - ACTIONS(163), 1, + ACTIONS(165), 1, sym_number_literal, - ACTIONS(1801), 1, + ACTIONS(1429), 1, sym_identifier, - ACTIONS(1807), 1, + ACTIONS(1779), 1, anon_sym_sizeof, - ACTIONS(1861), 1, + ACTIONS(2244), 1, anon_sym_LPAREN2, - STATE(659), 1, + STATE(671), 1, sym_string_literal, - STATE(1039), 1, + STATE(1049), 1, sym_expression, - ACTIONS(95), 2, + ACTIONS(97), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(105), 2, + ACTIONS(107), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(165), 2, + ACTIONS(167), 2, sym_true, sym_false, - ACTIONS(1803), 2, + ACTIONS(1775), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1805), 2, + ACTIONS(1777), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1865), 2, + ACTIONS(2018), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1875), 2, + ACTIONS(2246), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(99), 5, + ACTIONS(101), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(101), 5, + ACTIONS(103), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(943), 5, + STATE(762), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(663), 16, + STATE(758), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -77455,197 +88724,71 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [18237] = 3, + [20823] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2307), 9, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - ACTIONS(2305), 49, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___scanf, - anon_sym___printf, - anon_sym___read_mostly, - anon_sym___must_hold, - anon_sym___ro_after_init, - anon_sym___init, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym___aligned, - anon_sym_union, - anon_sym_asm, - anon_sym___asm__, - sym_identifier, - [18303] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2311), 9, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - ACTIONS(2309), 49, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___scanf, - anon_sym___printf, - anon_sym___read_mostly, - anon_sym___must_hold, - anon_sym___ro_after_init, - anon_sym___init, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym___aligned, - anon_sym_union, - anon_sym_asm, - anon_sym___asm__, - sym_identifier, - [18369] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(91), 1, - anon_sym_offsetof, ACTIONS(93), 1, + anon_sym_offsetof, + ACTIONS(95), 1, anon_sym__Generic, - ACTIONS(163), 1, + ACTIONS(165), 1, sym_number_literal, - ACTIONS(1785), 1, - anon_sym_sizeof, - ACTIONS(2183), 1, + ACTIONS(2000), 1, sym_identifier, - ACTIONS(2313), 1, + ACTIONS(2006), 1, + anon_sym_sizeof, + ACTIONS(2014), 1, anon_sym_LPAREN2, - STATE(686), 1, - sym_expression, - STATE(799), 1, + STATE(671), 1, sym_string_literal, - ACTIONS(95), 2, + STATE(1165), 1, + sym_expression, + ACTIONS(97), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(105), 2, + ACTIONS(107), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(165), 2, + ACTIONS(167), 2, sym_true, sym_false, - ACTIONS(1781), 2, + ACTIONS(2002), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1783), 2, + ACTIONS(2004), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2165), 2, + ACTIONS(2018), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2187), 2, + ACTIONS(2028), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(99), 5, + ACTIONS(101), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(101), 5, + ACTIONS(103), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(890), 5, + STATE(1066), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(663), 16, + STATE(758), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -77662,71 +88805,71 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [18471] = 21, + [20925] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_offsetof, ACTIONS(93), 1, + anon_sym_offsetof, + ACTIONS(95), 1, anon_sym__Generic, - ACTIONS(163), 1, + ACTIONS(165), 1, sym_number_literal, - ACTIONS(1801), 1, + ACTIONS(1429), 1, sym_identifier, - ACTIONS(1807), 1, + ACTIONS(1441), 1, anon_sym_sizeof, - ACTIONS(1861), 1, + ACTIONS(2262), 1, anon_sym_LPAREN2, - STATE(659), 1, + STATE(671), 1, sym_string_literal, - STATE(925), 1, + STATE(912), 1, sym_expression, - ACTIONS(95), 2, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(97), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(105), 2, + ACTIONS(107), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(165), 2, + ACTIONS(167), 2, sym_true, sym_false, - ACTIONS(1803), 2, + ACTIONS(1433), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1805), 2, + ACTIONS(1435), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1865), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1875), 2, + ACTIONS(2264), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(99), 5, + ACTIONS(101), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(101), 5, + ACTIONS(103), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(943), 5, + STATE(762), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(663), 16, + STATE(758), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -77743,71 +88886,71 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [18573] = 21, + [21027] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_offsetof, ACTIONS(93), 1, + anon_sym_offsetof, + ACTIONS(95), 1, anon_sym__Generic, - ACTIONS(163), 1, + ACTIONS(165), 1, sym_number_literal, - ACTIONS(1397), 1, + ACTIONS(2000), 1, sym_identifier, - ACTIONS(1409), 1, + ACTIONS(2006), 1, anon_sym_sizeof, - ACTIONS(2107), 1, + ACTIONS(2014), 1, anon_sym_LPAREN2, - STATE(659), 1, + STATE(671), 1, sym_string_literal, - STATE(782), 1, + STATE(1166), 1, sym_expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(95), 2, + ACTIONS(97), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(105), 2, + ACTIONS(107), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(165), 2, + ACTIONS(167), 2, sym_true, sym_false, - ACTIONS(1401), 2, + ACTIONS(2002), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1403), 2, + ACTIONS(2004), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2109), 2, + ACTIONS(2018), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2028), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(99), 5, + ACTIONS(101), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(101), 5, + ACTIONS(103), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(670), 5, + STATE(1066), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(663), 16, + STATE(758), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -77824,71 +88967,71 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [18675] = 21, + [21129] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_offsetof, ACTIONS(93), 1, + anon_sym_offsetof, + ACTIONS(95), 1, anon_sym__Generic, - ACTIONS(163), 1, + ACTIONS(165), 1, sym_number_literal, - ACTIONS(1397), 1, + ACTIONS(2000), 1, sym_identifier, - ACTIONS(1409), 1, + ACTIONS(2006), 1, anon_sym_sizeof, - ACTIONS(2107), 1, + ACTIONS(2014), 1, anon_sym_LPAREN2, - STATE(659), 1, + STATE(671), 1, sym_string_literal, - STATE(785), 1, + STATE(1152), 1, sym_expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(95), 2, + ACTIONS(97), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(105), 2, + ACTIONS(107), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(165), 2, + ACTIONS(167), 2, sym_true, sym_false, - ACTIONS(1401), 2, + ACTIONS(2002), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1403), 2, + ACTIONS(2004), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2109), 2, + ACTIONS(2018), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2028), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(99), 5, + ACTIONS(101), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(101), 5, + ACTIONS(103), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(670), 5, + STATE(1066), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(663), 16, + STATE(758), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -77905,71 +89048,152 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [18777] = 21, + [21231] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_offsetof, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(89), 1, + anon_sym_sizeof, ACTIONS(93), 1, + anon_sym_offsetof, + ACTIONS(95), 1, anon_sym__Generic, - ACTIONS(163), 1, + ACTIONS(165), 1, sym_number_literal, - ACTIONS(1397), 1, + ACTIONS(1773), 1, sym_identifier, - ACTIONS(1409), 1, - anon_sym_sizeof, - ACTIONS(2107), 1, - anon_sym_LPAREN2, - STATE(659), 1, + STATE(671), 1, sym_string_literal, - STATE(786), 1, + STATE(1188), 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(95), 2, + ACTIONS(87), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(97), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(107), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(167), 2, + sym_true, + sym_false, + ACTIONS(91), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(101), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(103), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(944), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(758), 16, + sym__string, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [21333] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(93), 1, + anon_sym_offsetof, + ACTIONS(95), 1, + anon_sym__Generic, + ACTIONS(165), 1, + sym_number_literal, + ACTIONS(2000), 1, + sym_identifier, + ACTIONS(2006), 1, + anon_sym_sizeof, + ACTIONS(2014), 1, + anon_sym_LPAREN2, + STATE(671), 1, + sym_string_literal, + STATE(1168), 1, + sym_expression, + ACTIONS(97), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(105), 2, + ACTIONS(107), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(165), 2, + ACTIONS(167), 2, sym_true, sym_false, - ACTIONS(1401), 2, + ACTIONS(2002), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1403), 2, + ACTIONS(2004), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2109), 2, + ACTIONS(2018), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2028), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(99), 5, + ACTIONS(101), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(101), 5, + ACTIONS(103), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(670), 5, + STATE(1066), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(663), 16, + STATE(758), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -77986,71 +89210,71 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [18879] = 21, + [21435] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_offsetof, ACTIONS(93), 1, + anon_sym_offsetof, + ACTIONS(95), 1, anon_sym__Generic, - ACTIONS(163), 1, + ACTIONS(165), 1, sym_number_literal, - ACTIONS(1397), 1, + ACTIONS(2000), 1, sym_identifier, - ACTIONS(1409), 1, + ACTIONS(2006), 1, anon_sym_sizeof, - ACTIONS(2107), 1, + ACTIONS(2014), 1, anon_sym_LPAREN2, - STATE(659), 1, + STATE(671), 1, sym_string_literal, - STATE(787), 1, + STATE(1151), 1, sym_expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(95), 2, + ACTIONS(97), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(105), 2, + ACTIONS(107), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(165), 2, + ACTIONS(167), 2, sym_true, sym_false, - ACTIONS(1401), 2, + ACTIONS(2002), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1403), 2, + ACTIONS(2004), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2109), 2, + ACTIONS(2018), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2028), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(99), 5, + ACTIONS(101), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(101), 5, + ACTIONS(103), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(670), 5, + STATE(1066), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(663), 16, + STATE(758), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -78067,71 +89291,71 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [18981] = 21, + [21537] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_offsetof, ACTIONS(93), 1, + anon_sym_offsetof, + ACTIONS(95), 1, anon_sym__Generic, - ACTIONS(163), 1, + ACTIONS(165), 1, sym_number_literal, - ACTIONS(1397), 1, + ACTIONS(2000), 1, sym_identifier, - ACTIONS(1409), 1, + ACTIONS(2006), 1, anon_sym_sizeof, - ACTIONS(2107), 1, + ACTIONS(2014), 1, anon_sym_LPAREN2, - STATE(659), 1, + STATE(671), 1, sym_string_literal, - STATE(788), 1, + STATE(1170), 1, sym_expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(95), 2, + ACTIONS(97), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(105), 2, + ACTIONS(107), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(165), 2, + ACTIONS(167), 2, sym_true, sym_false, - ACTIONS(1401), 2, + ACTIONS(2002), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1403), 2, + ACTIONS(2004), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2109), 2, + ACTIONS(2018), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2028), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(99), 5, + ACTIONS(101), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(101), 5, + ACTIONS(103), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(670), 5, + STATE(1066), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(663), 16, + STATE(758), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -78148,71 +89372,71 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [19083] = 21, + [21639] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_offsetof, ACTIONS(93), 1, + anon_sym_offsetof, + ACTIONS(95), 1, anon_sym__Generic, - ACTIONS(163), 1, + ACTIONS(165), 1, sym_number_literal, - ACTIONS(1397), 1, + ACTIONS(2000), 1, sym_identifier, - ACTIONS(1409), 1, + ACTIONS(2006), 1, anon_sym_sizeof, - ACTIONS(2107), 1, + ACTIONS(2014), 1, anon_sym_LPAREN2, - STATE(659), 1, + STATE(671), 1, sym_string_literal, - STATE(789), 1, + STATE(1172), 1, sym_expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(95), 2, + ACTIONS(97), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(105), 2, + ACTIONS(107), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(165), 2, + ACTIONS(167), 2, sym_true, sym_false, - ACTIONS(1401), 2, + ACTIONS(2002), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1403), 2, + ACTIONS(2004), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2109), 2, + ACTIONS(2018), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2028), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(99), 5, + ACTIONS(101), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(101), 5, + ACTIONS(103), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(670), 5, + STATE(1066), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(663), 16, + STATE(758), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -78229,71 +89453,71 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [19185] = 21, + [21741] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_offsetof, ACTIONS(93), 1, + anon_sym_offsetof, + ACTIONS(95), 1, anon_sym__Generic, - ACTIONS(163), 1, + ACTIONS(165), 1, sym_number_literal, - ACTIONS(1397), 1, + ACTIONS(2000), 1, sym_identifier, - ACTIONS(1409), 1, + ACTIONS(2006), 1, anon_sym_sizeof, - ACTIONS(2107), 1, + ACTIONS(2014), 1, anon_sym_LPAREN2, - STATE(659), 1, + STATE(671), 1, sym_string_literal, - STATE(790), 1, + STATE(1030), 1, sym_expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(95), 2, + ACTIONS(97), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(105), 2, + ACTIONS(107), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(165), 2, + ACTIONS(167), 2, sym_true, sym_false, - ACTIONS(1401), 2, + ACTIONS(2002), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1403), 2, + ACTIONS(2004), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2109), 2, + ACTIONS(2018), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2028), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(99), 5, + ACTIONS(101), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(101), 5, + ACTIONS(103), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(670), 5, + STATE(1066), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(663), 16, + STATE(758), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -78310,71 +89534,71 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [19287] = 21, + [21843] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_offsetof, ACTIONS(93), 1, + anon_sym_offsetof, + ACTIONS(95), 1, anon_sym__Generic, - ACTIONS(163), 1, + ACTIONS(165), 1, sym_number_literal, - ACTIONS(1397), 1, + ACTIONS(2000), 1, sym_identifier, - ACTIONS(1409), 1, + ACTIONS(2006), 1, anon_sym_sizeof, - ACTIONS(2107), 1, + ACTIONS(2014), 1, anon_sym_LPAREN2, - STATE(659), 1, + STATE(671), 1, sym_string_literal, - STATE(791), 1, + STATE(1174), 1, sym_expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(95), 2, + ACTIONS(97), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(105), 2, + ACTIONS(107), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(165), 2, + ACTIONS(167), 2, sym_true, sym_false, - ACTIONS(1401), 2, + ACTIONS(2002), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1403), 2, + ACTIONS(2004), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2109), 2, + ACTIONS(2018), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2028), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(99), 5, + ACTIONS(101), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(101), 5, + ACTIONS(103), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(670), 5, + STATE(1066), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(663), 16, + STATE(758), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -78391,71 +89615,152 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [19389] = 21, + [21945] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_offsetof, ACTIONS(93), 1, + anon_sym_offsetof, + ACTIONS(95), 1, anon_sym__Generic, - ACTIONS(163), 1, + ACTIONS(165), 1, sym_number_literal, - ACTIONS(1397), 1, + ACTIONS(2000), 1, sym_identifier, - ACTIONS(1409), 1, + ACTIONS(2006), 1, anon_sym_sizeof, - ACTIONS(2107), 1, + ACTIONS(2014), 1, anon_sym_LPAREN2, - STATE(659), 1, + STATE(671), 1, sym_string_literal, - STATE(681), 1, + STATE(1175), 1, sym_expression, - ACTIONS(25), 2, + ACTIONS(97), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(107), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(167), 2, + sym_true, + sym_false, + ACTIONS(2002), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2004), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2018), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(95), 2, + ACTIONS(2028), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(91), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(101), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(103), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(1066), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(758), 16, + sym__string, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [22047] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(93), 1, + anon_sym_offsetof, + ACTIONS(95), 1, + anon_sym__Generic, + ACTIONS(165), 1, + sym_number_literal, + ACTIONS(1429), 1, + sym_identifier, + ACTIONS(1461), 1, + anon_sym_sizeof, + ACTIONS(2400), 1, + anon_sym_LPAREN2, + STATE(782), 1, + sym_expression, + STATE(940), 1, + sym_string_literal, + ACTIONS(97), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(105), 2, + ACTIONS(107), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(165), 2, + ACTIONS(167), 2, sym_true, sym_false, - ACTIONS(1401), 2, + ACTIONS(1457), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1403), 2, + ACTIONS(1459), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2109), 2, + ACTIONS(2276), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2286), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(99), 5, + ACTIONS(101), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(101), 5, + ACTIONS(103), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(670), 5, + STATE(762), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(663), 16, + STATE(758), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -78472,71 +89777,71 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [19491] = 21, + [22149] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_offsetof, ACTIONS(93), 1, + anon_sym_offsetof, + ACTIONS(95), 1, anon_sym__Generic, - ACTIONS(163), 1, + ACTIONS(165), 1, sym_number_literal, - ACTIONS(1397), 1, + ACTIONS(1429), 1, sym_identifier, - ACTIONS(1409), 1, + ACTIONS(1779), 1, anon_sym_sizeof, - ACTIONS(2107), 1, + ACTIONS(2244), 1, anon_sym_LPAREN2, - STATE(659), 1, + STATE(671), 1, sym_string_literal, - STATE(792), 1, + STATE(1046), 1, sym_expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(95), 2, + ACTIONS(97), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(105), 2, + ACTIONS(107), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(165), 2, + ACTIONS(167), 2, sym_true, sym_false, - ACTIONS(1401), 2, + ACTIONS(1775), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1403), 2, + ACTIONS(1777), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2109), 2, + ACTIONS(2018), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2246), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(99), 5, + ACTIONS(101), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(101), 5, + ACTIONS(103), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(670), 5, + STATE(762), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(663), 16, + STATE(758), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -78553,71 +89858,152 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [19593] = 21, + [22251] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(89), 1, + anon_sym_sizeof, + ACTIONS(93), 1, anon_sym_offsetof, + ACTIONS(95), 1, + anon_sym__Generic, + ACTIONS(165), 1, + sym_number_literal, + ACTIONS(1773), 1, + sym_identifier, + STATE(671), 1, + sym_string_literal, + STATE(1158), 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(87), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(97), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(107), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(167), 2, + sym_true, + sym_false, + ACTIONS(91), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(101), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(103), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(944), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(758), 16, + sym__string, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [22353] = 21, + ACTIONS(3), 1, + sym_comment, ACTIONS(93), 1, + anon_sym_offsetof, + ACTIONS(95), 1, anon_sym__Generic, - ACTIONS(163), 1, + ACTIONS(165), 1, sym_number_literal, - ACTIONS(1785), 1, - anon_sym_sizeof, - ACTIONS(2183), 1, + ACTIONS(1429), 1, sym_identifier, - ACTIONS(2185), 1, + ACTIONS(1461), 1, + anon_sym_sizeof, + ACTIONS(2284), 1, anon_sym_LPAREN2, - STATE(689), 1, - sym_expression, - STATE(799), 1, + STATE(940), 1, sym_string_literal, - ACTIONS(95), 2, + STATE(991), 1, + sym_expression, + ACTIONS(97), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(105), 2, + ACTIONS(107), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(165), 2, + ACTIONS(167), 2, sym_true, sym_false, - ACTIONS(1781), 2, + ACTIONS(1457), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1783), 2, + ACTIONS(1459), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2165), 2, + ACTIONS(2276), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2187), 2, + ACTIONS(2286), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(99), 5, + ACTIONS(101), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(101), 5, + ACTIONS(103), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(890), 5, + STATE(762), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(663), 16, + STATE(758), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -78634,71 +90020,71 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [19695] = 21, + [22455] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_offsetof, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(89), 1, + anon_sym_sizeof, ACTIONS(93), 1, + anon_sym_offsetof, + ACTIONS(95), 1, anon_sym__Generic, - ACTIONS(163), 1, + ACTIONS(165), 1, sym_number_literal, - ACTIONS(1397), 1, + ACTIONS(1773), 1, sym_identifier, - ACTIONS(1720), 1, - anon_sym_sizeof, - ACTIONS(2213), 1, - anon_sym_LPAREN2, - STATE(659), 1, + STATE(671), 1, sym_string_literal, - STATE(927), 1, + STATE(1211), 1, sym_expression, - ACTIONS(95), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(105), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(165), 2, - sym_true, - sym_false, - ACTIONS(1716), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1718), 2, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1865), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2215), 2, + ACTIONS(87), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(89), 5, + ACTIONS(97), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(107), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(167), 2, + sym_true, + sym_false, + ACTIONS(91), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(99), 5, + ACTIONS(101), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(101), 5, + ACTIONS(103), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(670), 5, + STATE(944), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(663), 16, + STATE(758), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -78715,71 +90101,71 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [19797] = 21, + [22557] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_offsetof, ACTIONS(93), 1, + anon_sym_offsetof, + ACTIONS(95), 1, anon_sym__Generic, - ACTIONS(163), 1, + ACTIONS(165), 1, sym_number_literal, - ACTIONS(1801), 1, + ACTIONS(1429), 1, sym_identifier, - ACTIONS(1807), 1, + ACTIONS(1441), 1, anon_sym_sizeof, - ACTIONS(1861), 1, + ACTIONS(2262), 1, anon_sym_LPAREN2, - STATE(659), 1, + STATE(671), 1, sym_string_literal, - STATE(918), 1, + STATE(911), 1, sym_expression, - ACTIONS(95), 2, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(97), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(105), 2, + ACTIONS(107), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(165), 2, + ACTIONS(167), 2, sym_true, sym_false, - ACTIONS(1803), 2, + ACTIONS(1433), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1805), 2, + ACTIONS(1435), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1865), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1875), 2, + ACTIONS(2264), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(99), 5, + ACTIONS(101), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(101), 5, + ACTIONS(103), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(943), 5, + STATE(762), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(663), 16, + STATE(758), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -78796,71 +90182,71 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [19899] = 21, + [22659] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_offsetof, ACTIONS(93), 1, + anon_sym_offsetof, + ACTIONS(95), 1, anon_sym__Generic, - ACTIONS(163), 1, + ACTIONS(165), 1, sym_number_literal, - ACTIONS(1801), 1, + ACTIONS(1429), 1, sym_identifier, - ACTIONS(1807), 1, + ACTIONS(1441), 1, anon_sym_sizeof, - ACTIONS(2315), 1, + ACTIONS(2262), 1, anon_sym_LPAREN2, - STATE(659), 1, + STATE(671), 1, sym_string_literal, - STATE(920), 1, + STATE(909), 1, sym_expression, - ACTIONS(95), 2, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(97), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(105), 2, + ACTIONS(107), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(165), 2, + ACTIONS(167), 2, sym_true, sym_false, - ACTIONS(1803), 2, + ACTIONS(1433), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1805), 2, + ACTIONS(1435), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1865), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1875), 2, + ACTIONS(2264), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(99), 5, + ACTIONS(101), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(101), 5, + ACTIONS(103), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(943), 5, + STATE(762), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(663), 16, + STATE(758), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -78877,71 +90263,71 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [20001] = 21, + [22761] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_offsetof, ACTIONS(93), 1, + anon_sym_offsetof, + ACTIONS(95), 1, anon_sym__Generic, - ACTIONS(163), 1, + ACTIONS(165), 1, sym_number_literal, - ACTIONS(1785), 1, - anon_sym_sizeof, - ACTIONS(2183), 1, + ACTIONS(1429), 1, sym_identifier, - ACTIONS(2185), 1, + ACTIONS(1461), 1, + anon_sym_sizeof, + ACTIONS(2284), 1, anon_sym_LPAREN2, - STATE(679), 1, - sym_expression, - STATE(799), 1, + STATE(940), 1, sym_string_literal, - ACTIONS(95), 2, + STATE(990), 1, + sym_expression, + ACTIONS(97), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(105), 2, + ACTIONS(107), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(165), 2, + ACTIONS(167), 2, sym_true, sym_false, - ACTIONS(1781), 2, + ACTIONS(1457), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1783), 2, + ACTIONS(1459), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2165), 2, + ACTIONS(2276), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2187), 2, + ACTIONS(2286), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(99), 5, + ACTIONS(101), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(101), 5, + ACTIONS(103), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(890), 5, + STATE(762), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(663), 16, + STATE(758), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -78958,71 +90344,71 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [20103] = 21, + [22863] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(87), 1, - anon_sym_sizeof, - ACTIONS(91), 1, - anon_sym_offsetof, ACTIONS(93), 1, + anon_sym_offsetof, + ACTIONS(95), 1, anon_sym__Generic, - ACTIONS(163), 1, + ACTIONS(165), 1, sym_number_literal, - ACTIONS(1722), 1, + ACTIONS(1429), 1, sym_identifier, - STATE(659), 1, + ACTIONS(1441), 1, + anon_sym_sizeof, + ACTIONS(2262), 1, + anon_sym_LPAREN2, + STATE(671), 1, sym_string_literal, - STATE(947), 1, + STATE(920), 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(85), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(95), 2, + ACTIONS(97), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(105), 2, + ACTIONS(107), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(165), 2, + ACTIONS(167), 2, sym_true, sym_false, - ACTIONS(89), 5, + ACTIONS(1433), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1435), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2264), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(91), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(99), 5, + ACTIONS(101), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(101), 5, + ACTIONS(103), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(818), 5, + STATE(762), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(663), 16, + STATE(758), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -79039,71 +90425,71 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [20205] = 21, + [22965] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_offsetof, ACTIONS(93), 1, + anon_sym_offsetof, + ACTIONS(95), 1, anon_sym__Generic, - ACTIONS(163), 1, + ACTIONS(165), 1, sym_number_literal, - ACTIONS(1397), 1, - sym_identifier, ACTIONS(1429), 1, + sym_identifier, + ACTIONS(1779), 1, anon_sym_sizeof, - ACTIONS(2163), 1, + ACTIONS(2244), 1, anon_sym_LPAREN2, - STATE(799), 1, + STATE(671), 1, sym_string_literal, - STATE(881), 1, + STATE(1054), 1, sym_expression, - ACTIONS(95), 2, + ACTIONS(97), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(105), 2, + ACTIONS(107), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(165), 2, + ACTIONS(167), 2, sym_true, sym_false, - ACTIONS(1425), 2, + ACTIONS(1775), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1427), 2, + ACTIONS(1777), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2165), 2, + ACTIONS(2018), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2167), 2, + ACTIONS(2246), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(99), 5, + ACTIONS(101), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(101), 5, + ACTIONS(103), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(670), 5, + STATE(762), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(663), 16, + STATE(758), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -79120,137 +90506,79 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [20307] = 3, + [23067] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2317), 23, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(2406), 1, + anon_sym_LBRACE, + ACTIONS(2408), 1, + anon_sym___aligned, + STATE(817), 1, + sym_field_declaration_list, + STATE(830), 1, + sym_attribute_specifier, + ACTIONS(33), 2, anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(35), 2, anon_sym___scanf, anon_sym___printf, + ACTIONS(37), 4, anon_sym___read_mostly, - anon_sym___must_hold, anon_sym___ro_after_init, - anon_sym___init, - anon_sym_EQ, - anon_sym_DOT, - sym_identifier, - ACTIONS(2319), 34, - anon_sym_DOT_DOT_DOT, + anon_sym___noreturn, + anon_sym___cold, + ACTIONS(2404), 7, anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, - anon_sym_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_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_LBRACK_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_DASH_GT, - [20372] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2321), 1, - sym_identifier, - STATE(456), 1, - sym_string_literal, - ACTIONS(101), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(2325), 21, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym___scanf, - anon_sym___printf, - anon_sym___read_mostly, - anon_sym___must_hold, - anon_sym___ro_after_init, + ACTIONS(2402), 38, + anon_sym___extension__, + anon_sym_extern, + anon_sym___declspec, + anon_sym___based, anon_sym___init, - anon_sym_EQ, - anon_sym_DOT, - ACTIONS(2323), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym___exit, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [20443] = 3, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + [23146] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2327), 23, + ACTIONS(2410), 24, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -79270,11 +90598,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___read_mostly, anon_sym___must_hold, anon_sym___ro_after_init, - anon_sym___init, + anon_sym___noreturn, + anon_sym___cold, anon_sym_EQ, anon_sym_DOT, sym_identifier, - ACTIONS(2329), 33, + ACTIONS(2412), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -79308,10 +90637,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [20507] = 3, + [23211] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2331), 23, + ACTIONS(2414), 24, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -79331,11 +90660,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___read_mostly, anon_sym___must_hold, anon_sym___ro_after_init, - anon_sym___init, + anon_sym___noreturn, + anon_sym___cold, anon_sym_EQ, anon_sym_DOT, sym_identifier, - ACTIONS(2333), 33, + ACTIONS(2416), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -79369,10 +90699,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [20571] = 3, + [23276] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2335), 23, + ACTIONS(2418), 24, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -79392,11 +90722,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___read_mostly, anon_sym___must_hold, anon_sym___ro_after_init, - anon_sym___init, + anon_sym___noreturn, + anon_sym___cold, anon_sym_EQ, anon_sym_DOT, sym_identifier, - ACTIONS(2337), 33, + ACTIONS(2420), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -79430,10 +90761,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [20635] = 3, + [23341] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1740), 23, + ACTIONS(2422), 24, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -79453,11 +90784,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___read_mostly, anon_sym___must_hold, anon_sym___ro_after_init, - anon_sym___init, + anon_sym___noreturn, + anon_sym___cold, anon_sym_EQ, anon_sym_DOT, sym_identifier, - ACTIONS(1734), 33, + ACTIONS(2424), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -79491,10 +90823,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [20699] = 3, + [23406] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2339), 23, + ACTIONS(2426), 24, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -79514,11 +90846,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___read_mostly, anon_sym___must_hold, anon_sym___ro_after_init, - anon_sym___init, + anon_sym___noreturn, + anon_sym___cold, anon_sym_EQ, anon_sym_DOT, sym_identifier, - ACTIONS(2341), 33, + ACTIONS(2428), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -79552,10 +90885,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [20763] = 3, + [23471] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2343), 23, + ACTIONS(2430), 24, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -79575,11 +90908,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___read_mostly, anon_sym___must_hold, anon_sym___ro_after_init, - anon_sym___init, + anon_sym___noreturn, + anon_sym___cold, anon_sym_EQ, anon_sym_DOT, sym_identifier, - ACTIONS(2345), 33, + ACTIONS(2432), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -79613,10 +90947,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [20827] = 3, + [23536] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2347), 23, + ACTIONS(1756), 24, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -79636,11 +90970,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___read_mostly, anon_sym___must_hold, anon_sym___ro_after_init, - anon_sym___init, + anon_sym___noreturn, + anon_sym___cold, anon_sym_EQ, anon_sym_DOT, sym_identifier, - ACTIONS(2349), 33, + ACTIONS(1750), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -79674,10 +91009,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [20891] = 3, + [23601] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2351), 23, + ACTIONS(2434), 24, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -79697,11 +91032,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___read_mostly, anon_sym___must_hold, anon_sym___ro_after_init, - anon_sym___init, + anon_sym___noreturn, + anon_sym___cold, anon_sym_EQ, anon_sym_DOT, sym_identifier, - ACTIONS(2353), 33, + ACTIONS(2436), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -79735,10 +91071,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [20955] = 3, + [23666] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2355), 23, + ACTIONS(2438), 24, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -79758,11 +91094,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___read_mostly, anon_sym___must_hold, anon_sym___ro_after_init, - anon_sym___init, + anon_sym___noreturn, + anon_sym___cold, anon_sym_EQ, anon_sym_DOT, sym_identifier, - ACTIONS(2357), 33, + ACTIONS(2440), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -79796,10 +91133,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [21019] = 3, + [23731] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2359), 23, + ACTIONS(2442), 24, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -79819,11 +91156,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___read_mostly, anon_sym___must_hold, anon_sym___ro_after_init, - anon_sym___init, + anon_sym___noreturn, + anon_sym___cold, anon_sym_EQ, anon_sym_DOT, sym_identifier, - ACTIONS(2361), 33, + ACTIONS(2444), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -79857,10 +91195,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [21083] = 3, + [23796] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1740), 23, + ACTIONS(1756), 24, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -79880,11 +91218,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___read_mostly, anon_sym___must_hold, anon_sym___ro_after_init, - anon_sym___init, + anon_sym___noreturn, + anon_sym___cold, anon_sym_EQ, anon_sym_DOT, sym_identifier, - ACTIONS(1734), 33, + ACTIONS(1750), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -79918,71 +91257,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [21147] = 3, + [23861] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2363), 23, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(2406), 1, + anon_sym_LBRACE, + ACTIONS(2450), 1, + anon_sym___aligned, + STATE(814), 1, + sym_field_declaration_list, + STATE(823), 1, + sym_attribute_specifier, + ACTIONS(33), 2, anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(35), 2, anon_sym___scanf, anon_sym___printf, + ACTIONS(37), 4, anon_sym___read_mostly, - anon_sym___must_hold, anon_sym___ro_after_init, - anon_sym___init, - anon_sym_EQ, - anon_sym_DOT, - sym_identifier, - ACTIONS(2365), 33, - anon_sym_DOT_DOT_DOT, + anon_sym___noreturn, + anon_sym___cold, + ACTIONS(2448), 7, anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, - anon_sym_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_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_LBRACK_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_DASH_GT, - [21211] = 3, + ACTIONS(2446), 38, + anon_sym___extension__, + anon_sym_extern, + anon_sym___declspec, + anon_sym___based, + anon_sym___init, + anon_sym___exit, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + [23940] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2367), 23, + ACTIONS(2452), 24, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -80002,11 +91349,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___read_mostly, anon_sym___must_hold, anon_sym___ro_after_init, - anon_sym___init, + anon_sym___noreturn, + anon_sym___cold, anon_sym_EQ, anon_sym_DOT, sym_identifier, - ACTIONS(2369), 33, + ACTIONS(2454), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -80040,10 +91388,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [21275] = 3, + [24005] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2371), 23, + ACTIONS(2456), 24, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -80063,11 +91411,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___read_mostly, anon_sym___must_hold, anon_sym___ro_after_init, - anon_sym___init, + anon_sym___noreturn, + anon_sym___cold, anon_sym_EQ, anon_sym_DOT, sym_identifier, - ACTIONS(2373), 33, + ACTIONS(2458), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -80101,10 +91450,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [21339] = 3, + [24070] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2375), 23, + ACTIONS(2406), 1, + anon_sym_LBRACE, + ACTIONS(2464), 1, + anon_sym___aligned, + STATE(803), 1, + sym_field_declaration_list, + STATE(833), 1, + sym_attribute_specifier, + ACTIONS(33), 2, + anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(35), 2, + anon_sym___scanf, + anon_sym___printf, + ACTIONS(37), 4, + anon_sym___read_mostly, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + ACTIONS(2462), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(2460), 38, + anon_sym___extension__, + anon_sym_extern, + anon_sym___declspec, + anon_sym___based, + anon_sym___init, + anon_sym___exit, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + [24149] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2466), 24, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -80124,11 +91542,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___read_mostly, anon_sym___must_hold, anon_sym___ro_after_init, - anon_sym___init, + anon_sym___noreturn, + anon_sym___cold, anon_sym_EQ, anon_sym_DOT, sym_identifier, - ACTIONS(2377), 33, + ACTIONS(2468), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -80162,10 +91581,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [21403] = 3, + [24214] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2379), 23, + ACTIONS(2470), 24, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -80185,11 +91604,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___read_mostly, anon_sym___must_hold, anon_sym___ro_after_init, - anon_sym___init, + anon_sym___noreturn, + anon_sym___cold, anon_sym_EQ, anon_sym_DOT, sym_identifier, - ACTIONS(2381), 33, + ACTIONS(2472), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -80223,10 +91643,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [21467] = 3, + [24279] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2383), 23, + ACTIONS(2474), 24, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -80246,11 +91666,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___read_mostly, anon_sym___must_hold, anon_sym___ro_after_init, - anon_sym___init, + anon_sym___noreturn, + anon_sym___cold, anon_sym_EQ, anon_sym_DOT, sym_identifier, - ACTIONS(2385), 33, + ACTIONS(2476), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -80284,88 +91705,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [21531] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(41), 1, - anon_sym___declspec, - ACTIONS(55), 1, - sym_primitive_type, - ACTIONS(57), 1, - anon_sym_enum, - ACTIONS(59), 1, - anon_sym_struct, - ACTIONS(61), 1, - anon_sym_union, - ACTIONS(1137), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1809), 1, - sym_identifier, - STATE(703), 1, - sym_alignas_qualifier, - STATE(710), 1, - sym_type_specifier, - STATE(747), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1249), 1, - sym__declaration_specifiers, - ACTIONS(33), 2, - anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(35), 2, - anon_sym___scanf, - anon_sym___printf, - ACTIONS(53), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(37), 3, - anon_sym___read_mostly, - anon_sym___ro_after_init, - anon_sym___init, - ACTIONS(47), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(746), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(697), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(51), 9, - anon_sym___extension__, - 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(49), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - [21630] = 3, + [24344] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2387), 22, + ACTIONS(2478), 24, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -80385,10 +91728,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___read_mostly, anon_sym___must_hold, anon_sym___ro_after_init, - anon_sym___init, + anon_sym___noreturn, + anon_sym___cold, anon_sym_EQ, + anon_sym_DOT, sym_identifier, - ACTIONS(2389), 33, + ACTIONS(2480), 33, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, aux_sym_preproc_if_token2, @@ -80403,9 +91749,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, @@ -80420,21 +91766,23 @@ 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, - [21693] = 7, + [24409] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2395), 1, + ACTIONS(2486), 1, anon_sym_LPAREN2, - ACTIONS(2397), 1, + ACTIONS(2488), 1, anon_sym_LBRACK, - STATE(668), 1, + STATE(765), 1, sym_argument_list, - ACTIONS(2399), 2, + ACTIONS(2490), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2492), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2391), 22, + ACTIONS(2482), 23, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -80454,10 +91802,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___read_mostly, anon_sym___must_hold, anon_sym___ro_after_init, - anon_sym___init, + anon_sym___noreturn, + anon_sym___cold, anon_sym_EQ, sym_identifier, - ACTIONS(2393), 28, + ACTIONS(2484), 26, anon_sym_COMMA, anon_sym_RPAREN, aux_sym_preproc_if_token2, @@ -80484,32 +91833,109 @@ 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, - [21764] = 21, + [24483] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(41), 1, + anon_sym___declspec, + ACTIONS(57), 1, + sym_primitive_type, + ACTIONS(59), 1, + anon_sym_enum, + ACTIONS(61), 1, + anon_sym_struct, + ACTIONS(63), 1, + anon_sym_union, + ACTIONS(1145), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2008), 1, + sym_identifier, + STATE(799), 1, + sym_alignas_qualifier, + STATE(807), 1, + sym_type_specifier, + STATE(890), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1496), 1, + sym__declaration_specifiers, + ACTIONS(33), 2, + anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(35), 2, + anon_sym___scanf, + anon_sym___printf, + ACTIONS(55), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(37), 4, + anon_sym___read_mostly, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + ACTIONS(49), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(873), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(805), 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(53), 9, + anon_sym___extension__, + 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(51), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [24583] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(41), 1, anon_sym___declspec, - ACTIONS(55), 1, - sym_primitive_type, ACTIONS(57), 1, - anon_sym_enum, + sym_primitive_type, ACTIONS(59), 1, - anon_sym_struct, + anon_sym_enum, ACTIONS(61), 1, + anon_sym_struct, + ACTIONS(63), 1, anon_sym_union, - ACTIONS(1137), 1, + ACTIONS(1145), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1809), 1, + ACTIONS(2008), 1, sym_identifier, - STATE(703), 1, + STATE(799), 1, sym_alignas_qualifier, - STATE(710), 1, + STATE(807), 1, sym_type_specifier, - STATE(747), 1, + STATE(890), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1250), 1, + STATE(1283), 1, sym__declaration_specifiers, ACTIONS(33), 2, anon_sym___attribute__, @@ -80517,25 +91943,26 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(35), 2, anon_sym___scanf, anon_sym___printf, - ACTIONS(53), 2, + ACTIONS(55), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(37), 3, + ACTIONS(37), 4, anon_sym___read_mostly, anon_sym___ro_after_init, - anon_sym___init, - ACTIONS(47), 4, + anon_sym___noreturn, + anon_sym___cold, + ACTIONS(49), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(746), 5, + STATE(873), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(697), 7, + STATE(805), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -80543,7 +91970,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(51), 9, + ACTIONS(53), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -80553,7 +91980,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - ACTIONS(49), 10, + ACTIONS(51), 10, anon_sym_extern, anon_sym_static, anon_sym_auto, @@ -80564,95 +91991,222 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [21863] = 8, + [24683] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2395), 1, - anon_sym_LPAREN2, - ACTIONS(2397), 1, + ACTIONS(2224), 1, + sym_identifier, + ACTIONS(2230), 1, + anon_sym_STAR, + ACTIONS(2232), 1, anon_sym_LBRACK, - STATE(668), 1, - sym_argument_list, - ACTIONS(2399), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2405), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2401), 22, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, + STATE(1271), 1, + sym_gnu_asm_expression, + ACTIONS(33), 2, + anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(35), 2, + anon_sym___scanf, + anon_sym___printf, + ACTIONS(97), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(2228), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + STATE(1259), 3, + sym_preproc_call_expression, + sym_attribute_specifier, + aux_sym_function_declarator_repeat1, + ACTIONS(37), 4, + anon_sym___read_mostly, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + ACTIONS(2226), 37, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym___extension__, + anon_sym_extern, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + [24765] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2370), 3, + anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + anon_sym_LBRACK_LBRACK, + ACTIONS(2368), 53, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_preproc_directive, + anon_sym___extension__, + anon_sym_extern, anon_sym___attribute__, anon_sym___scanf, anon_sym___printf, anon_sym___read_mostly, anon_sym___must_hold, anon_sym___ro_after_init, - anon_sym___init, - anon_sym_EQ, + anon_sym___noreturn, + anon_sym___cold, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + anon_sym_asm, + anon_sym___asm__, sym_identifier, - ACTIONS(2403), 26, + [24829] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2496), 7, anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, + anon_sym_LPAREN2, + anon_sym_STAR, anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym_LBRACK_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, - [21936] = 21, + ACTIONS(2494), 49, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___scanf, + anon_sym___printf, + anon_sym___read_mostly, + anon_sym___must_hold, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + anon_sym___declspec, + anon_sym___based, + anon_sym___init, + anon_sym___exit, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [24893] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(41), 1, anon_sym___declspec, - ACTIONS(55), 1, - sym_primitive_type, ACTIONS(57), 1, - anon_sym_enum, + sym_primitive_type, ACTIONS(59), 1, - anon_sym_struct, + anon_sym_enum, ACTIONS(61), 1, + anon_sym_struct, + ACTIONS(63), 1, anon_sym_union, - ACTIONS(1137), 1, + ACTIONS(1145), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1809), 1, + ACTIONS(2008), 1, sym_identifier, - STATE(703), 1, + STATE(799), 1, sym_alignas_qualifier, - STATE(710), 1, + STATE(807), 1, sym_type_specifier, - STATE(747), 1, + STATE(890), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1262), 1, + STATE(1494), 1, sym__declaration_specifiers, ACTIONS(33), 2, anon_sym___attribute__, @@ -80660,25 +92214,26 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(35), 2, anon_sym___scanf, anon_sym___printf, - ACTIONS(53), 2, + ACTIONS(55), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(37), 3, + ACTIONS(37), 4, anon_sym___read_mostly, anon_sym___ro_after_init, - anon_sym___init, - ACTIONS(47), 4, + anon_sym___noreturn, + anon_sym___cold, + ACTIONS(49), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(746), 5, + STATE(873), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(697), 7, + STATE(805), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -80686,7 +92241,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(51), 9, + ACTIONS(53), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -80696,7 +92251,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - ACTIONS(49), 10, + ACTIONS(51), 10, anon_sym_extern, anon_sym_static, anon_sym_auto, @@ -80707,95 +92262,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [22035] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2395), 1, - anon_sym_LPAREN2, - ACTIONS(2397), 1, - anon_sym_LBRACK, - STATE(668), 1, - sym_argument_list, - ACTIONS(2399), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2405), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2407), 22, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym___scanf, - anon_sym___printf, - anon_sym___read_mostly, - anon_sym___must_hold, - anon_sym___ro_after_init, - anon_sym___init, - anon_sym_EQ, - sym_identifier, - ACTIONS(2409), 26, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [22108] = 21, + [24993] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(41), 1, anon_sym___declspec, - ACTIONS(55), 1, - sym_primitive_type, ACTIONS(57), 1, - anon_sym_enum, + sym_primitive_type, ACTIONS(59), 1, - anon_sym_struct, + anon_sym_enum, ACTIONS(61), 1, + anon_sym_struct, + ACTIONS(63), 1, anon_sym_union, - ACTIONS(1137), 1, + ACTIONS(1145), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1809), 1, + ACTIONS(2008), 1, sym_identifier, - STATE(703), 1, + STATE(799), 1, sym_alignas_qualifier, - STATE(710), 1, + STATE(807), 1, sym_type_specifier, - STATE(747), 1, + STATE(890), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1268), 1, + STATE(1501), 1, sym__declaration_specifiers, ACTIONS(33), 2, anon_sym___attribute__, @@ -80803,25 +92293,26 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(35), 2, anon_sym___scanf, anon_sym___printf, - ACTIONS(53), 2, + ACTIONS(55), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(37), 3, + ACTIONS(37), 4, anon_sym___read_mostly, anon_sym___ro_after_init, - anon_sym___init, - ACTIONS(47), 4, + anon_sym___noreturn, + anon_sym___cold, + ACTIONS(49), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(746), 5, + STATE(873), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(697), 7, + STATE(805), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -80829,7 +92320,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(51), 9, + ACTIONS(53), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -80839,7 +92330,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - ACTIONS(49), 10, + ACTIONS(51), 10, anon_sym_extern, anon_sym_static, anon_sym_auto, @@ -80850,22 +92341,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [22207] = 8, + [25093] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2395), 1, - anon_sym_LPAREN2, - ACTIONS(2397), 1, - anon_sym_LBRACK, - STATE(668), 1, - sym_argument_list, - ACTIONS(2399), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2405), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2411), 22, + ACTIONS(2498), 23, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -80885,16 +92364,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___read_mostly, anon_sym___must_hold, anon_sym___ro_after_init, - anon_sym___init, + anon_sym___noreturn, + anon_sym___cold, anon_sym_EQ, sym_identifier, - ACTIONS(2413), 26, + ACTIONS(2500), 33, anon_sym_COMMA, anon_sym_RPAREN, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -80902,7 +92383,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -80915,75 +92398,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [22280] = 8, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [25157] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2395), 1, + ACTIONS(2390), 3, anon_sym_LPAREN2, - ACTIONS(2397), 1, - anon_sym_LBRACK, - STATE(668), 1, - sym_argument_list, - ACTIONS(2399), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2405), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2415), 22, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + anon_sym_LBRACK_LBRACK, + ACTIONS(2388), 53, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_preproc_directive, + anon_sym___extension__, + anon_sym_extern, anon_sym___attribute__, anon_sym___scanf, anon_sym___printf, anon_sym___read_mostly, anon_sym___must_hold, anon_sym___ro_after_init, - anon_sym___init, - anon_sym_EQ, + anon_sym___noreturn, + anon_sym___cold, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + anon_sym_asm, + anon_sym___asm__, sym_identifier, - ACTIONS(2417), 26, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [22353] = 3, + [25221] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2419), 22, + ACTIONS(2486), 1, + anon_sym_LPAREN2, + ACTIONS(2488), 1, + anon_sym_LBRACK, + STATE(765), 1, + sym_argument_list, + ACTIONS(2490), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2492), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2502), 23, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -81003,17 +92498,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___read_mostly, anon_sym___must_hold, anon_sym___ro_after_init, - anon_sym___init, + anon_sym___noreturn, + anon_sym___cold, anon_sym_EQ, sym_identifier, - ACTIONS(2421), 33, + ACTIONS(2504), 26, anon_sym_COMMA, anon_sym_RPAREN, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -81021,9 +92516,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_SEMI, - anon_sym_RBRACK_RBRACK, anon_sym_RBRACE, - anon_sym_LBRACK, anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -81036,104 +92529,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, - [22416] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(41), 1, - anon_sym___declspec, - ACTIONS(55), 1, - sym_primitive_type, - ACTIONS(57), 1, - anon_sym_enum, - ACTIONS(59), 1, - anon_sym_struct, - ACTIONS(61), 1, - anon_sym_union, - ACTIONS(1137), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1809), 1, - sym_identifier, - STATE(703), 1, - sym_alignas_qualifier, - STATE(710), 1, - sym_type_specifier, - STATE(747), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1267), 1, - sym__declaration_specifiers, - ACTIONS(33), 2, - anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(35), 2, - anon_sym___scanf, - anon_sym___printf, - ACTIONS(53), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(37), 3, - anon_sym___read_mostly, - anon_sym___ro_after_init, - anon_sym___init, - ACTIONS(47), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(746), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(697), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(51), 9, - anon_sym___extension__, - 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(49), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - [22515] = 8, + [25295] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2395), 1, + ACTIONS(2486), 1, anon_sym_LPAREN2, - ACTIONS(2397), 1, + ACTIONS(2488), 1, anon_sym_LBRACK, - STATE(668), 1, + STATE(765), 1, sym_argument_list, - ACTIONS(2399), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2405), 2, + ACTIONS(2490), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2423), 22, + ACTIONS(2492), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2506), 23, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -81153,10 +92564,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___read_mostly, anon_sym___must_hold, anon_sym___ro_after_init, - anon_sym___init, + anon_sym___noreturn, + anon_sym___cold, anon_sym_EQ, sym_identifier, - ACTIONS(2425), 26, + ACTIONS(2508), 26, anon_sym_COMMA, anon_sym_RPAREN, aux_sym_preproc_if_token2, @@ -81183,10 +92595,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [22588] = 3, + [25369] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2427), 22, + ACTIONS(2486), 1, + anon_sym_LPAREN2, + ACTIONS(2488), 1, + anon_sym_LBRACK, + STATE(765), 1, + sym_argument_list, + ACTIONS(2490), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2492), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2510), 23, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -81206,17 +92630,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___read_mostly, anon_sym___must_hold, anon_sym___ro_after_init, - anon_sym___init, + anon_sym___noreturn, + anon_sym___cold, anon_sym_EQ, sym_identifier, - ACTIONS(2429), 33, + ACTIONS(2512), 26, anon_sym_COMMA, anon_sym_RPAREN, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -81224,9 +92648,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_SEMI, - anon_sym_RBRACK_RBRACK, anon_sym_RBRACE, - anon_sym_LBRACK, anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -81239,34 +92661,30 @@ 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, - [22651] = 21, + [25443] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(41), 1, anon_sym___declspec, - ACTIONS(55), 1, - sym_primitive_type, ACTIONS(57), 1, - anon_sym_enum, + sym_primitive_type, ACTIONS(59), 1, - anon_sym_struct, + anon_sym_enum, ACTIONS(61), 1, + anon_sym_struct, + ACTIONS(63), 1, anon_sym_union, - ACTIONS(1137), 1, + ACTIONS(1145), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1809), 1, + ACTIONS(2008), 1, sym_identifier, - STATE(703), 1, + STATE(799), 1, sym_alignas_qualifier, - STATE(710), 1, + STATE(807), 1, sym_type_specifier, - STATE(747), 1, + STATE(890), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1239), 1, + STATE(1274), 1, sym__declaration_specifiers, ACTIONS(33), 2, anon_sym___attribute__, @@ -81274,25 +92692,26 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(35), 2, anon_sym___scanf, anon_sym___printf, - ACTIONS(53), 2, + ACTIONS(55), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(37), 3, + ACTIONS(37), 4, anon_sym___read_mostly, anon_sym___ro_after_init, - anon_sym___init, - ACTIONS(47), 4, + anon_sym___noreturn, + anon_sym___cold, + ACTIONS(49), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(746), 5, + STATE(873), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(697), 7, + STATE(805), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -81300,7 +92719,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(51), 9, + ACTIONS(53), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -81310,7 +92729,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - ACTIONS(49), 10, + ACTIONS(51), 10, anon_sym_extern, anon_sym_static, anon_sym_auto, @@ -81321,30 +92740,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [22750] = 21, + [25543] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(41), 1, anon_sym___declspec, - ACTIONS(55), 1, - sym_primitive_type, ACTIONS(57), 1, - anon_sym_enum, + sym_primitive_type, ACTIONS(59), 1, - anon_sym_struct, + anon_sym_enum, ACTIONS(61), 1, + anon_sym_struct, + ACTIONS(63), 1, anon_sym_union, - ACTIONS(1137), 1, + ACTIONS(1145), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1809), 1, + ACTIONS(2008), 1, sym_identifier, - STATE(703), 1, + STATE(799), 1, sym_alignas_qualifier, - STATE(710), 1, + STATE(807), 1, sym_type_specifier, - STATE(747), 1, + STATE(890), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1266), 1, + STATE(1499), 1, sym__declaration_specifiers, ACTIONS(33), 2, anon_sym___attribute__, @@ -81352,25 +92771,26 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(35), 2, anon_sym___scanf, anon_sym___printf, - ACTIONS(53), 2, + ACTIONS(55), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(37), 3, + ACTIONS(37), 4, anon_sym___read_mostly, anon_sym___ro_after_init, - anon_sym___init, - ACTIONS(47), 4, + anon_sym___noreturn, + anon_sym___cold, + ACTIONS(49), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(746), 5, + STATE(873), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(697), 7, + STATE(805), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -81378,7 +92798,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(51), 9, + ACTIONS(53), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -81388,7 +92808,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - ACTIONS(49), 10, + ACTIONS(51), 10, anon_sym_extern, anon_sym_static, anon_sym_auto, @@ -81399,30 +92819,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [22849] = 21, + [25643] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(41), 1, anon_sym___declspec, - ACTIONS(55), 1, - sym_primitive_type, ACTIONS(57), 1, - anon_sym_enum, + sym_primitive_type, ACTIONS(59), 1, - anon_sym_struct, + anon_sym_enum, ACTIONS(61), 1, + anon_sym_struct, + ACTIONS(63), 1, anon_sym_union, - ACTIONS(1137), 1, + ACTIONS(1145), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1809), 1, + ACTIONS(2008), 1, sym_identifier, - STATE(703), 1, + STATE(799), 1, sym_alignas_qualifier, - STATE(710), 1, + STATE(807), 1, sym_type_specifier, - STATE(747), 1, + STATE(890), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1241), 1, + STATE(1498), 1, sym__declaration_specifiers, ACTIONS(33), 2, anon_sym___attribute__, @@ -81430,25 +92850,172 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(35), 2, anon_sym___scanf, anon_sym___printf, - ACTIONS(53), 2, + ACTIONS(55), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(37), 3, + ACTIONS(37), 4, + anon_sym___read_mostly, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + ACTIONS(49), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(873), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(805), 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(53), 9, + anon_sym___extension__, + 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(51), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [25743] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2406), 1, + anon_sym_LBRACE, + STATE(822), 1, + sym_field_declaration_list, + STATE(840), 1, + sym_attribute_specifier, + ACTIONS(33), 2, + anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(35), 2, + anon_sym___scanf, + anon_sym___printf, + ACTIONS(37), 4, anon_sym___read_mostly, anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + ACTIONS(2516), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(2514), 38, + anon_sym___extension__, + anon_sym_extern, + anon_sym___declspec, + anon_sym___based, anon_sym___init, - ACTIONS(47), 4, + anon_sym___exit, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + [25819] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(41), 1, + anon_sym___declspec, + ACTIONS(57), 1, + sym_primitive_type, + ACTIONS(59), 1, + anon_sym_enum, + ACTIONS(61), 1, + anon_sym_struct, + ACTIONS(63), 1, + anon_sym_union, + ACTIONS(1145), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2008), 1, + sym_identifier, + STATE(799), 1, + sym_alignas_qualifier, + STATE(807), 1, + sym_type_specifier, + STATE(890), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1495), 1, + sym__declaration_specifiers, + ACTIONS(33), 2, + anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(35), 2, + anon_sym___scanf, + anon_sym___printf, + ACTIONS(55), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(37), 4, + anon_sym___read_mostly, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + ACTIONS(49), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(746), 5, + STATE(873), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(697), 7, + STATE(805), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -81456,7 +93023,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(51), 9, + ACTIONS(53), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -81466,7 +93033,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - ACTIONS(49), 10, + ACTIONS(51), 10, anon_sym_extern, anon_sym_static, anon_sym_auto, @@ -81477,10 +93044,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [22948] = 3, + [25919] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2431), 22, + ACTIONS(2486), 1, + anon_sym_LPAREN2, + ACTIONS(2488), 1, + anon_sym_LBRACK, + STATE(765), 1, + sym_argument_list, + ACTIONS(2492), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2518), 23, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -81500,17 +93076,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___read_mostly, anon_sym___must_hold, anon_sym___ro_after_init, - anon_sym___init, + anon_sym___noreturn, + anon_sym___cold, anon_sym_EQ, sym_identifier, - ACTIONS(2433), 33, + ACTIONS(2520), 28, anon_sym_COMMA, anon_sym_RPAREN, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -81518,9 +93094,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_SEMI, - anon_sym_RBRACK_RBRACK, anon_sym_RBRACE, - anon_sym_LBRACK, anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -81535,42 +93109,111 @@ 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, - [23011] = 10, + [25991] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2439), 1, - anon_sym_LBRACE, - ACTIONS(2441), 1, - anon_sym___aligned, - STATE(715), 1, - sym_field_declaration_list, - STATE(729), 1, - sym_attribute_specifier, + ACTIONS(41), 1, + anon_sym___declspec, + ACTIONS(57), 1, + sym_primitive_type, + ACTIONS(59), 1, + anon_sym_enum, + ACTIONS(61), 1, + anon_sym_struct, + ACTIONS(63), 1, + anon_sym_union, + ACTIONS(1145), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2008), 1, + sym_identifier, + STATE(799), 1, + sym_alignas_qualifier, + STATE(807), 1, + sym_type_specifier, + STATE(890), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1294), 1, + sym__declaration_specifiers, ACTIONS(33), 2, anon_sym___attribute__, anon_sym___must_hold, ACTIONS(35), 2, anon_sym___scanf, anon_sym___printf, - ACTIONS(37), 3, + ACTIONS(55), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(37), 4, anon_sym___read_mostly, anon_sym___ro_after_init, - anon_sym___init, - ACTIONS(2437), 7, + anon_sym___noreturn, + anon_sym___cold, + ACTIONS(49), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(873), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(805), 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(53), 9, + anon_sym___extension__, + 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(51), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [26091] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2524), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2435), 36, + anon_sym_LBRACE, + ACTIONS(2522), 49, anon_sym___extension__, anon_sym_extern, + anon_sym___attribute__, + anon_sym___scanf, + anon_sym___printf, + anon_sym___read_mostly, + anon_sym___must_hold, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, anon_sym___declspec, anon_sym___based, + anon_sym___init, + anon_sym___exit, anon_sym___cdecl, anon_sym___clrcall, anon_sym___stdcall, @@ -81602,17 +93245,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [26155] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2526), 23, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym___scanf, + anon_sym___printf, + anon_sym___read_mostly, + anon_sym___must_hold, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + anon_sym_EQ, sym_identifier, - [23087] = 10, + ACTIONS(2528), 33, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [26219] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2439), 1, + ACTIONS(2406), 1, anon_sym_LBRACE, - ACTIONS(2447), 1, - anon_sym___aligned, - STATE(717), 1, + STATE(826), 1, sym_field_declaration_list, - STATE(719), 1, + STATE(856), 1, sym_attribute_specifier, ACTIONS(33), 2, anon_sym___attribute__, @@ -81620,11 +93325,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(35), 2, anon_sym___scanf, anon_sym___printf, - ACTIONS(37), 3, + ACTIONS(37), 4, anon_sym___read_mostly, anon_sym___ro_after_init, - anon_sym___init, - ACTIONS(2445), 7, + anon_sym___noreturn, + anon_sym___cold, + ACTIONS(2532), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -81632,11 +93338,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2443), 36, + ACTIONS(2530), 38, anon_sym___extension__, anon_sym_extern, anon_sym___declspec, anon_sym___based, + anon_sym___init, + anon_sym___exit, anon_sym___cdecl, anon_sym___clrcall, anon_sym___stdcall, @@ -81669,54 +93377,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [23163] = 20, + [26295] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(41), 1, anon_sym___declspec, - ACTIONS(55), 1, - sym_primitive_type, ACTIONS(57), 1, - anon_sym_enum, + sym_primitive_type, ACTIONS(59), 1, - anon_sym_struct, + anon_sym_enum, ACTIONS(61), 1, + anon_sym_struct, + ACTIONS(63), 1, anon_sym_union, - ACTIONS(1137), 1, + ACTIONS(1145), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1809), 1, + ACTIONS(2008), 1, sym_identifier, - STATE(703), 1, + STATE(799), 1, sym_alignas_qualifier, - STATE(712), 1, + STATE(807), 1, sym_type_specifier, - STATE(747), 1, + STATE(890), 1, aux_sym_sized_type_specifier_repeat1, + STATE(1493), 1, + sym__declaration_specifiers, ACTIONS(33), 2, anon_sym___attribute__, anon_sym___must_hold, ACTIONS(35), 2, anon_sym___scanf, anon_sym___printf, - ACTIONS(53), 2, + ACTIONS(55), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(37), 3, + ACTIONS(37), 4, anon_sym___read_mostly, anon_sym___ro_after_init, - anon_sym___init, - ACTIONS(47), 4, + anon_sym___noreturn, + anon_sym___cold, + ACTIONS(49), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(746), 5, + STATE(873), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(479), 7, + STATE(805), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -81724,7 +93435,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(51), 9, + ACTIONS(53), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -81734,7 +93445,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - ACTIONS(49), 10, + ACTIONS(51), 10, anon_sym_extern, anon_sym_static, anon_sym_auto, @@ -81745,31 +93456,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [23259] = 7, + [26395] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1749), 1, - anon_sym_EQ, - STATE(456), 1, - sym_string_literal, - ACTIONS(101), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1753), 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(1740), 12, + ACTIONS(2534), 23, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -81782,9 +93473,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1734), 25, + anon_sym___attribute__, + anon_sym___scanf, + anon_sym___printf, + anon_sym___read_mostly, + anon_sym___must_hold, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + anon_sym_EQ, + sym_identifier, + ACTIONS(2536), 33, anon_sym_COMMA, anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -81793,99 +93498,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_SEMI, - anon_sym___attribute__, - anon_sym___scanf, - anon_sym___printf, - anon_sym___read_mostly, - anon_sym___must_hold, - anon_sym___ro_after_init, - anon_sym___init, + 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, - [23329] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2439), 1, - anon_sym_LBRACE, - ACTIONS(2453), 1, - anon_sym___aligned, - STATE(714), 1, - sym_field_declaration_list, - STATE(727), 1, - sym_attribute_specifier, - ACTIONS(33), 2, - anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(35), 2, - anon_sym___scanf, - anon_sym___printf, - ACTIONS(37), 3, - anon_sym___read_mostly, - anon_sym___ro_after_init, - anon_sym___init, - ACTIONS(2451), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2449), 36, - anon_sym___extension__, - anon_sym_extern, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - sym_identifier, - [23405] = 3, + [26459] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 7, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2396), 3, anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2455), 46, + ACTIONS(2394), 53, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_preproc_directive, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -81894,15 +93543,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___read_mostly, anon_sym___must_hold, anon_sym___ro_after_init, - anon_sym___init, + anon_sym___noreturn, + anon_sym___cold, anon_sym___declspec, anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, anon_sym_signed, anon_sym_unsigned, anon_sym_long, @@ -81931,50 +93575,140 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_enum, anon_sym_struct, anon_sym_union, + anon_sym_asm, + anon_sym___asm__, sym_identifier, - [23466] = 9, + [26523] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2439), 1, - anon_sym_LBRACE, - STATE(737), 1, - sym_field_declaration_list, - STATE(744), 1, - sym_attribute_specifier, - ACTIONS(33), 2, + ACTIONS(2538), 23, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(35), 2, anon_sym___scanf, anon_sym___printf, - ACTIONS(37), 3, anon_sym___read_mostly, + anon_sym___must_hold, anon_sym___ro_after_init, - anon_sym___init, - ACTIONS(2461), 7, + anon_sym___noreturn, + anon_sym___cold, + anon_sym_EQ, + sym_identifier, + ACTIONS(2540), 33, anon_sym_COMMA, anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, - anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_COLON, - ACTIONS(2459), 36, - anon_sym___extension__, - anon_sym_extern, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + 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, + [26587] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(41), 1, anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, + ACTIONS(57), 1, + sym_primitive_type, + ACTIONS(59), 1, + anon_sym_enum, + ACTIONS(61), 1, + anon_sym_struct, + ACTIONS(63), 1, + anon_sym_union, + ACTIONS(1145), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2008), 1, + sym_identifier, + STATE(799), 1, + sym_alignas_qualifier, + STATE(807), 1, + sym_type_specifier, + STATE(890), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1497), 1, + sym__declaration_specifiers, + ACTIONS(33), 2, + anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(35), 2, + anon_sym___scanf, + anon_sym___printf, + ACTIONS(55), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(37), 4, + anon_sym___read_mostly, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + ACTIONS(49), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_LBRACK, + STATE(873), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(805), 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(53), 9, + anon_sym___extension__, + 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(51), 10, + anon_sym_extern, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -81984,38 +93718,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - sym_identifier, - [23539] = 9, + [26687] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2439), 1, - anon_sym_LBRACE, - STATE(728), 1, - sym_field_declaration_list, - STATE(764), 1, - sym_attribute_specifier, - ACTIONS(33), 2, - anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(35), 2, - anon_sym___scanf, - anon_sym___printf, - ACTIONS(37), 3, - anon_sym___read_mostly, - anon_sym___ro_after_init, - anon_sym___init, - ACTIONS(2465), 7, + ACTIONS(2544), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -82023,11 +93729,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2463), 36, + ACTIONS(2542), 49, anon_sym___extension__, anon_sym_extern, + anon_sym___attribute__, + anon_sym___scanf, + anon_sym___printf, + anon_sym___read_mostly, + anon_sym___must_hold, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, anon_sym___declspec, anon_sym___based, + anon_sym___init, + anon_sym___exit, anon_sym___cdecl, anon_sym___clrcall, anon_sym___stdcall, @@ -82059,41 +93775,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [23612] = 3, + [26751] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2469), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2467), 46, - anon_sym___extension__, - anon_sym_extern, + ACTIONS(2224), 1, + sym_identifier, + ACTIONS(2232), 1, + anon_sym_LBRACK, + STATE(1271), 1, + sym_gnu_asm_expression, + ACTIONS(33), 2, anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(35), 2, anon_sym___scanf, anon_sym___printf, + ACTIONS(97), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(2228), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + ACTIONS(2230), 2, + anon_sym_STAR, + anon_sym_RBRACE, + STATE(1259), 3, + sym_preproc_call_expression, + sym_attribute_specifier, + aux_sym_function_declarator_repeat1, + ACTIONS(37), 4, anon_sym___read_mostly, - anon_sym___must_hold, anon_sym___ro_after_init, - anon_sym___init, + anon_sym___noreturn, + anon_sym___cold, + ACTIONS(2226), 36, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym___extension__, + anon_sym_extern, anon_sym___declspec, anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -82117,41 +93849,142 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_enum, anon_sym_struct, anon_sym_union, - sym_identifier, - [23673] = 3, + [26833] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2473), 7, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2486), 1, anon_sym_LPAREN2, + ACTIONS(2488), 1, + anon_sym_LBRACK, + STATE(765), 1, + sym_argument_list, + ACTIONS(2490), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2492), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2546), 23, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(2471), 46, - anon_sym___extension__, - anon_sym_extern, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym___attribute__, anon_sym___scanf, anon_sym___printf, anon_sym___read_mostly, anon_sym___must_hold, anon_sym___ro_after_init, - anon_sym___init, + anon_sym___noreturn, + anon_sym___cold, + anon_sym_EQ, + sym_identifier, + ACTIONS(2548), 26, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [26907] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(41), 1, anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, + ACTIONS(57), 1, + sym_primitive_type, + ACTIONS(59), 1, + anon_sym_enum, + ACTIONS(61), 1, + anon_sym_struct, + ACTIONS(63), 1, + anon_sym_union, + ACTIONS(1145), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2008), 1, + sym_identifier, + STATE(799), 1, + sym_alignas_qualifier, + STATE(807), 1, + sym_type_specifier, + STATE(890), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1280), 1, + sym__declaration_specifiers, + ACTIONS(33), 2, + anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(35), 2, + anon_sym___scanf, + anon_sym___printf, + ACTIONS(55), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(37), 4, + anon_sym___read_mostly, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + ACTIONS(49), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_LBRACK, + STATE(873), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(805), 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(53), 9, + anon_sym___extension__, + 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(51), 10, + anon_sym_extern, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -82161,27 +93994,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [23734] = 8, + [27007] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2479), 1, + ACTIONS(2554), 1, anon_sym___aligned, - STATE(725), 1, + STATE(818), 1, sym_attribute_specifier, ACTIONS(33), 2, anon_sym___attribute__, @@ -82189,11 +94007,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(35), 2, anon_sym___scanf, anon_sym___printf, - ACTIONS(37), 3, + ACTIONS(37), 4, anon_sym___read_mostly, anon_sym___ro_after_init, - anon_sym___init, - ACTIONS(2477), 7, + anon_sym___noreturn, + anon_sym___cold, + ACTIONS(2552), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -82201,11 +94020,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2475), 36, + ACTIONS(2550), 38, anon_sym___extension__, anon_sym_extern, anon_sym___declspec, anon_sym___based, + anon_sym___init, + anon_sym___exit, anon_sym___cdecl, anon_sym___clrcall, anon_sym___stdcall, @@ -82238,28 +94059,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [23804] = 3, + [27080] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1714), 6, + ACTIONS(2560), 1, + anon_sym___aligned, + STATE(832), 1, + sym_attribute_specifier, + ACTIONS(33), 2, + anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(35), 2, + anon_sym___scanf, + anon_sym___printf, + ACTIONS(37), 4, + anon_sym___read_mostly, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + ACTIONS(2558), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(1712), 46, + anon_sym_COLON, + ACTIONS(2556), 38, anon_sym___extension__, anon_sym_extern, - anon_sym___attribute__, - anon_sym___scanf, - anon_sym___printf, - anon_sym___read_mostly, - anon_sym___must_hold, - anon_sym___ro_after_init, - anon_sym___init, anon_sym___declspec, anon_sym___based, + anon_sym___init, + anon_sym___exit, anon_sym___cdecl, anon_sym___clrcall, anon_sym___stdcall, @@ -82291,106 +94123,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [23864] = 13, + [27153] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(41), 1, anon_sym___declspec, - ACTIONS(1137), 1, + ACTIONS(57), 1, + sym_primitive_type, + ACTIONS(59), 1, + anon_sym_enum, + ACTIONS(61), 1, + anon_sym_struct, + ACTIONS(63), 1, + anon_sym_union, + ACTIONS(1145), 1, anon_sym_LBRACK_LBRACK, - STATE(703), 1, - sym_alignas_qualifier, - ACTIONS(33), 2, - anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(35), 2, - anon_sym___scanf, - anon_sym___printf, - ACTIONS(53), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(37), 3, - anon_sym___read_mostly, - anon_sym___ro_after_init, - anon_sym___init, - ACTIONS(2483), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - STATE(479), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(51), 9, - anon_sym___extension__, - 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(2481), 9, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_LBRACK, + ACTIONS(2008), 1, sym_identifier, - ACTIONS(49), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - [23944] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(41), 1, - anon_sym___declspec, - ACTIONS(1137), 1, - anon_sym_LBRACK_LBRACK, - STATE(703), 1, + STATE(799), 1, sym_alignas_qualifier, + STATE(816), 1, + sym_type_specifier, + STATE(890), 1, + aux_sym_sized_type_specifier_repeat1, ACTIONS(33), 2, anon_sym___attribute__, anon_sym___must_hold, ACTIONS(35), 2, anon_sym___scanf, anon_sym___printf, - ACTIONS(53), 2, + ACTIONS(55), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(37), 3, + ACTIONS(37), 4, anon_sym___read_mostly, anon_sym___ro_after_init, - anon_sym___init, - ACTIONS(2487), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - STATE(479), 7, + anon_sym___noreturn, + anon_sym___cold, + ACTIONS(49), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(873), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(524), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -82398,7 +94180,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(51), 9, + ACTIONS(53), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -82408,17 +94190,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - ACTIONS(2485), 9, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_LBRACK, - sym_identifier, - ACTIONS(49), 10, + ACTIONS(51), 10, anon_sym_extern, anon_sym_static, anon_sym_auto, @@ -82429,17 +94201,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [24024] = 3, + [27250] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2491), 6, + ACTIONS(1715), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2489), 46, + ACTIONS(1713), 49, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -82448,9 +94220,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___read_mostly, anon_sym___must_hold, anon_sym___ro_after_init, - anon_sym___init, + anon_sym___noreturn, + anon_sym___cold, anon_sym___declspec, anon_sym___based, + anon_sym___init, + anon_sym___exit, anon_sym___cdecl, anon_sym___clrcall, anon_sym___stdcall, @@ -82486,14 +94261,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [24084] = 13, + [27313] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(41), 1, anon_sym___declspec, - ACTIONS(1137), 1, + ACTIONS(1145), 1, anon_sym_LBRACK_LBRACK, - STATE(703), 1, + STATE(799), 1, sym_alignas_qualifier, ACTIONS(33), 2, anon_sym___attribute__, @@ -82501,20 +94276,21 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(35), 2, anon_sym___scanf, anon_sym___printf, - ACTIONS(53), 2, + ACTIONS(55), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(37), 3, + ACTIONS(37), 4, anon_sym___read_mostly, anon_sym___ro_after_init, - anon_sym___init, - ACTIONS(2495), 5, + anon_sym___noreturn, + anon_sym___cold, + ACTIONS(2564), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, - STATE(708), 7, + STATE(810), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -82522,7 +94298,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(51), 9, + ACTIONS(53), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -82532,17 +94308,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - ACTIONS(2493), 9, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_LBRACK, - sym_identifier, - ACTIONS(49), 10, + ACTIONS(51), 10, anon_sym_extern, anon_sym_static, anon_sym_auto, @@ -82553,12 +94319,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [24164] = 8, + ACTIONS(2562), 11, + anon_sym___based, + anon_sym___init, + anon_sym___exit, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + sym_identifier, + [27396] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2501), 1, + ACTIONS(2570), 1, anon_sym___aligned, - STATE(723), 1, + STATE(828), 1, sym_attribute_specifier, ACTIONS(33), 2, anon_sym___attribute__, @@ -82566,11 +94344,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(35), 2, anon_sym___scanf, anon_sym___printf, - ACTIONS(37), 3, + ACTIONS(37), 4, anon_sym___read_mostly, anon_sym___ro_after_init, - anon_sym___init, - ACTIONS(2499), 7, + anon_sym___noreturn, + anon_sym___cold, + ACTIONS(2568), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -82578,11 +94357,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2497), 36, + ACTIONS(2566), 38, anon_sym___extension__, anon_sym_extern, anon_sym___declspec, anon_sym___based, + anon_sym___init, + anon_sym___exit, anon_sym___cdecl, anon_sym___clrcall, anon_sym___stdcall, @@ -82615,14 +94396,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [24234] = 13, + [27469] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(41), 1, anon_sym___declspec, - ACTIONS(1137), 1, + ACTIONS(1145), 1, anon_sym_LBRACK_LBRACK, - STATE(703), 1, + STATE(799), 1, sym_alignas_qualifier, ACTIONS(33), 2, anon_sym___attribute__, @@ -82630,20 +94411,21 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(35), 2, anon_sym___scanf, anon_sym___printf, - ACTIONS(53), 2, + ACTIONS(55), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(37), 3, + ACTIONS(37), 4, anon_sym___read_mostly, anon_sym___ro_after_init, - anon_sym___init, - ACTIONS(2505), 5, + anon_sym___noreturn, + anon_sym___cold, + ACTIONS(2574), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, - STATE(707), 7, + STATE(524), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -82651,7 +94433,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(51), 9, + ACTIONS(53), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -82661,8 +94443,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - ACTIONS(2503), 9, + ACTIONS(51), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + ACTIONS(2572), 11, anon_sym___based, + anon_sym___init, + anon_sym___exit, anon_sym___cdecl, anon_sym___clrcall, anon_sym___stdcall, @@ -82671,7 +94466,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___vectorcall, anon_sym_LBRACK, sym_identifier, - ACTIONS(49), 10, + [27552] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(41), 1, + anon_sym___declspec, + ACTIONS(1145), 1, + anon_sym_LBRACK_LBRACK, + STATE(799), 1, + sym_alignas_qualifier, + ACTIONS(33), 2, + anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(35), 2, + anon_sym___scanf, + anon_sym___printf, + ACTIONS(55), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(37), 4, + anon_sym___read_mostly, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + ACTIONS(2578), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + STATE(524), 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(53), 9, + anon_sym___extension__, + 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(51), 10, anon_sym_extern, anon_sym_static, anon_sym_auto, @@ -82682,12 +94524,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [24314] = 8, + ACTIONS(2576), 11, + anon_sym___based, + anon_sym___init, + anon_sym___exit, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + sym_identifier, + [27635] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1765), 1, + anon_sym_EQ, + STATE(520), 1, + sym_string_literal, + ACTIONS(103), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(1769), 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(1756), 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(1750), 26, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym___scanf, + anon_sym___printf, + anon_sym___read_mostly, + anon_sym___must_hold, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + 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, + [27706] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2511), 1, + ACTIONS(2584), 1, anon_sym___aligned, - STATE(735), 1, + STATE(824), 1, sym_attribute_specifier, ACTIONS(33), 2, anon_sym___attribute__, @@ -82695,11 +94613,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(35), 2, anon_sym___scanf, anon_sym___printf, - ACTIONS(37), 3, + ACTIONS(37), 4, anon_sym___read_mostly, anon_sym___ro_after_init, - anon_sym___init, - ACTIONS(2509), 7, + anon_sym___noreturn, + anon_sym___cold, + ACTIONS(2582), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -82707,11 +94626,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2507), 36, + ACTIONS(2580), 38, anon_sym___extension__, anon_sym_extern, anon_sym___declspec, anon_sym___based, + anon_sym___init, + anon_sym___exit, anon_sym___cdecl, anon_sym___clrcall, anon_sym___stdcall, @@ -82744,36 +94665,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [24384] = 8, + [27779] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2517), 1, - anon_sym___aligned, - STATE(720), 1, - sym_attribute_specifier, - ACTIONS(33), 2, - anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(35), 2, - anon_sym___scanf, - anon_sym___printf, - ACTIONS(37), 3, - anon_sym___read_mostly, - anon_sym___ro_after_init, - anon_sym___init, - ACTIONS(2515), 7, + ACTIONS(2588), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2513), 36, + ACTIONS(2586), 49, anon_sym___extension__, anon_sym_extern, + anon_sym___attribute__, + anon_sym___scanf, + anon_sym___printf, + anon_sym___read_mostly, + anon_sym___must_hold, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, anon_sym___declspec, anon_sym___based, + anon_sym___init, + anon_sym___exit, anon_sym___cdecl, anon_sym___clrcall, anon_sym___stdcall, @@ -82805,13 +94721,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [24454] = 8, + [27842] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2523), 1, + ACTIONS(2594), 1, anon_sym___aligned, - STATE(734), 1, + STATE(827), 1, sym_attribute_specifier, ACTIONS(33), 2, anon_sym___attribute__, @@ -82819,11 +94738,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(35), 2, anon_sym___scanf, anon_sym___printf, - ACTIONS(37), 3, + ACTIONS(37), 4, anon_sym___read_mostly, anon_sym___ro_after_init, - anon_sym___init, - ACTIONS(2521), 7, + anon_sym___noreturn, + anon_sym___cold, + ACTIONS(2592), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -82831,11 +94751,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2519), 36, + ACTIONS(2590), 38, anon_sym___extension__, anon_sym_extern, anon_sym___declspec, anon_sym___based, + anon_sym___init, + anon_sym___exit, anon_sym___cdecl, anon_sym___clrcall, anon_sym___stdcall, @@ -82868,17 +94790,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [24524] = 3, + [27915] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1710), 6, + ACTIONS(1746), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(1708), 46, + ACTIONS(1744), 49, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -82887,9 +94809,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___read_mostly, anon_sym___must_hold, anon_sym___ro_after_init, - anon_sym___init, + anon_sym___noreturn, + anon_sym___cold, anon_sym___declspec, anon_sym___based, + anon_sym___init, + anon_sym___exit, anon_sym___cdecl, anon_sym___clrcall, anon_sym___stdcall, @@ -82925,12 +94850,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [24584] = 8, + [27978] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(41), 1, + anon_sym___declspec, + ACTIONS(1145), 1, + anon_sym_LBRACK_LBRACK, + STATE(799), 1, + sym_alignas_qualifier, + ACTIONS(33), 2, + anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(35), 2, + anon_sym___scanf, + anon_sym___printf, + ACTIONS(55), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(37), 4, + anon_sym___read_mostly, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + ACTIONS(2598), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + STATE(809), 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(53), 9, + anon_sym___extension__, + 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(51), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + ACTIONS(2596), 11, + anon_sym___based, + anon_sym___init, + anon_sym___exit, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + sym_identifier, + [28061] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2529), 1, + ACTIONS(2604), 1, anon_sym___aligned, - STATE(731), 1, + STATE(820), 1, sym_attribute_specifier, ACTIONS(33), 2, anon_sym___attribute__, @@ -82938,11 +94933,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(35), 2, anon_sym___scanf, anon_sym___printf, - ACTIONS(37), 3, + ACTIONS(37), 4, anon_sym___read_mostly, anon_sym___ro_after_init, - anon_sym___init, - ACTIONS(2527), 7, + anon_sym___noreturn, + anon_sym___cold, + ACTIONS(2602), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -82950,11 +94946,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2525), 36, + ACTIONS(2600), 38, anon_sym___extension__, anon_sym_extern, anon_sym___declspec, anon_sym___based, + anon_sym___init, + anon_sym___exit, anon_sym___cdecl, anon_sym___clrcall, anon_sym___stdcall, @@ -82987,10 +94985,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [24654] = 3, + [28134] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2533), 7, + ACTIONS(2610), 1, + anon_sym___aligned, + ACTIONS(2608), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -82998,7 +94998,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2531), 44, + ACTIONS(2606), 46, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -83007,9 +95007,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___read_mostly, anon_sym___must_hold, anon_sym___ro_after_init, - anon_sym___init, + anon_sym___noreturn, + anon_sym___cold, anon_sym___declspec, anon_sym___based, + anon_sym___init, + anon_sym___exit, anon_sym___cdecl, anon_sym___clrcall, anon_sym___stdcall, @@ -83041,14 +95044,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_primitive_type, - anon_sym___aligned, sym_identifier, - [24713] = 4, + [28198] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2539), 1, - anon_sym___aligned, - ACTIONS(2537), 7, + STATE(819), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2616), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(2614), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -83056,7 +95063,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2535), 43, + ACTIONS(2612), 42, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -83065,19 +95072,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___read_mostly, anon_sym___must_hold, anon_sym___ro_after_init, - anon_sym___init, + anon_sym___noreturn, + anon_sym___cold, anon_sym___declspec, anon_sym___based, + anon_sym___init, + anon_sym___exit, anon_sym___cdecl, anon_sym___clrcall, anon_sym___stdcall, anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, anon_sym_LBRACK, anon_sym_static, anon_sym_auto, @@ -83100,12 +95106,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [24774] = 4, + [28264] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2545), 1, + ACTIONS(2623), 1, anon_sym___aligned, - ACTIONS(2543), 7, + ACTIONS(2621), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -83113,7 +95119,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2541), 43, + ACTIONS(2619), 46, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -83122,9 +95128,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___read_mostly, anon_sym___must_hold, anon_sym___ro_after_init, - anon_sym___init, + anon_sym___noreturn, + anon_sym___cold, anon_sym___declspec, anon_sym___based, + anon_sym___init, + anon_sym___exit, anon_sym___cdecl, anon_sym___clrcall, anon_sym___stdcall, @@ -83157,22 +95166,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [24835] = 7, + [28328] = 3, ACTIONS(3), 1, sym_comment, - STATE(745), 1, - sym_attribute_specifier, - ACTIONS(33), 2, - anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(35), 2, - anon_sym___scanf, - anon_sym___printf, - ACTIONS(37), 3, - anon_sym___read_mostly, - anon_sym___ro_after_init, - anon_sym___init, - ACTIONS(2549), 7, + ACTIONS(2627), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -83180,11 +95177,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2547), 36, + ACTIONS(2625), 47, anon_sym___extension__, anon_sym_extern, + anon_sym___attribute__, + anon_sym___scanf, + anon_sym___printf, + anon_sym___read_mostly, + anon_sym___must_hold, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, anon_sym___declspec, anon_sym___based, + anon_sym___init, + anon_sym___exit, anon_sym___cdecl, anon_sym___clrcall, anon_sym___stdcall, @@ -83216,69 +95223,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_primitive_type, + anon_sym___aligned, sym_identifier, - [24902] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2319), 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(2317), 30, - 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___try, - anon_sym___leave, - anon_sym_sizeof, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - anon_sym_offsetof, - anon_sym__Generic, - anon_sym_asm, - anon_sym___asm__, - sym_true, - sym_false, - anon_sym_NULL, - anon_sym_nullptr, - sym_identifier, - [24961] = 4, + [28390] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2555), 1, - anon_sym___aligned, - ACTIONS(2553), 7, + STATE(842), 1, + sym_attribute_specifier, + ACTIONS(33), 2, + anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(35), 2, + anon_sym___scanf, + anon_sym___printf, + ACTIONS(37), 4, + anon_sym___read_mostly, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + ACTIONS(2631), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -83286,18 +95249,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2551), 43, + ACTIONS(2629), 38, anon_sym___extension__, anon_sym_extern, - anon_sym___attribute__, - anon_sym___scanf, - anon_sym___printf, - anon_sym___read_mostly, - anon_sym___must_hold, - anon_sym___ro_after_init, - anon_sym___init, anon_sym___declspec, anon_sym___based, + anon_sym___init, + anon_sym___exit, anon_sym___cdecl, anon_sym___clrcall, anon_sym___stdcall, @@ -83330,10 +95288,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [25022] = 3, + [28460] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2559), 7, + ACTIONS(2637), 1, + anon_sym___aligned, + ACTIONS(2635), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -83341,7 +95301,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2557), 44, + ACTIONS(2633), 46, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -83350,9 +95310,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___read_mostly, anon_sym___must_hold, anon_sym___ro_after_init, - anon_sym___init, + anon_sym___noreturn, + anon_sym___cold, anon_sym___declspec, anon_sym___based, + anon_sym___init, + anon_sym___exit, anon_sym___cdecl, anon_sym___clrcall, anon_sym___stdcall, @@ -83384,14 +95347,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_primitive_type, - anon_sym___aligned, sym_identifier, - [25081] = 4, + [28524] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2565), 1, + ACTIONS(2643), 1, anon_sym___aligned, - ACTIONS(2563), 7, + ACTIONS(2641), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -83399,7 +95361,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2561), 43, + ACTIONS(2639), 46, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -83408,9 +95370,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___read_mostly, anon_sym___must_hold, anon_sym___ro_after_init, - anon_sym___init, + anon_sym___noreturn, + anon_sym___cold, anon_sym___declspec, anon_sym___based, + anon_sym___init, + anon_sym___exit, anon_sym___cdecl, anon_sym___clrcall, anon_sym___stdcall, @@ -83443,68 +95408,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [25142] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1710), 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(1708), 30, - 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___try, - anon_sym___leave, - anon_sym_sizeof, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - anon_sym_offsetof, - anon_sym__Generic, - anon_sym_asm, - anon_sym___asm__, - sym_true, - sym_false, - anon_sym_NULL, - anon_sym_nullptr, - sym_identifier, - [25201] = 4, + [28588] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2571), 1, - anon_sym___aligned, - ACTIONS(2569), 7, + STATE(862), 1, + sym_attribute_specifier, + ACTIONS(33), 2, + anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(35), 2, + anon_sym___scanf, + anon_sym___printf, + ACTIONS(37), 4, + anon_sym___read_mostly, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + ACTIONS(2647), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -83512,18 +95432,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2567), 43, + ACTIONS(2645), 38, anon_sym___extension__, anon_sym_extern, - anon_sym___attribute__, - anon_sym___scanf, - anon_sym___printf, - anon_sym___read_mostly, - anon_sym___must_hold, - anon_sym___ro_after_init, - anon_sym___init, anon_sym___declspec, anon_sym___based, + anon_sym___init, + anon_sym___exit, anon_sym___cdecl, anon_sym___clrcall, anon_sym___stdcall, @@ -83556,10 +95471,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [25262] = 7, + [28658] = 7, ACTIONS(3), 1, sym_comment, - STATE(749), 1, + STATE(836), 1, sym_attribute_specifier, ACTIONS(33), 2, anon_sym___attribute__, @@ -83567,11 +95482,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(35), 2, anon_sym___scanf, anon_sym___printf, - ACTIONS(37), 3, + ACTIONS(37), 4, anon_sym___read_mostly, anon_sym___ro_after_init, - anon_sym___init, - ACTIONS(2575), 7, + anon_sym___noreturn, + anon_sym___cold, + ACTIONS(2651), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -83579,11 +95495,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2573), 36, + ACTIONS(2649), 38, anon_sym___extension__, anon_sym_extern, anon_sym___declspec, anon_sym___based, + anon_sym___init, + anon_sym___exit, anon_sym___cdecl, anon_sym___clrcall, anon_sym___stdcall, @@ -83616,12 +95534,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [25329] = 4, + [28728] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2581), 1, + ACTIONS(2657), 1, anon_sym___aligned, - ACTIONS(2579), 7, + ACTIONS(2655), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -83629,7 +95547,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2577), 43, + ACTIONS(2653), 46, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -83638,69 +95556,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___read_mostly, anon_sym___must_hold, anon_sym___ro_after_init, - anon_sym___init, + anon_sym___noreturn, + anon_sym___cold, anon_sym___declspec, anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - sym_identifier, - [25390] = 7, - ACTIONS(3), 1, - sym_comment, - STATE(765), 1, - sym_attribute_specifier, - ACTIONS(33), 2, - anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(35), 2, - anon_sym___scanf, - anon_sym___printf, - ACTIONS(37), 3, - anon_sym___read_mostly, - anon_sym___ro_after_init, anon_sym___init, - ACTIONS(2585), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2583), 36, - anon_sym___extension__, - anon_sym_extern, - anon_sym___declspec, - anon_sym___based, + anon_sym___exit, anon_sym___cdecl, anon_sym___clrcall, anon_sym___stdcall, @@ -83733,12 +95594,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [25457] = 4, + [28792] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2591), 1, + ACTIONS(2663), 1, anon_sym___aligned, - ACTIONS(2589), 7, + ACTIONS(2661), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -83746,7 +95607,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2587), 43, + ACTIONS(2659), 46, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -83755,9 +95616,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___read_mostly, anon_sym___must_hold, anon_sym___ro_after_init, - anon_sym___init, + anon_sym___noreturn, + anon_sym___cold, anon_sym___declspec, anon_sym___based, + anon_sym___init, + anon_sym___exit, anon_sym___cdecl, anon_sym___clrcall, anon_sym___stdcall, @@ -83790,131 +95654,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [25518] = 5, + [28856] = 7, ACTIONS(3), 1, sym_comment, - STATE(732), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2597), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(2595), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2593), 39, - anon_sym___extension__, - anon_sym_extern, + STATE(855), 1, + sym_attribute_specifier, + ACTIONS(33), 2, anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(35), 2, anon_sym___scanf, anon_sym___printf, + ACTIONS(37), 4, anon_sym___read_mostly, - anon_sym___must_hold, anon_sym___ro_after_init, - anon_sym___init, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - sym_identifier, - [25581] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2607), 1, - anon_sym_static, - STATE(821), 1, - sym_alignas_qualifier, - ACTIONS(2610), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(733), 2, - sym_type_qualifier, - aux_sym_array_declarator_repeat1, - ACTIONS(2604), 9, - anon_sym___extension__, - 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(2600), 17, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - anon_sym_offsetof, - anon_sym__Generic, - anon_sym_asm, - anon_sym___asm__, - sym_true, - sym_false, - anon_sym_NULL, - anon_sym_nullptr, - sym_identifier, - ACTIONS(2602), 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, - [25650] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2617), 1, - anon_sym___aligned, - ACTIONS(2615), 7, + anon_sym___noreturn, + anon_sym___cold, + ACTIONS(2667), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -83922,18 +95678,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2613), 43, + ACTIONS(2665), 38, anon_sym___extension__, anon_sym_extern, - anon_sym___attribute__, - anon_sym___scanf, - anon_sym___printf, - anon_sym___read_mostly, - anon_sym___must_hold, - anon_sym___ro_after_init, - anon_sym___init, anon_sym___declspec, anon_sym___based, + anon_sym___init, + anon_sym___exit, anon_sym___cdecl, anon_sym___clrcall, anon_sym___stdcall, @@ -83966,12 +95717,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [25711] = 4, + [28926] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2623), 1, + ACTIONS(2673), 1, anon_sym___aligned, - ACTIONS(2621), 7, + ACTIONS(2671), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -83979,7 +95730,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2619), 43, + ACTIONS(2669), 46, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -83988,9 +95739,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___read_mostly, anon_sym___must_hold, anon_sym___ro_after_init, - anon_sym___init, + anon_sym___noreturn, + anon_sym___cold, anon_sym___declspec, anon_sym___based, + anon_sym___init, + anon_sym___exit, anon_sym___cdecl, anon_sym___clrcall, anon_sym___stdcall, @@ -84023,78 +95777,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [25772] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1714), 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(1712), 30, - 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___try, - anon_sym___leave, - anon_sym_sizeof, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - anon_sym_offsetof, - anon_sym__Generic, - anon_sym_asm, - anon_sym___asm__, - sym_true, - sym_false, - anon_sym_NULL, - anon_sym_nullptr, - sym_identifier, - [25831] = 7, + [28990] = 3, ACTIONS(3), 1, sym_comment, - STATE(763), 1, - sym_attribute_specifier, - ACTIONS(33), 2, - anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(35), 2, - anon_sym___scanf, - anon_sym___printf, - ACTIONS(37), 3, - anon_sym___read_mostly, - anon_sym___ro_after_init, - anon_sym___init, - ACTIONS(2627), 7, + ACTIONS(2677), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -84102,11 +95788,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2625), 36, + ACTIONS(2675), 47, anon_sym___extension__, anon_sym_extern, + anon_sym___attribute__, + anon_sym___scanf, + anon_sym___printf, + anon_sym___read_mostly, + anon_sym___must_hold, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, anon_sym___declspec, anon_sym___based, + anon_sym___init, + anon_sym___exit, anon_sym___cdecl, anon_sym___clrcall, anon_sym___stdcall, @@ -84138,11 +95834,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_primitive_type, + anon_sym___aligned, sym_identifier, - [25898] = 3, + [29052] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2631), 7, + ACTIONS(2683), 1, + anon_sym___aligned, + ACTIONS(2681), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -84150,7 +95849,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2629), 43, + ACTIONS(2679), 46, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -84159,9 +95858,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___read_mostly, anon_sym___must_hold, anon_sym___ro_after_init, - anon_sym___init, + anon_sym___noreturn, + anon_sym___cold, anon_sym___declspec, anon_sym___based, + anon_sym___init, + anon_sym___exit, anon_sym___cdecl, anon_sym___clrcall, anon_sym___stdcall, @@ -84194,10 +95896,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [25956] = 3, + [29116] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2635), 7, + ACTIONS(2689), 1, + anon_sym___aligned, + ACTIONS(2687), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -84205,7 +95909,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2633), 43, + ACTIONS(2685), 46, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -84214,9 +95918,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___read_mostly, anon_sym___must_hold, anon_sym___ro_after_init, - anon_sym___init, + anon_sym___noreturn, + anon_sym___cold, anon_sym___declspec, anon_sym___based, + anon_sym___init, + anon_sym___exit, anon_sym___cdecl, anon_sym___clrcall, anon_sym___stdcall, @@ -84249,10 +95956,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [26014] = 3, + [29180] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2639), 7, + ACTIONS(2693), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -84260,7 +95967,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2637), 43, + ACTIONS(2691), 46, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -84269,9 +95976,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___read_mostly, anon_sym___must_hold, anon_sym___ro_after_init, - anon_sym___init, + anon_sym___noreturn, + anon_sym___cold, anon_sym___declspec, anon_sym___based, + anon_sym___init, + anon_sym___exit, anon_sym___cdecl, anon_sym___clrcall, anon_sym___stdcall, @@ -84304,10 +96014,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [26072] = 3, + [29241] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2643), 7, + ACTIONS(2697), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -84315,7 +96025,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2641), 43, + ACTIONS(2695), 46, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -84324,9 +96034,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___read_mostly, anon_sym___must_hold, anon_sym___ro_after_init, - anon_sym___init, + anon_sym___noreturn, + anon_sym___cold, anon_sym___declspec, anon_sym___based, + anon_sym___init, + anon_sym___exit, anon_sym___cdecl, anon_sym___clrcall, anon_sym___stdcall, @@ -84359,10 +96072,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [26130] = 3, + [29302] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2647), 7, + ACTIONS(2701), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -84370,7 +96083,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2645), 43, + ACTIONS(2699), 46, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -84379,9 +96092,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___read_mostly, anon_sym___must_hold, anon_sym___ro_after_init, - anon_sym___init, + anon_sym___noreturn, + anon_sym___cold, anon_sym___declspec, anon_sym___based, + anon_sym___init, + anon_sym___exit, anon_sym___cdecl, anon_sym___clrcall, anon_sym___stdcall, @@ -84414,10 +96130,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [26188] = 3, + [29363] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2651), 7, + ACTIONS(2705), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -84425,7 +96141,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2649), 43, + ACTIONS(2703), 46, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -84434,9 +96150,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___read_mostly, anon_sym___must_hold, anon_sym___ro_after_init, - anon_sym___init, + anon_sym___noreturn, + anon_sym___cold, anon_sym___declspec, anon_sym___based, + anon_sym___init, + anon_sym___exit, anon_sym___cdecl, anon_sym___clrcall, anon_sym___stdcall, @@ -84469,10 +96188,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [26246] = 3, + [29424] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2655), 7, + STATE(819), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2711), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(2709), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -84480,7 +96206,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2653), 43, + ACTIONS(2707), 41, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -84489,19 +96215,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___read_mostly, anon_sym___must_hold, anon_sym___ro_after_init, - anon_sym___init, + anon_sym___noreturn, + anon_sym___cold, anon_sym___declspec, anon_sym___based, + anon_sym___init, + anon_sym___exit, anon_sym___cdecl, anon_sym___clrcall, anon_sym___stdcall, anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, anon_sym_LBRACK, anon_sym_static, anon_sym_auto, @@ -84522,12 +96247,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, sym_identifier, - [26304] = 3, + [29489] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2659), 7, + STATE(819), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2711), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(2715), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -84535,7 +96266,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2657), 43, + ACTIONS(2713), 41, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -84544,19 +96275,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___read_mostly, anon_sym___must_hold, anon_sym___ro_after_init, - anon_sym___init, + anon_sym___noreturn, + anon_sym___cold, anon_sym___declspec, anon_sym___based, + anon_sym___init, + anon_sym___exit, anon_sym___cdecl, anon_sym___clrcall, anon_sym___stdcall, anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, anon_sym_LBRACK, anon_sym_static, anon_sym_auto, @@ -84577,12 +96307,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, sym_identifier, - [26362] = 3, + [29554] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2663), 7, + ACTIONS(2719), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -84590,7 +96319,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2661), 43, + ACTIONS(2717), 46, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -84599,9 +96328,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___read_mostly, anon_sym___must_hold, anon_sym___ro_after_init, - anon_sym___init, + anon_sym___noreturn, + anon_sym___cold, anon_sym___declspec, anon_sym___based, + anon_sym___init, + anon_sym___exit, anon_sym___cdecl, anon_sym___clrcall, anon_sym___stdcall, @@ -84634,28 +96366,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [26420] = 7, + [29615] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2665), 1, - sym_identifier, - ACTIONS(2674), 1, - sym_primitive_type, - STATE(756), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2672), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(2668), 6, + ACTIONS(2723), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2670), 37, + anon_sym_COLON, + ACTIONS(2721), 46, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -84664,15 +96386,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___read_mostly, anon_sym___must_hold, anon_sym___ro_after_init, - anon_sym___init, + anon_sym___noreturn, + anon_sym___cold, anon_sym___declspec, anon_sym___based, + anon_sym___init, + anon_sym___exit, anon_sym___cdecl, anon_sym___clrcall, anon_sym___stdcall, anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, anon_sym_static, anon_sym_auto, @@ -84693,10 +96422,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_alignas, anon_sym__Alignas, - [26486] = 3, + sym_primitive_type, + sym_identifier, + [29676] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2678), 7, + ACTIONS(2727), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -84704,7 +96435,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2676), 43, + ACTIONS(2725), 46, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -84713,9 +96444,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___read_mostly, anon_sym___must_hold, anon_sym___ro_after_init, - anon_sym___init, + anon_sym___noreturn, + anon_sym___cold, anon_sym___declspec, anon_sym___based, + anon_sym___init, + anon_sym___exit, anon_sym___cdecl, anon_sym___clrcall, anon_sym___stdcall, @@ -84748,18 +96482,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [26544] = 3, + [29737] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2682), 7, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2731), 3, anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2680), 43, + ACTIONS(2729), 50, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_preproc_directive, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -84768,20 +96508,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___read_mostly, anon_sym___must_hold, anon_sym___ro_after_init, - anon_sym___init, + anon_sym___noreturn, + anon_sym___cold, anon_sym___declspec, anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -84802,19 +96536,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [26602] = 3, + [29798] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2686), 7, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(1367), 3, anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2684), 43, + ACTIONS(1365), 50, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_preproc_directive, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -84823,20 +96566,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___read_mostly, anon_sym___must_hold, anon_sym___ro_after_init, - anon_sym___init, + anon_sym___noreturn, + anon_sym___cold, anon_sym___declspec, anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -84857,11 +96594,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [26660] = 3, + [29859] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2690), 7, + ACTIONS(2735), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -84869,7 +96609,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2688), 43, + ACTIONS(2733), 46, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -84878,9 +96618,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___read_mostly, anon_sym___must_hold, anon_sym___ro_after_init, - anon_sym___init, + anon_sym___noreturn, + anon_sym___cold, anon_sym___declspec, anon_sym___based, + anon_sym___init, + anon_sym___exit, anon_sym___cdecl, anon_sym___clrcall, anon_sym___stdcall, @@ -84913,10 +96656,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [26718] = 3, + [29920] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2694), 7, + ACTIONS(2739), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -84924,7 +96667,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2692), 43, + ACTIONS(2737), 46, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -84933,9 +96676,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___read_mostly, anon_sym___must_hold, anon_sym___ro_after_init, - anon_sym___init, + anon_sym___noreturn, + anon_sym___cold, anon_sym___declspec, anon_sym___based, + anon_sym___init, + anon_sym___exit, anon_sym___cdecl, anon_sym___clrcall, anon_sym___stdcall, @@ -84968,17 +96714,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [26776] = 5, + [29981] = 3, ACTIONS(3), 1, sym_comment, - STATE(732), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2700), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(2698), 7, + ACTIONS(2743), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -84986,7 +96725,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2696), 38, + ACTIONS(2741), 46, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -84995,15 +96734,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___read_mostly, anon_sym___must_hold, anon_sym___ro_after_init, - anon_sym___init, + anon_sym___noreturn, + anon_sym___cold, anon_sym___declspec, anon_sym___based, + anon_sym___init, + anon_sym___exit, anon_sym___cdecl, anon_sym___clrcall, anon_sym___stdcall, anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, anon_sym_static, anon_sym_auto, @@ -85024,18 +96770,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_alignas, anon_sym__Alignas, + sym_primitive_type, sym_identifier, - [26838] = 5, + [30042] = 3, ACTIONS(3), 1, sym_comment, - STATE(732), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2700), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(2704), 7, + ACTIONS(2747), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -85043,7 +96783,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2702), 38, + ACTIONS(2745), 46, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -85052,15 +96792,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___read_mostly, anon_sym___must_hold, anon_sym___ro_after_init, - anon_sym___init, + anon_sym___noreturn, + anon_sym___cold, anon_sym___declspec, anon_sym___based, + anon_sym___init, + anon_sym___exit, anon_sym___cdecl, anon_sym___clrcall, anon_sym___stdcall, anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, anon_sym_static, anon_sym_auto, @@ -85081,11 +96828,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_alignas, anon_sym__Alignas, + sym_primitive_type, sym_identifier, - [26900] = 3, + [30103] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2708), 7, + ACTIONS(2751), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -85093,7 +96841,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2706), 43, + ACTIONS(2749), 46, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -85102,9 +96850,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___read_mostly, anon_sym___must_hold, anon_sym___ro_after_init, - anon_sym___init, + anon_sym___noreturn, + anon_sym___cold, anon_sym___declspec, anon_sym___based, + anon_sym___init, + anon_sym___exit, anon_sym___cdecl, anon_sym___clrcall, anon_sym___stdcall, @@ -85137,26 +96888,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [26958] = 6, + [30164] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2593), 1, - sym_primitive_type, - STATE(732), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2597), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(2713), 6, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2755), 3, anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2710), 38, + ACTIONS(2753), 50, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_preproc_directive, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -85165,16 +96914,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___read_mostly, anon_sym___must_hold, anon_sym___ro_after_init, - anon_sym___init, + anon_sym___noreturn, + anon_sym___cold, anon_sym___declspec, anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_LBRACK, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -85194,26 +96941,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_alignas, anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [27022] = 5, + [30225] = 3, ACTIONS(3), 1, sym_comment, - STATE(754), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2720), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(2718), 7, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(1315), 3, anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2716), 38, + ACTIONS(1313), 50, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_preproc_directive, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -85222,16 +96972,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___read_mostly, anon_sym___must_hold, anon_sym___ro_after_init, - anon_sym___init, + anon_sym___noreturn, + anon_sym___cold, anon_sym___declspec, anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_LBRACK, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -85251,18 +96999,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_alignas, anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [27084] = 5, + [30286] = 5, ACTIONS(3), 1, sym_comment, - STATE(753), 1, + STATE(819), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(2726), 4, + ACTIONS(2711), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(2724), 7, + ACTIONS(2759), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -85270,7 +97022,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2722), 38, + ACTIONS(2757), 41, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -85279,69 +97031,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___read_mostly, anon_sym___must_hold, anon_sym___ro_after_init, - anon_sym___init, + anon_sym___noreturn, + anon_sym___cold, anon_sym___declspec, anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - [27146] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2730), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2728), 43, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___scanf, - anon_sym___printf, - anon_sym___read_mostly, - anon_sym___must_hold, - anon_sym___ro_after_init, anon_sym___init, - anon_sym___declspec, - anon_sym___based, + anon_sym___exit, anon_sym___cdecl, anon_sym___clrcall, anon_sym___stdcall, anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, anon_sym_LBRACK, anon_sym_static, anon_sym_auto, @@ -85362,12 +97063,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, sym_identifier, - [27204] = 3, + [30351] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2734), 7, + ACTIONS(2763), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -85375,7 +97075,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2732), 43, + ACTIONS(2761), 46, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -85384,9 +97084,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___read_mostly, anon_sym___must_hold, anon_sym___ro_after_init, - anon_sym___init, + anon_sym___noreturn, + anon_sym___cold, anon_sym___declspec, anon_sym___based, + anon_sym___init, + anon_sym___exit, anon_sym___cdecl, anon_sym___clrcall, anon_sym___stdcall, @@ -85419,10 +97122,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [27262] = 3, + [30412] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2738), 7, + ACTIONS(2767), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -85430,7 +97133,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2736), 43, + ACTIONS(2765), 46, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -85439,9 +97142,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___read_mostly, anon_sym___must_hold, anon_sym___ro_after_init, - anon_sym___init, + anon_sym___noreturn, + anon_sym___cold, anon_sym___declspec, anon_sym___based, + anon_sym___init, + anon_sym___exit, anon_sym___cdecl, anon_sym___clrcall, anon_sym___stdcall, @@ -85474,17 +97180,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [27320] = 5, + [30473] = 3, ACTIONS(3), 1, sym_comment, - STATE(732), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2700), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(2742), 7, + ACTIONS(2771), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -85492,7 +97191,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2740), 38, + ACTIONS(2769), 46, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -85501,15 +97200,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___read_mostly, anon_sym___must_hold, anon_sym___ro_after_init, - anon_sym___init, + anon_sym___noreturn, + anon_sym___cold, anon_sym___declspec, anon_sym___based, + anon_sym___init, + anon_sym___exit, anon_sym___cdecl, anon_sym___clrcall, anon_sym___stdcall, anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, anon_sym_static, anon_sym_auto, @@ -85530,11 +97236,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_alignas, anon_sym__Alignas, + sym_primitive_type, sym_identifier, - [27382] = 3, + [30534] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2746), 7, + ACTIONS(2775), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -85542,7 +97249,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2744), 43, + ACTIONS(2773), 46, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -85551,9 +97258,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___read_mostly, anon_sym___must_hold, anon_sym___ro_after_init, - anon_sym___init, + anon_sym___noreturn, + anon_sym___cold, anon_sym___declspec, anon_sym___based, + anon_sym___init, + anon_sym___exit, anon_sym___cdecl, anon_sym___clrcall, anon_sym___stdcall, @@ -85586,10 +97296,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [27440] = 3, + [30595] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2750), 7, + ACTIONS(2779), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -85597,7 +97307,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2748), 43, + ACTIONS(2777), 46, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -85606,9 +97316,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___read_mostly, anon_sym___must_hold, anon_sym___ro_after_init, - anon_sym___init, + anon_sym___noreturn, + anon_sym___cold, anon_sym___declspec, anon_sym___based, + anon_sym___init, + anon_sym___exit, anon_sym___cdecl, anon_sym___clrcall, anon_sym___stdcall, @@ -85641,10 +97354,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [27498] = 3, + [30656] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2754), 7, + ACTIONS(2783), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -85652,7 +97365,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2752), 43, + ACTIONS(2781), 46, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -85661,9 +97374,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___read_mostly, anon_sym___must_hold, anon_sym___ro_after_init, - anon_sym___init, + anon_sym___noreturn, + anon_sym___cold, anon_sym___declspec, anon_sym___based, + anon_sym___init, + anon_sym___exit, anon_sym___cdecl, anon_sym___clrcall, anon_sym___stdcall, @@ -85696,18 +97412,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [27556] = 3, + [30717] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2758), 7, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2787), 3, anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2756), 43, + ACTIONS(2785), 50, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_preproc_directive, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -85716,20 +97438,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___read_mostly, anon_sym___must_hold, anon_sym___ro_after_init, - anon_sym___init, + anon_sym___noreturn, + anon_sym___cold, anon_sym___declspec, anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -85750,11 +97466,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [27614] = 3, + [30778] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2762), 7, + ACTIONS(2791), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -85762,7 +97481,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2760), 43, + ACTIONS(2789), 46, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -85771,9 +97490,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___read_mostly, anon_sym___must_hold, anon_sym___ro_after_init, - anon_sym___init, + anon_sym___noreturn, + anon_sym___cold, anon_sym___declspec, anon_sym___based, + anon_sym___init, + anon_sym___exit, anon_sym___cdecl, anon_sym___clrcall, anon_sym___stdcall, @@ -85806,18 +97528,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [27672] = 3, + [30839] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2766), 7, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2795), 3, anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2764), 43, + ACTIONS(2793), 50, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_preproc_directive, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -85826,20 +97554,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___read_mostly, anon_sym___must_hold, anon_sym___ro_after_init, - anon_sym___init, + anon_sym___noreturn, + anon_sym___cold, anon_sym___declspec, anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -85860,11 +97582,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [27730] = 3, + [30900] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2770), 7, + ACTIONS(2799), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -85872,7 +97597,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2768), 43, + ACTIONS(2797), 46, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -85881,9 +97606,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___read_mostly, anon_sym___must_hold, anon_sym___ro_after_init, - anon_sym___init, + anon_sym___noreturn, + anon_sym___cold, anon_sym___declspec, anon_sym___based, + anon_sym___init, + anon_sym___exit, anon_sym___cdecl, anon_sym___clrcall, anon_sym___stdcall, @@ -85916,18 +97644,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [27788] = 3, + [30961] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2774), 7, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2803), 3, anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2772), 43, + ACTIONS(2801), 50, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_preproc_directive, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -85936,20 +97670,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___read_mostly, anon_sym___must_hold, anon_sym___ro_after_init, - anon_sym___init, + anon_sym___noreturn, + anon_sym___cold, anon_sym___declspec, anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -85970,19 +97698,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [27846] = 3, + [31022] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2778), 7, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2807), 3, anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2776), 43, + ACTIONS(2805), 50, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_preproc_directive, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -85991,20 +97728,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___read_mostly, anon_sym___must_hold, anon_sym___ro_after_init, - anon_sym___init, + anon_sym___noreturn, + anon_sym___cold, anon_sym___declspec, anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -86025,11 +97756,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [27904] = 3, + [31083] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2782), 7, + ACTIONS(2811), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -86037,7 +97771,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2780), 43, + ACTIONS(2809), 46, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -86046,9 +97780,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___read_mostly, anon_sym___must_hold, anon_sym___ro_after_init, - anon_sym___init, + anon_sym___noreturn, + anon_sym___cold, anon_sym___declspec, anon_sym___based, + anon_sym___init, + anon_sym___exit, anon_sym___cdecl, anon_sym___clrcall, anon_sym___stdcall, @@ -86081,18 +97818,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [27962] = 3, + [31144] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2786), 7, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(1371), 3, anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2784), 43, + ACTIONS(1369), 50, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_preproc_directive, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -86101,20 +97844,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___read_mostly, anon_sym___must_hold, anon_sym___ro_after_init, - anon_sym___init, + anon_sym___noreturn, + anon_sym___cold, anon_sym___declspec, anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -86135,11 +97872,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [28020] = 3, + [31205] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2790), 7, + ACTIONS(2815), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -86147,7 +97887,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2788), 43, + ACTIONS(2813), 46, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -86156,9 +97896,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___read_mostly, anon_sym___must_hold, anon_sym___ro_after_init, - anon_sym___init, + anon_sym___noreturn, + anon_sym___cold, anon_sym___declspec, anon_sym___based, + anon_sym___init, + anon_sym___exit, anon_sym___cdecl, anon_sym___clrcall, anon_sym___stdcall, @@ -86191,10 +97934,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [28078] = 3, + [31266] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2794), 7, + ACTIONS(2819), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -86202,7 +97945,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2792), 43, + ACTIONS(2817), 46, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -86211,9 +97954,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___read_mostly, anon_sym___must_hold, anon_sym___ro_after_init, - anon_sym___init, + anon_sym___noreturn, + anon_sym___cold, anon_sym___declspec, anon_sym___based, + anon_sym___init, + anon_sym___exit, anon_sym___cdecl, anon_sym___clrcall, anon_sym___stdcall, @@ -86246,10 +97992,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [28136] = 3, + [31327] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2798), 7, + ACTIONS(2823), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -86257,7 +98003,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2796), 43, + ACTIONS(2821), 46, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -86266,9 +98012,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___read_mostly, anon_sym___must_hold, anon_sym___ro_after_init, - anon_sym___init, + anon_sym___noreturn, + anon_sym___cold, anon_sym___declspec, anon_sym___based, + anon_sym___init, + anon_sym___exit, anon_sym___cdecl, anon_sym___clrcall, anon_sym___stdcall, @@ -86301,26 +98050,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [28194] = 6, + [31388] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2800), 1, + ACTIONS(2825), 1, anon_sym_LPAREN2, - STATE(781), 1, + STATE(885), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(1747), 4, + ACTIONS(1763), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(1745), 6, + ACTIONS(1761), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(1732), 38, + ACTIONS(1748), 41, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -86329,9 +98078,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___read_mostly, anon_sym___must_hold, anon_sym___ro_after_init, - anon_sym___init, + anon_sym___noreturn, + anon_sym___cold, anon_sym___declspec, anon_sym___based, + anon_sym___init, + anon_sym___exit, anon_sym___cdecl, anon_sym___clrcall, anon_sym___stdcall, @@ -86359,10 +98111,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_identifier, - [28258] = 3, + [31455] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2805), 7, + ACTIONS(2830), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -86370,7 +98122,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2803), 43, + ACTIONS(2828), 46, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -86379,9 +98131,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___read_mostly, anon_sym___must_hold, anon_sym___ro_after_init, - anon_sym___init, + anon_sym___noreturn, + anon_sym___cold, anon_sym___declspec, anon_sym___based, + anon_sym___init, + anon_sym___exit, anon_sym___cdecl, anon_sym___clrcall, anon_sym___stdcall, @@ -86414,25 +98169,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [28316] = 5, + [31516] = 3, ACTIONS(3), 1, sym_comment, - STATE(762), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2807), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(2663), 7, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2834), 3, anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2661), 38, + ACTIONS(2832), 50, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_preproc_directive, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -86441,16 +98195,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___read_mostly, anon_sym___must_hold, anon_sym___ro_after_init, - anon_sym___init, + anon_sym___noreturn, + anon_sym___cold, anon_sym___declspec, anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_LBRACK, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -86470,11 +98222,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_alignas, anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [28378] = 3, + [31577] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2811), 7, + ACTIONS(2838), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -86482,7 +98238,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2809), 43, + ACTIONS(2836), 46, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -86491,9 +98247,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___read_mostly, anon_sym___must_hold, anon_sym___ro_after_init, - anon_sym___init, + anon_sym___noreturn, + anon_sym___cold, anon_sym___declspec, anon_sym___based, + anon_sym___init, + anon_sym___exit, anon_sym___cdecl, anon_sym___clrcall, anon_sym___stdcall, @@ -86526,17 +98285,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [28436] = 5, + [31638] = 5, ACTIONS(3), 1, sym_comment, - STATE(732), 1, + STATE(839), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(2700), 4, + ACTIONS(2840), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(2815), 7, + ACTIONS(2838), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -86544,7 +98303,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2813), 38, + ACTIONS(2836), 41, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -86553,9 +98312,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___read_mostly, anon_sym___must_hold, anon_sym___ro_after_init, - anon_sym___init, + anon_sym___noreturn, + anon_sym___cold, anon_sym___declspec, anon_sym___based, + anon_sym___init, + anon_sym___exit, anon_sym___cdecl, anon_sym___clrcall, anon_sym___stdcall, @@ -86583,83 +98345,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_identifier, - [28498] = 10, + [31703] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2395), 1, - anon_sym_LPAREN2, - ACTIONS(2397), 1, - anon_sym_LBRACK, - STATE(668), 1, - sym_argument_list, - ACTIONS(2399), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2405), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2817), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2819), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2401), 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(2403), 29, + ACTIONS(2844), 7, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym___scanf, - anon_sym___printf, - anon_sym___read_mostly, - anon_sym___must_hold, - anon_sym___ro_after_init, - anon_sym___init, - 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, - [28569] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2823), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2821), 48, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - 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_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(2842), 46, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -86668,12 +98365,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___read_mostly, anon_sym___must_hold, anon_sym___ro_after_init, - anon_sym___init, + anon_sym___noreturn, + anon_sym___cold, anon_sym___declspec, + anon_sym___based, + anon_sym___init, + anon_sym___exit, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -86694,66 +98402,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [28626] = 14, + [31764] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(41), 1, - anon_sym___declspec, - ACTIONS(1137), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2825), 1, + ACTIONS(2848), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, anon_sym_SEMI, - STATE(703), 1, - sym_alignas_qualifier, - ACTIONS(33), 2, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(2846), 46, + anon_sym___extension__, + anon_sym_extern, anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(35), 2, anon_sym___scanf, anon_sym___printf, - ACTIONS(53), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(2495), 2, - anon_sym_LPAREN2, - anon_sym_STAR, - ACTIONS(37), 3, anon_sym___read_mostly, + anon_sym___must_hold, anon_sym___ro_after_init, - anon_sym___init, - STATE(708), 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(2493), 8, + anon_sym___noreturn, + anon_sym___cold, + anon_sym___declspec, anon_sym___based, + anon_sym___init, + anon_sym___exit, anon_sym___cdecl, anon_sym___clrcall, anon_sym___stdcall, anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - sym_identifier, - ACTIONS(51), 9, - anon_sym___extension__, - 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(49), 10, - anon_sym_extern, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -86763,543 +98449,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [28705] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2395), 1, - anon_sym_LPAREN2, - ACTIONS(2397), 1, - anon_sym_LBRACK, - STATE(668), 1, - sym_argument_list, - ACTIONS(2399), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2405), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2817), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2827), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2819), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2401), 6, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_EQ, - ACTIONS(2403), 29, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym___scanf, - anon_sym___printf, - anon_sym___read_mostly, - anon_sym___must_hold, - anon_sym___ro_after_init, - anon_sym___init, - 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, - [28778] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2395), 1, - anon_sym_LPAREN2, - ACTIONS(2397), 1, - anon_sym_LBRACK, - STATE(668), 1, - sym_argument_list, - ACTIONS(2399), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2405), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2817), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2827), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2829), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2831), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2819), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2401), 4, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ, - ACTIONS(2403), 27, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym___scanf, - anon_sym___printf, - anon_sym___read_mostly, - anon_sym___must_hold, - anon_sym___ro_after_init, - anon_sym___init, - 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, - [28855] = 14, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + [31825] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2395), 1, - anon_sym_LPAREN2, - ACTIONS(2397), 1, - anon_sym_LBRACK, - STATE(668), 1, - sym_argument_list, - ACTIONS(2399), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2405), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2817), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2827), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2829), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2831), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2833), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2819), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2401), 4, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ, - ACTIONS(2403), 25, + ACTIONS(2852), 7, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym___scanf, - anon_sym___printf, - anon_sym___read_mostly, - anon_sym___must_hold, - anon_sym___ro_after_init, - anon_sym___init, - 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, - [28934] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2395), 1, anon_sym_LPAREN2, - ACTIONS(2397), 1, - anon_sym_LBRACK, - ACTIONS(2835), 1, - anon_sym_AMP, - STATE(668), 1, - sym_argument_list, - ACTIONS(2399), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2405), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2817), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2827), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2829), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2831), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2833), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2401), 3, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_EQ, - ACTIONS(2819), 3, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2403), 25, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_SEMI, - anon_sym___attribute__, - anon_sym___scanf, - anon_sym___printf, - anon_sym___read_mostly, - anon_sym___must_hold, - anon_sym___ro_after_init, - anon_sym___init, - anon_sym_RBRACE, + anon_sym_LBRACK_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, - [29015] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2395), 1, - anon_sym_LPAREN2, - ACTIONS(2397), 1, - anon_sym_LBRACK, - ACTIONS(2835), 1, - anon_sym_AMP, - ACTIONS(2837), 1, - anon_sym_CARET, - STATE(668), 1, - sym_argument_list, - ACTIONS(2399), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2401), 2, - anon_sym_PIPE, - anon_sym_EQ, - ACTIONS(2405), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2817), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2827), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2829), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2831), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2833), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2819), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2403), 25, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, + ACTIONS(2850), 46, + anon_sym___extension__, + anon_sym_extern, anon_sym___attribute__, anon_sym___scanf, anon_sym___printf, anon_sym___read_mostly, anon_sym___must_hold, anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + anon_sym___declspec, + anon_sym___based, anon_sym___init, - 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, - [29098] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2395), 1, - anon_sym_LPAREN2, - ACTIONS(2397), 1, + anon_sym___exit, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, - ACTIONS(2401), 1, - anon_sym_EQ, - ACTIONS(2835), 1, - anon_sym_AMP, - ACTIONS(2837), 1, - anon_sym_CARET, - ACTIONS(2839), 1, - anon_sym_PIPE, - STATE(668), 1, - sym_argument_list, - ACTIONS(2399), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2405), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2817), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2827), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2829), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2831), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2833), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2819), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2403), 25, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym___scanf, - anon_sym___printf, - anon_sym___read_mostly, - anon_sym___must_hold, - anon_sym___ro_after_init, - anon_sym___init, - 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, - [29183] = 18, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + [31886] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2395), 1, - anon_sym_LPAREN2, - ACTIONS(2397), 1, - anon_sym_LBRACK, - ACTIONS(2401), 1, - anon_sym_EQ, - ACTIONS(2835), 1, - anon_sym_AMP, - ACTIONS(2837), 1, - anon_sym_CARET, - ACTIONS(2839), 1, - anon_sym_PIPE, - ACTIONS(2841), 1, - anon_sym_AMP_AMP, - STATE(668), 1, - sym_argument_list, - ACTIONS(2399), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2405), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2817), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2827), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2829), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2831), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2833), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2819), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2403), 24, + ACTIONS(2856), 7, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym___scanf, - anon_sym___printf, - anon_sym___read_mostly, - anon_sym___must_hold, - anon_sym___ro_after_init, - anon_sym___init, - 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, - [29270] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2395), 1, anon_sym_LPAREN2, - ACTIONS(2397), 1, - anon_sym_LBRACK, - STATE(668), 1, - sym_argument_list, - ACTIONS(2399), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2405), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2819), 3, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2401), 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(2403), 29, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_SEMI, - anon_sym___attribute__, - anon_sym___scanf, - anon_sym___printf, - anon_sym___read_mostly, - anon_sym___must_hold, - anon_sym___ro_after_init, - anon_sym___init, - 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, - [29339] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2845), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2843), 48, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - sym_preproc_directive, + anon_sym_COLON, + ACTIONS(2854), 46, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -87308,12 +98539,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___read_mostly, anon_sym___must_hold, anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + anon_sym___declspec, + anon_sym___based, anon_sym___init, - anon_sym___declspec, + anon_sym___exit, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -87334,158 +98576,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [29396] = 20, + [31947] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2395), 1, - anon_sym_LPAREN2, - ACTIONS(2397), 1, - anon_sym_LBRACK, - ACTIONS(2835), 1, - anon_sym_AMP, - ACTIONS(2837), 1, - anon_sym_CARET, - ACTIONS(2839), 1, - anon_sym_PIPE, - ACTIONS(2841), 1, - anon_sym_AMP_AMP, - ACTIONS(2849), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2851), 1, - anon_sym_EQ, - ACTIONS(2853), 1, - anon_sym_QMARK, - STATE(668), 1, - sym_argument_list, - ACTIONS(2399), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2405), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2817), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2827), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2829), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2831), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2833), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2819), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2847), 22, + STATE(838), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2862), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(2860), 7, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym___scanf, - anon_sym___printf, - anon_sym___read_mostly, - anon_sym___must_hold, - anon_sym___ro_after_init, - anon_sym___init, - 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, - [29487] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2395), 1, anon_sym_LPAREN2, - ACTIONS(2397), 1, - anon_sym_LBRACK, - ACTIONS(2835), 1, - anon_sym_AMP, - ACTIONS(2837), 1, - anon_sym_CARET, - ACTIONS(2839), 1, - anon_sym_PIPE, - ACTIONS(2841), 1, - anon_sym_AMP_AMP, - ACTIONS(2849), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2853), 1, - anon_sym_QMARK, - ACTIONS(2857), 1, - anon_sym_EQ, - STATE(668), 1, - sym_argument_list, - ACTIONS(2399), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2405), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2817), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2827), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2829), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2831), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2833), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2819), 3, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2855), 22, - anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(2858), 41, + anon_sym___extension__, + anon_sym_extern, anon_sym___attribute__, anon_sym___scanf, anon_sym___printf, anon_sym___read_mostly, anon_sym___must_hold, anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + anon_sym___declspec, + anon_sym___based, anon_sym___init, - 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, - [29578] = 3, + anon_sym___exit, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + [32012] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2861), 1, + ACTIONS(2866), 3, + anon_sym_LPAREN2, + anon_sym_STAR, anon_sym_LBRACK_LBRACK, - ACTIONS(2859), 48, + ACTIONS(2864), 50, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -87504,8 +98663,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___read_mostly, anon_sym___must_hold, anon_sym___ro_after_init, - anon_sym___init, + anon_sym___noreturn, + anon_sym___cold, anon_sym___declspec, + anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, @@ -87534,12 +98695,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [29635] = 3, + [32073] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2865), 1, + ACTIONS(1307), 3, + anon_sym_LPAREN2, + anon_sym_STAR, anon_sym_LBRACK_LBRACK, - ACTIONS(2863), 48, + ACTIONS(1305), 50, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -87558,8 +98721,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___read_mostly, anon_sym___must_hold, anon_sym___ro_after_init, - anon_sym___init, + anon_sym___noreturn, + anon_sym___cold, anon_sym___declspec, + anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, @@ -87588,22 +98753,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [29692] = 3, + [32134] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2869), 1, + STATE(852), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2872), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(2870), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2867), 48, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - sym_preproc_directive, + anon_sym_COLON, + ACTIONS(2868), 41, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -87612,12 +98780,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___read_mostly, anon_sym___must_hold, anon_sym___ro_after_init, - anon_sym___init, + anon_sym___noreturn, + anon_sym___cold, anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, + anon_sym___based, + anon_sym___init, + anon_sym___exit, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -87637,113 +98812,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [29749] = 5, + [32199] = 6, ACTIONS(3), 1, sym_comment, - STATE(456), 1, - sym_string_literal, - ACTIONS(101), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(2325), 15, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - sym_identifier, - ACTIONS(2323), 28, + ACTIONS(2612), 1, + sym_primitive_type, + STATE(819), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2616), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(2877), 6, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [29810] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(41), 1, - anon_sym___declspec, - ACTIONS(1137), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2871), 1, + anon_sym_STAR, anon_sym_SEMI, - STATE(703), 1, - sym_alignas_qualifier, - ACTIONS(33), 2, + anon_sym_LBRACK_LBRACK, + ACTIONS(2874), 41, + anon_sym___extension__, + anon_sym_extern, anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(35), 2, anon_sym___scanf, anon_sym___printf, - ACTIONS(53), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(2495), 2, - anon_sym_LPAREN2, - anon_sym_STAR, - ACTIONS(37), 3, anon_sym___read_mostly, + anon_sym___must_hold, anon_sym___ro_after_init, - anon_sym___init, - STATE(708), 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(2493), 8, + anon_sym___noreturn, + anon_sym___cold, + anon_sym___declspec, anon_sym___based, + anon_sym___init, + anon_sym___exit, anon_sym___cdecl, anon_sym___clrcall, anon_sym___stdcall, anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - sym_identifier, - ACTIONS(51), 9, - anon_sym___extension__, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -87752,8 +98871,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - ACTIONS(49), 10, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + [32266] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2882), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(2880), 46, + anon_sym___extension__, anon_sym_extern, + anon_sym___attribute__, + anon_sym___scanf, + anon_sym___printf, + anon_sym___read_mostly, + anon_sym___must_hold, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + anon_sym___declspec, + anon_sym___based, + anon_sym___init, + anon_sym___exit, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -87763,123 +98920,121 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [29889] = 20, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + [32327] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2395), 1, - anon_sym_LPAREN2, - ACTIONS(2397), 1, - anon_sym_LBRACK, - ACTIONS(2835), 1, - anon_sym_AMP, - ACTIONS(2837), 1, - anon_sym_CARET, - ACTIONS(2839), 1, - anon_sym_PIPE, - ACTIONS(2841), 1, - anon_sym_AMP_AMP, - ACTIONS(2849), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2853), 1, - anon_sym_QMARK, - ACTIONS(2875), 1, - anon_sym_EQ, - STATE(668), 1, - sym_argument_list, - ACTIONS(2399), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2405), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2817), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2827), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2829), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2831), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2833), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2819), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2873), 22, + STATE(819), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2711), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(2886), 7, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(2884), 41, + anon_sym___extension__, + anon_sym_extern, anon_sym___attribute__, anon_sym___scanf, anon_sym___printf, anon_sym___read_mostly, anon_sym___must_hold, anon_sym___ro_after_init, - anon_sym___init, - 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, - [29980] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(41), 1, + anon_sym___noreturn, + anon_sym___cold, anon_sym___declspec, - ACTIONS(1137), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2877), 1, - anon_sym_SEMI, - STATE(703), 1, - sym_alignas_qualifier, - ACTIONS(33), 2, - anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(35), 2, - anon_sym___scanf, - anon_sym___printf, - ACTIONS(53), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(2495), 2, - anon_sym_LPAREN2, - anon_sym_STAR, - ACTIONS(37), 3, - anon_sym___read_mostly, - anon_sym___ro_after_init, - anon_sym___init, - STATE(708), 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(2493), 8, anon_sym___based, + anon_sym___init, + anon_sym___exit, anon_sym___cdecl, anon_sym___clrcall, anon_sym___stdcall, anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, sym_identifier, - ACTIONS(51), 9, + [32392] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2890), 3, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_LBRACK_LBRACK, + ACTIONS(2888), 50, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_preproc_directive, anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___scanf, + anon_sym___printf, + anon_sym___read_mostly, + anon_sym___must_hold, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -87888,8 +99043,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - ACTIONS(49), 10, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [32453] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2894), 3, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_LBRACK_LBRACK, + ACTIONS(2892), 50, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_preproc_directive, + anon_sym___extension__, anon_sym_extern, + anon_sym___attribute__, + anon_sym___scanf, + anon_sym___printf, + anon_sym___read_mostly, + anon_sym___must_hold, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -87899,12 +99093,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [30059] = 3, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [32514] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1381), 1, + ACTIONS(1335), 3, + anon_sym_LPAREN2, + anon_sym_STAR, anon_sym_LBRACK_LBRACK, - ACTIONS(1379), 48, + ACTIONS(1333), 50, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -87923,8 +99134,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___read_mostly, anon_sym___must_hold, anon_sym___ro_after_init, - anon_sym___init, + anon_sym___noreturn, + anon_sym___cold, anon_sym___declspec, + anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, @@ -87953,12 +99166,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [30116] = 3, + [32575] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2881), 1, + ACTIONS(2898), 3, + anon_sym_LPAREN2, + anon_sym_STAR, anon_sym_LBRACK_LBRACK, - ACTIONS(2879), 48, + ACTIONS(2896), 50, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -87977,8 +99192,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___read_mostly, anon_sym___must_hold, anon_sym___ro_after_init, - anon_sym___init, + anon_sym___noreturn, + anon_sym___cold, anon_sym___declspec, + anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, @@ -88007,22 +99224,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [30173] = 3, + [32636] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1353), 1, + ACTIONS(2900), 1, + sym_identifier, + ACTIONS(2909), 1, + sym_primitive_type, + STATE(883), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2907), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(2903), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(1351), 48, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - sym_preproc_directive, + ACTIONS(2905), 40, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -88031,12 +99254,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___read_mostly, anon_sym___must_hold, anon_sym___ro_after_init, - anon_sym___init, + anon_sym___noreturn, + anon_sym___cold, anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, + anon_sym___based, + anon_sym___init, + anon_sym___exit, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -88056,27 +99286,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [30230] = 3, + [32705] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1275), 1, + ACTIONS(2913), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(1273), 48, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - sym_preproc_directive, + anon_sym_COLON, + ACTIONS(2911), 46, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -88085,12 +99306,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___read_mostly, anon_sym___must_hold, anon_sym___ro_after_init, - anon_sym___init, + anon_sym___noreturn, + anon_sym___cold, anon_sym___declspec, + anon_sym___based, + anon_sym___init, + anon_sym___exit, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -88111,16 +99343,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [30287] = 3, + [32766] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2885), 1, + ACTIONS(1395), 3, + anon_sym_LPAREN2, + anon_sym_STAR, anon_sym_LBRACK_LBRACK, - ACTIONS(2883), 48, + ACTIONS(1393), 50, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -88139,8 +99370,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___read_mostly, anon_sym___must_hold, anon_sym___ro_after_init, - anon_sym___init, + anon_sym___noreturn, + anon_sym___cold, anon_sym___declspec, + anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, @@ -88169,22 +99402,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [30344] = 3, + [32827] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2889), 1, + ACTIONS(2917), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2887), 48, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - sym_preproc_directive, + anon_sym_COLON, + ACTIONS(2915), 46, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -88193,12 +99422,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___read_mostly, anon_sym___must_hold, anon_sym___ro_after_init, - anon_sym___init, + anon_sym___noreturn, + anon_sym___cold, anon_sym___declspec, + anon_sym___based, + anon_sym___init, + anon_sym___exit, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -88219,16 +99459,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [30401] = 3, + [32888] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2893), 1, + ACTIONS(2921), 3, + anon_sym_LPAREN2, + anon_sym_STAR, anon_sym_LBRACK_LBRACK, - ACTIONS(2891), 48, + ACTIONS(2919), 50, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -88247,8 +99486,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___read_mostly, anon_sym___must_hold, anon_sym___ro_after_init, - anon_sym___init, + anon_sym___noreturn, + anon_sym___cold, anon_sym___declspec, + anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, @@ -88277,22 +99518,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [30458] = 3, + [32949] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2897), 1, + ACTIONS(2925), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2895), 48, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - sym_preproc_directive, + anon_sym_COLON, + ACTIONS(2923), 46, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -88301,12 +99538,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___read_mostly, anon_sym___must_hold, anon_sym___ro_after_init, - anon_sym___init, + anon_sym___noreturn, + anon_sym___cold, anon_sym___declspec, + anon_sym___based, + anon_sym___init, + anon_sym___exit, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -88327,25 +99575,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [30515] = 3, + [33010] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(41), 1, + anon_sym___declspec, + ACTIONS(1145), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2927), 1, + anon_sym_SEMI, + STATE(799), 1, + sym_alignas_qualifier, + ACTIONS(33), 2, + anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(35), 2, + anon_sym___scanf, + anon_sym___printf, + ACTIONS(55), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(2564), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + ACTIONS(37), 4, + anon_sym___read_mostly, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + STATE(810), 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(53), 9, + anon_sym___extension__, + 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(51), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + ACTIONS(2562), 10, + anon_sym___based, + anon_sym___init, + anon_sym___exit, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + sym_identifier, + [33092] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2901), 1, + ACTIONS(2390), 3, + anon_sym_LPAREN2, + anon_sym_STAR, anon_sym_LBRACK_LBRACK, - ACTIONS(2899), 48, + ACTIONS(2388), 49, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, sym_preproc_directive, anon_sym___extension__, anon_sym_extern, @@ -88355,12 +99666,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___read_mostly, anon_sym___must_hold, anon_sym___ro_after_init, - anon_sym___init, + anon_sym___noreturn, + anon_sym___cold, anon_sym___declspec, + anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -88384,22 +99698,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_enum, anon_sym_struct, anon_sym_union, + anon_sym_asm, + anon_sym___asm__, sym_identifier, - [30572] = 3, + [33152] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2905), 1, + ACTIONS(2396), 3, + anon_sym_LPAREN2, + anon_sym_STAR, anon_sym_LBRACK_LBRACK, - ACTIONS(2903), 48, + ACTIONS(2394), 49, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, sym_preproc_directive, anon_sym___extension__, anon_sym_extern, @@ -88409,12 +99723,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___read_mostly, anon_sym___must_hold, anon_sym___ro_after_init, - anon_sym___init, + anon_sym___noreturn, + anon_sym___cold, anon_sym___declspec, + anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -88438,22 +99755,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_enum, anon_sym_struct, anon_sym_union, + anon_sym_asm, + anon_sym___asm__, + sym_identifier, + [33212] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(41), 1, + anon_sym___declspec, + ACTIONS(1145), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2929), 1, + anon_sym_SEMI, + STATE(799), 1, + sym_alignas_qualifier, + ACTIONS(33), 2, + anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(35), 2, + anon_sym___scanf, + anon_sym___printf, + ACTIONS(55), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(2564), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + ACTIONS(37), 4, + anon_sym___read_mostly, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + STATE(810), 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(53), 9, + anon_sym___extension__, + 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(51), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + ACTIONS(2562), 10, + anon_sym___based, + anon_sym___init, + anon_sym___exit, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, sym_identifier, - [30629] = 3, + [33294] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1321), 1, + ACTIONS(2370), 3, + anon_sym_LPAREN2, + anon_sym_STAR, anon_sym_LBRACK_LBRACK, - ACTIONS(1319), 48, + ACTIONS(2368), 49, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, sym_preproc_directive, anon_sym___extension__, anon_sym_extern, @@ -88463,12 +99848,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___read_mostly, anon_sym___must_hold, anon_sym___ro_after_init, - anon_sym___init, + anon_sym___noreturn, + anon_sym___cold, anon_sym___declspec, + anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -88492,37 +99880,300 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_enum, anon_sym_struct, anon_sym_union, + anon_sym_asm, + anon_sym___asm__, sym_identifier, - [30686] = 3, + [33354] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1313), 1, + ACTIONS(41), 1, + anon_sym___declspec, + ACTIONS(1145), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1311), 48, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - sym_preproc_directive, + ACTIONS(2931), 1, + anon_sym_SEMI, + STATE(799), 1, + sym_alignas_qualifier, + ACTIONS(33), 2, + anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(35), 2, + anon_sym___scanf, + anon_sym___printf, + ACTIONS(55), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(2564), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + ACTIONS(37), 4, + anon_sym___read_mostly, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + STATE(810), 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(53), 9, + anon_sym___extension__, + 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(51), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + ACTIONS(2562), 10, + anon_sym___based, + anon_sym___init, + anon_sym___exit, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + sym_identifier, + [33436] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(41), 1, + anon_sym___declspec, + ACTIONS(1145), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2933), 1, + anon_sym_SEMI, + STATE(799), 1, + sym_alignas_qualifier, + ACTIONS(33), 2, + anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(35), 2, + anon_sym___scanf, + anon_sym___printf, + ACTIONS(55), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(2564), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + ACTIONS(37), 4, + anon_sym___read_mostly, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + STATE(810), 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(53), 9, anon_sym___extension__, + 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(51), 10, anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + ACTIONS(2562), 10, + anon_sym___based, + anon_sym___init, + anon_sym___exit, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + sym_identifier, + [33518] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2376), 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(2374), 30, + 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___try, + anon_sym___leave, + anon_sym_sizeof, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_asm, + anon_sym___asm__, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + [33577] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1746), 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(1744), 30, + 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___try, + anon_sym___leave, + anon_sym_sizeof, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_asm, + anon_sym___asm__, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + [33636] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2948), 1, + anon_sym_LBRACE, + ACTIONS(2950), 1, + anon_sym_COLON, + STATE(841), 1, + sym_attribute_specifier, + STATE(964), 1, + sym_enumerator_list, + ACTIONS(2939), 2, anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(2942), 2, anon_sym___scanf, anon_sym___printf, + ACTIONS(2945), 4, anon_sym___read_mostly, - anon_sym___must_hold, anon_sym___ro_after_init, - anon_sym___init, + anon_sym___noreturn, + anon_sym___cold, + ACTIONS(2937), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(2935), 33, + anon_sym___extension__, + anon_sym_extern, anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, + anon_sym___based, + anon_sym___init, + anon_sym___exit, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -88542,50 +100193,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [30743] = 3, + [33709] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1301), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1299), 48, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - sym_preproc_directive, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___scanf, - anon_sym___printf, - anon_sym___read_mostly, - anon_sym___must_hold, - anon_sym___ro_after_init, - anon_sym___init, - anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, + ACTIONS(2959), 1, anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, + STATE(965), 1, + sym_alignas_qualifier, + ACTIONS(2962), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(906), 2, + sym_type_qualifier, + aux_sym_array_declarator_repeat1, + ACTIONS(2956), 9, + anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -88594,27 +100217,565 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, + ACTIONS(2952), 17, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_sizeof, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_asm, + anon_sym___asm__, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, sym_identifier, - [30800] = 7, + ACTIONS(2954), 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, + [33778] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2907), 1, - anon_sym_EQ, - STATE(456), 1, - sym_string_literal, - ACTIONS(101), 5, + ACTIONS(1715), 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(2909), 10, + ACTIONS(1713), 30, + 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___try, + anon_sym___leave, + anon_sym_sizeof, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_asm, + anon_sym___asm__, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + [33837] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2486), 1, + anon_sym_LPAREN2, + ACTIONS(2488), 1, + anon_sym_LBRACK, + STATE(765), 1, + sym_argument_list, + ACTIONS(2490), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2492), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2965), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2546), 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(2548), 30, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym___scanf, + anon_sym___printf, + anon_sym___read_mostly, + anon_sym___must_hold, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + 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, + [33907] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2486), 1, + anon_sym_LPAREN2, + ACTIONS(2488), 1, + anon_sym_LBRACK, + ACTIONS(2969), 1, + anon_sym_AMP, + STATE(765), 1, + sym_argument_list, + ACTIONS(2490), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2492), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2967), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2971), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2973), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2975), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2977), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2546), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_EQ, + ACTIONS(2965), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2548), 26, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym___scanf, + anon_sym___printf, + anon_sym___read_mostly, + anon_sym___must_hold, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + 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, + [33989] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2486), 1, + anon_sym_LPAREN2, + ACTIONS(2488), 1, + anon_sym_LBRACK, + ACTIONS(2969), 1, + anon_sym_AMP, + ACTIONS(2981), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2983), 1, + anon_sym_AMP_AMP, + ACTIONS(2985), 1, + anon_sym_PIPE, + ACTIONS(2987), 1, + anon_sym_CARET, + ACTIONS(2989), 1, + anon_sym_EQ, + ACTIONS(2991), 1, + anon_sym_QMARK, + STATE(765), 1, + sym_argument_list, + ACTIONS(2490), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2492), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2967), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2971), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2973), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2975), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2977), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2965), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2979), 23, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym___scanf, + anon_sym___printf, + anon_sym___read_mostly, + anon_sym___must_hold, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + 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, + [34081] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2486), 1, + anon_sym_LPAREN2, + ACTIONS(2488), 1, + anon_sym_LBRACK, + STATE(765), 1, + sym_argument_list, + ACTIONS(2490), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2492), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2967), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2971), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2973), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2975), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2977), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2965), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2546), 4, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ, + ACTIONS(2548), 26, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym___scanf, + anon_sym___printf, + anon_sym___read_mostly, + anon_sym___must_hold, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + 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, + [34161] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2486), 1, + anon_sym_LPAREN2, + ACTIONS(2488), 1, + anon_sym_LBRACK, + STATE(765), 1, + sym_argument_list, + ACTIONS(2490), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2492), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2967), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2973), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2975), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2977), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2965), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2546), 4, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ, + ACTIONS(2548), 28, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym___scanf, + anon_sym___printf, + anon_sym___read_mostly, + anon_sym___must_hold, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + 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, + [34239] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2486), 1, + anon_sym_LPAREN2, + ACTIONS(2488), 1, + anon_sym_LBRACK, + ACTIONS(2969), 1, + anon_sym_AMP, + ACTIONS(2981), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2983), 1, + anon_sym_AMP_AMP, + ACTIONS(2985), 1, + anon_sym_PIPE, + ACTIONS(2987), 1, + anon_sym_CARET, + ACTIONS(2991), 1, + anon_sym_QMARK, + ACTIONS(2995), 1, + anon_sym_EQ, + STATE(765), 1, + sym_argument_list, + ACTIONS(2490), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2492), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2967), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2971), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2973), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2975), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2977), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2965), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2993), 23, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym___scanf, + anon_sym___printf, + anon_sym___read_mostly, + anon_sym___must_hold, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + 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, + [34331] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2486), 1, + anon_sym_LPAREN2, + ACTIONS(2488), 1, + anon_sym_LBRACK, + ACTIONS(2969), 1, + anon_sym_AMP, + ACTIONS(2981), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2983), 1, + anon_sym_AMP_AMP, + ACTIONS(2985), 1, + anon_sym_PIPE, + ACTIONS(2987), 1, + anon_sym_CARET, + ACTIONS(2991), 1, + anon_sym_QMARK, + ACTIONS(2999), 1, + anon_sym_EQ, + STATE(765), 1, + sym_argument_list, + ACTIONS(2490), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2492), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2967), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2971), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2973), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2975), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2977), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2965), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2997), 23, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym___scanf, + anon_sym___printf, + anon_sym___read_mostly, + anon_sym___must_hold, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + anon_sym_RBRACE, + anon_sym_COLON, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -88625,96 +100786,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1740), 14, - aux_sym_preproc_elif_token1, + [34423] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2486), 1, + anon_sym_LPAREN2, + ACTIONS(2488), 1, + anon_sym_LBRACK, + STATE(765), 1, + sym_argument_list, + ACTIONS(2490), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2492), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2967), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(2977), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2965), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(2546), 6, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - sym_identifier, - ACTIONS(1734), 18, + anon_sym_EQ, + ACTIONS(2548), 30, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym___scanf, + anon_sym___printf, + anon_sym___read_mostly, + anon_sym___must_hold, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + anon_sym_RBRACE, + anon_sym_COLON, anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [30865] = 14, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [34497] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(41), 1, - anon_sym___declspec, - ACTIONS(1137), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2911), 1, - anon_sym_SEMI, - STATE(703), 1, - sym_alignas_qualifier, - ACTIONS(33), 2, + ACTIONS(2948), 1, + anon_sym_LBRACE, + STATE(869), 1, + sym_attribute_specifier, + STATE(966), 1, + sym_enumerator_list, + ACTIONS(3005), 2, anon_sym___attribute__, anon_sym___must_hold, - ACTIONS(35), 2, + ACTIONS(3008), 2, anon_sym___scanf, anon_sym___printf, - ACTIONS(53), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(2495), 2, - anon_sym_LPAREN2, - anon_sym_STAR, - ACTIONS(37), 3, + ACTIONS(3011), 4, anon_sym___read_mostly, anon_sym___ro_after_init, - anon_sym___init, - STATE(708), 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(2493), 8, + anon_sym___noreturn, + anon_sym___cold, + ACTIONS(3003), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(3001), 33, + anon_sym___extension__, + anon_sym_extern, + anon_sym___declspec, anon_sym___based, + anon_sym___init, + anon_sym___exit, anon_sym___cdecl, anon_sym___clrcall, anon_sym___stdcall, anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - sym_identifier, - ACTIONS(51), 9, - anon_sym___extension__, - 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(49), 10, - anon_sym_extern, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -88724,12 +100899,146 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [30944] = 5, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + [34567] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2486), 1, + anon_sym_LPAREN2, + ACTIONS(2488), 1, + anon_sym_LBRACK, + ACTIONS(2546), 1, + anon_sym_EQ, + ACTIONS(2969), 1, + anon_sym_AMP, + ACTIONS(2985), 1, + anon_sym_PIPE, + ACTIONS(2987), 1, + anon_sym_CARET, + STATE(765), 1, + sym_argument_list, + ACTIONS(2490), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2492), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2967), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2971), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2973), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2975), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2977), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2965), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2548), 26, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym___scanf, + anon_sym___printf, + anon_sym___read_mostly, + anon_sym___must_hold, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + 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, + [34653] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1749), 1, + ACTIONS(2486), 1, + anon_sym_LPAREN2, + ACTIONS(2488), 1, + anon_sym_LBRACK, + ACTIONS(2546), 1, anon_sym_EQ, - ACTIONS(1753), 10, + ACTIONS(2969), 1, + anon_sym_AMP, + ACTIONS(2983), 1, + anon_sym_AMP_AMP, + ACTIONS(2985), 1, + anon_sym_PIPE, + ACTIONS(2987), 1, + anon_sym_CARET, + STATE(765), 1, + sym_argument_list, + ACTIONS(2490), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2492), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2967), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2971), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2973), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2975), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2977), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2965), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2548), 25, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym___scanf, + anon_sym___printf, + anon_sym___read_mostly, + anon_sym___must_hold, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -88740,12 +101049,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1740), 12, + [34741] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2486), 1, + anon_sym_LPAREN2, + ACTIONS(2488), 1, + anon_sym_LBRACK, + STATE(765), 1, + sym_argument_list, + ACTIONS(2490), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2492), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2967), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(2965), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(2546), 8, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -88753,10 +101079,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1734), 25, + anon_sym_EQ, + ACTIONS(2548), 30, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -88770,55 +101096,119 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___read_mostly, anon_sym___must_hold, anon_sym___ro_after_init, - anon_sym___init, + anon_sym___noreturn, + anon_sym___cold, 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, + [34813] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2486), 1, + anon_sym_LPAREN2, + ACTIONS(2488), 1, + anon_sym_LBRACK, + ACTIONS(2969), 1, + anon_sym_AMP, + ACTIONS(2987), 1, + anon_sym_CARET, + STATE(765), 1, + sym_argument_list, + ACTIONS(2490), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(2492), 2, anon_sym_DOT, anon_sym_DASH_GT, - [31004] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2926), 1, - anon_sym_LBRACE, - ACTIONS(2928), 1, - anon_sym_COLON, - STATE(741), 1, - sym_attribute_specifier, - STATE(873), 1, - sym_enumerator_list, - ACTIONS(2917), 2, + ACTIONS(2546), 2, + anon_sym_PIPE, + anon_sym_EQ, + ACTIONS(2967), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2971), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2973), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2975), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2977), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2965), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2548), 26, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(2920), 2, anon_sym___scanf, anon_sym___printf, - ACTIONS(2923), 3, anon_sym___read_mostly, + anon_sym___must_hold, anon_sym___ro_after_init, - anon_sym___init, - ACTIONS(2915), 6, - anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym___noreturn, + anon_sym___cold, + 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, + [34897] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2834), 4, anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2913), 31, + anon_sym_RBRACE, + ACTIONS(2832), 45, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, anon_sym___extension__, anon_sym_extern, + anon_sym___attribute__, + anon_sym___scanf, + anon_sym___printf, + anon_sym___read_mostly, + anon_sym___must_hold, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, anon_sym___declspec, anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_LBRACK, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -88838,151 +101228,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_alignas, anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [31074] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2457), 19, - anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_RBRACK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(2455), 29, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym___extension__, - anon_sym_static, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_sizeof, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - anon_sym_offsetof, - anon_sym__Generic, - anon_sym_asm, - anon_sym___asm__, - sym_true, - sym_false, - anon_sym_NULL, - anon_sym_nullptr, - sym_identifier, - [31130] = 3, + [34954] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2469), 19, + ACTIONS(2795), 3, anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, anon_sym_STAR, - anon_sym_AMP, - anon_sym_RBRACK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(2467), 29, - anon_sym_DASH, - anon_sym_PLUS, + anon_sym_LBRACK_LBRACK, + ACTIONS(2793), 46, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, anon_sym___extension__, - anon_sym_static, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_sizeof, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - anon_sym_offsetof, - anon_sym__Generic, - anon_sym_asm, - anon_sym___asm__, - sym_true, - sym_false, - anon_sym_NULL, - anon_sym_nullptr, - sym_identifier, - [31186] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2926), 1, - anon_sym_LBRACE, - STATE(778), 1, - sym_attribute_specifier, - STATE(851), 1, - sym_enumerator_list, - ACTIONS(2934), 2, + anon_sym_extern, anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(2937), 2, anon_sym___scanf, anon_sym___printf, - ACTIONS(2940), 3, anon_sym___read_mostly, + anon_sym___must_hold, anon_sym___ro_after_init, - anon_sym___init, - ACTIONS(2932), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - ACTIONS(2930), 31, - anon_sym___extension__, - anon_sym_extern, + anon_sym___noreturn, + anon_sym___cold, anon_sym___declspec, anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_LBRACK, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -89002,35 +101282,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_alignas, anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [31253] = 6, + [35011] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2950), 2, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(2953), 3, - anon_sym_LBRACK, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(2946), 4, - anon_sym_COMMA, + ACTIONS(2803), 3, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_EQ, - ACTIONS(2943), 8, + anon_sym_STAR, + anon_sym_LBRACK_LBRACK, + ACTIONS(2801), 46, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym___extension__, + anon_sym_extern, anon_sym___attribute__, anon_sym___scanf, anon_sym___printf, anon_sym___read_mostly, anon_sym___must_hold, anon_sym___ro_after_init, - anon_sym___init, - sym_identifier, - ACTIONS(2948), 30, - anon_sym___extension__, - anon_sym_extern, + anon_sym___noreturn, + anon_sym___cold, anon_sym___declspec, + anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, @@ -89058,34 +101340,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_enum, anon_sym_struct, anon_sym_union, - [31314] = 6, + sym_identifier, + [35068] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2962), 2, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(2965), 3, - anon_sym_LBRACK, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(2958), 4, - anon_sym_COMMA, + ACTIONS(2866), 4, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_EQ, - ACTIONS(2955), 8, + anon_sym_STAR, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + ACTIONS(2864), 45, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym___extension__, + anon_sym_extern, anon_sym___attribute__, anon_sym___scanf, anon_sym___printf, anon_sym___read_mostly, anon_sym___must_hold, anon_sym___ro_after_init, - anon_sym___init, - sym_identifier, - ACTIONS(2960), 30, - anon_sym___extension__, - anon_sym_extern, + anon_sym___noreturn, + anon_sym___cold, anon_sym___declspec, + anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, @@ -89113,13 +101394,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_enum, anon_sym_struct, anon_sym_union, - [31375] = 3, + sym_identifier, + [35125] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2083), 2, + ACTIONS(1315), 4, + anon_sym_LPAREN2, + anon_sym_STAR, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(2081), 44, + anon_sym_RBRACE, + ACTIONS(1313), 45, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -89128,14 +101417,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___read_mostly, anon_sym___must_hold, anon_sym___ro_after_init, - anon_sym___init, + anon_sym___noreturn, + anon_sym___cold, anon_sym___declspec, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, + anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, @@ -89164,13 +101449,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [31429] = 3, + [35182] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2089), 2, + ACTIONS(2890), 4, + anon_sym_LPAREN2, + anon_sym_STAR, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(2087), 44, + anon_sym_RBRACE, + ACTIONS(2888), 45, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -89179,14 +101471,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___read_mostly, anon_sym___must_hold, anon_sym___ro_after_init, - anon_sym___init, + anon_sym___noreturn, + anon_sym___cold, anon_sym___declspec, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, + anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, @@ -89215,13 +101503,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [31483] = 3, + [35239] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1313), 2, + ACTIONS(1395), 4, + anon_sym_LPAREN2, + anon_sym_STAR, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(1311), 43, + ACTIONS(1393), 45, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -89235,8 +101525,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___read_mostly, anon_sym___must_hold, anon_sym___ro_after_init, - anon_sym___init, + anon_sym___noreturn, + anon_sym___cold, anon_sym___declspec, + anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, @@ -89265,70 +101557,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [31536] = 8, + [35296] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1749), 1, - anon_sym_EQ, - ACTIONS(1762), 1, - anon_sym_COLON, - STATE(456), 1, - sym_string_literal, - ACTIONS(101), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1753), 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(1740), 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(1734), 15, - anon_sym_COMMA, + ACTIONS(2834), 3, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [31599] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2885), 2, + anon_sym_STAR, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2883), 43, + ACTIONS(2832), 46, aux_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, @@ -89340,8 +101579,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___read_mostly, anon_sym___must_hold, anon_sym___ro_after_init, - anon_sym___init, + anon_sym___noreturn, + anon_sym___cold, anon_sym___declspec, + anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, @@ -89370,22 +101611,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [31652] = 8, + [35353] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1749), 1, + ACTIONS(3014), 1, anon_sym_EQ, - ACTIONS(1760), 1, - anon_sym_COLON, - STATE(456), 1, + STATE(520), 1, sym_string_literal, - ACTIONS(101), 5, + ACTIONS(103), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(1753), 10, + ACTIONS(3016), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -89396,7 +101635,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1740), 12, + ACTIONS(1756), 14, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -89409,8 +101649,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1734), 15, + sym_identifier, + ACTIONS(1750), 18, anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -89418,122 +101663,23 @@ 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_LBRACK, anon_sym_QMARK, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [31715] = 3, + [35418] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2901), 2, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2899), 43, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___scanf, - anon_sym___printf, - anon_sym___read_mostly, - anon_sym___must_hold, - anon_sym___ro_after_init, - anon_sym___init, - anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [31768] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2897), 2, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2895), 43, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___scanf, - anon_sym___printf, - anon_sym___read_mostly, - anon_sym___must_hold, - anon_sym___ro_after_init, - anon_sym___init, - anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [31821] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2893), 2, + ACTIONS(2866), 3, + anon_sym_LPAREN2, + anon_sym_STAR, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2891), 43, + ACTIONS(2864), 46, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -89545,8 +101691,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___read_mostly, anon_sym___must_hold, anon_sym___ro_after_init, - anon_sym___init, + anon_sym___noreturn, + anon_sym___cold, anon_sym___declspec, + anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, @@ -89575,12 +101723,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [31874] = 3, + [35475] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1301), 1, + ACTIONS(2890), 3, + anon_sym_LPAREN2, + anon_sym_STAR, anon_sym_LBRACK_LBRACK, - ACTIONS(1299), 44, + ACTIONS(2888), 46, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -89595,8 +101745,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___read_mostly, anon_sym___must_hold, anon_sym___ro_after_init, - anon_sym___init, + anon_sym___noreturn, + anon_sym___cold, anon_sym___declspec, + anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, @@ -89625,12 +101777,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [31927] = 3, + [35532] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1313), 1, + ACTIONS(2898), 3, + anon_sym_LPAREN2, + anon_sym_STAR, anon_sym_LBRACK_LBRACK, - ACTIONS(1311), 44, + ACTIONS(2896), 46, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -89645,8 +101799,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___read_mostly, anon_sym___must_hold, anon_sym___ro_after_init, - anon_sym___init, + anon_sym___noreturn, + anon_sym___cold, anon_sym___declspec, + anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, @@ -89675,15 +101831,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [31980] = 3, + [35589] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1321), 1, + ACTIONS(2898), 4, + anon_sym_LPAREN2, + anon_sym_STAR, anon_sym_LBRACK_LBRACK, - ACTIONS(1319), 44, + anon_sym_RBRACE, + ACTIONS(2896), 45, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -89695,8 +101853,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___read_mostly, anon_sym___must_hold, anon_sym___ro_after_init, - anon_sym___init, + anon_sym___noreturn, + anon_sym___cold, anon_sym___declspec, + anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, @@ -89725,15 +101885,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [32033] = 3, + [35646] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1275), 1, + ACTIONS(1307), 4, + anon_sym_LPAREN2, + anon_sym_STAR, anon_sym_LBRACK_LBRACK, - ACTIONS(1273), 44, + anon_sym_RBRACE, + ACTIONS(1305), 45, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -89745,8 +101907,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___read_mostly, anon_sym___must_hold, anon_sym___ro_after_init, - anon_sym___init, + anon_sym___noreturn, + anon_sym___cold, anon_sym___declspec, + anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, @@ -89775,67 +101939,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [32086] = 8, + [35703] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1749), 1, - anon_sym_EQ, - ACTIONS(2967), 1, - anon_sym_COLON, - STATE(456), 1, - sym_string_literal, - ACTIONS(101), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1753), 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(1740), 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(1734), 15, - anon_sym_COMMA, + ACTIONS(2755), 3, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [32149] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1353), 1, + anon_sym_STAR, anon_sym_LBRACK_LBRACK, - ACTIONS(1351), 44, + ACTIONS(2753), 46, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -89850,8 +101961,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___read_mostly, anon_sym___must_hold, anon_sym___ro_after_init, - anon_sym___init, + anon_sym___noreturn, + anon_sym___cold, anon_sym___declspec, + anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, @@ -89880,12 +101993,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [32202] = 3, + [35760] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1381), 1, + ACTIONS(2807), 3, + anon_sym_LPAREN2, + anon_sym_STAR, anon_sym_LBRACK_LBRACK, - ACTIONS(1379), 44, + ACTIONS(2805), 46, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -89900,8 +102015,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___read_mostly, anon_sym___must_hold, anon_sym___ro_after_init, - anon_sym___init, + anon_sym___noreturn, + anon_sym___cold, anon_sym___declspec, + anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, @@ -89930,20 +102047,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [32255] = 5, + [35817] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2491), 1, + ACTIONS(2807), 4, + anon_sym_LPAREN2, + anon_sym_STAR, anon_sym_LBRACK_LBRACK, - STATE(455), 1, - sym_string_literal, - ACTIONS(2969), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(2489), 38, + anon_sym_RBRACE, + ACTIONS(2805), 45, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -89952,8 +102069,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___read_mostly, anon_sym___must_hold, anon_sym___ro_after_init, - anon_sym___init, + anon_sym___noreturn, + anon_sym___cold, anon_sym___declspec, + anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, @@ -89982,13 +102101,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [32312] = 3, + [35874] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1381), 2, + ACTIONS(2731), 4, + anon_sym_LPAREN2, + anon_sym_STAR, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(1379), 43, + ACTIONS(2729), 45, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -90002,8 +102123,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___read_mostly, anon_sym___must_hold, anon_sym___ro_after_init, - anon_sym___init, + anon_sym___noreturn, + anon_sym___cold, anon_sym___declspec, + anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, @@ -90032,13 +102155,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [32365] = 3, + [35931] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2905), 2, + ACTIONS(2894), 4, + anon_sym_LPAREN2, + anon_sym_STAR, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(2903), 43, + ACTIONS(2892), 45, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -90052,8 +102177,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___read_mostly, anon_sym___must_hold, anon_sym___ro_after_init, - anon_sym___init, + anon_sym___noreturn, + anon_sym___cold, anon_sym___declspec, + anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, @@ -90082,13 +102209,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [32418] = 3, + [35988] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(520), 1, + sym_string_literal, + ACTIONS(103), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(2384), 15, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + sym_identifier, + ACTIONS(2382), 28, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [36049] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2881), 2, + ACTIONS(2803), 4, + anon_sym_LPAREN2, + anon_sym_STAR, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(2879), 43, + ACTIONS(2801), 45, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -90102,8 +102287,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___read_mostly, anon_sym___must_hold, anon_sym___ro_after_init, - anon_sym___init, + anon_sym___noreturn, + anon_sym___cold, anon_sym___declspec, + anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, @@ -90132,15 +102319,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [32471] = 3, + [36106] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2823), 2, + ACTIONS(2921), 3, + anon_sym_LPAREN2, + anon_sym_STAR, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2821), 43, + ACTIONS(2919), 46, aux_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, @@ -90152,8 +102341,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___read_mostly, anon_sym___must_hold, anon_sym___ro_after_init, - anon_sym___init, + anon_sym___noreturn, + anon_sym___cold, anon_sym___declspec, + anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, @@ -90182,13 +102373,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [32524] = 3, + [36163] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2845), 2, + ACTIONS(2921), 4, + anon_sym_LPAREN2, + anon_sym_STAR, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(2843), 43, + ACTIONS(2919), 45, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -90202,8 +102395,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___read_mostly, anon_sym___must_hold, anon_sym___ro_after_init, - anon_sym___init, + anon_sym___noreturn, + anon_sym___cold, anon_sym___declspec, + anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, @@ -90232,15 +102427,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [32577] = 3, + [36220] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2889), 2, - anon_sym_LBRACK_LBRACK, + ACTIONS(1765), 1, + anon_sym_EQ, + ACTIONS(1769), 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(1756), 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(1750), 26, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym___scanf, + anon_sym___printf, + anon_sym___read_mostly, + anon_sym___must_hold, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, anon_sym_RBRACE, - ACTIONS(2887), 43, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [36281] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2731), 3, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_LBRACK_LBRACK, + ACTIONS(2729), 46, aux_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, @@ -90252,8 +102505,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___read_mostly, anon_sym___must_hold, anon_sym___ro_after_init, - anon_sym___init, + anon_sym___noreturn, + anon_sym___cold, anon_sym___declspec, + anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, @@ -90282,20 +102537,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [32630] = 5, + [36338] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2491), 1, + ACTIONS(1335), 4, + anon_sym_LPAREN2, + anon_sym_STAR, anon_sym_LBRACK_LBRACK, - STATE(452), 1, - sym_string_literal, - ACTIONS(2969), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(2489), 38, + anon_sym_RBRACE, + ACTIONS(1333), 45, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -90304,8 +102559,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___read_mostly, anon_sym___must_hold, anon_sym___ro_after_init, - anon_sym___init, + anon_sym___noreturn, + anon_sym___cold, anon_sym___declspec, + anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, @@ -90334,20 +102591,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [32687] = 5, + [36395] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2491), 1, + ACTIONS(2894), 3, + anon_sym_LPAREN2, + anon_sym_STAR, anon_sym_LBRACK_LBRACK, - STATE(453), 1, - sym_string_literal, - ACTIONS(2969), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(2489), 38, + ACTIONS(2892), 46, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -90356,8 +102613,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___read_mostly, anon_sym___must_hold, anon_sym___ro_after_init, - anon_sym___init, + anon_sym___noreturn, + anon_sym___cold, anon_sym___declspec, + anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, @@ -90386,15 +102645,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [32744] = 3, + [36452] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2845), 1, + ACTIONS(2755), 4, + anon_sym_LPAREN2, + anon_sym_STAR, anon_sym_LBRACK_LBRACK, - ACTIONS(2843), 44, + anon_sym_RBRACE, + ACTIONS(2753), 45, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -90406,8 +102667,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___read_mostly, anon_sym___must_hold, anon_sym___ro_after_init, - anon_sym___init, + anon_sym___noreturn, + anon_sym___cold, anon_sym___declspec, + anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, @@ -90436,40 +102699,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [32797] = 7, + [36509] = 3, ACTIONS(3), 1, sym_comment, - STATE(748), 1, - sym_attribute_specifier, - ACTIONS(2975), 2, + ACTIONS(2787), 3, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_LBRACK_LBRACK, + ACTIONS(2785), 46, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym___extension__, + anon_sym_extern, anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(2978), 2, anon_sym___scanf, anon_sym___printf, - ACTIONS(2981), 3, anon_sym___read_mostly, + anon_sym___must_hold, anon_sym___ro_after_init, - anon_sym___init, - ACTIONS(2973), 6, - anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym___noreturn, + anon_sym___cold, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [36566] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1335), 3, anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2971), 31, + ACTIONS(1333), 46, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, anon_sym___extension__, anon_sym_extern, + anon_sym___attribute__, + anon_sym___scanf, + anon_sym___printf, + anon_sym___read_mostly, + anon_sym___must_hold, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, anon_sym___declspec, anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_LBRACK, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -90489,16 +102802,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_alignas, anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [32858] = 3, + [36623] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2861), 2, + ACTIONS(1395), 3, + anon_sym_LPAREN2, + anon_sym_STAR, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2859), 43, + ACTIONS(1393), 46, aux_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, @@ -90510,8 +102829,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___read_mostly, anon_sym___must_hold, anon_sym___ro_after_init, - anon_sym___init, + anon_sym___noreturn, + anon_sym___cold, anon_sym___declspec, + anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, @@ -90540,13 +102861,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [32911] = 3, + [36680] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1353), 2, + ACTIONS(2787), 4, + anon_sym_LPAREN2, + anon_sym_STAR, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(1351), 43, + ACTIONS(2785), 45, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -90560,8 +102883,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___read_mostly, anon_sym___must_hold, anon_sym___ro_after_init, - anon_sym___init, + anon_sym___noreturn, + anon_sym___cold, anon_sym___declspec, + anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, @@ -90590,15 +102915,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [32964] = 3, + [36737] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1275), 2, + ACTIONS(1371), 3, + anon_sym_LPAREN2, + anon_sym_STAR, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(1273), 43, + ACTIONS(1369), 46, aux_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, @@ -90610,8 +102937,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___read_mostly, anon_sym___must_hold, anon_sym___ro_after_init, - anon_sym___init, + anon_sym___noreturn, + anon_sym___cold, anon_sym___declspec, + anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, @@ -90640,13 +102969,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [33017] = 3, + [36794] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1321), 2, + ACTIONS(2795), 4, + anon_sym_LPAREN2, + anon_sym_STAR, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(1319), 43, + ACTIONS(2793), 45, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -90660,8 +102991,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___read_mostly, anon_sym___must_hold, anon_sym___ro_after_init, - anon_sym___init, + anon_sym___noreturn, + anon_sym___cold, anon_sym___declspec, + anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, @@ -90690,40 +103023,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [33070] = 7, + [36851] = 3, ACTIONS(3), 1, sym_comment, - STATE(743), 1, - sym_attribute_specifier, - ACTIONS(2988), 2, - anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(2991), 2, - anon_sym___scanf, - anon_sym___printf, - ACTIONS(2994), 3, - anon_sym___read_mostly, - anon_sym___ro_after_init, - anon_sym___init, - ACTIONS(2986), 6, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(1367), 4, anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2984), 31, + anon_sym_RBRACE, + ACTIONS(1365), 45, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, anon_sym___extension__, anon_sym_extern, + anon_sym___attribute__, + anon_sym___scanf, + anon_sym___printf, + anon_sym___read_mostly, + anon_sym___must_hold, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, anon_sym___declspec, anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_LBRACK, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -90743,16 +103072,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_alignas, anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [33131] = 3, + [36908] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2861), 1, + ACTIONS(1371), 4, + anon_sym_LPAREN2, + anon_sym_STAR, anon_sym_LBRACK_LBRACK, - ACTIONS(2859), 44, + anon_sym_RBRACE, + ACTIONS(1369), 45, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -90764,8 +103099,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___read_mostly, anon_sym___must_hold, anon_sym___ro_after_init, - anon_sym___init, + anon_sym___noreturn, + anon_sym___cold, anon_sym___declspec, + anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, @@ -90794,12 +103131,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [33184] = 3, + [36965] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2865), 1, + ACTIONS(1307), 3, + anon_sym_LPAREN2, + anon_sym_STAR, anon_sym_LBRACK_LBRACK, - ACTIONS(2863), 44, + ACTIONS(1305), 46, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -90814,8 +103153,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___read_mostly, anon_sym___must_hold, anon_sym___ro_after_init, - anon_sym___init, + anon_sym___noreturn, + anon_sym___cold, anon_sym___declspec, + anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, @@ -90844,15 +103185,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [33237] = 3, + [37022] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2865), 2, + ACTIONS(1367), 3, + anon_sym_LPAREN2, + anon_sym_STAR, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2863), 43, + ACTIONS(1365), 46, aux_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, @@ -90864,8 +103207,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___read_mostly, anon_sym___must_hold, anon_sym___ro_after_init, - anon_sym___init, + anon_sym___noreturn, + anon_sym___cold, anon_sym___declspec, + anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, @@ -90894,12 +103239,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [33290] = 3, + [37079] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2869), 1, + ACTIONS(1315), 3, + anon_sym_LPAREN2, + anon_sym_STAR, anon_sym_LBRACK_LBRACK, - ACTIONS(2867), 44, + ACTIONS(1313), 46, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -90914,8 +103261,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___read_mostly, anon_sym___must_hold, anon_sym___ro_after_init, - anon_sym___init, + anon_sym___noreturn, + anon_sym___cold, anon_sym___declspec, + anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, @@ -90944,84 +103293,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [33343] = 8, + [37136] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1749), 1, - anon_sym_EQ, - ACTIONS(1758), 1, - anon_sym_COLON, - STATE(456), 1, - sym_string_literal, - ACTIONS(101), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1753), 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(1740), 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(1734), 15, + STATE(837), 1, + sym_attribute_specifier, + ACTIONS(3022), 2, + anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(3025), 2, + anon_sym___scanf, + anon_sym___printf, + ACTIONS(3028), 4, + anon_sym___read_mostly, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + ACTIONS(3020), 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(3018), 33, + anon_sym___extension__, + anon_sym_extern, + anon_sym___declspec, + anon_sym___based, + anon_sym___init, + anon_sym___exit, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [33406] = 5, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + [37200] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2491), 1, + ACTIONS(3036), 2, anon_sym_LBRACK_LBRACK, - STATE(454), 1, - sym_string_literal, - ACTIONS(2969), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(2489), 38, - anon_sym___extension__, - anon_sym_extern, + anon_sym_LBRACE, + ACTIONS(2368), 3, + anon_sym_LBRACK, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(2370), 4, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_EQ, + ACTIONS(3031), 9, anon_sym___attribute__, anon_sym___scanf, anon_sym___printf, anon_sym___read_mostly, anon_sym___must_hold, anon_sym___ro_after_init, - anon_sym___init, + anon_sym___noreturn, + anon_sym___cold, + sym_identifier, + ACTIONS(3034), 30, + anon_sym___extension__, + anon_sym_extern, anon_sym___declspec, anon_sym_signed, anon_sym_unsigned, @@ -91050,28 +103406,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_enum, anon_sym_struct, anon_sym_union, + [37262] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2496), 19, + anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_RBRACK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(2494), 29, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym___extension__, + anon_sym_static, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_sizeof, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_asm, + anon_sym___asm__, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, sym_identifier, - [33463] = 3, + [37318] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1301), 2, + ACTIONS(3044), 2, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(1299), 43, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym___extension__, - anon_sym_extern, + anon_sym_LBRACE, + ACTIONS(2388), 3, + anon_sym_LBRACK, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(2390), 4, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_EQ, + ACTIONS(3039), 9, anon_sym___attribute__, anon_sym___scanf, anon_sym___printf, anon_sym___read_mostly, anon_sym___must_hold, anon_sym___ro_after_init, - anon_sym___init, + anon_sym___noreturn, + anon_sym___cold, + sym_identifier, + ACTIONS(3042), 30, + anon_sym___extension__, + anon_sym_extern, anon_sym___declspec, anon_sym_signed, anon_sym_unsigned, @@ -91100,33 +103515,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_enum, anon_sym_struct, anon_sym_union, - sym_identifier, - [33516] = 3, + [37380] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2905), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2903), 44, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym___extension__, - anon_sym_extern, + STATE(865), 1, + sym_attribute_specifier, + ACTIONS(3051), 2, anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(3054), 2, anon_sym___scanf, anon_sym___printf, + ACTIONS(3057), 4, anon_sym___read_mostly, - anon_sym___must_hold, anon_sym___ro_after_init, - anon_sym___init, + anon_sym___noreturn, + anon_sym___cold, + ACTIONS(3049), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(3047), 33, + anon_sym___extension__, + anon_sym_extern, anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, + anon_sym___based, + anon_sym___init, + anon_sym___exit, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -91146,92 +103571,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [33569] = 8, + [37444] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1749), 1, - anon_sym_EQ, - ACTIONS(1776), 1, - anon_sym_COLON, - STATE(456), 1, - sym_string_literal, - ACTIONS(101), 5, + ACTIONS(2544), 19, + anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_RBRACK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(1753), 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(1740), 12, + ACTIONS(2542), 29, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1734), 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, - [33632] = 3, + anon_sym___extension__, + anon_sym_static, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_sizeof, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_asm, + anon_sym___asm__, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + [37500] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2901), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2899), 44, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym___extension__, - anon_sym_extern, + STATE(876), 1, + sym_attribute_specifier, + ACTIONS(3064), 2, anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(3067), 2, anon_sym___scanf, anon_sym___printf, + ACTIONS(3070), 4, anon_sym___read_mostly, - anon_sym___must_hold, anon_sym___ro_after_init, - anon_sym___init, + anon_sym___noreturn, + anon_sym___cold, + ACTIONS(3062), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(3060), 33, + anon_sym___extension__, + anon_sym_extern, anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, + anon_sym___based, + anon_sym___init, + anon_sym___exit, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -91251,23 +103681,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [33685] = 3, + [37564] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2897), 1, + ACTIONS(2162), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(2895), 44, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, + anon_sym_LBRACE, + ACTIONS(2160), 45, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -91276,8 +103697,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___read_mostly, anon_sym___must_hold, anon_sym___ro_after_init, - anon_sym___init, + anon_sym___noreturn, + anon_sym___cold, anon_sym___declspec, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, anon_sym_signed, anon_sym_unsigned, anon_sym_long, @@ -91306,18 +103734,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [33738] = 3, + [37619] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2881), 1, + ACTIONS(2150), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(2879), 44, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, + anon_sym_LBRACE, + ACTIONS(2148), 45, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -91326,8 +103749,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___read_mostly, anon_sym___must_hold, anon_sym___ro_after_init, - anon_sym___init, + anon_sym___noreturn, + anon_sym___cold, anon_sym___declspec, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, anon_sym_signed, anon_sym_unsigned, anon_sym_long, @@ -91356,18 +103786,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [33791] = 3, + [37674] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2893), 1, + ACTIONS(2588), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2891), 44, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, + STATE(517), 1, + sym_string_literal, + ACTIONS(3073), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(2586), 39, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -91376,7 +103808,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___read_mostly, anon_sym___must_hold, anon_sym___ro_after_init, - anon_sym___init, + anon_sym___noreturn, + anon_sym___cold, anon_sym___declspec, anon_sym_signed, anon_sym_unsigned, @@ -91406,73 +103839,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [33844] = 8, + [37732] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1749), 1, - anon_sym_EQ, - ACTIONS(1751), 1, - anon_sym_COLON, - STATE(456), 1, + ACTIONS(2588), 1, + anon_sym_LBRACK_LBRACK, + STATE(519), 1, sym_string_literal, - ACTIONS(101), 5, + ACTIONS(3073), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(1753), 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(1740), 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(1734), 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, - [33907] = 3, + ACTIONS(2586), 39, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___scanf, + anon_sym___printf, + anon_sym___read_mostly, + anon_sym___must_hold, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [37790] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2823), 1, + ACTIONS(2588), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2821), 44, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, + STATE(515), 1, + sym_string_literal, + ACTIONS(3073), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(2586), 39, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -91481,7 +103914,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___read_mostly, anon_sym___must_hold, anon_sym___ro_after_init, - anon_sym___init, + anon_sym___noreturn, + anon_sym___cold, anon_sym___declspec, anon_sym_signed, anon_sym_unsigned, @@ -91511,18 +103945,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [33960] = 3, + [37848] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2869), 2, + ACTIONS(2588), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2867), 43, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, + STATE(516), 1, + sym_string_literal, + ACTIONS(3073), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(2586), 39, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -91531,7 +103967,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___read_mostly, anon_sym___must_hold, anon_sym___ro_after_init, - anon_sym___init, + anon_sym___noreturn, + anon_sym___cold, anon_sym___declspec, anon_sym_signed, anon_sym_unsigned, @@ -91561,39 +103998,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [34013] = 7, + [37906] = 3, ACTIONS(3), 1, sym_comment, - STATE(761), 1, - sym_attribute_specifier, - ACTIONS(3001), 2, - anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(3004), 2, - anon_sym___scanf, - anon_sym___printf, - ACTIONS(3007), 3, - anon_sym___read_mostly, - anon_sym___ro_after_init, - anon_sym___init, - ACTIONS(2999), 6, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(3077), 3, anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2997), 31, + ACTIONS(3075), 43, anon_sym___extension__, anon_sym_extern, + anon_sym___attribute__, + anon_sym___scanf, + anon_sym___printf, + anon_sym___read_mostly, + anon_sym___must_hold, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, anon_sym___declspec, anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, + anon_sym___init, + anon_sym___exit, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, anon_sym_static, anon_sym_auto, @@ -91614,28 +104044,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_alignas, anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [34074] = 3, + [37960] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2889), 1, + ACTIONS(2390), 1, + anon_sym_LPAREN2, + ACTIONS(3044), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2887), 44, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym___extension__, - anon_sym_extern, + ACTIONS(3079), 1, + anon_sym_LBRACE, + ACTIONS(2388), 3, + anon_sym_LBRACK, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(3039), 9, anon_sym___attribute__, anon_sym___scanf, anon_sym___printf, anon_sym___read_mostly, anon_sym___must_hold, anon_sym___ro_after_init, - anon_sym___init, + anon_sym___noreturn, + anon_sym___cold, + sym_identifier, + ACTIONS(3042), 30, + anon_sym___extension__, + anon_sym_extern, anon_sym___declspec, anon_sym_signed, anon_sym_unsigned, @@ -91664,28 +104103,307 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_enum, anon_sym_struct, anon_sym_union, - sym_identifier, - [34127] = 3, + [38021] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1765), 1, + anon_sym_EQ, + ACTIONS(1771), 1, + anon_sym_COLON, + STATE(520), 1, + sym_string_literal, + ACTIONS(103), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(1769), 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(1756), 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(1750), 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, + [38084] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1765), 1, + anon_sym_EQ, + ACTIONS(1767), 1, + anon_sym_COLON, + STATE(520), 1, + sym_string_literal, + ACTIONS(103), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(1769), 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(1756), 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(1750), 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, + [38147] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1765), 1, + anon_sym_EQ, + ACTIONS(3081), 1, + anon_sym_COLON, + STATE(520), 1, + sym_string_literal, + ACTIONS(103), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(1769), 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(1756), 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(1750), 15, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [38210] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1765), 1, + anon_sym_EQ, + ACTIONS(1788), 1, + anon_sym_COLON, + STATE(520), 1, + sym_string_literal, + ACTIONS(103), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(1769), 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(1756), 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(1750), 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, + [38273] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1765), 1, + anon_sym_EQ, + ACTIONS(1786), 1, + anon_sym_COLON, + STATE(520), 1, + sym_string_literal, + ACTIONS(103), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(1769), 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(1756), 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(1750), 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, + [38336] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2885), 1, + ACTIONS(2370), 1, + anon_sym_LPAREN2, + ACTIONS(3036), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2883), 44, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym___extension__, - anon_sym_extern, + ACTIONS(3083), 1, + anon_sym_LBRACE, + ACTIONS(2368), 3, + anon_sym_LBRACK, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(3031), 9, anon_sym___attribute__, anon_sym___scanf, anon_sym___printf, anon_sym___read_mostly, anon_sym___must_hold, anon_sym___ro_after_init, - anon_sym___init, + anon_sym___noreturn, + anon_sym___cold, + sym_identifier, + ACTIONS(3034), 30, + anon_sym___extension__, + anon_sym_extern, anon_sym___declspec, anon_sym_signed, anon_sym_unsigned, @@ -91714,57 +104432,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_enum, anon_sym_struct, anon_sym_union, - sym_identifier, - [34180] = 20, + [38397] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1765), 1, + anon_sym_EQ, + ACTIONS(1784), 1, + anon_sym_COLON, + STATE(520), 1, + sym_string_literal, + ACTIONS(103), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(1769), 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(1756), 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(1750), 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, + [38460] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2395), 1, + ACTIONS(2486), 1, anon_sym_LPAREN2, - ACTIONS(2397), 1, + ACTIONS(2488), 1, anon_sym_LBRACK, - ACTIONS(3014), 1, + ACTIONS(3089), 1, anon_sym_PIPE_PIPE, - ACTIONS(3016), 1, + ACTIONS(3091), 1, anon_sym_AMP_AMP, - ACTIONS(3018), 1, + ACTIONS(3093), 1, anon_sym_PIPE, - ACTIONS(3020), 1, + ACTIONS(3095), 1, anon_sym_CARET, - ACTIONS(3022), 1, + ACTIONS(3097), 1, anon_sym_AMP, - ACTIONS(3032), 1, + ACTIONS(3107), 1, anon_sym_QMARK, - STATE(668), 1, + STATE(765), 1, sym_argument_list, - ACTIONS(2399), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2405), 2, + ACTIONS(2490), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2857), 2, + ACTIONS(2492), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2995), 2, aux_sym_preproc_elif_token1, anon_sym_EQ, - ACTIONS(3010), 2, + ACTIONS(3085), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3024), 2, + ACTIONS(3099), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3026), 2, + ACTIONS(3101), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3028), 2, + ACTIONS(3103), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3030), 2, + ACTIONS(3105), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3012), 3, + ACTIONS(3087), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2855), 16, + ACTIONS(2993), 16, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -91781,51 +104553,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, sym_identifier, - [34266] = 10, + [38546] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2395), 1, + ACTIONS(2486), 1, anon_sym_LPAREN2, - ACTIONS(2397), 1, + ACTIONS(2488), 1, anon_sym_LBRACK, - STATE(668), 1, + ACTIONS(3089), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3091), 1, + anon_sym_AMP_AMP, + ACTIONS(3093), 1, + anon_sym_PIPE, + ACTIONS(3095), 1, + anon_sym_CARET, + ACTIONS(3097), 1, + anon_sym_AMP, + ACTIONS(3107), 1, + anon_sym_QMARK, + STATE(765), 1, sym_argument_list, - ACTIONS(2399), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2405), 2, + ACTIONS(2490), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3010), 2, + ACTIONS(2492), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2989), 2, + aux_sym_preproc_elif_token1, + anon_sym_EQ, + ACTIONS(3085), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3012), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2401), 9, - aux_sym_preproc_elif_token1, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(3099), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3101), 2, anon_sym_GT, anon_sym_LT, + ACTIONS(3103), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3105), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(2403), 23, + ACTIONS(3087), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2979), 16, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -91837,40 +104619,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, sym_identifier, - [34332] = 11, + [38632] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2395), 1, + ACTIONS(2486), 1, anon_sym_LPAREN2, - ACTIONS(2397), 1, + ACTIONS(2488), 1, anon_sym_LBRACK, - STATE(668), 1, + STATE(765), 1, sym_argument_list, - ACTIONS(2399), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2405), 2, + ACTIONS(2490), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3010), 2, + ACTIONS(2492), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3085), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3030), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3012), 3, + ACTIONS(3087), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2401), 7, + ACTIONS(2546), 9, aux_sym_preproc_elif_token1, 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(2403), 23, + ACTIONS(2548), 23, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -91894,44 +104675,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, sym_identifier, - [34400] = 13, + [38698] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2395), 1, + ACTIONS(2486), 1, anon_sym_LPAREN2, - ACTIONS(2397), 1, + ACTIONS(2488), 1, anon_sym_LBRACK, - STATE(668), 1, + STATE(765), 1, sym_argument_list, - ACTIONS(2399), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2405), 2, + ACTIONS(2490), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3010), 2, + ACTIONS(2492), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3085), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3026), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3028), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3030), 2, + ACTIONS(3105), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3012), 3, + ACTIONS(3087), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2401), 5, + ACTIONS(2546), 7, aux_sym_preproc_elif_token1, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, anon_sym_EQ, - ACTIONS(2403), 21, + ACTIONS(2548), 23, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -91941,6 +104718,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -91953,47 +104732,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, sym_identifier, - [34472] = 14, + [38766] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2395), 1, + ACTIONS(2486), 1, anon_sym_LPAREN2, - ACTIONS(2397), 1, + ACTIONS(2488), 1, anon_sym_LBRACK, - STATE(668), 1, + STATE(765), 1, sym_argument_list, - ACTIONS(2399), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2405), 2, + ACTIONS(2490), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3010), 2, + ACTIONS(2492), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3085), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3024), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3026), 2, + ACTIONS(3101), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3028), 2, + ACTIONS(3103), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3030), 2, + ACTIONS(3105), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3012), 3, + ACTIONS(3087), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2401), 5, + ACTIONS(2546), 5, aux_sym_preproc_elif_token1, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_EQ, - ACTIONS(2403), 19, + ACTIONS(2548), 21, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -92001,6 +104777,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_elifdef_token2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -92013,56 +104791,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, sym_identifier, - [34546] = 20, + [38838] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3111), 3, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_LBRACK_LBRACK, + ACTIONS(3109), 41, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___scanf, + anon_sym___printf, + anon_sym___read_mostly, + anon_sym___must_hold, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [38890] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2395), 1, + ACTIONS(2486), 1, anon_sym_LPAREN2, - ACTIONS(2397), 1, + ACTIONS(2488), 1, anon_sym_LBRACK, - ACTIONS(3014), 1, + ACTIONS(3089), 1, anon_sym_PIPE_PIPE, - ACTIONS(3016), 1, + ACTIONS(3091), 1, anon_sym_AMP_AMP, - ACTIONS(3018), 1, + ACTIONS(3093), 1, anon_sym_PIPE, - ACTIONS(3020), 1, + ACTIONS(3095), 1, anon_sym_CARET, - ACTIONS(3022), 1, + ACTIONS(3097), 1, anon_sym_AMP, - ACTIONS(3032), 1, + ACTIONS(3107), 1, anon_sym_QMARK, - STATE(668), 1, + STATE(765), 1, sym_argument_list, - ACTIONS(2399), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2405), 2, + ACTIONS(2490), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2875), 2, + ACTIONS(2492), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2999), 2, aux_sym_preproc_elif_token1, anon_sym_EQ, - ACTIONS(3010), 2, + ACTIONS(3085), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3024), 2, + ACTIONS(3099), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3026), 2, + ACTIONS(3101), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3028), 2, + ACTIONS(3103), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3030), 2, + ACTIONS(3105), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3012), 3, + ACTIONS(3087), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2873), 16, + ACTIONS(2997), 16, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -92079,48 +104906,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, sym_identifier, - [34632] = 15, + [38976] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(2395), 1, + ACTIONS(2486), 1, anon_sym_LPAREN2, - ACTIONS(2397), 1, + ACTIONS(2488), 1, anon_sym_LBRACK, - ACTIONS(3022), 1, + ACTIONS(3095), 1, + anon_sym_CARET, + ACTIONS(3097), 1, anon_sym_AMP, - STATE(668), 1, + STATE(765), 1, sym_argument_list, - ACTIONS(2399), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2405), 2, + ACTIONS(2490), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3010), 2, + ACTIONS(2492), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3085), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3024), 2, + ACTIONS(3099), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3026), 2, + ACTIONS(3101), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3028), 2, + ACTIONS(3103), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3030), 2, + ACTIONS(3105), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3012), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2401), 4, + ACTIONS(2546), 3, aux_sym_preproc_elif_token1, anon_sym_PIPE, - anon_sym_CARET, anon_sym_EQ, - ACTIONS(2403), 19, + ACTIONS(3087), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2548), 19, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -92140,49 +104968,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, sym_identifier, - [34708] = 16, + [39054] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(2395), 1, + ACTIONS(2486), 1, anon_sym_LPAREN2, - ACTIONS(2397), 1, + ACTIONS(2488), 1, anon_sym_LBRACK, - ACTIONS(3020), 1, + ACTIONS(3093), 1, + anon_sym_PIPE, + ACTIONS(3095), 1, anon_sym_CARET, - ACTIONS(3022), 1, + ACTIONS(3097), 1, anon_sym_AMP, - STATE(668), 1, + STATE(765), 1, sym_argument_list, - ACTIONS(2399), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2405), 2, + ACTIONS(2490), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3010), 2, + ACTIONS(2492), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2546), 2, + aux_sym_preproc_elif_token1, + anon_sym_EQ, + ACTIONS(3085), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3024), 2, + ACTIONS(3099), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3026), 2, + ACTIONS(3101), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3028), 2, + ACTIONS(3103), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3030), 2, + ACTIONS(3105), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2401), 3, - aux_sym_preproc_elif_token1, - anon_sym_PIPE, - anon_sym_EQ, - ACTIONS(3012), 3, + ACTIONS(3087), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2403), 19, + ACTIONS(2548), 19, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -92202,50 +105031,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, sym_identifier, - [34786] = 17, + [39134] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(2395), 1, + ACTIONS(2486), 1, anon_sym_LPAREN2, - ACTIONS(2397), 1, + ACTIONS(2488), 1, anon_sym_LBRACK, - ACTIONS(3018), 1, - anon_sym_PIPE, - ACTIONS(3020), 1, - anon_sym_CARET, - ACTIONS(3022), 1, + ACTIONS(3097), 1, anon_sym_AMP, - STATE(668), 1, + STATE(765), 1, sym_argument_list, - ACTIONS(2399), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2401), 2, - aux_sym_preproc_elif_token1, - anon_sym_EQ, - ACTIONS(2405), 2, + ACTIONS(2490), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3010), 2, + ACTIONS(2492), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3085), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3024), 2, + ACTIONS(3099), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3026), 2, + ACTIONS(3101), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3028), 2, + ACTIONS(3103), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3030), 2, + ACTIONS(3105), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3012), 3, + ACTIONS(3087), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2403), 19, + ACTIONS(2546), 4, + aux_sym_preproc_elif_token1, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_EQ, + ACTIONS(2548), 19, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -92265,20 +105092,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, sym_identifier, - [34866] = 7, + [39210] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3034), 1, + ACTIONS(3113), 1, anon_sym_EQ, - STATE(456), 1, + STATE(520), 1, sym_string_literal, - ACTIONS(101), 5, + ACTIONS(103), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(3036), 10, + ACTIONS(3115), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -92289,7 +105116,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1740), 13, + ACTIONS(1756), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -92303,7 +105130,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(1734), 14, + ACTIONS(1750), 14, anon_sym_DOT_DOT_DOT, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, @@ -92318,58 +105145,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [34926] = 18, + [39270] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2395), 1, + ACTIONS(2486), 1, anon_sym_LPAREN2, - ACTIONS(2397), 1, + ACTIONS(2488), 1, anon_sym_LBRACK, - ACTIONS(3016), 1, - anon_sym_AMP_AMP, - ACTIONS(3018), 1, - anon_sym_PIPE, - ACTIONS(3020), 1, - anon_sym_CARET, - ACTIONS(3022), 1, - anon_sym_AMP, - STATE(668), 1, + STATE(765), 1, sym_argument_list, - ACTIONS(2399), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2401), 2, - aux_sym_preproc_elif_token1, - anon_sym_EQ, - ACTIONS(2405), 2, + ACTIONS(2490), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3010), 2, + ACTIONS(2492), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3085), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3024), 2, + ACTIONS(3099), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3026), 2, + ACTIONS(3101), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3028), 2, + ACTIONS(3103), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3030), 2, + ACTIONS(3105), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3012), 3, + ACTIONS(3087), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2403), 18, + ACTIONS(2546), 5, + aux_sym_preproc_elif_token1, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ, + ACTIONS(2548), 19, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -92382,26 +105205,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, sym_identifier, - [35008] = 9, + [39344] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2825), 1, + anon_sym_LPAREN2, + ACTIONS(3117), 1, + anon_sym_COMMA, + ACTIONS(3120), 1, + anon_sym_RPAREN, + STATE(885), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1770), 1, + aux_sym__old_style_parameter_list_repeat1, + ACTIONS(1761), 2, + anon_sym_STAR, + anon_sym_LBRACK_LBRACK, + ACTIONS(1763), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(1748), 33, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___scanf, + anon_sym___printf, + anon_sym___read_mostly, + anon_sym___must_hold, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + [39408] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2395), 1, + ACTIONS(2486), 1, anon_sym_LPAREN2, - ACTIONS(2397), 1, + ACTIONS(2488), 1, anon_sym_LBRACK, - STATE(668), 1, + STATE(765), 1, sym_argument_list, - ACTIONS(2399), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2405), 2, + ACTIONS(2490), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3012), 3, + ACTIONS(2492), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3087), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2401), 11, + ACTIONS(2546), 11, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -92413,7 +105291,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2403), 23, + ACTIONS(2548), 23, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -92437,61 +105315,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, sym_identifier, - [35072] = 20, + [39472] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2395), 1, + ACTIONS(2486), 1, anon_sym_LPAREN2, - ACTIONS(2397), 1, + ACTIONS(2488), 1, anon_sym_LBRACK, - ACTIONS(3014), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3016), 1, + ACTIONS(3091), 1, anon_sym_AMP_AMP, - ACTIONS(3018), 1, + ACTIONS(3093), 1, anon_sym_PIPE, - ACTIONS(3020), 1, + ACTIONS(3095), 1, anon_sym_CARET, - ACTIONS(3022), 1, + ACTIONS(3097), 1, anon_sym_AMP, - ACTIONS(3032), 1, - anon_sym_QMARK, - STATE(668), 1, + STATE(765), 1, sym_argument_list, - ACTIONS(2399), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2405), 2, + ACTIONS(2490), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2851), 2, + ACTIONS(2492), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2546), 2, aux_sym_preproc_elif_token1, anon_sym_EQ, - ACTIONS(3010), 2, + ACTIONS(3085), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3024), 2, + ACTIONS(3099), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3026), 2, + ACTIONS(3101), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3028), 2, + ACTIONS(3103), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3030), 2, + ACTIONS(3105), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3012), 3, + ACTIONS(3087), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2847), 16, + ACTIONS(2548), 18, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, + anon_sym_PIPE_PIPE, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + sym_identifier, + [39554] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3014), 1, + anon_sym_EQ, + ACTIONS(3016), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -92502,15 +105395,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + ACTIONS(1756), 13, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1750), 19, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, sym_identifier, - [35158] = 3, + [39609] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3040), 3, + ACTIONS(3126), 1, anon_sym_LPAREN2, + ACTIONS(3130), 1, + anon_sym_LBRACK, + STATE(885), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(1761), 2, + anon_sym_COMMA, anon_sym_STAR, + ACTIONS(3123), 2, + anon_sym_RPAREN, anon_sym_LBRACK_LBRACK, - ACTIONS(3038), 40, + ACTIONS(1763), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(1748), 32, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -92519,14 +105458,379 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___read_mostly, anon_sym___must_hold, anon_sym___ro_after_init, - anon_sym___init, + anon_sym___noreturn, + anon_sym___cold, + anon_sym___declspec, + anon_sym___based, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + [39670] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2825), 1, + anon_sym_LPAREN2, + STATE(885), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(1761), 2, + anon_sym_STAR, + anon_sym_LBRACK_LBRACK, + ACTIONS(3133), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(1763), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(1748), 33, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___scanf, + anon_sym___printf, + anon_sym___read_mostly, + anon_sym___must_hold, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, anon_sym___declspec, anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + [39729] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1835), 1, + anon_sym___based, + ACTIONS(1873), 1, + anon_sym_LPAREN2, + ACTIONS(1875), 1, + anon_sym_STAR, + ACTIONS(3136), 1, + sym_identifier, + ACTIONS(3144), 1, + anon_sym_LBRACK, + STATE(799), 1, + sym_alignas_qualifier, + STATE(1149), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1465), 1, + sym__declarator, + STATE(1657), 1, + sym__abstract_declarator, + STATE(1691), 1, + sym_parameter_list, + STATE(2174), 1, + sym_ms_based_modifier, + ACTIONS(55), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(3138), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(3142), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(1094), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(1121), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(3140), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(1717), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + STATE(1569), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + ACTIONS(53), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [39815] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3123), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3126), 1, + anon_sym_LPAREN2, + ACTIONS(3146), 1, + anon_sym_LBRACK, + STATE(885), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(1761), 2, + anon_sym_STAR, + anon_sym_SEMI, + ACTIONS(1763), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + ACTIONS(1748), 32, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___scanf, + anon_sym___printf, + anon_sym___read_mostly, + anon_sym___must_hold, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + anon_sym___declspec, + anon_sym___based, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + [39875] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1835), 1, + anon_sym___based, + ACTIONS(1873), 1, + anon_sym_LPAREN2, + ACTIONS(1875), 1, + anon_sym_STAR, + ACTIONS(3136), 1, + sym_identifier, + ACTIONS(3144), 1, anon_sym_LBRACK, + STATE(799), 1, + sym_alignas_qualifier, + STATE(1149), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1464), 1, + sym__declarator, + STATE(1638), 1, + sym__abstract_declarator, + STATE(1691), 1, + sym_parameter_list, + STATE(2174), 1, + sym_ms_based_modifier, + ACTIONS(55), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(3142), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(3148), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(1000), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(1093), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3140), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(1717), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + STATE(1569), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + ACTIONS(53), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [39961] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1167), 2, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + ACTIONS(1165), 39, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___scanf, + anon_sym___printf, + anon_sym___read_mostly, + anon_sym___must_hold, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [40010] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1163), 2, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + ACTIONS(1161), 39, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___scanf, + anon_sym___printf, + anon_sym___read_mostly, + anon_sym___must_hold, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [40059] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2544), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3150), 1, + anon_sym_typedef, + ACTIONS(2542), 39, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___scanf, + anon_sym___printf, + anon_sym___read_mostly, + anon_sym___must_hold, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -92551,78 +105855,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [35209] = 5, + [40110] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2907), 1, - anon_sym_EQ, - ACTIONS(2909), 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(1740), 13, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1734), 19, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - sym_identifier, - [35264] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2800), 1, - anon_sym_LPAREN2, - ACTIONS(3042), 1, - anon_sym_COMMA, - ACTIONS(3045), 1, - anon_sym_RPAREN, - STATE(781), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1566), 1, - aux_sym__old_style_parameter_list_repeat1, - ACTIONS(1745), 2, - anon_sym_STAR, + ACTIONS(1195), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(1747), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(1732), 32, + anon_sym_LBRACE, + ACTIONS(1193), 39, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -92631,10 +105870,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___read_mostly, anon_sym___must_hold, anon_sym___ro_after_init, - anon_sym___init, + anon_sym___noreturn, + anon_sym___cold, anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -92654,64 +105896,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_alignas, anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [35327] = 21, + [40159] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1793), 1, - anon_sym_LPAREN2, - ACTIONS(1795), 1, - anon_sym_STAR, - ACTIONS(1797), 1, - anon_sym___based, - ACTIONS(3048), 1, - sym_identifier, - ACTIONS(3056), 1, - anon_sym_LBRACK, - STATE(703), 1, - sym_alignas_qualifier, - STATE(1024), 1, - sym_ms_unaligned_ptr_modifier, - STATE(1333), 1, - sym__declarator, - STATE(1480), 1, - sym__abstract_declarator, - STATE(1509), 1, - sym_parameter_list, - STATE(2016), 1, - sym_ms_based_modifier, - ACTIONS(53), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(3050), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(3054), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(968), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(996), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - ACTIONS(3052), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(1504), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - STATE(1387), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - ACTIONS(51), 9, + ACTIONS(1195), 2, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + ACTIONS(1193), 39, anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___scanf, + anon_sym___printf, + anon_sym___read_mostly, + anon_sym___must_hold, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -92720,63 +105940,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [35413] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1793), 1, - anon_sym_LPAREN2, - ACTIONS(1795), 1, - anon_sym_STAR, - ACTIONS(1797), 1, - anon_sym___based, - ACTIONS(3048), 1, - sym_identifier, - ACTIONS(3056), 1, - anon_sym_LBRACK, - STATE(703), 1, - sym_alignas_qualifier, - STATE(1024), 1, - sym_ms_unaligned_ptr_modifier, - STATE(1331), 1, - sym__declarator, - STATE(1466), 1, - sym__abstract_declarator, - STATE(1509), 1, - sym_parameter_list, - STATE(2016), 1, - sym_ms_based_modifier, - ACTIONS(53), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(3054), 2, - anon_sym__unaligned, - anon_sym___unaligned, - ACTIONS(3058), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(892), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(972), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3052), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(1504), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - STATE(1387), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - ACTIONS(51), 9, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [40208] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1167), 2, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + ACTIONS(1165), 39, anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___scanf, + anon_sym___printf, + anon_sym___read_mostly, + anon_sym___must_hold, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -92785,25 +105986,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [35499] = 7, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [40257] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2800), 1, - anon_sym_LPAREN2, - STATE(781), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(1745), 2, - anon_sym_STAR, + ACTIONS(1163), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(3060), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(1747), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(1732), 32, + anon_sym_LBRACE, + ACTIONS(1161), 39, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -92812,10 +106008,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___read_mostly, anon_sym___must_hold, anon_sym___ro_after_init, - anon_sym___init, + anon_sym___noreturn, + anon_sym___cold, anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -92835,28 +106034,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_alignas, anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [35557] = 8, + [40306] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3066), 1, - anon_sym_LPAREN2, - ACTIONS(3070), 1, - anon_sym_LBRACK, - STATE(781), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(1745), 2, - anon_sym_COMMA, - anon_sym_STAR, - ACTIONS(3063), 2, - anon_sym_RPAREN, + ACTIONS(3154), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(1747), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(1732), 31, + anon_sym_LBRACE, + ACTIONS(3152), 39, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -92865,9 +106054,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___read_mostly, anon_sym___must_hold, anon_sym___ro_after_init, - anon_sym___init, + anon_sym___noreturn, + anon_sym___cold, anon_sym___declspec, - anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -92887,14 +106080,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_alignas, anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [35617] = 3, + [40355] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1187), 2, + ACTIONS(2544), 1, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(1185), 38, + ACTIONS(3156), 1, + anon_sym_typedef, + ACTIONS(2542), 39, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -92903,7 +106101,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___read_mostly, anon_sym___must_hold, anon_sym___ro_after_init, - anon_sym___init, + anon_sym___noreturn, + anon_sym___cold, anon_sym___declspec, anon_sym_signed, anon_sym_unsigned, @@ -92933,13 +106132,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [35665] = 3, + [40406] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3075), 2, + ACTIONS(3083), 2, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - ACTIONS(3073), 38, + ACTIONS(3034), 39, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -92948,7 +106147,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___read_mostly, anon_sym___must_hold, anon_sym___ro_after_init, - anon_sym___init, + anon_sym___noreturn, + anon_sym___cold, anon_sym___declspec, anon_sym_signed, anon_sym_unsigned, @@ -92978,13 +106178,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [35713] = 3, + [40455] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1175), 2, + ACTIONS(1227), 2, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - ACTIONS(1173), 38, + ACTIONS(1225), 39, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -92993,7 +106193,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___read_mostly, anon_sym___must_hold, anon_sym___ro_after_init, - anon_sym___init, + anon_sym___noreturn, + anon_sym___cold, anon_sym___declspec, anon_sym_signed, anon_sym_unsigned, @@ -93023,14 +106224,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [35761] = 4, + [40504] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2469), 1, + ACTIONS(1167), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(3077), 1, - anon_sym_typedef, - ACTIONS(2467), 38, + anon_sym_LBRACE, + ACTIONS(1165), 39, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -93039,7 +106239,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___read_mostly, anon_sym___must_hold, anon_sym___ro_after_init, - anon_sym___init, + anon_sym___noreturn, + anon_sym___cold, anon_sym___declspec, anon_sym_signed, anon_sym_unsigned, @@ -93069,13 +106270,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [35811] = 3, + [40553] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1171), 2, + ACTIONS(1227), 2, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - ACTIONS(1169), 38, + ACTIONS(1225), 39, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -93084,7 +106285,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___read_mostly, anon_sym___must_hold, anon_sym___ro_after_init, - anon_sym___init, + anon_sym___noreturn, + anon_sym___cold, anon_sym___declspec, anon_sym_signed, anon_sym_unsigned, @@ -93114,13 +106316,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [35859] = 3, + [40602] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1171), 2, + ACTIONS(1199), 2, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - ACTIONS(1169), 38, + ACTIONS(1197), 39, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -93129,7 +106331,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___read_mostly, anon_sym___must_hold, anon_sym___ro_after_init, - anon_sym___init, + anon_sym___noreturn, + anon_sym___cold, anon_sym___declspec, anon_sym_signed, anon_sym_unsigned, @@ -93159,13 +106362,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [35907] = 3, + [40651] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1159), 2, + ACTIONS(2544), 1, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(1157), 38, + ACTIONS(3158), 1, + anon_sym_typedef, + ACTIONS(2542), 39, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -93174,7 +106378,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___read_mostly, anon_sym___must_hold, anon_sym___ro_after_init, - anon_sym___init, + anon_sym___noreturn, + anon_sym___cold, anon_sym___declspec, anon_sym_signed, anon_sym_unsigned, @@ -93204,13 +106409,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [35955] = 3, + [40702] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1183), 2, + ACTIONS(2544), 1, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(1181), 38, + ACTIONS(3160), 1, + anon_sym_typedef, + ACTIONS(2542), 39, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -93219,7 +106425,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___read_mostly, anon_sym___must_hold, anon_sym___ro_after_init, - anon_sym___init, + anon_sym___noreturn, + anon_sym___cold, anon_sym___declspec, anon_sym_signed, anon_sym_unsigned, @@ -93249,13 +106456,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [36003] = 3, + [40753] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3079), 2, + ACTIONS(1199), 2, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - ACTIONS(2960), 38, + ACTIONS(1197), 39, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -93264,7 +106471,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___read_mostly, anon_sym___must_hold, anon_sym___ro_after_init, - anon_sym___init, + anon_sym___noreturn, + anon_sym___cold, anon_sym___declspec, anon_sym_signed, anon_sym_unsigned, @@ -93294,14 +106502,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [36051] = 4, + [40802] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2469), 1, + ACTIONS(1163), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(3081), 1, - anon_sym_typedef, - ACTIONS(2467), 38, + anon_sym_LBRACE, + ACTIONS(1161), 39, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -93310,7 +106517,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___read_mostly, anon_sym___must_hold, anon_sym___ro_after_init, - anon_sym___init, + anon_sym___noreturn, + anon_sym___cold, anon_sym___declspec, anon_sym_signed, anon_sym_unsigned, @@ -93340,14 +106548,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [36101] = 4, + [40851] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2469), 1, + ACTIONS(3164), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(3083), 1, - anon_sym_typedef, - ACTIONS(2467), 38, + anon_sym_LBRACE, + ACTIONS(3162), 39, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -93356,7 +106563,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___read_mostly, anon_sym___must_hold, anon_sym___ro_after_init, - anon_sym___init, + anon_sym___noreturn, + anon_sym___cold, anon_sym___declspec, anon_sym_signed, anon_sym_unsigned, @@ -93386,13 +106594,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [36151] = 3, + [40900] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1183), 2, + ACTIONS(1155), 2, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - ACTIONS(1181), 38, + ACTIONS(1153), 39, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -93401,7 +106609,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___read_mostly, anon_sym___must_hold, anon_sym___ro_after_init, - anon_sym___init, + anon_sym___noreturn, + anon_sym___cold, anon_sym___declspec, anon_sym_signed, anon_sym_unsigned, @@ -93431,13 +106640,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [36199] = 3, + [40949] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1247), 2, + ACTIONS(1255), 2, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - ACTIONS(1245), 38, + ACTIONS(1253), 39, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -93446,7 +106655,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___read_mostly, anon_sym___must_hold, anon_sym___ro_after_init, - anon_sym___init, + anon_sym___noreturn, + anon_sym___cold, anon_sym___declspec, anon_sym_signed, anon_sym_unsigned, @@ -93476,13 +106686,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [36247] = 3, + [40998] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1247), 2, + ACTIONS(1155), 2, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - ACTIONS(1245), 38, + ACTIONS(1153), 39, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -93491,7 +106701,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___read_mostly, anon_sym___must_hold, anon_sym___ro_after_init, - anon_sym___init, + anon_sym___noreturn, + anon_sym___cold, anon_sym___declspec, anon_sym_signed, anon_sym_unsigned, @@ -93521,13 +106732,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [36295] = 3, + [41047] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1187), 2, + ACTIONS(1155), 2, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - ACTIONS(1185), 38, + ACTIONS(1153), 39, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -93536,7 +106747,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___read_mostly, anon_sym___must_hold, anon_sym___ro_after_init, - anon_sym___init, + anon_sym___noreturn, + anon_sym___cold, anon_sym___declspec, anon_sym_signed, anon_sym_unsigned, @@ -93566,14 +106778,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [36343] = 4, + [41096] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2469), 1, + ACTIONS(1275), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(3085), 1, - anon_sym_typedef, - ACTIONS(2467), 38, + anon_sym_LBRACE, + ACTIONS(1273), 39, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -93582,7 +106793,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___read_mostly, anon_sym___must_hold, anon_sym___ro_after_init, - anon_sym___init, + anon_sym___noreturn, + anon_sym___cold, anon_sym___declspec, anon_sym_signed, anon_sym_unsigned, @@ -93612,13 +106824,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [36393] = 3, + [41145] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3089), 2, + ACTIONS(1199), 2, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - ACTIONS(3087), 38, + ACTIONS(1197), 39, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -93627,7 +106839,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___read_mostly, anon_sym___must_hold, anon_sym___ro_after_init, - anon_sym___init, + anon_sym___noreturn, + anon_sym___cold, anon_sym___declspec, anon_sym_signed, anon_sym_unsigned, @@ -93657,54 +106870,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [36441] = 17, + [41194] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2397), 1, + ACTIONS(2488), 1, anon_sym_LBRACK, - ACTIONS(2399), 1, + ACTIONS(2492), 1, anon_sym_DASH_GT, - ACTIONS(3091), 1, + ACTIONS(2989), 1, + anon_sym_EQ, + ACTIONS(3166), 1, anon_sym_LPAREN2, - ACTIONS(3097), 1, + ACTIONS(3172), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3174), 1, + anon_sym_AMP_AMP, + ACTIONS(3176), 1, + anon_sym_PIPE, + ACTIONS(3178), 1, anon_sym_CARET, - ACTIONS(3099), 1, + ACTIONS(3180), 1, anon_sym_AMP, - ACTIONS(3109), 1, + ACTIONS(3190), 1, + anon_sym_QMARK, + ACTIONS(3192), 1, anon_sym_DOT, - STATE(668), 1, + STATE(765), 1, sym_argument_list, - ACTIONS(2401), 2, - anon_sym_PIPE, - anon_sym_EQ, - ACTIONS(2405), 2, + ACTIONS(2490), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3093), 2, + ACTIONS(3168), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3101), 2, + ACTIONS(3182), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3103), 2, + ACTIONS(3184), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3105), 2, + ACTIONS(3186), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3107), 2, + ACTIONS(3188), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3095), 3, + ACTIONS(3170), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2403), 15, + ACTIONS(2979), 12, anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_RBRACK, - anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -93715,107 +106932,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [36516] = 16, + [41277] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2397), 1, - anon_sym_LBRACK, - ACTIONS(2399), 1, - anon_sym_DASH_GT, - ACTIONS(3091), 1, + ACTIONS(2486), 1, anon_sym_LPAREN2, - ACTIONS(3099), 1, + ACTIONS(2488), 1, + anon_sym_LBRACK, + ACTIONS(3198), 1, + anon_sym_SLASH, + ACTIONS(3200), 1, + anon_sym_AMP_AMP, + ACTIONS(3202), 1, + anon_sym_PIPE, + ACTIONS(3204), 1, + anon_sym_CARET, + ACTIONS(3206), 1, anon_sym_AMP, - ACTIONS(3109), 1, - anon_sym_DOT, - STATE(668), 1, + STATE(765), 1, sym_argument_list, - ACTIONS(2405), 2, + ACTIONS(2490), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3093), 2, + ACTIONS(2492), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3194), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3101), 2, + ACTIONS(3196), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3208), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3103), 2, + ACTIONS(3210), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3105), 2, + ACTIONS(3212), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3107), 2, + ACTIONS(3214), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2401), 3, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_EQ, - ACTIONS(3095), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2403), 15, - anon_sym_DOT_DOT_DOT, + ACTIONS(2548), 15, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym___scanf, + anon_sym___printf, + anon_sym___read_mostly, + anon_sym___must_hold, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + 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, - [36589] = 15, + [41354] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2397), 1, + ACTIONS(2488), 1, anon_sym_LBRACK, - ACTIONS(2399), 1, + ACTIONS(2492), 1, anon_sym_DASH_GT, - ACTIONS(3091), 1, + ACTIONS(3166), 1, anon_sym_LPAREN2, - ACTIONS(3109), 1, + ACTIONS(3192), 1, anon_sym_DOT, - STATE(668), 1, + STATE(765), 1, sym_argument_list, - ACTIONS(2405), 2, + ACTIONS(2490), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3093), 2, + ACTIONS(2546), 13, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3101), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3103), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3105), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3107), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3095), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2401), 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(2403), 15, + ACTIONS(2548), 19, anon_sym_DOT_DOT_DOT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -93828,94 +107041,230 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [36660] = 9, + [41413] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2397), 1, - anon_sym_LBRACK, - ACTIONS(2399), 1, - anon_sym_DASH_GT, - ACTIONS(3091), 1, + ACTIONS(2486), 1, anon_sym_LPAREN2, - ACTIONS(3109), 1, - anon_sym_DOT, - STATE(668), 1, + ACTIONS(2488), 1, + anon_sym_LBRACK, + ACTIONS(3198), 1, + anon_sym_SLASH, + ACTIONS(3200), 1, + anon_sym_AMP_AMP, + ACTIONS(3202), 1, + anon_sym_PIPE, + ACTIONS(3204), 1, + anon_sym_CARET, + ACTIONS(3206), 1, + anon_sym_AMP, + ACTIONS(3216), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3218), 1, + anon_sym_QMARK, + STATE(765), 1, sym_argument_list, - ACTIONS(2405), 2, + ACTIONS(2490), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2401), 13, + ACTIONS(2492), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3194), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(3196), 2, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(3208), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3210), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3212), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3214), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2997), 13, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym___scanf, + anon_sym___printf, + anon_sym___read_mostly, + anon_sym___must_hold, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + anon_sym_RBRACE, + anon_sym_COLON, + [41494] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2486), 1, + anon_sym_LPAREN2, + ACTIONS(2488), 1, + anon_sym_LBRACK, + ACTIONS(3198), 1, + anon_sym_SLASH, + ACTIONS(3200), 1, + anon_sym_AMP_AMP, + ACTIONS(3202), 1, anon_sym_PIPE, + ACTIONS(3204), 1, anon_sym_CARET, + ACTIONS(3206), 1, anon_sym_AMP, + ACTIONS(3216), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3218), 1, + anon_sym_QMARK, + STATE(765), 1, + sym_argument_list, + ACTIONS(2490), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2492), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3194), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3196), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3208), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3210), 2, anon_sym_GT, anon_sym_LT, + ACTIONS(3212), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3214), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(2403), 19, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(2979), 13, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym___scanf, + anon_sym___printf, + anon_sym___read_mostly, + anon_sym___must_hold, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + anon_sym_RBRACE, + anon_sym_COLON, + [41575] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2486), 1, + anon_sym_LPAREN2, + ACTIONS(2488), 1, + anon_sym_LBRACK, + ACTIONS(2546), 1, + anon_sym_PIPE, + ACTIONS(3198), 1, + anon_sym_SLASH, + ACTIONS(3204), 1, + anon_sym_CARET, + ACTIONS(3206), 1, + anon_sym_AMP, + STATE(765), 1, + sym_argument_list, + ACTIONS(2490), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2492), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3194), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3196), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3208), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(3210), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3212), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_RBRACK, + ACTIONS(3214), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2548), 16, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym___scanf, + anon_sym___printf, + anon_sym___read_mostly, + anon_sym___must_hold, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + 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, - [36719] = 9, + [41650] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(2397), 1, + ACTIONS(2488), 1, anon_sym_LBRACK, - ACTIONS(2399), 1, + ACTIONS(2492), 1, anon_sym_DASH_GT, - ACTIONS(3091), 1, + ACTIONS(3166), 1, anon_sym_LPAREN2, - ACTIONS(3109), 1, + ACTIONS(3192), 1, anon_sym_DOT, - STATE(668), 1, + STATE(765), 1, sym_argument_list, - ACTIONS(2405), 2, + ACTIONS(2490), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2407), 13, + ACTIONS(3168), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(3182), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3184), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3186), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3188), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3170), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(2546), 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(2409), 19, + ACTIONS(2548), 15, anon_sym_DOT_DOT_DOT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -93928,44 +107277,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [36778] = 9, + [41721] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2397), 1, + ACTIONS(2488), 1, anon_sym_LBRACK, - ACTIONS(2399), 1, + ACTIONS(2492), 1, anon_sym_DASH_GT, - ACTIONS(3091), 1, + ACTIONS(2546), 1, + anon_sym_EQ, + ACTIONS(3166), 1, anon_sym_LPAREN2, - ACTIONS(3109), 1, + ACTIONS(3176), 1, + anon_sym_PIPE, + ACTIONS(3178), 1, + anon_sym_CARET, + ACTIONS(3180), 1, + anon_sym_AMP, + ACTIONS(3192), 1, anon_sym_DOT, - STATE(668), 1, + STATE(765), 1, sym_argument_list, - ACTIONS(2405), 2, + ACTIONS(2490), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2423), 13, + ACTIONS(3168), 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(3182), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3184), 2, anon_sym_GT, anon_sym_LT, + ACTIONS(3186), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3188), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(2425), 19, + ACTIONS(3170), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2548), 15, anon_sym_DOT_DOT_DOT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -93978,58 +107336,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [36837] = 21, + [41798] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(2397), 1, + ACTIONS(2488), 1, anon_sym_LBRACK, - ACTIONS(2399), 1, + ACTIONS(2492), 1, anon_sym_DASH_GT, - ACTIONS(2875), 1, + ACTIONS(2546), 1, anon_sym_EQ, - ACTIONS(3091), 1, + ACTIONS(3166), 1, anon_sym_LPAREN2, - ACTIONS(3097), 1, + ACTIONS(3174), 1, + anon_sym_AMP_AMP, + ACTIONS(3176), 1, + anon_sym_PIPE, + ACTIONS(3178), 1, anon_sym_CARET, - ACTIONS(3099), 1, + ACTIONS(3180), 1, anon_sym_AMP, - ACTIONS(3109), 1, + ACTIONS(3192), 1, anon_sym_DOT, - ACTIONS(3111), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3113), 1, - anon_sym_AMP_AMP, - ACTIONS(3115), 1, - anon_sym_PIPE, - ACTIONS(3117), 1, - anon_sym_QMARK, - STATE(668), 1, + STATE(765), 1, sym_argument_list, - ACTIONS(2405), 2, + ACTIONS(2490), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3093), 2, + ACTIONS(3168), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3101), 2, + ACTIONS(3182), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3103), 2, + ACTIONS(3184), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3105), 2, + ACTIONS(3186), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3107), 2, + ACTIONS(3188), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3095), 3, + ACTIONS(3170), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2873), 12, + ACTIONS(2548), 14, anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, anon_sym_RBRACK, + anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -94040,23 +107396,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [36920] = 9, + [41877] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2397), 1, + ACTIONS(2488), 1, anon_sym_LBRACK, - ACTIONS(2399), 1, + ACTIONS(2492), 1, anon_sym_DASH_GT, - ACTIONS(3091), 1, + ACTIONS(3166), 1, anon_sym_LPAREN2, - ACTIONS(3109), 1, + ACTIONS(3192), 1, anon_sym_DOT, - STATE(668), 1, + STATE(765), 1, sym_argument_list, - ACTIONS(2405), 2, + ACTIONS(2490), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2415), 13, + ACTIONS(2502), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -94070,7 +107426,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2417), 19, + ACTIONS(2504), 19, anon_sym_DOT_DOT_DOT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -94090,49 +107446,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [36979] = 14, + [41936] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(2397), 1, + ACTIONS(2488), 1, anon_sym_LBRACK, - ACTIONS(2399), 1, + ACTIONS(2492), 1, anon_sym_DASH_GT, - ACTIONS(3091), 1, + ACTIONS(3166), 1, anon_sym_LPAREN2, - ACTIONS(3109), 1, + ACTIONS(3180), 1, + anon_sym_AMP, + ACTIONS(3192), 1, anon_sym_DOT, - STATE(668), 1, + STATE(765), 1, sym_argument_list, - ACTIONS(2405), 2, + ACTIONS(2490), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3093), 2, + ACTIONS(3168), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3103), 2, + ACTIONS(3182), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3184), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3105), 2, + ACTIONS(3186), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3107), 2, + ACTIONS(3188), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3095), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2401), 4, + ACTIONS(2546), 3, anon_sym_PIPE, anon_sym_CARET, - anon_sym_AMP, anon_sym_EQ, - ACTIONS(2403), 17, + ACTIONS(3170), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2548), 15, anon_sym_DOT_DOT_DOT, 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, @@ -94145,40 +107503,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [37048] = 12, + [42009] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(2397), 1, - anon_sym_LBRACK, - ACTIONS(2399), 1, - anon_sym_DASH_GT, - ACTIONS(3091), 1, + ACTIONS(2486), 1, anon_sym_LPAREN2, - ACTIONS(3109), 1, - anon_sym_DOT, - STATE(668), 1, + ACTIONS(2488), 1, + anon_sym_LBRACK, + ACTIONS(3198), 1, + anon_sym_SLASH, + ACTIONS(3202), 1, + anon_sym_PIPE, + ACTIONS(3204), 1, + anon_sym_CARET, + ACTIONS(3206), 1, + anon_sym_AMP, + STATE(765), 1, sym_argument_list, - ACTIONS(2405), 2, + ACTIONS(2490), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3093), 2, + ACTIONS(2492), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3194), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3107), 2, + ACTIONS(3196), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3208), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3210), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3212), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3214), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3095), 3, + ACTIONS(2548), 16, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym___scanf, + anon_sym___printf, + anon_sym___read_mostly, + anon_sym___must_hold, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_QMARK, + [42084] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2488), 1, + anon_sym_LBRACK, + ACTIONS(2492), 1, + anon_sym_DASH_GT, + ACTIONS(3166), 1, + anon_sym_LPAREN2, + ACTIONS(3192), 1, + anon_sym_DOT, + STATE(765), 1, + sym_argument_list, + ACTIONS(2490), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3170), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2401), 6, + ACTIONS(2546), 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(2403), 19, + ACTIONS(2548), 19, anon_sym_DOT_DOT_DOT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -94198,110 +107612,167 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [37113] = 11, + [42145] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(2397), 1, - anon_sym_LBRACK, - ACTIONS(2399), 1, - anon_sym_DASH_GT, - ACTIONS(3091), 1, + ACTIONS(2486), 1, anon_sym_LPAREN2, - ACTIONS(3109), 1, - anon_sym_DOT, - STATE(668), 1, + ACTIONS(2488), 1, + anon_sym_LBRACK, + ACTIONS(3198), 1, + anon_sym_SLASH, + STATE(765), 1, sym_argument_list, - ACTIONS(2405), 2, + ACTIONS(2490), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3093), 2, + ACTIONS(2492), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2546), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(3194), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3095), 3, + ACTIONS(3196), 2, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2401), 8, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(3208), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3210), 2, anon_sym_GT, anon_sym_LT, + ACTIONS(3212), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3214), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(2403), 19, - anon_sym_DOT_DOT_DOT, + ACTIONS(2548), 17, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym___scanf, + anon_sym___printf, + anon_sym___read_mostly, + anon_sym___must_hold, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_QMARK, + [42216] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2486), 1, + anon_sym_LPAREN2, + ACTIONS(2488), 1, + anon_sym_LBRACK, + ACTIONS(2546), 1, + anon_sym_PIPE, + ACTIONS(3198), 1, + anon_sym_SLASH, + ACTIONS(3206), 1, + anon_sym_AMP, + STATE(765), 1, + sym_argument_list, + ACTIONS(2490), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2492), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3194), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3196), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3208), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(3210), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3212), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_RBRACK, + ACTIONS(3214), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2548), 17, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym___scanf, + anon_sym___printf, + anon_sym___read_mostly, + anon_sym___must_hold, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + 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, - [37176] = 21, + [42289] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(2397), 1, + ACTIONS(2488), 1, anon_sym_LBRACK, - ACTIONS(2399), 1, + ACTIONS(2492), 1, anon_sym_DASH_GT, - ACTIONS(2851), 1, - anon_sym_EQ, - ACTIONS(3091), 1, + ACTIONS(3166), 1, anon_sym_LPAREN2, - ACTIONS(3097), 1, + ACTIONS(3178), 1, anon_sym_CARET, - ACTIONS(3099), 1, + ACTIONS(3180), 1, anon_sym_AMP, - ACTIONS(3109), 1, + ACTIONS(3192), 1, anon_sym_DOT, - ACTIONS(3111), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3113), 1, - anon_sym_AMP_AMP, - ACTIONS(3115), 1, - anon_sym_PIPE, - ACTIONS(3117), 1, - anon_sym_QMARK, - STATE(668), 1, + STATE(765), 1, sym_argument_list, - ACTIONS(2405), 2, + ACTIONS(2490), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3093), 2, + ACTIONS(2546), 2, + anon_sym_PIPE, + anon_sym_EQ, + ACTIONS(3168), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3101), 2, + ACTIONS(3182), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3103), 2, + ACTIONS(3184), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3105), 2, + ACTIONS(3186), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3107), 2, + ACTIONS(3188), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3095), 3, + ACTIONS(3170), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2847), 12, + ACTIONS(2548), 15, anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_RBRACK, + anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -94312,41 +107783,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [37259] = 8, + [42364] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2397), 1, + ACTIONS(2488), 1, anon_sym_LBRACK, - ACTIONS(2399), 1, + ACTIONS(2492), 1, anon_sym_DASH_GT, - ACTIONS(3091), 1, + ACTIONS(3166), 1, anon_sym_LPAREN2, - ACTIONS(3109), 1, + ACTIONS(3192), 1, anon_sym_DOT, - STATE(668), 1, + STATE(765), 1, sym_argument_list, - ACTIONS(2391), 13, + ACTIONS(2490), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3168), 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(3184), 2, anon_sym_GT, anon_sym_LT, + ACTIONS(3186), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3188), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(3170), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2546), 4, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_EQ, - ACTIONS(2393), 21, + ACTIONS(2548), 17, anon_sym_DOT_DOT_DOT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -94359,31 +107838,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + [42433] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2486), 1, + anon_sym_LPAREN2, + ACTIONS(2488), 1, + anon_sym_LBRACK, + ACTIONS(3198), 1, + anon_sym_SLASH, + STATE(765), 1, + sym_argument_list, + ACTIONS(2490), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - [37316] = 10, + ACTIONS(2492), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2546), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(3194), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3196), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3210), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3212), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3214), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2548), 19, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym___scanf, + anon_sym___printf, + anon_sym___read_mostly, + anon_sym___must_hold, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_QMARK, + [42502] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2397), 1, + ACTIONS(2488), 1, anon_sym_LBRACK, - ACTIONS(2399), 1, + ACTIONS(2492), 1, anon_sym_DASH_GT, - ACTIONS(3091), 1, + ACTIONS(3166), 1, anon_sym_LPAREN2, - ACTIONS(3109), 1, + ACTIONS(3192), 1, anon_sym_DOT, - STATE(668), 1, + STATE(765), 1, sym_argument_list, - ACTIONS(2405), 2, + ACTIONS(2490), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3095), 3, + ACTIONS(3168), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3170), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2401), 10, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(2546), 8, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -94392,7 +107925,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2403), 19, + ACTIONS(2548), 19, anon_sym_DOT_DOT_DOT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -94412,37 +107945,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [37377] = 9, + [42565] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2397), 1, + ACTIONS(2488), 1, anon_sym_LBRACK, - ACTIONS(2399), 1, + ACTIONS(2492), 1, anon_sym_DASH_GT, - ACTIONS(3091), 1, + ACTIONS(3166), 1, anon_sym_LPAREN2, - ACTIONS(3109), 1, + ACTIONS(3192), 1, anon_sym_DOT, - STATE(668), 1, + STATE(765), 1, sym_argument_list, - ACTIONS(2405), 2, + ACTIONS(2490), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2411), 13, + ACTIONS(3168), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(3188), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3170), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(2546), 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(2413), 19, + ACTIONS(2548), 19, anon_sym_DOT_DOT_DOT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -94462,56 +107998,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [37436] = 19, + [42630] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2397), 1, + ACTIONS(2488), 1, anon_sym_LBRACK, - ACTIONS(2399), 1, + ACTIONS(2492), 1, anon_sym_DASH_GT, - ACTIONS(2401), 1, + ACTIONS(2995), 1, anon_sym_EQ, - ACTIONS(3091), 1, + ACTIONS(3166), 1, anon_sym_LPAREN2, - ACTIONS(3097), 1, + ACTIONS(3172), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3174), 1, + anon_sym_AMP_AMP, + ACTIONS(3176), 1, + anon_sym_PIPE, + ACTIONS(3178), 1, anon_sym_CARET, - ACTIONS(3099), 1, + ACTIONS(3180), 1, anon_sym_AMP, - ACTIONS(3109), 1, + ACTIONS(3190), 1, + anon_sym_QMARK, + ACTIONS(3192), 1, anon_sym_DOT, - ACTIONS(3113), 1, - anon_sym_AMP_AMP, - ACTIONS(3115), 1, - anon_sym_PIPE, - STATE(668), 1, + STATE(765), 1, sym_argument_list, - ACTIONS(2405), 2, + ACTIONS(2490), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3093), 2, + ACTIONS(3168), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3101), 2, + ACTIONS(3182), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3103), 2, + ACTIONS(3184), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3105), 2, + ACTIONS(3186), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3107), 2, + ACTIONS(3188), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3095), 3, + ACTIONS(3170), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2403), 14, + ACTIONS(2993), 12, anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, anon_sym_RBRACK, - anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -94522,58 +108060,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [37515] = 21, + [42713] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2397), 1, + ACTIONS(2488), 1, anon_sym_LBRACK, - ACTIONS(2399), 1, + ACTIONS(2492), 1, anon_sym_DASH_GT, - ACTIONS(2857), 1, - anon_sym_EQ, - ACTIONS(3091), 1, + ACTIONS(3166), 1, anon_sym_LPAREN2, - ACTIONS(3097), 1, - anon_sym_CARET, - ACTIONS(3099), 1, - anon_sym_AMP, - ACTIONS(3109), 1, + ACTIONS(3192), 1, anon_sym_DOT, - ACTIONS(3111), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3113), 1, - anon_sym_AMP_AMP, - ACTIONS(3115), 1, - anon_sym_PIPE, - ACTIONS(3117), 1, - anon_sym_QMARK, - STATE(668), 1, + STATE(765), 1, sym_argument_list, - ACTIONS(2405), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(3093), 2, + ACTIONS(2518), 13, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3101), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3103), 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(3105), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3107), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3095), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2855), 12, + anon_sym_EQ, + ACTIONS(2520), 21, anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_RBRACK, + anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -94584,53 +108107,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [37598] = 18, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + [42770] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2397), 1, + ACTIONS(2488), 1, anon_sym_LBRACK, - ACTIONS(2399), 1, + ACTIONS(2492), 1, anon_sym_DASH_GT, - ACTIONS(2401), 1, - anon_sym_EQ, - ACTIONS(3091), 1, + ACTIONS(3166), 1, anon_sym_LPAREN2, - ACTIONS(3097), 1, - anon_sym_CARET, - ACTIONS(3099), 1, - anon_sym_AMP, - ACTIONS(3109), 1, + ACTIONS(3192), 1, anon_sym_DOT, - ACTIONS(3115), 1, - anon_sym_PIPE, - STATE(668), 1, + STATE(765), 1, sym_argument_list, - ACTIONS(2405), 2, + ACTIONS(2490), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3093), 2, + ACTIONS(2510), 13, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3101), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3103), 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(3105), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3107), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3095), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2403), 15, + anon_sym_EQ, + ACTIONS(2512), 19, anon_sym_DOT_DOT_DOT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -94643,98 +108159,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [37675] = 20, + [42829] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2395), 1, + ACTIONS(2486), 1, anon_sym_LPAREN2, - ACTIONS(2397), 1, + ACTIONS(2488), 1, anon_sym_LBRACK, - ACTIONS(3123), 1, + ACTIONS(3198), 1, anon_sym_SLASH, - ACTIONS(3125), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3127), 1, - anon_sym_AMP_AMP, - ACTIONS(3129), 1, - anon_sym_PIPE, - ACTIONS(3131), 1, - anon_sym_CARET, - ACTIONS(3133), 1, - anon_sym_AMP, - ACTIONS(3143), 1, - anon_sym_QMARK, - STATE(668), 1, + STATE(765), 1, sym_argument_list, - ACTIONS(2399), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2405), 2, + ACTIONS(2490), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3119), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3121), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3135), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3137), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3139), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3141), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2873), 12, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym___scanf, - anon_sym___printf, - anon_sym___read_mostly, - anon_sym___must_hold, - anon_sym___ro_after_init, - anon_sym___init, - anon_sym_RBRACE, - anon_sym_COLON, - [37755] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2395), 1, - anon_sym_LPAREN2, - ACTIONS(2397), 1, - anon_sym_LBRACK, - ACTIONS(3123), 1, - anon_sym_SLASH, - STATE(668), 1, - sym_argument_list, - ACTIONS(2399), 2, + ACTIONS(2492), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2405), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(3119), 2, + ACTIONS(3194), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3121), 2, + ACTIONS(3196), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3141), 2, + ACTIONS(3214), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2401), 4, + ACTIONS(2546), 4, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(2403), 20, + ACTIONS(2548), 21, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, @@ -94751,56 +108207,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___read_mostly, anon_sym___must_hold, anon_sym___ro_after_init, - anon_sym___init, + anon_sym___noreturn, + anon_sym___cold, anon_sym_RBRACE, anon_sym_COLON, anon_sym_QMARK, - [37819] = 17, + [42894] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2395), 1, + ACTIONS(2486), 1, anon_sym_LPAREN2, - ACTIONS(2397), 1, + ACTIONS(2488), 1, anon_sym_LBRACK, - ACTIONS(2401), 1, - anon_sym_PIPE, - ACTIONS(3123), 1, + ACTIONS(3198), 1, anon_sym_SLASH, - ACTIONS(3131), 1, - anon_sym_CARET, - ACTIONS(3133), 1, - anon_sym_AMP, - STATE(668), 1, + STATE(765), 1, sym_argument_list, - ACTIONS(2399), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2405), 2, + ACTIONS(2490), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3119), 2, + ACTIONS(2492), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3194), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3121), 2, + ACTIONS(3196), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3135), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3137), 2, + ACTIONS(2546), 4, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(3139), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3141), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2403), 15, + ACTIONS(2548), 23, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_SEMI, anon_sym___attribute__, anon_sym___scanf, @@ -94808,114 +108259,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___read_mostly, anon_sym___must_hold, anon_sym___ro_after_init, - anon_sym___init, + anon_sym___noreturn, + anon_sym___cold, anon_sym_RBRACE, anon_sym_COLON, anon_sym_QMARK, - [37893] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1797), 1, - anon_sym___based, - ACTIONS(3145), 1, - sym_identifier, - ACTIONS(3147), 1, - anon_sym_LPAREN2, - ACTIONS(3149), 1, - anon_sym_STAR, - ACTIONS(3153), 1, - sym_primitive_type, - STATE(703), 1, - sym_alignas_qualifier, - STATE(1024), 1, - sym_ms_unaligned_ptr_modifier, - STATE(1287), 1, - sym__type_declarator, - STATE(1891), 1, - sym_ms_based_modifier, - ACTIONS(53), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(3054), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(950), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(1016), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3052), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(3151), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1322), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(51), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [37969] = 17, + [42957] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2395), 1, + ACTIONS(2486), 1, anon_sym_LPAREN2, - ACTIONS(2397), 1, + ACTIONS(2488), 1, anon_sym_LBRACK, - ACTIONS(3123), 1, + ACTIONS(3198), 1, anon_sym_SLASH, - ACTIONS(3129), 1, - anon_sym_PIPE, - ACTIONS(3131), 1, - anon_sym_CARET, - ACTIONS(3133), 1, - anon_sym_AMP, - STATE(668), 1, + STATE(765), 1, sym_argument_list, - ACTIONS(2399), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2405), 2, + ACTIONS(2490), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3119), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3121), 2, + ACTIONS(2492), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3196), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3135), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3137), 2, + ACTIONS(2546), 6, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(3139), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3141), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2403), 15, + ACTIONS(2548), 23, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_SEMI, anon_sym___attribute__, anon_sym___scanf, @@ -94923,117 +108310,123 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___read_mostly, anon_sym___must_hold, anon_sym___ro_after_init, - anon_sym___init, + anon_sym___noreturn, + anon_sym___cold, anon_sym_RBRACE, anon_sym_COLON, anon_sym_QMARK, - [38043] = 20, + [43018] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2395), 1, - anon_sym_LPAREN2, - ACTIONS(2397), 1, + ACTIONS(2488), 1, anon_sym_LBRACK, - ACTIONS(3123), 1, - anon_sym_SLASH, - ACTIONS(3125), 1, + ACTIONS(2492), 1, + anon_sym_DASH_GT, + ACTIONS(2999), 1, + anon_sym_EQ, + ACTIONS(3166), 1, + anon_sym_LPAREN2, + ACTIONS(3172), 1, anon_sym_PIPE_PIPE, - ACTIONS(3127), 1, + ACTIONS(3174), 1, anon_sym_AMP_AMP, - ACTIONS(3129), 1, + ACTIONS(3176), 1, anon_sym_PIPE, - ACTIONS(3131), 1, + ACTIONS(3178), 1, anon_sym_CARET, - ACTIONS(3133), 1, + ACTIONS(3180), 1, anon_sym_AMP, - ACTIONS(3143), 1, + ACTIONS(3190), 1, anon_sym_QMARK, - STATE(668), 1, - sym_argument_list, - ACTIONS(2399), 2, + ACTIONS(3192), 1, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2405), 2, + STATE(765), 1, + sym_argument_list, + ACTIONS(2490), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3119), 2, + ACTIONS(3168), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3121), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3135), 2, + ACTIONS(3182), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3137), 2, + ACTIONS(3184), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3139), 2, + ACTIONS(3186), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3141), 2, + ACTIONS(3188), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2847), 12, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym___scanf, - anon_sym___printf, - anon_sym___read_mostly, - anon_sym___must_hold, - anon_sym___ro_after_init, - anon_sym___init, - anon_sym_RBRACE, - anon_sym_COLON, - [38123] = 18, + ACTIONS(3170), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2997), 12, + anon_sym_DOT_DOT_DOT, + anon_sym_RBRACK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [43101] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2395), 1, + ACTIONS(2486), 1, anon_sym_LPAREN2, - ACTIONS(2397), 1, + ACTIONS(2488), 1, anon_sym_LBRACK, - ACTIONS(3123), 1, + ACTIONS(3198), 1, anon_sym_SLASH, - ACTIONS(3127), 1, + ACTIONS(3200), 1, anon_sym_AMP_AMP, - ACTIONS(3129), 1, + ACTIONS(3202), 1, anon_sym_PIPE, - ACTIONS(3131), 1, + ACTIONS(3204), 1, anon_sym_CARET, - ACTIONS(3133), 1, + ACTIONS(3206), 1, anon_sym_AMP, - STATE(668), 1, + ACTIONS(3216), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3218), 1, + anon_sym_QMARK, + STATE(765), 1, sym_argument_list, - ACTIONS(2399), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2405), 2, + ACTIONS(2490), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3119), 2, + ACTIONS(2492), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3194), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3121), 2, + ACTIONS(3196), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3135), 2, + ACTIONS(3208), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3137), 2, + ACTIONS(3210), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3139), 2, + ACTIONS(3212), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3141), 2, + ACTIONS(3214), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2403), 14, + ACTIONS(2993), 13, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_PIPE_PIPE, anon_sym_SEMI, anon_sym___attribute__, anon_sym___scanf, @@ -95041,14 +108434,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___read_mostly, anon_sym___must_hold, anon_sym___ro_after_init, - anon_sym___init, + anon_sym___noreturn, + anon_sym___cold, anon_sym_RBRACE, anon_sym_COLON, - anon_sym_QMARK, - [38199] = 3, + [43182] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2387), 14, + ACTIONS(2488), 1, + anon_sym_LBRACK, + ACTIONS(2492), 1, + anon_sym_DASH_GT, + ACTIONS(3166), 1, + anon_sym_LPAREN2, + ACTIONS(3192), 1, + anon_sym_DOT, + STATE(765), 1, + sym_argument_list, + ACTIONS(2490), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2506), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -95062,17 +108468,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_DOT, - ACTIONS(2389), 24, + ACTIONS(2508), 19, anon_sym_DOT_DOT_DOT, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -95085,114 +108488,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [38245] = 16, + [43241] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2395), 1, - anon_sym_LPAREN2, - ACTIONS(2397), 1, + ACTIONS(2488), 1, anon_sym_LBRACK, - ACTIONS(2401), 1, - anon_sym_PIPE, - ACTIONS(3123), 1, - anon_sym_SLASH, - ACTIONS(3133), 1, - anon_sym_AMP, - STATE(668), 1, - sym_argument_list, - ACTIONS(2399), 2, - anon_sym_DOT, + ACTIONS(2492), 1, anon_sym_DASH_GT, - ACTIONS(2405), 2, + ACTIONS(3166), 1, + anon_sym_LPAREN2, + ACTIONS(3192), 1, + anon_sym_DOT, + STATE(765), 1, + sym_argument_list, + ACTIONS(2490), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3119), 2, + ACTIONS(2482), 13, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3121), 2, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3135), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3137), 2, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(3139), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3141), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2403), 16, - anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_EQ, + ACTIONS(2484), 19, + anon_sym_DOT_DOT_DOT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym___scanf, - anon_sym___printf, - anon_sym___read_mostly, - anon_sym___must_hold, - anon_sym___ro_after_init, - anon_sym___init, - anon_sym_RBRACE, - anon_sym_COLON, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_RBRACK, anon_sym_QMARK, - [38317] = 18, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [43300] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1797), 1, + ACTIONS(1835), 1, anon_sym___based, - ACTIONS(3145), 1, + ACTIONS(3220), 1, sym_identifier, - ACTIONS(3147), 1, + ACTIONS(3222), 1, anon_sym_LPAREN2, - ACTIONS(3149), 1, + ACTIONS(3224), 1, anon_sym_STAR, - ACTIONS(3153), 1, + ACTIONS(3228), 1, sym_primitive_type, - STATE(703), 1, + STATE(799), 1, sym_alignas_qualifier, - STATE(1024), 1, + STATE(1149), 1, sym_ms_unaligned_ptr_modifier, - STATE(1287), 1, + STATE(1412), 1, sym__type_declarator, - STATE(1891), 1, + STATE(2043), 1, sym_ms_based_modifier, - ACTIONS(53), 2, + ACTIONS(55), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(3054), 2, + ACTIONS(3142), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(996), 2, + STATE(1060), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(1016), 2, + STATE(1137), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3052), 3, + ACTIONS(3140), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(3151), 4, + ACTIONS(3226), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1322), 5, + STATE(1443), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - ACTIONS(51), 9, + ACTIONS(53), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -95202,65 +108596,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [38393] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2395), 1, - anon_sym_LPAREN2, - ACTIONS(2397), 1, - anon_sym_LBRACK, - ACTIONS(3123), 1, - anon_sym_SLASH, - STATE(668), 1, - sym_argument_list, - ACTIONS(2399), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2401), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(2405), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(3119), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3121), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3135), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3137), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3139), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3141), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2403), 16, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym___scanf, - anon_sym___printf, - anon_sym___read_mostly, - anon_sym___must_hold, - anon_sym___ro_after_init, - anon_sym___init, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_QMARK, - [38463] = 3, + [43376] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2431), 14, + ACTIONS(2498), 14, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -95275,7 +108614,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ, anon_sym_DOT, - ACTIONS(2433), 24, + ACTIONS(2500), 24, anon_sym_DOT_DOT_DOT, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, @@ -95300,100 +108639,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [38509] = 5, + [43422] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3034), 1, - anon_sym_EQ, - ACTIONS(3036), 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(1740), 13, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(1734), 14, - anon_sym_DOT_DOT_DOT, + ACTIONS(1835), 1, + anon_sym___based, + ACTIONS(3220), 1, + sym_identifier, + ACTIONS(3222), 1, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [38559] = 18, + ACTIONS(3224), 1, + anon_sym_STAR, + ACTIONS(3228), 1, + sym_primitive_type, + STATE(799), 1, + sym_alignas_qualifier, + STATE(1149), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1403), 1, + sym__type_declarator, + STATE(2043), 1, + sym_ms_based_modifier, + ACTIONS(55), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(3142), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(1121), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(1142), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3140), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(3226), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1443), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(53), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [43498] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1797), 1, + ACTIONS(1835), 1, anon_sym___based, - ACTIONS(3145), 1, + ACTIONS(3220), 1, sym_identifier, - ACTIONS(3147), 1, + ACTIONS(3222), 1, anon_sym_LPAREN2, - ACTIONS(3149), 1, + ACTIONS(3224), 1, anon_sym_STAR, - ACTIONS(3153), 1, + ACTIONS(3228), 1, sym_primitive_type, - STATE(703), 1, + STATE(799), 1, sym_alignas_qualifier, - STATE(1024), 1, + STATE(1149), 1, sym_ms_unaligned_ptr_modifier, - STATE(1285), 1, + STATE(1403), 1, sym__type_declarator, - STATE(1891), 1, + STATE(2043), 1, sym_ms_based_modifier, - ACTIONS(53), 2, + ACTIONS(55), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(3054), 2, + ACTIONS(3142), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(940), 2, + STATE(1062), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(1019), 2, + STATE(1142), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3052), 3, + ACTIONS(3140), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(3151), 4, + ACTIONS(3226), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1322), 5, + STATE(1443), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - ACTIONS(51), 9, + ACTIONS(53), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -95403,64 +108755,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [38635] = 14, + [43574] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2395), 1, + ACTIONS(1835), 1, + anon_sym___based, + ACTIONS(3220), 1, + sym_identifier, + ACTIONS(3222), 1, anon_sym_LPAREN2, - ACTIONS(2397), 1, - anon_sym_LBRACK, - ACTIONS(3123), 1, - anon_sym_SLASH, - STATE(668), 1, - sym_argument_list, - ACTIONS(2399), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2401), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(2405), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(3119), 2, + ACTIONS(3224), 1, + anon_sym_STAR, + ACTIONS(3228), 1, + sym_primitive_type, + STATE(799), 1, + sym_alignas_qualifier, + STATE(1149), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1399), 1, + sym__type_declarator, + STATE(2043), 1, + sym_ms_based_modifier, + ACTIONS(55), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(3142), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(1121), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(1140), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3140), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(3226), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1443), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(53), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [43650] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2526), 14, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3121), 2, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3137), 2, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(3139), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3141), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2403), 18, - anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_DOT, + ACTIONS(2528), 24, + anon_sym_DOT_DOT_DOT, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym___scanf, - anon_sym___printf, - anon_sym___read_mostly, - anon_sym___must_hold, - anon_sym___ro_after_init, - anon_sym___init, - anon_sym_RBRACE, - anon_sym_COLON, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, - [38703] = 3, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [43696] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2427), 14, + ACTIONS(2534), 14, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -95475,7 +108874,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ, anon_sym_DOT, - ACTIONS(2429), 24, + ACTIONS(2536), 24, anon_sym_DOT_DOT_DOT, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, @@ -95500,70 +108899,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [38749] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2395), 1, - anon_sym_LPAREN2, - ACTIONS(2397), 1, - anon_sym_LBRACK, - ACTIONS(3123), 1, - anon_sym_SLASH, - ACTIONS(3125), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3127), 1, - anon_sym_AMP_AMP, - ACTIONS(3129), 1, - anon_sym_PIPE, - ACTIONS(3131), 1, - anon_sym_CARET, - ACTIONS(3133), 1, - anon_sym_AMP, - ACTIONS(3143), 1, - anon_sym_QMARK, - STATE(668), 1, - sym_argument_list, - ACTIONS(2399), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2405), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(3119), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3121), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3135), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3137), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3139), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3141), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2855), 12, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym___scanf, - anon_sym___printf, - anon_sym___read_mostly, - anon_sym___must_hold, - anon_sym___ro_after_init, - anon_sym___init, - anon_sym_RBRACE, - anon_sym_COLON, - [38829] = 3, + [43742] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2419), 14, + ACTIONS(2538), 14, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -95578,7 +108917,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ, anon_sym_DOT, - ACTIONS(2421), 24, + ACTIONS(2540), 24, anon_sym_DOT_DOT_DOT, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, @@ -95603,145 +108942,123 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [38875] = 11, + [43788] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2395), 1, - anon_sym_LPAREN2, - ACTIONS(2397), 1, - anon_sym_LBRACK, - ACTIONS(3123), 1, - anon_sym_SLASH, - STATE(668), 1, - sym_argument_list, - ACTIONS(2399), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2405), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(3119), 2, + ACTIONS(3113), 1, + anon_sym_EQ, + ACTIONS(3115), 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(1756), 13, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3121), 2, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2401), 4, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(2403), 22, - anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(1750), 14, + anon_sym_DOT_DOT_DOT, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [43838] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3230), 18, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, anon_sym___attribute__, anon_sym___scanf, anon_sym___printf, anon_sym___read_mostly, anon_sym___must_hold, anon_sym___ro_after_init, - anon_sym___init, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_QMARK, - [38937] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1797), 1, - anon_sym___based, - ACTIONS(3145), 1, + anon_sym___noreturn, + anon_sym___cold, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, sym_identifier, - ACTIONS(3147), 1, + ACTIONS(3232), 19, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(3149), 1, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, - ACTIONS(3153), 1, - sym_primitive_type, - STATE(703), 1, - sym_alignas_qualifier, - STATE(1024), 1, - sym_ms_unaligned_ptr_modifier, - STATE(1286), 1, - sym__type_declarator, - STATE(1891), 1, - sym_ms_based_modifier, - ACTIONS(53), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(3054), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(996), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(1015), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3052), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(3151), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1322), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(51), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [39013] = 10, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + [43883] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2395), 1, - anon_sym_LPAREN2, - ACTIONS(2397), 1, - anon_sym_LBRACK, - ACTIONS(3123), 1, + ACTIONS(3234), 18, anon_sym_SLASH, - STATE(668), 1, - sym_argument_list, - ACTIONS(2399), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2405), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(3121), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2401), 6, - anon_sym_DASH, - anon_sym_PLUS, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(2403), 22, + anon_sym___attribute__, + anon_sym___scanf, + anon_sym___printf, + anon_sym___read_mostly, + anon_sym___must_hold, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + sym_identifier, + ACTIONS(3236), 19, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, @@ -95752,24 +109069,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI, - anon_sym___attribute__, - anon_sym___scanf, - anon_sym___printf, - anon_sym___read_mostly, - anon_sym___must_hold, - anon_sym___ro_after_init, - anon_sym___init, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_QMARK, - [39073] = 6, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + [43928] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1749), 1, + ACTIONS(1765), 1, anon_sym_EQ, - ACTIONS(3155), 1, + ACTIONS(3238), 1, anon_sym_SEMI, - ACTIONS(1753), 10, + ACTIONS(1769), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -95780,7 +109089,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1740), 12, + ACTIONS(1756), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -95793,7 +109102,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1734), 13, + ACTIONS(1750), 13, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -95807,10 +109116,258 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [39124] = 3, + [43979] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3240), 18, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym___attribute__, + anon_sym___scanf, + anon_sym___printf, + anon_sym___read_mostly, + anon_sym___must_hold, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + sym_identifier, + ACTIONS(3242), 19, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + [44024] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3244), 18, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym___attribute__, + anon_sym___scanf, + anon_sym___printf, + anon_sym___read_mostly, + anon_sym___must_hold, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + sym_identifier, + ACTIONS(3246), 19, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + [44069] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1225), 17, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_sizeof, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_asm, + anon_sym___asm__, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + ACTIONS(1227), 19, + anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [44113] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1161), 17, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_sizeof, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_asm, + anon_sym___asm__, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + ACTIONS(1163), 19, + anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [44157] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1161), 17, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_sizeof, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_asm, + anon_sym___asm__, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + ACTIONS(1163), 19, + anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [44201] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1197), 17, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_sizeof, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_asm, + anon_sym___asm__, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + ACTIONS(1199), 19, + anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [44245] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1245), 17, + ACTIONS(1193), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_sizeof, @@ -95828,7 +109385,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NULL, anon_sym_nullptr, sym_identifier, - ACTIONS(1247), 19, + ACTIONS(1195), 19, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -95848,10 +109405,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [39168] = 3, + [44289] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1169), 17, + ACTIONS(1197), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_sizeof, @@ -95869,7 +109426,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NULL, anon_sym_nullptr, sym_identifier, - ACTIONS(1171), 19, + ACTIONS(1199), 19, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -95889,10 +109446,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [39212] = 3, + [44333] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1185), 17, + ACTIONS(1165), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_sizeof, @@ -95910,7 +109467,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NULL, anon_sym_nullptr, sym_identifier, - ACTIONS(1187), 19, + ACTIONS(1167), 19, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -95930,10 +109487,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [39256] = 3, + [44377] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1181), 17, + ACTIONS(1153), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_sizeof, @@ -95951,7 +109508,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NULL, anon_sym_nullptr, sym_identifier, - ACTIONS(1183), 19, + ACTIONS(1155), 19, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -95971,10 +109528,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [39300] = 3, + [44421] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1181), 17, + ACTIONS(1253), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_sizeof, @@ -95992,7 +109549,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NULL, anon_sym_nullptr, sym_identifier, - ACTIONS(1183), 19, + ACTIONS(1255), 19, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -96012,10 +109569,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [39344] = 3, + [44465] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1185), 17, + ACTIONS(1153), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_sizeof, @@ -96033,7 +109590,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NULL, anon_sym_nullptr, sym_identifier, - ACTIONS(1187), 19, + ACTIONS(1155), 19, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -96053,10 +109610,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [39388] = 3, + [44509] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1245), 17, + ACTIONS(1153), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_sizeof, @@ -96074,7 +109631,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NULL, anon_sym_nullptr, sym_identifier, - ACTIONS(1247), 19, + ACTIONS(1155), 19, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -96094,133 +109651,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [39432] = 3, + [44553] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3157), 17, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym___attribute__, - anon_sym___scanf, - anon_sym___printf, - anon_sym___read_mostly, - anon_sym___must_hold, - anon_sym___ro_after_init, - anon_sym___init, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - sym_identifier, - ACTIONS(3159), 19, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + ACTIONS(1165), 17, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - [39476] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3161), 17, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym___attribute__, - anon_sym___scanf, - anon_sym___printf, - anon_sym___read_mostly, - anon_sym___must_hold, - anon_sym___ro_after_init, - anon_sym___init, - anon_sym_LBRACK, - anon_sym_EQ, + anon_sym_sizeof, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym_offsetof, + anon_sym__Generic, anon_sym_asm, anon_sym___asm__, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, sym_identifier, - ACTIONS(3163), 19, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(1167), 19, anon_sym_LPAREN2, - anon_sym_DASH, - anon_sym_PLUS, + anon_sym_BANG, + anon_sym_TILDE, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - [39520] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3165), 17, - anon_sym_SLASH, - anon_sym_PIPE, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym___attribute__, - anon_sym___scanf, - anon_sym___printf, - anon_sym___read_mostly, - anon_sym___must_hold, - anon_sym___ro_after_init, - anon_sym___init, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - sym_identifier, - ACTIONS(3167), 19, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - [39564] = 3, + 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, + [44597] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1157), 17, + ACTIONS(1273), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_sizeof, @@ -96238,7 +109713,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NULL, anon_sym_nullptr, sym_identifier, - ACTIONS(1159), 19, + ACTIONS(1275), 19, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -96258,10 +109733,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [39608] = 3, + [44641] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1173), 17, + ACTIONS(1225), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_sizeof, @@ -96279,7 +109754,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NULL, anon_sym_nullptr, sym_identifier, - ACTIONS(1175), 19, + ACTIONS(1227), 19, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -96299,51 +109774,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [39652] = 3, + [44685] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3169), 17, + ACTIONS(2486), 1, + anon_sym_LPAREN2, + ACTIONS(2488), 1, + anon_sym_LBRACK, + ACTIONS(3198), 1, anon_sym_SLASH, + ACTIONS(3200), 1, + anon_sym_AMP_AMP, + ACTIONS(3202), 1, anon_sym_PIPE, + ACTIONS(3204), 1, + anon_sym_CARET, + ACTIONS(3206), 1, anon_sym_AMP, + ACTIONS(3216), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3218), 1, + anon_sym_QMARK, + STATE(765), 1, + sym_argument_list, + ACTIONS(2490), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2492), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3194), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3196), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3208), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3210), 2, anon_sym_GT, anon_sym_LT, + ACTIONS(3212), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3214), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3248), 10, + anon_sym_COMMA, + anon_sym_SEMI, anon_sym___attribute__, anon_sym___scanf, anon_sym___printf, anon_sym___read_mostly, anon_sym___must_hold, anon_sym___ro_after_init, - anon_sym___init, - anon_sym_LBRACK, - anon_sym_EQ, + anon_sym___noreturn, + anon_sym___cold, + [44763] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1161), 17, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_sizeof, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym_offsetof, + anon_sym__Generic, anon_sym_asm, anon_sym___asm__, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, sym_identifier, - ACTIONS(3171), 19, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(1163), 19, anon_sym_LPAREN2, - anon_sym_DASH, - anon_sym_PLUS, + anon_sym_BANG, + anon_sym_TILDE, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, + anon_sym_AMP, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - [39696] = 3, + 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, + [44807] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1169), 17, + ACTIONS(1165), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_sizeof, @@ -96361,7 +109894,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NULL, anon_sym_nullptr, sym_identifier, - ACTIONS(1171), 19, + ACTIONS(1167), 19, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -96381,108 +109914,123 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [39740] = 20, + [44851] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2395), 1, + ACTIONS(1197), 17, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_sizeof, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_asm, + anon_sym___asm__, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + ACTIONS(1199), 19, anon_sym_LPAREN2, - ACTIONS(2397), 1, - anon_sym_LBRACK, - ACTIONS(3123), 1, - anon_sym_SLASH, - ACTIONS(3125), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3127), 1, - anon_sym_AMP_AMP, - ACTIONS(3129), 1, - anon_sym_PIPE, - ACTIONS(3131), 1, - anon_sym_CARET, - ACTIONS(3133), 1, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_AMP, - ACTIONS(3143), 1, - anon_sym_QMARK, - STATE(668), 1, - sym_argument_list, - ACTIONS(2399), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2405), 2, + anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3119), 2, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [44895] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1193), 17, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3121), 2, + anon_sym_sizeof, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_asm, + anon_sym___asm__, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + ACTIONS(1195), 19, + anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3135), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3137), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3139), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3141), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3173), 9, - anon_sym_COMMA, + anon_sym_AMP, anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [44939] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2948), 1, + anon_sym_LBRACE, + ACTIONS(3250), 1, + anon_sym_COLON, + STATE(841), 1, + sym_attribute_specifier, + STATE(1106), 1, + sym_enumerator_list, + ACTIONS(33), 2, anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(35), 2, anon_sym___scanf, anon_sym___printf, + ACTIONS(37), 4, anon_sym___read_mostly, - anon_sym___must_hold, anon_sym___ro_after_init, - anon_sym___init, - [39817] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1793), 1, + anon_sym___noreturn, + anon_sym___cold, + ACTIONS(2937), 5, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(1795), 1, anon_sym_STAR, - ACTIONS(1797), 1, - anon_sym___based, - ACTIONS(3048), 1, - sym_identifier, - ACTIONS(3056), 1, anon_sym_LBRACK, - STATE(703), 1, - sym_alignas_qualifier, - STATE(1308), 1, - sym__declarator, - STATE(1476), 1, - sym__abstract_declarator, - STATE(1509), 1, - sym_parameter_list, - STATE(2016), 1, - sym_ms_based_modifier, - ACTIONS(53), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(3175), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(1012), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(1504), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - STATE(1387), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - ACTIONS(51), 9, + ACTIONS(2935), 18, anon_sym___extension__, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -96491,14 +110039,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [39887] = 9, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + [44996] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2926), 1, + ACTIONS(2948), 1, anon_sym_LBRACE, - STATE(778), 1, + STATE(869), 1, sym_attribute_specifier, - STATE(998), 1, + STATE(1116), 1, sym_enumerator_list, ACTIONS(33), 2, anon_sym___attribute__, @@ -96506,18 +110058,19 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(35), 2, anon_sym___scanf, anon_sym___printf, - ACTIONS(37), 3, + ACTIONS(37), 4, anon_sym___read_mostly, anon_sym___ro_after_init, - anon_sym___init, - ACTIONS(2932), 6, + anon_sym___noreturn, + anon_sym___cold, + ACTIONS(3003), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_LBRACK, anon_sym_COLON, - ACTIONS(2930), 18, + ACTIONS(3001), 18, anon_sym___extension__, anon_sym___based, anon_sym_signed, @@ -96536,53 +110089,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [39941] = 18, + [45051] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, - anon_sym_const, - ACTIONS(1857), 1, + ACTIONS(1835), 1, + anon_sym___based, + ACTIONS(1873), 1, anon_sym_LPAREN2, - ACTIONS(1859), 1, + ACTIONS(1875), 1, anon_sym_STAR, - ACTIONS(3052), 1, - sym_ms_restrict_modifier, - ACTIONS(3056), 1, + ACTIONS(3136), 1, + sym_identifier, + ACTIONS(3144), 1, anon_sym_LBRACK, - STATE(703), 1, + STATE(799), 1, sym_alignas_qualifier, - STATE(1024), 1, - sym_ms_unaligned_ptr_modifier, - STATE(1466), 1, + STATE(1465), 1, + sym__declarator, + STATE(1657), 1, sym__abstract_declarator, - STATE(1509), 1, + STATE(1691), 1, sym_parameter_list, - ACTIONS(3179), 2, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(3181), 2, - anon_sym__unaligned, - anon_sym___unaligned, - ACTIONS(3183), 2, + STATE(2174), 1, + sym_ms_based_modifier, + ACTIONS(55), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(971), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(1103), 2, + ACTIONS(3138), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(1141), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3058), 3, + STATE(1717), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + STATE(1569), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + ACTIONS(53), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [45121] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1835), 1, + anon_sym___based, + ACTIONS(1873), 1, + anon_sym_LPAREN2, + ACTIONS(1875), 1, + anon_sym_STAR, + ACTIONS(3136), 1, + sym_identifier, + ACTIONS(3144), 1, + anon_sym_LBRACK, + STATE(799), 1, + sym_alignas_qualifier, + STATE(1473), 1, + sym__declarator, + STATE(1672), 1, + sym__abstract_declarator, + STATE(1691), 1, + sym_parameter_list, + STATE(2174), 1, + sym_ms_based_modifier, + ACTIONS(55), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(3252), 2, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_COLON, - STATE(1504), 4, + STATE(1141), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(1717), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, - ACTIONS(3177), 8, + STATE(1569), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + ACTIONS(53), 9, anon_sym___extension__, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -96590,52 +110195,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [40013] = 18, + [45191] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, + ACTIONS(53), 1, anon_sym_const, - ACTIONS(1857), 1, + ACTIONS(2010), 1, anon_sym_LPAREN2, - ACTIONS(1859), 1, + ACTIONS(2012), 1, anon_sym_STAR, - ACTIONS(3052), 1, + ACTIONS(3140), 1, sym_ms_restrict_modifier, - ACTIONS(3056), 1, + ACTIONS(3144), 1, anon_sym_LBRACK, - STATE(703), 1, + STATE(799), 1, sym_alignas_qualifier, - STATE(1024), 1, + STATE(1149), 1, sym_ms_unaligned_ptr_modifier, - STATE(1480), 1, + STATE(1638), 1, sym__abstract_declarator, - STATE(1509), 1, + STATE(1691), 1, sym_parameter_list, - ACTIONS(3179), 2, + ACTIONS(3256), 2, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(3181), 2, + ACTIONS(3258), 2, anon_sym__unaligned, anon_sym___unaligned, - ACTIONS(3183), 2, + ACTIONS(3260), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(996), 2, + STATE(1096), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(1097), 2, + STATE(1229), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3050), 3, + ACTIONS(3148), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - STATE(1504), 4, + STATE(1717), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, - ACTIONS(3177), 8, + ACTIONS(3254), 8, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -96644,94 +110249,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [40085] = 17, + [45263] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1793), 1, + ACTIONS(53), 1, + anon_sym_const, + ACTIONS(2010), 1, anon_sym_LPAREN2, - ACTIONS(1795), 1, + ACTIONS(2012), 1, anon_sym_STAR, - ACTIONS(1797), 1, - anon_sym___based, - ACTIONS(3048), 1, - sym_identifier, - ACTIONS(3056), 1, + ACTIONS(3140), 1, + sym_ms_restrict_modifier, + ACTIONS(3144), 1, anon_sym_LBRACK, - STATE(703), 1, + STATE(799), 1, sym_alignas_qualifier, - STATE(1333), 1, - sym__declarator, - STATE(1480), 1, + STATE(1149), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1657), 1, sym__abstract_declarator, - STATE(1509), 1, + STATE(1691), 1, sym_parameter_list, - STATE(2016), 1, - sym_ms_based_modifier, - ACTIONS(53), 2, + ACTIONS(3256), 2, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(3258), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(3260), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(3050), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(1012), 2, + STATE(1121), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(1228), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(1504), 4, + ACTIONS(3138), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + STATE(1717), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, - STATE(1387), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - ACTIONS(51), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [40155] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2926), 1, - anon_sym_LBRACE, - ACTIONS(3185), 1, - anon_sym_COLON, - STATE(741), 1, - sym_attribute_specifier, - STATE(997), 1, - sym_enumerator_list, - ACTIONS(33), 2, - anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(35), 2, - anon_sym___scanf, - anon_sym___printf, - ACTIONS(37), 3, - anon_sym___read_mostly, - anon_sym___ro_after_init, - anon_sym___init, - ACTIONS(2915), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_LBRACK, - ACTIONS(2913), 18, + ACTIONS(3254), 8, anon_sym___extension__, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -96739,156 +110303,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - sym_identifier, - [40211] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2395), 1, - anon_sym_LPAREN2, - ACTIONS(2397), 1, - anon_sym_LBRACK, - ACTIONS(2401), 1, - aux_sym_preproc_elif_token1, - ACTIONS(3191), 1, - anon_sym_SLASH, - ACTIONS(3193), 1, - anon_sym_AMP_AMP, - ACTIONS(3195), 1, - anon_sym_PIPE, - ACTIONS(3197), 1, - anon_sym_CARET, - ACTIONS(3199), 1, - anon_sym_AMP, - STATE(668), 1, - sym_argument_list, - ACTIONS(2399), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2405), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(3187), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3189), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3201), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3203), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3205), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3207), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2403), 8, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_PIPE_PIPE, - anon_sym_QMARK, - sym_identifier, - [40284] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2395), 1, - anon_sym_LPAREN2, - ACTIONS(2397), 1, - anon_sym_LBRACK, - ACTIONS(3191), 1, - anon_sym_SLASH, - STATE(668), 1, - sym_argument_list, - ACTIONS(2399), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2405), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(3187), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3189), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3201), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3203), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3205), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3207), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2401), 3, - aux_sym_preproc_elif_token1, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(2403), 10, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_QMARK, - sym_identifier, - [40349] = 16, + [45335] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1797), 1, + ACTIONS(1835), 1, anon_sym___based, - ACTIONS(3209), 1, + ACTIONS(3262), 1, sym_identifier, - ACTIONS(3211), 1, + ACTIONS(3264), 1, anon_sym_LPAREN2, - ACTIONS(3213), 1, + ACTIONS(3266), 1, anon_sym_STAR, - STATE(703), 1, + STATE(799), 1, sym_alignas_qualifier, - STATE(1024), 1, + STATE(1149), 1, sym_ms_unaligned_ptr_modifier, - STATE(1270), 1, + STATE(1396), 1, sym__field_declarator, - STATE(1875), 1, + STATE(2274), 1, sym_ms_based_modifier, - ACTIONS(53), 2, + ACTIONS(55), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(3054), 2, + ACTIONS(3142), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(979), 2, + STATE(1118), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(1110), 2, + STATE(1239), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3052), 3, + ACTIONS(3140), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(1306), 5, + STATE(1438), 5, sym_parenthesized_field_declarator, sym_attributed_field_declarator, sym_pointer_field_declarator, sym_function_field_declarator, sym_array_field_declarator, - ACTIONS(51), 9, + ACTIONS(53), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -96898,160 +110354,153 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [40416] = 21, + [45402] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2395), 1, + ACTIONS(2486), 1, anon_sym_LPAREN2, - ACTIONS(2397), 1, + ACTIONS(2488), 1, anon_sym_LBRACK, - ACTIONS(2875), 1, - aux_sym_preproc_elif_token1, - ACTIONS(3191), 1, + ACTIONS(3272), 1, anon_sym_SLASH, - ACTIONS(3193), 1, - anon_sym_AMP_AMP, - ACTIONS(3195), 1, - anon_sym_PIPE, - ACTIONS(3197), 1, - anon_sym_CARET, - ACTIONS(3199), 1, - anon_sym_AMP, - ACTIONS(3215), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3217), 1, - anon_sym_QMARK, - STATE(668), 1, + STATE(765), 1, sym_argument_list, - ACTIONS(2399), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2405), 2, + ACTIONS(2490), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3187), 2, + ACTIONS(2492), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3268), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3189), 2, + ACTIONS(3270), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3201), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3203), 2, + ACTIONS(3274), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3205), 2, + ACTIONS(3276), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3207), 2, + ACTIONS(3278), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2873), 6, + ACTIONS(2546), 3, + aux_sym_preproc_elif_token1, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(2548), 12, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK, sym_identifier, - [40493] = 21, + [45465] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2395), 1, + ACTIONS(2486), 1, anon_sym_LPAREN2, - ACTIONS(2397), 1, + ACTIONS(2488), 1, anon_sym_LBRACK, - ACTIONS(2851), 1, + ACTIONS(2999), 1, aux_sym_preproc_elif_token1, - ACTIONS(3191), 1, + ACTIONS(3272), 1, anon_sym_SLASH, - ACTIONS(3193), 1, + ACTIONS(3280), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3282), 1, anon_sym_AMP_AMP, - ACTIONS(3195), 1, + ACTIONS(3284), 1, anon_sym_PIPE, - ACTIONS(3197), 1, + ACTIONS(3286), 1, anon_sym_CARET, - ACTIONS(3199), 1, + ACTIONS(3288), 1, anon_sym_AMP, - ACTIONS(3215), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3217), 1, + ACTIONS(3292), 1, anon_sym_QMARK, - STATE(668), 1, + STATE(765), 1, sym_argument_list, - ACTIONS(2399), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2405), 2, + ACTIONS(2490), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3187), 2, + ACTIONS(2492), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3268), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3189), 2, + ACTIONS(3270), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3201), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3203), 2, + ACTIONS(3274), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3205), 2, + ACTIONS(3276), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3207), 2, + ACTIONS(3278), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2847), 6, + ACTIONS(3290), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2997), 6, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, sym_identifier, - [40570] = 16, + [45542] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1797), 1, - anon_sym___based, - ACTIONS(3209), 1, - sym_identifier, - ACTIONS(3211), 1, + ACTIONS(1831), 1, anon_sym_LPAREN2, - ACTIONS(3213), 1, + ACTIONS(1833), 1, anon_sym_STAR, - STATE(703), 1, + ACTIONS(1835), 1, + anon_sym___based, + ACTIONS(3136), 1, + sym_identifier, + STATE(799), 1, sym_alignas_qualifier, - STATE(1024), 1, + STATE(1149), 1, sym_ms_unaligned_ptr_modifier, - STATE(1273), 1, - sym__field_declarator, - STATE(1875), 1, + STATE(1464), 1, + sym__declarator, + STATE(2174), 1, sym_ms_based_modifier, - ACTIONS(53), 2, + ACTIONS(55), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(3054), 2, + ACTIONS(3142), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(996), 2, + STATE(1101), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(1111), 2, + STATE(1236), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3052), 3, + ACTIONS(3140), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(1306), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - ACTIONS(51), 9, + STATE(1569), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + ACTIONS(53), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -97061,48 +110510,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [40637] = 16, + [45609] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1797), 1, - anon_sym___based, - ACTIONS(3209), 1, - sym_identifier, - ACTIONS(3211), 1, + ACTIONS(1831), 1, anon_sym_LPAREN2, - ACTIONS(3213), 1, + ACTIONS(1833), 1, anon_sym_STAR, - STATE(703), 1, + ACTIONS(1835), 1, + anon_sym___based, + ACTIONS(3136), 1, + sym_identifier, + STATE(799), 1, sym_alignas_qualifier, - STATE(1024), 1, + STATE(1149), 1, sym_ms_unaligned_ptr_modifier, - STATE(1273), 1, - sym__field_declarator, - STATE(1875), 1, + STATE(1465), 1, + sym__declarator, + STATE(2174), 1, sym_ms_based_modifier, - ACTIONS(53), 2, + ACTIONS(55), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(3054), 2, + ACTIONS(3142), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(984), 2, + STATE(1121), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(1111), 2, + STATE(1230), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3052), 3, + ACTIONS(3140), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(1306), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - ACTIONS(51), 9, + STATE(1569), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + ACTIONS(53), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -97112,49 +110561,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [40704] = 16, + [45676] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1797), 1, - anon_sym___based, - ACTIONS(3048), 1, - sym_identifier, - ACTIONS(3219), 1, + STATE(837), 1, + sym_attribute_specifier, + ACTIONS(33), 2, + anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(35), 2, + anon_sym___scanf, + anon_sym___printf, + ACTIONS(37), 4, + anon_sym___read_mostly, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + ACTIONS(3020), 6, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(3221), 1, anon_sym_STAR, - STATE(703), 1, - sym_alignas_qualifier, - STATE(1024), 1, - sym_ms_unaligned_ptr_modifier, - STATE(1331), 1, - sym__declarator, - STATE(2016), 1, - sym_ms_based_modifier, - ACTIONS(53), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(3054), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(989), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(1109), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3052), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(1387), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - ACTIONS(51), 9, + anon_sym_LBRACK, + anon_sym_COLON, + ACTIONS(3018), 18, anon_sym___extension__, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -97163,191 +110599,145 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [40771] = 10, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + [45725] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2395), 1, + ACTIONS(2486), 1, anon_sym_LPAREN2, - ACTIONS(2397), 1, + ACTIONS(2488), 1, anon_sym_LBRACK, - ACTIONS(3191), 1, + ACTIONS(2995), 1, + aux_sym_preproc_elif_token1, + ACTIONS(3272), 1, anon_sym_SLASH, - STATE(668), 1, + ACTIONS(3280), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3282), 1, + anon_sym_AMP_AMP, + ACTIONS(3284), 1, + anon_sym_PIPE, + ACTIONS(3286), 1, + anon_sym_CARET, + ACTIONS(3288), 1, + anon_sym_AMP, + ACTIONS(3292), 1, + anon_sym_QMARK, + STATE(765), 1, sym_argument_list, - ACTIONS(2399), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2405), 2, + ACTIONS(2490), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3189), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2401), 7, - aux_sym_preproc_elif_token1, + ACTIONS(2492), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3268), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(3270), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3274), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2403), 16, + ACTIONS(3276), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3278), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3290), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2993), 6, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_QMARK, sym_identifier, - [40826] = 21, + [45802] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2395), 1, + ACTIONS(2486), 1, anon_sym_LPAREN2, - ACTIONS(2397), 1, + ACTIONS(2488), 1, anon_sym_LBRACK, - ACTIONS(3191), 1, + ACTIONS(3272), 1, anon_sym_SLASH, - ACTIONS(3193), 1, - anon_sym_AMP_AMP, - ACTIONS(3195), 1, - anon_sym_PIPE, - ACTIONS(3197), 1, - anon_sym_CARET, - ACTIONS(3199), 1, - anon_sym_AMP, - ACTIONS(3215), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3217), 1, - anon_sym_QMARK, - ACTIONS(3225), 1, - aux_sym_preproc_elif_token1, - STATE(668), 1, + STATE(765), 1, sym_argument_list, - ACTIONS(2399), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2405), 2, + ACTIONS(2490), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3187), 2, + ACTIONS(2492), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3268), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3189), 2, + ACTIONS(3270), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3201), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3203), 2, + ACTIONS(2546), 5, + aux_sym_preproc_elif_token1, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(3205), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3207), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3223), 6, + ACTIONS(2548), 16, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_QMARK, sym_identifier, - [40903] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1797), 1, - anon_sym___based, - ACTIONS(3209), 1, - sym_identifier, - ACTIONS(3211), 1, - anon_sym_LPAREN2, - ACTIONS(3213), 1, - anon_sym_STAR, - STATE(703), 1, - sym_alignas_qualifier, - STATE(1024), 1, - sym_ms_unaligned_ptr_modifier, - STATE(1271), 1, - sym__field_declarator, - STATE(1875), 1, - sym_ms_based_modifier, - ACTIONS(53), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(3054), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(996), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(1108), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3052), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(1306), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - ACTIONS(51), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [40970] = 12, + [45859] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2395), 1, + ACTIONS(2486), 1, anon_sym_LPAREN2, - ACTIONS(2397), 1, + ACTIONS(2488), 1, anon_sym_LBRACK, - ACTIONS(3191), 1, + ACTIONS(3272), 1, anon_sym_SLASH, - STATE(668), 1, - sym_argument_list, - ACTIONS(2399), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2405), 2, + STATE(765), 1, + sym_argument_list, + ACTIONS(2490), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3187), 2, + ACTIONS(2492), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3268), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3189), 2, + ACTIONS(3270), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3207), 2, + ACTIONS(3278), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2401), 5, + ACTIONS(2546), 5, aux_sym_preproc_elif_token1, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(2403), 14, + ACTIONS(2548), 14, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -97362,157 +110752,202 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_QMARK, sym_identifier, - [41029] = 18, + [45918] = 7, + ACTIONS(3), 1, + sym_comment, + STATE(865), 1, + sym_attribute_specifier, + ACTIONS(33), 2, + anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(35), 2, + anon_sym___scanf, + anon_sym___printf, + ACTIONS(37), 4, + anon_sym___read_mostly, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + ACTIONS(3049), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_COLON, + ACTIONS(3047), 18, + anon_sym___extension__, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + [45967] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2395), 1, + ACTIONS(2486), 1, anon_sym_LPAREN2, - ACTIONS(2397), 1, + ACTIONS(2488), 1, anon_sym_LBRACK, - ACTIONS(2401), 1, + ACTIONS(2989), 1, aux_sym_preproc_elif_token1, - ACTIONS(3191), 1, + ACTIONS(3272), 1, anon_sym_SLASH, - ACTIONS(3195), 1, + ACTIONS(3280), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3282), 1, + anon_sym_AMP_AMP, + ACTIONS(3284), 1, anon_sym_PIPE, - ACTIONS(3197), 1, + ACTIONS(3286), 1, anon_sym_CARET, - ACTIONS(3199), 1, + ACTIONS(3288), 1, anon_sym_AMP, - STATE(668), 1, + ACTIONS(3292), 1, + anon_sym_QMARK, + STATE(765), 1, sym_argument_list, - ACTIONS(2399), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2405), 2, + ACTIONS(2490), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3187), 2, + ACTIONS(2492), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3268), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3189), 2, + ACTIONS(3270), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3201), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3203), 2, + ACTIONS(3274), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3205), 2, + ACTIONS(3276), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3207), 2, + ACTIONS(3278), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2403), 9, + ACTIONS(3290), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2979), 6, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_QMARK, sym_identifier, - [41100] = 21, + [46044] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2395), 1, + ACTIONS(2486), 1, anon_sym_LPAREN2, - ACTIONS(2397), 1, + ACTIONS(2488), 1, anon_sym_LBRACK, - ACTIONS(2857), 1, - aux_sym_preproc_elif_token1, - ACTIONS(3191), 1, + ACTIONS(3272), 1, anon_sym_SLASH, - ACTIONS(3193), 1, + ACTIONS(3280), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3282), 1, anon_sym_AMP_AMP, - ACTIONS(3195), 1, + ACTIONS(3284), 1, anon_sym_PIPE, - ACTIONS(3197), 1, + ACTIONS(3286), 1, anon_sym_CARET, - ACTIONS(3199), 1, + ACTIONS(3288), 1, anon_sym_AMP, - ACTIONS(3215), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3217), 1, + ACTIONS(3292), 1, anon_sym_QMARK, - STATE(668), 1, + ACTIONS(3296), 1, + aux_sym_preproc_elif_token1, + STATE(765), 1, sym_argument_list, - ACTIONS(2399), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2405), 2, + ACTIONS(2490), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3187), 2, + ACTIONS(2492), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3268), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3189), 2, + ACTIONS(3270), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3201), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3203), 2, + ACTIONS(3274), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3205), 2, + ACTIONS(3276), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3207), 2, + ACTIONS(3278), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2855), 6, + ACTIONS(3290), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3294), 6, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, sym_identifier, - [41177] = 16, + [46121] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1797), 1, - anon_sym___based, - ACTIONS(3048), 1, - sym_identifier, - ACTIONS(3219), 1, + ACTIONS(1831), 1, anon_sym_LPAREN2, - ACTIONS(3221), 1, + ACTIONS(1833), 1, anon_sym_STAR, - STATE(703), 1, + ACTIONS(1835), 1, + anon_sym___based, + ACTIONS(3136), 1, + sym_identifier, + STATE(799), 1, sym_alignas_qualifier, - STATE(1024), 1, + STATE(1149), 1, sym_ms_unaligned_ptr_modifier, - STATE(1308), 1, + STATE(1473), 1, sym__declarator, - STATE(2016), 1, + STATE(2174), 1, sym_ms_based_modifier, - ACTIONS(53), 2, + ACTIONS(55), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(3054), 2, + ACTIONS(3142), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(996), 2, + STATE(1121), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(1106), 2, + STATE(1233), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3052), 3, + ACTIONS(3140), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(1387), 5, + STATE(1569), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - ACTIONS(51), 9, + ACTIONS(53), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -97522,48 +110957,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [41244] = 16, + [46188] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1797), 1, + ACTIONS(1835), 1, anon_sym___based, - ACTIONS(3048), 1, + ACTIONS(3262), 1, sym_identifier, - ACTIONS(3219), 1, + ACTIONS(3264), 1, anon_sym_LPAREN2, - ACTIONS(3221), 1, + ACTIONS(3266), 1, anon_sym_STAR, - STATE(703), 1, + STATE(799), 1, sym_alignas_qualifier, - STATE(1024), 1, + STATE(1149), 1, sym_ms_unaligned_ptr_modifier, - STATE(1333), 1, - sym__declarator, - STATE(2016), 1, + STATE(1392), 1, + sym__field_declarator, + STATE(2274), 1, sym_ms_based_modifier, - ACTIONS(53), 2, + ACTIONS(55), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(3054), 2, + ACTIONS(3142), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(996), 2, + STATE(1121), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(1105), 2, + STATE(1232), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3052), 3, + ACTIONS(3140), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(1387), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - ACTIONS(51), 9, + STATE(1438), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + ACTIONS(53), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -97573,49 +111008,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [41311] = 17, + [46255] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(2395), 1, + ACTIONS(2486), 1, anon_sym_LPAREN2, - ACTIONS(2397), 1, + ACTIONS(2488), 1, anon_sym_LBRACK, - ACTIONS(3191), 1, + ACTIONS(3272), 1, anon_sym_SLASH, - ACTIONS(3197), 1, - anon_sym_CARET, - ACTIONS(3199), 1, - anon_sym_AMP, - STATE(668), 1, + STATE(765), 1, sym_argument_list, - ACTIONS(2399), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2401), 2, - aux_sym_preproc_elif_token1, - anon_sym_PIPE, - ACTIONS(2405), 2, + ACTIONS(2490), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3187), 2, + ACTIONS(2492), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3268), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3189), 2, + ACTIONS(3270), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3201), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3203), 2, + ACTIONS(3274), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3205), 2, + ACTIONS(3276), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3207), 2, + ACTIONS(3278), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2403), 9, + ACTIONS(3290), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2546), 3, + aux_sym_preproc_elif_token1, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(2548), 10, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -97623,38 +111055,50 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_elifdef_token2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_QMARK, sym_identifier, - [41380] = 11, + [46320] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(2395), 1, + ACTIONS(2486), 1, anon_sym_LPAREN2, - ACTIONS(2397), 1, + ACTIONS(2488), 1, anon_sym_LBRACK, - ACTIONS(3191), 1, + ACTIONS(3272), 1, anon_sym_SLASH, - STATE(668), 1, + ACTIONS(3288), 1, + anon_sym_AMP, + STATE(765), 1, sym_argument_list, - ACTIONS(2399), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2405), 2, + ACTIONS(2490), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3187), 2, + ACTIONS(2492), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2546), 2, + aux_sym_preproc_elif_token1, + anon_sym_PIPE, + ACTIONS(3268), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3189), 2, + ACTIONS(3270), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2401), 5, - aux_sym_preproc_elif_token1, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(3274), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2403), 16, + ACTIONS(3276), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3278), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3290), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2548), 10, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -97663,102 +111107,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_QMARK, sym_identifier, - [41437] = 16, + [46387] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1797), 1, - anon_sym___based, - ACTIONS(3048), 1, - sym_identifier, - ACTIONS(3219), 1, - anon_sym_LPAREN2, - ACTIONS(3221), 1, - anon_sym_STAR, - STATE(703), 1, - sym_alignas_qualifier, - STATE(1024), 1, - sym_ms_unaligned_ptr_modifier, - STATE(1333), 1, - sym__declarator, - STATE(2016), 1, - sym_ms_based_modifier, - ACTIONS(53), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(3054), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(988), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(1105), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3052), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(1387), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - ACTIONS(51), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [41504] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2395), 1, + ACTIONS(2486), 1, anon_sym_LPAREN2, - ACTIONS(2397), 1, + ACTIONS(2488), 1, anon_sym_LBRACK, - ACTIONS(3191), 1, + ACTIONS(3272), 1, anon_sym_SLASH, - STATE(668), 1, + ACTIONS(3286), 1, + anon_sym_CARET, + ACTIONS(3288), 1, + anon_sym_AMP, + STATE(765), 1, sym_argument_list, - ACTIONS(2399), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2405), 2, + ACTIONS(2490), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3187), 2, + ACTIONS(2492), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2546), 2, + aux_sym_preproc_elif_token1, + anon_sym_PIPE, + ACTIONS(3268), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3189), 2, + ACTIONS(3270), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3203), 2, + ACTIONS(3274), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3205), 2, + ACTIONS(3276), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3207), 2, + ACTIONS(3278), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2401), 3, - aux_sym_preproc_elif_token1, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(2403), 12, + ACTIONS(3290), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2548), 9, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -97766,66 +111159,119 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_elifdef_token2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_QMARK, sym_identifier, - [41567] = 16, + [46456] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2395), 1, + ACTIONS(2486), 1, anon_sym_LPAREN2, - ACTIONS(2397), 1, + ACTIONS(2488), 1, anon_sym_LBRACK, - ACTIONS(3191), 1, + ACTIONS(2546), 1, + aux_sym_preproc_elif_token1, + ACTIONS(3272), 1, anon_sym_SLASH, - ACTIONS(3199), 1, + ACTIONS(3284), 1, + anon_sym_PIPE, + ACTIONS(3286), 1, + anon_sym_CARET, + ACTIONS(3288), 1, anon_sym_AMP, - STATE(668), 1, + STATE(765), 1, sym_argument_list, - ACTIONS(2399), 2, + ACTIONS(2490), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2492), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2401), 2, + ACTIONS(3268), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3270), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3274), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3276), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3278), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3290), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2548), 9, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_QMARK, + sym_identifier, + [46527] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2486), 1, + anon_sym_LPAREN2, + ACTIONS(2488), 1, + anon_sym_LBRACK, + ACTIONS(2546), 1, aux_sym_preproc_elif_token1, + ACTIONS(3272), 1, + anon_sym_SLASH, + ACTIONS(3282), 1, + anon_sym_AMP_AMP, + ACTIONS(3284), 1, anon_sym_PIPE, - ACTIONS(2405), 2, + ACTIONS(3286), 1, + anon_sym_CARET, + ACTIONS(3288), 1, + anon_sym_AMP, + STATE(765), 1, + sym_argument_list, + ACTIONS(2490), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3187), 2, + ACTIONS(2492), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3268), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3189), 2, + ACTIONS(3270), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3201), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3203), 2, + ACTIONS(3274), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3205), 2, + ACTIONS(3276), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3207), 2, + ACTIONS(3278), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2403), 10, + ACTIONS(3290), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2548), 8, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_QMARK, sym_identifier, - [41634] = 7, + [46600] = 7, ACTIONS(3), 1, sym_comment, - STATE(743), 1, + STATE(876), 1, sym_attribute_specifier, ACTIONS(33), 2, anon_sym___attribute__, @@ -97833,18 +111279,19 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(35), 2, anon_sym___scanf, anon_sym___printf, - ACTIONS(37), 3, + ACTIONS(37), 4, anon_sym___read_mostly, anon_sym___ro_after_init, - anon_sym___init, - ACTIONS(2986), 6, + anon_sym___noreturn, + anon_sym___cold, + ACTIONS(3062), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_LBRACK, anon_sym_COLON, - ACTIONS(2984), 18, + ACTIONS(3060), 18, anon_sym___extension__, anon_sym___based, anon_sym_signed, @@ -97863,35 +111310,145 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [41682] = 7, + [46649] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2486), 1, + anon_sym_LPAREN2, + ACTIONS(2488), 1, + anon_sym_LBRACK, + ACTIONS(3272), 1, + anon_sym_SLASH, + STATE(765), 1, + sym_argument_list, + ACTIONS(2490), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2492), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3270), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2546), 7, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2548), 16, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_QMARK, + sym_identifier, + [46704] = 16, ACTIONS(3), 1, sym_comment, - STATE(1024), 1, + ACTIONS(1835), 1, + anon_sym___based, + ACTIONS(3262), 1, + sym_identifier, + ACTIONS(3264), 1, + anon_sym_LPAREN2, + ACTIONS(3266), 1, + anon_sym_STAR, + STATE(799), 1, + sym_alignas_qualifier, + STATE(1149), 1, sym_ms_unaligned_ptr_modifier, - ACTIONS(3234), 2, + STATE(1393), 1, + sym__field_declarator, + STATE(2274), 1, + sym_ms_based_modifier, + ACTIONS(55), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(3142), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(996), 2, + STATE(1121), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - ACTIONS(3231), 3, + STATE(1237), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3140), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(3229), 6, - anon_sym_COMMA, - anon_sym_RPAREN, + STATE(1438), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + ACTIONS(53), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [46771] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1835), 1, + anon_sym___based, + ACTIONS(3262), 1, + sym_identifier, + ACTIONS(3264), 1, anon_sym_LPAREN2, + ACTIONS(3266), 1, anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_COLON, - ACTIONS(3227), 18, + STATE(799), 1, + sym_alignas_qualifier, + STATE(1149), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1393), 1, + sym__field_declarator, + STATE(2274), 1, + sym_ms_based_modifier, + ACTIONS(55), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(3142), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(1110), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(1237), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3140), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(1438), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + ACTIONS(53), 9, anon_sym___extension__, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -97900,33 +111457,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + [46838] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1831), 1, + anon_sym_LPAREN2, + ACTIONS(1833), 1, + anon_sym_STAR, + ACTIONS(1835), 1, + anon_sym___based, + ACTIONS(3136), 1, + sym_identifier, + STATE(799), 1, + sym_alignas_qualifier, + STATE(1149), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1465), 1, + sym__declarator, + STATE(2174), 1, + sym_ms_based_modifier, + ACTIONS(55), 2, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, - sym_identifier, - [41730] = 7, + ACTIONS(3142), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(1109), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(1230), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3140), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(1569), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + ACTIONS(53), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [46905] = 7, ACTIONS(3), 1, sym_comment, - STATE(761), 1, - sym_attribute_specifier, - ACTIONS(33), 2, - anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(35), 2, - anon_sym___scanf, - anon_sym___printf, - ACTIONS(37), 3, - anon_sym___read_mostly, - anon_sym___ro_after_init, - anon_sym___init, - ACTIONS(2999), 6, + STATE(1149), 1, + sym_ms_unaligned_ptr_modifier, + ACTIONS(3305), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(1121), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(3302), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(3300), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_LBRACK, anon_sym_COLON, - ACTIONS(2997), 18, + ACTIONS(3298), 18, anon_sym___extension__, anon_sym___based, anon_sym_signed, @@ -97945,35 +111549,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [41778] = 7, + [46953] = 15, ACTIONS(3), 1, sym_comment, - STATE(748), 1, - sym_attribute_specifier, - ACTIONS(33), 2, - anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(35), 2, - anon_sym___scanf, - anon_sym___printf, - ACTIONS(37), 3, - anon_sym___read_mostly, - anon_sym___ro_after_init, - anon_sym___init, - ACTIONS(2973), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_COLON, - ACTIONS(2971), 18, - anon_sym___extension__, - anon_sym___based, + ACTIONS(61), 1, + anon_sym_struct, + ACTIONS(63), 1, + anon_sym_union, + ACTIONS(1799), 1, + anon_sym_enum, + ACTIONS(3308), 1, + sym_identifier, + ACTIONS(3312), 1, + sym_primitive_type, + STATE(799), 1, + sym_alignas_qualifier, + STATE(1256), 1, + sym_type_specifier, + STATE(1287), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1406), 1, + sym__type_definition_type, + ACTIONS(55), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(1136), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3310), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + STATE(873), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(53), 9, + anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -97982,49 +111597,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - sym_identifier, - [41826] = 15, + [47016] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(55), 1, + ACTIONS(57), 1, sym_primitive_type, - ACTIONS(59), 1, - anon_sym_struct, ACTIONS(61), 1, + anon_sym_struct, + ACTIONS(63), 1, anon_sym_union, - ACTIONS(1728), 1, + ACTIONS(1799), 1, anon_sym_enum, - ACTIONS(1809), 1, + ACTIONS(2008), 1, sym_identifier, - STATE(703), 1, + STATE(799), 1, sym_alignas_qualifier, - STATE(1098), 1, + STATE(1220), 1, sym_type_specifier, - STATE(1112), 1, + STATE(1246), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1805), 1, + STATE(2089), 1, sym_type_descriptor, - ACTIONS(53), 2, + ACTIONS(55), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1017), 2, + STATE(1135), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(1726), 4, + ACTIONS(1797), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(746), 5, + STATE(873), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - ACTIONS(51), 9, + ACTIONS(53), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -98034,45 +111645,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [41889] = 15, + [47079] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(59), 1, - anon_sym_struct, + ACTIONS(57), 1, + sym_primitive_type, ACTIONS(61), 1, + anon_sym_struct, + ACTIONS(63), 1, anon_sym_union, - ACTIONS(1728), 1, - anon_sym_enum, - ACTIONS(3237), 1, + ACTIONS(2008), 1, sym_identifier, - ACTIONS(3241), 1, - sym_primitive_type, - STATE(703), 1, + ACTIONS(3314), 1, + anon_sym_enum, + STATE(799), 1, sym_alignas_qualifier, - STATE(1115), 1, + STATE(1220), 1, sym_type_specifier, - STATE(1138), 1, + STATE(1246), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1275), 1, - sym__type_definition_type, - ACTIONS(53), 2, + STATE(2046), 1, + sym_type_descriptor, + ACTIONS(55), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1018), 2, + STATE(1139), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3239), 4, + ACTIONS(1797), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(746), 5, + STATE(873), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - ACTIONS(51), 9, + ACTIONS(53), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -98082,45 +111693,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [41952] = 15, + [47142] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(59), 1, - anon_sym_struct, ACTIONS(61), 1, + anon_sym_struct, + ACTIONS(63), 1, anon_sym_union, - ACTIONS(1728), 1, + ACTIONS(1799), 1, anon_sym_enum, - ACTIONS(3237), 1, + ACTIONS(3308), 1, sym_identifier, - ACTIONS(3241), 1, + ACTIONS(3312), 1, sym_primitive_type, - STATE(703), 1, + STATE(799), 1, sym_alignas_qualifier, - STATE(1115), 1, + STATE(1256), 1, sym_type_specifier, - STATE(1138), 1, + STATE(1287), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1274), 1, + STATE(1405), 1, sym__type_definition_type, - ACTIONS(53), 2, + ACTIONS(55), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1018), 2, + STATE(1136), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3239), 4, + ACTIONS(3310), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(746), 5, + STATE(873), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - ACTIONS(51), 9, + ACTIONS(53), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -98130,45 +111741,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [42015] = 15, + [47205] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(55), 1, + ACTIONS(57), 1, sym_primitive_type, - ACTIONS(59), 1, - anon_sym_struct, ACTIONS(61), 1, + anon_sym_struct, + ACTIONS(63), 1, anon_sym_union, - ACTIONS(1809), 1, + ACTIONS(2008), 1, sym_identifier, - ACTIONS(3243), 1, + ACTIONS(3314), 1, anon_sym_enum, - STATE(703), 1, + STATE(799), 1, sym_alignas_qualifier, - STATE(1098), 1, + STATE(1220), 1, sym_type_specifier, - STATE(1112), 1, + STATE(1246), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2001), 1, + STATE(2264), 1, sym_type_descriptor, - ACTIONS(53), 2, + ACTIONS(55), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1013), 2, + STATE(1139), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(1726), 4, + ACTIONS(1797), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(746), 5, + STATE(873), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - ACTIONS(51), 9, + ACTIONS(53), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -98178,45 +111789,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [42078] = 15, + [47268] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(55), 1, - sym_primitive_type, - ACTIONS(59), 1, + ACTIONS(61), 1, anon_sym_struct, + ACTIONS(63), 1, + anon_sym_union, + ACTIONS(1799), 1, + anon_sym_enum, + ACTIONS(3308), 1, + sym_identifier, + ACTIONS(3312), 1, + sym_primitive_type, + STATE(799), 1, + sym_alignas_qualifier, + STATE(1256), 1, + sym_type_specifier, + STATE(1287), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1400), 1, + sym__type_definition_type, + ACTIONS(55), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(1136), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3310), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(873), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(53), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [47331] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(57), 1, + sym_primitive_type, ACTIONS(61), 1, + anon_sym_struct, + ACTIONS(63), 1, anon_sym_union, - ACTIONS(1728), 1, + ACTIONS(1799), 1, anon_sym_enum, - ACTIONS(1809), 1, + ACTIONS(2008), 1, sym_identifier, - STATE(703), 1, + STATE(799), 1, sym_alignas_qualifier, - STATE(1098), 1, + STATE(1220), 1, sym_type_specifier, - STATE(1112), 1, + STATE(1246), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1844), 1, + STATE(2088), 1, sym_type_descriptor, - ACTIONS(53), 2, + ACTIONS(55), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1017), 2, + STATE(1135), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(1726), 4, + ACTIONS(1797), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(746), 5, + STATE(873), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - ACTIONS(51), 9, + ACTIONS(53), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -98226,45 +111885,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [42141] = 15, + [47394] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(59), 1, - anon_sym_struct, ACTIONS(61), 1, + anon_sym_struct, + ACTIONS(63), 1, anon_sym_union, - ACTIONS(1728), 1, + ACTIONS(1799), 1, anon_sym_enum, - ACTIONS(3237), 1, + ACTIONS(3308), 1, sym_identifier, - ACTIONS(3241), 1, + ACTIONS(3312), 1, sym_primitive_type, - STATE(703), 1, + STATE(799), 1, sym_alignas_qualifier, - STATE(1115), 1, + STATE(1256), 1, sym_type_specifier, - STATE(1138), 1, + STATE(1287), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1282), 1, + STATE(1401), 1, sym__type_definition_type, - ACTIONS(53), 2, + ACTIONS(55), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1018), 2, + STATE(1136), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3239), 4, + ACTIONS(3310), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(746), 5, + STATE(873), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - ACTIONS(51), 9, + ACTIONS(53), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -98274,45 +111933,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [42204] = 15, + [47457] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(59), 1, - anon_sym_struct, ACTIONS(61), 1, + anon_sym_struct, + ACTIONS(63), 1, anon_sym_union, - ACTIONS(1728), 1, + ACTIONS(1799), 1, anon_sym_enum, - ACTIONS(3237), 1, + ACTIONS(3308), 1, sym_identifier, - ACTIONS(3241), 1, + ACTIONS(3312), 1, sym_primitive_type, - STATE(703), 1, + STATE(799), 1, sym_alignas_qualifier, - STATE(1115), 1, + STATE(1256), 1, sym_type_specifier, - STATE(1138), 1, + STATE(1287), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1279), 1, + STATE(1402), 1, sym__type_definition_type, - ACTIONS(53), 2, + ACTIONS(55), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1018), 2, + STATE(1136), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3239), 4, + ACTIONS(3310), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(746), 5, + STATE(873), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - ACTIONS(51), 9, + ACTIONS(53), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -98322,45 +111981,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [42267] = 15, + [47520] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(59), 1, - anon_sym_struct, ACTIONS(61), 1, + anon_sym_struct, + ACTIONS(63), 1, anon_sym_union, - ACTIONS(1728), 1, + ACTIONS(1799), 1, anon_sym_enum, - ACTIONS(3237), 1, + ACTIONS(3308), 1, sym_identifier, - ACTIONS(3241), 1, + ACTIONS(3312), 1, sym_primitive_type, - STATE(703), 1, + STATE(799), 1, sym_alignas_qualifier, - STATE(1115), 1, + STATE(1256), 1, sym_type_specifier, - STATE(1138), 1, + STATE(1287), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1276), 1, + STATE(1411), 1, sym__type_definition_type, - ACTIONS(53), 2, + ACTIONS(55), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1018), 2, + STATE(1136), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3239), 4, + ACTIONS(3310), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(746), 5, + STATE(873), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - ACTIONS(51), 9, + ACTIONS(53), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -98370,45 +112029,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [42330] = 15, + [47583] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(59), 1, - anon_sym_struct, + ACTIONS(57), 1, + sym_primitive_type, ACTIONS(61), 1, + anon_sym_struct, + ACTIONS(63), 1, anon_sym_union, - ACTIONS(1728), 1, + ACTIONS(1799), 1, anon_sym_enum, - ACTIONS(3237), 1, + ACTIONS(2008), 1, sym_identifier, - ACTIONS(3241), 1, - sym_primitive_type, - STATE(703), 1, + STATE(799), 1, sym_alignas_qualifier, - STATE(1115), 1, + STATE(1220), 1, sym_type_specifier, - STATE(1138), 1, + STATE(1246), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1278), 1, - sym__type_definition_type, - ACTIONS(53), 2, + STATE(2093), 1, + sym_type_descriptor, + ACTIONS(55), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1018), 2, + STATE(1135), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3239), 4, + ACTIONS(1797), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(746), 5, + STATE(873), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - ACTIONS(51), 9, + ACTIONS(53), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -98418,45 +112077,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [42393] = 15, + [47646] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(59), 1, - anon_sym_struct, ACTIONS(61), 1, + anon_sym_struct, + ACTIONS(63), 1, anon_sym_union, - ACTIONS(1728), 1, + ACTIONS(1799), 1, anon_sym_enum, - ACTIONS(3237), 1, + ACTIONS(3308), 1, sym_identifier, - ACTIONS(3241), 1, + ACTIONS(3312), 1, sym_primitive_type, - STATE(703), 1, + STATE(799), 1, sym_alignas_qualifier, - STATE(1115), 1, + STATE(1256), 1, sym_type_specifier, - STATE(1138), 1, + STATE(1287), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1283), 1, + STATE(1408), 1, sym__type_definition_type, - ACTIONS(53), 2, + ACTIONS(55), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1018), 2, + STATE(1136), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3239), 4, + ACTIONS(3310), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(746), 5, + STATE(873), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - ACTIONS(51), 9, + ACTIONS(53), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -98466,45 +112125,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [42456] = 15, + [47709] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(59), 1, - anon_sym_struct, ACTIONS(61), 1, + anon_sym_struct, + ACTIONS(63), 1, anon_sym_union, - ACTIONS(1728), 1, + ACTIONS(1799), 1, anon_sym_enum, - ACTIONS(3237), 1, + ACTIONS(3308), 1, sym_identifier, - ACTIONS(3241), 1, + ACTIONS(3312), 1, sym_primitive_type, - STATE(703), 1, + STATE(799), 1, sym_alignas_qualifier, - STATE(1115), 1, + STATE(1256), 1, sym_type_specifier, - STATE(1138), 1, + STATE(1287), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1277), 1, + STATE(1407), 1, sym__type_definition_type, - ACTIONS(53), 2, + ACTIONS(55), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1018), 2, + STATE(1136), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3239), 4, + ACTIONS(3310), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(746), 5, + STATE(873), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - ACTIONS(51), 9, + ACTIONS(53), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -98514,45 +112173,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [42519] = 15, + [47772] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(55), 1, + ACTIONS(57), 1, sym_primitive_type, - ACTIONS(59), 1, - anon_sym_struct, ACTIONS(61), 1, + anon_sym_struct, + ACTIONS(63), 1, anon_sym_union, - ACTIONS(1809), 1, - sym_identifier, - ACTIONS(3243), 1, + ACTIONS(1799), 1, anon_sym_enum, - STATE(703), 1, + ACTIONS(2008), 1, + sym_identifier, + STATE(799), 1, sym_alignas_qualifier, - STATE(1098), 1, + STATE(1226), 1, sym_type_specifier, - STATE(1112), 1, + STATE(1246), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1783), 1, - sym_type_descriptor, - ACTIONS(53), 2, + ACTIONS(55), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1013), 2, + STATE(1141), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(1726), 4, + ACTIONS(1797), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(746), 5, + STATE(873), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - ACTIONS(51), 9, + ACTIONS(53), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -98562,45 +112219,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [42582] = 15, + [47832] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(55), 1, - sym_primitive_type, - ACTIONS(59), 1, - anon_sym_struct, ACTIONS(61), 1, + anon_sym_struct, + ACTIONS(63), 1, anon_sym_union, - ACTIONS(1728), 1, + ACTIONS(1799), 1, anon_sym_enum, - ACTIONS(1809), 1, + ACTIONS(3308), 1, sym_identifier, - STATE(703), 1, + ACTIONS(3312), 1, + sym_primitive_type, + STATE(799), 1, sym_alignas_qualifier, - STATE(1098), 1, + STATE(1254), 1, sym_type_specifier, - STATE(1112), 1, + STATE(1287), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1828), 1, - sym_type_descriptor, - ACTIONS(53), 2, + ACTIONS(55), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1017), 2, + STATE(1141), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(1726), 4, + ACTIONS(3310), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(746), 5, + STATE(873), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - ACTIONS(51), 9, + ACTIONS(53), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -98610,82 +112265,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [42645] = 7, + [47892] = 14, ACTIONS(3), 1, sym_comment, - STATE(703), 1, - sym_alignas_qualifier, - ACTIONS(3252), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(1012), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3247), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_COLON, - ACTIONS(3249), 9, - anon_sym___extension__, - 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(3245), 10, + ACTIONS(1835), 1, 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, + ACTIONS(3220), 1, sym_identifier, - [42691] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(55), 1, + ACTIONS(3222), 1, + anon_sym_LPAREN2, + ACTIONS(3224), 1, + anon_sym_STAR, + ACTIONS(3228), 1, sym_primitive_type, - ACTIONS(59), 1, - anon_sym_struct, - ACTIONS(61), 1, - anon_sym_union, - ACTIONS(1809), 1, - sym_identifier, - ACTIONS(3243), 1, - anon_sym_enum, - STATE(703), 1, + STATE(799), 1, sym_alignas_qualifier, - STATE(1101), 1, - sym_type_specifier, - STATE(1112), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(53), 2, + STATE(1403), 1, + sym__type_declarator, + STATE(2043), 1, + sym_ms_based_modifier, + ACTIONS(55), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1012), 2, + STATE(1141), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(1726), 4, + ACTIONS(3226), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(746), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(51), 9, + STATE(1443), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(53), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -98695,96 +112311,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [42751] = 21, + [47952] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2395), 1, + ACTIONS(2486), 1, anon_sym_LPAREN2, - ACTIONS(2397), 1, + ACTIONS(2488), 1, anon_sym_LBRACK, - ACTIONS(3123), 1, + ACTIONS(3198), 1, anon_sym_SLASH, - ACTIONS(3125), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3127), 1, + ACTIONS(3200), 1, anon_sym_AMP_AMP, - ACTIONS(3129), 1, + ACTIONS(3202), 1, anon_sym_PIPE, - ACTIONS(3131), 1, + ACTIONS(3204), 1, anon_sym_CARET, - ACTIONS(3133), 1, + ACTIONS(3206), 1, anon_sym_AMP, - ACTIONS(3143), 1, + ACTIONS(3216), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3218), 1, anon_sym_QMARK, - ACTIONS(3255), 1, + ACTIONS(3316), 1, anon_sym_COMMA, - STATE(668), 1, + STATE(765), 1, sym_argument_list, - ACTIONS(2399), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2405), 2, + ACTIONS(2490), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3119), 2, + ACTIONS(2492), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3194), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3121), 2, + ACTIONS(3196), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3135), 2, + ACTIONS(3208), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3137), 2, + ACTIONS(3210), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3139), 2, + ACTIONS(3212), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3141), 2, + ACTIONS(3214), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3257), 3, + ACTIONS(3318), 3, anon_sym_RPAREN, anon_sym_SEMI, anon_sym_COLON, - [42825] = 14, + [48026] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1797), 1, - anon_sym___based, - ACTIONS(3145), 1, - sym_identifier, - ACTIONS(3147), 1, - anon_sym_LPAREN2, - ACTIONS(3149), 1, - anon_sym_STAR, - ACTIONS(3153), 1, + ACTIONS(57), 1, sym_primitive_type, - STATE(703), 1, + ACTIONS(61), 1, + anon_sym_struct, + ACTIONS(63), 1, + anon_sym_union, + ACTIONS(2008), 1, + sym_identifier, + ACTIONS(3314), 1, + anon_sym_enum, + STATE(799), 1, sym_alignas_qualifier, - STATE(1289), 1, - sym__type_declarator, - STATE(1891), 1, - sym_ms_based_modifier, - ACTIONS(53), 2, + STATE(1226), 1, + sym_type_specifier, + STATE(1246), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(55), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1012), 2, + STATE(1141), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3151), 4, + ACTIONS(1797), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1322), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(51), 9, + STATE(873), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(53), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -98794,43 +112410,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [42885] = 14, + [48086] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1797), 1, + ACTIONS(1835), 1, anon_sym___based, - ACTIONS(3145), 1, + ACTIONS(3220), 1, sym_identifier, - ACTIONS(3147), 1, + ACTIONS(3222), 1, anon_sym_LPAREN2, - ACTIONS(3149), 1, + ACTIONS(3224), 1, anon_sym_STAR, - ACTIONS(3153), 1, + ACTIONS(3228), 1, sym_primitive_type, - STATE(703), 1, + STATE(799), 1, sym_alignas_qualifier, - STATE(1286), 1, + STATE(1410), 1, sym__type_declarator, - STATE(1891), 1, + STATE(2043), 1, sym_ms_based_modifier, - ACTIONS(53), 2, + ACTIONS(55), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1012), 2, + STATE(1141), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3151), 4, + ACTIONS(3226), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1322), 5, + STATE(1443), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - ACTIONS(51), 9, + ACTIONS(53), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -98840,43 +112456,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [42945] = 14, + [48146] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(55), 1, - sym_primitive_type, - ACTIONS(59), 1, - anon_sym_struct, - ACTIONS(61), 1, - anon_sym_union, - ACTIONS(1728), 1, - anon_sym_enum, - ACTIONS(1809), 1, - sym_identifier, - STATE(703), 1, + STATE(799), 1, sym_alignas_qualifier, - STATE(1101), 1, - sym_type_specifier, - STATE(1112), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(53), 2, + ACTIONS(3327), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1012), 2, + STATE(1141), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(1726), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(746), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(51), 9, + ACTIONS(3322), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_COLON, + ACTIONS(3324), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -98886,120 +112484,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [43005] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(59), 1, - anon_sym_struct, - ACTIONS(61), 1, - anon_sym_union, - ACTIONS(1728), 1, - anon_sym_enum, - ACTIONS(3237), 1, - sym_identifier, - ACTIONS(3241), 1, - sym_primitive_type, - STATE(703), 1, - sym_alignas_qualifier, - STATE(1116), 1, - sym_type_specifier, - STATE(1138), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(53), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(1012), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3239), 4, + ACTIONS(3320), 10, + anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(746), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(51), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [43065] = 14, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [48192] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1797), 1, + ACTIONS(1835), 1, anon_sym___based, - ACTIONS(3145), 1, + ACTIONS(3220), 1, sym_identifier, - ACTIONS(3147), 1, + ACTIONS(3222), 1, anon_sym_LPAREN2, - ACTIONS(3149), 1, + ACTIONS(3224), 1, anon_sym_STAR, - ACTIONS(3153), 1, + ACTIONS(3228), 1, sym_primitive_type, - STATE(703), 1, + STATE(799), 1, sym_alignas_qualifier, - STATE(1287), 1, + STATE(1399), 1, sym__type_declarator, - STATE(1891), 1, + STATE(2043), 1, sym_ms_based_modifier, - ACTIONS(53), 2, + ACTIONS(55), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1012), 2, + STATE(1141), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3151), 4, + ACTIONS(3226), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1322), 5, + STATE(1443), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - ACTIONS(51), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [43125] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3261), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_COLON, - ACTIONS(3259), 23, + ACTIONS(53), 9, anon_sym___extension__, - anon_sym___based, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - anon_sym__unaligned, - anon_sym___unaligned, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -99008,180 +112541,123 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - sym_identifier, - [43162] = 22, + [48252] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(2395), 1, + ACTIONS(2486), 1, anon_sym_LPAREN2, - ACTIONS(2397), 1, + ACTIONS(2488), 1, anon_sym_LBRACK, - ACTIONS(3123), 1, + ACTIONS(3198), 1, anon_sym_SLASH, - ACTIONS(3125), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3127), 1, + ACTIONS(3200), 1, anon_sym_AMP_AMP, - ACTIONS(3129), 1, + ACTIONS(3202), 1, anon_sym_PIPE, - ACTIONS(3131), 1, + ACTIONS(3204), 1, anon_sym_CARET, - ACTIONS(3133), 1, + ACTIONS(3206), 1, anon_sym_AMP, - ACTIONS(3143), 1, - anon_sym_QMARK, - ACTIONS(3263), 1, - anon_sym_COMMA, - ACTIONS(3265), 1, - anon_sym_RBRACE, - STATE(668), 1, - sym_argument_list, - STATE(1559), 1, - aux_sym_initializer_list_repeat1, - ACTIONS(2399), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2405), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(3119), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3121), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3135), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3137), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3139), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3141), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [43237] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2395), 1, - anon_sym_LPAREN2, - ACTIONS(2397), 1, - anon_sym_LBRACK, - ACTIONS(3123), 1, - anon_sym_SLASH, - ACTIONS(3125), 1, + ACTIONS(3216), 1, anon_sym_PIPE_PIPE, - ACTIONS(3127), 1, - anon_sym_AMP_AMP, - ACTIONS(3129), 1, - anon_sym_PIPE, - ACTIONS(3131), 1, - anon_sym_CARET, - ACTIONS(3133), 1, - anon_sym_AMP, - ACTIONS(3143), 1, + ACTIONS(3218), 1, anon_sym_QMARK, - ACTIONS(3267), 1, + ACTIONS(3330), 1, anon_sym_COMMA, - ACTIONS(3269), 1, + ACTIONS(3332), 1, anon_sym_RPAREN, - STATE(668), 1, + STATE(765), 1, sym_argument_list, - STATE(1588), 1, - aux_sym_argument_list_repeat1, - ACTIONS(2399), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2405), 2, + STATE(1817), 1, + aux_sym_generic_expression_repeat1, + ACTIONS(2490), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3119), 2, + ACTIONS(2492), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3194), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3121), 2, + ACTIONS(3196), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3135), 2, + ACTIONS(3208), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3137), 2, + ACTIONS(3210), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3139), 2, + ACTIONS(3212), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3141), 2, + ACTIONS(3214), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [43312] = 22, + [48327] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(2395), 1, + ACTIONS(2486), 1, anon_sym_LPAREN2, - ACTIONS(2397), 1, + ACTIONS(2488), 1, anon_sym_LBRACK, - ACTIONS(3123), 1, + ACTIONS(3198), 1, anon_sym_SLASH, - ACTIONS(3125), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3127), 1, + ACTIONS(3200), 1, anon_sym_AMP_AMP, - ACTIONS(3129), 1, + ACTIONS(3202), 1, anon_sym_PIPE, - ACTIONS(3131), 1, + ACTIONS(3204), 1, anon_sym_CARET, - ACTIONS(3133), 1, + ACTIONS(3206), 1, anon_sym_AMP, - ACTIONS(3143), 1, + ACTIONS(3216), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3218), 1, anon_sym_QMARK, - ACTIONS(3267), 1, + ACTIONS(3334), 1, anon_sym_COMMA, - ACTIONS(3271), 1, + ACTIONS(3336), 1, anon_sym_RPAREN, - STATE(668), 1, + STATE(765), 1, sym_argument_list, - STATE(1548), 1, + STATE(1777), 1, aux_sym_argument_list_repeat1, - ACTIONS(2399), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2405), 2, + ACTIONS(2490), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3119), 2, + ACTIONS(2492), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3194), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3121), 2, + ACTIONS(3196), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3135), 2, + ACTIONS(3208), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3137), 2, + ACTIONS(3210), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3139), 2, + ACTIONS(3212), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3141), 2, + ACTIONS(3214), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [43387] = 3, + [48402] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3275), 6, + ACTIONS(3340), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_LBRACK, anon_sym_COLON, - ACTIONS(3273), 23, + ACTIONS(3338), 23, anon_sym___extension__, anon_sym___based, sym_ms_restrict_modifier, @@ -99205,3617 +112681,3740 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [43424] = 22, + [48439] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(2395), 1, + ACTIONS(2486), 1, anon_sym_LPAREN2, - ACTIONS(2397), 1, + ACTIONS(2488), 1, anon_sym_LBRACK, - ACTIONS(3123), 1, + ACTIONS(3198), 1, anon_sym_SLASH, - ACTIONS(3125), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3127), 1, + ACTIONS(3200), 1, anon_sym_AMP_AMP, - ACTIONS(3129), 1, + ACTIONS(3202), 1, anon_sym_PIPE, - ACTIONS(3131), 1, + ACTIONS(3204), 1, anon_sym_CARET, - ACTIONS(3133), 1, + ACTIONS(3206), 1, anon_sym_AMP, - ACTIONS(3143), 1, + ACTIONS(3216), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3218), 1, anon_sym_QMARK, - ACTIONS(3267), 1, + ACTIONS(3334), 1, anon_sym_COMMA, - ACTIONS(3277), 1, + ACTIONS(3342), 1, anon_sym_RPAREN, - STATE(668), 1, + STATE(765), 1, sym_argument_list, - STATE(1667), 1, + STATE(1769), 1, aux_sym_argument_list_repeat1, - ACTIONS(2399), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2405), 2, + ACTIONS(2490), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3119), 2, + ACTIONS(2492), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3194), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3121), 2, + ACTIONS(3196), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3135), 2, + ACTIONS(3208), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3137), 2, + ACTIONS(3210), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3139), 2, + ACTIONS(3212), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3141), 2, + ACTIONS(3214), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [43499] = 22, + [48514] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(2395), 1, + ACTIONS(2486), 1, anon_sym_LPAREN2, - ACTIONS(2397), 1, + ACTIONS(2488), 1, anon_sym_LBRACK, - ACTIONS(3123), 1, + ACTIONS(3198), 1, anon_sym_SLASH, - ACTIONS(3125), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3127), 1, + ACTIONS(3200), 1, anon_sym_AMP_AMP, - ACTIONS(3129), 1, + ACTIONS(3202), 1, anon_sym_PIPE, - ACTIONS(3131), 1, + ACTIONS(3204), 1, anon_sym_CARET, - ACTIONS(3133), 1, + ACTIONS(3206), 1, anon_sym_AMP, - ACTIONS(3143), 1, + ACTIONS(3216), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3218), 1, anon_sym_QMARK, - ACTIONS(3267), 1, + ACTIONS(3334), 1, anon_sym_COMMA, - ACTIONS(3279), 1, + ACTIONS(3344), 1, anon_sym_RPAREN, - STATE(668), 1, + STATE(765), 1, sym_argument_list, - STATE(1574), 1, + STATE(1837), 1, aux_sym_argument_list_repeat1, - ACTIONS(2399), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2405), 2, + ACTIONS(2490), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3119), 2, + ACTIONS(2492), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3194), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3121), 2, + ACTIONS(3196), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3135), 2, + ACTIONS(3208), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3137), 2, + ACTIONS(3210), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3139), 2, + ACTIONS(3212), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3141), 2, + ACTIONS(3214), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [43574] = 22, + [48589] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(2395), 1, + ACTIONS(2486), 1, anon_sym_LPAREN2, - ACTIONS(2397), 1, + ACTIONS(2488), 1, anon_sym_LBRACK, - ACTIONS(3123), 1, + ACTIONS(3198), 1, anon_sym_SLASH, - ACTIONS(3125), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3127), 1, + ACTIONS(3200), 1, anon_sym_AMP_AMP, - ACTIONS(3129), 1, + ACTIONS(3202), 1, anon_sym_PIPE, - ACTIONS(3131), 1, + ACTIONS(3204), 1, anon_sym_CARET, - ACTIONS(3133), 1, + ACTIONS(3206), 1, anon_sym_AMP, - ACTIONS(3143), 1, + ACTIONS(3216), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3218), 1, anon_sym_QMARK, - ACTIONS(3281), 1, + ACTIONS(3346), 1, anon_sym_COMMA, - ACTIONS(3283), 1, - anon_sym_RPAREN, - STATE(668), 1, + ACTIONS(3348), 1, + anon_sym_RBRACE, + STATE(765), 1, sym_argument_list, - STATE(1625), 1, - aux_sym_generic_expression_repeat1, - ACTIONS(2399), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2405), 2, + STATE(1880), 1, + aux_sym_initializer_list_repeat1, + ACTIONS(2490), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3119), 2, + ACTIONS(2492), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3194), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3121), 2, + ACTIONS(3196), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3135), 2, + ACTIONS(3208), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3137), 2, + ACTIONS(3210), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3139), 2, + ACTIONS(3212), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3141), 2, + ACTIONS(3214), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [43649] = 21, + [48664] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2395), 1, + ACTIONS(3352), 6, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(2397), 1, + anon_sym_STAR, anon_sym_LBRACK, - ACTIONS(3123), 1, + anon_sym_COLON, + ACTIONS(3350), 23, + anon_sym___extension__, + anon_sym___based, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + anon_sym__unaligned, + anon_sym___unaligned, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + [48701] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2486), 1, + anon_sym_LPAREN2, + ACTIONS(2488), 1, + anon_sym_LBRACK, + ACTIONS(3198), 1, anon_sym_SLASH, - ACTIONS(3125), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3127), 1, + ACTIONS(3200), 1, anon_sym_AMP_AMP, - ACTIONS(3129), 1, + ACTIONS(3202), 1, anon_sym_PIPE, - ACTIONS(3131), 1, + ACTIONS(3204), 1, anon_sym_CARET, - ACTIONS(3133), 1, + ACTIONS(3206), 1, anon_sym_AMP, - ACTIONS(3143), 1, + ACTIONS(3216), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3218), 1, anon_sym_QMARK, - ACTIONS(3255), 1, + ACTIONS(3334), 1, anon_sym_COMMA, - ACTIONS(3285), 1, + ACTIONS(3354), 1, anon_sym_RPAREN, - STATE(668), 1, + STATE(765), 1, sym_argument_list, - ACTIONS(2399), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2405), 2, + STATE(1764), 1, + aux_sym_argument_list_repeat1, + ACTIONS(2490), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3119), 2, + ACTIONS(2492), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3194), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3121), 2, + ACTIONS(3196), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3135), 2, + ACTIONS(3208), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3137), 2, + ACTIONS(3210), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3139), 2, + ACTIONS(3212), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3141), 2, + ACTIONS(3214), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [43721] = 15, + [48776] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2397), 1, + ACTIONS(2488), 1, anon_sym_LBRACK, - ACTIONS(2399), 1, + ACTIONS(2492), 1, anon_sym_DASH_GT, - ACTIONS(3091), 1, + ACTIONS(2546), 1, + anon_sym_PIPE, + ACTIONS(3166), 1, anon_sym_LPAREN2, - ACTIONS(3109), 1, + ACTIONS(3192), 1, anon_sym_DOT, - ACTIONS(3291), 1, + ACTIONS(3360), 1, anon_sym_SLASH, - STATE(668), 1, - sym_argument_list, - ACTIONS(2401), 2, - anon_sym_PIPE, + ACTIONS(3362), 1, + anon_sym_CARET, + ACTIONS(3364), 1, anon_sym_AMP, - ACTIONS(2405), 2, + STATE(765), 1, + sym_argument_list, + ACTIONS(2490), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3287), 2, + ACTIONS(3356), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3289), 2, + ACTIONS(3358), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3293), 2, + ACTIONS(3366), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3368), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3295), 2, + ACTIONS(3370), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3297), 2, + ACTIONS(3372), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2403), 8, + ACTIONS(2548), 5, anon_sym_DOT_DOT_DOT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_RBRACK, anon_sym_QMARK, - [43781] = 20, + [48842] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(2395), 1, - anon_sym_LPAREN2, - ACTIONS(2397), 1, + ACTIONS(2488), 1, anon_sym_LBRACK, - ACTIONS(3123), 1, + ACTIONS(2492), 1, + anon_sym_DASH_GT, + ACTIONS(3166), 1, + anon_sym_LPAREN2, + ACTIONS(3192), 1, + anon_sym_DOT, + ACTIONS(3360), 1, anon_sym_SLASH, - ACTIONS(3125), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3127), 1, - anon_sym_AMP_AMP, - ACTIONS(3129), 1, - anon_sym_PIPE, - ACTIONS(3131), 1, - anon_sym_CARET, - ACTIONS(3133), 1, - anon_sym_AMP, - ACTIONS(3143), 1, - anon_sym_QMARK, - STATE(668), 1, + STATE(765), 1, sym_argument_list, - ACTIONS(2399), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2405), 2, + ACTIONS(2490), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3119), 2, + ACTIONS(2546), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(3356), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3121), 2, + ACTIONS(3358), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3135), 2, + ACTIONS(3366), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3137), 2, + ACTIONS(3368), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3139), 2, + ACTIONS(3370), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3141), 2, + ACTIONS(3372), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3299), 2, - anon_sym_COMMA, - anon_sym_SEMI, - [43851] = 21, + ACTIONS(2548), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_RBRACK, + anon_sym_QMARK, + [48904] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2395), 1, + ACTIONS(2486), 1, anon_sym_LPAREN2, - ACTIONS(2397), 1, + ACTIONS(2488), 1, anon_sym_LBRACK, - ACTIONS(3123), 1, + ACTIONS(3198), 1, anon_sym_SLASH, - ACTIONS(3125), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3127), 1, + ACTIONS(3200), 1, anon_sym_AMP_AMP, - ACTIONS(3129), 1, + ACTIONS(3202), 1, anon_sym_PIPE, - ACTIONS(3131), 1, + ACTIONS(3204), 1, anon_sym_CARET, - ACTIONS(3133), 1, + ACTIONS(3206), 1, anon_sym_AMP, - ACTIONS(3143), 1, + ACTIONS(3216), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3218), 1, anon_sym_QMARK, - ACTIONS(3255), 1, + ACTIONS(3316), 1, anon_sym_COMMA, - ACTIONS(3301), 1, - anon_sym_SEMI, - STATE(668), 1, + ACTIONS(3374), 1, + anon_sym_RPAREN, + STATE(765), 1, sym_argument_list, - ACTIONS(2399), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2405), 2, + ACTIONS(2490), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3119), 2, + ACTIONS(2492), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3194), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3121), 2, + ACTIONS(3196), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3135), 2, + ACTIONS(3208), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3137), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3139), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3141), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [43923] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2397), 1, - anon_sym_LBRACK, - ACTIONS(2399), 1, - anon_sym_DASH_GT, - ACTIONS(2401), 1, - anon_sym_PIPE, - ACTIONS(3091), 1, - anon_sym_LPAREN2, - ACTIONS(3109), 1, - anon_sym_DOT, - ACTIONS(3291), 1, - anon_sym_SLASH, - ACTIONS(3303), 1, - anon_sym_CARET, - ACTIONS(3305), 1, - anon_sym_AMP, - STATE(668), 1, - sym_argument_list, - ACTIONS(2405), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(3287), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3289), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3293), 2, + ACTIONS(3210), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3295), 2, + ACTIONS(3212), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3297), 2, + ACTIONS(3214), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3307), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2403), 5, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_RBRACK, - anon_sym_QMARK, - [43989] = 21, + [48976] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2395), 1, + ACTIONS(2486), 1, anon_sym_LPAREN2, - ACTIONS(2397), 1, + ACTIONS(2488), 1, anon_sym_LBRACK, - ACTIONS(3123), 1, + ACTIONS(3198), 1, anon_sym_SLASH, - ACTIONS(3125), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3127), 1, + ACTIONS(3200), 1, anon_sym_AMP_AMP, - ACTIONS(3129), 1, + ACTIONS(3202), 1, anon_sym_PIPE, - ACTIONS(3131), 1, + ACTIONS(3204), 1, anon_sym_CARET, - ACTIONS(3133), 1, + ACTIONS(3206), 1, anon_sym_AMP, - ACTIONS(3143), 1, + ACTIONS(3216), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3218), 1, anon_sym_QMARK, - ACTIONS(3255), 1, + ACTIONS(3316), 1, anon_sym_COMMA, - ACTIONS(3309), 1, - anon_sym_SEMI, - STATE(668), 1, + ACTIONS(3376), 1, + anon_sym_COLON, + STATE(765), 1, sym_argument_list, - ACTIONS(2399), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2405), 2, + ACTIONS(2490), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3119), 2, + ACTIONS(2492), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3194), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3121), 2, + ACTIONS(3196), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3135), 2, + ACTIONS(3208), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3137), 2, + ACTIONS(3210), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3139), 2, + ACTIONS(3212), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3141), 2, + ACTIONS(3214), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [44061] = 18, + [49048] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2397), 1, - anon_sym_LBRACK, - ACTIONS(2399), 1, - anon_sym_DASH_GT, - ACTIONS(3091), 1, + ACTIONS(2486), 1, anon_sym_LPAREN2, - ACTIONS(3109), 1, - anon_sym_DOT, - ACTIONS(3291), 1, + ACTIONS(2488), 1, + anon_sym_LBRACK, + ACTIONS(3198), 1, anon_sym_SLASH, - ACTIONS(3303), 1, + ACTIONS(3200), 1, + anon_sym_AMP_AMP, + ACTIONS(3202), 1, + anon_sym_PIPE, + ACTIONS(3204), 1, anon_sym_CARET, - ACTIONS(3305), 1, + ACTIONS(3206), 1, anon_sym_AMP, - ACTIONS(3311), 1, - anon_sym_PIPE, - STATE(668), 1, + ACTIONS(3216), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3218), 1, + anon_sym_QMARK, + ACTIONS(3316), 1, + anon_sym_COMMA, + ACTIONS(3378), 1, + anon_sym_COLON, + STATE(765), 1, sym_argument_list, - ACTIONS(2405), 2, + ACTIONS(2490), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3287), 2, + ACTIONS(2492), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3194), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3289), 2, + ACTIONS(3196), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3293), 2, + ACTIONS(3208), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3210), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3295), 2, + ACTIONS(3212), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3297), 2, + ACTIONS(3214), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3307), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2403), 5, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_RBRACK, - anon_sym_QMARK, - [44127] = 21, + [49120] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2395), 1, + ACTIONS(2486), 1, anon_sym_LPAREN2, - ACTIONS(2397), 1, + ACTIONS(2488), 1, anon_sym_LBRACK, - ACTIONS(3123), 1, + ACTIONS(3198), 1, anon_sym_SLASH, - ACTIONS(3125), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3127), 1, + ACTIONS(3200), 1, anon_sym_AMP_AMP, - ACTIONS(3129), 1, + ACTIONS(3202), 1, anon_sym_PIPE, - ACTIONS(3131), 1, + ACTIONS(3204), 1, anon_sym_CARET, - ACTIONS(3133), 1, + ACTIONS(3206), 1, anon_sym_AMP, - ACTIONS(3143), 1, + ACTIONS(3216), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3218), 1, anon_sym_QMARK, - ACTIONS(3255), 1, + ACTIONS(3316), 1, anon_sym_COMMA, - ACTIONS(3313), 1, - anon_sym_RPAREN, - STATE(668), 1, + ACTIONS(3380), 1, + anon_sym_SEMI, + STATE(765), 1, sym_argument_list, - ACTIONS(2399), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2405), 2, + ACTIONS(2490), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3119), 2, + ACTIONS(2492), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3194), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3121), 2, + ACTIONS(3196), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3135), 2, + ACTIONS(3208), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3137), 2, + ACTIONS(3210), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3139), 2, + ACTIONS(3212), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3141), 2, + ACTIONS(3214), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [44199] = 21, + [49192] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2395), 1, + ACTIONS(2486), 1, anon_sym_LPAREN2, - ACTIONS(2397), 1, + ACTIONS(2488), 1, anon_sym_LBRACK, - ACTIONS(3123), 1, + ACTIONS(3198), 1, anon_sym_SLASH, - ACTIONS(3125), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3127), 1, + ACTIONS(3200), 1, anon_sym_AMP_AMP, - ACTIONS(3129), 1, + ACTIONS(3202), 1, anon_sym_PIPE, - ACTIONS(3131), 1, + ACTIONS(3204), 1, anon_sym_CARET, - ACTIONS(3133), 1, + ACTIONS(3206), 1, anon_sym_AMP, - ACTIONS(3143), 1, + ACTIONS(3216), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3218), 1, anon_sym_QMARK, - ACTIONS(3255), 1, + ACTIONS(3316), 1, anon_sym_COMMA, - ACTIONS(3315), 1, - anon_sym_COLON, - STATE(668), 1, + ACTIONS(3382), 1, + anon_sym_SEMI, + STATE(765), 1, sym_argument_list, - ACTIONS(2399), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2405), 2, + ACTIONS(2490), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3119), 2, + ACTIONS(2492), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3194), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3121), 2, + ACTIONS(3196), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3135), 2, + ACTIONS(3208), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3137), 2, + ACTIONS(3210), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3139), 2, + ACTIONS(3212), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3141), 2, + ACTIONS(3214), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [44271] = 20, + [49264] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2395), 1, + ACTIONS(2486), 1, anon_sym_LPAREN2, - ACTIONS(2397), 1, + ACTIONS(2488), 1, anon_sym_LBRACK, - ACTIONS(3123), 1, + ACTIONS(3198), 1, anon_sym_SLASH, - ACTIONS(3125), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3127), 1, + ACTIONS(3200), 1, anon_sym_AMP_AMP, - ACTIONS(3129), 1, + ACTIONS(3202), 1, anon_sym_PIPE, - ACTIONS(3131), 1, + ACTIONS(3204), 1, anon_sym_CARET, - ACTIONS(3133), 1, + ACTIONS(3206), 1, anon_sym_AMP, - ACTIONS(3143), 1, + ACTIONS(3216), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3218), 1, anon_sym_QMARK, - STATE(668), 1, + STATE(765), 1, sym_argument_list, - ACTIONS(2399), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2405), 2, + ACTIONS(2490), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3119), 2, + ACTIONS(2492), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3194), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3121), 2, + ACTIONS(3196), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3135), 2, + ACTIONS(3208), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3137), 2, + ACTIONS(3210), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3139), 2, + ACTIONS(3212), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3141), 2, + ACTIONS(3214), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3317), 2, + ACTIONS(3384), 2, anon_sym_COMMA, - anon_sym_RBRACE, - [44341] = 16, + anon_sym_RPAREN, + [49334] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2397), 1, - anon_sym_LBRACK, - ACTIONS(2399), 1, - anon_sym_DASH_GT, - ACTIONS(3091), 1, + ACTIONS(2486), 1, anon_sym_LPAREN2, - ACTIONS(3109), 1, - anon_sym_DOT, - ACTIONS(3291), 1, + ACTIONS(2488), 1, + anon_sym_LBRACK, + ACTIONS(3198), 1, anon_sym_SLASH, - STATE(668), 1, - sym_argument_list, - ACTIONS(2401), 2, + ACTIONS(3200), 1, + anon_sym_AMP_AMP, + ACTIONS(3202), 1, anon_sym_PIPE, + ACTIONS(3204), 1, + anon_sym_CARET, + ACTIONS(3206), 1, anon_sym_AMP, - ACTIONS(2405), 2, + ACTIONS(3216), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3218), 1, + anon_sym_QMARK, + ACTIONS(3316), 1, + anon_sym_COMMA, + ACTIONS(3386), 1, + anon_sym_SEMI, + STATE(765), 1, + sym_argument_list, + ACTIONS(2490), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3287), 2, + ACTIONS(2492), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3194), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3289), 2, + ACTIONS(3196), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3293), 2, + ACTIONS(3208), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3210), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3295), 2, + ACTIONS(3212), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3297), 2, + ACTIONS(3214), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3307), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2403), 6, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_RBRACK, - anon_sym_QMARK, - [44403] = 21, + [49406] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2397), 1, + ACTIONS(2488), 1, anon_sym_LBRACK, - ACTIONS(2399), 1, + ACTIONS(2492), 1, anon_sym_DASH_GT, - ACTIONS(3091), 1, + ACTIONS(3166), 1, anon_sym_LPAREN2, - ACTIONS(3109), 1, + ACTIONS(3192), 1, anon_sym_DOT, - ACTIONS(3291), 1, + ACTIONS(3360), 1, anon_sym_SLASH, - ACTIONS(3303), 1, + ACTIONS(3362), 1, anon_sym_CARET, - ACTIONS(3305), 1, + ACTIONS(3364), 1, anon_sym_AMP, - ACTIONS(3311), 1, - anon_sym_PIPE, - ACTIONS(3319), 1, + ACTIONS(3388), 1, anon_sym_PIPE_PIPE, - ACTIONS(3321), 1, + ACTIONS(3390), 1, anon_sym_AMP_AMP, - ACTIONS(3323), 1, + ACTIONS(3392), 1, + anon_sym_PIPE, + ACTIONS(3394), 1, anon_sym_QMARK, - STATE(668), 1, + STATE(765), 1, sym_argument_list, - ACTIONS(2405), 2, + ACTIONS(2490), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2873), 2, + ACTIONS(2997), 2, anon_sym_DOT_DOT_DOT, anon_sym_RBRACK, - ACTIONS(3287), 2, + ACTIONS(3356), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3289), 2, + ACTIONS(3358), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3293), 2, + ACTIONS(3366), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3368), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3295), 2, + ACTIONS(3370), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3297), 2, + ACTIONS(3372), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3307), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [44475] = 21, + [49478] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2395), 1, - anon_sym_LPAREN2, - ACTIONS(2397), 1, + ACTIONS(2488), 1, anon_sym_LBRACK, - ACTIONS(3123), 1, + ACTIONS(2492), 1, + anon_sym_DASH_GT, + ACTIONS(3166), 1, + anon_sym_LPAREN2, + ACTIONS(3192), 1, + anon_sym_DOT, + ACTIONS(3360), 1, anon_sym_SLASH, - ACTIONS(3125), 1, + ACTIONS(3362), 1, + anon_sym_CARET, + ACTIONS(3364), 1, + anon_sym_AMP, + ACTIONS(3388), 1, anon_sym_PIPE_PIPE, - ACTIONS(3127), 1, + ACTIONS(3390), 1, anon_sym_AMP_AMP, - ACTIONS(3129), 1, + ACTIONS(3392), 1, anon_sym_PIPE, - ACTIONS(3131), 1, - anon_sym_CARET, - ACTIONS(3133), 1, - anon_sym_AMP, - ACTIONS(3143), 1, + ACTIONS(3394), 1, anon_sym_QMARK, - ACTIONS(3255), 1, - anon_sym_COMMA, - ACTIONS(3325), 1, - anon_sym_SEMI, - STATE(668), 1, + STATE(765), 1, sym_argument_list, - ACTIONS(2399), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2405), 2, + ACTIONS(2490), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3119), 2, + ACTIONS(2979), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_RBRACK, + ACTIONS(3356), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3121), 2, + ACTIONS(3358), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3135), 2, + ACTIONS(3366), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3137), 2, + ACTIONS(3368), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3139), 2, + ACTIONS(3370), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3141), 2, + ACTIONS(3372), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [44547] = 20, + [49550] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2395), 1, + ACTIONS(2486), 1, anon_sym_LPAREN2, - ACTIONS(2397), 1, + ACTIONS(2488), 1, anon_sym_LBRACK, - ACTIONS(3123), 1, + ACTIONS(3198), 1, anon_sym_SLASH, - ACTIONS(3125), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3127), 1, + ACTIONS(3200), 1, anon_sym_AMP_AMP, - ACTIONS(3129), 1, + ACTIONS(3202), 1, anon_sym_PIPE, - ACTIONS(3131), 1, + ACTIONS(3204), 1, anon_sym_CARET, - ACTIONS(3133), 1, + ACTIONS(3206), 1, anon_sym_AMP, - ACTIONS(3143), 1, + ACTIONS(3216), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3218), 1, anon_sym_QMARK, - STATE(668), 1, + STATE(765), 1, sym_argument_list, - ACTIONS(2399), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2405), 2, + ACTIONS(2490), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3119), 2, + ACTIONS(2492), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3194), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3121), 2, + ACTIONS(3196), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3135), 2, + ACTIONS(3208), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3137), 2, + ACTIONS(3210), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3139), 2, + ACTIONS(3212), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3141), 2, + ACTIONS(3214), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3327), 2, + ACTIONS(3396), 2, anon_sym_COMMA, - anon_sym_RBRACE, - [44617] = 21, + anon_sym_SEMI, + [49620] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2395), 1, + ACTIONS(2486), 1, anon_sym_LPAREN2, - ACTIONS(2397), 1, + ACTIONS(2488), 1, anon_sym_LBRACK, - ACTIONS(3123), 1, + ACTIONS(3198), 1, anon_sym_SLASH, - ACTIONS(3125), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3127), 1, + ACTIONS(3200), 1, anon_sym_AMP_AMP, - ACTIONS(3129), 1, + ACTIONS(3202), 1, anon_sym_PIPE, - ACTIONS(3131), 1, + ACTIONS(3204), 1, anon_sym_CARET, - ACTIONS(3133), 1, + ACTIONS(3206), 1, anon_sym_AMP, - ACTIONS(3143), 1, + ACTIONS(3216), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3218), 1, anon_sym_QMARK, - ACTIONS(3255), 1, + ACTIONS(3316), 1, anon_sym_COMMA, - ACTIONS(3329), 1, - anon_sym_RPAREN, - STATE(668), 1, + ACTIONS(3398), 1, + anon_sym_COLON, + STATE(765), 1, sym_argument_list, - ACTIONS(2399), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2405), 2, + ACTIONS(2490), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3119), 2, + ACTIONS(2492), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3194), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3121), 2, + ACTIONS(3196), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3135), 2, + ACTIONS(3208), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3137), 2, + ACTIONS(3210), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3139), 2, + ACTIONS(3212), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3141), 2, + ACTIONS(3214), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [44689] = 21, + [49692] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2395), 1, - anon_sym_LPAREN2, - ACTIONS(2397), 1, + ACTIONS(2488), 1, anon_sym_LBRACK, - ACTIONS(3123), 1, + ACTIONS(2492), 1, + anon_sym_DASH_GT, + ACTIONS(3166), 1, + anon_sym_LPAREN2, + ACTIONS(3192), 1, + anon_sym_DOT, + ACTIONS(3360), 1, anon_sym_SLASH, - ACTIONS(3125), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3127), 1, - anon_sym_AMP_AMP, - ACTIONS(3129), 1, - anon_sym_PIPE, - ACTIONS(3131), 1, - anon_sym_CARET, - ACTIONS(3133), 1, - anon_sym_AMP, - ACTIONS(3143), 1, - anon_sym_QMARK, - ACTIONS(3255), 1, - anon_sym_COMMA, - ACTIONS(3331), 1, - anon_sym_SEMI, - STATE(668), 1, + STATE(765), 1, sym_argument_list, - ACTIONS(2399), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2405), 2, + ACTIONS(2490), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3119), 2, + ACTIONS(3356), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3121), 2, + ACTIONS(3358), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3135), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3137), 2, + ACTIONS(2546), 4, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(3139), 2, + ACTIONS(2548), 12, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3141), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [44761] = 17, + anon_sym_RBRACK, + anon_sym_QMARK, + [49746] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2397), 1, + ACTIONS(2488), 1, anon_sym_LBRACK, - ACTIONS(2399), 1, + ACTIONS(2492), 1, anon_sym_DASH_GT, - ACTIONS(2401), 1, - anon_sym_PIPE, - ACTIONS(3091), 1, + ACTIONS(3166), 1, anon_sym_LPAREN2, - ACTIONS(3109), 1, + ACTIONS(3192), 1, anon_sym_DOT, - ACTIONS(3291), 1, + ACTIONS(3360), 1, anon_sym_SLASH, - ACTIONS(3305), 1, - anon_sym_AMP, - STATE(668), 1, + STATE(765), 1, sym_argument_list, - ACTIONS(2405), 2, + ACTIONS(2490), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3287), 2, + ACTIONS(3356), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3289), 2, + ACTIONS(3358), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3293), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3295), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3297), 2, + ACTIONS(3372), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3307), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2403), 6, + ACTIONS(2546), 4, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2548), 10, anon_sym_DOT_DOT_DOT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_RBRACK, anon_sym_QMARK, - [44825] = 21, + [49802] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(2395), 1, - anon_sym_LPAREN2, - ACTIONS(2397), 1, + ACTIONS(2488), 1, anon_sym_LBRACK, - ACTIONS(3123), 1, + ACTIONS(2492), 1, + anon_sym_DASH_GT, + ACTIONS(3166), 1, + anon_sym_LPAREN2, + ACTIONS(3192), 1, + anon_sym_DOT, + ACTIONS(3360), 1, anon_sym_SLASH, - ACTIONS(3125), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3127), 1, - anon_sym_AMP_AMP, - ACTIONS(3129), 1, - anon_sym_PIPE, - ACTIONS(3131), 1, - anon_sym_CARET, - ACTIONS(3133), 1, - anon_sym_AMP, - ACTIONS(3143), 1, - anon_sym_QMARK, - ACTIONS(3255), 1, - anon_sym_COMMA, - ACTIONS(3333), 1, - anon_sym_COLON, - STATE(668), 1, + STATE(765), 1, sym_argument_list, - ACTIONS(2399), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2405), 2, + ACTIONS(2490), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3119), 2, + ACTIONS(2546), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(3356), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3121), 2, + ACTIONS(3358), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3135), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3137), 2, + ACTIONS(3368), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3139), 2, + ACTIONS(3370), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3141), 2, + ACTIONS(3372), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [44897] = 21, + ACTIONS(2548), 8, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_RBRACK, + anon_sym_QMARK, + [49862] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2395), 1, + ACTIONS(2486), 1, anon_sym_LPAREN2, - ACTIONS(2397), 1, + ACTIONS(2488), 1, anon_sym_LBRACK, - ACTIONS(3123), 1, + ACTIONS(3198), 1, anon_sym_SLASH, - ACTIONS(3125), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3127), 1, + ACTIONS(3200), 1, anon_sym_AMP_AMP, - ACTIONS(3129), 1, + ACTIONS(3202), 1, anon_sym_PIPE, - ACTIONS(3131), 1, + ACTIONS(3204), 1, anon_sym_CARET, - ACTIONS(3133), 1, + ACTIONS(3206), 1, anon_sym_AMP, - ACTIONS(3143), 1, + ACTIONS(3216), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3218), 1, anon_sym_QMARK, - ACTIONS(3255), 1, + ACTIONS(3316), 1, anon_sym_COMMA, - ACTIONS(3335), 1, - anon_sym_RPAREN, - STATE(668), 1, + ACTIONS(3400), 1, + anon_sym_SEMI, + STATE(765), 1, sym_argument_list, - ACTIONS(2399), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2405), 2, + ACTIONS(2490), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3119), 2, + ACTIONS(2492), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3194), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3121), 2, + ACTIONS(3196), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3135), 2, + ACTIONS(3208), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3137), 2, + ACTIONS(3210), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3139), 2, + ACTIONS(3212), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3141), 2, + ACTIONS(3214), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [44969] = 21, + [49934] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(2395), 1, - anon_sym_LPAREN2, - ACTIONS(2397), 1, + ACTIONS(2488), 1, anon_sym_LBRACK, - ACTIONS(3123), 1, - anon_sym_SLASH, - ACTIONS(3125), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3127), 1, - anon_sym_AMP_AMP, - ACTIONS(3129), 1, + ACTIONS(2492), 1, + anon_sym_DASH_GT, + ACTIONS(2546), 1, anon_sym_PIPE, - ACTIONS(3131), 1, - anon_sym_CARET, - ACTIONS(3133), 1, + ACTIONS(3166), 1, + anon_sym_LPAREN2, + ACTIONS(3192), 1, + anon_sym_DOT, + ACTIONS(3360), 1, + anon_sym_SLASH, + ACTIONS(3364), 1, anon_sym_AMP, - ACTIONS(3143), 1, - anon_sym_QMARK, - ACTIONS(3255), 1, - anon_sym_COMMA, - ACTIONS(3337), 1, - anon_sym_RPAREN, - STATE(668), 1, + STATE(765), 1, sym_argument_list, - ACTIONS(2399), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2405), 2, + ACTIONS(2490), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3119), 2, + ACTIONS(3356), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3121), 2, + ACTIONS(3358), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3135), 2, + ACTIONS(3366), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3137), 2, + ACTIONS(3368), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3139), 2, + ACTIONS(3370), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3141), 2, + ACTIONS(3372), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [45041] = 21, + ACTIONS(2548), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_RBRACK, + anon_sym_QMARK, + [49998] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2395), 1, + ACTIONS(2486), 1, anon_sym_LPAREN2, - ACTIONS(2397), 1, + ACTIONS(2488), 1, anon_sym_LBRACK, - ACTIONS(3123), 1, + ACTIONS(3198), 1, anon_sym_SLASH, - ACTIONS(3125), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3127), 1, + ACTIONS(3200), 1, anon_sym_AMP_AMP, - ACTIONS(3129), 1, + ACTIONS(3202), 1, anon_sym_PIPE, - ACTIONS(3131), 1, + ACTIONS(3204), 1, anon_sym_CARET, - ACTIONS(3133), 1, + ACTIONS(3206), 1, anon_sym_AMP, - ACTIONS(3143), 1, + ACTIONS(3216), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3218), 1, anon_sym_QMARK, - ACTIONS(3255), 1, + ACTIONS(3316), 1, anon_sym_COMMA, - ACTIONS(3339), 1, - anon_sym_SEMI, - STATE(668), 1, + ACTIONS(3402), 1, + anon_sym_COLON, + STATE(765), 1, sym_argument_list, - ACTIONS(2399), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2405), 2, + ACTIONS(2490), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3119), 2, + ACTIONS(2492), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3194), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3121), 2, + ACTIONS(3196), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3135), 2, + ACTIONS(3208), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3137), 2, + ACTIONS(3210), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3139), 2, + ACTIONS(3212), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3141), 2, + ACTIONS(3214), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [45113] = 21, + [50070] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2395), 1, - anon_sym_LPAREN2, - ACTIONS(2397), 1, + ACTIONS(2488), 1, anon_sym_LBRACK, - ACTIONS(3123), 1, + ACTIONS(2492), 1, + anon_sym_DASH_GT, + ACTIONS(3166), 1, + anon_sym_LPAREN2, + ACTIONS(3192), 1, + anon_sym_DOT, + ACTIONS(3360), 1, anon_sym_SLASH, - ACTIONS(3125), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3127), 1, - anon_sym_AMP_AMP, - ACTIONS(3129), 1, - anon_sym_PIPE, - ACTIONS(3131), 1, + ACTIONS(3362), 1, anon_sym_CARET, - ACTIONS(3133), 1, + ACTIONS(3364), 1, anon_sym_AMP, - ACTIONS(3143), 1, - anon_sym_QMARK, - ACTIONS(3255), 1, - anon_sym_COMMA, - ACTIONS(3341), 1, - anon_sym_COLON, - STATE(668), 1, + ACTIONS(3392), 1, + anon_sym_PIPE, + STATE(765), 1, sym_argument_list, - ACTIONS(2399), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2405), 2, + ACTIONS(2490), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3119), 2, + ACTIONS(3356), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3121), 2, + ACTIONS(3358), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3135), 2, + ACTIONS(3366), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3137), 2, + ACTIONS(3368), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3139), 2, + ACTIONS(3370), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3141), 2, + ACTIONS(3372), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [45185] = 21, + ACTIONS(2548), 5, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_RBRACK, + anon_sym_QMARK, + [50136] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2395), 1, + ACTIONS(2486), 1, anon_sym_LPAREN2, - ACTIONS(2397), 1, + ACTIONS(2488), 1, anon_sym_LBRACK, - ACTIONS(3123), 1, + ACTIONS(3198), 1, anon_sym_SLASH, - ACTIONS(3125), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3127), 1, + ACTIONS(3200), 1, anon_sym_AMP_AMP, - ACTIONS(3129), 1, + ACTIONS(3202), 1, anon_sym_PIPE, - ACTIONS(3131), 1, + ACTIONS(3204), 1, anon_sym_CARET, - ACTIONS(3133), 1, + ACTIONS(3206), 1, anon_sym_AMP, - ACTIONS(3143), 1, + ACTIONS(3216), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3218), 1, anon_sym_QMARK, - ACTIONS(3255), 1, + ACTIONS(3316), 1, anon_sym_COMMA, - ACTIONS(3343), 1, + ACTIONS(3404), 1, anon_sym_RPAREN, - STATE(668), 1, + STATE(765), 1, sym_argument_list, - ACTIONS(2399), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2405), 2, + ACTIONS(2490), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3119), 2, + ACTIONS(2492), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3194), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3121), 2, + ACTIONS(3196), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3135), 2, + ACTIONS(3208), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3137), 2, + ACTIONS(3210), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3139), 2, + ACTIONS(3212), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3141), 2, + ACTIONS(3214), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [45257] = 20, + [50208] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(2395), 1, - anon_sym_LPAREN2, - ACTIONS(2397), 1, + ACTIONS(2488), 1, anon_sym_LBRACK, - ACTIONS(3123), 1, + ACTIONS(2492), 1, + anon_sym_DASH_GT, + ACTIONS(3166), 1, + anon_sym_LPAREN2, + ACTIONS(3192), 1, + anon_sym_DOT, + ACTIONS(3360), 1, anon_sym_SLASH, - ACTIONS(3125), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3127), 1, - anon_sym_AMP_AMP, - ACTIONS(3129), 1, - anon_sym_PIPE, - ACTIONS(3131), 1, + ACTIONS(3362), 1, anon_sym_CARET, - ACTIONS(3133), 1, + ACTIONS(3364), 1, anon_sym_AMP, - ACTIONS(3143), 1, - anon_sym_QMARK, - STATE(668), 1, + ACTIONS(3390), 1, + anon_sym_AMP_AMP, + ACTIONS(3392), 1, + anon_sym_PIPE, + STATE(765), 1, sym_argument_list, - ACTIONS(2399), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2405), 2, + ACTIONS(2490), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3119), 2, + ACTIONS(3356), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3121), 2, + ACTIONS(3358), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3135), 2, + ACTIONS(3366), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3137), 2, + ACTIONS(3368), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3139), 2, + ACTIONS(3370), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3141), 2, + ACTIONS(3372), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3345), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [45327] = 21, + ACTIONS(2548), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK, + anon_sym_QMARK, + [50276] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2395), 1, + ACTIONS(2486), 1, anon_sym_LPAREN2, - ACTIONS(2397), 1, + ACTIONS(2488), 1, anon_sym_LBRACK, - ACTIONS(3123), 1, + ACTIONS(3198), 1, anon_sym_SLASH, - ACTIONS(3125), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3127), 1, + ACTIONS(3200), 1, anon_sym_AMP_AMP, - ACTIONS(3129), 1, + ACTIONS(3202), 1, anon_sym_PIPE, - ACTIONS(3131), 1, + ACTIONS(3204), 1, anon_sym_CARET, - ACTIONS(3133), 1, + ACTIONS(3206), 1, anon_sym_AMP, - ACTIONS(3143), 1, + ACTIONS(3216), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3218), 1, anon_sym_QMARK, - ACTIONS(3255), 1, + ACTIONS(3316), 1, anon_sym_COMMA, - ACTIONS(3347), 1, - anon_sym_RPAREN, - STATE(668), 1, + ACTIONS(3406), 1, + anon_sym_SEMI, + STATE(765), 1, sym_argument_list, - ACTIONS(2399), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2405), 2, + ACTIONS(2490), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3119), 2, + ACTIONS(2492), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3194), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3121), 2, + ACTIONS(3196), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3135), 2, + ACTIONS(3208), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3137), 2, + ACTIONS(3210), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3139), 2, + ACTIONS(3212), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3141), 2, + ACTIONS(3214), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [45399] = 19, + [50348] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2397), 1, + ACTIONS(2488), 1, anon_sym_LBRACK, - ACTIONS(2399), 1, + ACTIONS(2492), 1, anon_sym_DASH_GT, - ACTIONS(3091), 1, + ACTIONS(3166), 1, anon_sym_LPAREN2, - ACTIONS(3109), 1, + ACTIONS(3192), 1, anon_sym_DOT, - ACTIONS(3291), 1, + ACTIONS(3360), 1, anon_sym_SLASH, - ACTIONS(3303), 1, - anon_sym_CARET, - ACTIONS(3305), 1, - anon_sym_AMP, - ACTIONS(3311), 1, - anon_sym_PIPE, - ACTIONS(3321), 1, - anon_sym_AMP_AMP, - STATE(668), 1, + STATE(765), 1, sym_argument_list, - ACTIONS(2405), 2, + ACTIONS(2490), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3287), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3289), 2, + ACTIONS(3358), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3293), 2, + ACTIONS(2546), 6, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(3295), 2, + ACTIONS(2548), 12, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3297), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3307), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2403), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, anon_sym_RBRACK, anon_sym_QMARK, - [45467] = 21, + [50400] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2397), 1, + ACTIONS(2488), 1, anon_sym_LBRACK, - ACTIONS(2399), 1, + ACTIONS(2492), 1, anon_sym_DASH_GT, - ACTIONS(3091), 1, + ACTIONS(3166), 1, anon_sym_LPAREN2, - ACTIONS(3109), 1, + ACTIONS(3192), 1, anon_sym_DOT, - ACTIONS(3291), 1, + ACTIONS(3360), 1, anon_sym_SLASH, - ACTIONS(3303), 1, + ACTIONS(3362), 1, anon_sym_CARET, - ACTIONS(3305), 1, + ACTIONS(3364), 1, anon_sym_AMP, - ACTIONS(3311), 1, - anon_sym_PIPE, - ACTIONS(3319), 1, + ACTIONS(3388), 1, anon_sym_PIPE_PIPE, - ACTIONS(3321), 1, + ACTIONS(3390), 1, anon_sym_AMP_AMP, - ACTIONS(3323), 1, + ACTIONS(3392), 1, + anon_sym_PIPE, + ACTIONS(3394), 1, anon_sym_QMARK, - STATE(668), 1, + STATE(765), 1, sym_argument_list, - ACTIONS(2405), 2, + ACTIONS(2490), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2855), 2, + ACTIONS(2993), 2, anon_sym_DOT_DOT_DOT, anon_sym_RBRACK, - ACTIONS(3287), 2, + ACTIONS(3356), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3289), 2, + ACTIONS(3358), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3293), 2, + ACTIONS(3366), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3368), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3295), 2, + ACTIONS(3370), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3297), 2, + ACTIONS(3372), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3307), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [45539] = 13, + [50472] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2397), 1, - anon_sym_LBRACK, - ACTIONS(2399), 1, - anon_sym_DASH_GT, - ACTIONS(3091), 1, + ACTIONS(2486), 1, anon_sym_LPAREN2, - ACTIONS(3109), 1, - anon_sym_DOT, - ACTIONS(3291), 1, + ACTIONS(2488), 1, + anon_sym_LBRACK, + ACTIONS(3198), 1, anon_sym_SLASH, - STATE(668), 1, + ACTIONS(3200), 1, + anon_sym_AMP_AMP, + ACTIONS(3202), 1, + anon_sym_PIPE, + ACTIONS(3204), 1, + anon_sym_CARET, + ACTIONS(3206), 1, + anon_sym_AMP, + ACTIONS(3216), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3218), 1, + anon_sym_QMARK, + ACTIONS(3316), 1, + anon_sym_COMMA, + ACTIONS(3408), 1, + anon_sym_SEMI, + STATE(765), 1, sym_argument_list, - ACTIONS(2405), 2, + ACTIONS(2490), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3287), 2, + ACTIONS(2492), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3194), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3289), 2, + ACTIONS(3196), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3297), 2, + ACTIONS(3208), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3210), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3212), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3214), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2401), 4, + [50544] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2486), 1, + anon_sym_LPAREN2, + ACTIONS(2488), 1, + anon_sym_LBRACK, + ACTIONS(3198), 1, + anon_sym_SLASH, + ACTIONS(3200), 1, + anon_sym_AMP_AMP, + ACTIONS(3202), 1, anon_sym_PIPE, + ACTIONS(3204), 1, + anon_sym_CARET, + ACTIONS(3206), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2403), 10, - anon_sym_DOT_DOT_DOT, + ACTIONS(3216), 1, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, + ACTIONS(3218), 1, + anon_sym_QMARK, + ACTIONS(3316), 1, + anon_sym_COMMA, + ACTIONS(3410), 1, + anon_sym_SEMI, + STATE(765), 1, + sym_argument_list, + ACTIONS(2490), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2492), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3194), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3196), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3208), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(3210), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3212), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_RBRACK, - anon_sym_QMARK, - [45595] = 20, + ACTIONS(3214), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [50616] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2395), 1, + ACTIONS(2486), 1, anon_sym_LPAREN2, - ACTIONS(2397), 1, + ACTIONS(2488), 1, anon_sym_LBRACK, - ACTIONS(3123), 1, + ACTIONS(3198), 1, anon_sym_SLASH, - ACTIONS(3125), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3127), 1, + ACTIONS(3200), 1, anon_sym_AMP_AMP, - ACTIONS(3129), 1, + ACTIONS(3202), 1, anon_sym_PIPE, - ACTIONS(3131), 1, + ACTIONS(3204), 1, anon_sym_CARET, - ACTIONS(3133), 1, + ACTIONS(3206), 1, anon_sym_AMP, - ACTIONS(3143), 1, + ACTIONS(3216), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3218), 1, anon_sym_QMARK, - STATE(668), 1, + ACTIONS(3316), 1, + anon_sym_COMMA, + ACTIONS(3412), 1, + anon_sym_COLON, + STATE(765), 1, sym_argument_list, - ACTIONS(2399), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2405), 2, + ACTIONS(2490), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3119), 2, + ACTIONS(2492), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3194), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3121), 2, + ACTIONS(3196), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3135), 2, + ACTIONS(3208), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3137), 2, + ACTIONS(3210), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3139), 2, + ACTIONS(3212), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3141), 2, + ACTIONS(3214), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3349), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [45665] = 21, + [50688] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2395), 1, + ACTIONS(2486), 1, anon_sym_LPAREN2, - ACTIONS(2397), 1, + ACTIONS(2488), 1, anon_sym_LBRACK, - ACTIONS(3123), 1, + ACTIONS(3198), 1, anon_sym_SLASH, - ACTIONS(3125), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3127), 1, + ACTIONS(3200), 1, anon_sym_AMP_AMP, - ACTIONS(3129), 1, + ACTIONS(3202), 1, anon_sym_PIPE, - ACTIONS(3131), 1, + ACTIONS(3204), 1, anon_sym_CARET, - ACTIONS(3133), 1, + ACTIONS(3206), 1, anon_sym_AMP, - ACTIONS(3143), 1, + ACTIONS(3216), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3218), 1, anon_sym_QMARK, - ACTIONS(3255), 1, + ACTIONS(3316), 1, anon_sym_COMMA, - ACTIONS(3351), 1, + ACTIONS(3414), 1, anon_sym_SEMI, - STATE(668), 1, + STATE(765), 1, sym_argument_list, - ACTIONS(2399), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2405), 2, + ACTIONS(2490), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3119), 2, + ACTIONS(2492), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3194), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3121), 2, + ACTIONS(3196), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3135), 2, + ACTIONS(3208), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3137), 2, + ACTIONS(3210), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3139), 2, + ACTIONS(3212), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3141), 2, + ACTIONS(3214), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [45737] = 21, + [50760] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2395), 1, + ACTIONS(2486), 1, anon_sym_LPAREN2, - ACTIONS(2397), 1, + ACTIONS(2488), 1, anon_sym_LBRACK, - ACTIONS(3123), 1, + ACTIONS(3198), 1, anon_sym_SLASH, - ACTIONS(3125), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3127), 1, + ACTIONS(3200), 1, anon_sym_AMP_AMP, - ACTIONS(3129), 1, + ACTIONS(3202), 1, anon_sym_PIPE, - ACTIONS(3131), 1, + ACTIONS(3204), 1, anon_sym_CARET, - ACTIONS(3133), 1, + ACTIONS(3206), 1, anon_sym_AMP, - ACTIONS(3143), 1, + ACTIONS(3216), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3218), 1, anon_sym_QMARK, - ACTIONS(3255), 1, - anon_sym_COMMA, - ACTIONS(3353), 1, - anon_sym_SEMI, - STATE(668), 1, + STATE(765), 1, sym_argument_list, - ACTIONS(2399), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2405), 2, + ACTIONS(2490), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3119), 2, + ACTIONS(2492), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3194), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3121), 2, + ACTIONS(3196), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3135), 2, + ACTIONS(3208), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3137), 2, + ACTIONS(3210), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3139), 2, + ACTIONS(3212), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3141), 2, + ACTIONS(3214), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [45809] = 21, + ACTIONS(3416), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [50830] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2395), 1, + ACTIONS(2486), 1, anon_sym_LPAREN2, - ACTIONS(2397), 1, + ACTIONS(2488), 1, anon_sym_LBRACK, - ACTIONS(3123), 1, + ACTIONS(3198), 1, anon_sym_SLASH, - ACTIONS(3125), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3127), 1, + ACTIONS(3200), 1, anon_sym_AMP_AMP, - ACTIONS(3129), 1, + ACTIONS(3202), 1, anon_sym_PIPE, - ACTIONS(3131), 1, + ACTIONS(3204), 1, anon_sym_CARET, - ACTIONS(3133), 1, + ACTIONS(3206), 1, anon_sym_AMP, - ACTIONS(3143), 1, + ACTIONS(3216), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3218), 1, anon_sym_QMARK, - ACTIONS(3255), 1, + ACTIONS(3316), 1, anon_sym_COMMA, - ACTIONS(3355), 1, - anon_sym_COLON, - STATE(668), 1, + ACTIONS(3418), 1, + anon_sym_RPAREN, + STATE(765), 1, sym_argument_list, - ACTIONS(2399), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2405), 2, + ACTIONS(2490), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3119), 2, + ACTIONS(2492), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3194), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3121), 2, + ACTIONS(3196), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3135), 2, + ACTIONS(3208), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3137), 2, + ACTIONS(3210), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3139), 2, + ACTIONS(3212), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3141), 2, + ACTIONS(3214), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [45881] = 21, + [50902] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2395), 1, + ACTIONS(2486), 1, anon_sym_LPAREN2, - ACTIONS(2397), 1, + ACTIONS(2488), 1, anon_sym_LBRACK, - ACTIONS(3123), 1, + ACTIONS(3198), 1, anon_sym_SLASH, - ACTIONS(3125), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3127), 1, + ACTIONS(3200), 1, anon_sym_AMP_AMP, - ACTIONS(3129), 1, + ACTIONS(3202), 1, anon_sym_PIPE, - ACTIONS(3131), 1, + ACTIONS(3204), 1, anon_sym_CARET, - ACTIONS(3133), 1, + ACTIONS(3206), 1, anon_sym_AMP, - ACTIONS(3143), 1, + ACTIONS(3216), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3218), 1, anon_sym_QMARK, - ACTIONS(3255), 1, - anon_sym_COMMA, - ACTIONS(3357), 1, - anon_sym_SEMI, - STATE(668), 1, + STATE(765), 1, sym_argument_list, - ACTIONS(2399), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2405), 2, + ACTIONS(2490), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3119), 2, + ACTIONS(2492), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3194), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3121), 2, + ACTIONS(3196), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3135), 2, + ACTIONS(3208), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3137), 2, + ACTIONS(3210), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3139), 2, + ACTIONS(3212), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3141), 2, + ACTIONS(3214), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [45953] = 21, + ACTIONS(3420), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [50972] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2395), 1, + ACTIONS(2486), 1, anon_sym_LPAREN2, - ACTIONS(2397), 1, + ACTIONS(2488), 1, anon_sym_LBRACK, - ACTIONS(3123), 1, + ACTIONS(3198), 1, anon_sym_SLASH, - ACTIONS(3125), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3127), 1, + ACTIONS(3200), 1, anon_sym_AMP_AMP, - ACTIONS(3129), 1, + ACTIONS(3202), 1, anon_sym_PIPE, - ACTIONS(3131), 1, + ACTIONS(3204), 1, anon_sym_CARET, - ACTIONS(3133), 1, + ACTIONS(3206), 1, anon_sym_AMP, - ACTIONS(3143), 1, + ACTIONS(3216), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3218), 1, anon_sym_QMARK, - ACTIONS(3255), 1, - anon_sym_COMMA, - ACTIONS(3359), 1, - anon_sym_COLON, - STATE(668), 1, + STATE(765), 1, sym_argument_list, - ACTIONS(2399), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2405), 2, + ACTIONS(2490), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3119), 2, + ACTIONS(2492), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3194), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3121), 2, + ACTIONS(3196), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3135), 2, + ACTIONS(3208), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3137), 2, + ACTIONS(3210), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3139), 2, + ACTIONS(3212), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3141), 2, + ACTIONS(3214), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [46025] = 21, + ACTIONS(3422), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [51042] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2395), 1, + ACTIONS(2486), 1, anon_sym_LPAREN2, - ACTIONS(2397), 1, + ACTIONS(2488), 1, anon_sym_LBRACK, - ACTIONS(3123), 1, + ACTIONS(3198), 1, anon_sym_SLASH, - ACTIONS(3125), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3127), 1, + ACTIONS(3200), 1, anon_sym_AMP_AMP, - ACTIONS(3129), 1, + ACTIONS(3202), 1, anon_sym_PIPE, - ACTIONS(3131), 1, + ACTIONS(3204), 1, anon_sym_CARET, - ACTIONS(3133), 1, + ACTIONS(3206), 1, anon_sym_AMP, - ACTIONS(3143), 1, + ACTIONS(3216), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3218), 1, anon_sym_QMARK, - ACTIONS(3255), 1, - anon_sym_COMMA, - ACTIONS(3361), 1, - anon_sym_SEMI, - STATE(668), 1, + STATE(765), 1, sym_argument_list, - ACTIONS(2399), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2405), 2, + ACTIONS(2490), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3119), 2, + ACTIONS(2492), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3194), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3121), 2, + ACTIONS(3196), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3135), 2, + ACTIONS(3208), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3137), 2, + ACTIONS(3210), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3139), 2, + ACTIONS(3212), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3141), 2, + ACTIONS(3214), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [46097] = 21, + ACTIONS(3424), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [51112] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2395), 1, + ACTIONS(2486), 1, anon_sym_LPAREN2, - ACTIONS(2397), 1, + ACTIONS(2488), 1, anon_sym_LBRACK, - ACTIONS(3123), 1, + ACTIONS(3198), 1, anon_sym_SLASH, - ACTIONS(3125), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3127), 1, + ACTIONS(3200), 1, anon_sym_AMP_AMP, - ACTIONS(3129), 1, + ACTIONS(3202), 1, anon_sym_PIPE, - ACTIONS(3131), 1, + ACTIONS(3204), 1, anon_sym_CARET, - ACTIONS(3133), 1, + ACTIONS(3206), 1, anon_sym_AMP, - ACTIONS(3143), 1, + ACTIONS(3216), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3218), 1, anon_sym_QMARK, - ACTIONS(3255), 1, + ACTIONS(3316), 1, anon_sym_COMMA, - ACTIONS(3363), 1, - anon_sym_COLON, - STATE(668), 1, + ACTIONS(3426), 1, + anon_sym_RPAREN, + STATE(765), 1, sym_argument_list, - ACTIONS(2399), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2405), 2, + ACTIONS(2490), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3119), 2, + ACTIONS(2492), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3194), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3121), 2, + ACTIONS(3196), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3135), 2, + ACTIONS(3208), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3137), 2, + ACTIONS(3210), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3139), 2, + ACTIONS(3212), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3141), 2, + ACTIONS(3214), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [46169] = 12, + [51184] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2397), 1, - anon_sym_LBRACK, - ACTIONS(2399), 1, - anon_sym_DASH_GT, - ACTIONS(3091), 1, + ACTIONS(2486), 1, anon_sym_LPAREN2, - ACTIONS(3109), 1, - anon_sym_DOT, - ACTIONS(3291), 1, + ACTIONS(2488), 1, + anon_sym_LBRACK, + ACTIONS(3198), 1, anon_sym_SLASH, - STATE(668), 1, + ACTIONS(3200), 1, + anon_sym_AMP_AMP, + ACTIONS(3202), 1, + anon_sym_PIPE, + ACTIONS(3204), 1, + anon_sym_CARET, + ACTIONS(3206), 1, + anon_sym_AMP, + ACTIONS(3216), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3218), 1, + anon_sym_QMARK, + ACTIONS(3316), 1, + anon_sym_COMMA, + ACTIONS(3428), 1, + anon_sym_RPAREN, + STATE(765), 1, sym_argument_list, - ACTIONS(2405), 2, + ACTIONS(2490), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3287), 2, + ACTIONS(2492), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3194), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3289), 2, + ACTIONS(3196), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2401), 4, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(3208), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3210), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2403), 12, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, + ACTIONS(3212), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3214), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [51256] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2486), 1, + anon_sym_LPAREN2, + ACTIONS(2488), 1, + anon_sym_LBRACK, + ACTIONS(3198), 1, + anon_sym_SLASH, + ACTIONS(3200), 1, anon_sym_AMP_AMP, + ACTIONS(3202), 1, + anon_sym_PIPE, + ACTIONS(3204), 1, anon_sym_CARET, + ACTIONS(3206), 1, + anon_sym_AMP, + ACTIONS(3216), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3218), 1, + anon_sym_QMARK, + ACTIONS(3316), 1, + anon_sym_COMMA, + ACTIONS(3430), 1, + anon_sym_RPAREN, + STATE(765), 1, + sym_argument_list, + ACTIONS(2490), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2492), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3194), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3196), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3208), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(3210), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3212), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(3214), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RBRACK, - anon_sym_QMARK, - [46223] = 22, + [51328] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2397), 1, - anon_sym_LBRACK, - ACTIONS(2399), 1, - anon_sym_DASH_GT, - ACTIONS(3091), 1, + ACTIONS(2486), 1, anon_sym_LPAREN2, - ACTIONS(3109), 1, - anon_sym_DOT, - ACTIONS(3291), 1, + ACTIONS(2488), 1, + anon_sym_LBRACK, + ACTIONS(3198), 1, anon_sym_SLASH, - ACTIONS(3303), 1, + ACTIONS(3200), 1, + anon_sym_AMP_AMP, + ACTIONS(3202), 1, + anon_sym_PIPE, + ACTIONS(3204), 1, anon_sym_CARET, - ACTIONS(3305), 1, + ACTIONS(3206), 1, anon_sym_AMP, - ACTIONS(3311), 1, - anon_sym_PIPE, - ACTIONS(3319), 1, + ACTIONS(3216), 1, anon_sym_PIPE_PIPE, - ACTIONS(3321), 1, - anon_sym_AMP_AMP, - ACTIONS(3323), 1, + ACTIONS(3218), 1, anon_sym_QMARK, - ACTIONS(3365), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(3367), 1, - anon_sym_RBRACK, - STATE(668), 1, + STATE(765), 1, sym_argument_list, - ACTIONS(2405), 2, + ACTIONS(2490), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3287), 2, + ACTIONS(2492), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3194), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3289), 2, + ACTIONS(3196), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3293), 2, + ACTIONS(3208), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3210), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3295), 2, + ACTIONS(3212), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3297), 2, + ACTIONS(3214), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3307), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [46297] = 21, + ACTIONS(3294), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [51398] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2397), 1, - anon_sym_LBRACK, - ACTIONS(2399), 1, - anon_sym_DASH_GT, - ACTIONS(3091), 1, + ACTIONS(2486), 1, anon_sym_LPAREN2, - ACTIONS(3109), 1, - anon_sym_DOT, - ACTIONS(3291), 1, + ACTIONS(2488), 1, + anon_sym_LBRACK, + ACTIONS(3198), 1, anon_sym_SLASH, - ACTIONS(3303), 1, + ACTIONS(3200), 1, + anon_sym_AMP_AMP, + ACTIONS(3202), 1, + anon_sym_PIPE, + ACTIONS(3204), 1, anon_sym_CARET, - ACTIONS(3305), 1, + ACTIONS(3206), 1, anon_sym_AMP, - ACTIONS(3311), 1, - anon_sym_PIPE, - ACTIONS(3319), 1, + ACTIONS(3216), 1, anon_sym_PIPE_PIPE, - ACTIONS(3321), 1, - anon_sym_AMP_AMP, - ACTIONS(3323), 1, + ACTIONS(3218), 1, anon_sym_QMARK, - STATE(668), 1, + ACTIONS(3316), 1, + anon_sym_COMMA, + ACTIONS(3432), 1, + anon_sym_SEMI, + STATE(765), 1, sym_argument_list, - ACTIONS(2405), 2, + ACTIONS(2490), 2, anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2847), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_RBRACK, - ACTIONS(3287), 2, + anon_sym_PLUS_PLUS, + ACTIONS(2492), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3194), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3289), 2, + ACTIONS(3196), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3293), 2, + ACTIONS(3208), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3210), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3295), 2, + ACTIONS(3212), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3297), 2, + ACTIONS(3214), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3307), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [46369] = 21, + [51470] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2395), 1, + ACTIONS(2486), 1, anon_sym_LPAREN2, - ACTIONS(2397), 1, + ACTIONS(2488), 1, anon_sym_LBRACK, - ACTIONS(3123), 1, + ACTIONS(3198), 1, anon_sym_SLASH, - ACTIONS(3125), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3127), 1, + ACTIONS(3200), 1, anon_sym_AMP_AMP, - ACTIONS(3129), 1, + ACTIONS(3202), 1, anon_sym_PIPE, - ACTIONS(3131), 1, + ACTIONS(3204), 1, anon_sym_CARET, - ACTIONS(3133), 1, + ACTIONS(3206), 1, anon_sym_AMP, - ACTIONS(3143), 1, + ACTIONS(3216), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3218), 1, anon_sym_QMARK, - ACTIONS(3255), 1, + ACTIONS(3316), 1, anon_sym_COMMA, - ACTIONS(3369), 1, - anon_sym_SEMI, - STATE(668), 1, + ACTIONS(3434), 1, + anon_sym_RPAREN, + STATE(765), 1, sym_argument_list, - ACTIONS(2399), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2405), 2, + ACTIONS(2490), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3119), 2, + ACTIONS(2492), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3194), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3121), 2, + ACTIONS(3196), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3135), 2, + ACTIONS(3208), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3137), 2, + ACTIONS(3210), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3139), 2, + ACTIONS(3212), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3141), 2, + ACTIONS(3214), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [46441] = 21, + [51542] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2395), 1, + ACTIONS(2486), 1, anon_sym_LPAREN2, - ACTIONS(2397), 1, + ACTIONS(2488), 1, anon_sym_LBRACK, - ACTIONS(3123), 1, + ACTIONS(3198), 1, anon_sym_SLASH, - ACTIONS(3125), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3127), 1, + ACTIONS(3200), 1, anon_sym_AMP_AMP, - ACTIONS(3129), 1, + ACTIONS(3202), 1, anon_sym_PIPE, - ACTIONS(3131), 1, + ACTIONS(3204), 1, anon_sym_CARET, - ACTIONS(3133), 1, + ACTIONS(3206), 1, anon_sym_AMP, - ACTIONS(3143), 1, + ACTIONS(3216), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3218), 1, anon_sym_QMARK, - ACTIONS(3255), 1, + ACTIONS(3316), 1, anon_sym_COMMA, - ACTIONS(3371), 1, + ACTIONS(3436), 1, anon_sym_RPAREN, - STATE(668), 1, + STATE(765), 1, sym_argument_list, - ACTIONS(2399), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2405), 2, + ACTIONS(2490), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3119), 2, + ACTIONS(2492), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3194), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3121), 2, + ACTIONS(3196), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3135), 2, + ACTIONS(3208), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3137), 2, + ACTIONS(3210), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3139), 2, + ACTIONS(3212), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3141), 2, + ACTIONS(3214), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [46513] = 20, + [51614] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2395), 1, + ACTIONS(2486), 1, anon_sym_LPAREN2, - ACTIONS(2397), 1, + ACTIONS(2488), 1, anon_sym_LBRACK, - ACTIONS(3123), 1, + ACTIONS(3198), 1, anon_sym_SLASH, - ACTIONS(3125), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3127), 1, + ACTIONS(3200), 1, anon_sym_AMP_AMP, - ACTIONS(3129), 1, + ACTIONS(3202), 1, anon_sym_PIPE, - ACTIONS(3131), 1, + ACTIONS(3204), 1, anon_sym_CARET, - ACTIONS(3133), 1, + ACTIONS(3206), 1, anon_sym_AMP, - ACTIONS(3143), 1, + ACTIONS(3216), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3218), 1, anon_sym_QMARK, - STATE(668), 1, + ACTIONS(3316), 1, + anon_sym_COMMA, + ACTIONS(3438), 1, + anon_sym_SEMI, + STATE(765), 1, sym_argument_list, - ACTIONS(2399), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2405), 2, + ACTIONS(2490), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3119), 2, + ACTIONS(2492), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3194), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3121), 2, + ACTIONS(3196), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3135), 2, + ACTIONS(3208), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3137), 2, + ACTIONS(3210), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3139), 2, + ACTIONS(3212), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3141), 2, + ACTIONS(3214), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3373), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [46583] = 11, + [51686] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2397), 1, - anon_sym_LBRACK, - ACTIONS(2399), 1, - anon_sym_DASH_GT, - ACTIONS(3091), 1, + ACTIONS(2486), 1, anon_sym_LPAREN2, - ACTIONS(3109), 1, - anon_sym_DOT, - ACTIONS(3291), 1, + ACTIONS(2488), 1, + anon_sym_LBRACK, + ACTIONS(3198), 1, anon_sym_SLASH, - STATE(668), 1, + ACTIONS(3200), 1, + anon_sym_AMP_AMP, + ACTIONS(3202), 1, + anon_sym_PIPE, + ACTIONS(3204), 1, + anon_sym_CARET, + ACTIONS(3206), 1, + anon_sym_AMP, + ACTIONS(3216), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3218), 1, + anon_sym_QMARK, + ACTIONS(3316), 1, + anon_sym_COMMA, + ACTIONS(3440), 1, + anon_sym_SEMI, + STATE(765), 1, sym_argument_list, - ACTIONS(2405), 2, + ACTIONS(2490), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3289), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2401), 6, + ACTIONS(2492), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3194), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2403), 12, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, + ACTIONS(3196), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3208), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(3210), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3212), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(3214), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RBRACK, - anon_sym_QMARK, - [46635] = 20, + [51758] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2395), 1, + ACTIONS(2486), 1, anon_sym_LPAREN2, - ACTIONS(2397), 1, + ACTIONS(2488), 1, anon_sym_LBRACK, - ACTIONS(3123), 1, + ACTIONS(3198), 1, anon_sym_SLASH, - ACTIONS(3125), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3127), 1, + ACTIONS(3200), 1, anon_sym_AMP_AMP, - ACTIONS(3129), 1, + ACTIONS(3202), 1, anon_sym_PIPE, - ACTIONS(3131), 1, + ACTIONS(3204), 1, anon_sym_CARET, - ACTIONS(3133), 1, + ACTIONS(3206), 1, anon_sym_AMP, - ACTIONS(3143), 1, + ACTIONS(3216), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3218), 1, anon_sym_QMARK, - STATE(668), 1, + STATE(765), 1, sym_argument_list, - ACTIONS(2399), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2405), 2, + ACTIONS(2490), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3119), 2, + ACTIONS(2492), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3194), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3121), 2, + ACTIONS(3196), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3135), 2, + ACTIONS(3208), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3137), 2, + ACTIONS(3210), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3139), 2, + ACTIONS(3212), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3141), 2, + ACTIONS(3214), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3375), 2, + ACTIONS(3442), 2, anon_sym_COMMA, anon_sym_RPAREN, - [46705] = 20, + [51828] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2395), 1, + ACTIONS(2486), 1, anon_sym_LPAREN2, - ACTIONS(2397), 1, + ACTIONS(2488), 1, anon_sym_LBRACK, - ACTIONS(3123), 1, + ACTIONS(3198), 1, anon_sym_SLASH, - ACTIONS(3125), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3127), 1, + ACTIONS(3200), 1, anon_sym_AMP_AMP, - ACTIONS(3129), 1, + ACTIONS(3202), 1, anon_sym_PIPE, - ACTIONS(3131), 1, + ACTIONS(3204), 1, anon_sym_CARET, - ACTIONS(3133), 1, + ACTIONS(3206), 1, anon_sym_AMP, - ACTIONS(3143), 1, + ACTIONS(3216), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3218), 1, anon_sym_QMARK, - STATE(668), 1, + ACTIONS(3316), 1, + anon_sym_COMMA, + ACTIONS(3444), 1, + anon_sym_COLON, + STATE(765), 1, sym_argument_list, - ACTIONS(2399), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2405), 2, + ACTIONS(2490), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3119), 2, + ACTIONS(2492), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3194), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3121), 2, + ACTIONS(3196), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3135), 2, + ACTIONS(3208), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3137), 2, + ACTIONS(3210), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3139), 2, + ACTIONS(3212), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3141), 2, + ACTIONS(3214), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3223), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [46775] = 21, + [51900] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2395), 1, + ACTIONS(2486), 1, anon_sym_LPAREN2, - ACTIONS(2397), 1, + ACTIONS(2488), 1, anon_sym_LBRACK, - ACTIONS(3123), 1, + ACTIONS(3198), 1, anon_sym_SLASH, - ACTIONS(3125), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3127), 1, + ACTIONS(3200), 1, anon_sym_AMP_AMP, - ACTIONS(3129), 1, + ACTIONS(3202), 1, anon_sym_PIPE, - ACTIONS(3131), 1, + ACTIONS(3204), 1, anon_sym_CARET, - ACTIONS(3133), 1, + ACTIONS(3206), 1, anon_sym_AMP, - ACTIONS(3143), 1, + ACTIONS(3216), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3218), 1, anon_sym_QMARK, - ACTIONS(3255), 1, + ACTIONS(3316), 1, anon_sym_COMMA, - ACTIONS(3377), 1, + ACTIONS(3446), 1, anon_sym_SEMI, - STATE(668), 1, + STATE(765), 1, sym_argument_list, - ACTIONS(2399), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2405), 2, + ACTIONS(2490), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3119), 2, + ACTIONS(2492), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3194), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3121), 2, + ACTIONS(3196), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3135), 2, + ACTIONS(3208), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3137), 2, + ACTIONS(3210), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3139), 2, + ACTIONS(3212), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3141), 2, + ACTIONS(3214), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [46847] = 21, + [51972] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(2395), 1, - anon_sym_LPAREN2, - ACTIONS(2397), 1, + ACTIONS(2488), 1, anon_sym_LBRACK, - ACTIONS(3123), 1, + ACTIONS(2492), 1, + anon_sym_DASH_GT, + ACTIONS(3166), 1, + anon_sym_LPAREN2, + ACTIONS(3192), 1, + anon_sym_DOT, + ACTIONS(3360), 1, anon_sym_SLASH, - ACTIONS(3125), 1, + ACTIONS(3362), 1, + anon_sym_CARET, + ACTIONS(3364), 1, + anon_sym_AMP, + ACTIONS(3388), 1, anon_sym_PIPE_PIPE, - ACTIONS(3127), 1, + ACTIONS(3390), 1, anon_sym_AMP_AMP, - ACTIONS(3129), 1, + ACTIONS(3392), 1, anon_sym_PIPE, - ACTIONS(3131), 1, - anon_sym_CARET, - ACTIONS(3133), 1, - anon_sym_AMP, - ACTIONS(3143), 1, + ACTIONS(3394), 1, anon_sym_QMARK, - ACTIONS(3255), 1, - anon_sym_COMMA, - ACTIONS(3379), 1, - anon_sym_SEMI, - STATE(668), 1, + ACTIONS(3448), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3450), 1, + anon_sym_RBRACK, + STATE(765), 1, sym_argument_list, - ACTIONS(2399), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2405), 2, + ACTIONS(2490), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3119), 2, + ACTIONS(3356), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3121), 2, + ACTIONS(3358), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3135), 2, + ACTIONS(3366), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3137), 2, + ACTIONS(3368), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3139), 2, + ACTIONS(3370), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3141), 2, + ACTIONS(3372), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [46919] = 20, + [52046] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2395), 1, - anon_sym_LPAREN2, - ACTIONS(2397), 1, + ACTIONS(2366), 1, + anon_sym_RBRACK, + ACTIONS(2488), 1, anon_sym_LBRACK, - ACTIONS(3123), 1, + ACTIONS(3166), 1, + anon_sym_LPAREN2, + ACTIONS(3360), 1, anon_sym_SLASH, - ACTIONS(3125), 1, + ACTIONS(3362), 1, + anon_sym_CARET, + ACTIONS(3364), 1, + anon_sym_AMP, + ACTIONS(3388), 1, anon_sym_PIPE_PIPE, - ACTIONS(3127), 1, + ACTIONS(3390), 1, anon_sym_AMP_AMP, - ACTIONS(3129), 1, + ACTIONS(3392), 1, anon_sym_PIPE, - ACTIONS(3131), 1, - anon_sym_CARET, - ACTIONS(3133), 1, - anon_sym_AMP, - ACTIONS(3143), 1, + ACTIONS(3394), 1, anon_sym_QMARK, - ACTIONS(3381), 1, - anon_sym_RPAREN, - STATE(668), 1, + STATE(765), 1, sym_argument_list, - ACTIONS(2399), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2405), 2, + ACTIONS(2490), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3119), 2, + ACTIONS(2492), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3356), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3121), 2, + ACTIONS(3358), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3135), 2, + ACTIONS(3366), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3137), 2, + ACTIONS(3368), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3139), 2, + ACTIONS(3370), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3141), 2, + ACTIONS(3372), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [46988] = 20, + [52115] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2395), 1, - anon_sym_LPAREN2, - ACTIONS(2397), 1, + ACTIONS(2488), 1, anon_sym_LBRACK, - ACTIONS(3123), 1, + ACTIONS(3166), 1, + anon_sym_LPAREN2, + ACTIONS(3360), 1, anon_sym_SLASH, - ACTIONS(3125), 1, + ACTIONS(3362), 1, + anon_sym_CARET, + ACTIONS(3364), 1, + anon_sym_AMP, + ACTIONS(3388), 1, anon_sym_PIPE_PIPE, - ACTIONS(3127), 1, + ACTIONS(3390), 1, anon_sym_AMP_AMP, - ACTIONS(3129), 1, + ACTIONS(3392), 1, anon_sym_PIPE, - ACTIONS(3131), 1, - anon_sym_CARET, - ACTIONS(3133), 1, - anon_sym_AMP, - ACTIONS(3143), 1, + ACTIONS(3394), 1, anon_sym_QMARK, - ACTIONS(3383), 1, - anon_sym_COMMA, - STATE(668), 1, + ACTIONS(3452), 1, + anon_sym_RBRACK, + STATE(765), 1, sym_argument_list, - ACTIONS(2399), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2405), 2, + ACTIONS(2490), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3119), 2, + ACTIONS(2492), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3356), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3121), 2, + ACTIONS(3358), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3135), 2, + ACTIONS(3366), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3137), 2, + ACTIONS(3368), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3139), 2, + ACTIONS(3370), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3141), 2, + ACTIONS(3372), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [47057] = 20, + [52184] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2219), 1, + ACTIONS(2352), 1, anon_sym_RBRACK, - ACTIONS(2397), 1, + ACTIONS(2488), 1, anon_sym_LBRACK, - ACTIONS(3091), 1, + ACTIONS(3166), 1, anon_sym_LPAREN2, - ACTIONS(3291), 1, + ACTIONS(3360), 1, anon_sym_SLASH, - ACTIONS(3303), 1, + ACTIONS(3362), 1, anon_sym_CARET, - ACTIONS(3305), 1, + ACTIONS(3364), 1, anon_sym_AMP, - ACTIONS(3311), 1, - anon_sym_PIPE, - ACTIONS(3319), 1, + ACTIONS(3388), 1, anon_sym_PIPE_PIPE, - ACTIONS(3321), 1, + ACTIONS(3390), 1, anon_sym_AMP_AMP, - ACTIONS(3323), 1, + ACTIONS(3392), 1, + anon_sym_PIPE, + ACTIONS(3394), 1, anon_sym_QMARK, - STATE(668), 1, + STATE(765), 1, sym_argument_list, - ACTIONS(2399), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2405), 2, + ACTIONS(2490), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3287), 2, + ACTIONS(2492), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3356), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3289), 2, + ACTIONS(3358), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3293), 2, + ACTIONS(3366), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3368), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3295), 2, + ACTIONS(3370), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3297), 2, + ACTIONS(3372), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3307), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [47126] = 20, + [52253] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2395), 1, + ACTIONS(2486), 1, anon_sym_LPAREN2, - ACTIONS(2397), 1, + ACTIONS(2488), 1, anon_sym_LBRACK, - ACTIONS(3123), 1, + ACTIONS(3198), 1, anon_sym_SLASH, - ACTIONS(3125), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3127), 1, + ACTIONS(3200), 1, anon_sym_AMP_AMP, - ACTIONS(3129), 1, + ACTIONS(3202), 1, anon_sym_PIPE, - ACTIONS(3131), 1, + ACTIONS(3204), 1, anon_sym_CARET, - ACTIONS(3133), 1, + ACTIONS(3206), 1, anon_sym_AMP, - ACTIONS(3143), 1, + ACTIONS(3216), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3218), 1, anon_sym_QMARK, - ACTIONS(3385), 1, + ACTIONS(3454), 1, anon_sym_COLON, - STATE(668), 1, + STATE(765), 1, sym_argument_list, - ACTIONS(2399), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2405), 2, + ACTIONS(2490), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3119), 2, + ACTIONS(2492), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3194), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3121), 2, + ACTIONS(3196), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3135), 2, + ACTIONS(3208), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3137), 2, + ACTIONS(3210), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3139), 2, + ACTIONS(3212), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3141), 2, + ACTIONS(3214), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [47195] = 20, + [52322] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2395), 1, - anon_sym_LPAREN2, - ACTIONS(2397), 1, + ACTIONS(2362), 1, + anon_sym_RBRACK, + ACTIONS(2488), 1, anon_sym_LBRACK, - ACTIONS(3123), 1, + ACTIONS(3166), 1, + anon_sym_LPAREN2, + ACTIONS(3360), 1, anon_sym_SLASH, - ACTIONS(3125), 1, + ACTIONS(3362), 1, + anon_sym_CARET, + ACTIONS(3364), 1, + anon_sym_AMP, + ACTIONS(3388), 1, anon_sym_PIPE_PIPE, - ACTIONS(3127), 1, + ACTIONS(3390), 1, anon_sym_AMP_AMP, - ACTIONS(3129), 1, + ACTIONS(3392), 1, anon_sym_PIPE, - ACTIONS(3131), 1, - anon_sym_CARET, - ACTIONS(3133), 1, - anon_sym_AMP, - ACTIONS(3143), 1, + ACTIONS(3394), 1, anon_sym_QMARK, - ACTIONS(3387), 1, - anon_sym_RPAREN, - STATE(668), 1, + STATE(765), 1, sym_argument_list, - ACTIONS(2399), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2405), 2, + ACTIONS(2490), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3119), 2, + ACTIONS(2492), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3356), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3121), 2, + ACTIONS(3358), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3135), 2, + ACTIONS(3366), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3137), 2, + ACTIONS(3368), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3139), 2, + ACTIONS(3370), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3141), 2, + ACTIONS(3372), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [47264] = 20, + [52391] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2229), 1, + ACTIONS(2350), 1, anon_sym_RBRACK, - ACTIONS(2397), 1, + ACTIONS(2488), 1, anon_sym_LBRACK, - ACTIONS(3091), 1, + ACTIONS(3166), 1, anon_sym_LPAREN2, - ACTIONS(3291), 1, + ACTIONS(3360), 1, anon_sym_SLASH, - ACTIONS(3303), 1, + ACTIONS(3362), 1, anon_sym_CARET, - ACTIONS(3305), 1, + ACTIONS(3364), 1, anon_sym_AMP, - ACTIONS(3311), 1, - anon_sym_PIPE, - ACTIONS(3319), 1, + ACTIONS(3388), 1, anon_sym_PIPE_PIPE, - ACTIONS(3321), 1, + ACTIONS(3390), 1, anon_sym_AMP_AMP, - ACTIONS(3323), 1, + ACTIONS(3392), 1, + anon_sym_PIPE, + ACTIONS(3394), 1, anon_sym_QMARK, - STATE(668), 1, + STATE(765), 1, sym_argument_list, - ACTIONS(2399), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2405), 2, + ACTIONS(2490), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3287), 2, + ACTIONS(2492), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3356), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3289), 2, + ACTIONS(3358), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3293), 2, + ACTIONS(3366), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3368), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3295), 2, + ACTIONS(3370), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3297), 2, + ACTIONS(3372), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3307), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [47333] = 20, + [52460] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2397), 1, + ACTIONS(2360), 1, + anon_sym_RBRACK, + ACTIONS(2488), 1, anon_sym_LBRACK, - ACTIONS(3091), 1, + ACTIONS(3166), 1, anon_sym_LPAREN2, - ACTIONS(3291), 1, + ACTIONS(3360), 1, anon_sym_SLASH, - ACTIONS(3303), 1, + ACTIONS(3362), 1, anon_sym_CARET, - ACTIONS(3305), 1, + ACTIONS(3364), 1, anon_sym_AMP, - ACTIONS(3311), 1, - anon_sym_PIPE, - ACTIONS(3319), 1, + ACTIONS(3388), 1, anon_sym_PIPE_PIPE, - ACTIONS(3321), 1, + ACTIONS(3390), 1, anon_sym_AMP_AMP, - ACTIONS(3323), 1, + ACTIONS(3392), 1, + anon_sym_PIPE, + ACTIONS(3394), 1, anon_sym_QMARK, - ACTIONS(3389), 1, - anon_sym_RBRACK, - STATE(668), 1, + STATE(765), 1, sym_argument_list, - ACTIONS(2399), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2405), 2, + ACTIONS(2490), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3287), 2, + ACTIONS(2492), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3356), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3289), 2, + ACTIONS(3358), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3293), 2, + ACTIONS(3366), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3368), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3295), 2, + ACTIONS(3370), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3297), 2, + ACTIONS(3372), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3307), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [47402] = 20, + [52529] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2395), 1, + ACTIONS(2486), 1, anon_sym_LPAREN2, - ACTIONS(2397), 1, + ACTIONS(2488), 1, anon_sym_LBRACK, - ACTIONS(3123), 1, + ACTIONS(3198), 1, anon_sym_SLASH, - ACTIONS(3125), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3127), 1, + ACTIONS(3200), 1, anon_sym_AMP_AMP, - ACTIONS(3129), 1, + ACTIONS(3202), 1, anon_sym_PIPE, - ACTIONS(3131), 1, + ACTIONS(3204), 1, anon_sym_CARET, - ACTIONS(3133), 1, + ACTIONS(3206), 1, anon_sym_AMP, - ACTIONS(3143), 1, + ACTIONS(3216), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3218), 1, anon_sym_QMARK, - ACTIONS(3391), 1, + ACTIONS(3456), 1, anon_sym_RPAREN, - STATE(668), 1, + STATE(765), 1, sym_argument_list, - ACTIONS(2399), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2405), 2, + ACTIONS(2490), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3119), 2, + ACTIONS(2492), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3194), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3121), 2, + ACTIONS(3196), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3135), 2, + ACTIONS(3208), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3137), 2, + ACTIONS(3210), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3139), 2, + ACTIONS(3212), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3141), 2, + ACTIONS(3214), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [47471] = 20, + [52598] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2395), 1, - anon_sym_LPAREN2, - ACTIONS(2397), 1, + ACTIONS(2358), 1, + anon_sym_RBRACK, + ACTIONS(2488), 1, anon_sym_LBRACK, - ACTIONS(3123), 1, + ACTIONS(3166), 1, + anon_sym_LPAREN2, + ACTIONS(3360), 1, anon_sym_SLASH, - ACTIONS(3125), 1, + ACTIONS(3362), 1, + anon_sym_CARET, + ACTIONS(3364), 1, + anon_sym_AMP, + ACTIONS(3388), 1, anon_sym_PIPE_PIPE, - ACTIONS(3127), 1, + ACTIONS(3390), 1, anon_sym_AMP_AMP, - ACTIONS(3129), 1, + ACTIONS(3392), 1, anon_sym_PIPE, - ACTIONS(3131), 1, - anon_sym_CARET, - ACTIONS(3133), 1, - anon_sym_AMP, - ACTIONS(3143), 1, + ACTIONS(3394), 1, anon_sym_QMARK, - ACTIONS(3393), 1, - anon_sym_COLON, - STATE(668), 1, + STATE(765), 1, sym_argument_list, - ACTIONS(2399), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2405), 2, + ACTIONS(2490), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3119), 2, + ACTIONS(2492), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3356), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3121), 2, + ACTIONS(3358), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3135), 2, + ACTIONS(3366), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3137), 2, + ACTIONS(3368), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3139), 2, + ACTIONS(3370), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3141), 2, + ACTIONS(3372), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [47540] = 20, + [52667] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2395), 1, + ACTIONS(2486), 1, anon_sym_LPAREN2, - ACTIONS(2397), 1, + ACTIONS(2488), 1, anon_sym_LBRACK, - ACTIONS(3123), 1, + ACTIONS(3198), 1, anon_sym_SLASH, - ACTIONS(3125), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3127), 1, + ACTIONS(3200), 1, anon_sym_AMP_AMP, - ACTIONS(3129), 1, + ACTIONS(3202), 1, anon_sym_PIPE, - ACTIONS(3131), 1, + ACTIONS(3204), 1, anon_sym_CARET, - ACTIONS(3133), 1, + ACTIONS(3206), 1, anon_sym_AMP, - ACTIONS(3143), 1, + ACTIONS(3216), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3218), 1, anon_sym_QMARK, - ACTIONS(3395), 1, - anon_sym_RPAREN, - STATE(668), 1, + ACTIONS(3458), 1, + anon_sym_COLON, + STATE(765), 1, sym_argument_list, - ACTIONS(2399), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2405), 2, + ACTIONS(2490), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3119), 2, + ACTIONS(2492), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3194), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3121), 2, + ACTIONS(3196), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3135), 2, + ACTIONS(3208), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3137), 2, + ACTIONS(3210), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3139), 2, + ACTIONS(3212), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3141), 2, + ACTIONS(3214), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [47609] = 20, + [52736] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2395), 1, + ACTIONS(2486), 1, anon_sym_LPAREN2, - ACTIONS(2397), 1, + ACTIONS(2488), 1, anon_sym_LBRACK, - ACTIONS(3123), 1, + ACTIONS(3198), 1, anon_sym_SLASH, - ACTIONS(3125), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3127), 1, + ACTIONS(3200), 1, anon_sym_AMP_AMP, - ACTIONS(3129), 1, + ACTIONS(3202), 1, anon_sym_PIPE, - ACTIONS(3131), 1, + ACTIONS(3204), 1, anon_sym_CARET, - ACTIONS(3133), 1, + ACTIONS(3206), 1, anon_sym_AMP, - ACTIONS(3143), 1, + ACTIONS(3216), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3218), 1, anon_sym_QMARK, - ACTIONS(3397), 1, + ACTIONS(3460), 1, anon_sym_COLON, - STATE(668), 1, + STATE(765), 1, sym_argument_list, - ACTIONS(2399), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2405), 2, + ACTIONS(2490), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3119), 2, + ACTIONS(2492), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3194), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3121), 2, + ACTIONS(3196), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3135), 2, + ACTIONS(3208), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3137), 2, + ACTIONS(3210), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3139), 2, + ACTIONS(3212), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3141), 2, + ACTIONS(3214), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [47678] = 20, + [52805] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2239), 1, + ACTIONS(2364), 1, anon_sym_RBRACK, - ACTIONS(2397), 1, + ACTIONS(2488), 1, anon_sym_LBRACK, - ACTIONS(3091), 1, + ACTIONS(3166), 1, anon_sym_LPAREN2, - ACTIONS(3291), 1, + ACTIONS(3360), 1, anon_sym_SLASH, - ACTIONS(3303), 1, + ACTIONS(3362), 1, anon_sym_CARET, - ACTIONS(3305), 1, + ACTIONS(3364), 1, anon_sym_AMP, - ACTIONS(3311), 1, - anon_sym_PIPE, - ACTIONS(3319), 1, + ACTIONS(3388), 1, anon_sym_PIPE_PIPE, - ACTIONS(3321), 1, + ACTIONS(3390), 1, anon_sym_AMP_AMP, - ACTIONS(3323), 1, + ACTIONS(3392), 1, + anon_sym_PIPE, + ACTIONS(3394), 1, anon_sym_QMARK, - STATE(668), 1, + STATE(765), 1, sym_argument_list, - ACTIONS(2399), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2405), 2, + ACTIONS(2490), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3287), 2, + ACTIONS(2492), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3356), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3289), 2, + ACTIONS(3358), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3293), 2, + ACTIONS(3366), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3368), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3295), 2, + ACTIONS(3370), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3297), 2, + ACTIONS(3372), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3307), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [47747] = 20, + [52874] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2235), 1, - anon_sym_RBRACK, - ACTIONS(2397), 1, - anon_sym_LBRACK, - ACTIONS(3091), 1, + ACTIONS(2486), 1, anon_sym_LPAREN2, - ACTIONS(3291), 1, + ACTIONS(2488), 1, + anon_sym_LBRACK, + ACTIONS(3198), 1, anon_sym_SLASH, - ACTIONS(3303), 1, + ACTIONS(3200), 1, + anon_sym_AMP_AMP, + ACTIONS(3202), 1, + anon_sym_PIPE, + ACTIONS(3204), 1, anon_sym_CARET, - ACTIONS(3305), 1, + ACTIONS(3206), 1, anon_sym_AMP, - ACTIONS(3311), 1, - anon_sym_PIPE, - ACTIONS(3319), 1, + ACTIONS(3216), 1, anon_sym_PIPE_PIPE, - ACTIONS(3321), 1, - anon_sym_AMP_AMP, - ACTIONS(3323), 1, + ACTIONS(3218), 1, anon_sym_QMARK, - STATE(668), 1, + ACTIONS(3462), 1, + anon_sym_RPAREN, + STATE(765), 1, sym_argument_list, - ACTIONS(2399), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2405), 2, + ACTIONS(2490), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3287), 2, + ACTIONS(2492), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3194), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3289), 2, + ACTIONS(3196), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3293), 2, + ACTIONS(3208), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3210), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3295), 2, + ACTIONS(3212), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3297), 2, + ACTIONS(3214), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3307), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [47816] = 20, + [52943] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2395), 1, + ACTIONS(2486), 1, anon_sym_LPAREN2, - ACTIONS(2397), 1, + ACTIONS(2488), 1, anon_sym_LBRACK, - ACTIONS(3123), 1, + ACTIONS(3198), 1, anon_sym_SLASH, - ACTIONS(3125), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3127), 1, + ACTIONS(3200), 1, anon_sym_AMP_AMP, - ACTIONS(3129), 1, + ACTIONS(3202), 1, anon_sym_PIPE, - ACTIONS(3131), 1, + ACTIONS(3204), 1, anon_sym_CARET, - ACTIONS(3133), 1, + ACTIONS(3206), 1, anon_sym_AMP, - ACTIONS(3143), 1, + ACTIONS(3216), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3218), 1, anon_sym_QMARK, - ACTIONS(3399), 1, - anon_sym_COLON, - STATE(668), 1, + ACTIONS(3464), 1, + anon_sym_RPAREN, + STATE(765), 1, sym_argument_list, - ACTIONS(2399), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2405), 2, + ACTIONS(2490), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3119), 2, + ACTIONS(2492), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3194), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3121), 2, + ACTIONS(3196), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3135), 2, + ACTIONS(3208), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3137), 2, + ACTIONS(3210), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3139), 2, + ACTIONS(3212), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3141), 2, + ACTIONS(3214), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [47885] = 20, + [53012] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2395), 1, - anon_sym_LPAREN2, - ACTIONS(2397), 1, + ACTIONS(2488), 1, anon_sym_LBRACK, - ACTIONS(3123), 1, + ACTIONS(3166), 1, + anon_sym_LPAREN2, + ACTIONS(3360), 1, anon_sym_SLASH, - ACTIONS(3125), 1, + ACTIONS(3362), 1, + anon_sym_CARET, + ACTIONS(3364), 1, + anon_sym_AMP, + ACTIONS(3388), 1, anon_sym_PIPE_PIPE, - ACTIONS(3127), 1, + ACTIONS(3390), 1, anon_sym_AMP_AMP, - ACTIONS(3129), 1, + ACTIONS(3392), 1, anon_sym_PIPE, - ACTIONS(3131), 1, - anon_sym_CARET, - ACTIONS(3133), 1, - anon_sym_AMP, - ACTIONS(3143), 1, + ACTIONS(3394), 1, anon_sym_QMARK, - ACTIONS(3401), 1, - anon_sym_COLON, - STATE(668), 1, + ACTIONS(3466), 1, + anon_sym_RBRACK, + STATE(765), 1, sym_argument_list, - ACTIONS(2399), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2405), 2, + ACTIONS(2490), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3119), 2, + ACTIONS(2492), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3356), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3121), 2, + ACTIONS(3358), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3135), 2, + ACTIONS(3366), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3137), 2, + ACTIONS(3368), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3139), 2, + ACTIONS(3370), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3141), 2, + ACTIONS(3372), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [47954] = 20, + [53081] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2233), 1, - anon_sym_RBRACK, - ACTIONS(2397), 1, - anon_sym_LBRACK, - ACTIONS(3091), 1, + ACTIONS(2486), 1, anon_sym_LPAREN2, - ACTIONS(3291), 1, + ACTIONS(2488), 1, + anon_sym_LBRACK, + ACTIONS(3198), 1, anon_sym_SLASH, - ACTIONS(3303), 1, + ACTIONS(3200), 1, + anon_sym_AMP_AMP, + ACTIONS(3202), 1, + anon_sym_PIPE, + ACTIONS(3204), 1, anon_sym_CARET, - ACTIONS(3305), 1, + ACTIONS(3206), 1, anon_sym_AMP, - ACTIONS(3311), 1, - anon_sym_PIPE, - ACTIONS(3319), 1, + ACTIONS(3216), 1, anon_sym_PIPE_PIPE, - ACTIONS(3321), 1, - anon_sym_AMP_AMP, - ACTIONS(3323), 1, + ACTIONS(3218), 1, anon_sym_QMARK, - STATE(668), 1, + ACTIONS(3468), 1, + anon_sym_COMMA, + STATE(765), 1, sym_argument_list, - ACTIONS(2399), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2405), 2, + ACTIONS(2490), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3287), 2, + ACTIONS(2492), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3194), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3289), 2, + ACTIONS(3196), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3293), 2, + ACTIONS(3208), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3210), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3295), 2, + ACTIONS(3212), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3297), 2, + ACTIONS(3214), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3307), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [48023] = 20, + [53150] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2225), 1, - anon_sym_RBRACK, - ACTIONS(2397), 1, - anon_sym_LBRACK, - ACTIONS(3091), 1, + ACTIONS(2486), 1, anon_sym_LPAREN2, - ACTIONS(3291), 1, + ACTIONS(2488), 1, + anon_sym_LBRACK, + ACTIONS(3198), 1, anon_sym_SLASH, - ACTIONS(3303), 1, + ACTIONS(3200), 1, + anon_sym_AMP_AMP, + ACTIONS(3202), 1, + anon_sym_PIPE, + ACTIONS(3204), 1, anon_sym_CARET, - ACTIONS(3305), 1, + ACTIONS(3206), 1, anon_sym_AMP, - ACTIONS(3311), 1, - anon_sym_PIPE, - ACTIONS(3319), 1, + ACTIONS(3216), 1, anon_sym_PIPE_PIPE, - ACTIONS(3321), 1, - anon_sym_AMP_AMP, - ACTIONS(3323), 1, + ACTIONS(3218), 1, anon_sym_QMARK, - STATE(668), 1, + ACTIONS(3470), 1, + anon_sym_COLON, + STATE(765), 1, sym_argument_list, - ACTIONS(2399), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2405), 2, + ACTIONS(2490), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3287), 2, + ACTIONS(2492), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3194), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3289), 2, + ACTIONS(3196), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3293), 2, + ACTIONS(3208), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3210), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3295), 2, + ACTIONS(3212), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3297), 2, + ACTIONS(3214), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3307), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [48092] = 20, + [53219] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2227), 1, + ACTIONS(2304), 1, anon_sym_RBRACK, - ACTIONS(2397), 1, + ACTIONS(2488), 1, anon_sym_LBRACK, - ACTIONS(3091), 1, + ACTIONS(3166), 1, anon_sym_LPAREN2, - ACTIONS(3291), 1, + ACTIONS(3360), 1, anon_sym_SLASH, - ACTIONS(3303), 1, + ACTIONS(3362), 1, anon_sym_CARET, - ACTIONS(3305), 1, + ACTIONS(3364), 1, anon_sym_AMP, - ACTIONS(3311), 1, - anon_sym_PIPE, - ACTIONS(3319), 1, + ACTIONS(3388), 1, anon_sym_PIPE_PIPE, - ACTIONS(3321), 1, + ACTIONS(3390), 1, anon_sym_AMP_AMP, - ACTIONS(3323), 1, + ACTIONS(3392), 1, + anon_sym_PIPE, + ACTIONS(3394), 1, anon_sym_QMARK, - STATE(668), 1, + STATE(765), 1, sym_argument_list, - ACTIONS(2399), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2405), 2, + ACTIONS(2490), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3287), 2, + ACTIONS(2492), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3356), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3289), 2, + ACTIONS(3358), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3293), 2, + ACTIONS(3366), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3368), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3295), 2, + ACTIONS(3370), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3297), 2, + ACTIONS(3372), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3307), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [48161] = 20, + [53288] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2241), 1, + ACTIONS(2354), 1, anon_sym_RBRACK, - ACTIONS(2397), 1, + ACTIONS(2488), 1, anon_sym_LBRACK, - ACTIONS(3091), 1, + ACTIONS(3166), 1, anon_sym_LPAREN2, - ACTIONS(3291), 1, + ACTIONS(3360), 1, anon_sym_SLASH, - ACTIONS(3303), 1, + ACTIONS(3362), 1, anon_sym_CARET, - ACTIONS(3305), 1, + ACTIONS(3364), 1, anon_sym_AMP, - ACTIONS(3311), 1, - anon_sym_PIPE, - ACTIONS(3319), 1, + ACTIONS(3388), 1, anon_sym_PIPE_PIPE, - ACTIONS(3321), 1, + ACTIONS(3390), 1, anon_sym_AMP_AMP, - ACTIONS(3323), 1, + ACTIONS(3392), 1, + anon_sym_PIPE, + ACTIONS(3394), 1, anon_sym_QMARK, - STATE(668), 1, + STATE(765), 1, sym_argument_list, - ACTIONS(2399), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2405), 2, + ACTIONS(2490), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3287), 2, + ACTIONS(2492), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3356), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3289), 2, + ACTIONS(3358), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3293), 2, + ACTIONS(3366), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3368), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3295), 2, + ACTIONS(3370), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3297), 2, + ACTIONS(3372), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3307), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [48230] = 20, + [53357] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2231), 1, - anon_sym_RBRACK, - ACTIONS(2397), 1, - anon_sym_LBRACK, - ACTIONS(3091), 1, + ACTIONS(2486), 1, anon_sym_LPAREN2, - ACTIONS(3291), 1, + ACTIONS(2488), 1, + anon_sym_LBRACK, + ACTIONS(3198), 1, anon_sym_SLASH, - ACTIONS(3303), 1, + ACTIONS(3200), 1, + anon_sym_AMP_AMP, + ACTIONS(3202), 1, + anon_sym_PIPE, + ACTIONS(3204), 1, anon_sym_CARET, - ACTIONS(3305), 1, + ACTIONS(3206), 1, anon_sym_AMP, - ACTIONS(3311), 1, - anon_sym_PIPE, - ACTIONS(3319), 1, + ACTIONS(3216), 1, anon_sym_PIPE_PIPE, - ACTIONS(3321), 1, - anon_sym_AMP_AMP, - ACTIONS(3323), 1, + ACTIONS(3218), 1, anon_sym_QMARK, - STATE(668), 1, + ACTIONS(3472), 1, + anon_sym_COLON, + STATE(765), 1, sym_argument_list, - ACTIONS(2399), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2405), 2, + ACTIONS(2490), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3287), 2, + ACTIONS(2492), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3194), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3289), 2, + ACTIONS(3196), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3293), 2, + ACTIONS(3208), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3210), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3295), 2, + ACTIONS(3212), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3297), 2, + ACTIONS(3214), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3307), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [48299] = 20, + [53426] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2237), 1, - anon_sym_RBRACK, - ACTIONS(2397), 1, - anon_sym_LBRACK, - ACTIONS(3091), 1, + ACTIONS(2486), 1, anon_sym_LPAREN2, - ACTIONS(3291), 1, + ACTIONS(2488), 1, + anon_sym_LBRACK, + ACTIONS(3198), 1, anon_sym_SLASH, - ACTIONS(3303), 1, + ACTIONS(3200), 1, + anon_sym_AMP_AMP, + ACTIONS(3202), 1, + anon_sym_PIPE, + ACTIONS(3204), 1, anon_sym_CARET, - ACTIONS(3305), 1, + ACTIONS(3206), 1, anon_sym_AMP, - ACTIONS(3311), 1, - anon_sym_PIPE, - ACTIONS(3319), 1, + ACTIONS(3216), 1, anon_sym_PIPE_PIPE, - ACTIONS(3321), 1, - anon_sym_AMP_AMP, - ACTIONS(3323), 1, + ACTIONS(3218), 1, anon_sym_QMARK, - STATE(668), 1, + ACTIONS(3474), 1, + anon_sym_RPAREN, + STATE(765), 1, sym_argument_list, - ACTIONS(2399), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2405), 2, + ACTIONS(2490), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3287), 2, + ACTIONS(2492), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3194), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3289), 2, + ACTIONS(3196), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3293), 2, + ACTIONS(3208), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3210), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3295), 2, + ACTIONS(3212), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3297), 2, + ACTIONS(3214), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3307), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [48368] = 20, + [53495] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2397), 1, + ACTIONS(2356), 1, + anon_sym_RBRACK, + ACTIONS(2488), 1, anon_sym_LBRACK, - ACTIONS(3091), 1, + ACTIONS(3166), 1, anon_sym_LPAREN2, - ACTIONS(3291), 1, + ACTIONS(3360), 1, anon_sym_SLASH, - ACTIONS(3303), 1, + ACTIONS(3362), 1, anon_sym_CARET, - ACTIONS(3305), 1, + ACTIONS(3364), 1, anon_sym_AMP, - ACTIONS(3311), 1, - anon_sym_PIPE, - ACTIONS(3319), 1, + ACTIONS(3388), 1, anon_sym_PIPE_PIPE, - ACTIONS(3321), 1, + ACTIONS(3390), 1, anon_sym_AMP_AMP, - ACTIONS(3323), 1, + ACTIONS(3392), 1, + anon_sym_PIPE, + ACTIONS(3394), 1, anon_sym_QMARK, - ACTIONS(3403), 1, - anon_sym_RBRACK, - STATE(668), 1, + STATE(765), 1, sym_argument_list, - ACTIONS(2399), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2405), 2, + ACTIONS(2490), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3287), 2, + ACTIONS(2492), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3356), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3289), 2, + ACTIONS(3358), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3293), 2, + ACTIONS(3366), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3368), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3295), 2, + ACTIONS(3370), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3297), 2, + ACTIONS(3372), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3307), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [48437] = 13, + [53564] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, + ACTIONS(53), 1, anon_sym_const, - ACTIONS(1857), 1, + ACTIONS(2010), 1, anon_sym_LPAREN2, - ACTIONS(1859), 1, + ACTIONS(2012), 1, anon_sym_STAR, - ACTIONS(3056), 1, + ACTIONS(3144), 1, anon_sym_LBRACK, - STATE(703), 1, + STATE(799), 1, sym_alignas_qualifier, - STATE(1476), 1, + STATE(1658), 1, sym__abstract_declarator, - STATE(1509), 1, + STATE(1691), 1, sym_parameter_list, - ACTIONS(3183), 2, + ACTIONS(3260), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1012), 2, + STATE(1224), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3175), 3, + ACTIONS(3476), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - STATE(1504), 4, + STATE(1717), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, - ACTIONS(3177), 8, + ACTIONS(3254), 8, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [53618] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2935), 1, + anon_sym_const, + ACTIONS(2948), 1, + anon_sym_LBRACE, + ACTIONS(3484), 1, + anon_sym_COLON, + STATE(841), 1, + sym_attribute_specifier, + STATE(1106), 1, + sym_enumerator_list, + ACTIONS(3478), 2, + anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(3480), 2, + anon_sym___scanf, + anon_sym___printf, + ACTIONS(3482), 4, + anon_sym___read_mostly, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + ACTIONS(2937), 13, + anon_sym_LPAREN2, + anon_sym_STAR, anon_sym___extension__, + anon_sym_LBRACK, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -102823,39 +116422,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [48491] = 13, + anon_sym_alignas, + anon_sym__Alignas, + [53666] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, + ACTIONS(53), 1, anon_sym_const, - ACTIONS(1857), 1, + ACTIONS(2010), 1, anon_sym_LPAREN2, - ACTIONS(1859), 1, + ACTIONS(2012), 1, anon_sym_STAR, - ACTIONS(3056), 1, + ACTIONS(3144), 1, anon_sym_LBRACK, - STATE(703), 1, + STATE(799), 1, sym_alignas_qualifier, - STATE(1470), 1, + STATE(1649), 1, sym__abstract_declarator, - STATE(1509), 1, + STATE(1691), 1, sym_parameter_list, - ACTIONS(3183), 2, + ACTIONS(3260), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1104), 2, + STATE(1141), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3405), 3, + ACTIONS(3487), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - STATE(1504), 4, + STATE(1717), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, - ACTIONS(3177), 8, + ACTIONS(3254), 8, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -102864,59 +116465,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [48545] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2395), 1, - anon_sym_LPAREN2, - ACTIONS(2397), 1, - anon_sym_LBRACK, - ACTIONS(3123), 1, - anon_sym_SLASH, - ACTIONS(3125), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3127), 1, - anon_sym_AMP_AMP, - ACTIONS(3129), 1, - anon_sym_PIPE, - ACTIONS(3131), 1, - anon_sym_CARET, - ACTIONS(3133), 1, - anon_sym_AMP, - ACTIONS(3143), 1, - anon_sym_QMARK, - STATE(668), 1, - sym_argument_list, - ACTIONS(2399), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2405), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(3119), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3121), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3135), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3137), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3139), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3141), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [48611] = 4, + [53720] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3155), 1, + ACTIONS(3238), 1, anon_sym_SEMI, - ACTIONS(1740), 7, + ACTIONS(1756), 7, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -102924,7 +116478,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(1734), 18, + ACTIONS(1750), 18, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -102943,39 +116497,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [48647] = 13, + [53756] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, + ACTIONS(53), 1, anon_sym_const, - ACTIONS(1857), 1, + ACTIONS(2010), 1, anon_sym_LPAREN2, - ACTIONS(1859), 1, + ACTIONS(2012), 1, anon_sym_STAR, - ACTIONS(3056), 1, + ACTIONS(3144), 1, anon_sym_LBRACK, - STATE(703), 1, + STATE(799), 1, sym_alignas_qualifier, - STATE(1462), 1, + STATE(1683), 1, sym__abstract_declarator, - STATE(1509), 1, + STATE(1691), 1, sym_parameter_list, - ACTIONS(3183), 2, + ACTIONS(3260), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1102), 2, + STATE(1141), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3407), 3, + ACTIONS(3489), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - STATE(1504), 4, + STATE(1717), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, - ACTIONS(3177), 8, + ACTIONS(3254), 8, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -102984,39 +116538,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [48701] = 13, + [53810] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2486), 1, + anon_sym_LPAREN2, + ACTIONS(2488), 1, + anon_sym_LBRACK, + ACTIONS(3198), 1, + anon_sym_SLASH, + ACTIONS(3200), 1, + anon_sym_AMP_AMP, + ACTIONS(3202), 1, + anon_sym_PIPE, + ACTIONS(3204), 1, + anon_sym_CARET, + ACTIONS(3206), 1, + anon_sym_AMP, + ACTIONS(3216), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3218), 1, + anon_sym_QMARK, + STATE(765), 1, + sym_argument_list, + ACTIONS(2490), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2492), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3194), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3196), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3208), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3210), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3212), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3214), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [53876] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, + ACTIONS(53), 1, anon_sym_const, - ACTIONS(1857), 1, + ACTIONS(2010), 1, anon_sym_LPAREN2, - ACTIONS(1859), 1, + ACTIONS(2012), 1, anon_sym_STAR, - ACTIONS(3056), 1, + ACTIONS(3144), 1, anon_sym_LBRACK, - STATE(703), 1, + STATE(799), 1, sym_alignas_qualifier, - STATE(1479), 1, + STATE(1682), 1, sym__abstract_declarator, - STATE(1509), 1, + STATE(1691), 1, sym_parameter_list, - ACTIONS(3183), 2, + ACTIONS(3260), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1012), 2, + STATE(1222), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3409), 3, + ACTIONS(3491), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - STATE(1504), 4, + STATE(1717), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, - ACTIONS(3177), 8, + ACTIONS(3254), 8, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -103025,39 +116626,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [48755] = 13, + [53930] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, + ACTIONS(1835), 1, + anon_sym___based, + ACTIONS(3220), 1, + sym_identifier, + ACTIONS(3222), 1, + anon_sym_LPAREN2, + ACTIONS(3224), 1, + anon_sym_STAR, + ACTIONS(3228), 1, + sym_primitive_type, + STATE(1382), 1, + sym_ms_call_modifier, + STATE(1421), 1, + sym_macro_modifier, + STATE(1626), 1, + sym__type_declarator, + STATE(2043), 1, + sym_ms_based_modifier, + ACTIONS(43), 2, + anon_sym___init, + anon_sym___exit, + ACTIONS(3226), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1443), 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___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [53986] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, anon_sym_const, - ACTIONS(1857), 1, + ACTIONS(2010), 1, anon_sym_LPAREN2, - ACTIONS(1859), 1, + ACTIONS(2012), 1, anon_sym_STAR, - ACTIONS(3056), 1, + ACTIONS(3144), 1, anon_sym_LBRACK, - STATE(703), 1, + STATE(799), 1, sym_alignas_qualifier, - STATE(1480), 1, + STATE(1672), 1, sym__abstract_declarator, - STATE(1509), 1, + STATE(1691), 1, sym_parameter_list, - ACTIONS(3183), 2, + ACTIONS(3260), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1012), 2, + STATE(1141), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3050), 3, + ACTIONS(3252), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - STATE(1504), 4, + STATE(1717), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, - ACTIONS(3177), 8, + ACTIONS(3254), 8, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -103066,39 +116709,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [48809] = 13, + [54040] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, + ACTIONS(53), 1, anon_sym_const, - ACTIONS(1857), 1, + ACTIONS(2010), 1, anon_sym_LPAREN2, - ACTIONS(1859), 1, + ACTIONS(2012), 1, anon_sym_STAR, - ACTIONS(3056), 1, + ACTIONS(3144), 1, anon_sym_LBRACK, - STATE(703), 1, + STATE(799), 1, sym_alignas_qualifier, - STATE(1473), 1, + STATE(1657), 1, sym__abstract_declarator, - STATE(1509), 1, + STATE(1691), 1, sym_parameter_list, - ACTIONS(3183), 2, + ACTIONS(3260), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1012), 2, + STATE(1141), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3411), 3, + ACTIONS(3138), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - STATE(1504), 4, + STATE(1717), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, - ACTIONS(3177), 8, + ACTIONS(3254), 8, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -103107,36 +116750,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [48863] = 12, + [54094] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1797), 1, - anon_sym___based, - ACTIONS(3048), 1, - sym_identifier, - ACTIONS(3219), 1, + ACTIONS(1831), 1, anon_sym_LPAREN2, - ACTIONS(3221), 1, + ACTIONS(1833), 1, anon_sym_STAR, - STATE(703), 1, + ACTIONS(1835), 1, + anon_sym___based, + ACTIONS(3136), 1, + sym_identifier, + STATE(799), 1, sym_alignas_qualifier, - STATE(1308), 1, + STATE(1473), 1, sym__declarator, - STATE(2016), 1, + STATE(2174), 1, sym_ms_based_modifier, - ACTIONS(53), 2, + ACTIONS(55), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1012), 2, + STATE(1141), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(1387), 5, + STATE(1569), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - ACTIONS(51), 9, + ACTIONS(53), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -103146,36 +116789,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [48914] = 12, + [54145] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1831), 1, + anon_sym_LPAREN2, + ACTIONS(1833), 1, + anon_sym_STAR, + ACTIONS(1835), 1, + anon_sym___based, + ACTIONS(3493), 1, + sym_identifier, + STATE(558), 1, + sym__old_style_function_declarator, + STATE(1414), 1, + sym_ms_call_modifier, + STATE(1472), 1, + sym_macro_modifier, + STATE(1568), 1, + sym__declarator, + STATE(1569), 1, + sym_function_declarator, + STATE(1647), 1, + sym__declaration_declarator, + STATE(1739), 1, + sym__function_declaration_declarator, + STATE(1879), 1, + sym_init_declarator, + STATE(2174), 1, + sym_ms_based_modifier, + ACTIONS(43), 2, + anon_sym___init, + anon_sym___exit, + STATE(1581), 4, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_array_declarator, + ACTIONS(45), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [54206] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1797), 1, + ACTIONS(1835), 1, anon_sym___based, - ACTIONS(3048), 1, + ACTIONS(3262), 1, sym_identifier, - ACTIONS(3219), 1, + ACTIONS(3264), 1, anon_sym_LPAREN2, - ACTIONS(3221), 1, + ACTIONS(3266), 1, anon_sym_STAR, - STATE(703), 1, + STATE(799), 1, sym_alignas_qualifier, - STATE(1327), 1, - sym__declarator, - STATE(2016), 1, + STATE(1397), 1, + sym__field_declarator, + STATE(2274), 1, sym_ms_based_modifier, - ACTIONS(53), 2, + ACTIONS(55), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1012), 2, + STATE(1141), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(1387), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - ACTIONS(51), 9, + STATE(1438), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + ACTIONS(53), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -103185,73 +116872,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [48965] = 10, + [54257] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2913), 1, - anon_sym_const, - ACTIONS(2926), 1, - anon_sym_LBRACE, - ACTIONS(3419), 1, - anon_sym_COLON, - STATE(741), 1, - sym_attribute_specifier, - STATE(997), 1, - sym_enumerator_list, - ACTIONS(3413), 2, - anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(3415), 2, - anon_sym___scanf, - anon_sym___printf, - ACTIONS(3417), 3, - anon_sym___read_mostly, - anon_sym___ro_after_init, - anon_sym___init, - ACTIONS(2915), 13, + ACTIONS(1831), 1, anon_sym_LPAREN2, + ACTIONS(1833), 1, anon_sym_STAR, - anon_sym___extension__, - anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, - [49012] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1797), 1, + ACTIONS(1835), 1, anon_sym___based, - ACTIONS(3209), 1, + ACTIONS(3136), 1, sym_identifier, - ACTIONS(3211), 1, - anon_sym_LPAREN2, - ACTIONS(3213), 1, - anon_sym_STAR, - STATE(703), 1, + STATE(799), 1, sym_alignas_qualifier, - STATE(1280), 1, - sym__field_declarator, - STATE(1875), 1, + STATE(1476), 1, + sym__declarator, + STATE(2174), 1, sym_ms_based_modifier, - ACTIONS(53), 2, + ACTIONS(55), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1012), 2, + STATE(1141), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(1306), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - ACTIONS(51), 9, + STATE(1569), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + ACTIONS(53), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -103261,36 +116911,124 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [49063] = 12, + [54308] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1831), 1, + anon_sym_LPAREN2, + ACTIONS(1833), 1, + anon_sym_STAR, + ACTIONS(1835), 1, + anon_sym___based, + ACTIONS(3493), 1, + sym_identifier, + STATE(548), 1, + sym__old_style_function_declarator, + STATE(1415), 1, + sym_ms_call_modifier, + STATE(1479), 1, + sym_macro_modifier, + STATE(1555), 1, + sym__declarator, + STATE(1569), 1, + sym_function_declarator, + STATE(1637), 1, + sym__declaration_declarator, + STATE(1739), 1, + sym__function_declaration_declarator, + STATE(1874), 1, + sym_init_declarator, + STATE(2174), 1, + sym_ms_based_modifier, + ACTIONS(43), 2, + anon_sym___init, + anon_sym___exit, + STATE(1581), 4, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_array_declarator, + ACTIONS(45), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [54369] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1797), 1, + ACTIONS(1831), 1, + anon_sym_LPAREN2, + ACTIONS(1833), 1, + anon_sym_STAR, + ACTIONS(1835), 1, anon_sym___based, - ACTIONS(3048), 1, + ACTIONS(3493), 1, sym_identifier, - ACTIONS(3219), 1, + STATE(598), 1, + sym__old_style_function_declarator, + STATE(1416), 1, + sym_ms_call_modifier, + STATE(1475), 1, + sym_macro_modifier, + STATE(1561), 1, + sym__declarator, + STATE(1569), 1, + sym_function_declarator, + STATE(1679), 1, + sym__declaration_declarator, + STATE(1739), 1, + sym__function_declaration_declarator, + STATE(1875), 1, + sym_init_declarator, + STATE(2174), 1, + sym_ms_based_modifier, + ACTIONS(43), 2, + anon_sym___init, + anon_sym___exit, + STATE(1581), 4, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_array_declarator, + ACTIONS(45), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [54430] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1831), 1, anon_sym_LPAREN2, - ACTIONS(3221), 1, + ACTIONS(1833), 1, anon_sym_STAR, - STATE(703), 1, + ACTIONS(1835), 1, + anon_sym___based, + ACTIONS(3136), 1, + sym_identifier, + STATE(799), 1, sym_alignas_qualifier, - STATE(1333), 1, + STATE(1465), 1, sym__declarator, - STATE(2016), 1, + STATE(2174), 1, sym_ms_based_modifier, - ACTIONS(53), 2, + ACTIONS(55), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1012), 2, + STATE(1141), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(1387), 5, + STATE(1569), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - ACTIONS(51), 9, + ACTIONS(53), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -103300,36 +117038,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [49114] = 12, + [54481] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1797), 1, + ACTIONS(1835), 1, anon_sym___based, - ACTIONS(3209), 1, + ACTIONS(3262), 1, sym_identifier, - ACTIONS(3211), 1, + ACTIONS(3264), 1, anon_sym_LPAREN2, - ACTIONS(3213), 1, + ACTIONS(3266), 1, anon_sym_STAR, - STATE(703), 1, + STATE(799), 1, sym_alignas_qualifier, - STATE(1273), 1, + STATE(1392), 1, sym__field_declarator, - STATE(1875), 1, + STATE(2274), 1, sym_ms_based_modifier, - ACTIONS(53), 2, + ACTIONS(55), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1012), 2, + STATE(1141), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(1306), 5, + STATE(1438), 5, sym_parenthesized_field_declarator, sym_attributed_field_declarator, sym_pointer_field_declarator, sym_function_field_declarator, sym_array_field_declarator, - ACTIONS(51), 9, + ACTIONS(53), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -103339,36 +117077,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [49165] = 12, + [54532] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1797), 1, + ACTIONS(1831), 1, + anon_sym_LPAREN2, + ACTIONS(1833), 1, + anon_sym_STAR, + ACTIONS(1835), 1, + anon_sym___based, + ACTIONS(3493), 1, + sym_identifier, + STATE(562), 1, + sym__old_style_function_declarator, + STATE(1422), 1, + sym_ms_call_modifier, + STATE(1483), 1, + sym_macro_modifier, + STATE(1556), 1, + sym__declarator, + STATE(1569), 1, + sym_function_declarator, + STATE(1681), 1, + sym__declaration_declarator, + STATE(1739), 1, + sym__function_declaration_declarator, + STATE(1843), 1, + sym_init_declarator, + STATE(2174), 1, + sym_ms_based_modifier, + ACTIONS(43), 2, + anon_sym___init, + anon_sym___exit, + STATE(1581), 4, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_array_declarator, + ACTIONS(45), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [54593] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1835), 1, anon_sym___based, - ACTIONS(3209), 1, + ACTIONS(3262), 1, sym_identifier, - ACTIONS(3211), 1, + ACTIONS(3264), 1, anon_sym_LPAREN2, - ACTIONS(3213), 1, + ACTIONS(3266), 1, anon_sym_STAR, - STATE(703), 1, + STATE(799), 1, sym_alignas_qualifier, - STATE(1271), 1, + STATE(1393), 1, sym__field_declarator, - STATE(1875), 1, + STATE(2274), 1, sym_ms_based_modifier, - ACTIONS(53), 2, + ACTIONS(55), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1012), 2, + STATE(1141), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(1306), 5, + STATE(1438), 5, sym_parenthesized_field_declarator, sym_attributed_field_declarator, sym_pointer_field_declarator, sym_function_field_declarator, sym_array_field_declarator, - ACTIONS(51), 9, + ACTIONS(53), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -103378,28 +117160,153 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [49216] = 7, + [54644] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(2674), 1, - sym_primitive_type, - ACTIONS(3422), 1, + ACTIONS(1831), 1, + anon_sym_LPAREN2, + ACTIONS(1833), 1, + anon_sym_STAR, + ACTIONS(1835), 1, + anon_sym___based, + ACTIONS(3493), 1, sym_identifier, - STATE(1113), 1, + STATE(1426), 1, + sym_ms_call_modifier, + STATE(1482), 1, + sym_macro_modifier, + STATE(1569), 1, + sym_function_declarator, + STATE(1631), 1, + sym__declarator, + STATE(1694), 1, + sym__declaration_declarator, + STATE(1739), 1, + sym__function_declaration_declarator, + STATE(1989), 1, + sym_init_declarator, + STATE(2174), 1, + sym_ms_based_modifier, + ACTIONS(43), 2, + anon_sym___init, + anon_sym___exit, + STATE(1581), 4, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_array_declarator, + ACTIONS(45), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [54702] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1831), 1, + anon_sym_LPAREN2, + ACTIONS(1833), 1, + anon_sym_STAR, + ACTIONS(1835), 1, + anon_sym___based, + ACTIONS(3493), 1, + sym_identifier, + STATE(1419), 1, + sym_ms_call_modifier, + STATE(1470), 1, + sym_macro_modifier, + STATE(1569), 1, + sym_function_declarator, + STATE(1631), 1, + sym__declarator, + STATE(1679), 1, + sym__declaration_declarator, + STATE(1739), 1, + sym__function_declaration_declarator, + STATE(1875), 1, + sym_init_declarator, + STATE(2174), 1, + sym_ms_based_modifier, + ACTIONS(43), 2, + anon_sym___init, + anon_sym___exit, + STATE(1581), 4, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_array_declarator, + ACTIONS(45), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [54760] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1831), 1, + anon_sym_LPAREN2, + ACTIONS(1833), 1, + anon_sym_STAR, + ACTIONS(1835), 1, + anon_sym___based, + ACTIONS(3493), 1, + sym_identifier, + STATE(1423), 1, + sym_ms_call_modifier, + STATE(1467), 1, + sym_macro_modifier, + STATE(1569), 1, + sym_function_declarator, + STATE(1631), 1, + sym__declarator, + STATE(1637), 1, + sym__declaration_declarator, + STATE(1739), 1, + sym__function_declaration_declarator, + STATE(1874), 1, + sym_init_declarator, + STATE(2174), 1, + sym_ms_based_modifier, + ACTIONS(43), 2, + anon_sym___init, + anon_sym___exit, + STATE(1581), 4, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_array_declarator, + ACTIONS(45), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [54818] = 6, + ACTIONS(3), 1, + sym_comment, + STATE(819), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(3424), 4, + ACTIONS(2612), 2, + sym_primitive_type, + sym_identifier, + ACTIONS(2616), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(2668), 6, + ACTIONS(2877), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_LBRACK, anon_sym_COLON, - ACTIONS(2670), 11, + ACTIONS(2874), 11, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -103411,27 +117318,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_alignas, anon_sym__Alignas, - [49256] = 6, + [54856] = 16, ACTIONS(3), 1, sym_comment, - STATE(732), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2593), 2, + ACTIONS(1831), 1, + anon_sym_LPAREN2, + ACTIONS(1833), 1, + anon_sym_STAR, + ACTIONS(1835), 1, + anon_sym___based, + ACTIONS(3493), 1, + sym_identifier, + STATE(1413), 1, + sym_ms_call_modifier, + STATE(1484), 1, + sym_macro_modifier, + STATE(1569), 1, + sym_function_declarator, + STATE(1631), 1, + sym__declarator, + STATE(1647), 1, + sym__declaration_declarator, + STATE(1739), 1, + sym__function_declaration_declarator, + STATE(1879), 1, + sym_init_declarator, + STATE(2174), 1, + sym_ms_based_modifier, + ACTIONS(43), 2, + anon_sym___init, + anon_sym___exit, + STATE(1581), 4, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_array_declarator, + ACTIONS(45), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [54914] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1831), 1, + anon_sym_LPAREN2, + ACTIONS(1833), 1, + anon_sym_STAR, + ACTIONS(1835), 1, + anon_sym___based, + ACTIONS(3493), 1, + sym_identifier, + STATE(1422), 1, + sym_ms_call_modifier, + STATE(1483), 1, + sym_macro_modifier, + STATE(1569), 1, + sym_function_declarator, + STATE(1585), 1, + sym__declarator, + STATE(1681), 1, + sym__declaration_declarator, + STATE(1739), 1, + sym__function_declaration_declarator, + STATE(1843), 1, + sym_init_declarator, + STATE(2174), 1, + sym_ms_based_modifier, + ACTIONS(43), 2, + anon_sym___init, + anon_sym___exit, + STATE(1581), 4, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_array_declarator, + ACTIONS(45), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [54972] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2909), 1, sym_primitive_type, + ACTIONS(3495), 1, sym_identifier, - ACTIONS(2597), 4, + STATE(1243), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(3497), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(2713), 6, + ACTIONS(2903), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_LBRACK, anon_sym_COLON, - ACTIONS(2710), 11, + ACTIONS(2905), 11, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -103443,21 +117435,273 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_alignas, anon_sym__Alignas, - [49294] = 7, + [55012] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1831), 1, + anon_sym_LPAREN2, + ACTIONS(1833), 1, + anon_sym_STAR, + ACTIONS(1835), 1, + anon_sym___based, + ACTIONS(3493), 1, + sym_identifier, + STATE(1424), 1, + sym_ms_call_modifier, + STATE(1481), 1, + sym_macro_modifier, + STATE(1569), 1, + sym_function_declarator, + STATE(1631), 1, + sym__declarator, + STATE(1667), 1, + sym__declaration_declarator, + STATE(1739), 1, + sym__function_declaration_declarator, + STATE(1840), 1, + sym_init_declarator, + STATE(2174), 1, + sym_ms_based_modifier, + ACTIONS(43), 2, + anon_sym___init, + anon_sym___exit, + STATE(1581), 4, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_array_declarator, + ACTIONS(45), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [55070] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1831), 1, + anon_sym_LPAREN2, + ACTIONS(1833), 1, + anon_sym_STAR, + ACTIONS(1835), 1, + anon_sym___based, + ACTIONS(3493), 1, + sym_identifier, + STATE(1417), 1, + sym_ms_call_modifier, + STATE(1466), 1, + sym_macro_modifier, + STATE(1569), 1, + sym_function_declarator, + STATE(1631), 1, + sym__declarator, + STATE(1652), 1, + sym__declaration_declarator, + STATE(1739), 1, + sym__function_declaration_declarator, + STATE(1825), 1, + sym_init_declarator, + STATE(2174), 1, + sym_ms_based_modifier, + ACTIONS(43), 2, + anon_sym___init, + anon_sym___exit, + STATE(1581), 4, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_array_declarator, + ACTIONS(45), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [55128] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1831), 1, + anon_sym_LPAREN2, + ACTIONS(1833), 1, + anon_sym_STAR, + ACTIONS(1835), 1, + anon_sym___based, + ACTIONS(3493), 1, + sym_identifier, + STATE(1428), 1, + sym_ms_call_modifier, + STATE(1487), 1, + sym_macro_modifier, + STATE(1569), 1, + sym_function_declarator, + STATE(1631), 1, + sym__declarator, + STATE(1681), 1, + sym__declaration_declarator, + STATE(1739), 1, + sym__function_declaration_declarator, + STATE(1843), 1, + sym_init_declarator, + STATE(2174), 1, + sym_ms_based_modifier, + ACTIONS(43), 2, + anon_sym___init, + anon_sym___exit, + STATE(1581), 4, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_array_declarator, + ACTIONS(45), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [55186] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1831), 1, + anon_sym_LPAREN2, + ACTIONS(1833), 1, + anon_sym_STAR, + ACTIONS(1835), 1, + anon_sym___based, + ACTIONS(3493), 1, + sym_identifier, + STATE(1416), 1, + sym_ms_call_modifier, + STATE(1475), 1, + sym_macro_modifier, + STATE(1569), 1, + sym_function_declarator, + STATE(1578), 1, + sym__declarator, + STATE(1679), 1, + sym__declaration_declarator, + STATE(1739), 1, + sym__function_declaration_declarator, + STATE(1875), 1, + sym_init_declarator, + STATE(2174), 1, + sym_ms_based_modifier, + ACTIONS(43), 2, + anon_sym___init, + anon_sym___exit, + STATE(1581), 4, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_array_declarator, + ACTIONS(45), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [55244] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1831), 1, + anon_sym_LPAREN2, + ACTIONS(1833), 1, + anon_sym_STAR, + ACTIONS(1835), 1, + anon_sym___based, + ACTIONS(3493), 1, + sym_identifier, + STATE(1415), 1, + sym_ms_call_modifier, + STATE(1479), 1, + sym_macro_modifier, + STATE(1569), 1, + sym_function_declarator, + STATE(1579), 1, + sym__declarator, + STATE(1637), 1, + sym__declaration_declarator, + STATE(1739), 1, + sym__function_declaration_declarator, + STATE(1874), 1, + sym_init_declarator, + STATE(2174), 1, + sym_ms_based_modifier, + ACTIONS(43), 2, + anon_sym___init, + anon_sym___exit, + STATE(1581), 4, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_array_declarator, + ACTIONS(45), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [55302] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1831), 1, + anon_sym_LPAREN2, + ACTIONS(1833), 1, + anon_sym_STAR, + ACTIONS(1835), 1, + anon_sym___based, + ACTIONS(3493), 1, + sym_identifier, + STATE(1414), 1, + sym_ms_call_modifier, + STATE(1472), 1, + sym_macro_modifier, + STATE(1569), 1, + sym_function_declarator, + STATE(1580), 1, + sym__declarator, + STATE(1647), 1, + sym__declaration_declarator, + STATE(1739), 1, + sym__function_declaration_declarator, + STATE(1879), 1, + sym_init_declarator, + STATE(2174), 1, + sym_ms_based_modifier, + ACTIONS(43), 2, + anon_sym___init, + anon_sym___exit, + STATE(1581), 4, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_array_declarator, + ACTIONS(45), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [55360] = 7, ACTIONS(3), 1, sym_comment, - STATE(703), 1, + STATE(799), 1, sym_alignas_qualifier, - ACTIONS(53), 2, + ACTIONS(55), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(3428), 2, + ACTIONS(3501), 2, anon_sym_LPAREN2, anon_sym_STAR, - STATE(1012), 2, + STATE(1141), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3426), 7, + ACTIONS(3499), 7, anon_sym___based, anon_sym_signed, anon_sym_unsigned, @@ -103465,7 +117709,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_short, sym_primitive_type, sym_identifier, - ACTIONS(51), 9, + ACTIONS(53), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -103475,21 +117719,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [49333] = 7, + [55399] = 7, ACTIONS(3), 1, sym_comment, - STATE(703), 1, + STATE(799), 1, sym_alignas_qualifier, - ACTIONS(53), 2, + ACTIONS(55), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(3432), 2, + ACTIONS(3505), 2, anon_sym_LPAREN2, anon_sym_STAR, - STATE(1117), 2, + STATE(1258), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3430), 7, + ACTIONS(3503), 7, anon_sym___based, anon_sym_signed, anon_sym_unsigned, @@ -103497,7 +117741,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_short, sym_primitive_type, sym_identifier, - ACTIONS(51), 9, + ACTIONS(53), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -103507,21 +117751,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [49372] = 7, + [55438] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2224), 1, + sym_identifier, + ACTIONS(2232), 1, + anon_sym_LBRACK, + STATE(1271), 1, + sym_gnu_asm_expression, + ACTIONS(33), 2, + anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(35), 2, + anon_sym___scanf, + anon_sym___printf, + ACTIONS(97), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(1259), 3, + sym_preproc_call_expression, + sym_attribute_specifier, + aux_sym_function_declarator_repeat1, + ACTIONS(37), 4, + anon_sym___read_mostly, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + ACTIONS(2228), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + [55483] = 7, ACTIONS(3), 1, sym_comment, - STATE(703), 1, + STATE(799), 1, sym_alignas_qualifier, - ACTIONS(53), 2, + ACTIONS(55), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(3436), 2, + ACTIONS(3509), 2, anon_sym_LPAREN2, anon_sym_STAR, - STATE(1114), 2, + STATE(1253), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3434), 7, + ACTIONS(3507), 7, anon_sym___based, anon_sym_signed, anon_sym_unsigned, @@ -103529,7 +117808,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_short, sym_primitive_type, sym_identifier, - ACTIONS(51), 9, + ACTIONS(53), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -103539,21 +117818,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [49411] = 7, + [55522] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2224), 1, + sym_identifier, + ACTIONS(2232), 1, + anon_sym_LBRACK, + STATE(1266), 1, + sym_gnu_asm_expression, + STATE(1395), 1, + sym_attribute_specifier, + STATE(1446), 1, + aux_sym_type_definition_repeat1, + ACTIONS(33), 2, + anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(35), 2, + anon_sym___scanf, + anon_sym___printf, + ACTIONS(97), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(3511), 2, + anon_sym_COMMA, + anon_sym_SEMI, + STATE(1259), 2, + sym_preproc_call_expression, + aux_sym_function_declarator_repeat1, + ACTIONS(37), 4, + anon_sym___read_mostly, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + ACTIONS(2228), 4, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + [55573] = 7, ACTIONS(3), 1, sym_comment, - STATE(703), 1, + STATE(799), 1, sym_alignas_qualifier, - ACTIONS(53), 2, + ACTIONS(55), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(3440), 2, + ACTIONS(3515), 2, anon_sym_LPAREN2, anon_sym_STAR, - STATE(1012), 2, + STATE(1141), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3438), 7, + ACTIONS(3513), 7, anon_sym___based, anon_sym_signed, anon_sym_unsigned, @@ -103561,7 +117878,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_short, sym_primitive_type, sym_identifier, - ACTIONS(51), 9, + ACTIONS(53), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -103571,70 +117888,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [49450] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1797), 1, - anon_sym___based, - ACTIONS(3145), 1, - sym_identifier, - ACTIONS(3147), 1, - anon_sym_LPAREN2, - ACTIONS(3149), 1, - anon_sym_STAR, - ACTIONS(3153), 1, - sym_primitive_type, - STATE(1290), 1, - sym_ms_call_modifier, - STATE(1444), 1, - sym__type_declarator, - STATE(1891), 1, - sym_ms_based_modifier, - ACTIONS(3151), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1322), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(43), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - [49499] = 10, + [55612] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3442), 1, + ACTIONS(2224), 1, sym_identifier, - ACTIONS(3446), 1, - anon_sym_LBRACK, - STATE(1161), 1, - sym_gnu_asm_expression, ACTIONS(33), 2, anon_sym___attribute__, anon_sym___must_hold, ACTIONS(35), 2, anon_sym___scanf, anon_sym___printf, - ACTIONS(95), 2, + ACTIONS(3519), 3, + anon_sym_LBRACK, anon_sym_asm, anon_sym___asm__, - ACTIONS(37), 3, - anon_sym___read_mostly, - anon_sym___ro_after_init, - anon_sym___init, - STATE(1139), 3, + STATE(1263), 3, sym_preproc_call_expression, sym_attribute_specifier, aux_sym_function_declarator_repeat1, - ACTIONS(3444), 7, + ACTIONS(37), 4, + anon_sym___read_mostly, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + ACTIONS(3517), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -103642,630 +117920,471 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - [49543] = 15, + [55652] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1797), 1, - anon_sym___based, - ACTIONS(3219), 1, + ACTIONS(1831), 1, anon_sym_LPAREN2, - ACTIONS(3221), 1, + ACTIONS(1833), 1, anon_sym_STAR, - ACTIONS(3448), 1, + ACTIONS(1835), 1, + anon_sym___based, + ACTIONS(3136), 1, sym_identifier, - STATE(535), 1, + STATE(590), 1, sym__old_style_function_declarator, - STATE(1324), 1, + STATE(1453), 1, sym_ms_call_modifier, - STATE(1387), 1, - sym_function_declarator, - STATE(1388), 1, + STATE(1513), 1, + sym_macro_modifier, + STATE(1582), 1, sym__declarator, - STATE(1481), 1, - sym__declaration_declarator, - STATE(1541), 1, - sym__function_declaration_declarator, - STATE(1675), 1, - sym_init_declarator, - STATE(2016), 1, + STATE(2174), 1, sym_ms_based_modifier, - STATE(1401), 4, + ACTIONS(43), 2, + anon_sym___init, + anon_sym___exit, + STATE(1569), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, + sym_function_declarator, sym_array_declarator, - ACTIONS(43), 6, + ACTIONS(45), 6, anon_sym___cdecl, anon_sym___clrcall, anon_sym___stdcall, anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - [49597] = 15, + [55702] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1797), 1, + ACTIONS(1835), 1, anon_sym___based, - ACTIONS(3219), 1, + ACTIONS(3262), 1, + sym_identifier, + ACTIONS(3264), 1, anon_sym_LPAREN2, - ACTIONS(3221), 1, + ACTIONS(3266), 1, anon_sym_STAR, - ACTIONS(3448), 1, - sym_identifier, - STATE(513), 1, - sym__old_style_function_declarator, - STATE(1334), 1, - sym_ms_call_modifier, - STATE(1366), 1, - sym__declarator, - STATE(1387), 1, - sym_function_declarator, - STATE(1483), 1, - sym__declaration_declarator, - STATE(1541), 1, - sym__function_declaration_declarator, - STATE(1599), 1, - sym_init_declarator, - STATE(2016), 1, + ACTIONS(3521), 1, + anon_sym_SEMI, + STATE(1386), 1, + sym__field_declarator, + STATE(1562), 1, + sym__field_declaration_declarator, + STATE(2273), 1, + sym_attribute_specifier, + STATE(2274), 1, sym_ms_based_modifier, - STATE(1401), 4, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_array_declarator, - ACTIONS(43), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - [49651] = 13, + ACTIONS(33), 2, + anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(35), 2, + anon_sym___scanf, + anon_sym___printf, + ACTIONS(37), 4, + anon_sym___read_mostly, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + STATE(1438), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + [55754] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3442), 1, + ACTIONS(2224), 1, sym_identifier, - ACTIONS(3446), 1, - anon_sym_LBRACK, - STATE(1137), 1, - sym_gnu_asm_expression, - STATE(1272), 1, - sym_attribute_specifier, - STATE(1316), 1, - aux_sym_type_definition_repeat1, ACTIONS(33), 2, anon_sym___attribute__, anon_sym___must_hold, ACTIONS(35), 2, anon_sym___scanf, anon_sym___printf, - ACTIONS(95), 2, + ACTIONS(3525), 3, + anon_sym_LBRACK, anon_sym_asm, anon_sym___asm__, - ACTIONS(3450), 2, - anon_sym_COMMA, - anon_sym_SEMI, - STATE(1139), 2, + STATE(1263), 3, sym_preproc_call_expression, + sym_attribute_specifier, aux_sym_function_declarator_repeat1, - ACTIONS(37), 3, + ACTIONS(37), 4, anon_sym___read_mostly, anon_sym___ro_after_init, - anon_sym___init, - ACTIONS(3444), 4, + anon_sym___noreturn, + anon_sym___cold, + ACTIONS(3523), 7, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - [49701] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1797), 1, - anon_sym___based, - ACTIONS(3219), 1, - anon_sym_LPAREN2, - ACTIONS(3221), 1, - anon_sym_STAR, - ACTIONS(3448), 1, - sym_identifier, - STATE(532), 1, - sym__old_style_function_declarator, - STATE(1337), 1, - sym_ms_call_modifier, - STATE(1385), 1, - sym__declarator, - STATE(1387), 1, - sym_function_declarator, - STATE(1458), 1, - sym__declaration_declarator, - STATE(1541), 1, - sym__function_declaration_declarator, - STATE(1676), 1, - sym_init_declarator, - STATE(2016), 1, - sym_ms_based_modifier, - STATE(1401), 4, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_array_declarator, - ACTIONS(43), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - [49755] = 15, + [55794] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1797), 1, - anon_sym___based, - ACTIONS(3219), 1, - anon_sym_LPAREN2, - ACTIONS(3221), 1, - anon_sym_STAR, - ACTIONS(3448), 1, + ACTIONS(3527), 1, sym_identifier, - STATE(521), 1, - sym__old_style_function_declarator, - STATE(1336), 1, - sym_ms_call_modifier, - STATE(1387), 1, - sym_function_declarator, - STATE(1390), 1, - sym__declarator, - STATE(1467), 1, - sym__declaration_declarator, - STATE(1541), 1, - sym__function_declaration_declarator, - STATE(1600), 1, - sym_init_declarator, - STATE(2016), 1, - sym_ms_based_modifier, - STATE(1401), 4, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_array_declarator, - ACTIONS(43), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - [49809] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3454), 1, - anon_sym_LPAREN2, - STATE(961), 1, - sym_preproc_argument_list, - ACTIONS(3456), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3452), 15, + ACTIONS(3532), 2, + anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(3535), 2, + anon_sym___scanf, + anon_sym___printf, + ACTIONS(3541), 3, + anon_sym_LBRACK, + anon_sym_asm, + anon_sym___asm__, + STATE(1263), 3, + sym_preproc_call_expression, + sym_attribute_specifier, + aux_sym_function_declarator_repeat1, + ACTIONS(3538), 4, + anon_sym___read_mostly, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + ACTIONS(3530), 7, 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, - [49843] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(1151), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2724), 2, anon_sym_LPAREN2, - anon_sym_STAR, - ACTIONS(3458), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(2722), 14, - anon_sym___extension__, - anon_sym___based, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - sym_identifier, - [49876] = 14, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + [55834] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1797), 1, + ACTIONS(1835), 1, anon_sym___based, - ACTIONS(3219), 1, + ACTIONS(3262), 1, + sym_identifier, + ACTIONS(3264), 1, anon_sym_LPAREN2, - ACTIONS(3221), 1, + ACTIONS(3266), 1, anon_sym_STAR, - ACTIONS(3448), 1, - sym_identifier, - STATE(1312), 1, - sym_ms_call_modifier, - STATE(1387), 1, - sym_function_declarator, - STATE(1440), 1, - sym__declarator, - STATE(1458), 1, - sym__declaration_declarator, - STATE(1541), 1, - sym__function_declaration_declarator, - STATE(1676), 1, - sym_init_declarator, - STATE(2016), 1, + ACTIONS(3543), 1, + anon_sym_SEMI, + STATE(1386), 1, + sym__field_declarator, + STATE(1566), 1, + sym__field_declaration_declarator, + STATE(2248), 1, + sym_attribute_specifier, + STATE(2274), 1, sym_ms_based_modifier, - STATE(1401), 4, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_array_declarator, - ACTIONS(43), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - [49927] = 5, + ACTIONS(33), 2, + anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(35), 2, + anon_sym___scanf, + anon_sym___printf, + ACTIONS(37), 4, + anon_sym___read_mostly, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + STATE(1438), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + [55886] = 13, ACTIONS(3), 1, sym_comment, - STATE(1152), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2718), 2, + ACTIONS(1831), 1, anon_sym_LPAREN2, + ACTIONS(1833), 1, anon_sym_STAR, - ACTIONS(3461), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(2716), 14, - anon_sym___extension__, - anon_sym___based, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - sym_identifier, - [49960] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3464), 1, - sym_identifier, - ACTIONS(3466), 1, - anon_sym_RPAREN, - ACTIONS(3468), 1, - anon_sym_LPAREN2, - ACTIONS(3470), 1, - anon_sym_defined, - ACTIONS(3476), 1, - sym_number_literal, - ACTIONS(3472), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(3474), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3478), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1153), 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, - [50003] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1797), 1, + ACTIONS(1835), 1, anon_sym___based, - ACTIONS(3219), 1, - anon_sym_LPAREN2, - ACTIONS(3221), 1, - anon_sym_STAR, - ACTIONS(3448), 1, + ACTIONS(3136), 1, sym_identifier, - STATE(1326), 1, + STATE(551), 1, + sym__old_style_function_declarator, + STATE(1461), 1, sym_ms_call_modifier, - STATE(1387), 1, - sym_function_declarator, - STATE(1440), 1, + STATE(1509), 1, + sym_macro_modifier, + STATE(1588), 1, sym__declarator, - STATE(1455), 1, - sym__declaration_declarator, - STATE(1541), 1, - sym__function_declaration_declarator, - STATE(1638), 1, - sym_init_declarator, - STATE(2016), 1, + STATE(2174), 1, sym_ms_based_modifier, - STATE(1401), 4, + ACTIONS(43), 2, + anon_sym___init, + anon_sym___exit, + STATE(1569), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, + sym_function_declarator, sym_array_declarator, - ACTIONS(43), 6, + ACTIONS(45), 6, anon_sym___cdecl, anon_sym___clrcall, anon_sym___stdcall, anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - [50054] = 5, + [55936] = 12, ACTIONS(3), 1, sym_comment, - STATE(732), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2713), 2, - anon_sym_LPAREN2, - anon_sym_STAR, - ACTIONS(3480), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(2710), 14, - anon_sym___extension__, - anon_sym___based, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, + ACTIONS(2224), 1, sym_identifier, - [50087] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(732), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2815), 2, + ACTIONS(3519), 1, + anon_sym_LBRACK, + STATE(1395), 1, + sym_attribute_specifier, + STATE(1456), 1, + aux_sym_type_definition_repeat1, + ACTIONS(33), 2, + anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(35), 2, + anon_sym___scanf, + anon_sym___printf, + ACTIONS(3545), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(3547), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(1262), 2, + sym_preproc_call_expression, + aux_sym_function_declarator_repeat1, + ACTIONS(37), 4, + anon_sym___read_mostly, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + ACTIONS(3517), 4, anon_sym_LPAREN2, - anon_sym_STAR, - ACTIONS(3484), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(2813), 14, - anon_sym___extension__, - anon_sym___based, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - sym_identifier, - [50120] = 5, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + [55984] = 13, ACTIONS(3), 1, sym_comment, - STATE(732), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2742), 2, + ACTIONS(1831), 1, anon_sym_LPAREN2, + ACTIONS(1833), 1, anon_sym_STAR, - ACTIONS(3487), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(2740), 14, - anon_sym___extension__, - anon_sym___based, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - sym_identifier, - [50153] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1797), 1, + ACTIONS(1835), 1, anon_sym___based, - ACTIONS(3219), 1, - anon_sym_LPAREN2, - ACTIONS(3221), 1, - anon_sym_STAR, - ACTIONS(3448), 1, + ACTIONS(3136), 1, sym_identifier, - STATE(1334), 1, + STATE(574), 1, + sym__old_style_function_declarator, + STATE(1457), 1, sym_ms_call_modifier, - STATE(1387), 1, - sym_function_declarator, - STATE(1407), 1, + STATE(1540), 1, + sym_macro_modifier, + STATE(1576), 1, sym__declarator, - STATE(1483), 1, - sym__declaration_declarator, - STATE(1541), 1, - sym__function_declaration_declarator, - STATE(1599), 1, - sym_init_declarator, - STATE(2016), 1, + STATE(2174), 1, sym_ms_based_modifier, - STATE(1401), 4, + ACTIONS(43), 2, + anon_sym___init, + anon_sym___exit, + STATE(1569), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, + sym_function_declarator, sym_array_declarator, - ACTIONS(43), 6, + ACTIONS(45), 6, anon_sym___cdecl, anon_sym___clrcall, anon_sym___stdcall, anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - [50204] = 5, + [56034] = 14, ACTIONS(3), 1, sym_comment, - STATE(1133), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2663), 2, - anon_sym_LPAREN2, - anon_sym_STAR, - ACTIONS(3490), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(2661), 14, - anon_sym___extension__, + ACTIONS(1835), 1, anon_sym___based, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, + ACTIONS(3262), 1, sym_identifier, - [50237] = 14, + ACTIONS(3264), 1, + anon_sym_LPAREN2, + ACTIONS(3266), 1, + anon_sym_STAR, + ACTIONS(3549), 1, + anon_sym_SEMI, + STATE(1386), 1, + sym__field_declarator, + STATE(1553), 1, + sym__field_declaration_declarator, + STATE(2029), 1, + sym_attribute_specifier, + STATE(2274), 1, + sym_ms_based_modifier, + ACTIONS(33), 2, + anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(35), 2, + anon_sym___scanf, + anon_sym___printf, + ACTIONS(37), 4, + anon_sym___read_mostly, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + STATE(1438), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + [56086] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1797), 1, - anon_sym___based, - ACTIONS(3219), 1, + ACTIONS(1831), 1, anon_sym_LPAREN2, - ACTIONS(3221), 1, + ACTIONS(1833), 1, anon_sym_STAR, - ACTIONS(3448), 1, + ACTIONS(1835), 1, + anon_sym___based, + ACTIONS(3136), 1, sym_identifier, - STATE(1315), 1, + STATE(586), 1, + sym__old_style_function_declarator, + STATE(1462), 1, sym_ms_call_modifier, - STATE(1387), 1, - sym_function_declarator, - STATE(1440), 1, + STATE(1507), 1, + sym_macro_modifier, + STATE(1586), 1, sym__declarator, - STATE(1449), 1, - sym__declaration_declarator, - STATE(1541), 1, - sym__function_declaration_declarator, - STATE(1613), 1, - sym_init_declarator, - STATE(2016), 1, + STATE(2174), 1, sym_ms_based_modifier, - STATE(1401), 4, + ACTIONS(43), 2, + anon_sym___init, + anon_sym___exit, + STATE(1569), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, + sym_function_declarator, sym_array_declarator, - ACTIONS(43), 6, + ACTIONS(45), 6, anon_sym___cdecl, anon_sym___clrcall, anon_sym___stdcall, anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - [50288] = 12, + [56136] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3442), 1, + ACTIONS(3553), 1, + anon_sym_LPAREN2, + STATE(1067), 1, + sym_preproc_argument_list, + ACTIONS(3555), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3551), 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, + [56170] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2224), 1, sym_identifier, - ACTIONS(3497), 1, - anon_sym_LBRACK, - STATE(1272), 1, - sym_attribute_specifier, - STATE(1330), 1, - aux_sym_type_definition_repeat1, ACTIONS(33), 2, anon_sym___attribute__, anon_sym___must_hold, ACTIONS(35), 2, anon_sym___scanf, anon_sym___printf, - ACTIONS(3493), 2, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(3499), 2, + ACTIONS(3519), 3, + anon_sym_LBRACK, anon_sym_asm, anon_sym___asm__, - STATE(1150), 2, + STATE(1262), 3, sym_preproc_call_expression, + sym_attribute_specifier, aux_sym_function_declarator_repeat1, - ACTIONS(37), 3, + ACTIONS(37), 4, anon_sym___read_mostly, anon_sym___ro_after_init, - anon_sym___init, - ACTIONS(3495), 4, + anon_sym___noreturn, + anon_sym___cold, + ACTIONS(3517), 7, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - [50335] = 7, + [56210] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3501), 1, - sym_identifier, - ACTIONS(3507), 1, - sym_primitive_type, - STATE(1131), 1, + ACTIONS(3559), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3562), 1, + anon_sym_LBRACK, + STATE(1272), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(3557), 17, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym___scanf, + anon_sym___printf, + anon_sym___read_mostly, + anon_sym___must_hold, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + [56243] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(1295), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(2668), 2, + ACTIONS(2838), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(3504), 4, + ACTIONS(3564), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(2670), 12, + ACTIONS(2836), 14, anon_sym___extension__, anon_sym___based, anon_sym_const, @@ -104278,63 +118397,180 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_alignas, anon_sym__Alignas, - [50372] = 8, + sym_primitive_type, + sym_identifier, + [56276] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(3442), 1, + ACTIONS(1831), 1, + anon_sym_LPAREN2, + ACTIONS(1833), 1, + anon_sym_STAR, + ACTIONS(1835), 1, + anon_sym___based, + ACTIONS(3136), 1, sym_identifier, - ACTIONS(33), 2, - anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(35), 2, - anon_sym___scanf, - anon_sym___printf, - ACTIONS(37), 3, - anon_sym___read_mostly, - anon_sym___ro_after_init, + STATE(1457), 1, + sym_ms_call_modifier, + STATE(1540), 1, + sym_macro_modifier, + STATE(1592), 1, + sym__declarator, + STATE(2174), 1, + sym_ms_based_modifier, + ACTIONS(43), 2, anon_sym___init, - ACTIONS(3497), 3, - anon_sym_LBRACK, - anon_sym_asm, - anon_sym___asm__, - STATE(1159), 3, + anon_sym___exit, + STATE(1569), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + ACTIONS(45), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [56323] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3567), 1, + sym_identifier, + ACTIONS(3569), 1, + anon_sym_RPAREN, + ACTIONS(3571), 1, + anon_sym_LPAREN2, + ACTIONS(3573), 1, + anon_sym_defined, + ACTIONS(3579), 1, + sym_number_literal, + ACTIONS(3575), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(3577), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3581), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(1276), 7, + sym__preproc_expression, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, sym_preproc_call_expression, - sym_attribute_specifier, - aux_sym_function_declarator_repeat1, - ACTIONS(3495), 7, + sym_preproc_binary_expression, + sym_char_literal, + [56366] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3583), 1, anon_sym_COMMA, + ACTIONS(3585), 1, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - [50411] = 10, + ACTIONS(3591), 1, + anon_sym_SLASH, + ACTIONS(3593), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3595), 1, + anon_sym_AMP_AMP, + ACTIONS(3597), 1, + anon_sym_PIPE, + ACTIONS(3599), 1, + anon_sym_CARET, + ACTIONS(3601), 1, + anon_sym_AMP, + STATE(1839), 1, + aux_sym_preproc_argument_list_repeat1, + ACTIONS(3587), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3589), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3603), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3605), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3607), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3609), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [56421] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(3464), 1, + ACTIONS(3583), 1, + anon_sym_COMMA, + ACTIONS(3591), 1, + anon_sym_SLASH, + ACTIONS(3593), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3595), 1, + anon_sym_AMP_AMP, + ACTIONS(3597), 1, + anon_sym_PIPE, + ACTIONS(3599), 1, + anon_sym_CARET, + ACTIONS(3601), 1, + anon_sym_AMP, + ACTIONS(3611), 1, + anon_sym_RPAREN, + STATE(1917), 1, + aux_sym_preproc_argument_list_repeat1, + ACTIONS(3587), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3589), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3603), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3605), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3607), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3609), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [56476] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3567), 1, sym_identifier, - ACTIONS(3468), 1, + ACTIONS(3571), 1, anon_sym_LPAREN2, - ACTIONS(3470), 1, + ACTIONS(3573), 1, anon_sym_defined, - ACTIONS(3510), 1, + ACTIONS(3613), 1, anon_sym_RPAREN, - ACTIONS(3512), 1, + ACTIONS(3615), 1, sym_number_literal, - ACTIONS(3472), 2, + ACTIONS(3575), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3474), 2, + ACTIONS(3577), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3478), 5, + ACTIONS(3581), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1144), 7, + STATE(1277), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -104342,312 +118578,375 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [50454] = 14, + [56519] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1797), 1, - anon_sym___based, - ACTIONS(3209), 1, - sym_identifier, - ACTIONS(3211), 1, + STATE(819), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2877), 2, anon_sym_LPAREN2, - ACTIONS(3213), 1, anon_sym_STAR, - ACTIONS(3514), 1, - anon_sym_SEMI, - STATE(1269), 1, - sym__field_declarator, - STATE(1409), 1, - sym__field_declaration_declarator, - STATE(1875), 1, - sym_ms_based_modifier, - STATE(2032), 1, - sym_attribute_specifier, - ACTIONS(33), 2, - anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(35), 2, - anon_sym___scanf, - anon_sym___printf, - ACTIONS(37), 3, - anon_sym___read_mostly, - anon_sym___ro_after_init, - anon_sym___init, - STATE(1306), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - [50505] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1797), 1, + ACTIONS(3617), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(2874), 14, + anon_sym___extension__, anon_sym___based, - ACTIONS(3209), 1, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, sym_identifier, - ACTIONS(3211), 1, - anon_sym_LPAREN2, - ACTIONS(3213), 1, - anon_sym_STAR, - ACTIONS(3516), 1, - anon_sym_SEMI, - STATE(1269), 1, - sym__field_declarator, - STATE(1406), 1, - sym__field_declaration_declarator, - STATE(1875), 1, - sym_ms_based_modifier, - STATE(2021), 1, - sym_attribute_specifier, - ACTIONS(33), 2, - anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(35), 2, - anon_sym___scanf, - anon_sym___printf, - ACTIONS(37), 3, - anon_sym___read_mostly, - anon_sym___ro_after_init, - anon_sym___init, - STATE(1306), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - [50556] = 14, + [56552] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1797), 1, - anon_sym___based, - ACTIONS(3219), 1, + ACTIONS(1831), 1, anon_sym_LPAREN2, - ACTIONS(3221), 1, + ACTIONS(1833), 1, anon_sym_STAR, - ACTIONS(3448), 1, + ACTIONS(1835), 1, + anon_sym___based, + ACTIONS(3136), 1, sym_identifier, - STATE(1337), 1, + STATE(1462), 1, sym_ms_call_modifier, - STATE(1387), 1, - sym_function_declarator, - STATE(1416), 1, + STATE(1507), 1, + sym_macro_modifier, + STATE(1601), 1, sym__declarator, - STATE(1458), 1, - sym__declaration_declarator, - STATE(1541), 1, - sym__function_declaration_declarator, - STATE(1676), 1, - sym_init_declarator, - STATE(2016), 1, + STATE(2174), 1, sym_ms_based_modifier, - STATE(1401), 4, + ACTIONS(43), 2, + anon_sym___init, + anon_sym___exit, + STATE(1569), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, + sym_function_declarator, sym_array_declarator, - ACTIONS(43), 6, + ACTIONS(45), 6, anon_sym___cdecl, anon_sym___clrcall, anon_sym___stdcall, anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - [50607] = 16, + [56599] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(3518), 1, + ACTIONS(3583), 1, anon_sym_COMMA, - ACTIONS(3520), 1, - anon_sym_RPAREN, - ACTIONS(3526), 1, + ACTIONS(3591), 1, anon_sym_SLASH, - ACTIONS(3528), 1, + ACTIONS(3593), 1, anon_sym_PIPE_PIPE, - ACTIONS(3530), 1, + ACTIONS(3595), 1, anon_sym_AMP_AMP, - ACTIONS(3532), 1, + ACTIONS(3597), 1, anon_sym_PIPE, - ACTIONS(3534), 1, + ACTIONS(3599), 1, anon_sym_CARET, - ACTIONS(3536), 1, + ACTIONS(3601), 1, anon_sym_AMP, - STATE(1577), 1, + ACTIONS(3621), 1, + anon_sym_RPAREN, + STATE(1766), 1, aux_sym_preproc_argument_list_repeat1, - ACTIONS(3522), 2, + ACTIONS(3587), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3524), 2, + ACTIONS(3589), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3538), 2, + ACTIONS(3603), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3540), 2, + ACTIONS(3605), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3542), 2, + ACTIONS(3607), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3544), 2, + ACTIONS(3609), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [50662] = 14, + [56654] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1797), 1, + ACTIONS(1835), 1, anon_sym___based, - ACTIONS(3219), 1, + ACTIONS(1873), 1, anon_sym_LPAREN2, - ACTIONS(3221), 1, + ACTIONS(1875), 1, anon_sym_STAR, - ACTIONS(3448), 1, + ACTIONS(3136), 1, sym_identifier, - STATE(1336), 1, - sym_ms_call_modifier, - STATE(1387), 1, + ACTIONS(3144), 1, + anon_sym_LBRACK, + STATE(1398), 1, + sym_macro_modifier, + STATE(1632), 1, + sym__declarator, + STATE(1691), 1, + sym_parameter_list, + STATE(1722), 1, + sym__abstract_declarator, + STATE(2174), 1, + sym_ms_based_modifier, + ACTIONS(43), 2, + anon_sym___init, + anon_sym___exit, + STATE(1717), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + STATE(1569), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, sym_function_declarator, - STATE(1400), 1, + sym_array_declarator, + [56705] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1831), 1, + anon_sym_LPAREN2, + ACTIONS(1833), 1, + anon_sym_STAR, + ACTIONS(1835), 1, + anon_sym___based, + ACTIONS(3136), 1, + sym_identifier, + STATE(1453), 1, + sym_ms_call_modifier, + STATE(1513), 1, + sym_macro_modifier, + STATE(1602), 1, sym__declarator, - STATE(1467), 1, - sym__declaration_declarator, - STATE(1541), 1, - sym__function_declaration_declarator, - STATE(1600), 1, - sym_init_declarator, - STATE(2016), 1, + STATE(2174), 1, sym_ms_based_modifier, - STATE(1401), 4, + ACTIONS(43), 2, + anon_sym___init, + anon_sym___exit, + STATE(1569), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, + sym_function_declarator, sym_array_declarator, - ACTIONS(43), 6, + ACTIONS(45), 6, anon_sym___cdecl, anon_sym___clrcall, anon_sym___stdcall, anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - [50713] = 10, + [56752] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3464), 1, - sym_identifier, - ACTIONS(3468), 1, + ACTIONS(1761), 1, + anon_sym_STAR, + ACTIONS(2825), 1, anon_sym_LPAREN2, - ACTIONS(3470), 1, - anon_sym_defined, - ACTIONS(3546), 1, - anon_sym_RPAREN, - ACTIONS(3548), 1, - sym_number_literal, - ACTIONS(3472), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(3474), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3478), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1147), 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, - [50756] = 16, + STATE(1292), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(3623), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(1748), 14, + anon_sym___extension__, + anon_sym___based, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + [56787] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(3518), 1, - anon_sym_COMMA, - ACTIONS(3526), 1, - anon_sym_SLASH, - ACTIONS(3528), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3530), 1, - anon_sym_AMP_AMP, - ACTIONS(3532), 1, - anon_sym_PIPE, - ACTIONS(3534), 1, - anon_sym_CARET, - ACTIONS(3536), 1, - anon_sym_AMP, - ACTIONS(3550), 1, - anon_sym_RPAREN, - STATE(1665), 1, - aux_sym_preproc_argument_list_repeat1, - ACTIONS(3522), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3524), 2, + ACTIONS(1835), 1, + anon_sym___based, + ACTIONS(3262), 1, + sym_identifier, + ACTIONS(3264), 1, + anon_sym_LPAREN2, + ACTIONS(3266), 1, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3538), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3540), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3542), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3544), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [50811] = 14, + STATE(1445), 1, + sym_ms_call_modifier, + STATE(1524), 1, + sym_macro_modifier, + STATE(1636), 1, + sym__field_declarator, + STATE(2274), 1, + sym_ms_based_modifier, + ACTIONS(43), 2, + anon_sym___init, + anon_sym___exit, + STATE(1438), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + ACTIONS(45), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [56834] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1797), 1, - anon_sym___based, - ACTIONS(3219), 1, + ACTIONS(1831), 1, anon_sym_LPAREN2, - ACTIONS(3221), 1, + ACTIONS(1833), 1, anon_sym_STAR, - ACTIONS(3448), 1, + ACTIONS(1835), 1, + anon_sym___based, + ACTIONS(3136), 1, sym_identifier, - STATE(1328), 1, + STATE(1450), 1, sym_ms_call_modifier, - STATE(1387), 1, - sym_function_declarator, - STATE(1440), 1, + STATE(1533), 1, + sym_macro_modifier, + STATE(1630), 1, sym__declarator, - STATE(1467), 1, - sym__declaration_declarator, - STATE(1541), 1, - sym__function_declaration_declarator, - STATE(1600), 1, - sym_init_declarator, - STATE(2016), 1, + STATE(2174), 1, sym_ms_based_modifier, - STATE(1401), 4, + ACTIONS(43), 2, + anon_sym___init, + anon_sym___exit, + STATE(1569), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, + sym_function_declarator, sym_array_declarator, - ACTIONS(43), 6, + ACTIONS(45), 6, anon_sym___cdecl, anon_sym___clrcall, anon_sym___stdcall, anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - [50862] = 5, - ACTIONS(3452), 1, + [56881] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3626), 1, + sym_identifier, + ACTIONS(3632), 1, + sym_primitive_type, + STATE(1279), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2903), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + ACTIONS(3629), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(2905), 12, + anon_sym___extension__, + anon_sym___based, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + [56918] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(819), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2759), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + ACTIONS(3635), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(2757), 14, + anon_sym___extension__, + anon_sym___based, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + [56951] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(819), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2709), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + ACTIONS(3638), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(2707), 14, + anon_sym___extension__, + anon_sym___based, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + [56984] = 5, + ACTIONS(3551), 1, anon_sym_LF, - ACTIONS(3552), 1, + ACTIONS(3641), 1, anon_sym_LPAREN2, - ACTIONS(3554), 1, + ACTIONS(3643), 1, sym_comment, - STATE(1253), 1, + STATE(1380), 1, sym_preproc_argument_list, - ACTIONS(3456), 18, + ACTIONS(3555), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -104666,51 +118965,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [50895] = 8, + [57017] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(3442), 1, + ACTIONS(3567), 1, sym_identifier, - ACTIONS(33), 2, - anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(35), 2, - anon_sym___scanf, - anon_sym___printf, - ACTIONS(37), 3, - anon_sym___read_mostly, - anon_sym___ro_after_init, - anon_sym___init, - ACTIONS(3558), 3, - anon_sym_LBRACK, - anon_sym_asm, - anon_sym___asm__, - STATE(1159), 3, - sym_preproc_call_expression, - sym_attribute_specifier, - aux_sym_function_declarator_repeat1, - ACTIONS(3556), 7, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(3571), 1, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - [50934] = 5, + ACTIONS(3573), 1, + anon_sym_defined, + ACTIONS(3645), 1, + anon_sym_RPAREN, + ACTIONS(3647), 1, + sym_number_literal, + ACTIONS(3575), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(3577), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3581), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(1281), 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, + [57060] = 5, ACTIONS(3), 1, sym_comment, - STATE(732), 1, + STATE(819), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(2698), 2, + ACTIONS(2886), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(3560), 4, + ACTIONS(3649), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(2696), 14, + ACTIONS(2884), 14, anon_sym___extension__, anon_sym___based, anon_sym_const, @@ -104725,20 +119026,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [50967] = 5, + [57093] = 5, ACTIONS(3), 1, sym_comment, - STATE(732), 1, + STATE(1289), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(2704), 2, + ACTIONS(2860), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(3563), 4, + ACTIONS(3652), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(2702), 14, + ACTIONS(2858), 14, anon_sym___extension__, anon_sym___based, anon_sym_const, @@ -104753,97 +119054,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [51000] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3518), 1, - anon_sym_COMMA, - ACTIONS(3526), 1, - anon_sym_SLASH, - ACTIONS(3528), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3530), 1, - anon_sym_AMP_AMP, - ACTIONS(3532), 1, - anon_sym_PIPE, - ACTIONS(3534), 1, - anon_sym_CARET, - ACTIONS(3536), 1, - anon_sym_AMP, - ACTIONS(3566), 1, - anon_sym_RPAREN, - STATE(1658), 1, - aux_sym_preproc_argument_list_repeat1, - ACTIONS(3522), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3524), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3538), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3540), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3542), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3544), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [51055] = 14, + [57126] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1797), 1, - anon_sym___based, - ACTIONS(3219), 1, + ACTIONS(1831), 1, anon_sym_LPAREN2, - ACTIONS(3221), 1, + ACTIONS(1833), 1, anon_sym_STAR, - ACTIONS(3448), 1, + ACTIONS(1835), 1, + anon_sym___based, + ACTIONS(3136), 1, sym_identifier, - STATE(1318), 1, + STATE(1461), 1, sym_ms_call_modifier, - STATE(1387), 1, - sym_function_declarator, - STATE(1440), 1, + STATE(1509), 1, + sym_macro_modifier, + STATE(1612), 1, sym__declarator, - STATE(1507), 1, - sym__declaration_declarator, - STATE(1541), 1, - sym__function_declaration_declarator, - STATE(1709), 1, - sym_init_declarator, - STATE(2016), 1, + STATE(2174), 1, sym_ms_based_modifier, - STATE(1401), 4, + ACTIONS(43), 2, + anon_sym___init, + anon_sym___exit, + STATE(1569), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, + sym_function_declarator, sym_array_declarator, - ACTIONS(43), 6, + ACTIONS(45), 6, anon_sym___cdecl, anon_sym___clrcall, anon_sym___stdcall, anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - [51106] = 6, + [57173] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1745), 1, - anon_sym_STAR, - ACTIONS(2800), 1, - anon_sym_LPAREN2, - STATE(1132), 1, + STATE(819), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(3568), 4, + ACTIONS(2715), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + ACTIONS(3655), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(1732), 14, + ACTIONS(2713), 14, anon_sym___extension__, anon_sym___based, anon_sym_const, @@ -104858,265 +119117,151 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [51141] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1797), 1, - anon_sym___based, - ACTIONS(3219), 1, - anon_sym_LPAREN2, - ACTIONS(3221), 1, - anon_sym_STAR, - ACTIONS(3448), 1, - sym_identifier, - STATE(1314), 1, - sym_ms_call_modifier, - STATE(1387), 1, - sym_function_declarator, - STATE(1440), 1, - sym__declarator, - STATE(1483), 1, - sym__declaration_declarator, - STATE(1541), 1, - sym__function_declaration_declarator, - STATE(1599), 1, - sym_init_declarator, - STATE(2016), 1, - sym_ms_based_modifier, - STATE(1401), 4, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_array_declarator, - ACTIONS(43), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - [51192] = 14, + [57206] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1797), 1, - anon_sym___based, - ACTIONS(3209), 1, - sym_identifier, - ACTIONS(3211), 1, + STATE(1288), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2870), 2, anon_sym_LPAREN2, - ACTIONS(3213), 1, anon_sym_STAR, - ACTIONS(3571), 1, - anon_sym_SEMI, - STATE(1269), 1, - sym__field_declarator, - STATE(1402), 1, - sym__field_declaration_declarator, - STATE(1875), 1, - sym_ms_based_modifier, - STATE(1976), 1, - sym_attribute_specifier, - ACTIONS(33), 2, - anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(35), 2, - anon_sym___scanf, - anon_sym___printf, - ACTIONS(37), 3, - anon_sym___read_mostly, - anon_sym___ro_after_init, - anon_sym___init, - STATE(1306), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - [51243] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1797), 1, + ACTIONS(3658), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(2868), 14, + anon_sym___extension__, anon_sym___based, - ACTIONS(3219), 1, - anon_sym_LPAREN2, - ACTIONS(3221), 1, - anon_sym_STAR, - ACTIONS(3448), 1, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, sym_identifier, - STATE(1324), 1, - sym_ms_call_modifier, - STATE(1387), 1, - sym_function_declarator, - STATE(1404), 1, - sym__declarator, - STATE(1481), 1, - sym__declaration_declarator, - STATE(1541), 1, - sym__function_declaration_declarator, - STATE(1675), 1, - sym_init_declarator, - STATE(2016), 1, - sym_ms_based_modifier, - STATE(1401), 4, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_array_declarator, - ACTIONS(43), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - [51294] = 8, + [57239] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3573), 1, + ACTIONS(3661), 1, sym_identifier, - ACTIONS(3578), 2, - anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(3581), 2, - anon_sym___scanf, - anon_sym___printf, - ACTIONS(3584), 3, - anon_sym___read_mostly, - anon_sym___ro_after_init, - anon_sym___init, - ACTIONS(3587), 3, - anon_sym_LBRACK, - anon_sym_asm, - anon_sym___asm__, - STATE(1159), 3, - sym_preproc_call_expression, - sym_attribute_specifier, - aux_sym_function_declarator_repeat1, - ACTIONS(3576), 7, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(3663), 1, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - [51333] = 14, + ACTIONS(3665), 1, + anon_sym_defined, + ACTIONS(3671), 1, + sym_number_literal, + ACTIONS(3667), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(3669), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3673), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(1363), 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, + [57279] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1797), 1, - anon_sym___based, - ACTIONS(3219), 1, - anon_sym_LPAREN2, - ACTIONS(3221), 1, - anon_sym_STAR, - ACTIONS(3448), 1, + ACTIONS(3661), 1, sym_identifier, - STATE(1329), 1, - sym_ms_call_modifier, - STATE(1387), 1, - sym_function_declarator, - STATE(1440), 1, - sym__declarator, - STATE(1481), 1, - sym__declaration_declarator, - STATE(1541), 1, - sym__function_declaration_declarator, - STATE(1675), 1, - sym_init_declarator, - STATE(2016), 1, - sym_ms_based_modifier, - STATE(1401), 4, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_array_declarator, - ACTIONS(43), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - [51384] = 8, + ACTIONS(3663), 1, + anon_sym_LPAREN2, + ACTIONS(3665), 1, + anon_sym_defined, + ACTIONS(3675), 1, + sym_number_literal, + ACTIONS(3667), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(3669), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3673), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(1372), 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, + [57319] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3442), 1, + ACTIONS(3567), 1, sym_identifier, - ACTIONS(33), 2, - anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(35), 2, - anon_sym___scanf, - anon_sym___printf, - ACTIONS(37), 3, - anon_sym___read_mostly, - anon_sym___ro_after_init, - anon_sym___init, - ACTIONS(3497), 3, - anon_sym_LBRACK, - anon_sym_asm, - anon_sym___asm__, - STATE(1150), 3, - sym_preproc_call_expression, - sym_attribute_specifier, - aux_sym_function_declarator_repeat1, - ACTIONS(3495), 7, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(3571), 1, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - [51423] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3591), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3589), 15, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(3573), 1, + anon_sym_defined, + ACTIONS(3677), 1, + sym_number_literal, + ACTIONS(3575), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(3577), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - [51451] = 9, + ACTIONS(3581), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(1350), 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, + [57359] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3464), 1, + ACTIONS(3567), 1, sym_identifier, - ACTIONS(3468), 1, + ACTIONS(3571), 1, anon_sym_LPAREN2, - ACTIONS(3470), 1, + ACTIONS(3573), 1, anon_sym_defined, - ACTIONS(3593), 1, + ACTIONS(3679), 1, sym_number_literal, - ACTIONS(3472), 2, + ACTIONS(3575), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3474), 2, + ACTIONS(3577), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3478), 5, + ACTIONS(3581), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1164), 7, + STATE(1351), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -105124,150 +119269,154 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [51491] = 10, + [57399] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3526), 1, - anon_sym_SLASH, - ACTIONS(3522), 2, + ACTIONS(3567), 1, + sym_identifier, + ACTIONS(3571), 1, + anon_sym_LPAREN2, + ACTIONS(3573), 1, + anon_sym_defined, + ACTIONS(3681), 1, + sym_number_literal, + ACTIONS(3575), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(3577), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3524), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3538), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3540), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3542), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3544), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3591), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(3589), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - [51533] = 9, + ACTIONS(3581), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(1352), 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, + [57439] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3526), 1, - anon_sym_SLASH, - ACTIONS(3522), 2, + ACTIONS(3567), 1, + sym_identifier, + ACTIONS(3571), 1, + anon_sym_LPAREN2, + ACTIONS(3573), 1, + anon_sym_defined, + ACTIONS(3683), 1, + sym_number_literal, + ACTIONS(3575), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(3577), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3524), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3540), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3542), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3544), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3591), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(3589), 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, - [51573] = 7, + ACTIONS(3581), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(1313), 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, + [57479] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3526), 1, - anon_sym_SLASH, - ACTIONS(3522), 2, + ACTIONS(3567), 1, + sym_identifier, + ACTIONS(3571), 1, + anon_sym_LPAREN2, + ACTIONS(3573), 1, + anon_sym_defined, + ACTIONS(3685), 1, + sym_number_literal, + ACTIONS(3575), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(3577), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3524), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3544), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3591), 4, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3589), 9, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [51609] = 6, + ACTIONS(3581), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(1319), 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, + [57519] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3526), 1, - anon_sym_SLASH, - ACTIONS(3522), 2, + ACTIONS(3567), 1, + sym_identifier, + ACTIONS(3571), 1, + anon_sym_LPAREN2, + ACTIONS(3573), 1, + anon_sym_defined, + ACTIONS(3687), 1, + sym_number_literal, + ACTIONS(3575), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(3577), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3524), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3591), 4, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3589), 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, - [51643] = 9, + ACTIONS(3581), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(1336), 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, + [57559] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3595), 1, + ACTIONS(3567), 1, sym_identifier, - ACTIONS(3597), 1, + ACTIONS(3571), 1, anon_sym_LPAREN2, - ACTIONS(3599), 1, + ACTIONS(3573), 1, anon_sym_defined, - ACTIONS(3605), 1, + ACTIONS(3689), 1, sym_number_literal, - ACTIONS(3601), 2, + ACTIONS(3575), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3603), 2, + ACTIONS(3577), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3607), 5, + ACTIONS(3581), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1220), 7, + STATE(1331), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -105275,30 +119424,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [51683] = 9, + [57599] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3464), 1, + ACTIONS(3567), 1, sym_identifier, - ACTIONS(3468), 1, + ACTIONS(3571), 1, anon_sym_LPAREN2, - ACTIONS(3470), 1, + ACTIONS(3573), 1, anon_sym_defined, - ACTIONS(3609), 1, + ACTIONS(3691), 1, sym_number_literal, - ACTIONS(3472), 2, + ACTIONS(3575), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3474), 2, + ACTIONS(3577), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3478), 5, + ACTIONS(3581), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1232), 7, + STATE(1329), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -105306,64 +119455,80 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [51723] = 12, + [57639] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3526), 1, + ACTIONS(3695), 5, anon_sym_SLASH, - ACTIONS(3534), 1, - anon_sym_CARET, - ACTIONS(3536), 1, - anon_sym_AMP, - ACTIONS(3591), 1, anon_sym_PIPE, - ACTIONS(3522), 2, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3693), 15, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3524), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3538), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3540), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3542), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3544), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3589), 4, + [57667] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3699), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3697), 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, - [51769] = 9, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + [57695] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3595), 1, + ACTIONS(3661), 1, sym_identifier, - ACTIONS(3597), 1, + ACTIONS(3663), 1, anon_sym_LPAREN2, - ACTIONS(3599), 1, + ACTIONS(3665), 1, anon_sym_defined, - ACTIONS(3611), 1, + ACTIONS(3701), 1, sym_number_literal, - ACTIONS(3601), 2, + ACTIONS(3667), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3603), 2, + ACTIONS(3669), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3607), 5, + ACTIONS(3673), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1248), 7, + STATE(1367), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -105371,30 +119536,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [51809] = 9, + [57735] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3595), 1, + ACTIONS(3661), 1, sym_identifier, - ACTIONS(3597), 1, + ACTIONS(3663), 1, anon_sym_LPAREN2, - ACTIONS(3599), 1, + ACTIONS(3665), 1, anon_sym_defined, - ACTIONS(3613), 1, + ACTIONS(3703), 1, sym_number_literal, - ACTIONS(3601), 2, + ACTIONS(3667), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3603), 2, + ACTIONS(3669), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3607), 5, + ACTIONS(3673), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1236), 7, + STATE(1361), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -105402,30 +119567,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [51849] = 9, + [57775] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3464), 1, + ACTIONS(3661), 1, sym_identifier, - ACTIONS(3468), 1, + ACTIONS(3663), 1, anon_sym_LPAREN2, - ACTIONS(3470), 1, + ACTIONS(3665), 1, anon_sym_defined, - ACTIONS(3615), 1, + ACTIONS(3705), 1, sym_number_literal, - ACTIONS(3472), 2, + ACTIONS(3667), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3474), 2, + ACTIONS(3669), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3478), 5, + ACTIONS(3673), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1183), 7, + STATE(1356), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -105433,30 +119598,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [51889] = 9, + [57815] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3595), 1, + ACTIONS(3661), 1, sym_identifier, - ACTIONS(3597), 1, + ACTIONS(3663), 1, anon_sym_LPAREN2, - ACTIONS(3599), 1, + ACTIONS(3665), 1, anon_sym_defined, - ACTIONS(3617), 1, + ACTIONS(3707), 1, sym_number_literal, - ACTIONS(3601), 2, + ACTIONS(3667), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3603), 2, + ACTIONS(3669), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3607), 5, + ACTIONS(3673), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1219), 7, + STATE(1378), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -105464,99 +119629,64 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [51929] = 12, + [57855] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(3526), 1, + ACTIONS(3591), 1, anon_sym_SLASH, - ACTIONS(3532), 1, - anon_sym_PIPE, - ACTIONS(3534), 1, + ACTIONS(3599), 1, anon_sym_CARET, - ACTIONS(3536), 1, + ACTIONS(3601), 1, anon_sym_AMP, - ACTIONS(3522), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3524), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3538), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3540), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3542), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3544), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3589), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - [51975] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3526), 1, - anon_sym_SLASH, - ACTIONS(3530), 1, - anon_sym_AMP_AMP, - ACTIONS(3532), 1, + ACTIONS(3711), 1, anon_sym_PIPE, - ACTIONS(3534), 1, - anon_sym_CARET, - ACTIONS(3536), 1, - anon_sym_AMP, - ACTIONS(3522), 2, + ACTIONS(3587), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3524), 2, + ACTIONS(3589), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3538), 2, + ACTIONS(3603), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3540), 2, + ACTIONS(3605), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3542), 2, + ACTIONS(3607), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3544), 2, + ACTIONS(3609), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3589), 3, + ACTIONS(3709), 4, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, - [52023] = 9, + anon_sym_AMP_AMP, + [57901] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3595), 1, + ACTIONS(3661), 1, sym_identifier, - ACTIONS(3597), 1, + ACTIONS(3663), 1, anon_sym_LPAREN2, - ACTIONS(3599), 1, + ACTIONS(3665), 1, anon_sym_defined, - ACTIONS(3619), 1, + ACTIONS(3713), 1, sym_number_literal, - ACTIONS(3601), 2, + ACTIONS(3667), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3603), 2, + ACTIONS(3669), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3607), 5, + ACTIONS(3673), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1237), 7, + STATE(1381), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -105564,63 +119694,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [52063] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3526), 1, - anon_sym_SLASH, - ACTIONS(3536), 1, - anon_sym_AMP, - ACTIONS(3591), 1, - anon_sym_PIPE, - ACTIONS(3522), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3524), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3538), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3540), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3542), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3544), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3589), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - [52107] = 9, + [57941] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3595), 1, + ACTIONS(3661), 1, sym_identifier, - ACTIONS(3597), 1, + ACTIONS(3663), 1, anon_sym_LPAREN2, - ACTIONS(3599), 1, + ACTIONS(3665), 1, anon_sym_defined, - ACTIONS(3621), 1, + ACTIONS(3715), 1, sym_number_literal, - ACTIONS(3601), 2, + ACTIONS(3667), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3603), 2, + ACTIONS(3669), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3607), 5, + ACTIONS(3673), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1261), 7, + STATE(1373), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -105628,57 +119725,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [52147] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3526), 1, - anon_sym_SLASH, - ACTIONS(3524), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3591), 4, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3589), 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, - [52179] = 9, + [57981] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3464), 1, + ACTIONS(3661), 1, sym_identifier, - ACTIONS(3468), 1, + ACTIONS(3663), 1, anon_sym_LPAREN2, - ACTIONS(3470), 1, + ACTIONS(3665), 1, anon_sym_defined, - ACTIONS(3623), 1, + ACTIONS(3717), 1, sym_number_literal, - ACTIONS(3472), 2, + ACTIONS(3667), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3474), 2, + ACTIONS(3669), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3478), 5, + ACTIONS(3673), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1190), 7, + STATE(1358), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -105686,30 +119756,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [52219] = 9, + [58021] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3595), 1, + ACTIONS(3661), 1, sym_identifier, - ACTIONS(3597), 1, + ACTIONS(3663), 1, anon_sym_LPAREN2, - ACTIONS(3599), 1, + ACTIONS(3665), 1, anon_sym_defined, - ACTIONS(3625), 1, + ACTIONS(3719), 1, sym_number_literal, - ACTIONS(3601), 2, + ACTIONS(3667), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3603), 2, + ACTIONS(3669), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3607), 5, + ACTIONS(3673), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1243), 7, + STATE(1365), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -105717,66 +119787,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [52259] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3526), 1, - anon_sym_SLASH, - ACTIONS(3528), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3530), 1, - anon_sym_AMP_AMP, - ACTIONS(3532), 1, - anon_sym_PIPE, - ACTIONS(3534), 1, - anon_sym_CARET, - ACTIONS(3536), 1, - anon_sym_AMP, - ACTIONS(3522), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3524), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3538), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3540), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3542), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3544), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3627), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [52309] = 9, + [58061] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3595), 1, + ACTIONS(3661), 1, sym_identifier, - ACTIONS(3597), 1, + ACTIONS(3663), 1, anon_sym_LPAREN2, - ACTIONS(3599), 1, + ACTIONS(3665), 1, anon_sym_defined, - ACTIONS(3629), 1, + ACTIONS(3721), 1, sym_number_literal, - ACTIONS(3601), 2, + ACTIONS(3667), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3603), 2, + ACTIONS(3669), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3607), 5, + ACTIONS(3673), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1260), 7, + STATE(1371), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -105784,80 +119818,64 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [52349] = 3, + [58101] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2367), 5, + ACTIONS(3591), 1, anon_sym_SLASH, + ACTIONS(3597), 1, anon_sym_PIPE, + ACTIONS(3599), 1, + anon_sym_CARET, + ACTIONS(3601), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2369), 15, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(3587), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(3589), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, + ACTIONS(3603), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(3605), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3607), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(3609), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [52377] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3633), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3631), 15, + ACTIONS(3709), 4, 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, - [52405] = 9, + [58147] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3595), 1, + ACTIONS(3567), 1, sym_identifier, - ACTIONS(3597), 1, + ACTIONS(3571), 1, anon_sym_LPAREN2, - ACTIONS(3599), 1, + ACTIONS(3573), 1, anon_sym_defined, - ACTIONS(3635), 1, + ACTIONS(3723), 1, sym_number_literal, - ACTIONS(3601), 2, + ACTIONS(3575), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3603), 2, + ACTIONS(3577), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3607), 5, + ACTIONS(3581), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1255), 7, + STATE(1364), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -105865,55 +119883,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [52445] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3639), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3637), 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, - [52473] = 9, + [58187] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3595), 1, + ACTIONS(3661), 1, sym_identifier, - ACTIONS(3597), 1, + ACTIONS(3663), 1, anon_sym_LPAREN2, - ACTIONS(3599), 1, + ACTIONS(3665), 1, anon_sym_defined, - ACTIONS(3641), 1, + ACTIONS(3725), 1, sym_number_literal, - ACTIONS(3601), 2, + ACTIONS(3667), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3603), 2, + ACTIONS(3669), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3607), 5, + ACTIONS(3673), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1244), 7, + STATE(1375), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -105921,55 +119914,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [52513] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3645), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3643), 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, - [52541] = 9, + [58227] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3464), 1, + ACTIONS(3661), 1, sym_identifier, - ACTIONS(3468), 1, + ACTIONS(3663), 1, anon_sym_LPAREN2, - ACTIONS(3470), 1, + ACTIONS(3665), 1, anon_sym_defined, - ACTIONS(3647), 1, + ACTIONS(3727), 1, sym_number_literal, - ACTIONS(3472), 2, + ACTIONS(3667), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3474), 2, + ACTIONS(3669), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3478), 5, + ACTIONS(3673), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1180), 7, + STATE(1368), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -105977,30 +119945,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [52581] = 9, + [58267] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3464), 1, + ACTIONS(3661), 1, sym_identifier, - ACTIONS(3468), 1, + ACTIONS(3663), 1, anon_sym_LPAREN2, - ACTIONS(3470), 1, + ACTIONS(3665), 1, anon_sym_defined, - ACTIONS(3649), 1, + ACTIONS(3729), 1, sym_number_literal, - ACTIONS(3472), 2, + ACTIONS(3667), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3474), 2, + ACTIONS(3669), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3478), 5, + ACTIONS(3673), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1162), 7, + STATE(1354), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -106008,30 +119976,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [52621] = 9, + [58307] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3595), 1, + ACTIONS(3661), 1, sym_identifier, - ACTIONS(3597), 1, + ACTIONS(3663), 1, anon_sym_LPAREN2, - ACTIONS(3599), 1, + ACTIONS(3665), 1, anon_sym_defined, - ACTIONS(3651), 1, + ACTIONS(3731), 1, sym_number_literal, - ACTIONS(3601), 2, + ACTIONS(3667), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3603), 2, + ACTIONS(3669), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3607), 5, + ACTIONS(3673), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1235), 7, + STATE(1362), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -106039,30 +120007,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [52661] = 9, + [58347] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3464), 1, + ACTIONS(3661), 1, sym_identifier, - ACTIONS(3468), 1, + ACTIONS(3663), 1, anon_sym_LPAREN2, - ACTIONS(3470), 1, + ACTIONS(3665), 1, anon_sym_defined, - ACTIONS(3653), 1, + ACTIONS(3733), 1, sym_number_literal, - ACTIONS(3472), 2, + ACTIONS(3667), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3474), 2, + ACTIONS(3669), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3478), 5, + ACTIONS(3673), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1176), 7, + STATE(1384), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -106070,30 +120038,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [52701] = 9, + [58387] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3464), 1, + ACTIONS(3567), 1, sym_identifier, - ACTIONS(3468), 1, + ACTIONS(3571), 1, anon_sym_LPAREN2, - ACTIONS(3470), 1, + ACTIONS(3573), 1, anon_sym_defined, - ACTIONS(3655), 1, + ACTIONS(3735), 1, sym_number_literal, - ACTIONS(3472), 2, + ACTIONS(3575), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3474), 2, + ACTIONS(3577), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3478), 5, + ACTIONS(3581), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1175), 7, + STATE(1345), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -106101,30 +120069,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [52741] = 9, + [58427] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3464), 1, + ACTIONS(3661), 1, sym_identifier, - ACTIONS(3468), 1, + ACTIONS(3663), 1, anon_sym_LPAREN2, - ACTIONS(3470), 1, + ACTIONS(3665), 1, anon_sym_defined, - ACTIONS(3657), 1, + ACTIONS(3737), 1, sym_number_literal, - ACTIONS(3472), 2, + ACTIONS(3667), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3474), 2, + ACTIONS(3669), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3478), 5, + ACTIONS(3673), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1170), 7, + STATE(1369), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -106132,16 +120100,16 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [52781] = 3, + [58467] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3661), 5, + ACTIONS(3741), 5, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(3659), 15, + ACTIONS(3739), 15, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_DASH, @@ -106157,30 +120125,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - [52809] = 9, + [58495] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3595), 1, + ACTIONS(3591), 1, + anon_sym_SLASH, + ACTIONS(3589), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3711), 4, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3709), 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, + [58527] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3661), 1, sym_identifier, - ACTIONS(3597), 1, + ACTIONS(3663), 1, anon_sym_LPAREN2, - ACTIONS(3599), 1, + ACTIONS(3665), 1, anon_sym_defined, - ACTIONS(3663), 1, + ACTIONS(3743), 1, sym_number_literal, - ACTIONS(3601), 2, + ACTIONS(3667), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3603), 2, + ACTIONS(3669), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3607), 5, + ACTIONS(3673), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1234), 7, + STATE(1376), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -106188,30 +120183,55 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [52849] = 9, + [58567] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3595), 1, + ACTIONS(3711), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3709), 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, + [58595] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3567), 1, sym_identifier, - ACTIONS(3597), 1, + ACTIONS(3571), 1, anon_sym_LPAREN2, - ACTIONS(3599), 1, + ACTIONS(3573), 1, anon_sym_defined, - ACTIONS(3665), 1, + ACTIONS(3745), 1, sym_number_literal, - ACTIONS(3601), 2, + ACTIONS(3575), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3603), 2, + ACTIONS(3577), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3607), 5, + ACTIONS(3581), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1221), 7, + STATE(1389), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -106219,30 +120239,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [52889] = 9, + [58635] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3595), 1, + ACTIONS(3661), 1, sym_identifier, - ACTIONS(3597), 1, + ACTIONS(3663), 1, anon_sym_LPAREN2, - ACTIONS(3599), 1, + ACTIONS(3665), 1, anon_sym_defined, - ACTIONS(3667), 1, + ACTIONS(3747), 1, sym_number_literal, - ACTIONS(3601), 2, + ACTIONS(3667), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3603), 2, + ACTIONS(3669), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3607), 5, + ACTIONS(3673), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1233), 7, + STATE(1377), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -106250,57 +120270,57 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [52929] = 5, + [58675] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3671), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3674), 1, - anon_sym_LBRACK, - STATE(1201), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(3669), 16, + ACTIONS(3553), 1, + anon_sym_LPAREN2, + STATE(1067), 1, + sym_preproc_argument_list, + ACTIONS(3751), 6, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + ACTIONS(3749), 12, anon_sym___attribute__, anon_sym___scanf, anon_sym___printf, anon_sym___read_mostly, anon_sym___must_hold, anon_sym___ro_after_init, - anon_sym___init, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, + anon_sym___noreturn, + anon_sym___cold, + anon_sym_LBRACK, anon_sym_asm, anon_sym___asm__, - [52961] = 9, + sym_identifier, + [58707] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3464), 1, + ACTIONS(3661), 1, sym_identifier, - ACTIONS(3468), 1, + ACTIONS(3663), 1, anon_sym_LPAREN2, - ACTIONS(3470), 1, + ACTIONS(3665), 1, anon_sym_defined, - ACTIONS(3676), 1, + ACTIONS(3753), 1, sym_number_literal, - ACTIONS(3472), 2, + ACTIONS(3667), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3474), 2, + ACTIONS(3669), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3478), 5, + ACTIONS(3673), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1178), 7, + STATE(1387), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -106308,123 +120328,65 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [53001] = 9, + [58747] = 13, ACTIONS(3), 1, sym_comment, + ACTIONS(3591), 1, + anon_sym_SLASH, ACTIONS(3595), 1, - sym_identifier, + anon_sym_AMP_AMP, ACTIONS(3597), 1, - anon_sym_LPAREN2, + anon_sym_PIPE, ACTIONS(3599), 1, - anon_sym_defined, - ACTIONS(3678), 1, - sym_number_literal, - ACTIONS(3601), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(3603), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3607), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1225), 7, - sym__preproc_expression, - sym_preproc_parenthesized_expression, - sym_preproc_defined, - sym_preproc_unary_expression, - sym_preproc_call_expression, - sym_preproc_binary_expression, - sym_char_literal, - [53041] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3464), 1, - sym_identifier, - ACTIONS(3468), 1, - anon_sym_LPAREN2, - ACTIONS(3470), 1, - anon_sym_defined, - ACTIONS(3680), 1, - sym_number_literal, - ACTIONS(3472), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(3474), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3478), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1165), 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, - [53081] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3464), 1, - sym_identifier, - ACTIONS(3468), 1, - anon_sym_LPAREN2, - ACTIONS(3470), 1, - anon_sym_defined, - ACTIONS(3682), 1, - sym_number_literal, - ACTIONS(3472), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(3474), 2, + anon_sym_CARET, + ACTIONS(3601), 1, + anon_sym_AMP, + ACTIONS(3587), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3478), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1166), 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, - [53121] = 9, + ACTIONS(3589), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3603), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3605), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3607), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3609), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3709), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + [58795] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3464), 1, + ACTIONS(3567), 1, sym_identifier, - ACTIONS(3468), 1, + ACTIONS(3571), 1, anon_sym_LPAREN2, - ACTIONS(3470), 1, + ACTIONS(3573), 1, anon_sym_defined, - ACTIONS(3684), 1, + ACTIONS(3755), 1, sym_number_literal, - ACTIONS(3472), 2, + ACTIONS(3575), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3474), 2, + ACTIONS(3577), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3478), 5, + ACTIONS(3581), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1167), 7, + STATE(1349), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -106432,61 +120394,66 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [53161] = 9, + [58835] = 14, ACTIONS(3), 1, sym_comment, + ACTIONS(3591), 1, + anon_sym_SLASH, + ACTIONS(3593), 1, + anon_sym_PIPE_PIPE, ACTIONS(3595), 1, - sym_identifier, + anon_sym_AMP_AMP, ACTIONS(3597), 1, - anon_sym_LPAREN2, + anon_sym_PIPE, ACTIONS(3599), 1, - anon_sym_defined, - ACTIONS(3686), 1, - sym_number_literal, - ACTIONS(3601), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(3603), 2, + anon_sym_CARET, + ACTIONS(3601), 1, + anon_sym_AMP, + ACTIONS(3587), 2, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3607), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1228), 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, - [53201] = 9, + anon_sym_PLUS, + ACTIONS(3589), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3603), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3605), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3607), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3609), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3757), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [58885] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3595), 1, + ACTIONS(3567), 1, sym_identifier, - ACTIONS(3597), 1, + ACTIONS(3571), 1, anon_sym_LPAREN2, - ACTIONS(3599), 1, + ACTIONS(3573), 1, anon_sym_defined, - ACTIONS(3688), 1, + ACTIONS(3759), 1, sym_number_literal, - ACTIONS(3601), 2, + ACTIONS(3575), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3603), 2, + ACTIONS(3577), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3607), 5, + ACTIONS(3581), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1245), 7, + STATE(1338), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -106494,30 +120461,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [53241] = 9, + [58925] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3464), 1, + ACTIONS(3661), 1, sym_identifier, - ACTIONS(3468), 1, + ACTIONS(3663), 1, anon_sym_LPAREN2, - ACTIONS(3470), 1, + ACTIONS(3665), 1, anon_sym_defined, - ACTIONS(3690), 1, + ACTIONS(3761), 1, sym_number_literal, - ACTIONS(3472), 2, + ACTIONS(3667), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3474), 2, + ACTIONS(3669), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3478), 5, + ACTIONS(3673), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1257), 7, + STATE(1383), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -106525,30 +120492,55 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [53281] = 9, + [58965] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3595), 1, + ACTIONS(3765), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3763), 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, + [58993] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3661), 1, sym_identifier, - ACTIONS(3597), 1, + ACTIONS(3663), 1, anon_sym_LPAREN2, - ACTIONS(3599), 1, + ACTIONS(3665), 1, anon_sym_defined, - ACTIONS(3692), 1, + ACTIONS(3767), 1, sym_number_literal, - ACTIONS(3601), 2, + ACTIONS(3667), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3603), 2, + ACTIONS(3669), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3607), 5, + ACTIONS(3673), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1252), 7, + STATE(1385), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -106556,65 +120548,65 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [53321] = 13, + [59033] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1793), 1, + ACTIONS(1835), 1, + anon_sym___based, + ACTIONS(1873), 1, anon_sym_LPAREN2, - ACTIONS(1795), 1, + ACTIONS(1875), 1, anon_sym_STAR, - ACTIONS(1797), 1, - anon_sym___based, - ACTIONS(3048), 1, + ACTIONS(3136), 1, sym_identifier, - ACTIONS(3056), 1, + ACTIONS(3144), 1, anon_sym_LBRACK, - STATE(1420), 1, + STATE(1594), 1, sym__declarator, - STATE(1494), 1, - sym__abstract_declarator, - STATE(1509), 1, + STATE(1691), 1, sym_parameter_list, - STATE(2016), 1, + STATE(1718), 1, + sym__abstract_declarator, + STATE(2174), 1, sym_ms_based_modifier, - ACTIONS(3694), 2, + ACTIONS(3769), 2, anon_sym_COMMA, anon_sym_RPAREN, - STATE(1504), 4, + STATE(1717), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, - STATE(1387), 5, + STATE(1569), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [53369] = 9, + [59081] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3595), 1, + ACTIONS(3661), 1, sym_identifier, - ACTIONS(3597), 1, + ACTIONS(3663), 1, anon_sym_LPAREN2, - ACTIONS(3599), 1, + ACTIONS(3665), 1, anon_sym_defined, - ACTIONS(3696), 1, + ACTIONS(3771), 1, sym_number_literal, - ACTIONS(3601), 2, + ACTIONS(3667), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3603), 2, + ACTIONS(3669), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3607), 5, + ACTIONS(3673), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1223), 7, + STATE(1390), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -106622,61 +120614,58 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [53409] = 9, + [59121] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3595), 1, - sym_identifier, - ACTIONS(3597), 1, - anon_sym_LPAREN2, - ACTIONS(3599), 1, - anon_sym_defined, - ACTIONS(3698), 1, - sym_number_literal, - ACTIONS(3601), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(3603), 2, + ACTIONS(3591), 1, + anon_sym_SLASH, + ACTIONS(3587), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3607), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1229), 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, - [53449] = 9, + ACTIONS(3589), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3711), 4, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3709), 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, + [59155] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3595), 1, + ACTIONS(3661), 1, sym_identifier, - ACTIONS(3597), 1, + ACTIONS(3663), 1, anon_sym_LPAREN2, - ACTIONS(3599), 1, + ACTIONS(3665), 1, anon_sym_defined, - ACTIONS(3700), 1, + ACTIONS(3773), 1, sym_number_literal, - ACTIONS(3601), 2, + ACTIONS(3667), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3603), 2, + ACTIONS(3669), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3607), 5, + ACTIONS(3673), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1222), 7, + STATE(1374), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -106684,30 +120673,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [53489] = 9, + [59195] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3595), 1, + ACTIONS(3567), 1, sym_identifier, - ACTIONS(3597), 1, + ACTIONS(3571), 1, anon_sym_LPAREN2, - ACTIONS(3599), 1, + ACTIONS(3573), 1, anon_sym_defined, - ACTIONS(3702), 1, + ACTIONS(3775), 1, sym_number_literal, - ACTIONS(3601), 2, + ACTIONS(3575), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3603), 2, + ACTIONS(3577), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3607), 5, + ACTIONS(3581), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1251), 7, + STATE(1307), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -106715,30 +120704,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [53529] = 9, + [59235] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3595), 1, + ACTIONS(3661), 1, sym_identifier, - ACTIONS(3597), 1, + ACTIONS(3663), 1, anon_sym_LPAREN2, - ACTIONS(3599), 1, + ACTIONS(3665), 1, anon_sym_defined, - ACTIONS(3704), 1, + ACTIONS(3777), 1, sym_number_literal, - ACTIONS(3601), 2, + ACTIONS(3667), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3603), 2, + ACTIONS(3669), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3607), 5, + ACTIONS(3673), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1238), 7, + STATE(1388), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -106746,233 +120735,322 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [53569] = 9, + [59275] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3595), 1, - sym_identifier, - ACTIONS(3597), 1, - anon_sym_LPAREN2, - ACTIONS(3599), 1, - anon_sym_defined, - ACTIONS(3706), 1, - sym_number_literal, - ACTIONS(3601), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(3603), 2, + ACTIONS(3591), 1, + anon_sym_SLASH, + ACTIONS(3587), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3607), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1256), 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, - [53609] = 9, + ACTIONS(3589), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3609), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3711), 4, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3709), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [59311] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3595), 1, - sym_identifier, - ACTIONS(3597), 1, - anon_sym_LPAREN2, - ACTIONS(3599), 1, - anon_sym_defined, - ACTIONS(3708), 1, - sym_number_literal, - ACTIONS(3601), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(3603), 2, + ACTIONS(3591), 1, + anon_sym_SLASH, + ACTIONS(3587), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3607), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1246), 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, - [53649] = 8, - ACTIONS(3554), 1, + ACTIONS(3589), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3605), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3607), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3609), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3711), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(3709), 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, + [59351] = 10, + ACTIONS(3), 1, sym_comment, - ACTIONS(3589), 1, - anon_sym_LF, - ACTIONS(3710), 2, + ACTIONS(3591), 1, + anon_sym_SLASH, + ACTIONS(3587), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3714), 2, + ACTIONS(3589), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3603), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3718), 2, + ACTIONS(3605), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3607), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3609), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3712), 3, - anon_sym_STAR, + ACTIONS(3711), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(3709), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + [59393] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3591), 1, anon_sym_SLASH, + ACTIONS(3601), 1, + anon_sym_AMP, + ACTIONS(3711), 1, + anon_sym_PIPE, + ACTIONS(3587), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3589), 2, + anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3716), 4, + ACTIONS(3603), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3605), 2, anon_sym_GT, + anon_sym_LT, + ACTIONS(3607), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(3591), 5, + ACTIONS(3609), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3709), 5, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, anon_sym_CARET, - anon_sym_AMP, - [53686] = 10, - ACTIONS(3554), 1, + [59437] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(3589), 1, - anon_sym_LF, - ACTIONS(3720), 1, - anon_sym_CARET, - ACTIONS(3722), 1, + ACTIONS(2430), 5, + anon_sym_SLASH, + anon_sym_PIPE, anon_sym_AMP, - ACTIONS(3710), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2432), 15, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3714), 2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3718), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + [59465] = 6, + ACTIONS(3643), 1, + sym_comment, + ACTIONS(3709), 1, + anon_sym_LF, + ACTIONS(3779), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3783), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3591), 3, + ACTIONS(3781), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3711), 11, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - ACTIONS(3712), 3, + 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, + [59498] = 3, + ACTIONS(2432), 1, + anon_sym_LF, + ACTIONS(3643), 1, + sym_comment, + ACTIONS(2430), 18, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3716), 4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [53727] = 12, - ACTIONS(3554), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + [59525] = 10, + ACTIONS(3643), 1, sym_comment, - ACTIONS(3720), 1, + ACTIONS(3709), 1, + anon_sym_LF, + ACTIONS(3785), 1, anon_sym_CARET, - ACTIONS(3722), 1, + ACTIONS(3787), 1, anon_sym_AMP, - ACTIONS(3724), 1, - anon_sym_LF, - ACTIONS(3726), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3728), 1, - anon_sym_AMP_AMP, - ACTIONS(3730), 1, - anon_sym_PIPE, - ACTIONS(3710), 2, + ACTIONS(3779), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3714), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3718), 2, + ACTIONS(3783), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3712), 3, + ACTIONS(3789), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3711), 3, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + ACTIONS(3781), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3716), 4, + ACTIONS(3791), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [53772] = 12, - ACTIONS(3554), 1, + [59566] = 3, + ACTIONS(3246), 1, + anon_sym_LF, + ACTIONS(3643), 1, sym_comment, - ACTIONS(3720), 1, - anon_sym_CARET, - ACTIONS(3722), 1, - anon_sym_AMP, - ACTIONS(3726), 1, + ACTIONS(3244), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, - ACTIONS(3728), 1, anon_sym_AMP_AMP, - ACTIONS(3730), 1, anon_sym_PIPE, - ACTIONS(3732), 1, + 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, + [59593] = 9, + ACTIONS(3643), 1, + sym_comment, + ACTIONS(3709), 1, anon_sym_LF, - ACTIONS(3710), 2, + ACTIONS(3787), 1, + anon_sym_AMP, + ACTIONS(3779), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3714), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3718), 2, + ACTIONS(3783), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3712), 3, + ACTIONS(3789), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3781), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3716), 4, + ACTIONS(3711), 4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_CARET, + ACTIONS(3791), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [53817] = 12, - ACTIONS(3554), 1, + [59632] = 3, + ACTIONS(3643), 1, sym_comment, - ACTIONS(3720), 1, - anon_sym_CARET, - ACTIONS(3722), 1, - anon_sym_AMP, - ACTIONS(3726), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3728), 1, - anon_sym_AMP_AMP, - ACTIONS(3730), 1, - anon_sym_PIPE, - ACTIONS(3734), 1, + ACTIONS(3763), 1, anon_sym_LF, - ACTIONS(3710), 2, + ACTIONS(3765), 18, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3714), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3718), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3712), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3716), 4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [53862] = 3, - ACTIONS(3554), 1, - sym_comment, - ACTIONS(3631), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + [59659] = 3, + ACTIONS(3242), 1, anon_sym_LF, - ACTIONS(3633), 18, + ACTIONS(3643), 1, + sym_comment, + ACTIONS(3240), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -106991,284 +121069,236 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [53889] = 12, - ACTIONS(3554), 1, + [59686] = 11, + ACTIONS(3643), 1, sym_comment, - ACTIONS(3720), 1, + ACTIONS(3709), 1, + anon_sym_LF, + ACTIONS(3785), 1, anon_sym_CARET, - ACTIONS(3722), 1, + ACTIONS(3787), 1, anon_sym_AMP, - ACTIONS(3726), 1, + ACTIONS(3793), 1, + anon_sym_PIPE, + ACTIONS(3711), 2, anon_sym_PIPE_PIPE, - ACTIONS(3728), 1, anon_sym_AMP_AMP, - ACTIONS(3730), 1, - anon_sym_PIPE, - ACTIONS(3736), 1, - anon_sym_LF, - ACTIONS(3710), 2, + ACTIONS(3779), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3714), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3718), 2, + ACTIONS(3783), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3712), 3, + ACTIONS(3789), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3781), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3716), 4, + ACTIONS(3791), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [53934] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3454), 1, - anon_sym_LPAREN2, - STATE(961), 1, - sym_preproc_argument_list, - ACTIONS(3740), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - ACTIONS(3738), 11, - anon_sym___attribute__, - anon_sym___scanf, - anon_sym___printf, - anon_sym___read_mostly, - anon_sym___must_hold, - anon_sym___ro_after_init, - anon_sym___init, - anon_sym_LBRACK, - anon_sym_asm, - anon_sym___asm__, - sym_identifier, - [53965] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2946), 8, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - ACTIONS(2953), 11, - anon_sym___attribute__, - anon_sym___scanf, - anon_sym___printf, - anon_sym___read_mostly, - anon_sym___must_hold, - anon_sym___ro_after_init, - anon_sym___init, - anon_sym_LBRACK, - anon_sym_asm, - anon_sym___asm__, - sym_identifier, - [53992] = 12, - ACTIONS(3554), 1, + [59729] = 12, + ACTIONS(3643), 1, sym_comment, - ACTIONS(3720), 1, + ACTIONS(3785), 1, anon_sym_CARET, - ACTIONS(3722), 1, + ACTIONS(3787), 1, anon_sym_AMP, - ACTIONS(3726), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3728), 1, - anon_sym_AMP_AMP, - ACTIONS(3730), 1, + ACTIONS(3793), 1, anon_sym_PIPE, - ACTIONS(3742), 1, + ACTIONS(3795), 1, anon_sym_LF, - ACTIONS(3710), 2, + ACTIONS(3797), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3799), 1, + anon_sym_AMP_AMP, + ACTIONS(3779), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3714), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3718), 2, + ACTIONS(3783), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3712), 3, + ACTIONS(3789), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3781), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3716), 4, + ACTIONS(3791), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [54037] = 12, - ACTIONS(3554), 1, + [59774] = 12, + ACTIONS(3643), 1, sym_comment, - ACTIONS(3720), 1, + ACTIONS(3785), 1, anon_sym_CARET, - ACTIONS(3722), 1, + ACTIONS(3787), 1, anon_sym_AMP, - ACTIONS(3726), 1, + ACTIONS(3793), 1, + anon_sym_PIPE, + ACTIONS(3797), 1, anon_sym_PIPE_PIPE, - ACTIONS(3728), 1, + ACTIONS(3799), 1, anon_sym_AMP_AMP, - ACTIONS(3730), 1, - anon_sym_PIPE, - ACTIONS(3744), 1, + ACTIONS(3801), 1, anon_sym_LF, - ACTIONS(3710), 2, + ACTIONS(3779), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3714), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3718), 2, + ACTIONS(3783), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3712), 3, + ACTIONS(3789), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3781), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3716), 4, + ACTIONS(3791), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [54082] = 3, - ACTIONS(2369), 1, - anon_sym_LF, - ACTIONS(3554), 1, + [59819] = 14, + ACTIONS(3), 1, sym_comment, - ACTIONS(2367), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, + ACTIONS(3591), 1, anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3593), 1, anon_sym_PIPE_PIPE, + ACTIONS(3595), 1, anon_sym_AMP_AMP, + ACTIONS(3597), 1, anon_sym_PIPE, + ACTIONS(3599), 1, anon_sym_CARET, + ACTIONS(3601), 1, anon_sym_AMP, + ACTIONS(3803), 1, + anon_sym_RPAREN, + ACTIONS(3587), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3589), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3603), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(3605), 2, anon_sym_GT, + anon_sym_LT, + ACTIONS(3607), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_LT, + ACTIONS(3609), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [54109] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3748), 8, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - ACTIONS(3746), 11, - anon_sym___attribute__, - anon_sym___scanf, - anon_sym___printf, - anon_sym___read_mostly, - anon_sym___must_hold, - anon_sym___ro_after_init, - anon_sym___init, - anon_sym_LBRACK, - anon_sym_asm, - anon_sym___asm__, - sym_identifier, - [54136] = 14, - ACTIONS(3), 1, + [59868] = 8, + ACTIONS(3643), 1, sym_comment, - ACTIONS(3526), 1, + ACTIONS(3709), 1, + anon_sym_LF, + ACTIONS(3779), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3783), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3789), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3781), 3, + anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3528), 1, + anon_sym_PERCENT, + ACTIONS(3791), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(3711), 5, anon_sym_PIPE_PIPE, - ACTIONS(3530), 1, anon_sym_AMP_AMP, - ACTIONS(3532), 1, anon_sym_PIPE, - ACTIONS(3534), 1, anon_sym_CARET, - ACTIONS(3536), 1, anon_sym_AMP, - ACTIONS(3750), 1, - anon_sym_RPAREN, - ACTIONS(3522), 2, + [59905] = 3, + ACTIONS(3643), 1, + sym_comment, + ACTIONS(3697), 1, + anon_sym_LF, + ACTIONS(3699), 18, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3524), 2, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3538), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3540), 2, anon_sym_GT, - anon_sym_LT, - ACTIONS(3542), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3544), 2, + anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [54185] = 12, - ACTIONS(3554), 1, + [59932] = 12, + ACTIONS(3643), 1, sym_comment, - ACTIONS(3720), 1, + ACTIONS(3709), 1, + anon_sym_LF, + ACTIONS(3711), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3785), 1, anon_sym_CARET, - ACTIONS(3722), 1, + ACTIONS(3787), 1, anon_sym_AMP, - ACTIONS(3726), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3728), 1, - anon_sym_AMP_AMP, - ACTIONS(3730), 1, + ACTIONS(3793), 1, anon_sym_PIPE, - ACTIONS(3752), 1, - anon_sym_LF, - ACTIONS(3710), 2, + ACTIONS(3799), 1, + anon_sym_AMP_AMP, + ACTIONS(3779), 2, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3714), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3718), 2, + anon_sym_PLUS, + ACTIONS(3783), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3712), 3, + ACTIONS(3789), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3781), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3716), 4, + ACTIONS(3791), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [54230] = 5, - ACTIONS(3554), 1, + [59977] = 3, + ACTIONS(3643), 1, sym_comment, - ACTIONS(3589), 1, + ACTIONS(3709), 1, anon_sym_LF, - ACTIONS(3710), 2, + ACTIONS(3711), 18, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3712), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3591), 13, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -107282,22 +121312,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [54261] = 6, - ACTIONS(3554), 1, + [60004] = 4, + ACTIONS(3643), 1, sym_comment, - ACTIONS(3589), 1, + ACTIONS(3709), 1, anon_sym_LF, - ACTIONS(3710), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3718), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3712), 3, + ACTIONS(3781), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3591), 11, + ACTIONS(3711), 15, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -107309,140 +121335,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [54294] = 9, - ACTIONS(3554), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + [60033] = 3, + ACTIONS(3643), 1, sym_comment, - ACTIONS(3589), 1, + ACTIONS(3739), 1, anon_sym_LF, - ACTIONS(3722), 1, - anon_sym_AMP, - ACTIONS(3710), 2, + ACTIONS(3741), 18, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3714), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3718), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3712), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3591), 4, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_CARET, - ACTIONS(3716), 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, - [54333] = 7, - ACTIONS(3554), 1, - sym_comment, - ACTIONS(3589), 1, - anon_sym_LF, - ACTIONS(3710), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3718), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3712), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3716), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(3591), 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, - [54368] = 12, - ACTIONS(3554), 1, + [60060] = 7, + ACTIONS(3643), 1, sym_comment, - ACTIONS(3720), 1, - anon_sym_CARET, - ACTIONS(3722), 1, - anon_sym_AMP, - ACTIONS(3726), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3728), 1, - anon_sym_AMP_AMP, - ACTIONS(3730), 1, - anon_sym_PIPE, - ACTIONS(3754), 1, + ACTIONS(3709), 1, anon_sym_LF, - ACTIONS(3710), 2, + ACTIONS(3779), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3714), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3718), 2, + ACTIONS(3783), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3712), 3, + ACTIONS(3781), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3716), 4, + ACTIONS(3791), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [54413] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1797), 1, - anon_sym___based, - ACTIONS(3048), 1, - sym_identifier, - ACTIONS(3219), 1, - anon_sym_LPAREN2, - ACTIONS(3221), 1, - anon_sym_STAR, - STATE(511), 1, - sym__old_style_function_declarator, - STATE(1343), 1, - sym_ms_call_modifier, - STATE(1397), 1, - sym__declarator, - STATE(2016), 1, - sym_ms_based_modifier, - STATE(1387), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - ACTIONS(43), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - [54456] = 3, - ACTIONS(3159), 1, - anon_sym_LF, - ACTIONS(3554), 1, - sym_comment, - ACTIONS(3157), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3711), 7, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -107450,55 +121389,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - [54483] = 11, - ACTIONS(3), 1, + [60095] = 5, + ACTIONS(3643), 1, sym_comment, - ACTIONS(1797), 1, - anon_sym___based, - ACTIONS(3048), 1, - sym_identifier, - ACTIONS(3219), 1, - anon_sym_LPAREN2, - ACTIONS(3221), 1, - anon_sym_STAR, - STATE(531), 1, - sym__old_style_function_declarator, - STATE(1359), 1, - sym_ms_call_modifier, - STATE(1405), 1, - sym__declarator, - STATE(2016), 1, - sym_ms_based_modifier, - STATE(1387), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - ACTIONS(43), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - [54526] = 3, - ACTIONS(3167), 1, + ACTIONS(3709), 1, anon_sym_LF, - ACTIONS(3554), 1, - sym_comment, - ACTIONS(3165), 18, + ACTIONS(3779), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(3781), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(3711), 13, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -107512,110 +121415,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [54553] = 11, - ACTIONS(3554), 1, + [60126] = 12, + ACTIONS(3643), 1, sym_comment, - ACTIONS(3589), 1, - anon_sym_LF, - ACTIONS(3720), 1, + ACTIONS(3785), 1, anon_sym_CARET, - ACTIONS(3722), 1, + ACTIONS(3787), 1, anon_sym_AMP, - ACTIONS(3730), 1, + ACTIONS(3793), 1, anon_sym_PIPE, - ACTIONS(3591), 2, + ACTIONS(3797), 1, anon_sym_PIPE_PIPE, + ACTIONS(3799), 1, anon_sym_AMP_AMP, - ACTIONS(3710), 2, + ACTIONS(3805), 1, + anon_sym_LF, + ACTIONS(3779), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3714), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3718), 2, + ACTIONS(3783), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3712), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3716), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [54596] = 12, - ACTIONS(3554), 1, - sym_comment, - ACTIONS(3589), 1, - anon_sym_LF, - ACTIONS(3591), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3720), 1, - anon_sym_CARET, - ACTIONS(3722), 1, - anon_sym_AMP, - ACTIONS(3728), 1, - anon_sym_AMP_AMP, - ACTIONS(3730), 1, - anon_sym_PIPE, - ACTIONS(3710), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3714), 2, + ACTIONS(3789), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3718), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3712), 3, + ACTIONS(3781), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3716), 4, + ACTIONS(3791), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [54641] = 12, - ACTIONS(3554), 1, + [60171] = 12, + ACTIONS(3643), 1, sym_comment, - ACTIONS(3720), 1, + ACTIONS(3785), 1, anon_sym_CARET, - ACTIONS(3722), 1, + ACTIONS(3787), 1, anon_sym_AMP, - ACTIONS(3726), 1, + ACTIONS(3793), 1, + anon_sym_PIPE, + ACTIONS(3797), 1, anon_sym_PIPE_PIPE, - ACTIONS(3728), 1, + ACTIONS(3799), 1, anon_sym_AMP_AMP, - ACTIONS(3730), 1, - anon_sym_PIPE, - ACTIONS(3756), 1, + ACTIONS(3807), 1, anon_sym_LF, - ACTIONS(3710), 2, + ACTIONS(3779), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3714), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3718), 2, + ACTIONS(3783), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3712), 3, + ACTIONS(3789), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3781), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3716), 4, + ACTIONS(3791), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [54686] = 3, - ACTIONS(3554), 1, + [60216] = 3, + ACTIONS(3643), 1, sym_comment, - ACTIONS(3589), 1, + ACTIONS(3693), 1, anon_sym_LF, - ACTIONS(3591), 18, + ACTIONS(3695), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -107634,191 +121505,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [54713] = 3, - ACTIONS(3171), 1, - anon_sym_LF, - ACTIONS(3554), 1, + [60243] = 12, + ACTIONS(3643), 1, sym_comment, - ACTIONS(3169), 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, + ACTIONS(3785), 1, anon_sym_CARET, + ACTIONS(3787), 1, anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - [54740] = 4, - ACTIONS(3554), 1, - sym_comment, - ACTIONS(3589), 1, + ACTIONS(3793), 1, + anon_sym_PIPE, + ACTIONS(3797), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3799), 1, + anon_sym_AMP_AMP, + ACTIONS(3809), 1, anon_sym_LF, - ACTIONS(3712), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3591), 15, + ACTIONS(3779), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(3783), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3789), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(3781), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3791), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - [54769] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1797), 1, - anon_sym___based, - ACTIONS(3048), 1, - sym_identifier, - ACTIONS(3219), 1, - anon_sym_LPAREN2, - ACTIONS(3221), 1, - anon_sym_STAR, - STATE(522), 1, - sym__old_style_function_declarator, - STATE(1351), 1, - sym_ms_call_modifier, - STATE(1399), 1, - sym__declarator, - STATE(2016), 1, - sym_ms_based_modifier, - STATE(1387), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - ACTIONS(43), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - [54812] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1797), 1, - anon_sym___based, - ACTIONS(3048), 1, - sym_identifier, - ACTIONS(3219), 1, - anon_sym_LPAREN2, - ACTIONS(3221), 1, - anon_sym_STAR, - STATE(523), 1, - sym__old_style_function_declarator, - STATE(1354), 1, - sym_ms_call_modifier, - STATE(1413), 1, - sym__declarator, - STATE(2016), 1, - sym_ms_based_modifier, - STATE(1387), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - ACTIONS(43), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - [54855] = 12, - ACTIONS(3554), 1, + [60288] = 12, + ACTIONS(3643), 1, sym_comment, - ACTIONS(3720), 1, + ACTIONS(3785), 1, anon_sym_CARET, - ACTIONS(3722), 1, + ACTIONS(3787), 1, anon_sym_AMP, - ACTIONS(3726), 1, + ACTIONS(3793), 1, + anon_sym_PIPE, + ACTIONS(3797), 1, anon_sym_PIPE_PIPE, - ACTIONS(3728), 1, + ACTIONS(3799), 1, anon_sym_AMP_AMP, - ACTIONS(3730), 1, - anon_sym_PIPE, - ACTIONS(3758), 1, + ACTIONS(3811), 1, anon_sym_LF, - ACTIONS(3710), 2, + ACTIONS(3779), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3714), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3718), 2, + ACTIONS(3783), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3712), 3, + ACTIONS(3789), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3781), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3716), 4, + ACTIONS(3791), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [54900] = 12, - ACTIONS(3554), 1, + [60333] = 12, + ACTIONS(3643), 1, sym_comment, - ACTIONS(3720), 1, + ACTIONS(3785), 1, anon_sym_CARET, - ACTIONS(3722), 1, + ACTIONS(3787), 1, anon_sym_AMP, - ACTIONS(3726), 1, + ACTIONS(3793), 1, + anon_sym_PIPE, + ACTIONS(3797), 1, anon_sym_PIPE_PIPE, - ACTIONS(3728), 1, + ACTIONS(3799), 1, anon_sym_AMP_AMP, - ACTIONS(3730), 1, - anon_sym_PIPE, - ACTIONS(3760), 1, + ACTIONS(3813), 1, anon_sym_LF, - ACTIONS(3710), 2, + ACTIONS(3779), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3714), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3718), 2, + ACTIONS(3783), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3712), 3, + ACTIONS(3789), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3781), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3716), 4, + ACTIONS(3791), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [54945] = 3, - ACTIONS(3163), 1, + [60378] = 3, + ACTIONS(3236), 1, anon_sym_LF, - ACTIONS(3554), 1, + ACTIONS(3643), 1, sym_comment, - ACTIONS(3161), 18, + ACTIONS(3234), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -107837,12 +121628,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [54972] = 3, - ACTIONS(3554), 1, - sym_comment, - ACTIONS(3659), 1, + [60405] = 3, + ACTIONS(3232), 1, anon_sym_LF, - ACTIONS(3661), 18, + ACTIONS(3643), 1, + sym_comment, + ACTIONS(3230), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -107861,447 +121652,386 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [54999] = 12, - ACTIONS(3554), 1, + [60432] = 12, + ACTIONS(3643), 1, sym_comment, - ACTIONS(3720), 1, + ACTIONS(3785), 1, anon_sym_CARET, - ACTIONS(3722), 1, + ACTIONS(3787), 1, anon_sym_AMP, - ACTIONS(3726), 1, + ACTIONS(3793), 1, + anon_sym_PIPE, + ACTIONS(3797), 1, anon_sym_PIPE_PIPE, - ACTIONS(3728), 1, + ACTIONS(3799), 1, anon_sym_AMP_AMP, - ACTIONS(3730), 1, - anon_sym_PIPE, - ACTIONS(3762), 1, + ACTIONS(3815), 1, anon_sym_LF, - ACTIONS(3710), 2, + ACTIONS(3779), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3714), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3718), 2, + ACTIONS(3783), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3712), 3, + ACTIONS(3789), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3781), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3716), 4, + ACTIONS(3791), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [55044] = 12, - ACTIONS(3554), 1, + [60477] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1835), 1, + anon_sym___based, + ACTIONS(3220), 1, + sym_identifier, + ACTIONS(3222), 1, + anon_sym_LPAREN2, + ACTIONS(3224), 1, + anon_sym_STAR, + ACTIONS(3228), 1, + sym_primitive_type, + STATE(1427), 1, + sym_macro_modifier, + STATE(1624), 1, + sym__type_declarator, + STATE(2043), 1, + sym_ms_based_modifier, + ACTIONS(43), 2, + anon_sym___init, + anon_sym___exit, + ACTIONS(3226), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1443), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + [60522] = 12, + ACTIONS(3643), 1, sym_comment, - ACTIONS(3720), 1, + ACTIONS(3785), 1, anon_sym_CARET, - ACTIONS(3722), 1, + ACTIONS(3787), 1, anon_sym_AMP, - ACTIONS(3726), 1, + ACTIONS(3793), 1, + anon_sym_PIPE, + ACTIONS(3797), 1, anon_sym_PIPE_PIPE, - ACTIONS(3728), 1, + ACTIONS(3799), 1, anon_sym_AMP_AMP, - ACTIONS(3730), 1, - anon_sym_PIPE, - ACTIONS(3764), 1, + ACTIONS(3817), 1, anon_sym_LF, - ACTIONS(3710), 2, + ACTIONS(3779), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3714), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3718), 2, + ACTIONS(3783), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3712), 3, + ACTIONS(3789), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3781), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3716), 4, + ACTIONS(3791), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [55089] = 14, - ACTIONS(3), 1, + [60567] = 12, + ACTIONS(3643), 1, sym_comment, - ACTIONS(3526), 1, - anon_sym_SLASH, - ACTIONS(3528), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3530), 1, - anon_sym_AMP_AMP, - ACTIONS(3532), 1, - anon_sym_PIPE, - ACTIONS(3534), 1, + ACTIONS(3785), 1, anon_sym_CARET, - ACTIONS(3536), 1, + ACTIONS(3787), 1, anon_sym_AMP, - ACTIONS(3766), 1, - anon_sym_RPAREN, - ACTIONS(3522), 2, + ACTIONS(3793), 1, + anon_sym_PIPE, + ACTIONS(3797), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3799), 1, + anon_sym_AMP_AMP, + ACTIONS(3819), 1, + anon_sym_LF, + ACTIONS(3779), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3524), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3538), 2, + ACTIONS(3783), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3789), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3540), 2, + ACTIONS(3781), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3791), 4, anon_sym_GT, - anon_sym_LT, - ACTIONS(3542), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3544), 2, + anon_sym_LT, + [60612] = 12, + ACTIONS(3643), 1, + sym_comment, + ACTIONS(3785), 1, + anon_sym_CARET, + ACTIONS(3787), 1, + anon_sym_AMP, + ACTIONS(3793), 1, + anon_sym_PIPE, + ACTIONS(3797), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3799), 1, + anon_sym_AMP_AMP, + ACTIONS(3821), 1, + anon_sym_LF, + ACTIONS(3779), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3783), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [55138] = 3, + ACTIONS(3789), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3781), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3791), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [60657] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2958), 8, + ACTIONS(39), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3823), 1, anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(3825), 1, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, + ACTIONS(3829), 1, + anon_sym_LBRACK, + ACTIONS(3831), 1, anon_sym_COLON, - ACTIONS(2965), 11, + STATE(1430), 1, + sym_parameter_list, + STATE(1528), 1, + sym_bitfield_clause, + STATE(1532), 1, + aux_sym__field_declaration_declarator_repeat1, + STATE(1409), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(3827), 9, + anon_sym_SEMI, anon_sym___attribute__, anon_sym___scanf, anon_sym___printf, anon_sym___read_mostly, anon_sym___must_hold, anon_sym___ro_after_init, - anon_sym___init, - anon_sym_LBRACK, - anon_sym_asm, - anon_sym___asm__, - sym_identifier, - [55165] = 3, - ACTIONS(3554), 1, + anon_sym___noreturn, + anon_sym___cold, + [60700] = 12, + ACTIONS(3643), 1, sym_comment, - ACTIONS(3637), 1, - anon_sym_LF, - ACTIONS(3639), 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, + ACTIONS(3785), 1, anon_sym_CARET, + ACTIONS(3787), 1, anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - [55192] = 3, - ACTIONS(3554), 1, - sym_comment, - ACTIONS(3643), 1, + ACTIONS(3793), 1, + anon_sym_PIPE, + ACTIONS(3797), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3799), 1, + anon_sym_AMP_AMP, + ACTIONS(3833), 1, anon_sym_LF, - ACTIONS(3645), 18, + ACTIONS(3779), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(3783), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3789), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3781), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(3791), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - [55219] = 12, - ACTIONS(3554), 1, + [60745] = 12, + ACTIONS(3643), 1, sym_comment, - ACTIONS(3720), 1, + ACTIONS(3785), 1, anon_sym_CARET, - ACTIONS(3722), 1, + ACTIONS(3787), 1, anon_sym_AMP, - ACTIONS(3726), 1, + ACTIONS(3793), 1, + anon_sym_PIPE, + ACTIONS(3797), 1, anon_sym_PIPE_PIPE, - ACTIONS(3728), 1, + ACTIONS(3799), 1, anon_sym_AMP_AMP, - ACTIONS(3730), 1, - anon_sym_PIPE, - ACTIONS(3768), 1, + ACTIONS(3835), 1, anon_sym_LF, - ACTIONS(3710), 2, + ACTIONS(3779), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3714), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3718), 2, + ACTIONS(3783), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3712), 3, + ACTIONS(3789), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3781), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3716), 4, + ACTIONS(3791), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [55264] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1797), 1, - anon_sym___based, - ACTIONS(3048), 1, - sym_identifier, - ACTIONS(3219), 1, - anon_sym_LPAREN2, - ACTIONS(3221), 1, - anon_sym_STAR, - STATE(1343), 1, - sym_ms_call_modifier, - STATE(1430), 1, - sym__declarator, - STATE(2016), 1, - sym_ms_based_modifier, - STATE(1387), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - ACTIONS(43), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - [55304] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1797), 1, - anon_sym___based, - ACTIONS(3209), 1, - sym_identifier, - ACTIONS(3211), 1, - anon_sym_LPAREN2, - ACTIONS(3213), 1, - anon_sym_STAR, - STATE(1357), 1, - sym_ms_call_modifier, - STATE(1436), 1, - sym__field_declarator, - STATE(1875), 1, - sym_ms_based_modifier, - STATE(1306), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - ACTIONS(43), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - [55344] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1793), 1, - anon_sym_LPAREN2, - ACTIONS(1795), 1, - anon_sym_STAR, - ACTIONS(1797), 1, - anon_sym___based, - ACTIONS(3048), 1, - sym_identifier, - ACTIONS(3056), 1, - anon_sym_LBRACK, - STATE(1437), 1, - sym__declarator, - STATE(1509), 1, - sym_parameter_list, - STATE(1542), 1, - sym__abstract_declarator, - STATE(2016), 1, - sym_ms_based_modifier, - STATE(1504), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - STATE(1387), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - [55388] = 10, + [60790] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1797), 1, - anon_sym___based, - ACTIONS(3048), 1, - sym_identifier, - ACTIONS(3219), 1, - anon_sym_LPAREN2, - ACTIONS(3221), 1, + ACTIONS(3591), 1, + anon_sym_SLASH, + ACTIONS(3593), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3595), 1, + anon_sym_AMP_AMP, + ACTIONS(3597), 1, + anon_sym_PIPE, + ACTIONS(3599), 1, + anon_sym_CARET, + ACTIONS(3601), 1, + anon_sym_AMP, + ACTIONS(3837), 1, + anon_sym_RPAREN, + ACTIONS(3587), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3589), 2, anon_sym_STAR, - STATE(1342), 1, - sym_ms_call_modifier, - STATE(1438), 1, - sym__declarator, - STATE(2016), 1, - sym_ms_based_modifier, - STATE(1387), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - ACTIONS(43), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - [55428] = 10, - ACTIONS(3), 1, + anon_sym_PERCENT, + ACTIONS(3603), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3605), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3607), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3609), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [60839] = 12, + ACTIONS(3643), 1, sym_comment, - ACTIONS(1797), 1, - anon_sym___based, - ACTIONS(3048), 1, - sym_identifier, - ACTIONS(3219), 1, - anon_sym_LPAREN2, - ACTIONS(3221), 1, + ACTIONS(3785), 1, + anon_sym_CARET, + ACTIONS(3787), 1, + anon_sym_AMP, + ACTIONS(3793), 1, + anon_sym_PIPE, + ACTIONS(3797), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3799), 1, + anon_sym_AMP_AMP, + ACTIONS(3839), 1, + anon_sym_LF, + ACTIONS(3779), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3783), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3789), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3781), 3, anon_sym_STAR, - STATE(1354), 1, - sym_ms_call_modifier, - STATE(1435), 1, - sym__declarator, - STATE(2016), 1, - sym_ms_based_modifier, - STATE(1387), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - ACTIONS(43), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - [55468] = 10, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3791), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [60884] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1797), 1, + ACTIONS(1835), 1, anon_sym___based, - ACTIONS(3048), 1, - sym_identifier, - ACTIONS(3219), 1, + ACTIONS(1873), 1, anon_sym_LPAREN2, - ACTIONS(3221), 1, + ACTIONS(1875), 1, anon_sym_STAR, - STATE(1351), 1, - sym_ms_call_modifier, - STATE(1422), 1, - sym__declarator, - STATE(2016), 1, - sym_ms_based_modifier, - STATE(1387), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - ACTIONS(43), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - [55508] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1797), 1, - anon_sym___based, - ACTIONS(3048), 1, + ACTIONS(3136), 1, sym_identifier, - ACTIONS(3219), 1, - anon_sym_LPAREN2, - ACTIONS(3221), 1, - anon_sym_STAR, - STATE(1359), 1, - sym_ms_call_modifier, - STATE(1421), 1, + ACTIONS(3144), 1, + anon_sym_LBRACK, + STATE(1632), 1, sym__declarator, - STATE(2016), 1, + STATE(1691), 1, + sym_parameter_list, + STATE(1722), 1, + sym__abstract_declarator, + STATE(2174), 1, sym_ms_based_modifier, - STATE(1387), 5, + STATE(1717), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + STATE(1569), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - ACTIONS(43), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - [55548] = 11, + [60928] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(39), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3770), 1, - anon_sym_COMMA, - ACTIONS(3772), 1, + ACTIONS(3825), 1, anon_sym_LPAREN2, - ACTIONS(3776), 1, + ACTIONS(3829), 1, anon_sym_LBRACK, - ACTIONS(3778), 1, - anon_sym_COLON, - STATE(1305), 1, + STATE(1430), 1, sym_parameter_list, - STATE(1368), 1, - aux_sym__field_declaration_declarator_repeat1, - STATE(1381), 1, - sym_bitfield_clause, - STATE(1288), 2, + STATE(1409), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3774), 8, + ACTIONS(3841), 12, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, anon_sym___attribute__, anon_sym___scanf, @@ -108309,22 +122039,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___read_mostly, anon_sym___must_hold, anon_sym___ro_after_init, - anon_sym___init, - [55590] = 7, + anon_sym___noreturn, + anon_sym___cold, + anon_sym_COLON, + [60962] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(39), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3772), 1, + ACTIONS(3825), 1, anon_sym_LPAREN2, - ACTIONS(3776), 1, + ACTIONS(3829), 1, anon_sym_LBRACK, - STATE(1305), 1, + STATE(1430), 1, sym_parameter_list, - STATE(1288), 2, + STATE(1409), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3780), 11, + ACTIONS(3843), 12, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, @@ -108334,25 +122066,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___read_mostly, anon_sym___must_hold, anon_sym___ro_after_init, - anon_sym___init, + anon_sym___noreturn, + anon_sym___cold, anon_sym_COLON, - [55623] = 7, + [60996] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(39), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3772), 1, + ACTIONS(3825), 1, anon_sym_LPAREN2, - ACTIONS(3776), 1, + ACTIONS(3829), 1, anon_sym_LBRACK, - STATE(1305), 1, + ACTIONS(3831), 1, + anon_sym_COLON, + STATE(1430), 1, sym_parameter_list, - STATE(1288), 2, + STATE(1563), 1, + sym_bitfield_clause, + STATE(1409), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3782), 11, + ACTIONS(3845), 10, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_SEMI, anon_sym___attribute__, anon_sym___scanf, @@ -108360,48 +122096,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___read_mostly, anon_sym___must_hold, anon_sym___ro_after_init, - anon_sym___init, - anon_sym_COLON, - [55656] = 6, + anon_sym___noreturn, + anon_sym___cold, + [61034] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3738), 2, + ACTIONS(3749), 2, anon_sym_LBRACK, sym_identifier, - ACTIONS(3784), 2, + ACTIONS(3847), 2, anon_sym_COMMA, anon_sym_SEMI, - ACTIONS(3789), 2, + ACTIONS(3852), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(3740), 4, + ACTIONS(3751), 4, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - ACTIONS(3786), 7, + ACTIONS(3849), 8, anon_sym___attribute__, anon_sym___scanf, anon_sym___printf, anon_sym___read_mostly, anon_sym___must_hold, anon_sym___ro_after_init, - anon_sym___init, - [55687] = 7, + anon_sym___noreturn, + anon_sym___cold, + [61066] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(39), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3772), 1, + ACTIONS(3825), 1, anon_sym_LPAREN2, - ACTIONS(3776), 1, + ACTIONS(3829), 1, anon_sym_LBRACK, - STATE(1305), 1, + STATE(1430), 1, sym_parameter_list, - STATE(1288), 2, + STATE(1409), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3791), 11, + ACTIONS(3854), 12, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, @@ -108411,205 +122148,372 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___read_mostly, anon_sym___must_hold, anon_sym___ro_after_init, - anon_sym___init, + anon_sym___noreturn, + anon_sym___cold, + anon_sym_COLON, + [61100] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(39), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3825), 1, + anon_sym_LPAREN2, + ACTIONS(3829), 1, + anon_sym_LBRACK, + STATE(1430), 1, + sym_parameter_list, + STATE(1409), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(3856), 12, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym___scanf, + anon_sym___printf, + anon_sym___read_mostly, + anon_sym___must_hold, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, anon_sym_COLON, - [55720] = 11, + [61134] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1835), 1, + anon_sym___based, + ACTIONS(1873), 1, + anon_sym_LPAREN2, + ACTIONS(1875), 1, + anon_sym_STAR, + ACTIONS(3136), 1, + sym_identifier, + ACTIONS(3144), 1, + anon_sym_LBRACK, + STATE(1633), 1, + sym__declarator, + STATE(1691), 1, + sym_parameter_list, + STATE(1719), 1, + sym__abstract_declarator, + STATE(2174), 1, + sym_ms_based_modifier, + STATE(1717), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + STATE(1569), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + [61178] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(39), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3825), 1, + anon_sym_LPAREN2, + ACTIONS(3860), 1, + anon_sym_LBRACK, + STATE(1451), 1, + sym_parameter_list, + STATE(1418), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(3858), 11, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym___scanf, + anon_sym___printf, + anon_sym___read_mostly, + anon_sym___must_hold, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + [61211] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1797), 1, + ACTIONS(1835), 1, anon_sym___based, - ACTIONS(3145), 1, + ACTIONS(3220), 1, sym_identifier, - ACTIONS(3147), 1, + ACTIONS(3222), 1, anon_sym_LPAREN2, - ACTIONS(3149), 1, + ACTIONS(3224), 1, anon_sym_STAR, - ACTIONS(3153), 1, + ACTIONS(3228), 1, sym_primitive_type, - STATE(1291), 1, + STATE(1404), 1, sym__type_declarator, - STATE(1382), 1, + STATE(1527), 1, sym__type_definition_declarators, - STATE(1891), 1, + STATE(2043), 1, sym_ms_based_modifier, - ACTIONS(3151), 4, + ACTIONS(3226), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1322), 5, + STATE(1443), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [55761] = 11, + [61252] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1797), 1, + ACTIONS(1835), 1, anon_sym___based, - ACTIONS(3145), 1, + ACTIONS(3220), 1, sym_identifier, - ACTIONS(3147), 1, + ACTIONS(3222), 1, anon_sym_LPAREN2, - ACTIONS(3149), 1, + ACTIONS(3224), 1, anon_sym_STAR, - ACTIONS(3153), 1, + ACTIONS(3228), 1, sym_primitive_type, - STATE(1291), 1, + STATE(1404), 1, sym__type_declarator, - STATE(1392), 1, + STATE(1537), 1, sym__type_definition_declarators, - STATE(1891), 1, + STATE(2043), 1, sym_ms_based_modifier, - ACTIONS(3151), 4, + ACTIONS(3226), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1322), 5, + STATE(1443), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [55802] = 11, + [61293] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1797), 1, + ACTIONS(1835), 1, anon_sym___based, - ACTIONS(3145), 1, + ACTIONS(3220), 1, sym_identifier, - ACTIONS(3147), 1, + ACTIONS(3222), 1, anon_sym_LPAREN2, - ACTIONS(3149), 1, + ACTIONS(3224), 1, anon_sym_STAR, - ACTIONS(3153), 1, + ACTIONS(3228), 1, sym_primitive_type, - STATE(1291), 1, + STATE(1404), 1, sym__type_declarator, - STATE(1395), 1, + STATE(1518), 1, sym__type_definition_declarators, - STATE(1891), 1, + STATE(2043), 1, + sym_ms_based_modifier, + ACTIONS(3226), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1443), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + [61334] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(39), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3825), 1, + anon_sym_LPAREN2, + ACTIONS(3860), 1, + anon_sym_LBRACK, + STATE(1451), 1, + sym_parameter_list, + STATE(1418), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(3862), 11, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym___scanf, + anon_sym___printf, + anon_sym___read_mostly, + anon_sym___must_hold, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + [61367] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(39), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3825), 1, + anon_sym_LPAREN2, + ACTIONS(3860), 1, + anon_sym_LBRACK, + ACTIONS(3864), 1, + anon_sym_COMMA, + STATE(1451), 1, + sym_parameter_list, + STATE(1546), 1, + aux_sym__type_definition_declarators_repeat1, + STATE(1418), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(3866), 9, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym___scanf, + anon_sym___printf, + anon_sym___read_mostly, + anon_sym___must_hold, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + [61404] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1835), 1, + anon_sym___based, + ACTIONS(3220), 1, + sym_identifier, + ACTIONS(3222), 1, + anon_sym_LPAREN2, + ACTIONS(3224), 1, + anon_sym_STAR, + ACTIONS(3228), 1, + sym_primitive_type, + STATE(1404), 1, + sym__type_declarator, + STATE(1543), 1, + sym__type_definition_declarators, + STATE(2043), 1, sym_ms_based_modifier, - ACTIONS(3151), 4, + ACTIONS(3226), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1322), 5, + STATE(1443), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [55843] = 11, + [61445] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1797), 1, + ACTIONS(1835), 1, anon_sym___based, - ACTIONS(3145), 1, + ACTIONS(3220), 1, sym_identifier, - ACTIONS(3147), 1, + ACTIONS(3222), 1, anon_sym_LPAREN2, - ACTIONS(3149), 1, + ACTIONS(3224), 1, anon_sym_STAR, - ACTIONS(3153), 1, + ACTIONS(3228), 1, sym_primitive_type, - STATE(1291), 1, + STATE(1404), 1, sym__type_declarator, - STATE(1394), 1, + STATE(1517), 1, sym__type_definition_declarators, - STATE(1891), 1, + STATE(2043), 1, sym_ms_based_modifier, - ACTIONS(3151), 4, + ACTIONS(3226), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1322), 5, + STATE(1443), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [55884] = 11, + [61486] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1797), 1, + ACTIONS(1835), 1, anon_sym___based, - ACTIONS(3145), 1, + ACTIONS(3220), 1, sym_identifier, - ACTIONS(3147), 1, + ACTIONS(3222), 1, anon_sym_LPAREN2, - ACTIONS(3149), 1, + ACTIONS(3224), 1, anon_sym_STAR, - ACTIONS(3153), 1, + ACTIONS(3228), 1, sym_primitive_type, - STATE(1291), 1, + STATE(1404), 1, sym__type_declarator, - STATE(1375), 1, + STATE(1550), 1, sym__type_definition_declarators, - STATE(1891), 1, + STATE(2043), 1, sym_ms_based_modifier, - ACTIONS(3151), 4, + ACTIONS(3226), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1322), 5, + STATE(1443), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [55925] = 11, + [61527] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1797), 1, + ACTIONS(1835), 1, anon_sym___based, - ACTIONS(3145), 1, + ACTIONS(3220), 1, sym_identifier, - ACTIONS(3147), 1, + ACTIONS(3222), 1, anon_sym_LPAREN2, - ACTIONS(3149), 1, + ACTIONS(3224), 1, anon_sym_STAR, - ACTIONS(3153), 1, + ACTIONS(3228), 1, sym_primitive_type, - STATE(1291), 1, + STATE(1404), 1, sym__type_declarator, - STATE(1383), 1, + STATE(1511), 1, sym__type_definition_declarators, - STATE(1891), 1, + STATE(2043), 1, sym_ms_based_modifier, - ACTIONS(3151), 4, + ACTIONS(3226), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1322), 5, + STATE(1443), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [55966] = 7, + [61568] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(39), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3772), 1, - anon_sym_LPAREN2, - ACTIONS(3776), 1, + ACTIONS(3870), 1, anon_sym_LBRACK, - STATE(1305), 1, - sym_parameter_list, - STATE(1288), 2, + STATE(1272), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3793), 11, + ACTIONS(3868), 13, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, anon_sym___scanf, @@ -108617,28 +122521,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___read_mostly, anon_sym___must_hold, anon_sym___ro_after_init, - anon_sym___init, + anon_sym___noreturn, + anon_sym___cold, anon_sym_COLON, - [55999] = 9, + [61597] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(39), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3772), 1, + ACTIONS(3825), 1, anon_sym_LPAREN2, - ACTIONS(3776), 1, + ACTIONS(3860), 1, anon_sym_LBRACK, - ACTIONS(3778), 1, - anon_sym_COLON, - STATE(1305), 1, + STATE(1451), 1, sym_parameter_list, - STATE(1414), 1, - sym_bitfield_clause, - STATE(1288), 2, + STATE(1418), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3795), 9, + ACTIONS(3872), 11, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, anon_sym___attribute__, anon_sym___scanf, @@ -108646,112 +122548,438 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___read_mostly, anon_sym___must_hold, anon_sym___ro_after_init, - anon_sym___init, - [56036] = 11, + anon_sym___noreturn, + anon_sym___cold, + [61630] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1797), 1, + ACTIONS(1835), 1, anon_sym___based, - ACTIONS(3145), 1, + ACTIONS(3220), 1, sym_identifier, - ACTIONS(3147), 1, + ACTIONS(3222), 1, anon_sym_LPAREN2, - ACTIONS(3149), 1, + ACTIONS(3224), 1, anon_sym_STAR, - ACTIONS(3153), 1, + ACTIONS(3228), 1, sym_primitive_type, - STATE(1291), 1, + STATE(1404), 1, sym__type_declarator, - STATE(1386), 1, + STATE(1523), 1, sym__type_definition_declarators, - STATE(1891), 1, + STATE(2043), 1, sym_ms_based_modifier, - ACTIONS(3151), 4, + ACTIONS(3226), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1322), 5, + STATE(1443), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [56077] = 11, + [61671] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(39), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3825), 1, + anon_sym_LPAREN2, + ACTIONS(3860), 1, + anon_sym_LBRACK, + STATE(1451), 1, + sym_parameter_list, + STATE(1418), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(3874), 11, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym___scanf, + anon_sym___printf, + anon_sym___read_mostly, + anon_sym___must_hold, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + [61704] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1831), 1, + anon_sym_LPAREN2, + ACTIONS(1833), 1, + anon_sym_STAR, + ACTIONS(1835), 1, + anon_sym___based, + ACTIONS(3493), 1, + sym_identifier, + STATE(1468), 1, + sym_macro_modifier, + STATE(1569), 1, + sym_function_declarator, + STATE(1662), 1, + sym__declarator, + STATE(1688), 1, + sym__declaration_declarator, + STATE(1739), 1, + sym__function_declaration_declarator, + STATE(2174), 1, + sym_ms_based_modifier, + ACTIONS(43), 2, + anon_sym___init, + anon_sym___exit, + STATE(1581), 4, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_array_declarator, + [61748] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1831), 1, + anon_sym_LPAREN2, + ACTIONS(1833), 1, + anon_sym_STAR, + ACTIONS(1835), 1, + anon_sym___based, + ACTIONS(3493), 1, + sym_identifier, + STATE(1485), 1, + sym_macro_modifier, + STATE(1569), 1, + sym_function_declarator, + STATE(1609), 1, + sym__declarator, + STATE(1688), 1, + sym__declaration_declarator, + STATE(1739), 1, + sym__function_declaration_declarator, + STATE(2174), 1, + sym_ms_based_modifier, + ACTIONS(43), 2, + anon_sym___init, + anon_sym___exit, + STATE(1581), 4, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_array_declarator, + [61792] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1831), 1, + anon_sym_LPAREN2, + ACTIONS(1833), 1, + anon_sym_STAR, + ACTIONS(1835), 1, + anon_sym___based, + ACTIONS(3493), 1, + sym_identifier, + STATE(1490), 1, + sym_macro_modifier, + STATE(1569), 1, + sym_function_declarator, + STATE(1589), 1, + sym__declarator, + STATE(1673), 1, + sym__declaration_declarator, + STATE(1739), 1, + sym__function_declaration_declarator, + STATE(2174), 1, + sym_ms_based_modifier, + ACTIONS(43), 2, + anon_sym___init, + anon_sym___exit, + STATE(1581), 4, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_array_declarator, + [61836] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1831), 1, + anon_sym_LPAREN2, + ACTIONS(1833), 1, + anon_sym_STAR, + ACTIONS(1835), 1, + anon_sym___based, + ACTIONS(3493), 1, + sym_identifier, + STATE(1480), 1, + sym_macro_modifier, + STATE(1569), 1, + sym_function_declarator, + STATE(1611), 1, + sym__declarator, + STATE(1689), 1, + sym__declaration_declarator, + STATE(1739), 1, + sym__function_declaration_declarator, + STATE(2174), 1, + sym_ms_based_modifier, + ACTIONS(43), 2, + anon_sym___init, + anon_sym___exit, + STATE(1581), 4, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_array_declarator, + [61880] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1831), 1, + anon_sym_LPAREN2, + ACTIONS(1833), 1, + anon_sym_STAR, + ACTIONS(1835), 1, + anon_sym___based, + ACTIONS(3493), 1, + sym_identifier, + STATE(1474), 1, + sym_macro_modifier, + STATE(1569), 1, + sym_function_declarator, + STATE(1662), 1, + sym__declarator, + STATE(1663), 1, + sym__declaration_declarator, + STATE(1739), 1, + sym__function_declaration_declarator, + STATE(2174), 1, + sym_ms_based_modifier, + ACTIONS(43), 2, + anon_sym___init, + anon_sym___exit, + STATE(1581), 4, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_array_declarator, + [61924] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(39), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3878), 1, + anon_sym_LBRACK, + STATE(1272), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(3876), 12, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym___scanf, + anon_sym___printf, + anon_sym___read_mostly, + anon_sym___must_hold, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + [61952] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1831), 1, + anon_sym_LPAREN2, + ACTIONS(1833), 1, + anon_sym_STAR, + ACTIONS(1835), 1, + anon_sym___based, + ACTIONS(3493), 1, + sym_identifier, + STATE(1477), 1, + sym_macro_modifier, + STATE(1569), 1, + sym_function_declarator, + STATE(1662), 1, + sym__declarator, + STATE(1689), 1, + sym__declaration_declarator, + STATE(1739), 1, + sym__function_declaration_declarator, + STATE(2174), 1, + sym_ms_based_modifier, + ACTIONS(43), 2, + anon_sym___init, + anon_sym___exit, + STATE(1581), 4, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_array_declarator, + [61996] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1797), 1, + ACTIONS(1835), 1, anon_sym___based, - ACTIONS(3145), 1, + ACTIONS(3220), 1, sym_identifier, - ACTIONS(3147), 1, + ACTIONS(3222), 1, anon_sym_LPAREN2, - ACTIONS(3149), 1, + ACTIONS(3224), 1, anon_sym_STAR, - ACTIONS(3153), 1, + ACTIONS(3228), 1, sym_primitive_type, - STATE(1291), 1, + STATE(1425), 1, sym__type_declarator, - STATE(1378), 1, - sym__type_definition_declarators, - STATE(1891), 1, + STATE(2043), 1, sym_ms_based_modifier, - ACTIONS(3151), 4, + ACTIONS(3226), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1322), 5, + STATE(1443), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [56118] = 10, + [62034] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1797), 1, + ACTIONS(1835), 1, anon_sym___based, - ACTIONS(3145), 1, + ACTIONS(3220), 1, sym_identifier, - ACTIONS(3147), 1, + ACTIONS(3222), 1, anon_sym_LPAREN2, - ACTIONS(3149), 1, + ACTIONS(3224), 1, anon_sym_STAR, - ACTIONS(3153), 1, + ACTIONS(3228), 1, sym_primitive_type, - STATE(1296), 1, + STATE(1624), 1, sym__type_declarator, - STATE(1891), 1, + STATE(2043), 1, sym_ms_based_modifier, - ACTIONS(3151), 4, + ACTIONS(3226), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1322), 5, + STATE(1443), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [56156] = 7, + [62072] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1831), 1, + anon_sym_LPAREN2, + ACTIONS(1833), 1, + anon_sym_STAR, + ACTIONS(1835), 1, + anon_sym___based, + ACTIONS(3493), 1, + sym_identifier, + STATE(1469), 1, + sym_macro_modifier, + STATE(1569), 1, + sym_function_declarator, + STATE(1622), 1, + sym__declarator, + STATE(1653), 1, + sym__declaration_declarator, + STATE(1739), 1, + sym__function_declaration_declarator, + STATE(2174), 1, + sym_ms_based_modifier, + ACTIONS(43), 2, + anon_sym___init, + anon_sym___exit, + STATE(1581), 4, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_array_declarator, + [62116] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1831), 1, + anon_sym_LPAREN2, + ACTIONS(1833), 1, + anon_sym_STAR, + ACTIONS(1835), 1, + anon_sym___based, + ACTIONS(3493), 1, + sym_identifier, + STATE(1488), 1, + sym_macro_modifier, + STATE(1569), 1, + sym_function_declarator, + STATE(1662), 1, + sym__declarator, + STATE(1673), 1, + sym__declaration_declarator, + STATE(1739), 1, + sym__function_declaration_declarator, + STATE(2174), 1, + sym_ms_based_modifier, + ACTIONS(43), 2, + anon_sym___init, + anon_sym___exit, + STATE(1581), 4, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_array_declarator, + [62160] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1831), 1, + anon_sym_LPAREN2, + ACTIONS(1833), 1, + anon_sym_STAR, + ACTIONS(1835), 1, + anon_sym___based, + ACTIONS(3493), 1, + sym_identifier, + STATE(1486), 1, + sym_macro_modifier, + STATE(1569), 1, + sym_function_declarator, + STATE(1643), 1, + sym__declaration_declarator, + STATE(1662), 1, + sym__declarator, + STATE(1739), 1, + sym__function_declaration_declarator, + STATE(2174), 1, + sym_ms_based_modifier, + ACTIONS(43), 2, + anon_sym___init, + anon_sym___exit, + STATE(1581), 4, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_array_declarator, + [62204] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(39), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3772), 1, + ACTIONS(3825), 1, anon_sym_LPAREN2, - ACTIONS(3799), 1, + ACTIONS(3860), 1, anon_sym_LBRACK, - STATE(1307), 1, + STATE(1451), 1, sym_parameter_list, - STATE(1297), 2, + STATE(1418), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3797), 10, + ACTIONS(3880), 10, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_SEMI, anon_sym___attribute__, anon_sym___scanf, @@ -108759,49 +122987,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___read_mostly, anon_sym___must_hold, anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + [62236] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1831), 1, + anon_sym_LPAREN2, + ACTIONS(1833), 1, + anon_sym_STAR, + ACTIONS(1835), 1, + anon_sym___based, + ACTIONS(3493), 1, + sym_identifier, + STATE(1478), 1, + sym_macro_modifier, + STATE(1569), 1, + sym_function_declarator, + STATE(1662), 1, + sym__declarator, + STATE(1701), 1, + sym__declaration_declarator, + STATE(1739), 1, + sym__function_declaration_declarator, + STATE(2174), 1, + sym_ms_based_modifier, + ACTIONS(43), 2, anon_sym___init, - [56188] = 7, + anon_sym___exit, + STATE(1581), 4, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_array_declarator, + [62280] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1835), 1, + anon_sym___based, + ACTIONS(3220), 1, + sym_identifier, + ACTIONS(3222), 1, + anon_sym_LPAREN2, + ACTIONS(3224), 1, + anon_sym_STAR, + ACTIONS(3228), 1, + sym_primitive_type, + STATE(1625), 1, + sym__type_declarator, + STATE(2043), 1, + sym_ms_based_modifier, + ACTIONS(3226), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1443), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + [62318] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(39), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3772), 1, + ACTIONS(1831), 1, anon_sym_LPAREN2, - ACTIONS(3799), 1, - anon_sym_LBRACK, - STATE(1307), 1, - sym_parameter_list, - STATE(1297), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(3801), 10, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym___scanf, - anon_sym___printf, - anon_sym___read_mostly, - anon_sym___must_hold, - anon_sym___ro_after_init, + ACTIONS(1833), 1, + anon_sym_STAR, + ACTIONS(1835), 1, + anon_sym___based, + ACTIONS(3493), 1, + sym_identifier, + STATE(1489), 1, + sym_macro_modifier, + STATE(1569), 1, + sym_function_declarator, + STATE(1653), 1, + sym__declaration_declarator, + STATE(1662), 1, + sym__declarator, + STATE(1739), 1, + sym__function_declaration_declarator, + STATE(2174), 1, + sym_ms_based_modifier, + ACTIONS(43), 2, anon_sym___init, - [56220] = 7, + anon_sym___exit, + STATE(1581), 4, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_array_declarator, + [62362] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(39), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3772), 1, - anon_sym_LPAREN2, - ACTIONS(3799), 1, + ACTIONS(3884), 1, anon_sym_LBRACK, - STATE(1307), 1, - sym_parameter_list, - STATE(1297), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(3803), 10, + ACTIONS(3882), 14, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, anon_sym___scanf, @@ -108809,18 +123095,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___read_mostly, anon_sym___must_hold, anon_sym___ro_after_init, - anon_sym___init, - [56252] = 5, + anon_sym___noreturn, + anon_sym___cold, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + [62385] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(39), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3807), 1, + ACTIONS(3888), 1, anon_sym_LBRACK, - STATE(1201), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(3805), 12, + ACTIONS(3886), 14, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -108831,25 +123115,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___read_mostly, anon_sym___must_hold, anon_sym___ro_after_init, - anon_sym___init, + anon_sym___noreturn, + anon_sym___cold, + anon_sym_LBRACK_LBRACK, anon_sym_COLON, - [56280] = 7, + [62408] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(39), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3772), 1, - anon_sym_LPAREN2, - ACTIONS(3799), 1, + ACTIONS(3892), 1, anon_sym_LBRACK, - STATE(1307), 1, - sym_parameter_list, - STATE(1297), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(3809), 10, + ACTIONS(3890), 14, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, anon_sym___scanf, @@ -108857,54 +123135,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___read_mostly, anon_sym___must_hold, anon_sym___ro_after_init, - anon_sym___init, - [56312] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1797), 1, - anon_sym___based, - ACTIONS(3145), 1, - sym_identifier, - ACTIONS(3147), 1, - anon_sym_LPAREN2, - ACTIONS(3149), 1, - anon_sym_STAR, - ACTIONS(3153), 1, - sym_primitive_type, - STATE(1443), 1, - sym__type_declarator, - STATE(1891), 1, - sym_ms_based_modifier, - ACTIONS(3151), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1322), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - [56350] = 9, + anon_sym___noreturn, + anon_sym___cold, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + [62431] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(39), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3772), 1, - anon_sym_LPAREN2, - ACTIONS(3799), 1, + ACTIONS(3896), 1, anon_sym_LBRACK, - ACTIONS(3811), 1, + ACTIONS(3894), 14, anon_sym_COMMA, - STATE(1307), 1, - sym_parameter_list, - STATE(1389), 1, - aux_sym__type_definition_declarators_repeat1, - STATE(1297), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(3813), 8, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, anon_sym___scanf, @@ -108912,135 +123155,251 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___read_mostly, anon_sym___must_hold, anon_sym___ro_after_init, - anon_sym___init, - [56386] = 11, + anon_sym___noreturn, + anon_sym___cold, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + [62454] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(3815), 1, + ACTIONS(3898), 1, sym_identifier, - ACTIONS(3817), 1, + ACTIONS(3900), 1, aux_sym_preproc_if_token2, - ACTIONS(3819), 1, + ACTIONS(3902), 1, aux_sym_preproc_else_token1, - ACTIONS(3821), 1, + ACTIONS(3904), 1, aux_sym_preproc_elif_token1, - STATE(1340), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(1360), 1, + STATE(1505), 1, aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(1439), 1, + STATE(1506), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(1629), 1, sym_enumerator, - ACTIONS(3823), 2, + ACTIONS(3906), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(2028), 3, - sym_preproc_else_in_enumerator_list_no_comma, - sym_preproc_elif_in_enumerator_list_no_comma, - sym_preproc_elifdef_in_enumerator_list_no_comma, - STATE(2029), 3, + STATE(2079), 3, sym_preproc_else_in_enumerator_list, sym_preproc_elif_in_enumerator_list, sym_preproc_elifdef_in_enumerator_list, - [56425] = 11, + STATE(2086), 3, + sym_preproc_else_in_enumerator_list_no_comma, + sym_preproc_elif_in_enumerator_list_no_comma, + sym_preproc_elifdef_in_enumerator_list_no_comma, + [62493] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(3815), 1, + ACTIONS(3898), 1, sym_identifier, - ACTIONS(3819), 1, + ACTIONS(3902), 1, aux_sym_preproc_else_token1, - ACTIONS(3821), 1, + ACTIONS(3904), 1, aux_sym_preproc_elif_token1, - ACTIONS(3825), 1, + ACTIONS(3908), 1, aux_sym_preproc_if_token2, - STATE(1350), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(1352), 1, + STATE(1521), 1, aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(1439), 1, + STATE(1522), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(1629), 1, sym_enumerator, - ACTIONS(3823), 2, + ACTIONS(3906), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(1832), 3, - sym_preproc_else_in_enumerator_list_no_comma, - sym_preproc_elif_in_enumerator_list_no_comma, - sym_preproc_elifdef_in_enumerator_list_no_comma, - STATE(1833), 3, + STATE(2225), 3, sym_preproc_else_in_enumerator_list, sym_preproc_elif_in_enumerator_list, sym_preproc_elifdef_in_enumerator_list, - [56464] = 11, + STATE(2226), 3, + sym_preproc_else_in_enumerator_list_no_comma, + sym_preproc_elif_in_enumerator_list_no_comma, + sym_preproc_elifdef_in_enumerator_list_no_comma, + [62532] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(3815), 1, + ACTIONS(3898), 1, sym_identifier, - ACTIONS(3819), 1, + ACTIONS(3902), 1, aux_sym_preproc_else_token1, - ACTIONS(3821), 1, + ACTIONS(3904), 1, aux_sym_preproc_elif_token1, - ACTIONS(3827), 1, + ACTIONS(3910), 1, aux_sym_preproc_if_token2, - STATE(1341), 1, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(1345), 1, + STATE(1502), 1, aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(1439), 1, + STATE(1551), 1, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + STATE(1629), 1, sym_enumerator, - ACTIONS(3823), 2, + ACTIONS(3906), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(1902), 3, - sym_preproc_else_in_enumerator_list_no_comma, - sym_preproc_elif_in_enumerator_list_no_comma, - sym_preproc_elifdef_in_enumerator_list_no_comma, - STATE(1907), 3, + STATE(2178), 3, sym_preproc_else_in_enumerator_list, sym_preproc_elif_in_enumerator_list, sym_preproc_elifdef_in_enumerator_list, - [56503] = 11, + STATE(2179), 3, + sym_preproc_else_in_enumerator_list_no_comma, + sym_preproc_elif_in_enumerator_list_no_comma, + sym_preproc_elifdef_in_enumerator_list_no_comma, + [62571] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3815), 1, + ACTIONS(3914), 1, + anon_sym_LBRACK, + ACTIONS(3912), 14, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym___scanf, + anon_sym___printf, + anon_sym___read_mostly, + anon_sym___must_hold, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + [62594] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3918), 1, + anon_sym_LBRACK, + ACTIONS(3916), 14, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym___scanf, + anon_sym___printf, + anon_sym___read_mostly, + anon_sym___must_hold, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + [62617] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3922), 1, + anon_sym_LBRACK, + ACTIONS(3920), 14, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym___scanf, + anon_sym___printf, + anon_sym___read_mostly, + anon_sym___must_hold, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + [62640] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3926), 1, + anon_sym_LBRACK, + ACTIONS(3924), 14, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym___scanf, + anon_sym___printf, + anon_sym___read_mostly, + anon_sym___must_hold, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + [62663] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3930), 1, + anon_sym_LBRACK, + ACTIONS(3928), 14, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym___scanf, + anon_sym___printf, + anon_sym___read_mostly, + anon_sym___must_hold, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + [62686] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3934), 1, + anon_sym_LBRACK, + ACTIONS(3932), 14, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym___scanf, + anon_sym___printf, + anon_sym___read_mostly, + anon_sym___must_hold, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + [62709] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3898), 1, sym_identifier, - ACTIONS(3819), 1, + ACTIONS(3902), 1, aux_sym_preproc_else_token1, - ACTIONS(3821), 1, + ACTIONS(3904), 1, aux_sym_preproc_elif_token1, - ACTIONS(3829), 1, + ACTIONS(3936), 1, aux_sym_preproc_if_token2, - STATE(1349), 1, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(1353), 1, + STATE(1510), 1, aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(1439), 1, + STATE(1512), 1, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + STATE(1629), 1, sym_enumerator, - ACTIONS(3823), 2, + ACTIONS(3906), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(1915), 3, + STATE(2144), 3, sym_preproc_else_in_enumerator_list_no_comma, sym_preproc_elif_in_enumerator_list_no_comma, sym_preproc_elifdef_in_enumerator_list_no_comma, - STATE(1916), 3, + STATE(2156), 3, sym_preproc_else_in_enumerator_list, sym_preproc_elif_in_enumerator_list, sym_preproc_elifdef_in_enumerator_list, - [56542] = 7, + [62748] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(39), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3772), 1, - anon_sym_LPAREN2, - ACTIONS(3799), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - STATE(1307), 1, - sym_parameter_list, - STATE(1297), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(3831), 9, + ACTIONS(3938), 13, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, anon_sym___scanf, @@ -109048,18 +123407,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___read_mostly, anon_sym___must_hold, anon_sym___ro_after_init, - anon_sym___init, - [56573] = 5, + anon_sym___noreturn, + anon_sym___cold, + anon_sym_LBRACK_LBRACK, + [62770] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(39), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3835), 1, + ACTIONS(3944), 1, anon_sym_LBRACK, - STATE(1201), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(3833), 11, + ACTIONS(3942), 13, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -109070,13 +123426,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___read_mostly, anon_sym___must_hold, anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + anon_sym_LBRACK_LBRACK, + [62792] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1835), 1, + anon_sym___based, + ACTIONS(3262), 1, + sym_identifier, + ACTIONS(3264), 1, + anon_sym_LPAREN2, + ACTIONS(3266), 1, + anon_sym_STAR, + STATE(1549), 1, + sym_macro_modifier, + STATE(1628), 1, + sym__field_declarator, + STATE(2274), 1, + sym_ms_based_modifier, + ACTIONS(43), 2, anon_sym___init, - [56600] = 3, + anon_sym___exit, + STATE(1438), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + [62828] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3839), 1, + ACTIONS(3478), 2, + anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(3480), 2, + anon_sym___scanf, + anon_sym___printf, + STATE(1455), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + ACTIONS(3482), 4, + anon_sym___read_mostly, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + ACTIONS(3545), 4, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_asm, + anon_sym___asm__, + [62856] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3948), 1, anon_sym_LBRACK, - ACTIONS(3837), 13, + ACTIONS(3946), 13, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -109087,15 +123493,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___read_mostly, anon_sym___must_hold, anon_sym___ro_after_init, - anon_sym___init, + anon_sym___noreturn, + anon_sym___cold, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - [56622] = 3, + [62878] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3843), 1, + ACTIONS(3952), 1, anon_sym_LBRACK, - ACTIONS(3841), 13, + ACTIONS(3950), 13, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -109106,15 +123512,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___read_mostly, anon_sym___must_hold, anon_sym___ro_after_init, - anon_sym___init, + anon_sym___noreturn, + anon_sym___cold, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - [56644] = 3, + [62900] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3847), 1, + ACTIONS(3956), 1, anon_sym_LBRACK, - ACTIONS(3845), 13, + ACTIONS(3954), 13, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -109125,15 +123531,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___read_mostly, anon_sym___must_hold, anon_sym___ro_after_init, - anon_sym___init, + anon_sym___noreturn, + anon_sym___cold, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - [56666] = 3, + [62922] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1831), 1, + anon_sym_LPAREN2, + ACTIONS(1833), 1, + anon_sym_STAR, + ACTIONS(1835), 1, + anon_sym___based, + ACTIONS(3136), 1, + sym_identifier, + STATE(1519), 1, + sym_macro_modifier, + STATE(1632), 1, + sym__declarator, + STATE(2174), 1, + sym_ms_based_modifier, + ACTIONS(43), 2, + anon_sym___init, + anon_sym___exit, + STATE(1569), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + [62958] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3851), 1, + ACTIONS(3960), 1, anon_sym_LBRACK, - ACTIONS(3849), 13, + ACTIONS(3958), 13, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -109144,15 +123576,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___read_mostly, anon_sym___must_hold, anon_sym___ro_after_init, - anon_sym___init, + anon_sym___noreturn, + anon_sym___cold, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - [56688] = 3, + [62980] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3855), 1, + ACTIONS(3964), 1, anon_sym_LBRACK, - ACTIONS(3853), 13, + ACTIONS(3962), 13, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -109163,15 +123595,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___read_mostly, anon_sym___must_hold, anon_sym___ro_after_init, - anon_sym___init, + anon_sym___noreturn, + anon_sym___cold, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - [56710] = 3, + [63002] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1831), 1, + anon_sym_LPAREN2, + ACTIONS(1833), 1, + anon_sym_STAR, + ACTIONS(1835), 1, + anon_sym___based, + ACTIONS(3136), 1, + sym_identifier, + STATE(1541), 1, + sym_macro_modifier, + STATE(1604), 1, + sym__declarator, + STATE(2174), 1, + sym_ms_based_modifier, + ACTIONS(43), 2, + anon_sym___init, + anon_sym___exit, + STATE(1569), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + [63038] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3859), 1, + ACTIONS(3968), 1, anon_sym_LBRACK, - ACTIONS(3857), 13, + ACTIONS(3966), 13, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -109182,34 +123640,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___read_mostly, anon_sym___must_hold, anon_sym___ro_after_init, - anon_sym___init, + anon_sym___noreturn, + anon_sym___cold, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - [56732] = 3, + [63060] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3863), 1, - anon_sym_LBRACK, - ACTIONS(3861), 13, + ACTIONS(3972), 2, + anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(3975), 2, + anon_sym___scanf, + anon_sym___printf, + STATE(1455), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + ACTIONS(3970), 4, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(3978), 4, + anon_sym___read_mostly, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + [63088] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3478), 2, anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(3480), 2, anon_sym___scanf, anon_sym___printf, + STATE(1455), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + ACTIONS(3482), 4, anon_sym___read_mostly, - anon_sym___must_hold, anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + ACTIONS(3981), 4, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_asm, + anon_sym___asm__, + [63116] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1831), 1, + anon_sym_LPAREN2, + ACTIONS(1833), 1, + anon_sym_STAR, + ACTIONS(1835), 1, + anon_sym___based, + ACTIONS(3136), 1, + sym_identifier, + STATE(1526), 1, + sym_macro_modifier, + STATE(1595), 1, + sym__declarator, + STATE(2174), 1, + sym_ms_based_modifier, + ACTIONS(43), 2, anon_sym___init, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - [56754] = 3, + anon_sym___exit, + STATE(1569), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + [63152] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3867), 1, + ACTIONS(3985), 1, anon_sym_LBRACK, - ACTIONS(3865), 13, + ACTIONS(3983), 13, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -109220,15 +123729,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___read_mostly, anon_sym___must_hold, anon_sym___ro_after_init, - anon_sym___init, + anon_sym___noreturn, + anon_sym___cold, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - [56776] = 3, + [63174] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(41), 1, + anon_sym___declspec, + ACTIONS(2406), 1, + anon_sym_LBRACE, + ACTIONS(3987), 1, + sym_identifier, + STATE(808), 1, + sym_field_declaration_list, + STATE(1707), 1, + sym_attribute_specifier, + STATE(1861), 1, + sym_ms_declspec_modifier, + ACTIONS(33), 2, + anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(35), 2, + anon_sym___scanf, + anon_sym___printf, + ACTIONS(37), 4, + anon_sym___read_mostly, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + [63210] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3871), 1, + ACTIONS(3991), 1, anon_sym_LBRACK, - ACTIONS(3869), 13, + ACTIONS(3989), 13, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -109239,15 +123774,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___read_mostly, anon_sym___must_hold, anon_sym___ro_after_init, - anon_sym___init, + anon_sym___noreturn, + anon_sym___cold, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - [56798] = 3, + [63232] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1831), 1, + anon_sym_LPAREN2, + ACTIONS(1833), 1, + anon_sym_STAR, + ACTIONS(1835), 1, + anon_sym___based, + ACTIONS(3136), 1, + sym_identifier, + STATE(1504), 1, + sym_macro_modifier, + STATE(1618), 1, + sym__declarator, + STATE(2174), 1, + sym_ms_based_modifier, + ACTIONS(43), 2, + anon_sym___init, + anon_sym___exit, + STATE(1569), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + [63268] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1831), 1, + anon_sym_LPAREN2, + ACTIONS(1833), 1, + anon_sym_STAR, + ACTIONS(1835), 1, + anon_sym___based, + ACTIONS(3136), 1, + sym_identifier, + STATE(1530), 1, + sym_macro_modifier, + STATE(1607), 1, + sym__declarator, + STATE(2174), 1, + sym_ms_based_modifier, + ACTIONS(43), 2, + anon_sym___init, + anon_sym___exit, + STATE(1569), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + [63304] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3875), 1, + ACTIONS(3995), 1, anon_sym_LBRACK, - ACTIONS(3873), 12, + ACTIONS(3993), 13, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -109258,1248 +123845,1988 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___read_mostly, anon_sym___must_hold, anon_sym___ro_after_init, - anon_sym___init, + anon_sym___noreturn, + anon_sym___cold, + anon_sym_LBRACK_LBRACK, + [63326] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(39), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3825), 1, + anon_sym_LPAREN2, + ACTIONS(3999), 1, + anon_sym_LBRACK, + STATE(1255), 1, + sym_parameter_list, + STATE(1492), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(3997), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + [63355] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(39), 1, anon_sym_LBRACK_LBRACK, - [56819] = 7, + ACTIONS(3825), 1, + anon_sym_LPAREN2, + ACTIONS(3999), 1, + anon_sym_LBRACK, + STATE(1255), 1, + sym_parameter_list, + STATE(1492), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(4001), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + [63384] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1831), 1, + anon_sym_LPAREN2, + ACTIONS(1833), 1, + anon_sym_STAR, + ACTIONS(1835), 1, + anon_sym___based, + ACTIONS(3493), 1, + sym_identifier, + STATE(1569), 1, + sym_function_declarator, + STATE(1654), 1, + sym__declaration_declarator, + STATE(1662), 1, + sym__declarator, + STATE(1739), 1, + sym__function_declaration_declarator, + STATE(2174), 1, + sym_ms_based_modifier, + STATE(1581), 4, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_array_declarator, + [63421] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1831), 1, + anon_sym_LPAREN2, + ACTIONS(1833), 1, + anon_sym_STAR, + ACTIONS(1835), 1, + anon_sym___based, + ACTIONS(3493), 1, + sym_identifier, + STATE(1569), 1, + sym_function_declarator, + STATE(1662), 1, + sym__declarator, + STATE(1671), 1, + sym__declaration_declarator, + STATE(1739), 1, + sym__function_declaration_declarator, + STATE(2174), 1, + sym_ms_based_modifier, + STATE(1581), 4, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_array_declarator, + [63458] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1831), 1, + anon_sym_LPAREN2, + ACTIONS(1833), 1, + anon_sym_STAR, + ACTIONS(1835), 1, + anon_sym___based, + ACTIONS(3493), 1, + sym_identifier, + STATE(1569), 1, + sym_function_declarator, + STATE(1655), 1, + sym__declaration_declarator, + STATE(1662), 1, + sym__declarator, + STATE(1739), 1, + sym__function_declaration_declarator, + STATE(2174), 1, + sym_ms_based_modifier, + STATE(1581), 4, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_array_declarator, + [63495] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(39), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3772), 1, + ACTIONS(1831), 1, anon_sym_LPAREN2, - ACTIONS(3879), 1, - anon_sym_LBRACK, - STATE(1119), 1, - sym_parameter_list, - STATE(1338), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(3877), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - [56848] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(17), 1, - sym_preproc_directive, - ACTIONS(3881), 1, + ACTIONS(1833), 1, + anon_sym_STAR, + ACTIONS(1835), 1, + anon_sym___based, + ACTIONS(3493), 1, sym_identifier, - ACTIONS(3883), 1, - aux_sym_preproc_if_token1, - ACTIONS(3887), 1, - anon_sym_RBRACE, - ACTIONS(3885), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - STATE(1759), 2, - sym_preproc_call, - sym_enumerator, - STATE(1873), 2, - sym_preproc_if_in_enumerator_list_no_comma, - sym_preproc_ifdef_in_enumerator_list_no_comma, - STATE(1311), 3, - sym_preproc_if_in_enumerator_list, - sym_preproc_ifdef_in_enumerator_list, - aux_sym_enumerator_list_repeat1, - [56881] = 3, + STATE(1569), 1, + sym_function_declarator, + STATE(1606), 1, + sym__declarator, + STATE(1645), 1, + sym__declaration_declarator, + STATE(1739), 1, + sym__function_declaration_declarator, + STATE(2174), 1, + sym_ms_based_modifier, + STATE(1581), 4, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_array_declarator, + [63532] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(3891), 1, - anon_sym_LBRACK, - ACTIONS(3889), 12, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(1831), 1, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym___scanf, - anon_sym___printf, - anon_sym___read_mostly, - anon_sym___must_hold, - anon_sym___ro_after_init, - anon_sym___init, - anon_sym_LBRACK_LBRACK, - [56902] = 9, + ACTIONS(1833), 1, + anon_sym_STAR, + ACTIONS(1835), 1, + anon_sym___based, + ACTIONS(3493), 1, + sym_identifier, + STATE(1569), 1, + sym_function_declarator, + STATE(1662), 1, + sym__declarator, + STATE(1687), 1, + sym__declaration_declarator, + STATE(1739), 1, + sym__function_declaration_declarator, + STATE(2174), 1, + sym_ms_based_modifier, + STATE(1581), 4, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_array_declarator, + [63569] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(17), 1, sym_preproc_directive, - ACTIONS(3881), 1, + ACTIONS(4003), 1, sym_identifier, - ACTIONS(3883), 1, + ACTIONS(4005), 1, aux_sym_preproc_if_token1, - ACTIONS(3893), 1, + ACTIONS(4009), 1, anon_sym_RBRACE, - ACTIONS(3885), 2, + ACTIONS(4007), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(1777), 2, + STATE(2015), 2, sym_preproc_call, sym_enumerator, - STATE(2033), 2, + STATE(2272), 2, sym_preproc_if_in_enumerator_list_no_comma, sym_preproc_ifdef_in_enumerator_list_no_comma, - STATE(1347), 3, + STATE(1538), 3, sym_preproc_if_in_enumerator_list, sym_preproc_ifdef_in_enumerator_list, aux_sym_enumerator_list_repeat1, - [56935] = 11, + [63602] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1797), 1, - anon_sym___based, - ACTIONS(3219), 1, + ACTIONS(1831), 1, anon_sym_LPAREN2, - ACTIONS(3221), 1, + ACTIONS(1833), 1, anon_sym_STAR, - ACTIONS(3448), 1, + ACTIONS(1835), 1, + anon_sym___based, + ACTIONS(3493), 1, sym_identifier, - STATE(1387), 1, + STATE(1569), 1, sym_function_declarator, - STATE(1472), 1, - sym__declaration_declarator, - STATE(1475), 1, + STATE(1599), 1, sym__declarator, - STATE(1541), 1, + STATE(1642), 1, + sym__declaration_declarator, + STATE(1739), 1, sym__function_declaration_declarator, - STATE(2016), 1, + STATE(2174), 1, sym_ms_based_modifier, - STATE(1401), 4, + STATE(1581), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_array_declarator, - [56972] = 3, + [63639] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3897), 1, + ACTIONS(39), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3825), 1, + anon_sym_LPAREN2, + ACTIONS(3999), 1, anon_sym_LBRACK, - ACTIONS(3895), 12, + STATE(1255), 1, + sym_parameter_list, + STATE(1492), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(4011), 7, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym___attribute__, - anon_sym___scanf, - anon_sym___printf, - anon_sym___read_mostly, - anon_sym___must_hold, - anon_sym___ro_after_init, - anon_sym___init, - anon_sym_LBRACK_LBRACK, - [56993] = 11, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + [63668] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1797), 1, - anon_sym___based, - ACTIONS(3219), 1, + ACTIONS(1831), 1, anon_sym_LPAREN2, - ACTIONS(3221), 1, + ACTIONS(1833), 1, anon_sym_STAR, - ACTIONS(3448), 1, + ACTIONS(1835), 1, + anon_sym___based, + ACTIONS(3493), 1, sym_identifier, - STATE(1387), 1, + STATE(1569), 1, sym_function_declarator, - STATE(1460), 1, - sym__declaration_declarator, - STATE(1475), 1, + STATE(1662), 1, sym__declarator, - STATE(1541), 1, + STATE(1664), 1, + sym__declaration_declarator, + STATE(1739), 1, sym__function_declaration_declarator, - STATE(2016), 1, + STATE(2174), 1, sym_ms_based_modifier, - STATE(1401), 4, + STATE(1581), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_array_declarator, - [57030] = 11, + [63705] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1797), 1, - anon_sym___based, - ACTIONS(3219), 1, + ACTIONS(1831), 1, anon_sym_LPAREN2, - ACTIONS(3221), 1, + ACTIONS(1833), 1, anon_sym_STAR, - ACTIONS(3448), 1, + ACTIONS(1835), 1, + anon_sym___based, + ACTIONS(3493), 1, sym_identifier, - STATE(1387), 1, + STATE(1569), 1, sym_function_declarator, - STATE(1451), 1, - sym__declaration_declarator, - STATE(1475), 1, + STATE(1619), 1, sym__declarator, - STATE(1541), 1, + STATE(1687), 1, + sym__declaration_declarator, + STATE(1739), 1, sym__function_declaration_declarator, - STATE(2016), 1, + STATE(2174), 1, sym_ms_based_modifier, - STATE(1401), 4, + STATE(1581), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_array_declarator, - [57067] = 6, + [63742] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3413), 2, - anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(3415), 2, - anon_sym___scanf, - anon_sym___printf, - STATE(1323), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - ACTIONS(3417), 3, - anon_sym___read_mostly, - anon_sym___ro_after_init, - anon_sym___init, - ACTIONS(3493), 4, + ACTIONS(39), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3825), 1, + anon_sym_LPAREN2, + ACTIONS(3999), 1, + anon_sym_LBRACK, + STATE(1255), 1, + sym_parameter_list, + STATE(1492), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(4013), 7, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - [57094] = 3, + [63771] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(3901), 1, - anon_sym_LBRACK, - ACTIONS(3899), 12, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(1831), 1, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym___scanf, - anon_sym___printf, - anon_sym___read_mostly, - anon_sym___must_hold, - anon_sym___ro_after_init, - anon_sym___init, - anon_sym_LBRACK_LBRACK, - [57115] = 11, + ACTIONS(1833), 1, + anon_sym_STAR, + ACTIONS(1835), 1, + anon_sym___based, + ACTIONS(3493), 1, + sym_identifier, + STATE(1569), 1, + sym_function_declarator, + STATE(1662), 1, + sym__declarator, + STATE(1678), 1, + sym__declaration_declarator, + STATE(1739), 1, + sym__function_declaration_declarator, + STATE(2174), 1, + sym_ms_based_modifier, + STATE(1581), 4, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_array_declarator, + [63808] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1797), 1, - anon_sym___based, - ACTIONS(3219), 1, + ACTIONS(1831), 1, anon_sym_LPAREN2, - ACTIONS(3221), 1, + ACTIONS(1833), 1, anon_sym_STAR, - ACTIONS(3448), 1, + ACTIONS(1835), 1, + anon_sym___based, + ACTIONS(3493), 1, sym_identifier, - STATE(1387), 1, + STATE(1569), 1, sym_function_declarator, - STATE(1475), 1, + STATE(1662), 1, sym__declarator, - STATE(1490), 1, + STATE(1695), 1, sym__declaration_declarator, - STATE(1541), 1, + STATE(1739), 1, sym__function_declaration_declarator, - STATE(2016), 1, + STATE(2174), 1, sym_ms_based_modifier, - STATE(1401), 4, + STATE(1581), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_array_declarator, - [57152] = 3, + [63845] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(3905), 1, - anon_sym_LBRACK, - ACTIONS(3903), 12, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(1831), 1, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym___scanf, - anon_sym___printf, - anon_sym___read_mostly, - anon_sym___must_hold, - anon_sym___ro_after_init, - anon_sym___init, - anon_sym_LBRACK_LBRACK, - [57173] = 3, + ACTIONS(1833), 1, + anon_sym_STAR, + ACTIONS(1835), 1, + anon_sym___based, + ACTIONS(3493), 1, + sym_identifier, + STATE(1569), 1, + sym_function_declarator, + STATE(1616), 1, + sym__declarator, + STATE(1671), 1, + sym__declaration_declarator, + STATE(1739), 1, + sym__function_declaration_declarator, + STATE(2174), 1, + sym_ms_based_modifier, + STATE(1581), 4, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_array_declarator, + [63882] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(3909), 1, - anon_sym_LBRACK, - ACTIONS(3907), 12, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(1831), 1, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym___scanf, - anon_sym___printf, - anon_sym___read_mostly, - anon_sym___must_hold, - anon_sym___ro_after_init, - anon_sym___init, - anon_sym_LBRACK_LBRACK, - [57194] = 3, + ACTIONS(1833), 1, + anon_sym_STAR, + ACTIONS(1835), 1, + anon_sym___based, + ACTIONS(3493), 1, + sym_identifier, + STATE(1569), 1, + sym_function_declarator, + STATE(1596), 1, + sym__declarator, + STATE(1678), 1, + sym__declaration_declarator, + STATE(1739), 1, + sym__function_declaration_declarator, + STATE(2174), 1, + sym_ms_based_modifier, + STATE(1581), 4, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_array_declarator, + [63919] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(3913), 1, - anon_sym_LBRACK, - ACTIONS(3911), 12, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(1831), 1, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym___scanf, - anon_sym___printf, - anon_sym___read_mostly, - anon_sym___must_hold, - anon_sym___ro_after_init, - anon_sym___init, - anon_sym_LBRACK_LBRACK, - [57215] = 3, + ACTIONS(1833), 1, + anon_sym_STAR, + ACTIONS(1835), 1, + anon_sym___based, + ACTIONS(3493), 1, + sym_identifier, + STATE(1569), 1, + sym_function_declarator, + STATE(1662), 1, + sym__declarator, + STATE(1685), 1, + sym__declaration_declarator, + STATE(1739), 1, + sym__function_declaration_declarator, + STATE(2174), 1, + sym_ms_based_modifier, + STATE(1581), 4, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_array_declarator, + [63956] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(3917), 1, - anon_sym_LBRACK, - ACTIONS(3915), 12, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(1831), 1, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym___scanf, - anon_sym___printf, - anon_sym___read_mostly, - anon_sym___must_hold, - anon_sym___ro_after_init, - anon_sym___init, - anon_sym_LBRACK_LBRACK, - [57236] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3921), 2, - anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(3924), 2, - anon_sym___scanf, - anon_sym___printf, - STATE(1323), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - ACTIONS(3927), 3, - anon_sym___read_mostly, - anon_sym___ro_after_init, - anon_sym___init, - ACTIONS(3919), 4, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_asm, - anon_sym___asm__, - [57263] = 11, + ACTIONS(1833), 1, + anon_sym_STAR, + ACTIONS(1835), 1, + anon_sym___based, + ACTIONS(3493), 1, + sym_identifier, + STATE(1569), 1, + sym_function_declarator, + STATE(1662), 1, + sym__declarator, + STATE(1701), 1, + sym__declaration_declarator, + STATE(1739), 1, + sym__function_declaration_declarator, + STATE(2174), 1, + sym_ms_based_modifier, + STATE(1581), 4, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_array_declarator, + [63993] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1797), 1, - anon_sym___based, - ACTIONS(3219), 1, + ACTIONS(1831), 1, anon_sym_LPAREN2, - ACTIONS(3221), 1, + ACTIONS(1833), 1, anon_sym_STAR, - ACTIONS(3448), 1, + ACTIONS(1835), 1, + anon_sym___based, + ACTIONS(3493), 1, sym_identifier, - STATE(1387), 1, + STATE(1569), 1, sym_function_declarator, - STATE(1434), 1, + STATE(1593), 1, sym__declarator, - STATE(1464), 1, + STATE(1659), 1, sym__declaration_declarator, - STATE(1541), 1, + STATE(1739), 1, sym__function_declaration_declarator, - STATE(2016), 1, + STATE(2174), 1, sym_ms_based_modifier, - STATE(1401), 4, + STATE(1581), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_array_declarator, - [57300] = 3, + [64030] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(3932), 1, - anon_sym_LBRACK, - ACTIONS(3930), 12, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(1831), 1, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym___scanf, - anon_sym___printf, - anon_sym___read_mostly, - anon_sym___must_hold, - anon_sym___ro_after_init, - anon_sym___init, - anon_sym_LBRACK_LBRACK, - [57321] = 11, + ACTIONS(1833), 1, + anon_sym_STAR, + ACTIONS(1835), 1, + anon_sym___based, + ACTIONS(3493), 1, + sym_identifier, + STATE(1569), 1, + sym_function_declarator, + STATE(1642), 1, + sym__declaration_declarator, + STATE(1662), 1, + sym__declarator, + STATE(1739), 1, + sym__function_declaration_declarator, + STATE(2174), 1, + sym_ms_based_modifier, + STATE(1581), 4, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_array_declarator, + [64067] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1797), 1, - anon_sym___based, - ACTIONS(3219), 1, + ACTIONS(1831), 1, anon_sym_LPAREN2, - ACTIONS(3221), 1, + ACTIONS(1833), 1, anon_sym_STAR, - ACTIONS(3448), 1, + ACTIONS(1835), 1, + anon_sym___based, + ACTIONS(3493), 1, sym_identifier, - STATE(1387), 1, + STATE(1569), 1, sym_function_declarator, - STATE(1475), 1, + STATE(1603), 1, sym__declarator, - STATE(1482), 1, + STATE(1655), 1, sym__declaration_declarator, - STATE(1541), 1, + STATE(1739), 1, sym__function_declaration_declarator, - STATE(2016), 1, + STATE(2174), 1, sym_ms_based_modifier, - STATE(1401), 4, + STATE(1581), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_array_declarator, - [57358] = 7, + [64104] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(39), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3772), 1, + ACTIONS(1831), 1, anon_sym_LPAREN2, - ACTIONS(3879), 1, - anon_sym_LBRACK, - STATE(1119), 1, - sym_parameter_list, - STATE(1338), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(3934), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - [57387] = 11, + ACTIONS(1833), 1, + anon_sym_STAR, + ACTIONS(1835), 1, + anon_sym___based, + ACTIONS(3493), 1, + sym_identifier, + STATE(1569), 1, + sym_function_declarator, + STATE(1646), 1, + sym__declaration_declarator, + STATE(1662), 1, + sym__declarator, + STATE(1739), 1, + sym__function_declaration_declarator, + STATE(2174), 1, + sym_ms_based_modifier, + STATE(1581), 4, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_array_declarator, + [64141] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1797), 1, - anon_sym___based, - ACTIONS(3219), 1, + ACTIONS(1831), 1, anon_sym_LPAREN2, - ACTIONS(3221), 1, + ACTIONS(1833), 1, anon_sym_STAR, - ACTIONS(3448), 1, + ACTIONS(1835), 1, + anon_sym___based, + ACTIONS(3493), 1, sym_identifier, - STATE(1387), 1, + STATE(1569), 1, sym_function_declarator, - STATE(1454), 1, + STATE(1659), 1, sym__declaration_declarator, - STATE(1475), 1, + STATE(1662), 1, sym__declarator, - STATE(1541), 1, + STATE(1739), 1, sym__function_declaration_declarator, - STATE(2016), 1, + STATE(2174), 1, sym_ms_based_modifier, - STATE(1401), 4, + STATE(1581), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_array_declarator, - [57424] = 11, + [64178] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1797), 1, + ACTIONS(1831), 1, + anon_sym_LPAREN2, + ACTIONS(1833), 1, + anon_sym_STAR, + ACTIONS(1835), 1, anon_sym___based, - ACTIONS(3219), 1, + ACTIONS(3493), 1, + sym_identifier, + STATE(1569), 1, + sym_function_declarator, + STATE(1661), 1, + sym__declaration_declarator, + STATE(1662), 1, + sym__declarator, + STATE(1739), 1, + sym__function_declaration_declarator, + STATE(2174), 1, + sym_ms_based_modifier, + STATE(1581), 4, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_array_declarator, + [64215] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1831), 1, anon_sym_LPAREN2, - ACTIONS(3221), 1, + ACTIONS(1833), 1, anon_sym_STAR, - ACTIONS(3448), 1, + ACTIONS(1835), 1, + anon_sym___based, + ACTIONS(3493), 1, sym_identifier, - STATE(1387), 1, + STATE(1569), 1, sym_function_declarator, - STATE(1464), 1, + STATE(1645), 1, sym__declaration_declarator, - STATE(1475), 1, + STATE(1662), 1, sym__declarator, - STATE(1541), 1, + STATE(1739), 1, sym__function_declaration_declarator, - STATE(2016), 1, + STATE(2174), 1, sym_ms_based_modifier, - STATE(1401), 4, + STATE(1581), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_array_declarator, - [57461] = 6, + [64252] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(3413), 2, - anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(3415), 2, - anon_sym___scanf, - anon_sym___printf, - STATE(1323), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - ACTIONS(3417), 3, - anon_sym___read_mostly, - anon_sym___ro_after_init, - anon_sym___init, - ACTIONS(3936), 4, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_asm, - anon_sym___asm__, - [57488] = 7, + ACTIONS(1831), 1, + anon_sym_LPAREN2, + ACTIONS(1833), 1, + anon_sym_STAR, + ACTIONS(1835), 1, + anon_sym___based, + ACTIONS(3493), 1, + sym_identifier, + STATE(1569), 1, + sym_function_declarator, + STATE(1613), 1, + sym__declarator, + STATE(1661), 1, + sym__declaration_declarator, + STATE(1739), 1, + sym__function_declaration_declarator, + STATE(2174), 1, + sym_ms_based_modifier, + STATE(1581), 4, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_array_declarator, + [64289] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17), 1, + sym_preproc_directive, + ACTIONS(4003), 1, + sym_identifier, + ACTIONS(4005), 1, + aux_sym_preproc_if_token1, + ACTIONS(4015), 1, + anon_sym_RBRACE, + ACTIONS(4007), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(1985), 2, + sym_preproc_call, + sym_enumerator, + STATE(2064), 2, + sym_preproc_if_in_enumerator_list_no_comma, + sym_preproc_ifdef_in_enumerator_list_no_comma, + STATE(1471), 3, + sym_preproc_if_in_enumerator_list, + sym_preproc_ifdef_in_enumerator_list, + aux_sym_enumerator_list_repeat1, + [64322] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(39), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3772), 1, - anon_sym_LPAREN2, - ACTIONS(3879), 1, + ACTIONS(4019), 1, anon_sym_LBRACK, - STATE(1119), 1, - sym_parameter_list, - STATE(1338), 2, + STATE(1272), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3938), 7, + ACTIONS(4017), 8, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - [57517] = 10, + [64346] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1831), 1, + anon_sym_LPAREN2, + ACTIONS(1833), 1, + anon_sym_STAR, + ACTIONS(1835), 1, + anon_sym___based, + ACTIONS(3136), 1, + sym_identifier, + STATE(554), 1, + sym__old_style_function_declarator, + STATE(1635), 1, + sym__declarator, + STATE(2174), 1, + sym_ms_based_modifier, + STATE(1569), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + [64378] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1831), 1, + anon_sym_LPAREN2, + ACTIONS(1833), 1, + anon_sym_STAR, + ACTIONS(1835), 1, + anon_sym___based, + ACTIONS(3136), 1, + sym_identifier, + STATE(552), 1, + sym__old_style_function_declarator, + STATE(1635), 1, + sym__declarator, + STATE(2174), 1, + sym_ms_based_modifier, + STATE(1569), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + [64410] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1831), 1, + anon_sym_LPAREN2, + ACTIONS(1833), 1, + anon_sym_STAR, + ACTIONS(1835), 1, + anon_sym___based, + ACTIONS(3136), 1, + sym_identifier, + STATE(584), 1, + sym__old_style_function_declarator, + STATE(1635), 1, + sym__declarator, + STATE(2174), 1, + sym_ms_based_modifier, + STATE(1569), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + [64442] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1831), 1, + anon_sym_LPAREN2, + ACTIONS(1833), 1, + anon_sym_STAR, + ACTIONS(1835), 1, + anon_sym___based, + ACTIONS(3136), 1, + sym_identifier, + STATE(567), 1, + sym__old_style_function_declarator, + STATE(1635), 1, + sym__declarator, + STATE(2174), 1, + sym_ms_based_modifier, + STATE(1569), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + [64474] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(41), 1, - anon_sym___declspec, - ACTIONS(2439), 1, - anon_sym_LBRACE, - ACTIONS(3940), 1, + ACTIONS(1831), 1, + anon_sym_LPAREN2, + ACTIONS(1833), 1, + anon_sym_STAR, + ACTIONS(1835), 1, + anon_sym___based, + ACTIONS(3136), 1, sym_identifier, - STATE(713), 1, - sym_field_declaration_list, - STATE(1497), 1, - sym_attribute_specifier, - STATE(1639), 1, - sym_ms_declspec_modifier, - ACTIONS(33), 2, - anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(35), 2, - anon_sym___scanf, - anon_sym___printf, - ACTIONS(37), 3, - anon_sym___read_mostly, - anon_sym___ro_after_init, - anon_sym___init, - [57552] = 7, + STATE(606), 1, + sym__old_style_function_declarator, + STATE(1635), 1, + sym__declarator, + STATE(2174), 1, + sym_ms_based_modifier, + STATE(1569), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + [64506] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(39), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3772), 1, + ACTIONS(1831), 1, anon_sym_LPAREN2, - ACTIONS(3879), 1, - anon_sym_LBRACK, - STATE(1119), 1, - sym_parameter_list, - STATE(1338), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(3942), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - [57581] = 11, + ACTIONS(1833), 1, + anon_sym_STAR, + ACTIONS(1835), 1, + anon_sym___based, + ACTIONS(3136), 1, + sym_identifier, + STATE(585), 1, + sym__old_style_function_declarator, + STATE(1635), 1, + sym__declarator, + STATE(2174), 1, + sym_ms_based_modifier, + STATE(1569), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + [64538] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1797), 1, - anon_sym___based, - ACTIONS(3219), 1, + ACTIONS(1831), 1, anon_sym_LPAREN2, - ACTIONS(3221), 1, + ACTIONS(1833), 1, anon_sym_STAR, - ACTIONS(3448), 1, + ACTIONS(1835), 1, + anon_sym___based, + ACTIONS(3136), 1, sym_identifier, - STATE(1387), 1, - sym_function_declarator, - STATE(1419), 1, + STATE(578), 1, + sym__old_style_function_declarator, + STATE(1635), 1, sym__declarator, - STATE(1460), 1, - sym__declaration_declarator, - STATE(1541), 1, - sym__function_declaration_declarator, - STATE(2016), 1, + STATE(2174), 1, sym_ms_based_modifier, - STATE(1401), 4, + STATE(1569), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, + sym_function_declarator, sym_array_declarator, - [57618] = 3, + [64570] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3946), 1, - anon_sym_LBRACK, - ACTIONS(3944), 12, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2010), 1, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym___scanf, - anon_sym___printf, - anon_sym___read_mostly, - anon_sym___must_hold, - anon_sym___ro_after_init, + ACTIONS(2012), 1, + anon_sym_STAR, + ACTIONS(3144), 1, + anon_sym_LBRACK, + STATE(1583), 1, + sym_macro_modifier, + STATE(1691), 1, + sym_parameter_list, + STATE(1722), 1, + sym__abstract_declarator, + ACTIONS(4021), 2, anon_sym___init, - anon_sym_LBRACK_LBRACK, - [57639] = 11, + anon_sym___exit, + STATE(1717), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + [64602] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1797), 1, - anon_sym___based, - ACTIONS(3219), 1, + ACTIONS(1831), 1, anon_sym_LPAREN2, - ACTIONS(3221), 1, + ACTIONS(1833), 1, anon_sym_STAR, - ACTIONS(3448), 1, + ACTIONS(1835), 1, + anon_sym___based, + ACTIONS(3136), 1, sym_identifier, - STATE(1387), 1, - sym_function_declarator, - STATE(1426), 1, + STATE(594), 1, + sym__old_style_function_declarator, + STATE(1635), 1, sym__declarator, - STATE(1454), 1, - sym__declaration_declarator, - STATE(1541), 1, - sym__function_declaration_declarator, - STATE(2016), 1, + STATE(2174), 1, sym_ms_based_modifier, - STATE(1401), 4, + STATE(1569), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, + sym_function_declarator, sym_array_declarator, - [57676] = 11, + [64634] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1797), 1, + ACTIONS(4003), 1, + sym_identifier, + ACTIONS(4023), 1, + aux_sym_preproc_if_token2, + ACTIONS(4025), 1, + aux_sym_preproc_else_token1, + ACTIONS(4027), 1, + aux_sym_preproc_elif_token1, + STATE(1615), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(2109), 1, + sym_enumerator, + ACTIONS(4029), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(2227), 3, + sym_preproc_else_in_enumerator_list, + sym_preproc_elif_in_enumerator_list, + sym_preproc_elifdef_in_enumerator_list, + [64665] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1835), 1, anon_sym___based, - ACTIONS(3219), 1, + ACTIONS(3262), 1, + sym_identifier, + ACTIONS(3264), 1, anon_sym_LPAREN2, - ACTIONS(3221), 1, + ACTIONS(3266), 1, anon_sym_STAR, - ACTIONS(3448), 1, + STATE(1394), 1, + sym__field_declarator, + STATE(2274), 1, + sym_ms_based_modifier, + STATE(1438), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + [64694] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1831), 1, + anon_sym_LPAREN2, + ACTIONS(1833), 1, + anon_sym_STAR, + ACTIONS(1835), 1, + anon_sym___based, + ACTIONS(3136), 1, sym_identifier, - STATE(1387), 1, - sym_function_declarator, - STATE(1428), 1, + STATE(1620), 1, sym__declarator, - STATE(1472), 1, - sym__declaration_declarator, - STATE(1541), 1, - sym__function_declaration_declarator, - STATE(2016), 1, + STATE(2174), 1, sym_ms_based_modifier, - STATE(1401), 4, + STATE(1569), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, + sym_function_declarator, sym_array_declarator, - [57713] = 5, + [64723] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(39), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3950), 1, - anon_sym_LBRACK, - STATE(1201), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(3948), 8, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - [57737] = 9, + ACTIONS(3898), 1, + sym_identifier, + ACTIONS(4031), 1, + aux_sym_preproc_if_token2, + ACTIONS(4033), 1, + aux_sym_preproc_else_token1, + ACTIONS(4035), 1, + aux_sym_preproc_elif_token1, + ACTIONS(4037), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(1614), 2, + sym_enumerator, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + STATE(2177), 3, + sym_preproc_else_in_enumerator_list_no_comma, + sym_preproc_elif_in_enumerator_list_no_comma, + sym_preproc_elifdef_in_enumerator_list_no_comma, + [64752] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3829), 1, - aux_sym_preproc_if_token2, - ACTIONS(3881), 1, + ACTIONS(4003), 1, sym_identifier, - ACTIONS(3952), 1, + ACTIONS(4025), 1, aux_sym_preproc_else_token1, - ACTIONS(3954), 1, + ACTIONS(4027), 1, aux_sym_preproc_elif_token1, - STATE(1353), 1, + ACTIONS(4039), 1, + aux_sym_preproc_if_token2, + STATE(1615), 1, aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(2019), 1, + STATE(2109), 1, sym_enumerator, - ACTIONS(3956), 2, + ACTIONS(4029), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(1916), 3, + STATE(2173), 3, sym_preproc_else_in_enumerator_list, sym_preproc_elif_in_enumerator_list, sym_preproc_elifdef_in_enumerator_list, - [57768] = 9, + [64783] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3881), 1, + ACTIONS(1831), 1, + anon_sym_LPAREN2, + ACTIONS(1833), 1, + anon_sym_STAR, + ACTIONS(1835), 1, + anon_sym___based, + ACTIONS(3136), 1, sym_identifier, - ACTIONS(3952), 1, + STATE(1608), 1, + sym__declarator, + STATE(2174), 1, + sym_ms_based_modifier, + STATE(1569), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + [64812] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4041), 1, + sym_identifier, + STATE(671), 1, + sym_string_literal, + ACTIONS(4043), 2, + anon_sym_RPAREN, + anon_sym_COLON, + STATE(1741), 2, + sym__string, + sym_concatenated_string, + ACTIONS(103), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [64837] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1831), 1, + anon_sym_LPAREN2, + ACTIONS(1833), 1, + anon_sym_STAR, + ACTIONS(1835), 1, + anon_sym___based, + ACTIONS(3136), 1, + sym_identifier, + STATE(1617), 1, + sym__declarator, + STATE(2174), 1, + sym_ms_based_modifier, + STATE(1569), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + [64866] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4003), 1, + sym_identifier, + ACTIONS(4025), 1, aux_sym_preproc_else_token1, - ACTIONS(3954), 1, + ACTIONS(4027), 1, aux_sym_preproc_elif_token1, - ACTIONS(3958), 1, + ACTIONS(4045), 1, aux_sym_preproc_if_token2, - STATE(1423), 1, + STATE(1615), 1, aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(2019), 1, + STATE(2109), 1, sym_enumerator, - ACTIONS(3956), 2, + ACTIONS(4029), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(1779), 3, + STATE(2105), 3, sym_preproc_else_in_enumerator_list, sym_preproc_elif_in_enumerator_list, sym_preproc_elifdef_in_enumerator_list, - [57799] = 8, + [64897] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3815), 1, + ACTIONS(4047), 1, + anon_sym_SEMI, + ACTIONS(3478), 2, + anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(3480), 2, + anon_sym___scanf, + anon_sym___printf, + STATE(1552), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + ACTIONS(3482), 4, + anon_sym___read_mostly, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + [64922] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3898), 1, sym_identifier, - ACTIONS(3960), 1, - aux_sym_preproc_if_token2, - ACTIONS(3962), 1, + ACTIONS(4033), 1, aux_sym_preproc_else_token1, - ACTIONS(3964), 1, + ACTIONS(4035), 1, aux_sym_preproc_elif_token1, - ACTIONS(3966), 2, + ACTIONS(4049), 1, + aux_sym_preproc_if_token2, + ACTIONS(4037), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(1424), 2, + STATE(1614), 2, sym_enumerator, aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(2009), 3, + STATE(2115), 3, sym_preproc_else_in_enumerator_list_no_comma, sym_preproc_elif_in_enumerator_list_no_comma, sym_preproc_elifdef_in_enumerator_list_no_comma, - [57828] = 8, + [64951] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1797), 1, - anon_sym___based, - ACTIONS(3048), 1, - sym_identifier, - ACTIONS(3219), 1, + ACTIONS(1831), 1, anon_sym_LPAREN2, - ACTIONS(3221), 1, + ACTIONS(1833), 1, anon_sym_STAR, - STATE(1437), 1, + ACTIONS(1835), 1, + anon_sym___based, + ACTIONS(3136), 1, + sym_identifier, + STATE(1621), 1, sym__declarator, - STATE(2016), 1, + STATE(2174), 1, sym_ms_based_modifier, - STATE(1387), 5, + STATE(1569), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [57857] = 8, + [64980] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1797), 1, - anon_sym___based, - ACTIONS(3048), 1, + ACTIONS(3898), 1, + sym_identifier, + ACTIONS(4033), 1, + aux_sym_preproc_else_token1, + ACTIONS(4035), 1, + aux_sym_preproc_elif_token1, + ACTIONS(4051), 1, + aux_sym_preproc_if_token2, + ACTIONS(4037), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(1521), 2, + sym_enumerator, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + STATE(2226), 3, + sym_preproc_else_in_enumerator_list_no_comma, + sym_preproc_elif_in_enumerator_list_no_comma, + sym_preproc_elifdef_in_enumerator_list_no_comma, + [65009] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3908), 1, + aux_sym_preproc_if_token2, + ACTIONS(4003), 1, sym_identifier, - ACTIONS(3219), 1, + ACTIONS(4025), 1, + aux_sym_preproc_else_token1, + ACTIONS(4027), 1, + aux_sym_preproc_elif_token1, + STATE(1522), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(2109), 1, + sym_enumerator, + ACTIONS(4029), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(2225), 3, + sym_preproc_else_in_enumerator_list, + sym_preproc_elif_in_enumerator_list, + sym_preproc_elifdef_in_enumerator_list, + [65040] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4053), 1, + anon_sym_SEMI, + ACTIONS(3478), 2, + anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(3480), 2, + anon_sym___scanf, + anon_sym___printf, + STATE(1455), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + ACTIONS(3482), 4, + anon_sym___read_mostly, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + [65065] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4055), 1, + anon_sym_SEMI, + ACTIONS(3478), 2, + anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(3480), 2, + anon_sym___scanf, + anon_sym___printf, + STATE(1520), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + ACTIONS(3482), 4, + anon_sym___read_mostly, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + [65090] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4057), 1, + anon_sym_SEMI, + ACTIONS(3478), 2, + anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(3480), 2, + anon_sym___scanf, + anon_sym___printf, + STATE(1525), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + ACTIONS(3482), 4, + anon_sym___read_mostly, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + [65115] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1831), 1, anon_sym_LPAREN2, - ACTIONS(3221), 1, + ACTIONS(1833), 1, anon_sym_STAR, - STATE(1431), 1, + ACTIONS(1835), 1, + anon_sym___based, + ACTIONS(3136), 1, + sym_identifier, + STATE(1633), 1, sym__declarator, - STATE(2016), 1, + STATE(2174), 1, sym_ms_based_modifier, - STATE(1387), 5, + STATE(1569), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [57886] = 8, + [65144] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3815), 1, + ACTIONS(4059), 1, + anon_sym_SEMI, + ACTIONS(3478), 2, + anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(3480), 2, + anon_sym___scanf, + anon_sym___printf, + STATE(1455), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + ACTIONS(3482), 4, + anon_sym___read_mostly, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + [65169] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3898), 1, sym_identifier, - ACTIONS(3962), 1, + ACTIONS(4033), 1, aux_sym_preproc_else_token1, - ACTIONS(3964), 1, + ACTIONS(4035), 1, aux_sym_preproc_elif_token1, - ACTIONS(3968), 1, + ACTIONS(4061), 1, aux_sym_preproc_if_token2, - ACTIONS(3966), 2, + ACTIONS(4037), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(1349), 2, + STATE(1614), 2, sym_enumerator, aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(1915), 3, + STATE(2255), 3, sym_preproc_else_in_enumerator_list_no_comma, sym_preproc_elif_in_enumerator_list_no_comma, sym_preproc_elifdef_in_enumerator_list_no_comma, - [57915] = 9, + [65198] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3881), 1, + ACTIONS(4003), 1, sym_identifier, - ACTIONS(3952), 1, + ACTIONS(4025), 1, aux_sym_preproc_else_token1, - ACTIONS(3954), 1, + ACTIONS(4027), 1, aux_sym_preproc_elif_token1, - ACTIONS(3970), 1, + ACTIONS(4063), 1, aux_sym_preproc_if_token2, - STATE(1423), 1, + STATE(1615), 1, aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(2019), 1, + STATE(2109), 1, sym_enumerator, - ACTIONS(3956), 2, + ACTIONS(4029), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(2022), 3, + STATE(2254), 3, sym_preproc_else_in_enumerator_list, sym_preproc_elif_in_enumerator_list, sym_preproc_elifdef_in_enumerator_list, - [57946] = 8, + [65229] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4065), 1, + anon_sym_SEMI, + ACTIONS(3478), 2, + anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(3480), 2, + anon_sym___scanf, + anon_sym___printf, + STATE(1535), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + ACTIONS(3482), 4, + anon_sym___read_mostly, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + [65254] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1797), 1, + ACTIONS(1835), 1, anon_sym___based, - ACTIONS(3209), 1, + ACTIONS(3262), 1, sym_identifier, - ACTIONS(3211), 1, + ACTIONS(3264), 1, anon_sym_LPAREN2, - ACTIONS(3213), 1, + ACTIONS(3266), 1, anon_sym_STAR, - STATE(1281), 1, + STATE(1628), 1, sym__field_declarator, - STATE(1875), 1, + STATE(2274), 1, sym_ms_based_modifier, - STATE(1306), 5, + STATE(1438), 5, sym_parenthesized_field_declarator, sym_attributed_field_declarator, sym_pointer_field_declarator, sym_function_field_declarator, sym_array_field_declarator, - [57975] = 8, + [65283] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4067), 1, + anon_sym_SEMI, + ACTIONS(3478), 2, + anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(3480), 2, + anon_sym___scanf, + anon_sym___printf, + STATE(1455), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + ACTIONS(3482), 4, + anon_sym___read_mostly, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + [65308] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3972), 1, + ACTIONS(1831), 1, + anon_sym_LPAREN2, + ACTIONS(1833), 1, + anon_sym_STAR, + ACTIONS(1835), 1, + anon_sym___based, + ACTIONS(3136), 1, sym_identifier, - ACTIONS(3975), 1, - aux_sym_preproc_if_token1, - ACTIONS(3981), 1, - sym_preproc_directive, - ACTIONS(3984), 1, - anon_sym_RBRACE, - ACTIONS(3978), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - STATE(1897), 2, - sym_preproc_call, - sym_enumerator, - STATE(1347), 3, - sym_preproc_if_in_enumerator_list, - sym_preproc_ifdef_in_enumerator_list, - aux_sym_enumerator_list_repeat1, - [58004] = 9, + STATE(1610), 1, + sym__declarator, + STATE(2174), 1, + sym_ms_based_modifier, + STATE(1569), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + [65337] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4069), 1, + anon_sym_SEMI, + ACTIONS(3478), 2, + anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(3480), 2, + anon_sym___scanf, + anon_sym___printf, + STATE(1542), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + ACTIONS(3482), 4, + anon_sym___read_mostly, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + [65362] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3823), 1, + anon_sym_COMMA, + STATE(1547), 1, + aux_sym__field_declaration_declarator_repeat1, + ACTIONS(4071), 9, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym___scanf, + anon_sym___printf, + anon_sym___read_mostly, + anon_sym___must_hold, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + [65383] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4073), 1, + anon_sym_SEMI, + ACTIONS(3478), 2, + anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(3480), 2, + anon_sym___scanf, + anon_sym___printf, + STATE(1455), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + ACTIONS(3482), 4, + anon_sym___read_mostly, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + [65408] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3881), 1, + ACTIONS(1831), 1, + anon_sym_LPAREN2, + ACTIONS(1833), 1, + anon_sym_STAR, + ACTIONS(1835), 1, + anon_sym___based, + ACTIONS(3136), 1, sym_identifier, - ACTIONS(3952), 1, + STATE(1591), 1, + sym__declarator, + STATE(2174), 1, + sym_ms_based_modifier, + STATE(1569), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + [65437] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4075), 1, + anon_sym_SEMI, + ACTIONS(3478), 2, + anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(3480), 2, + anon_sym___scanf, + anon_sym___printf, + STATE(1455), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + ACTIONS(3482), 4, + anon_sym___read_mostly, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + [65462] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3823), 1, + anon_sym_COMMA, + STATE(1544), 1, + aux_sym__field_declaration_declarator_repeat1, + ACTIONS(4077), 9, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym___scanf, + anon_sym___printf, + anon_sym___read_mostly, + anon_sym___must_hold, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + [65483] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1831), 1, + anon_sym_LPAREN2, + ACTIONS(1833), 1, + anon_sym_STAR, + ACTIONS(1835), 1, + anon_sym___based, + ACTIONS(3136), 1, + sym_identifier, + STATE(1632), 1, + sym__declarator, + STATE(2174), 1, + sym_ms_based_modifier, + STATE(1569), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + [65512] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4003), 1, + sym_identifier, + ACTIONS(4025), 1, aux_sym_preproc_else_token1, - ACTIONS(3954), 1, + ACTIONS(4027), 1, aux_sym_preproc_elif_token1, - ACTIONS(3986), 1, + ACTIONS(4079), 1, aux_sym_preproc_if_token2, - STATE(1340), 1, + STATE(1506), 1, aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(2019), 1, + STATE(2109), 1, sym_enumerator, - ACTIONS(3956), 2, + ACTIONS(4029), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(2029), 3, + STATE(2079), 3, sym_preproc_else_in_enumerator_list, sym_preproc_elif_in_enumerator_list, sym_preproc_elifdef_in_enumerator_list, - [58035] = 8, + [65543] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3815), 1, + ACTIONS(4081), 1, + anon_sym_SEMI, + ACTIONS(3478), 2, + anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(3480), 2, + anon_sym___scanf, + anon_sym___printf, + STATE(1455), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + ACTIONS(3482), 4, + anon_sym___read_mostly, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + [65568] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3898), 1, sym_identifier, - ACTIONS(3962), 1, + ACTIONS(4033), 1, aux_sym_preproc_else_token1, - ACTIONS(3964), 1, + ACTIONS(4035), 1, aux_sym_preproc_elif_token1, - ACTIONS(3988), 1, + ACTIONS(4083), 1, aux_sym_preproc_if_token2, - ACTIONS(3966), 2, + ACTIONS(4037), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(1424), 2, + STATE(1551), 2, sym_enumerator, aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(1823), 3, + STATE(2179), 3, sym_preproc_else_in_enumerator_list_no_comma, sym_preproc_elif_in_enumerator_list_no_comma, sym_preproc_elifdef_in_enumerator_list_no_comma, - [58064] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3881), 1, - sym_identifier, - ACTIONS(3952), 1, - aux_sym_preproc_else_token1, - ACTIONS(3954), 1, - aux_sym_preproc_elif_token1, - ACTIONS(3990), 1, - aux_sym_preproc_if_token2, - STATE(1423), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(2019), 1, - sym_enumerator, - ACTIONS(3956), 2, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - STATE(1794), 3, - sym_preproc_else_in_enumerator_list, - sym_preproc_elif_in_enumerator_list, - sym_preproc_elifdef_in_enumerator_list, - [58095] = 8, + [65597] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1797), 1, - anon_sym___based, - ACTIONS(3048), 1, - sym_identifier, - ACTIONS(3219), 1, - anon_sym_LPAREN2, - ACTIONS(3221), 1, - anon_sym_STAR, - STATE(1425), 1, - sym__declarator, - STATE(2016), 1, - sym_ms_based_modifier, - STATE(1387), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - [58124] = 8, + ACTIONS(4085), 1, + anon_sym_SEMI, + ACTIONS(3478), 2, + anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(3480), 2, + anon_sym___scanf, + anon_sym___printf, + STATE(1531), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + ACTIONS(3482), 4, + anon_sym___read_mostly, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + [65622] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3815), 1, - sym_identifier, - ACTIONS(3962), 1, - aux_sym_preproc_else_token1, - ACTIONS(3964), 1, - aux_sym_preproc_elif_token1, - ACTIONS(3992), 1, - aux_sym_preproc_if_token2, - ACTIONS(3966), 2, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - STATE(1424), 2, + ACTIONS(4087), 1, + sym_identifier, + ACTIONS(4090), 1, + aux_sym_preproc_if_token1, + ACTIONS(4096), 1, + sym_preproc_directive, + ACTIONS(4099), 1, + anon_sym_RBRACE, + ACTIONS(4093), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(2120), 2, + sym_preproc_call, sym_enumerator, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(1791), 3, - sym_preproc_else_in_enumerator_list_no_comma, - sym_preproc_elif_in_enumerator_list_no_comma, - sym_preproc_elifdef_in_enumerator_list_no_comma, - [58153] = 9, + STATE(1538), 3, + sym_preproc_if_in_enumerator_list, + sym_preproc_ifdef_in_enumerator_list, + aux_sym_enumerator_list_repeat1, + [65651] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3881), 1, + ACTIONS(4003), 1, sym_identifier, - ACTIONS(3952), 1, + ACTIONS(4025), 1, aux_sym_preproc_else_token1, - ACTIONS(3954), 1, + ACTIONS(4027), 1, aux_sym_preproc_elif_token1, - ACTIONS(3994), 1, + ACTIONS(4101), 1, aux_sym_preproc_if_token2, - STATE(1423), 1, + STATE(1510), 1, aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(2019), 1, + STATE(2109), 1, sym_enumerator, - ACTIONS(3956), 2, + ACTIONS(4029), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(1829), 3, + STATE(2156), 3, sym_preproc_else_in_enumerator_list, sym_preproc_elif_in_enumerator_list, sym_preproc_elifdef_in_enumerator_list, - [58184] = 8, + [65682] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1797), 1, + ACTIONS(1831), 1, + anon_sym_LPAREN2, + ACTIONS(1833), 1, + anon_sym_STAR, + ACTIONS(1835), 1, anon_sym___based, - ACTIONS(3048), 1, + ACTIONS(3136), 1, sym_identifier, - ACTIONS(3219), 1, + STATE(1600), 1, + sym__declarator, + STATE(2174), 1, + sym_ms_based_modifier, + STATE(1569), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + [65711] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1831), 1, anon_sym_LPAREN2, - ACTIONS(3221), 1, + ACTIONS(1833), 1, anon_sym_STAR, - STATE(1427), 1, + ACTIONS(1835), 1, + anon_sym___based, + ACTIONS(3136), 1, + sym_identifier, + STATE(1597), 1, sym__declarator, - STATE(2016), 1, + STATE(2174), 1, sym_ms_based_modifier, - STATE(1387), 5, + STATE(1569), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [58213] = 9, + [65740] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3825), 1, + ACTIONS(4103), 1, + anon_sym_SEMI, + ACTIONS(3478), 2, + anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(3480), 2, + anon_sym___scanf, + anon_sym___printf, + STATE(1455), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + ACTIONS(3482), 4, + anon_sym___read_mostly, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + [65765] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4105), 1, + anon_sym_SEMI, + ACTIONS(3478), 2, + anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(3480), 2, + anon_sym___scanf, + anon_sym___printf, + STATE(1529), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + ACTIONS(3482), 4, + anon_sym___read_mostly, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + [65790] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4107), 1, + anon_sym_COMMA, + STATE(1544), 1, + aux_sym__field_declaration_declarator_repeat1, + ACTIONS(4110), 9, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym___scanf, + anon_sym___printf, + anon_sym___read_mostly, + anon_sym___must_hold, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + [65811] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3910), 1, aux_sym_preproc_if_token2, - ACTIONS(3881), 1, + ACTIONS(4003), 1, sym_identifier, - ACTIONS(3952), 1, + ACTIONS(4025), 1, aux_sym_preproc_else_token1, - ACTIONS(3954), 1, + ACTIONS(4027), 1, aux_sym_preproc_elif_token1, - STATE(1350), 1, + STATE(1502), 1, aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(2019), 1, + STATE(2109), 1, sym_enumerator, - ACTIONS(3956), 2, + ACTIONS(4029), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(1833), 3, + STATE(2178), 3, sym_preproc_else_in_enumerator_list, sym_preproc_elif_in_enumerator_list, sym_preproc_elifdef_in_enumerator_list, - [58244] = 8, + [65842] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3815), 1, - sym_identifier, - ACTIONS(3962), 1, - aux_sym_preproc_else_token1, - ACTIONS(3964), 1, - aux_sym_preproc_elif_token1, - ACTIONS(3996), 1, - aux_sym_preproc_if_token2, - ACTIONS(3966), 2, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - STATE(1352), 2, - sym_enumerator, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(1832), 3, - sym_preproc_else_in_enumerator_list_no_comma, - sym_preproc_elif_in_enumerator_list_no_comma, - sym_preproc_elifdef_in_enumerator_list_no_comma, - [58273] = 8, + ACTIONS(3864), 1, + anon_sym_COMMA, + STATE(1548), 1, + aux_sym__type_definition_declarators_repeat1, + ACTIONS(4112), 9, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym___scanf, + anon_sym___printf, + anon_sym___read_mostly, + anon_sym___must_hold, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + [65863] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3823), 1, + anon_sym_COMMA, + STATE(1544), 1, + aux_sym__field_declaration_declarator_repeat1, + ACTIONS(4114), 9, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym___scanf, + anon_sym___printf, + anon_sym___read_mostly, + anon_sym___must_hold, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + [65884] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4116), 1, + anon_sym_COMMA, + STATE(1548), 1, + aux_sym__type_definition_declarators_repeat1, + ACTIONS(4119), 9, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym___scanf, + anon_sym___printf, + anon_sym___read_mostly, + anon_sym___must_hold, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + [65905] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1797), 1, + ACTIONS(1835), 1, anon_sym___based, - ACTIONS(3209), 1, + ACTIONS(3262), 1, sym_identifier, - ACTIONS(3211), 1, + ACTIONS(3264), 1, anon_sym_LPAREN2, - ACTIONS(3213), 1, + ACTIONS(3266), 1, anon_sym_STAR, - STATE(1445), 1, + STATE(1634), 1, sym__field_declarator, - STATE(1875), 1, + STATE(2274), 1, sym_ms_based_modifier, - STATE(1306), 5, + STATE(1438), 5, sym_parenthesized_field_declarator, sym_attributed_field_declarator, sym_pointer_field_declarator, sym_function_field_declarator, sym_array_field_declarator, - [58302] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3881), 1, - sym_identifier, - ACTIONS(3952), 1, - aux_sym_preproc_else_token1, - ACTIONS(3954), 1, - aux_sym_preproc_elif_token1, - ACTIONS(3998), 1, - aux_sym_preproc_if_token2, - STATE(1345), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(2019), 1, - sym_enumerator, - ACTIONS(3956), 2, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - STATE(1907), 3, - sym_preproc_else_in_enumerator_list, - sym_preproc_elif_in_enumerator_list, - sym_preproc_elifdef_in_enumerator_list, - [58333] = 8, + [65934] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1797), 1, - anon_sym___based, - ACTIONS(3048), 1, - sym_identifier, - ACTIONS(3219), 1, - anon_sym_LPAREN2, - ACTIONS(3221), 1, - anon_sym_STAR, - STATE(1433), 1, - sym__declarator, - STATE(2016), 1, - sym_ms_based_modifier, - STATE(1387), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - [58362] = 8, + ACTIONS(4121), 1, + anon_sym_SEMI, + ACTIONS(3478), 2, + anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(3480), 2, + anon_sym___scanf, + anon_sym___printf, + STATE(1516), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + ACTIONS(3482), 4, + anon_sym___read_mostly, + anon_sym___ro_after_init, + anon_sym___noreturn, + anon_sym___cold, + [65959] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3815), 1, + ACTIONS(3898), 1, sym_identifier, - ACTIONS(3962), 1, + ACTIONS(4033), 1, aux_sym_preproc_else_token1, - ACTIONS(3964), 1, + ACTIONS(4035), 1, aux_sym_preproc_elif_token1, - ACTIONS(4000), 1, + ACTIONS(4123), 1, aux_sym_preproc_if_token2, - ACTIONS(3966), 2, + ACTIONS(4037), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(1424), 2, + STATE(1614), 2, sym_enumerator, aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(1918), 3, + STATE(2228), 3, sym_preproc_else_in_enumerator_list_no_comma, sym_preproc_elif_in_enumerator_list_no_comma, sym_preproc_elifdef_in_enumerator_list_no_comma, - [58391] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4002), 1, - sym_identifier, - STATE(659), 1, - sym_string_literal, - ACTIONS(4004), 2, - anon_sym_RPAREN, - anon_sym_COLON, - STATE(1529), 2, - sym__string, - sym_concatenated_string, - ACTIONS(101), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [58416] = 6, + [65988] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4006), 1, + ACTIONS(4125), 1, anon_sym_SEMI, - ACTIONS(3413), 2, + ACTIONS(3478), 2, anon_sym___attribute__, anon_sym___must_hold, - ACTIONS(3415), 2, + ACTIONS(3480), 2, anon_sym___scanf, anon_sym___printf, - STATE(1323), 2, + STATE(1455), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - ACTIONS(3417), 3, + ACTIONS(3482), 4, anon_sym___read_mostly, anon_sym___ro_after_init, - anon_sym___init, - [58440] = 6, + anon_sym___noreturn, + anon_sym___cold, + [66013] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4008), 1, + ACTIONS(4127), 1, anon_sym_SEMI, - ACTIONS(3413), 2, + STATE(2119), 1, + sym_attribute_specifier, + ACTIONS(3478), 2, anon_sym___attribute__, anon_sym___must_hold, - ACTIONS(3415), 2, + ACTIONS(3480), 2, anon_sym___scanf, anon_sym___printf, - STATE(1323), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - ACTIONS(3417), 3, + ACTIONS(3482), 4, anon_sym___read_mostly, anon_sym___ro_after_init, - anon_sym___init, - [58464] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4012), 1, - anon_sym_LBRACK, - STATE(1538), 1, - sym_gnu_asm_input_operand, - STATE(1950), 1, - sym_string_literal, - ACTIONS(4010), 2, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(101), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [58488] = 3, + anon_sym___noreturn, + anon_sym___cold, + [66037] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4016), 1, + ACTIONS(4131), 1, anon_sym_LBRACK, - ACTIONS(4014), 9, + ACTIONS(4129), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -110509,66 +125836,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - [58506] = 10, + [66055] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(39), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(386), 1, + ACTIONS(391), 1, anon_sym_LBRACE, - ACTIONS(3879), 1, + ACTIONS(3999), 1, anon_sym_LBRACK, - ACTIONS(4018), 1, + ACTIONS(4133), 1, anon_sym_LPAREN2, - ACTIONS(4020), 1, + ACTIONS(4135), 1, anon_sym_EQ, - STATE(293), 1, + STATE(305), 1, sym_compound_statement, - STATE(897), 1, + STATE(1021), 1, sym__old_style_parameter_list, - STATE(1122), 1, + STATE(1257), 1, sym_parameter_list, - STATE(1338), 2, + STATE(1492), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [58538] = 4, + [66087] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(4022), 1, - anon_sym_COMMA, - STATE(1367), 1, - aux_sym__type_definition_declarators_repeat1, - ACTIONS(4025), 8, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym___scanf, - anon_sym___printf, - anon_sym___read_mostly, - anon_sym___must_hold, - anon_sym___ro_after_init, - anon_sym___init, - [58558] = 4, + ACTIONS(39), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(137), 1, + anon_sym_LBRACE, + ACTIONS(3999), 1, + anon_sym_LBRACK, + ACTIONS(4133), 1, + anon_sym_LPAREN2, + ACTIONS(4135), 1, + anon_sym_EQ, + STATE(134), 1, + sym_compound_statement, + STATE(1021), 1, + sym__old_style_parameter_list, + STATE(1257), 1, + sym_parameter_list, + STATE(1492), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [66119] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3770), 1, - anon_sym_COMMA, - STATE(1396), 1, - aux_sym__field_declaration_declarator_repeat1, - ACTIONS(4027), 8, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym___scanf, - anon_sym___printf, - anon_sym___read_mostly, - anon_sym___must_hold, - anon_sym___ro_after_init, - anon_sym___init, - [58578] = 3, + ACTIONS(4139), 1, + anon_sym_LBRACK, + STATE(1754), 1, + sym_gnu_asm_input_operand, + STATE(2150), 1, + sym_string_literal, + ACTIONS(4137), 2, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(103), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [66143] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4031), 1, + ACTIONS(4143), 1, anon_sym_LBRACK, - ACTIONS(4029), 9, + ACTIONS(4141), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -110578,28 +125913,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - [58596] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3770), 1, - anon_sym_COMMA, - STATE(1396), 1, - aux_sym__field_declaration_declarator_repeat1, - ACTIONS(4033), 8, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym___scanf, - anon_sym___printf, - anon_sym___read_mostly, - anon_sym___must_hold, - anon_sym___ro_after_init, - anon_sym___init, - [58616] = 3, + [66161] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4037), 1, + ACTIONS(4147), 1, anon_sym_LBRACK, - ACTIONS(4035), 9, + ACTIONS(4145), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -110609,12 +125928,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - [58634] = 3, + [66179] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4041), 1, + ACTIONS(4151), 1, anon_sym_LBRACK, - ACTIONS(4039), 9, + ACTIONS(4149), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -110624,84 +125943,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - [58652] = 6, + [66197] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(4045), 1, + ACTIONS(39), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(455), 1, + anon_sym_LBRACE, + ACTIONS(3999), 1, anon_sym_LBRACK, - STATE(1545), 1, - sym_gnu_asm_output_operand, - STATE(2006), 1, - sym_string_literal, - ACTIONS(4043), 2, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(101), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [58676] = 6, + ACTIONS(4133), 1, + anon_sym_LPAREN2, + ACTIONS(4135), 1, + anon_sym_EQ, + STATE(293), 1, + sym_compound_statement, + STATE(1021), 1, + sym__old_style_parameter_list, + STATE(1257), 1, + sym_parameter_list, + STATE(1492), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [66229] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4047), 1, + ACTIONS(4153), 1, anon_sym_SEMI, - ACTIONS(3413), 2, + STATE(2095), 1, + sym_attribute_specifier, + ACTIONS(3478), 2, anon_sym___attribute__, anon_sym___must_hold, - ACTIONS(3415), 2, + ACTIONS(3480), 2, anon_sym___scanf, anon_sym___printf, - STATE(1323), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - ACTIONS(3417), 3, + ACTIONS(3482), 4, anon_sym___read_mostly, anon_sym___ro_after_init, - anon_sym___init, - [58700] = 6, + anon_sym___noreturn, + anon_sym___cold, + [66253] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4049), 1, + ACTIONS(4155), 10, + anon_sym_COMMA, anon_sym_SEMI, - ACTIONS(3413), 2, anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(3415), 2, anon_sym___scanf, anon_sym___printf, - STATE(1384), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - ACTIONS(3417), 3, anon_sym___read_mostly, + anon_sym___must_hold, anon_sym___ro_after_init, - anon_sym___init, - [58724] = 6, + anon_sym___noreturn, + anon_sym___cold, + [66269] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4051), 1, - anon_sym_SEMI, - ACTIONS(3413), 2, - anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(3415), 2, - anon_sym___scanf, - anon_sym___printf, - STATE(1323), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - ACTIONS(3417), 3, - anon_sym___read_mostly, - anon_sym___ro_after_init, - anon_sym___init, - [58748] = 3, + ACTIONS(4159), 1, + anon_sym_LBRACK, + STATE(1753), 1, + sym_gnu_asm_output_operand, + STATE(2041), 1, + sym_string_literal, + ACTIONS(4157), 2, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(103), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [66293] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4055), 1, + ACTIONS(4163), 1, anon_sym_LBRACK, - ACTIONS(4053), 9, + ACTIONS(4161), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -110711,30 +126030,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - [58766] = 6, + [66311] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4057), 1, + ACTIONS(4165), 1, anon_sym_SEMI, - ACTIONS(3413), 2, + STATE(2308), 1, + sym_attribute_specifier, + ACTIONS(3478), 2, anon_sym___attribute__, anon_sym___must_hold, - ACTIONS(3415), 2, + ACTIONS(3480), 2, anon_sym___scanf, anon_sym___printf, - STATE(1362), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - ACTIONS(3417), 3, + ACTIONS(3482), 4, anon_sym___read_mostly, anon_sym___ro_after_init, - anon_sym___init, - [58790] = 3, + anon_sym___noreturn, + anon_sym___cold, + [66335] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4061), 1, + ACTIONS(4169), 1, anon_sym_LBRACK, - ACTIONS(4059), 9, + ACTIONS(4167), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -110744,7174 +126063,8025 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - [58808] = 6, + [66353] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(4063), 1, - anon_sym_SEMI, - ACTIONS(3413), 2, - anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(3415), 2, - anon_sym___scanf, - anon_sym___printf, - STATE(1323), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - ACTIONS(3417), 3, - anon_sym___read_mostly, - anon_sym___ro_after_init, - anon_sym___init, - [58832] = 4, + ACTIONS(39), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(47), 1, + anon_sym_LBRACE, + ACTIONS(3999), 1, + anon_sym_LBRACK, + ACTIONS(4133), 1, + anon_sym_LPAREN2, + ACTIONS(4135), 1, + anon_sym_EQ, + STATE(385), 1, + sym_compound_statement, + STATE(1021), 1, + sym__old_style_parameter_list, + STATE(1257), 1, + sym_parameter_list, + STATE(1492), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [66385] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3770), 1, + ACTIONS(3146), 1, + anon_sym_LBRACK, + ACTIONS(4171), 9, anon_sym_COMMA, - STATE(1370), 1, - aux_sym__field_declaration_declarator_repeat1, - ACTIONS(4065), 8, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym___attribute__, - anon_sym___scanf, - anon_sym___printf, - anon_sym___read_mostly, - anon_sym___must_hold, - anon_sym___ro_after_init, - anon_sym___init, - [58852] = 6, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + [66403] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4067), 1, + ACTIONS(4175), 1, + anon_sym_LBRACK, + ACTIONS(4173), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, - ACTIONS(3413), 2, - anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(3415), 2, - anon_sym___scanf, - anon_sym___printf, - STATE(1393), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - ACTIONS(3417), 3, - anon_sym___read_mostly, - anon_sym___ro_after_init, - anon_sym___init, - [58876] = 6, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + [66421] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, - anon_sym_SEMI, - ACTIONS(3413), 2, - anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(3415), 2, - anon_sym___scanf, - anon_sym___printf, - STATE(1374), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - ACTIONS(3417), 3, - anon_sym___read_mostly, - anon_sym___ro_after_init, - anon_sym___init, - [58900] = 6, + ACTIONS(4177), 1, + sym_identifier, + ACTIONS(4181), 1, + sym_system_lib_string, + STATE(2246), 2, + sym_preproc_call_expression, + sym_string_literal, + ACTIONS(4179), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [66442] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4071), 1, - anon_sym_SEMI, - ACTIONS(3413), 2, - anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(3415), 2, - anon_sym___scanf, - anon_sym___printf, - STATE(1323), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - ACTIONS(3417), 3, - anon_sym___read_mostly, - anon_sym___ro_after_init, - anon_sym___init, - [58924] = 10, + ACTIONS(4041), 1, + sym_identifier, + STATE(671), 1, + sym_string_literal, + STATE(1776), 2, + sym__string, + sym_concatenated_string, + ACTIONS(103), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [66463] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4183), 1, + sym_identifier, + ACTIONS(4185), 1, + sym_system_lib_string, + STATE(2133), 2, + sym_preproc_call_expression, + sym_string_literal, + ACTIONS(4179), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [66484] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4041), 1, + sym_identifier, + STATE(671), 1, + sym_string_literal, + STATE(1901), 2, + sym__string, + sym_concatenated_string, + ACTIONS(103), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [66505] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4187), 1, + sym_identifier, + ACTIONS(4189), 1, + sym_system_lib_string, + STATE(2277), 2, + sym_preproc_call_expression, + sym_string_literal, + ACTIONS(4179), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [66526] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(39), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(45), 1, + ACTIONS(137), 1, anon_sym_LBRACE, - ACTIONS(3879), 1, + ACTIONS(3999), 1, anon_sym_LBRACK, - ACTIONS(4018), 1, + ACTIONS(4133), 1, anon_sym_LPAREN2, - ACTIONS(4020), 1, - anon_sym_EQ, - STATE(318), 1, + STATE(130), 1, sym_compound_statement, - STATE(897), 1, + STATE(1021), 1, sym__old_style_parameter_list, - STATE(1122), 1, + STATE(1255), 1, sym_parameter_list, - STATE(1338), 2, + STATE(1492), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [58956] = 6, + [66555] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4073), 1, - anon_sym_SEMI, - ACTIONS(3413), 2, - anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(3415), 2, - anon_sym___scanf, - anon_sym___printf, - STATE(1363), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - ACTIONS(3417), 3, - anon_sym___read_mostly, - anon_sym___ro_after_init, - anon_sym___init, - [58980] = 3, + ACTIONS(4041), 1, + sym_identifier, + STATE(671), 1, + sym_string_literal, + STATE(1791), 2, + sym__string, + sym_concatenated_string, + ACTIONS(103), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [66576] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(39), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(455), 1, + anon_sym_LBRACE, + ACTIONS(3825), 1, + anon_sym_LPAREN2, + ACTIONS(3999), 1, + anon_sym_LBRACK, + ACTIONS(4135), 1, + anon_sym_EQ, + STATE(293), 1, + sym_compound_statement, + STATE(1257), 1, + sym_parameter_list, + STATE(1492), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [66605] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(39), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(391), 1, + anon_sym_LBRACE, + ACTIONS(3825), 1, + anon_sym_LPAREN2, + ACTIONS(3999), 1, + anon_sym_LBRACK, + ACTIONS(4135), 1, + anon_sym_EQ, + STATE(305), 1, + sym_compound_statement, + STATE(1257), 1, + sym_parameter_list, + STATE(1492), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [66634] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(39), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(47), 1, + anon_sym_LBRACE, + ACTIONS(3825), 1, + anon_sym_LPAREN2, + ACTIONS(3999), 1, + anon_sym_LBRACK, + ACTIONS(4135), 1, + anon_sym_EQ, + STATE(385), 1, + sym_compound_statement, + STATE(1257), 1, + sym_parameter_list, + STATE(1492), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [66663] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4077), 1, + ACTIONS(3146), 1, anon_sym_LBRACK, - ACTIONS(4075), 9, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(4171), 4, anon_sym_LPAREN2, - anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, + ACTIONS(4191), 4, + anon_sym_COMMA, + anon_sym_SEMI, anon_sym_asm, anon_sym___asm__, - [58998] = 10, + [66682] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(39), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(135), 1, + ACTIONS(455), 1, anon_sym_LBRACE, - ACTIONS(3879), 1, + ACTIONS(3999), 1, anon_sym_LBRACK, - ACTIONS(4018), 1, + ACTIONS(4133), 1, anon_sym_LPAREN2, - ACTIONS(4020), 1, - anon_sym_EQ, - STATE(130), 1, + STATE(318), 1, sym_compound_statement, - STATE(897), 1, + STATE(1021), 1, sym__old_style_parameter_list, - STATE(1122), 1, + STATE(1255), 1, sym_parameter_list, - STATE(1338), 2, + STATE(1492), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [59030] = 4, + [66711] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3811), 1, - anon_sym_COMMA, - STATE(1367), 1, - aux_sym__type_definition_declarators_repeat1, - ACTIONS(4079), 8, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym___scanf, - anon_sym___printf, - anon_sym___read_mostly, - anon_sym___must_hold, - anon_sym___ro_after_init, - anon_sym___init, - [59050] = 10, + ACTIONS(2010), 1, + anon_sym_LPAREN2, + ACTIONS(2012), 1, + anon_sym_STAR, + ACTIONS(3144), 1, + anon_sym_LBRACK, + STATE(1691), 1, + sym_parameter_list, + STATE(1719), 1, + sym__abstract_declarator, + STATE(1717), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + [66736] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4193), 1, + sym_identifier, + ACTIONS(4195), 1, + sym_system_lib_string, + STATE(2076), 2, + sym_preproc_call_expression, + sym_string_literal, + ACTIONS(4179), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [66757] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(39), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(524), 1, + ACTIONS(137), 1, anon_sym_LBRACE, - ACTIONS(3879), 1, - anon_sym_LBRACK, - ACTIONS(4018), 1, + ACTIONS(3825), 1, anon_sym_LPAREN2, - ACTIONS(4020), 1, + ACTIONS(3999), 1, + anon_sym_LBRACK, + ACTIONS(4135), 1, anon_sym_EQ, - STATE(309), 1, + STATE(134), 1, sym_compound_statement, - STATE(897), 1, - sym__old_style_parameter_list, - STATE(1122), 1, + STATE(1257), 1, sym_parameter_list, - STATE(1338), 2, + STATE(1492), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [59082] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4081), 1, - anon_sym_SEMI, - ACTIONS(3413), 2, - anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(3415), 2, - anon_sym___scanf, - anon_sym___printf, - STATE(1323), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - ACTIONS(3417), 3, - anon_sym___read_mostly, - anon_sym___ro_after_init, - anon_sym___init, - [59106] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4083), 1, - anon_sym_SEMI, - ACTIONS(3413), 2, - anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(3415), 2, - anon_sym___scanf, - anon_sym___printf, - STATE(1391), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - ACTIONS(3417), 3, - anon_sym___read_mostly, - anon_sym___ro_after_init, - anon_sym___init, - [59130] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4085), 1, - anon_sym_SEMI, - ACTIONS(3413), 2, - anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(3415), 2, - anon_sym___scanf, - anon_sym___printf, - STATE(1323), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - ACTIONS(3417), 3, - anon_sym___read_mostly, - anon_sym___ro_after_init, - anon_sym___init, - [59154] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4087), 1, - anon_sym_SEMI, - ACTIONS(3413), 2, - anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(3415), 2, - anon_sym___scanf, - anon_sym___printf, - STATE(1376), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - ACTIONS(3417), 3, - anon_sym___read_mostly, - anon_sym___ro_after_init, - anon_sym___init, - [59178] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4089), 1, - anon_sym_SEMI, - ACTIONS(3413), 2, - anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(3415), 2, - anon_sym___scanf, - anon_sym___printf, - STATE(1380), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - ACTIONS(3417), 3, - anon_sym___read_mostly, - anon_sym___ro_after_init, - anon_sym___init, - [59202] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4091), 1, - anon_sym_COMMA, - STATE(1396), 1, - aux_sym__field_declaration_declarator_repeat1, - ACTIONS(4094), 8, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym___scanf, - anon_sym___printf, - anon_sym___read_mostly, - anon_sym___must_hold, - anon_sym___ro_after_init, - anon_sym___init, - [59222] = 9, + [66786] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(39), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(45), 1, + ACTIONS(391), 1, anon_sym_LBRACE, - ACTIONS(3879), 1, + ACTIONS(3999), 1, anon_sym_LBRACK, - ACTIONS(4018), 1, + ACTIONS(4133), 1, anon_sym_LPAREN2, - STATE(334), 1, + STATE(359), 1, sym_compound_statement, - STATE(897), 1, + STATE(1021), 1, sym__old_style_parameter_list, - STATE(1119), 1, + STATE(1255), 1, sym_parameter_list, - STATE(1338), 2, + STATE(1492), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [59251] = 7, + [66815] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1857), 1, + ACTIONS(2010), 1, anon_sym_LPAREN2, - ACTIONS(1859), 1, + ACTIONS(2012), 1, anon_sym_STAR, - ACTIONS(3056), 1, + ACTIONS(3144), 1, anon_sym_LBRACK, - STATE(1509), 1, + STATE(1691), 1, sym_parameter_list, - STATE(1542), 1, + STATE(1722), 1, sym__abstract_declarator, - STATE(1504), 4, + STATE(1717), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, - [59276] = 9, + [66840] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(39), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(135), 1, + ACTIONS(47), 1, anon_sym_LBRACE, - ACTIONS(3879), 1, + ACTIONS(3999), 1, anon_sym_LBRACK, - ACTIONS(4018), 1, + ACTIONS(4133), 1, anon_sym_LPAREN2, - STATE(132), 1, + STATE(370), 1, sym_compound_statement, - STATE(897), 1, + STATE(1021), 1, sym__old_style_parameter_list, - STATE(1119), 1, + STATE(1255), 1, sym_parameter_list, - STATE(1338), 2, + STATE(1492), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [59305] = 9, + [66869] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(39), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(524), 1, + ACTIONS(391), 1, anon_sym_LBRACE, - ACTIONS(3772), 1, + ACTIONS(3825), 1, anon_sym_LPAREN2, - ACTIONS(3879), 1, + ACTIONS(3999), 1, anon_sym_LBRACK, - ACTIONS(4020), 1, - anon_sym_EQ, - STATE(309), 1, + STATE(357), 1, sym_compound_statement, - STATE(1122), 1, + STATE(1257), 1, sym_parameter_list, - STATE(1338), 2, + STATE(1492), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [59334] = 4, + [66895] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4077), 1, + ACTIONS(4139), 1, anon_sym_LBRACK, - ACTIONS(4075), 4, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - ACTIONS(4096), 4, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_asm, - anon_sym___asm__, - [59353] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4098), 1, - anon_sym_SEMI, - STATE(1929), 1, - sym_attribute_specifier, - ACTIONS(3413), 2, - anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(3415), 2, - anon_sym___scanf, - anon_sym___printf, - ACTIONS(3417), 3, - anon_sym___read_mostly, - anon_sym___ro_after_init, - anon_sym___init, - [59376] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4100), 1, - sym_identifier, - ACTIONS(4104), 1, - sym_system_lib_string, - STATE(1784), 2, - sym_preproc_call_expression, + STATE(1811), 1, + sym_gnu_asm_input_operand, + STATE(2150), 1, sym_string_literal, - ACTIONS(4102), 5, + ACTIONS(103), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [59397] = 9, + [66915] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(39), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(135), 1, + ACTIONS(391), 1, anon_sym_LBRACE, - ACTIONS(3772), 1, + ACTIONS(3825), 1, anon_sym_LPAREN2, - ACTIONS(3879), 1, + ACTIONS(3999), 1, + anon_sym_LBRACK, + STATE(361), 1, + sym_compound_statement, + STATE(1255), 1, + sym_parameter_list, + STATE(1492), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [66941] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(39), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(137), 1, + anon_sym_LBRACE, + ACTIONS(3825), 1, + anon_sym_LPAREN2, + ACTIONS(3999), 1, anon_sym_LBRACK, - ACTIONS(4020), 1, - anon_sym_EQ, STATE(130), 1, sym_compound_statement, - STATE(1122), 1, + STATE(1255), 1, sym_parameter_list, - STATE(1338), 2, + STATE(1492), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [59426] = 9, + [66967] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(39), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(386), 1, + ACTIONS(137), 1, anon_sym_LBRACE, - ACTIONS(3879), 1, + ACTIONS(3825), 1, + anon_sym_LPAREN2, + ACTIONS(3999), 1, + anon_sym_LBRACK, + STATE(152), 1, + sym_compound_statement, + STATE(1257), 1, + sym_parameter_list, + STATE(1492), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [66993] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(39), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3825), 1, + anon_sym_LPAREN2, + ACTIONS(3999), 1, anon_sym_LBRACK, - ACTIONS(4018), 1, + STATE(1255), 1, + sym_parameter_list, + ACTIONS(4197), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(1492), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [67017] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(39), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(137), 1, + anon_sym_LBRACE, + ACTIONS(3825), 1, anon_sym_LPAREN2, - STATE(271), 1, + ACTIONS(3999), 1, + anon_sym_LBRACK, + STATE(156), 1, sym_compound_statement, - STATE(897), 1, - sym__old_style_parameter_list, - STATE(1119), 1, + STATE(1255), 1, sym_parameter_list, - STATE(1338), 2, + STATE(1492), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [59455] = 6, + [67043] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4106), 1, - anon_sym_SEMI, - STATE(1798), 1, - sym_attribute_specifier, - ACTIONS(3413), 2, - anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(3415), 2, - anon_sym___scanf, - anon_sym___printf, - ACTIONS(3417), 3, - anon_sym___read_mostly, - anon_sym___ro_after_init, - anon_sym___init, - [59478] = 9, + ACTIONS(39), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(455), 1, + anon_sym_LBRACE, + ACTIONS(3825), 1, + anon_sym_LPAREN2, + ACTIONS(3999), 1, + anon_sym_LBRACK, + STATE(311), 1, + sym_compound_statement, + STATE(1257), 1, + sym_parameter_list, + STATE(1492), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [67069] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(39), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(386), 1, + ACTIONS(455), 1, anon_sym_LBRACE, - ACTIONS(3772), 1, + ACTIONS(3825), 1, anon_sym_LPAREN2, - ACTIONS(3879), 1, + ACTIONS(3999), 1, anon_sym_LBRACK, - ACTIONS(4020), 1, - anon_sym_EQ, - STATE(293), 1, + STATE(295), 1, sym_compound_statement, - STATE(1122), 1, + STATE(1255), 1, sym_parameter_list, - STATE(1338), 2, + STATE(1492), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [59507] = 5, + [67095] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4002), 1, - sym_identifier, - STATE(659), 1, + ACTIONS(4159), 1, + anon_sym_LBRACK, + STATE(1848), 1, + sym_gnu_asm_output_operand, + STATE(2041), 1, sym_string_literal, - STATE(1677), 2, - sym__string, - sym_concatenated_string, - ACTIONS(101), 5, + ACTIONS(103), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [59528] = 6, + [67115] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4108), 1, - anon_sym_SEMI, - STATE(1888), 1, - sym_attribute_specifier, - ACTIONS(3413), 2, - anon_sym___attribute__, - anon_sym___must_hold, - ACTIONS(3415), 2, - anon_sym___scanf, - anon_sym___printf, - ACTIONS(3417), 3, - anon_sym___read_mostly, - anon_sym___ro_after_init, - anon_sym___init, - [59551] = 5, + ACTIONS(39), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(47), 1, + anon_sym_LBRACE, + ACTIONS(3825), 1, + anon_sym_LPAREN2, + ACTIONS(3999), 1, + anon_sym_LBRACK, + STATE(377), 1, + sym_compound_statement, + STATE(1257), 1, + sym_parameter_list, + STATE(1492), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [67141] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4002), 1, - sym_identifier, - STATE(659), 1, - sym_string_literal, - STATE(1621), 2, - sym__string, - sym_concatenated_string, - ACTIONS(101), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [59572] = 5, + ACTIONS(39), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(137), 1, + anon_sym_LBRACE, + ACTIONS(3825), 1, + anon_sym_LPAREN2, + ACTIONS(3999), 1, + anon_sym_LBRACK, + STATE(155), 1, + sym_compound_statement, + STATE(1255), 1, + sym_parameter_list, + STATE(1492), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [67167] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4110), 1, - sym_identifier, - ACTIONS(4112), 1, - sym_system_lib_string, - STATE(1945), 2, - sym_preproc_call_expression, - sym_string_literal, - ACTIONS(4102), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [59593] = 5, + ACTIONS(39), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(391), 1, + anon_sym_LBRACE, + ACTIONS(3825), 1, + anon_sym_LPAREN2, + ACTIONS(3999), 1, + anon_sym_LBRACK, + STATE(359), 1, + sym_compound_statement, + STATE(1255), 1, + sym_parameter_list, + STATE(1492), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [67193] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4114), 1, - sym_identifier, - ACTIONS(4116), 1, - sym_system_lib_string, - STATE(1826), 2, - sym_preproc_call_expression, - sym_string_literal, - ACTIONS(4102), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [59614] = 9, + ACTIONS(39), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(455), 1, + anon_sym_LBRACE, + ACTIONS(3825), 1, + anon_sym_LPAREN2, + ACTIONS(3999), 1, + anon_sym_LBRACK, + STATE(318), 1, + sym_compound_statement, + STATE(1255), 1, + sym_parameter_list, + STATE(1492), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [67219] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(39), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(524), 1, + ACTIONS(47), 1, anon_sym_LBRACE, - ACTIONS(3879), 1, + ACTIONS(3825), 1, + anon_sym_LPAREN2, + ACTIONS(3999), 1, anon_sym_LBRACK, - ACTIONS(4018), 1, + STATE(382), 1, + sym_compound_statement, + STATE(1257), 1, + sym_parameter_list, + STATE(1492), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [67245] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(39), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(455), 1, + anon_sym_LBRACE, + ACTIONS(3825), 1, anon_sym_LPAREN2, - STATE(273), 1, + ACTIONS(3999), 1, + anon_sym_LBRACK, + STATE(296), 1, sym_compound_statement, - STATE(897), 1, - sym__old_style_parameter_list, - STATE(1119), 1, + STATE(1255), 1, sym_parameter_list, - STATE(1338), 2, + STATE(1492), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [59643] = 2, + [67271] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4118), 9, + ACTIONS(4201), 1, + aux_sym_preproc_elif_token1, + ACTIONS(4203), 1, + anon_sym_EQ, + ACTIONS(4199), 6, anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym___scanf, - anon_sym___printf, - anon_sym___read_mostly, - anon_sym___must_hold, - anon_sym___ro_after_init, - anon_sym___init, - [59658] = 5, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_identifier, + [67289] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4120), 1, - sym_identifier, - ACTIONS(4122), 1, - sym_system_lib_string, - STATE(1857), 2, - sym_preproc_call_expression, - sym_string_literal, - ACTIONS(4102), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [59679] = 9, + ACTIONS(39), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(137), 1, + anon_sym_LBRACE, + ACTIONS(3825), 1, + anon_sym_LPAREN2, + ACTIONS(3999), 1, + anon_sym_LBRACK, + STATE(157), 1, + sym_compound_statement, + STATE(1257), 1, + sym_parameter_list, + STATE(1492), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [67315] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(39), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(45), 1, + ACTIONS(391), 1, anon_sym_LBRACE, - ACTIONS(3772), 1, + ACTIONS(3825), 1, anon_sym_LPAREN2, - ACTIONS(3879), 1, + ACTIONS(3999), 1, anon_sym_LBRACK, - ACTIONS(4020), 1, - anon_sym_EQ, - STATE(318), 1, + STATE(348), 1, sym_compound_statement, - STATE(1122), 1, + STATE(1255), 1, sym_parameter_list, - STATE(1338), 2, + STATE(1492), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [59708] = 5, + [67341] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4002), 1, - sym_identifier, - STATE(659), 1, - sym_string_literal, - STATE(1647), 2, - sym__string, - sym_concatenated_string, - ACTIONS(101), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [59729] = 5, + ACTIONS(39), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(391), 1, + anon_sym_LBRACE, + ACTIONS(3825), 1, + anon_sym_LPAREN2, + ACTIONS(3999), 1, + anon_sym_LBRACK, + STATE(345), 1, + sym_compound_statement, + STATE(1255), 1, + sym_parameter_list, + STATE(1492), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [67367] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4045), 1, + ACTIONS(39), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(47), 1, + anon_sym_LBRACE, + ACTIONS(3825), 1, + anon_sym_LPAREN2, + ACTIONS(3999), 1, anon_sym_LBRACK, - STATE(1582), 1, - sym_gnu_asm_output_operand, - STATE(2006), 1, - sym_string_literal, - ACTIONS(101), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [59749] = 8, + STATE(374), 1, + sym_compound_statement, + STATE(1257), 1, + sym_parameter_list, + STATE(1492), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [67393] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(39), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(386), 1, + ACTIONS(137), 1, anon_sym_LBRACE, - ACTIONS(3772), 1, + ACTIONS(3825), 1, anon_sym_LPAREN2, - ACTIONS(3879), 1, + ACTIONS(3999), 1, anon_sym_LBRACK, - STATE(275), 1, + STATE(132), 1, sym_compound_statement, - STATE(1122), 1, + STATE(1255), 1, sym_parameter_list, - STATE(1338), 2, + STATE(1492), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [59775] = 7, + [67419] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(39), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3772), 1, + ACTIONS(455), 1, + anon_sym_LBRACE, + ACTIONS(3825), 1, anon_sym_LPAREN2, - ACTIONS(3879), 1, + ACTIONS(3999), 1, anon_sym_LBRACK, - STATE(1119), 1, + STATE(321), 1, + sym_compound_statement, + STATE(1257), 1, sym_parameter_list, - ACTIONS(4124), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(1338), 2, + STATE(1492), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [59799] = 8, + [67445] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(39), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(386), 1, + ACTIONS(47), 1, anon_sym_LBRACE, - ACTIONS(3772), 1, + ACTIONS(3825), 1, anon_sym_LPAREN2, - ACTIONS(3879), 1, + ACTIONS(3999), 1, anon_sym_LBRACK, - STATE(271), 1, + STATE(370), 1, sym_compound_statement, - STATE(1119), 1, + STATE(1255), 1, sym_parameter_list, - STATE(1338), 2, + STATE(1492), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [59825] = 8, + [67471] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(39), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(135), 1, + ACTIONS(391), 1, anon_sym_LBRACE, - ACTIONS(3772), 1, + ACTIONS(3825), 1, anon_sym_LPAREN2, - ACTIONS(3879), 1, + ACTIONS(3999), 1, anon_sym_LBRACK, - STATE(132), 1, + STATE(337), 1, sym_compound_statement, - STATE(1119), 1, + STATE(1257), 1, sym_parameter_list, - STATE(1338), 2, + STATE(1492), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [59851] = 6, + [67497] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4126), 1, + ACTIONS(4205), 1, sym_identifier, - ACTIONS(4131), 1, + ACTIONS(4210), 1, aux_sym_preproc_elif_token1, - STATE(1423), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(2019), 1, + STATE(1614), 2, sym_enumerator, - ACTIONS(4129), 4, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + ACTIONS(4208), 4, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - [59873] = 5, + [67517] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4133), 1, + ACTIONS(4212), 1, sym_identifier, - ACTIONS(4138), 1, + ACTIONS(4217), 1, aux_sym_preproc_elif_token1, - STATE(1424), 2, + STATE(1615), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(2109), 1, sym_enumerator, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - ACTIONS(4136), 4, + ACTIONS(4215), 4, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - [59893] = 8, + [67539] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(39), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(135), 1, + ACTIONS(391), 1, anon_sym_LBRACE, - ACTIONS(3772), 1, + ACTIONS(3825), 1, anon_sym_LPAREN2, - ACTIONS(3879), 1, + ACTIONS(3999), 1, anon_sym_LBRACK, - STATE(119), 1, + STATE(354), 1, sym_compound_statement, - STATE(1119), 1, + STATE(1257), 1, sym_parameter_list, - STATE(1338), 2, + STATE(1492), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [59919] = 8, + [67565] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(39), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(524), 1, + ACTIONS(47), 1, anon_sym_LBRACE, - ACTIONS(3772), 1, + ACTIONS(3825), 1, anon_sym_LPAREN2, - ACTIONS(3879), 1, + ACTIONS(3999), 1, anon_sym_LBRACK, - STATE(264), 1, + STATE(384), 1, sym_compound_statement, - STATE(1122), 1, + STATE(1255), 1, sym_parameter_list, - STATE(1338), 2, + STATE(1492), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [59945] = 8, + [67591] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(39), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(524), 1, + ACTIONS(47), 1, anon_sym_LBRACE, - ACTIONS(3772), 1, + ACTIONS(3825), 1, anon_sym_LPAREN2, - ACTIONS(3879), 1, + ACTIONS(3999), 1, anon_sym_LBRACK, - STATE(281), 1, + STATE(386), 1, sym_compound_statement, - STATE(1119), 1, + STATE(1255), 1, sym_parameter_list, - STATE(1338), 2, + STATE(1492), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [59971] = 8, + [67617] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(39), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(45), 1, + ACTIONS(455), 1, anon_sym_LBRACE, - ACTIONS(3772), 1, + ACTIONS(3825), 1, anon_sym_LPAREN2, - ACTIONS(3879), 1, + ACTIONS(3999), 1, anon_sym_LBRACK, - STATE(340), 1, + STATE(322), 1, sym_compound_statement, - STATE(1122), 1, + STATE(1257), 1, sym_parameter_list, - STATE(1338), 2, + STATE(1492), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [59997] = 4, + [67643] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4142), 1, - aux_sym_preproc_elif_token1, - ACTIONS(4144), 1, - anon_sym_EQ, - ACTIONS(4140), 6, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - sym_identifier, - [60015] = 8, + ACTIONS(39), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(47), 1, + anon_sym_LBRACE, + ACTIONS(3825), 1, + anon_sym_LPAREN2, + ACTIONS(3999), 1, + anon_sym_LBRACK, + STATE(402), 1, + sym_compound_statement, + STATE(1255), 1, + sym_parameter_list, + STATE(1492), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [67669] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(39), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(45), 1, + ACTIONS(455), 1, anon_sym_LBRACE, - ACTIONS(3772), 1, + ACTIONS(3825), 1, anon_sym_LPAREN2, - ACTIONS(3879), 1, + ACTIONS(3999), 1, anon_sym_LBRACK, - STATE(334), 1, + STATE(329), 1, sym_compound_statement, - STATE(1119), 1, + STATE(1255), 1, sym_parameter_list, - STATE(1338), 2, + STATE(1492), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [60041] = 8, + [67695] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(39), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(45), 1, + ACTIONS(137), 1, anon_sym_LBRACE, - ACTIONS(3772), 1, + ACTIONS(3825), 1, anon_sym_LPAREN2, - ACTIONS(3879), 1, + ACTIONS(3999), 1, anon_sym_LBRACK, - STATE(331), 1, + STATE(154), 1, sym_compound_statement, - STATE(1119), 1, + STATE(1257), 1, sym_parameter_list, - STATE(1338), 2, + STATE(1492), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [60067] = 5, + [67721] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4012), 1, + ACTIONS(4219), 1, anon_sym_LBRACK, - STATE(1629), 1, - sym_gnu_asm_input_operand, - STATE(1950), 1, - sym_string_literal, - ACTIONS(101), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [60087] = 8, + ACTIONS(4222), 1, + anon_sym_EQ, + ACTIONS(4224), 1, + anon_sym_DOT, + STATE(1623), 4, + sym_subscript_designator, + sym_subscript_range_designator, + sym_field_designator, + aux_sym_initializer_pair_repeat1, + [67740] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(39), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(386), 1, - anon_sym_LBRACE, - ACTIONS(3772), 1, + ACTIONS(3825), 1, anon_sym_LPAREN2, - ACTIONS(3879), 1, + ACTIONS(3860), 1, anon_sym_LBRACK, - STATE(260), 1, - sym_compound_statement, - STATE(1119), 1, + ACTIONS(4227), 1, + anon_sym_RPAREN, + STATE(1451), 1, sym_parameter_list, - STATE(1338), 2, + STATE(1418), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [60113] = 8, + [67763] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(39), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(135), 1, - anon_sym_LBRACE, - ACTIONS(3772), 1, + ACTIONS(3825), 1, anon_sym_LPAREN2, - ACTIONS(3879), 1, + ACTIONS(3860), 1, anon_sym_LBRACK, - STATE(128), 1, - sym_compound_statement, - STATE(1122), 1, + ACTIONS(4229), 1, + anon_sym_RPAREN, + STATE(1451), 1, sym_parameter_list, - STATE(1338), 2, + STATE(1418), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [60139] = 8, + [67786] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(39), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(524), 1, - anon_sym_LBRACE, - ACTIONS(3772), 1, + ACTIONS(3825), 1, anon_sym_LPAREN2, - ACTIONS(3879), 1, + ACTIONS(3860), 1, anon_sym_LBRACK, - STATE(273), 1, - sym_compound_statement, - STATE(1119), 1, + ACTIONS(4231), 1, + anon_sym_RPAREN, + STATE(1451), 1, + sym_parameter_list, + STATE(1418), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [67809] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2082), 1, + anon_sym_LBRACK, + ACTIONS(4233), 1, + anon_sym_EQ, + ACTIONS(4235), 1, + anon_sym_DOT, + STATE(1623), 4, + sym_subscript_designator, + sym_subscript_range_designator, + sym_field_designator, + aux_sym_initializer_pair_repeat1, + [67828] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(39), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3825), 1, + anon_sym_LPAREN2, + ACTIONS(3829), 1, + anon_sym_LBRACK, + ACTIONS(4237), 1, + anon_sym_RPAREN, + STATE(1430), 1, sym_parameter_list, - STATE(1338), 2, + STATE(1409), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [60165] = 7, + [67851] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4241), 1, + anon_sym_COMMA, + ACTIONS(4243), 1, + aux_sym_preproc_elif_token1, + ACTIONS(4239), 5, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_identifier, + [67868] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(39), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3772), 1, + ACTIONS(3825), 1, anon_sym_LPAREN2, - ACTIONS(3776), 1, + ACTIONS(3999), 1, anon_sym_LBRACK, - ACTIONS(4146), 1, + ACTIONS(4245), 1, anon_sym_RPAREN, - STATE(1305), 1, + STATE(1255), 1, sym_parameter_list, - STATE(1288), 2, + STATE(1492), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [60188] = 7, + [67891] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(39), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3772), 1, + ACTIONS(3825), 1, anon_sym_LPAREN2, - ACTIONS(3879), 1, + ACTIONS(3999), 1, anon_sym_LBRACK, - ACTIONS(4148), 1, - anon_sym_RPAREN, - STATE(1119), 1, + ACTIONS(4135), 1, + anon_sym_EQ, + STATE(1257), 1, sym_parameter_list, - STATE(1338), 2, + STATE(1492), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [60211] = 7, + [67914] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(39), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3772), 1, + ACTIONS(3825), 1, anon_sym_LPAREN2, - ACTIONS(3879), 1, + ACTIONS(3999), 1, anon_sym_LBRACK, - ACTIONS(4150), 1, + ACTIONS(4247), 1, anon_sym_RPAREN, - STATE(1119), 1, + STATE(1255), 1, sym_parameter_list, - STATE(1338), 2, + STATE(1492), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [60234] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4154), 1, - anon_sym_COMMA, - ACTIONS(4156), 1, - aux_sym_preproc_elif_token1, - ACTIONS(4152), 5, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - sym_identifier, - [60251] = 7, + [67937] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(39), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3772), 1, + ACTIONS(3825), 1, anon_sym_LPAREN2, - ACTIONS(3879), 1, + ACTIONS(3999), 1, anon_sym_LBRACK, - ACTIONS(4020), 1, - anon_sym_EQ, - STATE(1122), 1, + ACTIONS(4249), 1, + anon_sym_RPAREN, + STATE(1255), 1, sym_parameter_list, - STATE(1338), 2, + STATE(1492), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [60274] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2021), 1, - anon_sym_LBRACK, - ACTIONS(4158), 1, - anon_sym_EQ, - ACTIONS(4160), 1, - anon_sym_DOT, - STATE(1442), 4, - sym_subscript_designator, - sym_subscript_range_designator, - sym_field_designator, - aux_sym_initializer_pair_repeat1, - [60293] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4162), 1, - anon_sym_LBRACK, - ACTIONS(4165), 1, - anon_sym_EQ, - ACTIONS(4167), 1, - anon_sym_DOT, - STATE(1442), 4, - sym_subscript_designator, - sym_subscript_range_designator, - sym_field_designator, - aux_sym_initializer_pair_repeat1, - [60312] = 7, + [67960] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(39), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3772), 1, + ACTIONS(3825), 1, anon_sym_LPAREN2, - ACTIONS(3799), 1, + ACTIONS(3829), 1, anon_sym_LBRACK, - ACTIONS(4170), 1, + ACTIONS(4251), 1, anon_sym_RPAREN, - STATE(1307), 1, + STATE(1430), 1, sym_parameter_list, - STATE(1297), 2, + STATE(1409), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [60335] = 7, + [67983] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(39), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3772), 1, - anon_sym_LPAREN2, - ACTIONS(3799), 1, + ACTIONS(3999), 1, anon_sym_LBRACK, - ACTIONS(4172), 1, - anon_sym_RPAREN, - STATE(1307), 1, + ACTIONS(4253), 1, + anon_sym_LPAREN2, + STATE(1021), 1, + sym__old_style_parameter_list, + STATE(1255), 1, sym_parameter_list, - STATE(1297), 2, + STATE(1492), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [60358] = 7, + [68006] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(39), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3772), 1, + ACTIONS(3825), 1, anon_sym_LPAREN2, - ACTIONS(3776), 1, + ACTIONS(3829), 1, anon_sym_LBRACK, - ACTIONS(4174), 1, + ACTIONS(4255), 1, anon_sym_RPAREN, - STATE(1305), 1, + STATE(1430), 1, sym_parameter_list, - STATE(1288), 2, + STATE(1409), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [60381] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4176), 1, - anon_sym_LPAREN2, - STATE(1468), 2, - sym_gnu_asm_qualifier, - aux_sym_gnu_asm_expression_repeat1, - ACTIONS(4178), 3, - anon_sym_inline, - anon_sym_volatile, - anon_sym_goto, - [60397] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3984), 2, - anon_sym_RBRACE, - sym_identifier, - ACTIONS(4180), 4, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - [60411] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4182), 2, - anon_sym_RBRACE, - sym_identifier, - ACTIONS(4184), 4, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - [60425] = 6, + [68029] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4186), 1, + ACTIONS(4257), 1, anon_sym_COMMA, - ACTIONS(4188), 1, + ACTIONS(4259), 1, anon_sym_SEMI, - STATE(1608), 1, + STATE(1853), 1, aux_sym_declaration_repeat1, - STATE(1609), 1, + STATE(1854), 1, sym_gnu_asm_expression, - ACTIONS(4190), 2, + ACTIONS(4261), 2, anon_sym_asm, anon_sym___asm__, - [60445] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4192), 2, - anon_sym_RBRACE, - sym_identifier, - ACTIONS(4194), 4, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - [60459] = 6, + [68049] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4186), 1, + ACTIONS(3825), 1, + anon_sym_LPAREN2, + ACTIONS(4265), 1, + anon_sym_LBRACK, + STATE(1690), 1, + sym_parameter_list, + ACTIONS(4263), 3, anon_sym_COMMA, - ACTIONS(4196), 1, - anon_sym_SEMI, - STATE(1604), 1, - aux_sym_declaration_repeat1, - STATE(1605), 1, - sym_gnu_asm_expression, - ACTIONS(4190), 2, - anon_sym_asm, - anon_sym___asm__, - [60479] = 3, + anon_sym_RPAREN, + anon_sym_COLON, + [68067] = 3, ACTIONS(3), 1, sym_comment, - STATE(1842), 1, + STATE(520), 1, sym_string_literal, - ACTIONS(101), 5, + ACTIONS(103), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [60493] = 4, + [68081] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4267), 1, + anon_sym_LPAREN2, + STATE(1675), 2, + sym_gnu_asm_qualifier, + aux_sym_gnu_asm_expression_repeat1, + ACTIONS(4269), 3, + anon_sym_inline, + anon_sym_volatile, + anon_sym_goto, + [68097] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4198), 1, + ACTIONS(4271), 1, anon_sym_LPAREN2, - STATE(1453), 2, + STATE(1641), 2, sym_gnu_asm_qualifier, aux_sym_gnu_asm_expression_repeat1, - ACTIONS(4200), 3, + ACTIONS(4273), 3, anon_sym_inline, anon_sym_volatile, anon_sym_goto, - [60509] = 6, + [68113] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4186), 1, + ACTIONS(4257), 1, anon_sym_COMMA, - ACTIONS(4203), 1, + ACTIONS(4276), 1, anon_sym_SEMI, - STATE(1592), 1, + STATE(1763), 1, aux_sym_declaration_repeat1, - STATE(1593), 1, + STATE(1765), 1, sym_gnu_asm_expression, - ACTIONS(4190), 2, + ACTIONS(4261), 2, anon_sym_asm, anon_sym___asm__, - [60529] = 6, + [68133] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4186), 1, + ACTIONS(4257), 1, anon_sym_COMMA, - ACTIONS(4205), 1, + ACTIONS(4278), 1, anon_sym_SEMI, - STATE(1623), 1, + STATE(1784), 1, aux_sym_declaration_repeat1, - STATE(1624), 1, + STATE(1785), 1, sym_gnu_asm_expression, - ACTIONS(4190), 2, + ACTIONS(4261), 2, anon_sym_asm, anon_sym___asm__, - [60549] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4207), 2, - anon_sym_RBRACE, - sym_identifier, - ACTIONS(4209), 4, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - [60563] = 3, + [68153] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4182), 2, + ACTIONS(4099), 2, anon_sym_RBRACE, sym_identifier, - ACTIONS(4184), 4, + ACTIONS(4280), 4, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, - [60577] = 6, + [68167] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4186), 1, + ACTIONS(4257), 1, anon_sym_COMMA, - ACTIONS(4211), 1, + ACTIONS(4282), 1, anon_sym_SEMI, - STATE(1632), 1, + STATE(1929), 1, sym_gnu_asm_expression, - STATE(1633), 1, + STATE(1930), 1, aux_sym_declaration_repeat1, - ACTIONS(4190), 2, + ACTIONS(4261), 2, anon_sym_asm, anon_sym___asm__, - [60597] = 3, + [68187] = 6, ACTIONS(3), 1, sym_comment, - STATE(456), 1, - sym_string_literal, - ACTIONS(101), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [60611] = 6, + ACTIONS(4257), 1, + anon_sym_COMMA, + ACTIONS(4284), 1, + anon_sym_SEMI, + STATE(1804), 1, + sym_gnu_asm_expression, + STATE(1806), 1, + aux_sym_declaration_repeat1, + ACTIONS(4261), 2, + anon_sym_asm, + anon_sym___asm__, + [68207] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4186), 1, + ACTIONS(4257), 1, anon_sym_COMMA, - ACTIONS(4213), 1, + ACTIONS(4286), 1, anon_sym_SEMI, - STATE(1568), 1, - sym_gnu_asm_expression, - STATE(1569), 1, + STATE(1916), 1, aux_sym_declaration_repeat1, - ACTIONS(4190), 2, + STATE(1923), 1, + sym_gnu_asm_expression, + ACTIONS(4261), 2, anon_sym_asm, anon_sym___asm__, - [60631] = 3, + [68227] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4215), 2, + ACTIONS(4288), 2, anon_sym_RBRACE, sym_identifier, - ACTIONS(4217), 4, + ACTIONS(4290), 4, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, - [60645] = 5, + [68241] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3772), 1, + ACTIONS(3825), 1, anon_sym_LPAREN2, - ACTIONS(4221), 1, + ACTIONS(4265), 1, anon_sym_LBRACK, - STATE(1506), 1, + STATE(1690), 1, sym_parameter_list, - ACTIONS(4219), 3, + ACTIONS(4292), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - [60663] = 3, + [68259] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4223), 2, + ACTIONS(4294), 2, anon_sym_RBRACE, sym_identifier, - ACTIONS(4225), 4, + ACTIONS(4296), 4, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, - [60677] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4186), 1, - anon_sym_COMMA, - ACTIONS(4227), 1, - anon_sym_SEMI, - STATE(1546), 1, - aux_sym_declaration_repeat1, - STATE(1661), 1, - sym_gnu_asm_expression, - ACTIONS(4190), 2, - anon_sym_asm, - anon_sym___asm__, - [60697] = 3, + [68273] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4229), 2, + ACTIONS(4298), 2, anon_sym_RBRACE, sym_identifier, - ACTIONS(4231), 4, + ACTIONS(4300), 4, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, - [60711] = 5, + [68287] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3772), 1, - anon_sym_LPAREN2, - ACTIONS(4221), 1, - anon_sym_LBRACK, - STATE(1506), 1, - sym_parameter_list, - ACTIONS(4233), 3, + ACTIONS(4257), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [60729] = 6, + ACTIONS(4302), 1, + anon_sym_SEMI, + STATE(1828), 1, + sym_gnu_asm_expression, + STATE(1829), 1, + aux_sym_declaration_repeat1, + ACTIONS(4261), 2, + anon_sym_asm, + anon_sym___asm__, + [68307] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4186), 1, + ACTIONS(4257), 1, anon_sym_COMMA, - ACTIONS(4235), 1, + ACTIONS(4304), 1, anon_sym_SEMI, - STATE(1595), 1, + STATE(1908), 1, + sym_gnu_asm_expression, + STATE(1909), 1, aux_sym_declaration_repeat1, - STATE(1596), 1, + ACTIONS(4261), 2, + anon_sym_asm, + anon_sym___asm__, + [68327] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4257), 1, + anon_sym_COMMA, + ACTIONS(4306), 1, + anon_sym_SEMI, + STATE(1836), 1, sym_gnu_asm_expression, - ACTIONS(4190), 2, + STATE(1842), 1, + aux_sym_declaration_repeat1, + ACTIONS(4261), 2, anon_sym_asm, anon_sym___asm__, - [60749] = 4, + [68347] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4237), 1, - anon_sym_LPAREN2, - STATE(1453), 2, - sym_gnu_asm_qualifier, - aux_sym_gnu_asm_expression_repeat1, - ACTIONS(4178), 3, - anon_sym_inline, - anon_sym_volatile, - anon_sym_goto, - [60765] = 3, + ACTIONS(4257), 1, + anon_sym_COMMA, + ACTIONS(4308), 1, + anon_sym_SEMI, + STATE(1797), 1, + sym_gnu_asm_expression, + STATE(1925), 1, + aux_sym_declaration_repeat1, + ACTIONS(4261), 2, + anon_sym_asm, + anon_sym___asm__, + [68367] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4131), 1, - aux_sym_preproc_elif_token1, - ACTIONS(4129), 5, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - sym_identifier, - [60779] = 5, + STATE(2247), 1, + sym_string_literal, + ACTIONS(103), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [68381] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3772), 1, + ACTIONS(3825), 1, anon_sym_LPAREN2, - ACTIONS(4221), 1, + ACTIONS(4265), 1, anon_sym_LBRACK, - STATE(1506), 1, + STATE(1690), 1, sym_parameter_list, - ACTIONS(4239), 3, + ACTIONS(4310), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - [60797] = 3, + [68399] = 5, ACTIONS(3), 1, sym_comment, - STATE(1806), 1, - sym_string_literal, - ACTIONS(101), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [60811] = 6, + ACTIONS(3825), 1, + anon_sym_LPAREN2, + ACTIONS(4265), 1, + anon_sym_LBRACK, + STATE(1690), 1, + sym_parameter_list, + ACTIONS(4312), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + [68417] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4186), 1, + ACTIONS(4257), 1, anon_sym_COMMA, - ACTIONS(4241), 1, + ACTIONS(4314), 1, anon_sym_SEMI, - STATE(1671), 1, + STATE(1904), 1, + sym_gnu_asm_expression, + STATE(1905), 1, aux_sym_declaration_repeat1, - STATE(1673), 1, + ACTIONS(4261), 2, + anon_sym_asm, + anon_sym___asm__, + [68437] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(39), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3825), 1, + anon_sym_LPAREN2, + ACTIONS(3999), 1, + anon_sym_LBRACK, + STATE(800), 1, + sym_parameter_list, + STATE(1492), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [68457] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4257), 1, + anon_sym_COMMA, + ACTIONS(4316), 1, + anon_sym_SEMI, + STATE(1773), 1, sym_gnu_asm_expression, - ACTIONS(4190), 2, + STATE(1774), 1, + aux_sym_declaration_repeat1, + ACTIONS(4261), 2, anon_sym_asm, anon_sym___asm__, - [60831] = 5, + [68477] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3772), 1, + ACTIONS(39), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3825), 1, anon_sym_LPAREN2, - ACTIONS(4221), 1, + ACTIONS(3999), 1, anon_sym_LBRACK, - STATE(1506), 1, + STATE(1257), 1, sym_parameter_list, - ACTIONS(4243), 3, + STATE(1492), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [68497] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4257), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [60849] = 3, + ACTIONS(4318), 1, + anon_sym_SEMI, + STATE(1844), 1, + sym_gnu_asm_expression, + STATE(1849), 1, + aux_sym_declaration_repeat1, + ACTIONS(4261), 2, + anon_sym_asm, + anon_sym___asm__, + [68517] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4257), 1, + anon_sym_COMMA, + ACTIONS(4320), 1, + anon_sym_SEMI, + STATE(1856), 1, + sym_gnu_asm_expression, + STATE(1857), 1, + aux_sym_declaration_repeat1, + ACTIONS(4261), 2, + anon_sym_asm, + anon_sym___asm__, + [68537] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4245), 2, + ACTIONS(4322), 2, anon_sym_RBRACE, sym_identifier, - ACTIONS(4247), 4, + ACTIONS(4324), 4, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, - [60863] = 6, + [68551] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(39), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3772), 1, + ACTIONS(3999), 1, + anon_sym_LBRACK, + ACTIONS(4326), 1, anon_sym_LPAREN2, - ACTIONS(3879), 1, + STATE(545), 1, + sym_parameter_list, + STATE(1492), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [68571] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4257), 1, + anon_sym_COMMA, + ACTIONS(4328), 1, + anon_sym_SEMI, + STATE(1815), 1, + aux_sym_declaration_repeat1, + STATE(1819), 1, + sym_gnu_asm_expression, + ACTIONS(4261), 2, + anon_sym_asm, + anon_sym___asm__, + [68591] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(39), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3999), 1, anon_sym_LBRACK, - STATE(1122), 1, + ACTIONS(4330), 1, + anon_sym_LPAREN2, + STATE(774), 1, sym_parameter_list, - STATE(1338), 2, + STATE(1492), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [60883] = 5, + [68611] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4332), 2, + anon_sym_RBRACE, + sym_identifier, + ACTIONS(4334), 4, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + [68625] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4336), 2, + anon_sym_RBRACE, + sym_identifier, + ACTIONS(4338), 4, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + [68639] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4257), 1, + anon_sym_COMMA, + ACTIONS(4340), 1, + anon_sym_SEMI, + STATE(1758), 1, + aux_sym_declaration_repeat1, + STATE(1897), 1, + sym_gnu_asm_expression, + ACTIONS(4261), 2, + anon_sym_asm, + anon_sym___asm__, + [68659] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3772), 1, + ACTIONS(3825), 1, anon_sym_LPAREN2, - ACTIONS(4221), 1, + ACTIONS(4265), 1, anon_sym_LBRACK, - STATE(1506), 1, + STATE(1690), 1, sym_parameter_list, - ACTIONS(4249), 3, + ACTIONS(4342), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - [60901] = 3, + [68677] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4257), 1, + anon_sym_COMMA, + ACTIONS(4344), 1, + anon_sym_SEMI, + STATE(1759), 1, + sym_gnu_asm_expression, + STATE(1760), 1, + aux_sym_declaration_repeat1, + ACTIONS(4261), 2, + anon_sym_asm, + anon_sym___asm__, + [68697] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4336), 2, + anon_sym_RBRACE, + sym_identifier, + ACTIONS(4338), 4, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + [68711] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4346), 1, + anon_sym_LPAREN2, + STATE(1641), 2, + sym_gnu_asm_qualifier, + aux_sym_gnu_asm_expression_repeat1, + ACTIONS(4269), 3, + anon_sym_inline, + anon_sym_volatile, + anon_sym_goto, + [68727] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4229), 2, + ACTIONS(4348), 2, anon_sym_RBRACE, sym_identifier, - ACTIONS(4231), 4, + ACTIONS(4350), 4, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, - [60915] = 3, + [68741] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4217), 1, + aux_sym_preproc_elif_token1, + ACTIONS(4215), 5, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_identifier, + [68755] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4257), 1, + anon_sym_COMMA, + ACTIONS(4352), 1, + anon_sym_SEMI, + STATE(1907), 1, + sym_gnu_asm_expression, + STATE(1911), 1, + aux_sym_declaration_repeat1, + ACTIONS(4261), 2, + anon_sym_asm, + anon_sym___asm__, + [68775] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4257), 1, + anon_sym_COMMA, + ACTIONS(4354), 1, + anon_sym_SEMI, + STATE(1757), 1, + sym_gnu_asm_expression, + STATE(1884), 1, + aux_sym_declaration_repeat1, + ACTIONS(4261), 2, + anon_sym_asm, + anon_sym___asm__, + [68795] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4251), 2, + ACTIONS(4356), 2, anon_sym_RBRACE, sym_identifier, - ACTIONS(4253), 4, + ACTIONS(4358), 4, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, - [60929] = 5, + [68809] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4257), 1, + anon_sym_COMMA, + ACTIONS(4360), 1, + anon_sym_SEMI, + STATE(1867), 1, + sym_gnu_asm_expression, + STATE(1868), 1, + aux_sym_declaration_repeat1, + ACTIONS(4261), 2, + anon_sym_asm, + anon_sym___asm__, + [68829] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3772), 1, + ACTIONS(3825), 1, anon_sym_LPAREN2, - ACTIONS(4221), 1, + ACTIONS(4265), 1, anon_sym_LBRACK, - STATE(1506), 1, + STATE(1690), 1, sym_parameter_list, - ACTIONS(4255), 3, + ACTIONS(4362), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - [60947] = 5, + [68847] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3772), 1, + ACTIONS(3825), 1, anon_sym_LPAREN2, - ACTIONS(4221), 1, + ACTIONS(4265), 1, anon_sym_LBRACK, - STATE(1506), 1, + STATE(1690), 1, sym_parameter_list, - ACTIONS(4257), 3, + ACTIONS(4364), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - [60965] = 6, + [68865] = 3, + ACTIONS(3), 1, + sym_comment, + STATE(2271), 1, + sym_string_literal, + ACTIONS(103), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [68879] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4186), 1, + ACTIONS(4257), 1, anon_sym_COMMA, - ACTIONS(4259), 1, + ACTIONS(4366), 1, anon_sym_SEMI, - STATE(1681), 1, - sym_gnu_asm_expression, - STATE(1682), 1, + STATE(1792), 1, aux_sym_declaration_repeat1, - ACTIONS(4190), 2, + STATE(1794), 1, + sym_gnu_asm_expression, + ACTIONS(4261), 2, anon_sym_asm, anon_sym___asm__, - [60985] = 6, + [68899] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4332), 2, + anon_sym_RBRACE, + sym_identifier, + ACTIONS(4334), 4, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + [68913] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4186), 1, + ACTIONS(4257), 1, anon_sym_COMMA, - ACTIONS(4261), 1, + ACTIONS(4368), 1, anon_sym_SEMI, - STATE(1617), 1, - aux_sym_declaration_repeat1, - STATE(1618), 1, + STATE(1887), 1, sym_gnu_asm_expression, - ACTIONS(4190), 2, + STATE(1888), 1, + aux_sym_declaration_repeat1, + ACTIONS(4261), 2, anon_sym_asm, anon_sym___asm__, - [61005] = 6, + [68933] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4186), 1, + ACTIONS(4257), 1, anon_sym_COMMA, - ACTIONS(4263), 1, + ACTIONS(4370), 1, anon_sym_SEMI, - STATE(1557), 1, + STATE(1762), 1, + sym_gnu_asm_expression, + STATE(1803), 1, aux_sym_declaration_repeat1, - STATE(1562), 1, + ACTIONS(4261), 2, + anon_sym_asm, + anon_sym___asm__, + [68953] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4257), 1, + anon_sym_COMMA, + ACTIONS(4372), 1, + anon_sym_SEMI, + STATE(1891), 1, sym_gnu_asm_expression, - ACTIONS(4190), 2, + STATE(1894), 1, + aux_sym_declaration_repeat1, + ACTIONS(4261), 2, anon_sym_asm, anon_sym___asm__, - [61025] = 2, + [68973] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4374), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACK, + anon_sym_COLON, + [68984] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4265), 5, + ACTIONS(4376), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [61036] = 2, + [68995] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(41), 1, + anon_sym___declspec, + ACTIONS(2406), 1, + anon_sym_LBRACE, + ACTIONS(4378), 1, + sym_identifier, + STATE(829), 1, + sym_field_declaration_list, + STATE(1869), 1, + sym_ms_declspec_modifier, + [69014] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4267), 5, + ACTIONS(4380), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [61047] = 6, - ACTIONS(3554), 1, + [69025] = 4, + ACTIONS(3), 1, + sym_comment, + STATE(2026), 1, + sym_gnu_asm_expression, + ACTIONS(4261), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(4382), 2, + anon_sym_COMMA, + anon_sym_SEMI, + [69040] = 4, + ACTIONS(3), 1, + sym_comment, + STATE(1993), 1, + sym_gnu_asm_expression, + ACTIONS(4261), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(4384), 2, + anon_sym_COMMA, + anon_sym_SEMI, + [69055] = 6, + ACTIONS(3643), 1, sym_comment, - ACTIONS(4269), 1, + ACTIONS(4386), 1, aux_sym_preproc_include_token2, - ACTIONS(4271), 1, + ACTIONS(4388), 1, anon_sym_LPAREN, - ACTIONS(4273), 1, + ACTIONS(4390), 1, aux_sym_preproc_arg_token1, - STATE(1645), 1, + STATE(1903), 1, sym_preproc_params, - STATE(1782), 1, + STATE(2143), 1, sym_preproc_arg, - [61066] = 2, + [69074] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4275), 5, + ACTIONS(4392), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [61077] = 6, - ACTIONS(3554), 1, + [69085] = 6, + ACTIONS(3643), 1, sym_comment, - ACTIONS(4271), 1, + ACTIONS(4388), 1, anon_sym_LPAREN, - ACTIONS(4273), 1, + ACTIONS(4390), 1, aux_sym_preproc_arg_token1, - ACTIONS(4277), 1, + ACTIONS(4394), 1, aux_sym_preproc_include_token2, - STATE(1679), 1, + STATE(1871), 1, sym_preproc_params, - STATE(1938), 1, + STATE(2195), 1, sym_preproc_arg, - [61096] = 2, + [69104] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4279), 5, + ACTIONS(4396), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [61107] = 4, + [69115] = 6, + ACTIONS(3643), 1, + sym_comment, + ACTIONS(4388), 1, + anon_sym_LPAREN, + ACTIONS(4390), 1, + aux_sym_preproc_arg_token1, + ACTIONS(4398), 1, + aux_sym_preproc_include_token2, + STATE(1847), 1, + sym_preproc_params, + STATE(2214), 1, + sym_preproc_arg, + [69134] = 4, ACTIONS(3), 1, sym_comment, - STATE(1733), 1, + STATE(1959), 1, sym_gnu_asm_expression, - ACTIONS(4190), 2, + ACTIONS(4261), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(4281), 2, + ACTIONS(4400), 2, anon_sym_COMMA, anon_sym_SEMI, - [61122] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(41), 1, - anon_sym___declspec, - ACTIONS(2439), 1, - anon_sym_LBRACE, - ACTIONS(4283), 1, - sym_identifier, - STATE(721), 1, - sym_field_declaration_list, - STATE(1641), 1, - sym_ms_declspec_modifier, - [61141] = 2, + [69149] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4285), 5, + ACTIONS(4402), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [61152] = 2, + [69160] = 6, + ACTIONS(3643), 1, + sym_comment, + ACTIONS(4388), 1, + anon_sym_LPAREN, + ACTIONS(4390), 1, + aux_sym_preproc_arg_token1, + ACTIONS(4404), 1, + aux_sym_preproc_include_token2, + STATE(1827), 1, + sym_preproc_params, + STATE(2050), 1, + sym_preproc_arg, + [69179] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4287), 5, + ACTIONS(4406), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [61163] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3772), 1, - anon_sym_LPAREN2, - ACTIONS(4221), 1, - anon_sym_LBRACK, - STATE(1506), 1, - sym_parameter_list, - ACTIONS(4124), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [61180] = 6, - ACTIONS(3554), 1, + [69190] = 6, + ACTIONS(3643), 1, sym_comment, - ACTIONS(4271), 1, + ACTIONS(4388), 1, anon_sym_LPAREN, - ACTIONS(4273), 1, + ACTIONS(4390), 1, aux_sym_preproc_arg_token1, - ACTIONS(4289), 1, + ACTIONS(4408), 1, aux_sym_preproc_include_token2, - STATE(1598), 1, + STATE(1878), 1, sym_preproc_params, - STATE(1864), 1, + STATE(2077), 1, sym_preproc_arg, - [61199] = 2, + [69209] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4291), 5, + ACTIONS(4410), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [61210] = 6, + [69220] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(41), 1, anon_sym___declspec, - ACTIONS(2439), 1, + ACTIONS(2406), 1, anon_sym_LBRACE, - ACTIONS(4293), 1, + ACTIONS(4412), 1, sym_identifier, - STATE(711), 1, + STATE(804), 1, sym_field_declaration_list, - STATE(1597), 1, + STATE(1876), 1, sym_ms_declspec_modifier, - [61229] = 6, + [69239] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3815), 1, - sym_identifier, - ACTIONS(4295), 1, - aux_sym_preproc_if_token2, - STATE(1439), 1, - sym_enumerator, - STATE(1512), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(1520), 1, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - [61248] = 6, - ACTIONS(3554), 1, + ACTIONS(4414), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACK, + anon_sym_COLON, + [69250] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4416), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACK, + anon_sym_COLON, + [69261] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4418), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACK, + anon_sym_COLON, + [69272] = 6, + ACTIONS(3643), 1, sym_comment, - ACTIONS(4271), 1, + ACTIONS(4388), 1, anon_sym_LPAREN, - ACTIONS(4273), 1, + ACTIONS(4390), 1, aux_sym_preproc_arg_token1, - ACTIONS(4297), 1, + ACTIONS(4420), 1, aux_sym_preproc_include_token2, - STATE(1586), 1, + STATE(1838), 1, sym_preproc_params, - STATE(1878), 1, + STATE(2060), 1, sym_preproc_arg, - [61267] = 6, - ACTIONS(3554), 1, + [69291] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(4271), 1, - anon_sym_LPAREN, - ACTIONS(4273), 1, - aux_sym_preproc_arg_token1, - ACTIONS(4299), 1, - aux_sym_preproc_include_token2, - STATE(1583), 1, - sym_preproc_params, - STATE(1924), 1, - sym_preproc_arg, - [61286] = 6, - ACTIONS(3554), 1, + ACTIONS(2486), 1, + anon_sym_LPAREN2, + ACTIONS(4424), 1, + anon_sym_COLON_COLON, + STATE(2014), 1, + sym_argument_list, + ACTIONS(4422), 2, + anon_sym_COMMA, + anon_sym_RBRACK_RBRACK, + [69308] = 6, + ACTIONS(3643), 1, sym_comment, - ACTIONS(4271), 1, + ACTIONS(4388), 1, anon_sym_LPAREN, - ACTIONS(4273), 1, + ACTIONS(4390), 1, aux_sym_preproc_arg_token1, - ACTIONS(4301), 1, + ACTIONS(4426), 1, aux_sym_preproc_include_token2, - STATE(1636), 1, + STATE(1921), 1, sym_preproc_params, - STATE(1801), 1, + STATE(2099), 1, sym_preproc_arg, - [61305] = 2, + [69327] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3898), 1, + sym_identifier, + ACTIONS(4428), 1, + aux_sym_preproc_if_token2, + STATE(1629), 1, + sym_enumerator, + STATE(1740), 1, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + STATE(1752), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + [69346] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4303), 5, + ACTIONS(4430), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [61316] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2395), 1, - anon_sym_LPAREN2, - ACTIONS(4307), 1, - anon_sym_COLON_COLON, - STATE(1695), 1, - sym_argument_list, - ACTIONS(4305), 2, - anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, - [61333] = 2, + [69357] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4309), 5, + ACTIONS(4432), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [61344] = 2, + [69368] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4311), 5, + ACTIONS(4434), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [61355] = 2, + [69379] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4313), 5, + ACTIONS(3825), 1, + anon_sym_LPAREN2, + ACTIONS(4265), 1, + anon_sym_LBRACK, + STATE(1690), 1, + sym_parameter_list, + ACTIONS(4197), 2, anon_sym_COMMA, anon_sym_RPAREN, + [69396] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3825), 1, anon_sym_LPAREN2, + ACTIONS(4265), 1, anon_sym_LBRACK, - anon_sym_COLON, - [61366] = 4, + ACTIONS(4436), 1, + anon_sym_RPAREN, + STATE(1690), 1, + sym_parameter_list, + [69412] = 4, ACTIONS(3), 1, sym_comment, - STATE(1687), 1, - sym_gnu_asm_expression, - ACTIONS(4190), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(4315), 2, + ACTIONS(4438), 1, anon_sym_COMMA, - anon_sym_SEMI, - [61381] = 2, + STATE(1720), 1, + aux_sym_gnu_asm_clobber_list_repeat1, + ACTIONS(4441), 2, + anon_sym_RPAREN, + anon_sym_COLON, + [69426] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4317), 5, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(4443), 1, + anon_sym___except, + ACTIONS(4445), 1, + anon_sym___finally, + STATE(94), 2, + sym_seh_except_clause, + sym_seh_finally_clause, + [69440] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3825), 1, anon_sym_LPAREN2, + ACTIONS(4265), 1, anon_sym_LBRACK, - anon_sym_COLON, - [61392] = 2, + ACTIONS(4447), 1, + anon_sym_RPAREN, + STATE(1690), 1, + sym_parameter_list, + [69456] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4449), 1, + anon_sym___except, + ACTIONS(4451), 1, + anon_sym___finally, + STATE(238), 2, + sym_seh_except_clause, + sym_seh_finally_clause, + [69470] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2486), 1, + anon_sym_LPAREN2, + STATE(1957), 1, + sym_argument_list, + ACTIONS(4453), 2, + anon_sym_COMMA, + anon_sym_RBRACK_RBRACK, + [69484] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4455), 1, + anon_sym___except, + ACTIONS(4457), 1, + anon_sym___finally, + STATE(191), 2, + sym_seh_except_clause, + sym_seh_finally_clause, + [69498] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4319), 5, + ACTIONS(4459), 1, anon_sym_COMMA, + ACTIONS(4461), 1, anon_sym_RPAREN, + STATE(1770), 1, + aux_sym__old_style_parameter_list_repeat1, + STATE(1865), 1, + aux_sym_parameter_list_repeat1, + [69514] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3825), 1, anon_sym_LPAREN2, + ACTIONS(4265), 1, anon_sym_LBRACK, - anon_sym_COLON, - [61403] = 6, - ACTIONS(3554), 1, - sym_comment, - ACTIONS(4271), 1, - anon_sym_LPAREN, - ACTIONS(4273), 1, - aux_sym_preproc_arg_token1, - ACTIONS(4321), 1, - aux_sym_preproc_include_token2, - STATE(1611), 1, - sym_preproc_params, - STATE(1845), 1, - sym_preproc_arg, - [61422] = 4, - ACTIONS(3554), 1, + ACTIONS(4463), 1, + anon_sym_RPAREN, + STATE(1690), 1, + sym_parameter_list, + [69530] = 4, + ACTIONS(3643), 1, sym_comment, - ACTIONS(4323), 1, + ACTIONS(4465), 1, anon_sym_SQUOTE, - STATE(1539), 1, + STATE(1744), 1, aux_sym_char_literal_repeat1, - ACTIONS(4325), 2, + ACTIONS(4467), 2, aux_sym_char_literal_token1, sym_escape_sequence, - [61436] = 5, + [69544] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3881), 1, + ACTIONS(3898), 1, sym_identifier, - ACTIONS(4327), 1, + ACTIONS(4469), 1, aux_sym_preproc_if_token2, - STATE(1423), 1, + STATE(1740), 2, + sym_enumerator, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + [69558] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4471), 1, + anon_sym_COMMA, + STATE(1720), 1, + aux_sym_gnu_asm_clobber_list_repeat1, + ACTIONS(4473), 2, + anon_sym_RPAREN, + anon_sym_COLON, + [69572] = 5, + ACTIONS(3643), 1, + sym_comment, + ACTIONS(4475), 1, + anon_sym_DQUOTE, + ACTIONS(4477), 1, + aux_sym_string_literal_token1, + ACTIONS(4479), 1, + sym_escape_sequence, + STATE(1743), 1, + aux_sym_string_literal_repeat1, + [69588] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4003), 1, + sym_identifier, + ACTIONS(4428), 1, + aux_sym_preproc_if_token2, + STATE(1752), 1, aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(2019), 1, + STATE(2109), 1, sym_enumerator, - [61452] = 5, - ACTIONS(3554), 1, + [69604] = 5, + ACTIONS(3643), 1, sym_comment, - ACTIONS(4329), 1, + ACTIONS(4481), 1, anon_sym_DQUOTE, - ACTIONS(4331), 1, + ACTIONS(4483), 1, aux_sym_string_literal_token1, - ACTIONS(4333), 1, + ACTIONS(4485), 1, sym_escape_sequence, - STATE(1532), 1, + STATE(1735), 1, + aux_sym_string_literal_repeat1, + [69620] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4487), 1, + anon_sym_COMMA, + STATE(1734), 1, + aux_sym_gnu_asm_input_operand_list_repeat1, + ACTIONS(4490), 2, + anon_sym_RPAREN, + anon_sym_COLON, + [69634] = 5, + ACTIONS(3643), 1, + sym_comment, + ACTIONS(4492), 1, + anon_sym_DQUOTE, + ACTIONS(4494), 1, + aux_sym_string_literal_token1, + ACTIONS(4497), 1, + sym_escape_sequence, + STATE(1735), 1, aux_sym_string_literal_repeat1, - [61468] = 2, + [69650] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4500), 1, + anon_sym_COMMA, + STATE(1736), 1, + aux_sym_gnu_asm_output_operand_list_repeat1, + ACTIONS(4503), 2, + anon_sym_RPAREN, + anon_sym_COLON, + [69664] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4335), 4, + ACTIONS(4505), 4, anon_sym_LPAREN2, anon_sym_inline, anon_sym_volatile, anon_sym_goto, - [61478] = 5, + [69674] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3772), 1, - anon_sym_LPAREN2, - ACTIONS(4221), 1, - anon_sym_LBRACK, - ACTIONS(4337), 1, + ACTIONS(4459), 1, + anon_sym_COMMA, + ACTIONS(4507), 1, anon_sym_RPAREN, - STATE(1506), 1, - sym_parameter_list, - [61494] = 4, + STATE(1770), 1, + aux_sym__old_style_parameter_list_repeat1, + STATE(1865), 1, + aux_sym_parameter_list_repeat1, + [69690] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3815), 1, + ACTIONS(4509), 4, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_asm, + anon_sym___asm__, + [69700] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3898), 1, sym_identifier, - ACTIONS(4339), 1, + ACTIONS(4511), 1, aux_sym_preproc_if_token2, - STATE(1520), 2, + STATE(1614), 2, sym_enumerator, aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - [61508] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4341), 1, - anon_sym___except, - ACTIONS(4343), 1, - anon_sym___finally, - STATE(164), 2, - sym_seh_except_clause, - sym_seh_finally_clause, - [61522] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4345), 1, - anon_sym_COMMA, - STATE(1518), 1, - aux_sym_gnu_asm_output_operand_list_repeat1, - ACTIONS(4348), 2, - anon_sym_RPAREN, - anon_sym_COLON, - [61536] = 4, + [69714] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4350), 1, + ACTIONS(4471), 1, anon_sym_COMMA, - STATE(1519), 1, + STATE(1730), 1, aux_sym_gnu_asm_clobber_list_repeat1, - ACTIONS(4353), 2, + ACTIONS(4513), 2, anon_sym_RPAREN, anon_sym_COLON, - [61550] = 4, + [69728] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3815), 1, - sym_identifier, - ACTIONS(4355), 1, - aux_sym_preproc_if_token2, - STATE(1424), 2, - sym_enumerator, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - [61564] = 5, - ACTIONS(3554), 1, + ACTIONS(4515), 1, + anon_sym___except, + ACTIONS(4517), 1, + anon_sym___finally, + STATE(194), 2, + sym_seh_except_clause, + sym_seh_finally_clause, + [69742] = 5, + ACTIONS(3643), 1, sym_comment, - ACTIONS(4357), 1, + ACTIONS(4483), 1, + aux_sym_string_literal_token1, + ACTIONS(4485), 1, + sym_escape_sequence, + ACTIONS(4519), 1, anon_sym_DQUOTE, - ACTIONS(4359), 1, + STATE(1735), 1, + aux_sym_string_literal_repeat1, + [69758] = 4, + ACTIONS(3643), 1, + sym_comment, + ACTIONS(4521), 1, + anon_sym_SQUOTE, + STATE(1744), 1, + aux_sym_char_literal_repeat1, + ACTIONS(4523), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [69772] = 4, + ACTIONS(3643), 1, + sym_comment, + ACTIONS(4526), 1, + anon_sym_SQUOTE, + STATE(1744), 1, + aux_sym_char_literal_repeat1, + ACTIONS(4467), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [69786] = 5, + ACTIONS(3643), 1, + sym_comment, + ACTIONS(4483), 1, aux_sym_string_literal_token1, - ACTIONS(4361), 1, + ACTIONS(4485), 1, sym_escape_sequence, - STATE(1543), 1, + ACTIONS(4528), 1, + anon_sym_DQUOTE, + STATE(1735), 1, aux_sym_string_literal_repeat1, - [61580] = 4, + [69802] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4363), 1, + ACTIONS(4530), 1, anon_sym_COMMA, - STATE(1518), 1, + STATE(1736), 1, aux_sym_gnu_asm_output_operand_list_repeat1, - ACTIONS(4365), 2, + ACTIONS(4532), 2, anon_sym_RPAREN, anon_sym_COLON, - [61594] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4367), 1, - anon_sym___except, - ACTIONS(4369), 1, - anon_sym___finally, - STATE(154), 2, - sym_seh_except_clause, - sym_seh_finally_clause, - [61608] = 4, + [69816] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4371), 1, + ACTIONS(4534), 1, anon_sym_COMMA, - STATE(1540), 1, + STATE(1734), 1, aux_sym_gnu_asm_input_operand_list_repeat1, - ACTIONS(4373), 2, + ACTIONS(4536), 2, anon_sym_RPAREN, anon_sym_COLON, - [61622] = 5, - ACTIONS(3554), 1, + [69830] = 5, + ACTIONS(3643), 1, sym_comment, - ACTIONS(4375), 1, + ACTIONS(4538), 1, anon_sym_DQUOTE, - ACTIONS(4377), 1, + ACTIONS(4540), 1, aux_sym_string_literal_token1, - ACTIONS(4379), 1, + ACTIONS(4542), 1, sym_escape_sequence, - STATE(1521), 1, + STATE(1733), 1, aux_sym_string_literal_repeat1, - [61638] = 5, - ACTIONS(3554), 1, + [69846] = 4, + ACTIONS(3643), 1, sym_comment, - ACTIONS(4359), 1, - aux_sym_string_literal_token1, - ACTIONS(4361), 1, + ACTIONS(4544), 1, + anon_sym_SQUOTE, + STATE(1744), 1, + aux_sym_char_literal_repeat1, + ACTIONS(4467), 2, + aux_sym_char_literal_token1, sym_escape_sequence, - ACTIONS(4381), 1, - anon_sym_DQUOTE, - STATE(1543), 1, - aux_sym_string_literal_repeat1, - [61654] = 5, - ACTIONS(3554), 1, + [69860] = 5, + ACTIONS(3643), 1, sym_comment, - ACTIONS(4383), 1, + ACTIONS(4546), 1, anon_sym_DQUOTE, - ACTIONS(4385), 1, + ACTIONS(4548), 1, aux_sym_string_literal_token1, - ACTIONS(4387), 1, + ACTIONS(4550), 1, sym_escape_sequence, - STATE(1526), 1, + STATE(1746), 1, aux_sym_string_literal_repeat1, - [61670] = 4, + [69876] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2395), 1, - anon_sym_LPAREN2, - STATE(1741), 1, - sym_argument_list, - ACTIONS(4389), 2, - anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, - [61684] = 4, + ACTIONS(4003), 1, + sym_identifier, + ACTIONS(4552), 1, + aux_sym_preproc_if_token2, + STATE(1615), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(2109), 1, + sym_enumerator, + [69892] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4391), 1, + ACTIONS(4530), 1, anon_sym_COMMA, - STATE(1530), 1, - aux_sym_gnu_asm_clobber_list_repeat1, - ACTIONS(4393), 2, + STATE(1747), 1, + aux_sym_gnu_asm_output_operand_list_repeat1, + ACTIONS(4554), 2, anon_sym_RPAREN, anon_sym_COLON, - [61698] = 4, + [69906] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4391), 1, + ACTIONS(4534), 1, anon_sym_COMMA, - STATE(1519), 1, - aux_sym_gnu_asm_clobber_list_repeat1, - ACTIONS(4395), 2, + STATE(1748), 1, + aux_sym_gnu_asm_input_operand_list_repeat1, + ACTIONS(4556), 2, anon_sym_RPAREN, anon_sym_COLON, - [61712] = 4, + [69920] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4397), 1, + ACTIONS(4558), 1, anon_sym___except, - ACTIONS(4399), 1, + ACTIONS(4560), 1, anon_sym___finally, - STATE(154), 2, + STATE(194), 2, sym_seh_except_clause, sym_seh_finally_clause, - [61726] = 5, - ACTIONS(3554), 1, + [69934] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(4359), 1, - aux_sym_string_literal_token1, - ACTIONS(4361), 1, - sym_escape_sequence, - ACTIONS(4401), 1, - anon_sym_DQUOTE, - STATE(1543), 1, - aux_sym_string_literal_repeat1, - [61742] = 5, + ACTIONS(4562), 1, + anon_sym_COMMA, + ACTIONS(4564), 1, + anon_sym_RPAREN, + STATE(1885), 1, + aux_sym_attribute_specifier_repeat1, + [69947] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3881), 1, - sym_identifier, - ACTIONS(4295), 1, - aux_sym_preproc_if_token2, - STATE(1512), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(2019), 1, - sym_enumerator, - [61758] = 4, + ACTIONS(4257), 1, + anon_sym_COMMA, + ACTIONS(4566), 1, + anon_sym_SEMI, + STATE(1895), 1, + aux_sym_declaration_repeat1, + [69960] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4403), 1, - anon_sym___except, - ACTIONS(4405), 1, - anon_sym___finally, - STATE(76), 2, - sym_seh_except_clause, - sym_seh_finally_clause, - [61772] = 4, - ACTIONS(3554), 1, + ACTIONS(4257), 1, + anon_sym_COMMA, + ACTIONS(4568), 1, + anon_sym_SEMI, + STATE(1834), 1, + aux_sym_declaration_repeat1, + [69973] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(4407), 1, - anon_sym_SQUOTE, - STATE(1539), 1, - aux_sym_char_literal_repeat1, - ACTIONS(4325), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [61786] = 4, + ACTIONS(4257), 1, + anon_sym_COMMA, + ACTIONS(4570), 1, + anon_sym_SEMI, + STATE(1775), 1, + aux_sym_declaration_repeat1, + [69986] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4409), 1, - anon_sym___except, - ACTIONS(4411), 1, - anon_sym___finally, - STATE(147), 2, - sym_seh_except_clause, - sym_seh_finally_clause, - [61800] = 4, - ACTIONS(3554), 1, + ACTIONS(4257), 1, + anon_sym_COMMA, + ACTIONS(4572), 1, + anon_sym_SEMI, + STATE(1834), 1, + aux_sym_declaration_repeat1, + [69999] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(4413), 1, - anon_sym_SQUOTE, - STATE(1539), 1, - aux_sym_char_literal_repeat1, - ACTIONS(4325), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [61814] = 4, + ACTIONS(4257), 1, + anon_sym_COMMA, + ACTIONS(4574), 1, + anon_sym_SEMI, + STATE(1834), 1, + aux_sym_declaration_repeat1, + [70012] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4371), 1, + ACTIONS(4257), 1, anon_sym_COMMA, - STATE(1524), 1, - aux_sym_gnu_asm_input_operand_list_repeat1, - ACTIONS(4415), 2, - anon_sym_RPAREN, - anon_sym_COLON, - [61828] = 4, - ACTIONS(3554), 1, + ACTIONS(4576), 1, + anon_sym_SEMI, + STATE(1789), 1, + aux_sym_declaration_repeat1, + [70025] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(4417), 1, - anon_sym_SQUOTE, - STATE(1539), 1, - aux_sym_char_literal_repeat1, - ACTIONS(4419), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [61842] = 4, + ACTIONS(4257), 1, + anon_sym_COMMA, + ACTIONS(4578), 1, + anon_sym_SEMI, + STATE(1834), 1, + aux_sym_declaration_repeat1, + [70038] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4422), 1, + ACTIONS(3334), 1, anon_sym_COMMA, - STATE(1540), 1, - aux_sym_gnu_asm_input_operand_list_repeat1, - ACTIONS(4425), 2, + ACTIONS(3336), 1, anon_sym_RPAREN, - anon_sym_COLON, - [61856] = 2, + STATE(1882), 1, + aux_sym_argument_list_repeat1, + [70051] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4427), 4, + ACTIONS(4257), 1, anon_sym_COMMA, + ACTIONS(4580), 1, anon_sym_SEMI, - anon_sym_asm, - anon_sym___asm__, - [61866] = 5, + STATE(1798), 1, + aux_sym_declaration_repeat1, + [70064] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3772), 1, - anon_sym_LPAREN2, - ACTIONS(4221), 1, - anon_sym_LBRACK, - ACTIONS(4429), 1, + ACTIONS(3583), 1, + anon_sym_COMMA, + ACTIONS(4582), 1, anon_sym_RPAREN, - STATE(1506), 1, - sym_parameter_list, - [61882] = 5, - ACTIONS(3554), 1, + STATE(1814), 1, + aux_sym_preproc_argument_list_repeat1, + [70077] = 4, + ACTIONS(3643), 1, sym_comment, - ACTIONS(4431), 1, - anon_sym_DQUOTE, - ACTIONS(4433), 1, - aux_sym_string_literal_token1, - ACTIONS(4436), 1, - sym_escape_sequence, - STATE(1543), 1, - aux_sym_string_literal_repeat1, - [61898] = 5, + ACTIONS(4390), 1, + aux_sym_preproc_arg_token1, + ACTIONS(4584), 1, + aux_sym_preproc_include_token2, + STATE(2265), 1, + sym_preproc_arg, + [70090] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4439), 1, + ACTIONS(4586), 1, anon_sym_COMMA, - ACTIONS(4441), 1, + ACTIONS(4588), 1, anon_sym_RPAREN, - STATE(1566), 1, - aux_sym__old_style_parameter_list_repeat1, - STATE(1662), 1, + STATE(1863), 1, aux_sym_parameter_list_repeat1, - [61914] = 4, + [70103] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4363), 1, + ACTIONS(3334), 1, anon_sym_COMMA, - STATE(1522), 1, - aux_sym_gnu_asm_output_operand_list_repeat1, - ACTIONS(4443), 2, + ACTIONS(4590), 1, anon_sym_RPAREN, - anon_sym_COLON, - [61928] = 4, + STATE(1882), 1, + aux_sym_argument_list_repeat1, + [70116] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4186), 1, + ACTIONS(4592), 1, anon_sym_COMMA, - ACTIONS(4445), 1, + ACTIONS(4594), 1, + anon_sym_RPAREN, + STATE(1889), 1, + aux_sym__old_style_parameter_list_repeat1, + [70129] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2948), 1, + anon_sym_LBRACE, + ACTIONS(4596), 1, + sym_identifier, + STATE(960), 1, + sym_enumerator_list, + [70142] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4257), 1, + anon_sym_COMMA, + ACTIONS(4598), 1, anon_sym_SEMI, - STATE(1668), 1, + STATE(1834), 1, aux_sym_declaration_repeat1, - [61941] = 4, + [70155] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4186), 1, + ACTIONS(4257), 1, anon_sym_COMMA, - ACTIONS(4447), 1, + ACTIONS(4600), 1, anon_sym_SEMI, - STATE(1668), 1, + STATE(1781), 1, aux_sym_declaration_repeat1, - [61954] = 4, + [70168] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3267), 1, + ACTIONS(4257), 1, anon_sym_COMMA, - ACTIONS(4449), 1, + ACTIONS(4602), 1, + anon_sym_SEMI, + STATE(1834), 1, + aux_sym_declaration_repeat1, + [70181] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4257), 1, + anon_sym_COMMA, + ACTIONS(4604), 1, + anon_sym_SEMI, + STATE(1834), 1, + aux_sym_declaration_repeat1, + [70194] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4606), 1, anon_sym_RPAREN, - STATE(1549), 1, + ACTIONS(4608), 1, + anon_sym_COLON, + STATE(1932), 1, + sym_gnu_asm_output_operand_list, + [70207] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3334), 1, + anon_sym_COMMA, + ACTIONS(4610), 1, + anon_sym_RPAREN, + STATE(1882), 1, aux_sym_argument_list_repeat1, - [61967] = 4, + [70220] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3373), 1, + ACTIONS(4612), 1, anon_sym_RPAREN, - ACTIONS(4451), 1, + ACTIONS(4614), 1, + anon_sym_COLON, + STATE(1796), 1, + sym_gnu_asm_input_operand_list, + [70233] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4616), 3, anon_sym_COMMA, - STATE(1549), 1, - aux_sym_argument_list_repeat1, - [61980] = 4, - ACTIONS(3554), 1, + anon_sym_RPAREN, + anon_sym_COLON, + [70242] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(4273), 1, - aux_sym_preproc_arg_token1, - ACTIONS(4454), 1, - aux_sym_preproc_include_token2, - STATE(1922), 1, - sym_preproc_arg, - [61993] = 4, + ACTIONS(4257), 1, + anon_sym_COMMA, + ACTIONS(4618), 1, + anon_sym_SEMI, + STATE(1834), 1, + aux_sym_declaration_repeat1, + [70255] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4257), 1, + anon_sym_COMMA, + ACTIONS(4620), 1, + anon_sym_SEMI, + STATE(1834), 1, + aux_sym_declaration_repeat1, + [70268] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3627), 1, + ACTIONS(4622), 3, + anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(4456), 1, + anon_sym_COLON, + [70277] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4624), 1, anon_sym_COMMA, - STATE(1551), 1, - aux_sym_preproc_argument_list_repeat1, - [62006] = 4, + ACTIONS(4627), 1, + anon_sym_RPAREN, + STATE(1783), 1, + aux_sym_gnu_asm_goto_list_repeat1, + [70290] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4459), 1, + ACTIONS(4257), 1, + anon_sym_COMMA, + ACTIONS(4629), 1, + anon_sym_SEMI, + STATE(1834), 1, + aux_sym_declaration_repeat1, + [70303] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4257), 1, + anon_sym_COMMA, + ACTIONS(4631), 1, + anon_sym_SEMI, + STATE(1809), 1, + aux_sym_declaration_repeat1, + [70316] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1869), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4633), 1, + sym_identifier, + STATE(1954), 1, + sym_variadic_parameter, + [70329] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4635), 1, anon_sym_COMMA, - ACTIONS(4462), 1, + ACTIONS(4637), 1, anon_sym_RPAREN, - STATE(1552), 1, - aux_sym_preproc_params_repeat1, - [62019] = 4, + STATE(1783), 1, + aux_sym_gnu_asm_goto_list_repeat1, + [70342] = 3, + ACTIONS(3643), 1, + sym_comment, + STATE(1728), 1, + aux_sym_char_literal_repeat1, + ACTIONS(4639), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [70353] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4257), 1, + anon_sym_COMMA, + ACTIONS(4641), 1, + anon_sym_SEMI, + STATE(1834), 1, + aux_sym_declaration_repeat1, + [70366] = 4, + ACTIONS(3643), 1, + sym_comment, + ACTIONS(4643), 1, + aux_sym_preproc_include_token2, + ACTIONS(4645), 1, + anon_sym_LPAREN2, + STATE(2147), 1, + sym_preproc_argument_list, + [70379] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4464), 1, + ACTIONS(4647), 3, anon_sym_COMMA, - ACTIONS(4467), 1, anon_sym_RPAREN, - STATE(1553), 1, - aux_sym_parameter_list_repeat1, - [62032] = 4, + anon_sym_COLON, + [70388] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4186), 1, + ACTIONS(4257), 1, anon_sym_COMMA, - ACTIONS(4469), 1, + ACTIONS(4649), 1, anon_sym_SEMI, - STATE(1668), 1, + STATE(1834), 1, aux_sym_declaration_repeat1, - [62045] = 4, + [70401] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3267), 1, + ACTIONS(4651), 3, anon_sym_COMMA, - ACTIONS(3279), 1, anon_sym_RPAREN, - STATE(1574), 1, - aux_sym_argument_list_repeat1, - [62058] = 4, + anon_sym_COLON, + [70410] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4186), 1, + ACTIONS(4257), 1, anon_sym_COMMA, - ACTIONS(4471), 1, + ACTIONS(4653), 1, + anon_sym_SEMI, + STATE(1800), 1, + aux_sym_declaration_repeat1, + [70423] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4655), 1, + anon_sym_COMMA, + ACTIONS(4658), 1, + anon_sym_RPAREN, + STATE(1795), 1, + aux_sym_generic_expression_repeat1, + [70436] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4660), 1, + anon_sym_RPAREN, + ACTIONS(4662), 1, + anon_sym_COLON, + STATE(1900), 1, + sym_gnu_asm_clobber_list, + [70449] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4257), 1, + anon_sym_COMMA, + ACTIONS(4664), 1, anon_sym_SEMI, - STATE(1668), 1, + STATE(1896), 1, aux_sym_declaration_repeat1, - [62071] = 4, + [70462] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4186), 1, + ACTIONS(4257), 1, anon_sym_COMMA, - ACTIONS(4473), 1, + ACTIONS(4666), 1, anon_sym_SEMI, - STATE(1668), 1, + STATE(1834), 1, aux_sym_declaration_repeat1, - [62084] = 2, + [70475] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4475), 3, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_DOT, - [62093] = 4, + ACTIONS(4668), 1, + anon_sym_COMMA, + ACTIONS(4671), 1, + anon_sym_RBRACK_RBRACK, + STATE(1799), 1, + aux_sym_attribute_declaration_repeat1, + [70488] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2039), 1, - anon_sym_RBRACE, - ACTIONS(4477), 1, + ACTIONS(4257), 1, anon_sym_COMMA, - STATE(1579), 1, - aux_sym_initializer_list_repeat1, - [62106] = 4, - ACTIONS(3), 1, + ACTIONS(4673), 1, + anon_sym_SEMI, + STATE(1834), 1, + aux_sym_declaration_repeat1, + [70501] = 3, + ACTIONS(4675), 1, + aux_sym_preproc_include_token2, + STATE(1924), 1, + aux_sym_preproc_arg_repeat1, + ACTIONS(4677), 2, + aux_sym_preproc_arg_token2, sym_comment, - ACTIONS(4479), 1, - anon_sym_RPAREN, - ACTIONS(4481), 1, - anon_sym_COLON, - STATE(1572), 1, - sym_gnu_asm_input_operand_list, - [62119] = 4, - ACTIONS(3), 1, + [70512] = 4, + ACTIONS(3643), 1, sym_comment, - ACTIONS(4483), 1, - anon_sym_RPAREN, - ACTIONS(4485), 1, - anon_sym_COLON, - STATE(1571), 1, - sym_gnu_asm_clobber_list, - [62132] = 4, + ACTIONS(4390), 1, + aux_sym_preproc_arg_token1, + ACTIONS(4679), 1, + aux_sym_preproc_include_token2, + STATE(2240), 1, + sym_preproc_arg, + [70525] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4186), 1, + ACTIONS(4257), 1, anon_sym_COMMA, - ACTIONS(4487), 1, + ACTIONS(4681), 1, anon_sym_SEMI, - STATE(1570), 1, + STATE(1834), 1, aux_sym_declaration_repeat1, - [62145] = 4, + [70538] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4489), 1, + ACTIONS(4257), 1, anon_sym_COMMA, - ACTIONS(4491), 1, - anon_sym_RPAREN, - STATE(1672), 1, - aux_sym_attribute_specifier_repeat1, - [62158] = 4, + ACTIONS(4683), 1, + anon_sym_SEMI, + STATE(1820), 1, + aux_sym_declaration_repeat1, + [70551] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2926), 1, + ACTIONS(2948), 1, anon_sym_LBRACE, - ACTIONS(4493), 1, + ACTIONS(4685), 1, sym_identifier, - STATE(856), 1, + STATE(1102), 1, sym_enumerator_list, - [62171] = 3, - ACTIONS(3554), 1, - sym_comment, - STATE(1535), 1, - aux_sym_char_literal_repeat1, - ACTIONS(4495), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [62182] = 4, + [70564] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4497), 1, + ACTIONS(4257), 1, anon_sym_COMMA, - ACTIONS(4499), 1, - anon_sym_RPAREN, - STATE(1578), 1, - aux_sym__old_style_parameter_list_repeat1, - [62195] = 3, - ACTIONS(3554), 1, + ACTIONS(4687), 1, + anon_sym_SEMI, + STATE(1834), 1, + aux_sym_declaration_repeat1, + [70577] = 2, + ACTIONS(3), 1, sym_comment, - STATE(1537), 1, - aux_sym_char_literal_repeat1, - ACTIONS(4501), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [62206] = 4, + ACTIONS(4689), 3, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_DOT, + [70586] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4186), 1, + ACTIONS(4691), 1, anon_sym_COMMA, - ACTIONS(4503), 1, - anon_sym_SEMI, - STATE(1587), 1, - aux_sym_declaration_repeat1, - [62219] = 4, + ACTIONS(4693), 1, + anon_sym_RBRACK_RBRACK, + STATE(1799), 1, + aux_sym_attribute_declaration_repeat1, + [70599] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4186), 1, + ACTIONS(4257), 1, anon_sym_COMMA, - ACTIONS(4505), 1, + ACTIONS(4695), 1, anon_sym_SEMI, - STATE(1668), 1, + STATE(1834), 1, aux_sym_declaration_repeat1, - [62232] = 4, + [70612] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4186), 1, + ACTIONS(4635), 1, anon_sym_COMMA, - ACTIONS(4507), 1, - anon_sym_SEMI, - STATE(1668), 1, - aux_sym_declaration_repeat1, - [62245] = 4, + ACTIONS(4697), 1, + anon_sym_RPAREN, + STATE(1787), 1, + aux_sym_gnu_asm_goto_list_repeat1, + [70625] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4509), 1, + ACTIONS(4699), 3, + anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(4511), 1, anon_sym_COLON, - STATE(1861), 1, - sym_gnu_asm_goto_list, - [62258] = 4, + [70634] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4485), 1, - anon_sym_COLON, - ACTIONS(4513), 1, + ACTIONS(4701), 3, + anon_sym_COMMA, anon_sym_RPAREN, - STATE(1610), 1, - sym_gnu_asm_clobber_list, - [62271] = 4, - ACTIONS(3554), 1, - sym_comment, - ACTIONS(4515), 1, - aux_sym_preproc_include_token2, - ACTIONS(4517), 1, - anon_sym_LPAREN2, - STATE(1865), 1, - sym_preproc_argument_list, - [62284] = 4, + anon_sym_COLON, + [70643] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3267), 1, + ACTIONS(4257), 1, anon_sym_COMMA, - ACTIONS(3269), 1, - anon_sym_RPAREN, - STATE(1549), 1, - aux_sym_argument_list_repeat1, - [62297] = 4, + ACTIONS(4703), 1, + anon_sym_SEMI, + STATE(1834), 1, + aux_sym_declaration_repeat1, + [70656] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4519), 1, + ACTIONS(3757), 1, + anon_sym_RPAREN, + ACTIONS(4705), 1, anon_sym_COMMA, - ACTIONS(4521), 1, - anon_sym_RBRACK_RBRACK, - STATE(1674), 1, - aux_sym_attribute_declaration_repeat1, - [62310] = 4, + STATE(1814), 1, + aux_sym_preproc_argument_list_repeat1, + [70669] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3267), 1, + ACTIONS(4257), 1, anon_sym_COMMA, - ACTIONS(3277), 1, - anon_sym_RPAREN, - STATE(1667), 1, - aux_sym_argument_list_repeat1, - [62323] = 4, + ACTIONS(4708), 1, + anon_sym_SEMI, + STATE(1834), 1, + aux_sym_declaration_repeat1, + [70682] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3518), 1, + ACTIONS(4586), 1, anon_sym_COMMA, - ACTIONS(4523), 1, + ACTIONS(4710), 1, anon_sym_RPAREN, - STATE(1551), 1, - aux_sym_preproc_argument_list_repeat1, - [62336] = 4, + STATE(1768), 1, + aux_sym_parameter_list_repeat1, + [70695] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4525), 1, + ACTIONS(3330), 1, anon_sym_COMMA, - ACTIONS(4528), 1, + ACTIONS(4712), 1, anon_sym_RPAREN, - STATE(1578), 1, - aux_sym__old_style_parameter_list_repeat1, - [62349] = 4, - ACTIONS(3), 1, + STATE(1795), 1, + aux_sym_generic_expression_repeat1, + [70708] = 4, + ACTIONS(3643), 1, sym_comment, - ACTIONS(3349), 1, - anon_sym_RBRACE, - ACTIONS(4530), 1, - anon_sym_COMMA, - STATE(1579), 1, - aux_sym_initializer_list_repeat1, - [62362] = 3, + ACTIONS(4645), 1, + anon_sym_LPAREN2, + ACTIONS(4714), 1, + aux_sym_preproc_include_token2, + STATE(2147), 1, + sym_preproc_argument_list, + [70721] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4533), 1, - anon_sym_EQ, - ACTIONS(4140), 2, + ACTIONS(4257), 1, anon_sym_COMMA, - anon_sym_RBRACE, - [62373] = 3, - ACTIONS(4535), 1, - aux_sym_preproc_include_token2, - STATE(1607), 1, - aux_sym_preproc_arg_repeat1, - ACTIONS(4537), 2, - aux_sym_preproc_arg_token2, - sym_comment, - [62384] = 2, + ACTIONS(4716), 1, + anon_sym_SEMI, + STATE(1780), 1, + aux_sym_declaration_repeat1, + [70734] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4539), 3, + ACTIONS(4257), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [62393] = 4, - ACTIONS(3554), 1, + ACTIONS(4718), 1, + anon_sym_SEMI, + STATE(1834), 1, + aux_sym_declaration_repeat1, + [70747] = 4, + ACTIONS(3643), 1, sym_comment, - ACTIONS(4273), 1, + ACTIONS(4390), 1, aux_sym_preproc_arg_token1, - ACTIONS(4541), 1, + ACTIONS(4720), 1, aux_sym_preproc_include_token2, - STATE(1943), 1, + STATE(2045), 1, sym_preproc_arg, - [62406] = 3, - ACTIONS(3554), 1, + [70760] = 4, + ACTIONS(3), 1, sym_comment, - STATE(1511), 1, - aux_sym_char_literal_repeat1, - ACTIONS(4543), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [62417] = 4, + ACTIONS(4722), 1, + anon_sym_COMMA, + ACTIONS(4725), 1, + anon_sym_RPAREN, + STATE(1822), 1, + aux_sym_preproc_params_repeat1, + [70773] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4519), 1, + ACTIONS(3318), 3, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_COLON, + [70782] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4691), 1, anon_sym_COMMA, - ACTIONS(4545), 1, + ACTIONS(4727), 1, anon_sym_RBRACK_RBRACK, - STATE(1630), 1, + STATE(1855), 1, aux_sym_attribute_declaration_repeat1, - [62430] = 4, - ACTIONS(3554), 1, - sym_comment, - ACTIONS(4273), 1, - aux_sym_preproc_arg_token1, - ACTIONS(4547), 1, - aux_sym_preproc_include_token2, - STATE(1879), 1, - sym_preproc_arg, - [62443] = 4, + [70795] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4186), 1, + ACTIONS(4257), 1, anon_sym_COMMA, - ACTIONS(4549), 1, + ACTIONS(4729), 1, anon_sym_SEMI, - STATE(1668), 1, + STATE(1830), 1, aux_sym_declaration_repeat1, - [62456] = 4, + [70808] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3267), 1, + ACTIONS(4691), 1, anon_sym_COMMA, - ACTIONS(4551), 1, - anon_sym_RPAREN, - STATE(1549), 1, - aux_sym_argument_list_repeat1, - [62469] = 4, - ACTIONS(3554), 1, + ACTIONS(4731), 1, + anon_sym_RBRACK_RBRACK, + STATE(1808), 1, + aux_sym_attribute_declaration_repeat1, + [70821] = 4, + ACTIONS(3643), 1, sym_comment, - ACTIONS(4273), 1, + ACTIONS(4390), 1, aux_sym_preproc_arg_token1, - ACTIONS(4553), 1, + ACTIONS(4733), 1, aux_sym_preproc_include_token2, - STATE(1876), 1, + STATE(2057), 1, sym_preproc_arg, - [62482] = 4, + [70834] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4186), 1, + ACTIONS(4257), 1, anon_sym_COMMA, - ACTIONS(4555), 1, + ACTIONS(4735), 1, anon_sym_SEMI, - STATE(1668), 1, + STATE(1850), 1, aux_sym_declaration_repeat1, - [62495] = 4, + [70847] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4186), 1, + ACTIONS(4257), 1, anon_sym_COMMA, - ACTIONS(4557), 1, + ACTIONS(4737), 1, anon_sym_SEMI, - STATE(1668), 1, + STATE(1834), 1, aux_sym_declaration_repeat1, - [62508] = 4, + [70860] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4186), 1, + ACTIONS(4257), 1, anon_sym_COMMA, - ACTIONS(4559), 1, + ACTIONS(4739), 1, anon_sym_SEMI, - STATE(1668), 1, + STATE(1834), 1, aux_sym_declaration_repeat1, - [62521] = 4, + [70873] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4186), 1, + ACTIONS(4741), 1, + anon_sym_EQ, + ACTIONS(4199), 2, anon_sym_COMMA, - ACTIONS(4561), 1, - anon_sym_SEMI, - STATE(1590), 1, - aux_sym_declaration_repeat1, - [62534] = 4, + anon_sym_RBRACE, + [70884] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4186), 1, + ACTIONS(4586), 1, anon_sym_COMMA, - ACTIONS(4563), 1, - anon_sym_SEMI, - STATE(1668), 1, - aux_sym_declaration_repeat1, - [62547] = 4, + ACTIONS(4743), 1, + anon_sym_RPAREN, + STATE(1865), 1, + aux_sym_parameter_list_repeat1, + [70897] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4186), 1, + ACTIONS(4257), 1, anon_sym_COMMA, - ACTIONS(4565), 1, + ACTIONS(4745), 1, anon_sym_SEMI, - STATE(1668), 1, + STATE(1834), 1, aux_sym_declaration_repeat1, - [62560] = 4, + [70910] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4186), 1, + ACTIONS(4747), 1, anon_sym_COMMA, - ACTIONS(4567), 1, + ACTIONS(4750), 1, anon_sym_SEMI, - STATE(1591), 1, + STATE(1834), 1, aux_sym_declaration_repeat1, - [62573] = 4, + [70923] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2439), 1, - anon_sym_LBRACE, - ACTIONS(4569), 1, - sym_identifier, - STATE(705), 1, - sym_field_declaration_list, - [62586] = 4, - ACTIONS(3554), 1, - sym_comment, - ACTIONS(4273), 1, - aux_sym_preproc_arg_token1, - ACTIONS(4571), 1, - aux_sym_preproc_include_token2, - STATE(1869), 1, - sym_preproc_arg, - [62599] = 4, + ACTIONS(4752), 1, + anon_sym_RPAREN, + ACTIONS(4754), 1, + anon_sym_COLON, + STATE(2251), 1, + sym_gnu_asm_goto_list, + [70936] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4186), 1, + ACTIONS(4257), 1, anon_sym_COMMA, - ACTIONS(4573), 1, + ACTIONS(4756), 1, anon_sym_SEMI, - STATE(1556), 1, + STATE(1852), 1, aux_sym_declaration_repeat1, - [62612] = 4, + [70949] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4186), 1, + ACTIONS(3334), 1, anon_sym_COMMA, - ACTIONS(4575), 1, - anon_sym_SEMI, - STATE(1594), 1, - aux_sym_declaration_repeat1, - [62625] = 4, - ACTIONS(3554), 1, + ACTIONS(3342), 1, + anon_sym_RPAREN, + STATE(1882), 1, + aux_sym_argument_list_repeat1, + [70962] = 4, + ACTIONS(3643), 1, sym_comment, - ACTIONS(4273), 1, + ACTIONS(4390), 1, aux_sym_preproc_arg_token1, - ACTIONS(4577), 1, + ACTIONS(4758), 1, aux_sym_preproc_include_token2, - STATE(1860), 1, + STATE(2037), 1, sym_preproc_arg, - [62638] = 4, + [70975] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4186), 1, + ACTIONS(3583), 1, anon_sym_COMMA, - ACTIONS(4579), 1, - anon_sym_SEMI, - STATE(1668), 1, - aux_sym_declaration_repeat1, - [62651] = 4, + ACTIONS(4760), 1, + anon_sym_RPAREN, + STATE(1814), 1, + aux_sym_preproc_argument_list_repeat1, + [70988] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4186), 1, + ACTIONS(4257), 1, anon_sym_COMMA, - ACTIONS(4581), 1, + ACTIONS(4762), 1, anon_sym_SEMI, - STATE(1668), 1, + STATE(1813), 1, aux_sym_declaration_repeat1, - [62664] = 4, + [71001] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3334), 1, + anon_sym_COMMA, + ACTIONS(3354), 1, + anon_sym_RPAREN, + STATE(1764), 1, + aux_sym_argument_list_repeat1, + [71014] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4186), 1, + ACTIONS(4257), 1, anon_sym_COMMA, - ACTIONS(4583), 1, + ACTIONS(4764), 1, anon_sym_SEMI, - STATE(1668), 1, + STATE(1834), 1, aux_sym_declaration_repeat1, - [62677] = 4, + [71027] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4186), 1, + ACTIONS(4257), 1, anon_sym_COMMA, - ACTIONS(4585), 1, + ACTIONS(4766), 1, anon_sym_SEMI, - STATE(1602), 1, + STATE(1870), 1, aux_sym_declaration_repeat1, - [62690] = 4, + [71040] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4186), 1, + ACTIONS(4257), 1, anon_sym_COMMA, - ACTIONS(4587), 1, + ACTIONS(4768), 1, anon_sym_SEMI, - STATE(1668), 1, + STATE(1858), 1, aux_sym_declaration_repeat1, - [62703] = 3, - ACTIONS(4589), 1, + [71053] = 3, + ACTIONS(4770), 1, aux_sym_preproc_include_token2, - STATE(1664), 1, + STATE(1845), 1, aux_sym_preproc_arg_repeat1, - ACTIONS(4591), 2, + ACTIONS(4772), 2, aux_sym_preproc_arg_token2, sym_comment, - [62714] = 4, + [71064] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4186), 1, + ACTIONS(4775), 1, anon_sym_COMMA, - ACTIONS(4593), 1, - anon_sym_SEMI, - STATE(1668), 1, - aux_sym_declaration_repeat1, - [62727] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4186), 1, - anon_sym_COMMA, - ACTIONS(4595), 1, - anon_sym_SEMI, - STATE(1603), 1, - aux_sym_declaration_repeat1, - [62740] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4511), 1, - anon_sym_COLON, - ACTIONS(4597), 1, + ACTIONS(4777), 1, anon_sym_RPAREN, - STATE(1795), 1, - sym_gnu_asm_goto_list, - [62753] = 4, - ACTIONS(3554), 1, + STATE(1822), 1, + aux_sym_preproc_params_repeat1, + [71077] = 4, + ACTIONS(3643), 1, sym_comment, - ACTIONS(4273), 1, + ACTIONS(4390), 1, aux_sym_preproc_arg_token1, - ACTIONS(4599), 1, + ACTIONS(4779), 1, aux_sym_preproc_include_token2, - STATE(1851), 1, + STATE(2164), 1, sym_preproc_arg, - [62766] = 4, + [71090] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4519), 1, + ACTIONS(4781), 3, anon_sym_COMMA, - ACTIONS(4601), 1, - anon_sym_RBRACK_RBRACK, - STATE(1575), 1, - aux_sym_attribute_declaration_repeat1, - [62779] = 4, + anon_sym_RPAREN, + anon_sym_COLON, + [71099] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4186), 1, + ACTIONS(4257), 1, anon_sym_COMMA, - ACTIONS(4603), 1, + ACTIONS(4783), 1, anon_sym_SEMI, - STATE(1606), 1, + STATE(1834), 1, aux_sym_declaration_repeat1, - [62792] = 4, - ACTIONS(3554), 1, - sym_comment, - ACTIONS(4273), 1, - aux_sym_preproc_arg_token1, - ACTIONS(4605), 1, - aux_sym_preproc_include_token2, - STATE(1840), 1, - sym_preproc_arg, - [62805] = 4, + [71112] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4186), 1, + ACTIONS(4257), 1, anon_sym_COMMA, - ACTIONS(4607), 1, + ACTIONS(4785), 1, anon_sym_SEMI, - STATE(1668), 1, + STATE(1834), 1, aux_sym_declaration_repeat1, - [62818] = 4, + [71125] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4186), 1, + ACTIONS(4257), 1, anon_sym_COMMA, - ACTIONS(4609), 1, + ACTIONS(4787), 1, anon_sym_SEMI, - STATE(1668), 1, + STATE(1834), 1, aux_sym_declaration_repeat1, - [62831] = 4, + [71138] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4186), 1, + ACTIONS(4257), 1, anon_sym_COMMA, - ACTIONS(4611), 1, + ACTIONS(4789), 1, anon_sym_SEMI, - STATE(1668), 1, + STATE(1834), 1, aux_sym_declaration_repeat1, - [62844] = 4, + [71151] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4186), 1, + ACTIONS(4257), 1, anon_sym_COMMA, - ACTIONS(4613), 1, + ACTIONS(4791), 1, anon_sym_SEMI, - STATE(1615), 1, + STATE(1834), 1, aux_sym_declaration_repeat1, - [62857] = 4, - ACTIONS(3554), 1, - sym_comment, - ACTIONS(4517), 1, - anon_sym_LPAREN2, - ACTIONS(4615), 1, - aux_sym_preproc_include_token2, - STATE(1865), 1, - sym_preproc_argument_list, - [62870] = 2, + [71164] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4617), 3, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_DOT, - [62879] = 4, + ACTIONS(4257), 1, + anon_sym_COMMA, + ACTIONS(4793), 1, + anon_sym_SEMI, + STATE(1761), 1, + aux_sym_declaration_repeat1, + [71177] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4619), 1, - anon_sym_RPAREN, - ACTIONS(4621), 1, - anon_sym_COLON, - STATE(1678), 1, - sym_gnu_asm_output_operand_list, - [62892] = 4, + ACTIONS(4691), 1, + anon_sym_COMMA, + ACTIONS(4795), 1, + anon_sym_RBRACK_RBRACK, + STATE(1799), 1, + aux_sym_attribute_declaration_repeat1, + [71190] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4186), 1, + ACTIONS(4257), 1, anon_sym_COMMA, - ACTIONS(4623), 1, + ACTIONS(4797), 1, anon_sym_SEMI, - STATE(1668), 1, + STATE(1860), 1, aux_sym_declaration_repeat1, - [62905] = 4, + [71203] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4186), 1, + ACTIONS(4257), 1, anon_sym_COMMA, - ACTIONS(4625), 1, + ACTIONS(4799), 1, anon_sym_SEMI, - STATE(1668), 1, + STATE(1834), 1, aux_sym_declaration_repeat1, - [62918] = 4, + [71216] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4186), 1, + ACTIONS(4257), 1, anon_sym_COMMA, - ACTIONS(4627), 1, + ACTIONS(4801), 1, anon_sym_SEMI, - STATE(1616), 1, + STATE(1834), 1, aux_sym_declaration_repeat1, - [62931] = 4, - ACTIONS(3), 1, + [71229] = 3, + ACTIONS(3643), 1, sym_comment, - ACTIONS(3281), 1, - anon_sym_COMMA, - ACTIONS(4629), 1, - anon_sym_RPAREN, - STATE(1643), 1, - aux_sym_generic_expression_repeat1, - [62944] = 2, + STATE(1745), 1, + aux_sym_char_literal_repeat1, + ACTIONS(4803), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [71240] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4631), 3, + ACTIONS(4257), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [62953] = 4, + ACTIONS(4805), 1, + anon_sym_SEMI, + STATE(1834), 1, + aux_sym_declaration_repeat1, + [71253] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2926), 1, + ACTIONS(2406), 1, anon_sym_LBRACE, - ACTIONS(4633), 1, + ACTIONS(4807), 1, sym_identifier, - STATE(995), 1, - sym_enumerator_list, - [62966] = 4, - ACTIONS(3554), 1, + STATE(804), 1, + sym_field_declaration_list, + [71266] = 4, + ACTIONS(3643), 1, sym_comment, - ACTIONS(4273), 1, + ACTIONS(4390), 1, aux_sym_preproc_arg_token1, - ACTIONS(4635), 1, + ACTIONS(4809), 1, aux_sym_preproc_include_token2, - STATE(1835), 1, + STATE(2073), 1, sym_preproc_arg, - [62979] = 2, + [71279] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4637), 3, + ACTIONS(4811), 1, anon_sym_COMMA, + ACTIONS(4814), 1, anon_sym_RPAREN, - anon_sym_COLON, - [62988] = 4, + STATE(1863), 1, + aux_sym_parameter_list_repeat1, + [71292] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4519), 1, + ACTIONS(4691), 1, anon_sym_COMMA, - ACTIONS(4639), 1, + ACTIONS(4816), 1, anon_sym_RBRACK_RBRACK, - STATE(1674), 1, + STATE(1799), 1, aux_sym_attribute_declaration_repeat1, - [63001] = 4, + [71305] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4641), 1, + ACTIONS(4586), 1, anon_sym_COMMA, - ACTIONS(4643), 1, + ACTIONS(4818), 1, anon_sym_RPAREN, - STATE(1649), 1, - aux_sym_gnu_asm_goto_list_repeat1, - [63014] = 4, + STATE(1863), 1, + aux_sym_parameter_list_repeat1, + [71318] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4186), 1, + ACTIONS(4820), 3, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_DOT, + [71327] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4257), 1, anon_sym_COMMA, - ACTIONS(4645), 1, + ACTIONS(4822), 1, anon_sym_SEMI, - STATE(1670), 1, + STATE(1910), 1, aux_sym_declaration_repeat1, - [63027] = 4, + [71340] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4186), 1, + ACTIONS(4257), 1, anon_sym_COMMA, - ACTIONS(4647), 1, + ACTIONS(4824), 1, anon_sym_SEMI, - STATE(1668), 1, + STATE(1834), 1, aux_sym_declaration_repeat1, - [63040] = 4, - ACTIONS(3554), 1, + [71353] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(4273), 1, - aux_sym_preproc_arg_token1, - ACTIONS(4649), 1, - aux_sym_preproc_include_token2, - STATE(1885), 1, - sym_preproc_arg, - [63053] = 4, + ACTIONS(2406), 1, + anon_sym_LBRACE, + ACTIONS(4826), 1, + sym_identifier, + STATE(825), 1, + sym_field_declaration_list, + [71366] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4186), 1, + ACTIONS(4257), 1, anon_sym_COMMA, - ACTIONS(4651), 1, + ACTIONS(4828), 1, anon_sym_SEMI, - STATE(1668), 1, + STATE(1834), 1, aux_sym_declaration_repeat1, - [63066] = 4, - ACTIONS(3554), 1, + [71379] = 4, + ACTIONS(3643), 1, sym_comment, - ACTIONS(4273), 1, + ACTIONS(4390), 1, aux_sym_preproc_arg_token1, - ACTIONS(4653), 1, + ACTIONS(4830), 1, aux_sym_preproc_include_token2, - STATE(1816), 1, + STATE(2224), 1, sym_preproc_arg, - [63079] = 4, + [71392] = 4, + ACTIONS(3643), 1, + sym_comment, + ACTIONS(4645), 1, + anon_sym_LPAREN2, + ACTIONS(4832), 1, + aux_sym_preproc_include_token2, + STATE(2147), 1, + sym_preproc_argument_list, + [71405] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2926), 1, - anon_sym_LBRACE, - ACTIONS(4655), 1, - sym_identifier, - STATE(995), 1, - sym_enumerator_list, - [63092] = 4, + ACTIONS(3346), 1, + anon_sym_COMMA, + ACTIONS(3348), 1, + anon_sym_RBRACE, + STATE(1880), 1, + aux_sym_initializer_list_repeat1, + [71418] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4186), 1, + ACTIONS(4257), 1, anon_sym_COMMA, - ACTIONS(4657), 1, + ACTIONS(4834), 1, anon_sym_SEMI, - STATE(1622), 1, + STATE(1851), 1, aux_sym_declaration_repeat1, - [63105] = 4, + [71431] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2439), 1, - anon_sym_LBRACE, - ACTIONS(4659), 1, - sym_identifier, - STATE(711), 1, - sym_field_declaration_list, - [63118] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4661), 3, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_DOT, - [63127] = 4, + ACTIONS(4257), 1, + anon_sym_COMMA, + ACTIONS(4836), 1, + anon_sym_SEMI, + STATE(1886), 1, + aux_sym_declaration_repeat1, + [71444] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2439), 1, + ACTIONS(2406), 1, anon_sym_LBRACE, - ACTIONS(4663), 1, + ACTIONS(4838), 1, sym_identifier, - STATE(730), 1, + STATE(812), 1, sym_field_declaration_list, - [63140] = 4, - ACTIONS(3554), 1, - sym_comment, - ACTIONS(4517), 1, - anon_sym_LPAREN2, - ACTIONS(4665), 1, - aux_sym_preproc_include_token2, - STATE(1865), 1, - sym_preproc_argument_list, - [63153] = 4, + [71457] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4667), 1, + ACTIONS(3420), 1, + anon_sym_RBRACE, + ACTIONS(4840), 1, anon_sym_COMMA, - ACTIONS(4670), 1, - anon_sym_RPAREN, - STATE(1643), 1, - aux_sym_generic_expression_repeat1, - [63166] = 4, - ACTIONS(3554), 1, + STATE(1877), 1, + aux_sym_initializer_list_repeat1, + [71470] = 4, + ACTIONS(3643), 1, sym_comment, - ACTIONS(4273), 1, + ACTIONS(4390), 1, aux_sym_preproc_arg_token1, - ACTIONS(4672), 1, + ACTIONS(4843), 1, aux_sym_preproc_include_token2, - STATE(1788), 1, + STATE(2083), 1, sym_preproc_arg, - [63179] = 4, - ACTIONS(3554), 1, + [71483] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(4273), 1, - aux_sym_preproc_arg_token1, - ACTIONS(4674), 1, - aux_sym_preproc_include_token2, - STATE(1934), 1, - sym_preproc_arg, - [63192] = 2, + ACTIONS(4257), 1, + anon_sym_COMMA, + ACTIONS(4845), 1, + anon_sym_SEMI, + STATE(1915), 1, + aux_sym_declaration_repeat1, + [71496] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4676), 3, + ACTIONS(2088), 1, + anon_sym_RBRACE, + ACTIONS(4847), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [63201] = 2, + STATE(1877), 1, + aux_sym_initializer_list_repeat1, + [71509] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4678), 3, + ACTIONS(4775), 1, anon_sym_COMMA, + ACTIONS(4849), 1, anon_sym_RPAREN, - anon_sym_COLON, - [63210] = 3, + STATE(1846), 1, + aux_sym_preproc_params_repeat1, + [71522] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4682), 1, + ACTIONS(3442), 1, anon_sym_RPAREN, - ACTIONS(4680), 2, - anon_sym_DOT_DOT_DOT, - sym_identifier, - [63221] = 4, + ACTIONS(4851), 1, + anon_sym_COMMA, + STATE(1882), 1, + aux_sym_argument_list_repeat1, + [71535] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4641), 1, + ACTIONS(4854), 3, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_DOT, + [71544] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4257), 1, + anon_sym_COMMA, + ACTIONS(4856), 1, + anon_sym_SEMI, + STATE(1834), 1, + aux_sym_declaration_repeat1, + [71557] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4858), 1, anon_sym_COMMA, - ACTIONS(4684), 1, + ACTIONS(4861), 1, anon_sym_RPAREN, - STATE(1652), 1, - aux_sym_gnu_asm_goto_list_repeat1, - [63234] = 4, - ACTIONS(3554), 1, + STATE(1885), 1, + aux_sym_attribute_specifier_repeat1, + [71570] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(4517), 1, - anon_sym_LPAREN2, - ACTIONS(4686), 1, - aux_sym_preproc_include_token2, - STATE(1865), 1, - sym_preproc_argument_list, - [63247] = 4, + ACTIONS(4257), 1, + anon_sym_COMMA, + ACTIONS(4863), 1, + anon_sym_SEMI, + STATE(1834), 1, + aux_sym_declaration_repeat1, + [71583] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4688), 1, + ACTIONS(4257), 1, anon_sym_COMMA, - ACTIONS(4690), 1, - anon_sym_RPAREN, - STATE(1663), 1, - aux_sym_preproc_params_repeat1, - [63260] = 4, + ACTIONS(4865), 1, + anon_sym_SEMI, + STATE(1906), 1, + aux_sym_declaration_repeat1, + [71596] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4692), 1, + ACTIONS(4257), 1, anon_sym_COMMA, - ACTIONS(4695), 1, - anon_sym_RPAREN, - STATE(1652), 1, - aux_sym_gnu_asm_goto_list_repeat1, - [63273] = 2, + ACTIONS(4867), 1, + anon_sym_SEMI, + STATE(1834), 1, + aux_sym_declaration_repeat1, + [71609] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4697), 3, + ACTIONS(4869), 1, anon_sym_COMMA, + ACTIONS(4872), 1, anon_sym_RPAREN, - anon_sym_COLON, - [63282] = 2, + STATE(1889), 1, + aux_sym__old_style_parameter_list_repeat1, + [71622] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4699), 3, + ACTIONS(4586), 1, anon_sym_COMMA, + ACTIONS(4874), 1, anon_sym_RPAREN, - anon_sym_COLON, - [63291] = 4, + STATE(1919), 1, + aux_sym_parameter_list_repeat1, + [71635] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4186), 1, + ACTIONS(4257), 1, anon_sym_COMMA, - ACTIONS(4701), 1, + ACTIONS(4876), 1, anon_sym_SEMI, - STATE(1668), 1, + STATE(1913), 1, aux_sym_declaration_repeat1, - [63304] = 4, - ACTIONS(3), 1, + [71648] = 4, + ACTIONS(3643), 1, sym_comment, - ACTIONS(4519), 1, - anon_sym_COMMA, - ACTIONS(4703), 1, - anon_sym_RBRACK_RBRACK, - STATE(1680), 1, - aux_sym_attribute_declaration_repeat1, - [63317] = 4, + ACTIONS(4390), 1, + aux_sym_preproc_arg_token1, + ACTIONS(4878), 1, + aux_sym_preproc_include_token2, + STATE(2072), 1, + sym_preproc_arg, + [71661] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4705), 1, + ACTIONS(3334), 1, anon_sym_COMMA, - ACTIONS(4708), 1, + ACTIONS(3344), 1, anon_sym_RPAREN, - STATE(1657), 1, - aux_sym_attribute_specifier_repeat1, - [63330] = 4, + STATE(1837), 1, + aux_sym_argument_list_repeat1, + [71674] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3518), 1, + ACTIONS(4257), 1, anon_sym_COMMA, - ACTIONS(4710), 1, - anon_sym_RPAREN, - STATE(1551), 1, - aux_sym_preproc_argument_list_repeat1, - [63343] = 4, + ACTIONS(4880), 1, + anon_sym_SEMI, + STATE(1834), 1, + aux_sym_declaration_repeat1, + [71687] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4186), 1, + ACTIONS(4257), 1, anon_sym_COMMA, - ACTIONS(4712), 1, + ACTIONS(4882), 1, anon_sym_SEMI, - STATE(1668), 1, + STATE(1834), 1, aux_sym_declaration_repeat1, - [63356] = 4, + [71700] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1789), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(4714), 1, - sym_identifier, - STATE(1729), 1, - sym_variadic_parameter, - [63369] = 4, + ACTIONS(4257), 1, + anon_sym_COMMA, + ACTIONS(4884), 1, + anon_sym_SEMI, + STATE(1834), 1, + aux_sym_declaration_repeat1, + [71713] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4186), 1, + ACTIONS(4257), 1, anon_sym_COMMA, - ACTIONS(4716), 1, + ACTIONS(4886), 1, anon_sym_SEMI, - STATE(1655), 1, + STATE(1772), 1, aux_sym_declaration_repeat1, - [63382] = 4, + [71726] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4718), 1, + ACTIONS(4662), 1, + anon_sym_COLON, + ACTIONS(4888), 1, + anon_sym_RPAREN, + STATE(1835), 1, + sym_gnu_asm_clobber_list, + [71739] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4691), 1, anon_sym_COMMA, - ACTIONS(4720), 1, + ACTIONS(4890), 1, + anon_sym_RBRACK_RBRACK, + STATE(1864), 1, + aux_sym_attribute_declaration_repeat1, + [71752] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4754), 1, + anon_sym_COLON, + ACTIONS(4892), 1, anon_sym_RPAREN, - STATE(1553), 1, - aux_sym_parameter_list_repeat1, - [63395] = 4, + STATE(2219), 1, + sym_gnu_asm_goto_list, + [71765] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4608), 1, + anon_sym_COLON, + ACTIONS(4894), 1, + anon_sym_RPAREN, + STATE(1778), 1, + sym_gnu_asm_output_operand_list, + [71778] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4688), 1, - anon_sym_COMMA, - ACTIONS(4722), 1, - anon_sym_RPAREN, - STATE(1552), 1, - aux_sym_preproc_params_repeat1, - [63408] = 3, - ACTIONS(4724), 1, + ACTIONS(4898), 1, + anon_sym_RPAREN, + ACTIONS(4896), 2, + anon_sym_DOT_DOT_DOT, + sym_identifier, + [71789] = 4, + ACTIONS(3643), 1, + sym_comment, + ACTIONS(4390), 1, + aux_sym_preproc_arg_token1, + ACTIONS(4900), 1, aux_sym_preproc_include_token2, - STATE(1664), 1, - aux_sym_preproc_arg_repeat1, - ACTIONS(4726), 2, - aux_sym_preproc_arg_token2, - sym_comment, - [63419] = 4, + STATE(2168), 1, + sym_preproc_arg, + [71802] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3518), 1, + ACTIONS(4257), 1, anon_sym_COMMA, - ACTIONS(4729), 1, - anon_sym_RPAREN, - STATE(1551), 1, - aux_sym_preproc_argument_list_repeat1, - [63432] = 4, + ACTIONS(4902), 1, + anon_sym_SEMI, + STATE(1928), 1, + aux_sym_declaration_repeat1, + [71815] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4718), 1, + ACTIONS(4257), 1, anon_sym_COMMA, - ACTIONS(4731), 1, - anon_sym_RPAREN, - STATE(1662), 1, - aux_sym_parameter_list_repeat1, - [63445] = 4, + ACTIONS(4904), 1, + anon_sym_SEMI, + STATE(1834), 1, + aux_sym_declaration_repeat1, + [71828] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3267), 1, + ACTIONS(4257), 1, anon_sym_COMMA, - ACTIONS(3271), 1, - anon_sym_RPAREN, - STATE(1549), 1, - aux_sym_argument_list_repeat1, - [63458] = 4, + ACTIONS(4906), 1, + anon_sym_SEMI, + STATE(1834), 1, + aux_sym_declaration_repeat1, + [71841] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4733), 1, + ACTIONS(4257), 1, anon_sym_COMMA, - ACTIONS(4736), 1, + ACTIONS(4908), 1, anon_sym_SEMI, - STATE(1668), 1, + STATE(1914), 1, aux_sym_declaration_repeat1, - [63471] = 2, + [71854] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3257), 3, - anon_sym_RPAREN, + ACTIONS(4257), 1, + anon_sym_COMMA, + ACTIONS(4910), 1, anon_sym_SEMI, - anon_sym_COLON, - [63480] = 4, + STATE(1931), 1, + aux_sym_declaration_repeat1, + [71867] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4186), 1, + ACTIONS(4257), 1, anon_sym_COMMA, - ACTIONS(4738), 1, + ACTIONS(4912), 1, anon_sym_SEMI, - STATE(1668), 1, + STATE(1834), 1, aux_sym_declaration_repeat1, - [63493] = 4, + [71880] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4186), 1, + ACTIONS(4257), 1, anon_sym_COMMA, - ACTIONS(4740), 1, + ACTIONS(4914), 1, anon_sym_SEMI, - STATE(1668), 1, + STATE(1834), 1, aux_sym_declaration_repeat1, - [63506] = 4, + [71893] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4489), 1, + ACTIONS(4257), 1, anon_sym_COMMA, - ACTIONS(4742), 1, - anon_sym_RPAREN, - STATE(1657), 1, - aux_sym_attribute_specifier_repeat1, - [63519] = 4, + ACTIONS(4916), 1, + anon_sym_SEMI, + STATE(1834), 1, + aux_sym_declaration_repeat1, + [71906] = 4, + ACTIONS(3643), 1, + sym_comment, + ACTIONS(4645), 1, + anon_sym_LPAREN2, + ACTIONS(4918), 1, + aux_sym_preproc_include_token2, + STATE(2147), 1, + sym_preproc_argument_list, + [71919] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4186), 1, + ACTIONS(4257), 1, anon_sym_COMMA, - ACTIONS(4744), 1, + ACTIONS(4920), 1, anon_sym_SEMI, - STATE(1554), 1, + STATE(1834), 1, aux_sym_declaration_repeat1, - [63532] = 4, + [71932] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4746), 1, + ACTIONS(4257), 1, anon_sym_COMMA, - ACTIONS(4749), 1, - anon_sym_RBRACK_RBRACK, - STATE(1674), 1, - aux_sym_attribute_declaration_repeat1, - [63545] = 4, + ACTIONS(4922), 1, + anon_sym_SEMI, + STATE(1834), 1, + aux_sym_declaration_repeat1, + [71945] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4186), 1, + ACTIONS(4257), 1, anon_sym_COMMA, - ACTIONS(4751), 1, + ACTIONS(4924), 1, anon_sym_SEMI, - STATE(1547), 1, + STATE(1834), 1, aux_sym_declaration_repeat1, - [63558] = 4, + [71958] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4186), 1, + ACTIONS(4257), 1, anon_sym_COMMA, - ACTIONS(4753), 1, + ACTIONS(4926), 1, anon_sym_SEMI, - STATE(1635), 1, + STATE(1834), 1, aux_sym_declaration_repeat1, - [63571] = 4, + [71971] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4621), 1, - anon_sym_COLON, - ACTIONS(4755), 1, + ACTIONS(3583), 1, + anon_sym_COMMA, + ACTIONS(4928), 1, anon_sym_RPAREN, - STATE(1560), 1, - sym_gnu_asm_output_operand_list, - [63584] = 4, + STATE(1814), 1, + aux_sym_preproc_argument_list_repeat1, + [71984] = 4, + ACTIONS(3643), 1, + sym_comment, + ACTIONS(4390), 1, + aux_sym_preproc_arg_token1, + ACTIONS(4930), 1, + aux_sym_preproc_include_token2, + STATE(2136), 1, + sym_preproc_arg, + [71997] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4481), 1, - anon_sym_COLON, - ACTIONS(4757), 1, + ACTIONS(4586), 1, + anon_sym_COMMA, + ACTIONS(4932), 1, anon_sym_RPAREN, - STATE(1561), 1, - sym_gnu_asm_input_operand_list, - [63597] = 4, - ACTIONS(3554), 1, + STATE(1863), 1, + aux_sym_parameter_list_repeat1, + [72010] = 4, + ACTIONS(3643), 1, sym_comment, - ACTIONS(4273), 1, + ACTIONS(4390), 1, aux_sym_preproc_arg_token1, - ACTIONS(4759), 1, + ACTIONS(4934), 1, aux_sym_preproc_include_token2, - STATE(1989), 1, + STATE(2097), 1, sym_preproc_arg, - [63610] = 4, - ACTIONS(3), 1, + [72023] = 4, + ACTIONS(3643), 1, sym_comment, - ACTIONS(4519), 1, - anon_sym_COMMA, - ACTIONS(4761), 1, - anon_sym_RBRACK_RBRACK, - STATE(1674), 1, - aux_sym_attribute_declaration_repeat1, - [63623] = 4, + ACTIONS(4390), 1, + aux_sym_preproc_arg_token1, + ACTIONS(4936), 1, + aux_sym_preproc_include_token2, + STATE(2100), 1, + sym_preproc_arg, + [72036] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4186), 1, + ACTIONS(4257), 1, anon_sym_COMMA, - ACTIONS(4763), 1, + ACTIONS(4938), 1, anon_sym_SEMI, - STATE(1659), 1, + STATE(1834), 1, aux_sym_declaration_repeat1, - [63636] = 4, + [72049] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4186), 1, + ACTIONS(4257), 1, anon_sym_COMMA, - ACTIONS(4765), 1, + ACTIONS(4940), 1, anon_sym_SEMI, - STATE(1668), 1, + STATE(1833), 1, aux_sym_declaration_repeat1, - [63649] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3263), 1, - anon_sym_COMMA, - ACTIONS(3265), 1, - anon_sym_RBRACE, - STATE(1559), 1, - aux_sym_initializer_list_repeat1, - [63662] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2395), 1, - anon_sym_LPAREN2, - STATE(2000), 1, - sym_argument_list, - [63672] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4767), 1, - anon_sym_LPAREN2, - STATE(374), 1, - sym_parenthesized_expression, - [63682] = 3, - ACTIONS(3), 1, + [72062] = 3, + ACTIONS(4942), 1, + aux_sym_preproc_include_token2, + STATE(1845), 1, + aux_sym_preproc_arg_repeat1, + ACTIONS(4944), 2, + aux_sym_preproc_arg_token2, sym_comment, - ACTIONS(2395), 1, - anon_sym_LPAREN2, - STATE(1799), 1, - sym_argument_list, - [63692] = 2, + [72073] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4281), 2, + ACTIONS(4257), 1, anon_sym_COMMA, + ACTIONS(4946), 1, anon_sym_SEMI, - [63700] = 2, - ACTIONS(3), 1, + STATE(1834), 1, + aux_sym_declaration_repeat1, + [72086] = 3, + ACTIONS(3643), 1, sym_comment, - ACTIONS(3373), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [63708] = 3, + STATE(1750), 1, + aux_sym_char_literal_repeat1, + ACTIONS(4948), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [72097] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4769), 1, + ACTIONS(2948), 1, + anon_sym_LBRACE, + ACTIONS(4950), 1, sym_identifier, - STATE(1707), 1, - sym_attribute, - [63718] = 2, + STATE(1102), 1, + sym_enumerator_list, + [72110] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4462), 2, + ACTIONS(4257), 1, anon_sym_COMMA, - anon_sym_RPAREN, - [63726] = 3, - ACTIONS(3554), 1, - sym_comment, - ACTIONS(4771), 1, - aux_sym_preproc_include_token2, - ACTIONS(4773), 1, - aux_sym_preproc_arg_token1, - [63736] = 2, + ACTIONS(4952), 1, + anon_sym_SEMI, + STATE(1834), 1, + aux_sym_declaration_repeat1, + [72123] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4467), 2, + ACTIONS(4257), 1, anon_sym_COMMA, - anon_sym_RPAREN, - [63744] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_LBRACE, - STATE(211), 1, - sym_compound_statement, - [63754] = 3, + ACTIONS(4954), 1, + anon_sym_SEMI, + STATE(1922), 1, + aux_sym_declaration_repeat1, + [72136] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2395), 1, - anon_sym_LPAREN2, - STATE(1932), 1, - sym_argument_list, - [63764] = 2, + ACTIONS(4257), 1, + anon_sym_COMMA, + ACTIONS(4956), 1, + anon_sym_SEMI, + STATE(1834), 1, + aux_sym_declaration_repeat1, + [72149] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4775), 2, + ACTIONS(4257), 1, anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, - [63772] = 3, + ACTIONS(4958), 1, + anon_sym_SEMI, + STATE(1834), 1, + aux_sym_declaration_repeat1, + [72162] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4769), 1, - sym_identifier, - STATE(1585), 1, - sym_attribute, - [63782] = 3, + ACTIONS(4614), 1, + anon_sym_COLON, + ACTIONS(4960), 1, + anon_sym_RPAREN, + STATE(1898), 1, + sym_gnu_asm_input_operand_list, + [72175] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(45), 1, - anon_sym_LBRACE, - STATE(1523), 1, - sym_compound_statement, - [63792] = 3, + ACTIONS(4562), 1, + anon_sym_COMMA, + ACTIONS(4962), 1, + anon_sym_RPAREN, + STATE(1756), 1, + aux_sym_attribute_specifier_repeat1, + [72188] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4767), 1, + ACTIONS(4964), 1, anon_sym_LPAREN2, - STATE(366), 1, + STATE(411), 1, sym_parenthesized_expression, - [63802] = 3, + [72198] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4777), 1, + ACTIONS(4964), 1, anon_sym_LPAREN2, - STATE(1776), 1, + STATE(419), 1, sym_parenthesized_expression, - [63812] = 3, + [72208] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4777), 1, + ACTIONS(4964), 1, anon_sym_LPAREN2, - STATE(1764), 1, + STATE(408), 1, sym_parenthesized_expression, - [63822] = 3, + [72218] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4767), 1, + ACTIONS(4966), 1, anon_sym_LPAREN2, - STATE(361), 1, + STATE(1955), 1, sym_parenthesized_expression, - [63832] = 3, + [72228] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4777), 1, - anon_sym_LPAREN2, - STATE(1768), 1, - sym_parenthesized_expression, - [63842] = 3, + ACTIONS(47), 1, + anon_sym_LBRACE, + STATE(184), 1, + sym_compound_statement, + [72238] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4777), 1, + ACTIONS(4964), 1, anon_sym_LPAREN2, - STATE(1825), 1, + STATE(424), 1, sym_parenthesized_expression, - [63852] = 3, + [72248] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4777), 1, - anon_sym_LPAREN2, - STATE(1743), 1, - sym_parenthesized_expression, - [63862] = 3, + ACTIONS(4968), 1, + sym_identifier, + STATE(1899), 1, + sym_attribute, + [72258] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(386), 1, + ACTIONS(47), 1, anon_sym_LBRACE, - STATE(211), 1, + STATE(1725), 1, sym_compound_statement, - [63872] = 3, + [72268] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(45), 1, - anon_sym_LBRACE, - STATE(1536), 1, - sym_compound_statement, - [63882] = 2, + ACTIONS(2486), 1, + anon_sym_LPAREN2, + STATE(2187), 1, + sym_argument_list, + [72278] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4749), 2, - anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, - [63890] = 2, + ACTIONS(2486), 1, + anon_sym_LPAREN2, + STATE(2171), 1, + sym_argument_list, + [72288] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3299), 2, - anon_sym_COMMA, - anon_sym_SEMI, - [63898] = 2, + ACTIONS(2486), 1, + anon_sym_LPAREN2, + STATE(2189), 1, + sym_argument_list, + [72298] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4315), 2, - anon_sym_COMMA, - anon_sym_SEMI, - [63906] = 3, + ACTIONS(2486), 1, + anon_sym_LPAREN2, + STATE(2193), 1, + sym_argument_list, + [72308] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4777), 1, + ACTIONS(2486), 1, anon_sym_LPAREN2, - STATE(1774), 1, - sym_parenthesized_expression, - [63916] = 3, + STATE(2169), 1, + sym_argument_list, + [72318] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2395), 1, + ACTIONS(4970), 1, + sym_identifier, + ACTIONS(4972), 1, anon_sym_LPAREN2, - STATE(1909), 1, - sym_argument_list, - [63926] = 3, + [72328] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2395), 1, + ACTIONS(2486), 1, anon_sym_LPAREN2, - STATE(1908), 1, + STATE(2122), 1, sym_argument_list, - [63936] = 3, + [72338] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2395), 1, + ACTIONS(2486), 1, anon_sym_LPAREN2, - STATE(1906), 1, + STATE(2206), 1, sym_argument_list, - [63946] = 3, + [72348] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4777), 1, + ACTIONS(2486), 1, anon_sym_LPAREN2, - STATE(1740), 1, - sym_parenthesized_expression, - [63956] = 3, + STATE(2126), 1, + sym_argument_list, + [72358] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2395), 1, + ACTIONS(2486), 1, anon_sym_LPAREN2, - STATE(1903), 1, + STATE(2209), 1, sym_argument_list, - [63966] = 3, + [72368] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4777), 1, + ACTIONS(4966), 1, anon_sym_LPAREN2, - STATE(1967), 1, + STATE(2249), 1, sym_parenthesized_expression, - [63976] = 3, + [72378] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2395), 1, - anon_sym_LPAREN2, - STATE(1898), 1, - sym_argument_list, - [63986] = 3, + ACTIONS(47), 1, + anon_sym_LBRACE, + STATE(223), 1, + sym_compound_statement, + [72388] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4872), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [72396] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(45), 1, + ACTIONS(391), 1, anon_sym_LBRACE, - STATE(1534), 1, + STATE(266), 1, sym_compound_statement, - [63996] = 2, + [72406] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4779), 2, - anon_sym_DOT_DOT_DOT, - sym_identifier, - [64004] = 3, + ACTIONS(391), 1, + anon_sym_LBRACE, + STATE(252), 1, + sym_compound_statement, + [72416] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4974), 2, + anon_sym_COMMA, + anon_sym_RBRACK_RBRACK, + [72424] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4976), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [72432] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4384), 2, + anon_sym_COMMA, + anon_sym_SEMI, + [72440] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2395), 1, + ACTIONS(4966), 1, anon_sym_LPAREN2, - STATE(1804), 1, - sym_argument_list, - [64014] = 3, - ACTIONS(3554), 1, + STATE(2027), 1, + sym_parenthesized_expression, + [72450] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4861), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [72458] = 3, + ACTIONS(3643), 1, sym_comment, - ACTIONS(4781), 1, + ACTIONS(4979), 1, aux_sym_preproc_include_token2, - ACTIONS(4783), 1, + ACTIONS(4981), 1, aux_sym_preproc_arg_token1, - [64024] = 3, + [72468] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(45), 1, - anon_sym_LBRACE, - STATE(247), 1, - sym_compound_statement, - [64034] = 2, + ACTIONS(4966), 1, + anon_sym_LPAREN2, + STATE(2296), 1, + sym_parenthesized_expression, + [72478] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4785), 2, + ACTIONS(3422), 2, anon_sym_COMMA, - anon_sym_RPAREN, - [64042] = 3, + anon_sym_RBRACE, + [72486] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2395), 1, + ACTIONS(2486), 1, anon_sym_LPAREN2, - STATE(1895), 1, + STATE(2098), 1, sym_argument_list, - [64052] = 3, + [72496] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym_LBRACE, + STATE(162), 1, + sym_compound_statement, + [72506] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4767), 1, + ACTIONS(2486), 1, anon_sym_LPAREN2, - STATE(359), 1, + STATE(2238), 1, + sym_argument_list, + [72516] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4968), 1, + sym_identifier, + STATE(1824), 1, + sym_attribute, + [72526] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4964), 1, + anon_sym_LPAREN2, + STATE(434), 1, sym_parenthesized_expression, - [64062] = 3, + [72536] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4777), 1, + ACTIONS(4966), 1, anon_sym_LPAREN2, - STATE(1730), 1, + STATE(1991), 1, sym_parenthesized_expression, - [64072] = 3, + [72546] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4767), 1, + ACTIONS(4964), 1, anon_sym_LPAREN2, - STATE(363), 1, + STATE(432), 1, sym_parenthesized_expression, - [64082] = 3, + [72556] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4769), 1, - sym_identifier, - STATE(1656), 1, - sym_attribute, - [64092] = 2, + ACTIONS(2486), 1, + anon_sym_LPAREN2, + STATE(2241), 1, + sym_argument_list, + [72566] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4528), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [64100] = 3, + ACTIONS(2486), 1, + anon_sym_LPAREN2, + STATE(2242), 1, + sym_argument_list, + [72576] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(135), 1, + ACTIONS(47), 1, anon_sym_LBRACE, - STATE(108), 1, + STATE(1721), 1, sym_compound_statement, - [64110] = 2, + [72586] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4787), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [64118] = 3, + ACTIONS(2486), 1, + anon_sym_LPAREN2, + STATE(2061), 1, + sym_argument_list, + [72596] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4790), 1, - sym_identifier, - ACTIONS(4792), 1, + ACTIONS(2486), 1, anon_sym_LPAREN2, - [64128] = 2, + STATE(2135), 1, + sym_argument_list, + [72606] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4794), 2, - anon_sym_COMMA, - anon_sym_SEMI, - [64136] = 3, + ACTIONS(455), 1, + anon_sym_LBRACE, + STATE(221), 1, + sym_compound_statement, + [72616] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4777), 1, - anon_sym_LPAREN2, - STATE(1744), 1, - sym_parenthesized_expression, - [64146] = 3, + ACTIONS(455), 1, + anon_sym_LBRACE, + STATE(273), 1, + sym_compound_statement, + [72626] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2395), 1, + ACTIONS(2486), 1, anon_sym_LPAREN2, - STATE(1786), 1, + STATE(2244), 1, sym_argument_list, - [64156] = 2, + [72636] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3317), 2, + ACTIONS(3420), 2, anon_sym_COMMA, anon_sym_RBRACE, - [64164] = 3, + [72644] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2395), 1, - anon_sym_LPAREN2, - STATE(1965), 1, - sym_argument_list, - [64174] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4708), 2, + ACTIONS(4983), 2, anon_sym_COMMA, anon_sym_RPAREN, - [64182] = 2, + [72652] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3349), 2, + ACTIONS(3416), 2, anon_sym_COMMA, anon_sym_RBRACE, - [64190] = 3, + [72660] = 3, + ACTIONS(3643), 1, + sym_comment, + ACTIONS(4985), 1, + aux_sym_preproc_include_token2, + ACTIONS(4987), 1, + aux_sym_preproc_arg_token1, + [72670] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(45), 1, - anon_sym_LBRACE, - STATE(233), 1, - sym_compound_statement, - [64200] = 2, + ACTIONS(2486), 1, + anon_sym_LPAREN2, + STATE(2137), 1, + sym_argument_list, + [72680] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4796), 2, + ACTIONS(4009), 1, + anon_sym_RBRACE, + ACTIONS(4989), 1, anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, - [64208] = 3, + [72690] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4777), 1, + ACTIONS(4991), 2, + anon_sym_DOT_DOT_DOT, + sym_identifier, + [72698] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4966), 1, anon_sym_LPAREN2, - STATE(2027), 1, + STATE(2152), 1, sym_parenthesized_expression, - [64218] = 3, + [72708] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4993), 1, + sym_identifier, + ACTIONS(4995), 1, + anon_sym_RPAREN, + [72718] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4382), 2, + anon_sym_COMMA, + anon_sym_SEMI, + [72726] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(386), 1, + ACTIONS(455), 1, anon_sym_LBRACE, - STATE(245), 1, + STATE(256), 1, sym_compound_statement, - [64228] = 3, + [72736] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(45), 1, + ACTIONS(137), 1, anon_sym_LBRACE, - STATE(245), 1, + STATE(112), 1, sym_compound_statement, - [64238] = 2, + [72746] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3327), 2, + ACTIONS(4966), 1, + anon_sym_LPAREN2, + STATE(1938), 1, + sym_parenthesized_expression, + [72756] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4997), 2, anon_sym_COMMA, - anon_sym_RBRACE, - [64246] = 3, + anon_sym_SEMI, + [72764] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2395), 1, - anon_sym_LPAREN2, - STATE(1974), 1, - sym_argument_list, - [64256] = 3, + ACTIONS(47), 1, + anon_sym_LBRACE, + STATE(1742), 1, + sym_compound_statement, + [72774] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2395), 1, + ACTIONS(4966), 1, anon_sym_LPAREN2, - STATE(1972), 1, - sym_argument_list, - [64266] = 3, + STATE(1977), 1, + sym_parenthesized_expression, + [72784] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4798), 1, + ACTIONS(4999), 1, anon_sym_RPAREN, - ACTIONS(4800), 1, + ACTIONS(5001), 1, sym_number_literal, - [64276] = 3, + [72794] = 3, + ACTIONS(3643), 1, + sym_comment, + ACTIONS(5003), 1, + aux_sym_preproc_include_token2, + ACTIONS(5005), 1, + aux_sym_preproc_arg_token1, + [72804] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2395), 1, - anon_sym_LPAREN2, - STATE(1810), 1, - sym_argument_list, - [64286] = 3, + ACTIONS(4725), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [72812] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(45), 1, + ACTIONS(47), 1, anon_sym_LBRACE, - STATE(1517), 1, + STATE(1723), 1, sym_compound_statement, - [64296] = 3, + [72822] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2395), 1, + ACTIONS(2486), 1, anon_sym_LPAREN2, - STATE(1814), 1, + STATE(2032), 1, sym_argument_list, - [64306] = 3, + [72832] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2395), 1, + ACTIONS(2486), 1, anon_sym_LPAREN2, - STATE(1812), 1, + STATE(2257), 1, sym_argument_list, - [64316] = 3, + [72842] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2395), 1, + ACTIONS(47), 1, + anon_sym_LBRACE, + STATE(231), 1, + sym_compound_statement, + [72852] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3396), 2, + anon_sym_COMMA, + anon_sym_SEMI, + [72860] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4966), 1, anon_sym_LPAREN2, - STATE(1809), 1, - sym_argument_list, - [64326] = 3, + STATE(2034), 1, + sym_parenthesized_expression, + [72870] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4767), 1, + ACTIONS(4966), 1, anon_sym_LPAREN2, - STATE(369), 1, + STATE(2017), 1, sym_parenthesized_expression, - [64336] = 3, + [72880] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4777), 1, + ACTIONS(4814), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [72888] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4964), 1, anon_sym_LPAREN2, - STATE(1763), 1, + STATE(413), 1, sym_parenthesized_expression, - [64346] = 3, + [72898] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4767), 1, + ACTIONS(4964), 1, anon_sym_LPAREN2, - STATE(358), 1, + STATE(441), 1, sym_parenthesized_expression, - [64356] = 3, - ACTIONS(3554), 1, + [72908] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(4802), 1, - aux_sym_preproc_include_token2, - ACTIONS(4804), 1, - aux_sym_preproc_arg_token1, - [64366] = 3, + ACTIONS(4966), 1, + anon_sym_LPAREN2, + STATE(1978), 1, + sym_parenthesized_expression, + [72918] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4769), 1, + ACTIONS(4968), 1, sym_identifier, - STATE(1612), 1, + STATE(2011), 1, sym_attribute, - [64376] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3893), 1, - anon_sym_RBRACE, - ACTIONS(4806), 1, - anon_sym_COMMA, - [64386] = 2, + [72928] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4808), 2, + ACTIONS(4671), 2, anon_sym_COMMA, - anon_sym_RPAREN, - [64394] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4810), 1, - sym_identifier, - ACTIONS(4812), 1, - anon_sym_RPAREN, - [64404] = 3, + anon_sym_RBRACK_RBRACK, + [72936] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4777), 1, + ACTIONS(4966), 1, anon_sym_LPAREN2, - STATE(2040), 1, + STATE(1956), 1, sym_parenthesized_expression, - [64414] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(386), 1, - anon_sym_LBRACE, - STATE(195), 1, - sym_compound_statement, - [64424] = 3, + [72946] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(524), 1, + ACTIONS(391), 1, anon_sym_LBRACE, - STATE(219), 1, + STATE(231), 1, sym_compound_statement, - [64434] = 3, + [72956] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(524), 1, - anon_sym_LBRACE, - STATE(207), 1, - sym_compound_statement, - [64444] = 3, + ACTIONS(5007), 2, + anon_sym_COMMA, + anon_sym_RBRACK_RBRACK, + [72964] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2395), 1, - anon_sym_LPAREN2, - STATE(1991), 1, - sym_argument_list, - [64454] = 3, + ACTIONS(4989), 1, + anon_sym_COMMA, + ACTIONS(5009), 1, + anon_sym_RBRACE, + [72974] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(45), 1, + ACTIONS(137), 1, anon_sym_LBRACE, - STATE(1531), 1, + STATE(83), 1, sym_compound_statement, - [64464] = 3, + [72984] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(135), 1, + ACTIONS(137), 1, anon_sym_LBRACE, - STATE(80), 1, + STATE(109), 1, sym_compound_statement, - [64474] = 3, + [72994] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4814), 1, + ACTIONS(5011), 1, sym_identifier, - ACTIONS(4816), 1, + ACTIONS(5013), 1, + anon_sym_LPAREN2, + [73004] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2486), 1, anon_sym_LPAREN2, - [64484] = 3, + STATE(2094), 1, + sym_argument_list, + [73014] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(135), 1, + ACTIONS(47), 1, anon_sym_LBRACE, - STATE(88), 1, + STATE(1755), 1, sym_compound_statement, - [64494] = 3, + [73024] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5015), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [73032] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2395), 1, + ACTIONS(4964), 1, anon_sym_LPAREN2, - STATE(1999), 1, - sym_argument_list, - [64504] = 3, + STATE(410), 1, + sym_parenthesized_expression, + [73042] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4767), 1, + ACTIONS(4966), 1, anon_sym_LPAREN2, - STATE(355), 1, + STATE(1966), 1, sym_parenthesized_expression, - [64514] = 3, + [73052] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4767), 1, + ACTIONS(4964), 1, anon_sym_LPAREN2, - STATE(376), 1, + STATE(409), 1, sym_parenthesized_expression, - [64524] = 3, + [73062] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(524), 1, - anon_sym_LBRACE, - STATE(186), 1, - sym_compound_statement, - [64534] = 3, + ACTIONS(4968), 1, + sym_identifier, + STATE(1826), 1, + sym_attribute, + [73072] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4767), 1, - anon_sym_LPAREN2, - STATE(352), 1, - sym_parenthesized_expression, - [64544] = 3, + ACTIONS(4400), 2, + anon_sym_COMMA, + anon_sym_SEMI, + [73080] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(45), 1, + ACTIONS(47), 1, anon_sym_LBRACE, - STATE(241), 1, + STATE(252), 1, sym_compound_statement, - [64554] = 3, + [73090] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4806), 1, + ACTIONS(3442), 2, anon_sym_COMMA, - ACTIONS(4818), 1, + anon_sym_RPAREN, + [73098] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5017), 1, + anon_sym_SEMI, + [73105] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5019), 1, anon_sym_RBRACE, - [64564] = 2, + [73112] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4820), 1, - anon_sym_LPAREN2, - [64571] = 2, + ACTIONS(5021), 1, + sym_identifier, + [73119] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4822), 1, - aux_sym_preproc_if_token2, - [64578] = 2, + ACTIONS(4962), 1, + anon_sym_RPAREN, + [73126] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4824), 1, + ACTIONS(5023), 1, sym_identifier, - [64585] = 2, + [73133] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4826), 1, - anon_sym_while, - [64592] = 2, - ACTIONS(3554), 1, + ACTIONS(5025), 1, + anon_sym_SEMI, + [73140] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(4828), 1, - aux_sym_preproc_include_token2, - [64599] = 2, + ACTIONS(5027), 1, + aux_sym_preproc_if_token2, + [73147] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4830), 1, - anon_sym_COLON, - [64606] = 2, - ACTIONS(3554), 1, + ACTIONS(5029), 1, + aux_sym_preproc_if_token2, + [73154] = 2, + ACTIONS(3643), 1, sym_comment, - ACTIONS(4665), 1, + ACTIONS(5031), 1, aux_sym_preproc_include_token2, - [64613] = 2, - ACTIONS(3), 1, + [73161] = 2, + ACTIONS(3236), 1, + aux_sym_preproc_include_token2, + ACTIONS(3643), 1, sym_comment, - ACTIONS(4832), 1, - anon_sym_SEMI, - [64620] = 2, + [73168] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4834), 1, + ACTIONS(5033), 1, anon_sym_RPAREN, - [64627] = 2, + [73175] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4836), 1, - aux_sym_preproc_if_token2, - [64634] = 2, - ACTIONS(3554), 1, + ACTIONS(3348), 1, + anon_sym_RBRACE, + [73182] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(4838), 1, - aux_sym_preproc_include_token2, - [64641] = 2, + ACTIONS(5035), 1, + anon_sym_LPAREN2, + [73189] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5037), 1, + anon_sym_COLON, + [73196] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5039), 1, + anon_sym_STAR, + [73203] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4840), 1, - anon_sym_RPAREN, - [64648] = 2, + ACTIONS(5041), 1, + sym_identifier, + [73210] = 2, + ACTIONS(3643), 1, + sym_comment, + ACTIONS(5043), 1, + aux_sym_preproc_include_token2, + [73217] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4842), 1, - anon_sym_SEMI, - [64655] = 2, + ACTIONS(5045), 1, + anon_sym_COLON, + [73224] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4844), 1, - aux_sym_preproc_if_token2, - [64662] = 2, + ACTIONS(5047), 1, + anon_sym_RPAREN, + [73231] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3301), 1, - anon_sym_SEMI, - [64669] = 2, + ACTIONS(5049), 1, + anon_sym_RPAREN, + [73238] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4846), 1, + ACTIONS(3438), 1, anon_sym_SEMI, - [64676] = 2, - ACTIONS(3), 1, + [73245] = 2, + ACTIONS(3643), 1, sym_comment, - ACTIONS(4848), 1, - aux_sym_preproc_if_token2, - [64683] = 2, + ACTIONS(5051), 1, + aux_sym_preproc_include_token2, + [73252] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4850), 1, + ACTIONS(5053), 1, anon_sym_RPAREN, - [64690] = 2, + [73259] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3351), 1, - anon_sym_SEMI, - [64697] = 2, + ACTIONS(5055), 1, + aux_sym_preproc_if_token2, + [73266] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4852), 1, - anon_sym_SEMI, - [64704] = 2, + ACTIONS(5057), 1, + aux_sym_preproc_if_token2, + [73273] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4854), 1, - anon_sym_SEMI, - [64711] = 2, + ACTIONS(3456), 1, + anon_sym_RPAREN, + [73280] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4856), 1, + ACTIONS(3436), 1, anon_sym_RPAREN, - [64718] = 2, + [73287] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4858), 1, - anon_sym_COLON, - [64725] = 2, - ACTIONS(3554), 1, + ACTIONS(3434), 1, + anon_sym_RPAREN, + [73294] = 2, + ACTIONS(3643), 1, sym_comment, - ACTIONS(4860), 1, + ACTIONS(5059), 1, aux_sym_preproc_include_token2, - [64732] = 2, + [73301] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4862), 1, + ACTIONS(5061), 1, sym_identifier, - [64739] = 2, + [73308] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4864), 1, + ACTIONS(5063), 1, aux_sym_preproc_if_token2, - [64746] = 2, - ACTIONS(3), 1, + [73315] = 2, + ACTIONS(3643), 1, sym_comment, - ACTIONS(4866), 1, - anon_sym_STAR, - [64753] = 2, + ACTIONS(5065), 1, + aux_sym_preproc_include_token2, + [73322] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4868), 1, + ACTIONS(5067), 1, anon_sym_RPAREN, - [64760] = 2, + [73329] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4870), 1, - anon_sym_LPAREN2, - [64767] = 2, + ACTIONS(5069), 1, + anon_sym_SEMI, + [73336] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3359), 1, - anon_sym_COLON, - [64774] = 2, + ACTIONS(3446), 1, + anon_sym_SEMI, + [73343] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4872), 1, - anon_sym_RPAREN, - [64781] = 2, + ACTIONS(4009), 1, + anon_sym_RBRACE, + [73350] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4874), 1, - anon_sym_RPAREN, - [64788] = 2, + ACTIONS(5071), 1, + anon_sym_LPAREN2, + [73357] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4876), 1, - anon_sym_RPAREN, - [64795] = 2, + ACTIONS(5073), 1, + sym_primitive_type, + [73364] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4878), 1, - aux_sym_preproc_if_token2, - [64802] = 2, + ACTIONS(3440), 1, + anon_sym_SEMI, + [73371] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4880), 1, - anon_sym_RPAREN, - [64809] = 2, + ACTIONS(5075), 1, + sym_identifier, + [73378] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4882), 1, + ACTIONS(5077), 1, anon_sym_SEMI, - [64816] = 2, + [73385] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4884), 1, - anon_sym_RPAREN, - [64823] = 2, + ACTIONS(5079), 1, + anon_sym_LPAREN2, + [73392] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4886), 1, - anon_sym_SEMI, - [64830] = 2, - ACTIONS(3554), 1, + ACTIONS(5081), 1, + anon_sym_RPAREN, + [73399] = 2, + ACTIONS(3643), 1, sym_comment, - ACTIONS(4888), 1, + ACTIONS(5083), 1, aux_sym_preproc_include_token2, - [64837] = 2, - ACTIONS(3), 1, + [73406] = 2, + ACTIONS(3643), 1, sym_comment, - ACTIONS(4890), 1, - aux_sym_preproc_if_token2, - [64844] = 2, + ACTIONS(5085), 1, + aux_sym_preproc_include_token2, + [73413] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3309), 1, - anon_sym_SEMI, - [64851] = 2, + ACTIONS(5087), 1, + anon_sym_LPAREN2, + [73420] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4892), 1, - aux_sym_preproc_if_token2, - [64858] = 2, - ACTIONS(3), 1, + ACTIONS(5089), 1, + anon_sym_LPAREN2, + [73427] = 2, + ACTIONS(3643), 1, sym_comment, - ACTIONS(4894), 1, - aux_sym_preproc_if_token2, - [64865] = 2, + ACTIONS(4832), 1, + aux_sym_preproc_include_token2, + [73434] = 2, + ACTIONS(3643), 1, + sym_comment, + ACTIONS(5091), 1, + aux_sym_preproc_include_token2, + [73441] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3377), 1, - anon_sym_SEMI, - [64872] = 2, + ACTIONS(5093), 1, + anon_sym_LPAREN2, + [73448] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4896), 1, + ACTIONS(5095), 1, aux_sym_preproc_if_token2, - [64879] = 2, + [73455] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4898), 1, - aux_sym_preproc_if_token2, - [64886] = 2, + ACTIONS(5097), 1, + anon_sym_RPAREN, + [73462] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4900), 1, + ACTIONS(5099), 1, anon_sym_SEMI, - [64893] = 2, + [73469] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4902), 1, + ACTIONS(5101), 1, anon_sym_SEMI, - [64900] = 2, - ACTIONS(3554), 1, + [73476] = 2, + ACTIONS(3643), 1, sym_comment, - ACTIONS(4615), 1, + ACTIONS(5103), 1, aux_sym_preproc_include_token2, - [64907] = 2, + [73483] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3379), 1, + ACTIONS(3432), 1, anon_sym_SEMI, - [64914] = 2, + [73490] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4904), 1, - anon_sym_COMMA, - [64921] = 2, + ACTIONS(5105), 1, + anon_sym_COLON, + [73497] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4906), 1, + ACTIONS(5107), 1, aux_sym_preproc_if_token2, - [64928] = 2, + [73504] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4908), 1, - anon_sym_SEMI, - [64935] = 2, + ACTIONS(5109), 1, + anon_sym_RPAREN, + [73511] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4910), 1, - aux_sym_preproc_if_token2, - [64942] = 2, + ACTIONS(5111), 1, + anon_sym_RPAREN, + [73518] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4912), 1, - aux_sym_preproc_if_token2, - [64949] = 2, + ACTIONS(5113), 1, + anon_sym_COMMA, + [73525] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4914), 1, - aux_sym_preproc_if_token2, - [64956] = 2, + ACTIONS(5115), 1, + anon_sym_LPAREN2, + [73532] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4916), 1, - anon_sym_COLON, - [64963] = 2, - ACTIONS(3554), 1, + ACTIONS(5117), 1, + anon_sym_LPAREN2, + [73539] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(4918), 1, - aux_sym_preproc_include_token2, - [64970] = 2, + ACTIONS(5119), 1, + anon_sym_LPAREN2, + [73546] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3343), 1, + ACTIONS(5121), 1, anon_sym_RPAREN, - [64977] = 2, + [73553] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4920), 1, - anon_sym_COLON, - [64984] = 2, + ACTIONS(5123), 1, + anon_sym_RPAREN, + [73560] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4922), 1, + ACTIONS(5125), 1, anon_sym_SEMI, - [64991] = 2, + [73567] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4924), 1, + ACTIONS(5127), 1, anon_sym_RBRACE, - [64998] = 2, - ACTIONS(3554), 1, + [73574] = 2, + ACTIONS(3643), 1, sym_comment, - ACTIONS(4926), 1, + ACTIONS(5129), 1, aux_sym_preproc_include_token2, - [65005] = 2, + [73581] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4928), 1, - anon_sym_LPAREN2, - [65012] = 2, - ACTIONS(3), 1, + ACTIONS(5131), 1, + anon_sym_STAR, + [73588] = 2, + ACTIONS(3643), 1, sym_comment, - ACTIONS(4930), 1, - anon_sym_LPAREN2, - [65019] = 2, + ACTIONS(5133), 1, + aux_sym_preproc_include_token2, + [73595] = 2, + ACTIONS(3643), 1, + sym_comment, + ACTIONS(5135), 1, + aux_sym_preproc_include_token2, + [73602] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4932), 1, - anon_sym_RPAREN, - [65026] = 2, + ACTIONS(5137), 1, + sym_identifier, + [73609] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4934), 1, - anon_sym_RPAREN, - [65033] = 2, - ACTIONS(3554), 1, + ACTIONS(5139), 1, + sym_identifier, + [73616] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(4936), 1, - aux_sym_preproc_include_token2, - [65040] = 2, + ACTIONS(5141), 1, + sym_identifier, + [73623] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4938), 1, - anon_sym_RPAREN, - [65047] = 2, + ACTIONS(5143), 1, + anon_sym_while, + [73630] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4940), 1, - anon_sym_SEMI, - [65054] = 2, + ACTIONS(5145), 1, + aux_sym_preproc_if_token2, + [73637] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4942), 1, - anon_sym_RPAREN, - [65061] = 2, + ACTIONS(5147), 1, + aux_sym_preproc_if_token2, + [73644] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4944), 1, + ACTIONS(5149), 1, sym_identifier, - [65068] = 2, + [73651] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4946), 1, + ACTIONS(5151), 1, aux_sym_preproc_if_token2, - [65075] = 2, - ACTIONS(3554), 1, - sym_comment, - ACTIONS(4948), 1, - aux_sym_preproc_include_token2, - [65082] = 2, + [73658] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3355), 1, - anon_sym_COLON, - [65089] = 2, + ACTIONS(4241), 1, + anon_sym_COMMA, + [73665] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3357), 1, - anon_sym_SEMI, - [65096] = 2, + ACTIONS(5153), 1, + aux_sym_preproc_if_token2, + [73672] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3361), 1, - anon_sym_SEMI, - [65103] = 2, + ACTIONS(5155), 1, + sym_identifier, + [73679] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4950), 1, - anon_sym_RPAREN, - [65110] = 2, - ACTIONS(3171), 1, - aux_sym_preproc_include_token2, - ACTIONS(3554), 1, - sym_comment, - [65117] = 2, - ACTIONS(3554), 1, + ACTIONS(5157), 1, + aux_sym_preproc_if_token2, + [73686] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(4686), 1, - aux_sym_preproc_include_token2, - [65124] = 2, + ACTIONS(5159), 1, + anon_sym_RBRACE, + [73693] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4952), 1, + ACTIONS(5161), 1, sym_identifier, - [65131] = 2, + [73700] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4954), 1, - anon_sym_LPAREN2, - [65138] = 2, - ACTIONS(3554), 1, + ACTIONS(5163), 1, + aux_sym_preproc_if_token2, + [73707] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(4956), 1, - aux_sym_preproc_include_token2, - [65145] = 2, + ACTIONS(5165), 1, + aux_sym_preproc_if_token2, + [73714] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4958), 1, + ACTIONS(5167), 1, anon_sym_RPAREN, - [65152] = 2, + [73721] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3353), 1, - anon_sym_SEMI, - [65159] = 2, + ACTIONS(5169), 1, + aux_sym_preproc_if_token2, + [73728] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4960), 1, + ACTIONS(5171), 1, anon_sym_SEMI, - [65166] = 2, - ACTIONS(3554), 1, + [73735] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(4962), 1, - aux_sym_preproc_include_token2, - [65173] = 2, - ACTIONS(3163), 1, - aux_sym_preproc_include_token2, - ACTIONS(3554), 1, + ACTIONS(4989), 1, + anon_sym_COMMA, + [73742] = 2, + ACTIONS(3), 1, sym_comment, - [65180] = 2, + ACTIONS(5173), 1, + aux_sym_preproc_if_token2, + [73749] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4964), 1, - anon_sym_LPAREN2, - [65187] = 2, + ACTIONS(5175), 1, + anon_sym_RPAREN, + [73756] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4966), 1, - anon_sym_LPAREN2, - [65194] = 2, + ACTIONS(5177), 1, + aux_sym_preproc_if_token2, + [73763] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4968), 1, + ACTIONS(5179), 1, sym_identifier, - [65201] = 2, - ACTIONS(3554), 1, + [73770] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(4970), 1, - aux_sym_preproc_include_token2, - [65208] = 2, + ACTIONS(5181), 1, + anon_sym_SEMI, + [73777] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4972), 1, - sym_primitive_type, - [65215] = 2, + ACTIONS(5183), 1, + anon_sym_RPAREN, + [73784] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4974), 1, - aux_sym_preproc_if_token2, - [65222] = 2, + ACTIONS(5185), 1, + anon_sym_SEMI, + [73791] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4976), 1, + ACTIONS(5187), 1, aux_sym_preproc_if_token2, - [65229] = 2, + [73798] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3893), 1, - anon_sym_RBRACE, - [65236] = 2, + ACTIONS(5189), 1, + anon_sym_LPAREN2, + [73805] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4978), 1, - aux_sym_preproc_if_token2, - [65243] = 2, + ACTIONS(5191), 1, + sym_identifier, + [73812] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4980), 1, - anon_sym_STAR, - [65250] = 2, - ACTIONS(3554), 1, + ACTIONS(5193), 1, + anon_sym_LPAREN2, + [73819] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(4982), 1, + ACTIONS(5195), 1, + anon_sym_LPAREN2, + [73826] = 2, + ACTIONS(3643), 1, + sym_comment, + ACTIONS(4918), 1, aux_sym_preproc_include_token2, - [65257] = 2, + [73833] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4984), 1, + ACTIONS(5197), 1, + anon_sym_LPAREN2, + [73840] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5199), 1, anon_sym_RPAREN, - [65264] = 2, - ACTIONS(3554), 1, + [73847] = 2, + ACTIONS(3643), 1, sym_comment, - ACTIONS(4986), 1, + ACTIONS(5201), 1, aux_sym_preproc_include_token2, - [65271] = 2, - ACTIONS(3554), 1, + [73854] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(4988), 1, - aux_sym_preproc_include_token2, - [65278] = 2, + ACTIONS(5203), 1, + anon_sym_RPAREN, + [73861] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4990), 1, - anon_sym_LPAREN2, - [65285] = 2, + ACTIONS(3430), 1, + anon_sym_RPAREN, + [73868] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4992), 1, - sym_identifier, - [65292] = 2, + ACTIONS(3428), 1, + anon_sym_RPAREN, + [73875] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4994), 1, - sym_identifier, - [65299] = 2, + ACTIONS(3426), 1, + anon_sym_RPAREN, + [73882] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4996), 1, + ACTIONS(5205), 1, sym_identifier, - [65306] = 2, + [73889] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4998), 1, + ACTIONS(5207), 1, anon_sym_RBRACK, - [65313] = 2, - ACTIONS(3554), 1, + [73896] = 2, + ACTIONS(3643), 1, sym_comment, - ACTIONS(5000), 1, + ACTIONS(5209), 1, aux_sym_preproc_include_token2, - [65320] = 2, + [73903] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5002), 1, - anon_sym_RPAREN, - [65327] = 2, + ACTIONS(5211), 1, + aux_sym_preproc_if_token2, + [73910] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5004), 1, - aux_sym_preproc_if_token2, - [65334] = 2, + ACTIONS(3418), 1, + anon_sym_RPAREN, + [73917] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5006), 1, - anon_sym_SEMI, - [65341] = 2, + ACTIONS(5213), 1, + sym_identifier, + [73924] = 2, + ACTIONS(3232), 1, + aux_sym_preproc_include_token2, + ACTIONS(3643), 1, + sym_comment, + [73931] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5008), 1, + ACTIONS(5215), 1, sym_identifier, - [65348] = 2, + [73938] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5010), 1, + ACTIONS(5217), 1, sym_identifier, - [65355] = 2, + [73945] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5012), 1, - anon_sym_STAR, - [65362] = 2, + ACTIONS(5219), 1, + anon_sym_LPAREN2, + [73952] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5014), 1, - anon_sym_RPAREN, - [65369] = 2, + ACTIONS(5221), 1, + sym_identifier, + [73959] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5016), 1, - aux_sym_preproc_if_token2, - [65376] = 2, + ACTIONS(5223), 1, + anon_sym_SEMI, + [73966] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3329), 1, + ACTIONS(5225), 1, anon_sym_RPAREN, - [65383] = 2, + [73973] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5018), 1, + ACTIONS(5227), 1, anon_sym_RPAREN, - [65390] = 2, + [73980] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5020), 1, + ACTIONS(5229), 1, anon_sym_RPAREN, - [65397] = 2, + [73987] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4806), 1, - anon_sym_COMMA, - [65404] = 2, + ACTIONS(5231), 1, + aux_sym_preproc_if_token2, + [73994] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5022), 1, - anon_sym_RPAREN, - [65411] = 2, + ACTIONS(5233), 1, + anon_sym_SEMI, + [74001] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5024), 1, - anon_sym_LPAREN2, - [65418] = 2, + ACTIONS(5235), 1, + aux_sym_preproc_if_token2, + [74008] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5026), 1, - sym_identifier, - [65425] = 2, - ACTIONS(2089), 1, - aux_sym_preproc_include_token2, - ACTIONS(3554), 1, + ACTIONS(3414), 1, + anon_sym_SEMI, + [74015] = 2, + ACTIONS(3), 1, sym_comment, - [65432] = 2, + ACTIONS(5237), 1, + sym_identifier, + [74022] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5028), 1, + ACTIONS(5239), 1, aux_sym_preproc_if_token2, - [65439] = 2, + [74029] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5030), 1, - anon_sym_RPAREN, - [65446] = 2, + ACTIONS(3412), 1, + anon_sym_COLON, + [74036] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5032), 1, + ACTIONS(5241), 1, aux_sym_preproc_if_token2, - [65453] = 2, + [74043] = 2, + ACTIONS(3643), 1, + sym_comment, + ACTIONS(5243), 1, + aux_sym_preproc_include_token2, + [74050] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5034), 1, + ACTIONS(5245), 1, aux_sym_preproc_if_token2, - [65460] = 2, + [74057] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5036), 1, - anon_sym_RPAREN, - [65467] = 2, - ACTIONS(3), 1, + ACTIONS(3378), 1, + anon_sym_COLON, + [74064] = 2, + ACTIONS(3246), 1, + aux_sym_preproc_include_token2, + ACTIONS(3643), 1, sym_comment, - ACTIONS(5038), 1, - aux_sym_preproc_if_token2, - [65474] = 2, + [74071] = 2, + ACTIONS(3643), 1, + sym_comment, + ACTIONS(5247), 1, + aux_sym_preproc_include_token2, + [74078] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5040), 1, + ACTIONS(5249), 1, anon_sym_RPAREN, - [65481] = 2, + [74085] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5042), 1, - anon_sym_RPAREN, - [65488] = 2, + ACTIONS(3410), 1, + anon_sym_SEMI, + [74092] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5044), 1, - anon_sym_LPAREN2, - [65495] = 2, + ACTIONS(5251), 1, + anon_sym_RPAREN, + [74099] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5046), 1, + ACTIONS(5253), 1, aux_sym_preproc_if_token2, - [65502] = 2, + [74106] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5048), 1, + ACTIONS(5255), 1, aux_sym_preproc_if_token2, - [65509] = 2, + [74113] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5050), 1, - aux_sym_preproc_if_token2, - [65516] = 2, + ACTIONS(5257), 1, + anon_sym_STAR, + [74120] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5052), 1, + ACTIONS(5259), 1, anon_sym_RBRACE, - [65523] = 2, + [74127] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5054), 1, - aux_sym_preproc_if_token2, - [65530] = 2, + ACTIONS(5261), 1, + anon_sym_RPAREN, + [74134] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5056), 1, + ACTIONS(5263), 1, aux_sym_preproc_if_token2, - [65537] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5058), 1, - anon_sym_RPAREN, - [65544] = 2, + [74141] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5060), 1, + ACTIONS(5265), 1, aux_sym_preproc_if_token2, - [65551] = 2, + [74148] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3335), 1, - anon_sym_RPAREN, - [65558] = 2, + ACTIONS(5267), 1, + aux_sym_preproc_if_token2, + [74155] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5062), 1, + ACTIONS(5269), 1, anon_sym_RBRACE, - [65565] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5064), 1, - anon_sym_SEMI, - [65572] = 2, - ACTIONS(3554), 1, - sym_comment, - ACTIONS(5066), 1, - aux_sym_preproc_include_token2, - [65579] = 2, + [74162] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5068), 1, - sym_identifier, - [65586] = 2, - ACTIONS(3554), 1, - sym_comment, - ACTIONS(5070), 1, - aux_sym_preproc_include_token2, - [65593] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5072), 1, - anon_sym_RBRACE, - [65600] = 2, + ACTIONS(5271), 1, + aux_sym_preproc_if_token2, + [74169] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5074), 1, - sym_identifier, - [65607] = 2, + ACTIONS(5273), 1, + aux_sym_preproc_if_token2, + [74176] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5076), 1, + ACTIONS(5275), 1, anon_sym_SEMI, - [65614] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5078), 1, - sym_identifier, - [65621] = 2, + [74183] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5080), 1, + ACTIONS(3406), 1, anon_sym_SEMI, - [65628] = 2, + [74190] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5082), 1, - anon_sym_RPAREN, - [65635] = 2, + ACTIONS(5277), 1, + aux_sym_preproc_if_token2, + [74197] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5084), 1, - anon_sym_RPAREN, - [65642] = 2, + ACTIONS(3402), 1, + anon_sym_COLON, + [74204] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5086), 1, + ACTIONS(5279), 1, anon_sym_RPAREN, - [65649] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5088), 1, - aux_sym_preproc_if_token2, - [65656] = 2, - ACTIONS(3554), 1, - sym_comment, - ACTIONS(5090), 1, + [74211] = 2, + ACTIONS(2150), 1, aux_sym_preproc_include_token2, - [65663] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5092), 1, - aux_sym_preproc_if_token2, - [65670] = 2, - ACTIONS(3), 1, + ACTIONS(3643), 1, sym_comment, - ACTIONS(3333), 1, - anon_sym_COLON, - [65677] = 2, + [74218] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3337), 1, + ACTIONS(5281), 1, anon_sym_RPAREN, - [65684] = 2, - ACTIONS(3554), 1, - sym_comment, - ACTIONS(5094), 1, - aux_sym_preproc_include_token2, - [65691] = 2, + [74225] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5096), 1, - aux_sym_preproc_if_token2, - [65698] = 2, - ACTIONS(2083), 1, - aux_sym_preproc_include_token2, - ACTIONS(3554), 1, + ACTIONS(5283), 1, + anon_sym_SEMI, + [74232] = 2, + ACTIONS(3), 1, sym_comment, - [65705] = 2, + ACTIONS(5285), 1, + sym_identifier, + [74239] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5098), 1, + ACTIONS(5287), 1, sym_identifier, - [65712] = 2, + [74246] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5100), 1, + ACTIONS(5289), 1, anon_sym_RPAREN, - [65719] = 2, - ACTIONS(3554), 1, - sym_comment, - ACTIONS(5102), 1, - aux_sym_preproc_include_token2, - [65726] = 2, + [74253] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5104), 1, - aux_sym_preproc_if_token2, - [65733] = 2, - ACTIONS(3554), 1, + ACTIONS(5291), 1, + sym_identifier, + [74260] = 2, + ACTIONS(3643), 1, sym_comment, - ACTIONS(4515), 1, + ACTIONS(5293), 1, aux_sym_preproc_include_token2, - [65740] = 2, + [74267] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5106), 1, + ACTIONS(5295), 1, aux_sym_preproc_if_token2, - [65747] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3391), 1, - anon_sym_RPAREN, - [65754] = 2, + [74274] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3371), 1, + ACTIONS(3462), 1, anon_sym_RPAREN, - [65761] = 2, + [74281] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5108), 1, + ACTIONS(5297), 1, sym_primitive_type, - [65768] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5110), 1, - anon_sym_LPAREN2, - [65775] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5112), 1, - sym_identifier, - [65782] = 2, + [74288] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5114), 1, - ts_builtin_sym_end, - [65789] = 2, + ACTIONS(5299), 1, + anon_sym_RPAREN, + [74295] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5116), 1, + ACTIONS(5301), 1, sym_identifier, - [65796] = 2, + [74302] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3387), 1, + ACTIONS(5303), 1, anon_sym_RPAREN, - [65803] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5118), 1, - anon_sym_RBRACK, - [65810] = 2, + [74309] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3313), 1, + ACTIONS(5305), 1, anon_sym_RPAREN, - [65817] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3331), 1, - anon_sym_SEMI, - [65824] = 2, + [74316] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5120), 1, + ACTIONS(5307), 1, anon_sym_RPAREN, - [65831] = 2, + [74323] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3341), 1, - anon_sym_COLON, - [65838] = 2, + ACTIONS(5309), 1, + anon_sym_LPAREN2, + [74330] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3285), 1, - anon_sym_RPAREN, - [65845] = 2, + ACTIONS(5311), 1, + aux_sym_preproc_if_token2, + [74337] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3347), 1, + ACTIONS(5313), 1, anon_sym_RPAREN, - [65852] = 2, + [74344] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5122), 1, - sym_identifier, - [65859] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5124), 1, - sym_identifier, - [65866] = 2, + ACTIONS(3400), 1, + anon_sym_SEMI, + [74351] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5126), 1, - anon_sym_LPAREN2, - [65873] = 2, + ACTIONS(5315), 1, + anon_sym_COLON, + [74358] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5128), 1, + ACTIONS(5317), 1, anon_sym_RPAREN, - [65880] = 2, + [74365] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3265), 1, - anon_sym_RBRACE, - [65887] = 2, + ACTIONS(5319), 1, + aux_sym_preproc_if_token2, + [74372] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5130), 1, + ACTIONS(5321), 1, anon_sym_SEMI, - [65894] = 2, + [74379] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5132), 1, + ACTIONS(5323), 1, aux_sym_preproc_if_token2, - [65901] = 2, + [74386] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5134), 1, - anon_sym_LPAREN2, - [65908] = 2, - ACTIONS(3), 1, + ACTIONS(5325), 1, + sym_identifier, + [74393] = 2, + ACTIONS(3643), 1, sym_comment, - ACTIONS(5136), 1, - aux_sym_preproc_if_token2, - [65915] = 2, + ACTIONS(5327), 1, + aux_sym_preproc_include_token2, + [74400] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5138), 1, - sym_identifier, - [65922] = 2, + ACTIONS(5329), 1, + anon_sym_RPAREN, + [74407] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4491), 1, + ACTIONS(5331), 1, anon_sym_RPAREN, - [65929] = 2, + [74414] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5140), 1, - aux_sym_preproc_if_token2, - [65936] = 2, - ACTIONS(3), 1, + ACTIONS(5333), 1, + anon_sym_RBRACK, + [74421] = 2, + ACTIONS(3242), 1, + aux_sym_preproc_include_token2, + ACTIONS(3643), 1, sym_comment, - ACTIONS(5142), 1, - anon_sym_RPAREN, - [65943] = 2, + [74428] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5144), 1, - anon_sym_LPAREN2, - [65950] = 2, + ACTIONS(5335), 1, + anon_sym_RPAREN, + [74435] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5146), 1, + ACTIONS(5337), 1, anon_sym_SEMI, - [65957] = 2, + [74442] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5148), 1, - anon_sym_LPAREN2, - [65964] = 2, + ACTIONS(3380), 1, + anon_sym_SEMI, + [74449] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5150), 1, - sym_identifier, - [65971] = 2, + ACTIONS(3398), 1, + anon_sym_COLON, + [74456] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3339), 1, - anon_sym_SEMI, - [65978] = 2, - ACTIONS(3), 1, + ACTIONS(5339), 1, + anon_sym_RBRACE, + [74463] = 2, + ACTIONS(3643), 1, sym_comment, - ACTIONS(5152), 1, - anon_sym_RPAREN, - [65985] = 2, + ACTIONS(5341), 1, + aux_sym_preproc_include_token2, + [74470] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5154), 1, - anon_sym_LPAREN2, - [65992] = 2, + ACTIONS(5343), 1, + aux_sym_preproc_if_token2, + [74477] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5156), 1, - sym_identifier, - [65999] = 2, + ACTIONS(5345), 1, + aux_sym_preproc_if_token2, + [74484] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5158), 1, + ACTIONS(5347), 1, aux_sym_preproc_if_token2, - [66006] = 2, + [74491] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5160), 1, - anon_sym_RPAREN, - [66013] = 2, + ACTIONS(5349), 1, + aux_sym_preproc_if_token2, + [74498] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5162), 1, - anon_sym_LPAREN2, - [66020] = 2, - ACTIONS(3167), 1, - aux_sym_preproc_include_token2, - ACTIONS(3554), 1, - sym_comment, - [66027] = 2, + ACTIONS(5351), 1, + sym_identifier, + [74505] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5164), 1, - aux_sym_preproc_if_token2, - [66034] = 2, + ACTIONS(5353), 1, + sym_identifier, + [74512] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5166), 1, - anon_sym_LPAREN2, - [66041] = 2, - ACTIONS(3554), 1, - sym_comment, - ACTIONS(5168), 1, - aux_sym_preproc_include_token2, - [66048] = 2, + ACTIONS(5355), 1, + sym_identifier, + [74519] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5170), 1, + ACTIONS(3382), 1, anon_sym_SEMI, - [66055] = 2, + [74526] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5172), 1, + ACTIONS(5357), 1, anon_sym_RPAREN, - [66062] = 2, + [74533] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5174), 1, - sym_identifier, - [66069] = 2, + ACTIONS(5359), 1, + aux_sym_preproc_if_token2, + [74540] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5176), 1, + ACTIONS(5361), 1, sym_identifier, - [66076] = 2, + [74547] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5178), 1, + ACTIONS(5363), 1, anon_sym_SEMI, - [66083] = 2, + [74554] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3363), 1, - anon_sym_COLON, - [66090] = 2, + ACTIONS(5365), 1, + aux_sym_preproc_if_token2, + [74561] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5180), 1, - sym_number_literal, - [66097] = 2, + ACTIONS(5367), 1, + anon_sym_RPAREN, + [74568] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5182), 1, - anon_sym_SEMI, - [66104] = 2, - ACTIONS(3), 1, + ACTIONS(5369), 1, + anon_sym_RPAREN, + [74575] = 2, + ACTIONS(3643), 1, sym_comment, - ACTIONS(5184), 1, - sym_identifier, - [66111] = 2, + ACTIONS(5371), 1, + aux_sym_preproc_include_token2, + [74582] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5186), 1, + ACTIONS(5373), 1, anon_sym_RPAREN, - [66118] = 2, + [74589] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5188), 1, + ACTIONS(5375), 1, anon_sym_RPAREN, - [66125] = 2, + [74596] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5190), 1, - anon_sym_COLON, - [66132] = 2, + ACTIONS(5377), 1, + aux_sym_preproc_if_token2, + [74603] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5192), 1, - sym_identifier, - [66139] = 2, + ACTIONS(5379), 1, + anon_sym_RPAREN, + [74610] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5381), 1, + aux_sym_preproc_if_token2, + [74617] = 2, + ACTIONS(3643), 1, + sym_comment, + ACTIONS(4714), 1, + aux_sym_preproc_include_token2, + [74624] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5194), 1, + ACTIONS(5383), 1, anon_sym_LPAREN2, - [66146] = 2, + [74631] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5196), 1, - sym_identifier, - [66153] = 2, + ACTIONS(5385), 1, + anon_sym_SEMI, + [74638] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5198), 1, - aux_sym_preproc_if_token2, - [66160] = 2, + ACTIONS(5387), 1, + anon_sym_SEMI, + [74645] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5200), 1, - anon_sym_LPAREN2, - [66167] = 2, + ACTIONS(5389), 1, + anon_sym_SEMI, + [74652] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5202), 1, - anon_sym_COLON, - [66174] = 2, + ACTIONS(5391), 1, + anon_sym_RPAREN, + [74659] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5204), 1, - aux_sym_preproc_if_token2, - [66181] = 2, + ACTIONS(5393), 1, + anon_sym_SEMI, + [74666] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5206), 1, + ACTIONS(3376), 1, + anon_sym_COLON, + [74673] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5395), 1, aux_sym_preproc_if_token2, - [66188] = 2, + [74680] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5208), 1, - sym_identifier, - [66195] = 2, + ACTIONS(5397), 1, + aux_sym_preproc_if_token2, + [74687] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5210), 1, - sym_identifier, - [66202] = 2, + ACTIONS(5399), 1, + aux_sym_preproc_if_token2, + [74694] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5212), 1, - anon_sym_RBRACE, - [66209] = 2, + ACTIONS(5401), 1, + anon_sym_RPAREN, + [74701] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5214), 1, + ACTIONS(5403), 1, sym_identifier, - [66216] = 2, + [74708] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3325), 1, - anon_sym_SEMI, - [66223] = 2, + ACTIONS(5405), 1, + anon_sym_RPAREN, + [74715] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5216), 1, - anon_sym_COLON, - [66230] = 2, + ACTIONS(3404), 1, + anon_sym_RPAREN, + [74722] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5218), 1, - anon_sym_STAR, - [66237] = 2, + ACTIONS(5407), 1, + anon_sym_COLON, + [74729] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5220), 1, + ACTIONS(5409), 1, sym_identifier, - [66244] = 2, + [74736] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5222), 1, + ACTIONS(5411), 1, sym_identifier, - [66251] = 2, + [74743] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4154), 1, - anon_sym_COMMA, - [66258] = 2, - ACTIONS(3), 1, + ACTIONS(5413), 1, + anon_sym_COLON, + [74750] = 2, + ACTIONS(3643), 1, sym_comment, - ACTIONS(3369), 1, - anon_sym_SEMI, - [66265] = 2, + ACTIONS(5415), 1, + aux_sym_preproc_include_token2, + [74757] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5224), 1, - anon_sym_SEMI, - [66272] = 2, + ACTIONS(5417), 1, + aux_sym_preproc_if_token2, + [74764] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5226), 1, - aux_sym_preproc_if_token2, - [66279] = 2, + ACTIONS(5419), 1, + sym_number_literal, + [74771] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5228), 1, + ACTIONS(5421), 1, sym_identifier, - [66286] = 2, + [74778] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5423), 1, + anon_sym_LPAREN2, + [74785] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5230), 1, + ACTIONS(5425), 1, anon_sym_LPAREN2, - [66293] = 2, + [74792] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5232), 1, + ACTIONS(5427), 1, anon_sym_LPAREN2, - [66300] = 2, + [74799] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5234), 1, + ACTIONS(5009), 1, anon_sym_RBRACE, - [66307] = 2, + [74806] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5236), 1, + ACTIONS(5429), 1, anon_sym_SEMI, - [66314] = 2, + [74813] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5238), 1, - aux_sym_preproc_if_token2, - [66321] = 2, + ACTIONS(5431), 1, + anon_sym_STAR, + [74820] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5240), 1, - aux_sym_preproc_if_token2, - [66328] = 2, + ACTIONS(5433), 1, + anon_sym_LPAREN2, + [74827] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5242), 1, + ACTIONS(5435), 1, anon_sym_RPAREN, - [66335] = 2, - ACTIONS(3), 1, + [74834] = 2, + ACTIONS(3643), 1, sym_comment, - ACTIONS(5244), 1, - anon_sym_RPAREN, - [66342] = 2, + ACTIONS(4643), 1, + aux_sym_preproc_include_token2, + [74841] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5246), 1, - anon_sym_SEMI, - [66349] = 2, + ACTIONS(5437), 1, + ts_builtin_sym_end, + [74848] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4818), 1, - anon_sym_RBRACE, - [66356] = 2, + ACTIONS(5439), 1, + anon_sym_LPAREN2, + [74855] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5248), 1, + ACTIONS(5441), 1, anon_sym_while, - [66363] = 2, + [74862] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5443), 1, + sym_identifier, + [74869] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5250), 1, + ACTIONS(5445), 1, anon_sym_LPAREN2, - [66370] = 2, + [74876] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5252), 1, + ACTIONS(5447), 1, anon_sym_LPAREN2, - [66377] = 2, + [74883] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5254), 1, + ACTIONS(5449), 1, anon_sym_LPAREN2, - [66384] = 2, + [74890] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5256), 1, - aux_sym_preproc_if_token2, - [66391] = 2, + ACTIONS(5451), 1, + anon_sym_LPAREN2, + [74897] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5258), 1, - sym_identifier, - [66398] = 2, + ACTIONS(5453), 1, + anon_sym_RPAREN, + [74904] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5260), 1, - anon_sym_SEMI, - [66405] = 2, + ACTIONS(5455), 1, + anon_sym_LPAREN2, + [74911] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3315), 1, + ACTIONS(3444), 1, anon_sym_COLON, - [66412] = 2, + [74918] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5262), 1, + ACTIONS(5457), 1, anon_sym_LPAREN2, - [66419] = 2, + [74925] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5264), 1, - anon_sym_RPAREN, - [66426] = 2, + ACTIONS(5459), 1, + sym_identifier, + [74932] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5266), 1, + ACTIONS(5461), 1, anon_sym_LPAREN2, - [66433] = 2, + [74939] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5268), 1, - anon_sym_LPAREN2, - [66440] = 2, + ACTIONS(5463), 1, + anon_sym_SEMI, + [74946] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5465), 1, + anon_sym_SEMI, + [74953] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5270), 1, + ACTIONS(5467), 1, anon_sym_LPAREN2, - [66447] = 2, + [74960] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5272), 1, + ACTIONS(5469), 1, anon_sym_while, - [66454] = 2, + [74967] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5274), 1, - anon_sym_LPAREN2, - [66461] = 2, + ACTIONS(5471), 1, + anon_sym_SEMI, + [74974] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5276), 1, - aux_sym_preproc_if_token2, - [66468] = 2, + ACTIONS(5473), 1, + anon_sym_COLON, + [74981] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5278), 1, - aux_sym_preproc_if_token2, - [66475] = 2, + ACTIONS(3408), 1, + anon_sym_SEMI, + [74988] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5280), 1, + ACTIONS(3386), 1, + anon_sym_SEMI, + [74995] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5475), 1, sym_identifier, - [66482] = 2, + [75002] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5282), 1, - anon_sym_RPAREN, - [66489] = 2, + ACTIONS(5477), 1, + aux_sym_preproc_if_token2, + [75009] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5284), 1, - anon_sym_RPAREN, - [66496] = 2, + ACTIONS(5479), 1, + aux_sym_preproc_if_token2, + [75016] = 2, + ACTIONS(2162), 1, + aux_sym_preproc_include_token2, + ACTIONS(3643), 1, + sym_comment, + [75023] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5286), 1, + ACTIONS(5481), 1, aux_sym_preproc_if_token2, - [66503] = 2, + [75030] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5288), 1, + ACTIONS(5483), 1, anon_sym_while, - [66510] = 2, - ACTIONS(3159), 1, - aux_sym_preproc_include_token2, - ACTIONS(3554), 1, + [75037] = 2, + ACTIONS(3), 1, sym_comment, - [66517] = 2, + ACTIONS(5485), 1, + anon_sym_LPAREN2, + [75044] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5290), 1, + ACTIONS(5487), 1, anon_sym_LPAREN2, - [66524] = 2, + [75051] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5292), 1, - aux_sym_preproc_if_token2, - [66531] = 2, + ACTIONS(5489), 1, + anon_sym_SEMI, + [75058] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5294), 1, - sym_identifier, - [66538] = 2, + ACTIONS(5491), 1, + anon_sym_LPAREN2, + [75065] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5296), 1, + ACTIONS(5493), 1, anon_sym_LPAREN2, - [66545] = 2, + [75072] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5298), 1, + ACTIONS(5495), 1, anon_sym_LPAREN2, - [66552] = 2, + [75079] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5300), 1, - anon_sym_RPAREN, - [66559] = 2, + ACTIONS(5497), 1, + aux_sym_preproc_if_token2, + [75086] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5302), 1, - anon_sym_LPAREN2, - [66566] = 2, + ACTIONS(5499), 1, + sym_identifier, + [75093] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5304), 1, + ACTIONS(5501), 1, anon_sym_LPAREN2, - [66573] = 2, + [75100] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3374), 1, + anon_sym_RPAREN, + [75107] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5306), 1, + ACTIONS(5503), 1, sym_identifier, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(456)] = 0, - [SMALL_STATE(457)] = 77, - [SMALL_STATE(458)] = 154, - [SMALL_STATE(459)] = 231, - [SMALL_STATE(460)] = 345, - [SMALL_STATE(461)] = 419, - [SMALL_STATE(462)] = 533, - [SMALL_STATE(463)] = 602, - [SMALL_STATE(464)] = 713, - [SMALL_STATE(465)] = 782, - [SMALL_STATE(466)] = 890, - [SMALL_STATE(467)] = 998, - [SMALL_STATE(468)] = 1106, - [SMALL_STATE(469)] = 1174, - [SMALL_STATE(470)] = 1282, - [SMALL_STATE(471)] = 1350, - [SMALL_STATE(472)] = 1458, - [SMALL_STATE(473)] = 1566, - [SMALL_STATE(474)] = 1674, - [SMALL_STATE(475)] = 1782, - [SMALL_STATE(476)] = 1890, - [SMALL_STATE(477)] = 1998, - [SMALL_STATE(478)] = 2066, - [SMALL_STATE(479)] = 2134, - [SMALL_STATE(480)] = 2222, - [SMALL_STATE(481)] = 2330, - [SMALL_STATE(482)] = 2438, - [SMALL_STATE(483)] = 2546, - [SMALL_STATE(484)] = 2654, - [SMALL_STATE(485)] = 2762, - [SMALL_STATE(486)] = 2870, - [SMALL_STATE(487)] = 2938, - [SMALL_STATE(488)] = 3006, - [SMALL_STATE(489)] = 3096, - [SMALL_STATE(490)] = 3164, - [SMALL_STATE(491)] = 3272, - [SMALL_STATE(492)] = 3340, - [SMALL_STATE(493)] = 3408, - [SMALL_STATE(494)] = 3516, - [SMALL_STATE(495)] = 3624, - [SMALL_STATE(496)] = 3732, - [SMALL_STATE(497)] = 3840, - [SMALL_STATE(498)] = 3948, - [SMALL_STATE(499)] = 4056, - [SMALL_STATE(500)] = 4164, - [SMALL_STATE(501)] = 4272, - [SMALL_STATE(502)] = 4340, - [SMALL_STATE(503)] = 4448, - [SMALL_STATE(504)] = 4556, - [SMALL_STATE(505)] = 4664, - [SMALL_STATE(506)] = 4773, - [SMALL_STATE(507)] = 4882, - [SMALL_STATE(508)] = 4991, - [SMALL_STATE(509)] = 5096, - [SMALL_STATE(510)] = 5207, - [SMALL_STATE(511)] = 5316, - [SMALL_STATE(512)] = 5425, - [SMALL_STATE(513)] = 5530, - [SMALL_STATE(514)] = 5639, - [SMALL_STATE(515)] = 5748, - [SMALL_STATE(516)] = 5853, - [SMALL_STATE(517)] = 5962, - [SMALL_STATE(518)] = 6067, - [SMALL_STATE(519)] = 6172, - [SMALL_STATE(520)] = 6281, - [SMALL_STATE(521)] = 6386, - [SMALL_STATE(522)] = 6495, - [SMALL_STATE(523)] = 6604, - [SMALL_STATE(524)] = 6713, - [SMALL_STATE(525)] = 6822, - [SMALL_STATE(526)] = 6927, - [SMALL_STATE(527)] = 7032, - [SMALL_STATE(528)] = 7141, - [SMALL_STATE(529)] = 7246, - [SMALL_STATE(530)] = 7351, - [SMALL_STATE(531)] = 7456, - [SMALL_STATE(532)] = 7565, - [SMALL_STATE(533)] = 7674, - [SMALL_STATE(534)] = 7779, - [SMALL_STATE(535)] = 7884, - [SMALL_STATE(536)] = 7993, - [SMALL_STATE(537)] = 8095, - [SMALL_STATE(538)] = 8197, - [SMALL_STATE(539)] = 8299, - [SMALL_STATE(540)] = 8401, - [SMALL_STATE(541)] = 8503, - [SMALL_STATE(542)] = 8605, - [SMALL_STATE(543)] = 8707, - [SMALL_STATE(544)] = 8809, - [SMALL_STATE(545)] = 8911, - [SMALL_STATE(546)] = 9013, - [SMALL_STATE(547)] = 9115, - [SMALL_STATE(548)] = 9217, - [SMALL_STATE(549)] = 9319, - [SMALL_STATE(550)] = 9421, - [SMALL_STATE(551)] = 9523, - [SMALL_STATE(552)] = 9625, - [SMALL_STATE(553)] = 9733, - [SMALL_STATE(554)] = 9835, - [SMALL_STATE(555)] = 9937, - [SMALL_STATE(556)] = 10039, - [SMALL_STATE(557)] = 10141, - [SMALL_STATE(558)] = 10243, - [SMALL_STATE(559)] = 10345, - [SMALL_STATE(560)] = 10447, - [SMALL_STATE(561)] = 10549, - [SMALL_STATE(562)] = 10651, - [SMALL_STATE(563)] = 10757, - [SMALL_STATE(564)] = 10859, - [SMALL_STATE(565)] = 10961, - [SMALL_STATE(566)] = 11063, - [SMALL_STATE(567)] = 11165, - [SMALL_STATE(568)] = 11267, - [SMALL_STATE(569)] = 11369, - [SMALL_STATE(570)] = 11471, - [SMALL_STATE(571)] = 11573, - [SMALL_STATE(572)] = 11675, - [SMALL_STATE(573)] = 11777, - [SMALL_STATE(574)] = 11879, - [SMALL_STATE(575)] = 11981, - [SMALL_STATE(576)] = 12083, - [SMALL_STATE(577)] = 12185, - [SMALL_STATE(578)] = 12287, - [SMALL_STATE(579)] = 12389, - [SMALL_STATE(580)] = 12491, - [SMALL_STATE(581)] = 12593, - [SMALL_STATE(582)] = 12695, - [SMALL_STATE(583)] = 12797, - [SMALL_STATE(584)] = 12899, - [SMALL_STATE(585)] = 13001, - [SMALL_STATE(586)] = 13103, - [SMALL_STATE(587)] = 13205, - [SMALL_STATE(588)] = 13307, - [SMALL_STATE(589)] = 13409, - [SMALL_STATE(590)] = 13511, - [SMALL_STATE(591)] = 13613, - [SMALL_STATE(592)] = 13715, - [SMALL_STATE(593)] = 13817, - [SMALL_STATE(594)] = 13919, - [SMALL_STATE(595)] = 14021, - [SMALL_STATE(596)] = 14123, - [SMALL_STATE(597)] = 14229, - [SMALL_STATE(598)] = 14295, - [SMALL_STATE(599)] = 14397, - [SMALL_STATE(600)] = 14499, - [SMALL_STATE(601)] = 14601, - [SMALL_STATE(602)] = 14703, - [SMALL_STATE(603)] = 14805, - [SMALL_STATE(604)] = 14907, - [SMALL_STATE(605)] = 15009, - [SMALL_STATE(606)] = 15111, - [SMALL_STATE(607)] = 15213, - [SMALL_STATE(608)] = 15315, - [SMALL_STATE(609)] = 15417, - [SMALL_STATE(610)] = 15483, - [SMALL_STATE(611)] = 15585, - [SMALL_STATE(612)] = 15687, - [SMALL_STATE(613)] = 15789, - [SMALL_STATE(614)] = 15891, - [SMALL_STATE(615)] = 15993, - [SMALL_STATE(616)] = 16095, - [SMALL_STATE(617)] = 16197, - [SMALL_STATE(618)] = 16299, - [SMALL_STATE(619)] = 16401, - [SMALL_STATE(620)] = 16503, - [SMALL_STATE(621)] = 16605, - [SMALL_STATE(622)] = 16707, - [SMALL_STATE(623)] = 16809, - [SMALL_STATE(624)] = 16911, - [SMALL_STATE(625)] = 17013, - [SMALL_STATE(626)] = 17115, - [SMALL_STATE(627)] = 17217, - [SMALL_STATE(628)] = 17319, - [SMALL_STATE(629)] = 17421, - [SMALL_STATE(630)] = 17523, - [SMALL_STATE(631)] = 17625, - [SMALL_STATE(632)] = 17727, - [SMALL_STATE(633)] = 17829, - [SMALL_STATE(634)] = 17931, - [SMALL_STATE(635)] = 18033, - [SMALL_STATE(636)] = 18135, - [SMALL_STATE(637)] = 18237, - [SMALL_STATE(638)] = 18303, - [SMALL_STATE(639)] = 18369, - [SMALL_STATE(640)] = 18471, - [SMALL_STATE(641)] = 18573, - [SMALL_STATE(642)] = 18675, - [SMALL_STATE(643)] = 18777, - [SMALL_STATE(644)] = 18879, - [SMALL_STATE(645)] = 18981, - [SMALL_STATE(646)] = 19083, - [SMALL_STATE(647)] = 19185, - [SMALL_STATE(648)] = 19287, - [SMALL_STATE(649)] = 19389, - [SMALL_STATE(650)] = 19491, - [SMALL_STATE(651)] = 19593, - [SMALL_STATE(652)] = 19695, - [SMALL_STATE(653)] = 19797, - [SMALL_STATE(654)] = 19899, - [SMALL_STATE(655)] = 20001, - [SMALL_STATE(656)] = 20103, - [SMALL_STATE(657)] = 20205, - [SMALL_STATE(658)] = 20307, - [SMALL_STATE(659)] = 20372, - [SMALL_STATE(660)] = 20443, - [SMALL_STATE(661)] = 20507, - [SMALL_STATE(662)] = 20571, - [SMALL_STATE(663)] = 20635, - [SMALL_STATE(664)] = 20699, - [SMALL_STATE(665)] = 20763, - [SMALL_STATE(666)] = 20827, - [SMALL_STATE(667)] = 20891, - [SMALL_STATE(668)] = 20955, - [SMALL_STATE(669)] = 21019, - [SMALL_STATE(670)] = 21083, - [SMALL_STATE(671)] = 21147, - [SMALL_STATE(672)] = 21211, - [SMALL_STATE(673)] = 21275, - [SMALL_STATE(674)] = 21339, - [SMALL_STATE(675)] = 21403, - [SMALL_STATE(676)] = 21467, - [SMALL_STATE(677)] = 21531, - [SMALL_STATE(678)] = 21630, - [SMALL_STATE(679)] = 21693, - [SMALL_STATE(680)] = 21764, - [SMALL_STATE(681)] = 21863, - [SMALL_STATE(682)] = 21936, - [SMALL_STATE(683)] = 22035, - [SMALL_STATE(684)] = 22108, - [SMALL_STATE(685)] = 22207, - [SMALL_STATE(686)] = 22280, - [SMALL_STATE(687)] = 22353, - [SMALL_STATE(688)] = 22416, - [SMALL_STATE(689)] = 22515, - [SMALL_STATE(690)] = 22588, - [SMALL_STATE(691)] = 22651, - [SMALL_STATE(692)] = 22750, - [SMALL_STATE(693)] = 22849, - [SMALL_STATE(694)] = 22948, - [SMALL_STATE(695)] = 23011, - [SMALL_STATE(696)] = 23087, - [SMALL_STATE(697)] = 23163, - [SMALL_STATE(698)] = 23259, - [SMALL_STATE(699)] = 23329, - [SMALL_STATE(700)] = 23405, - [SMALL_STATE(701)] = 23466, - [SMALL_STATE(702)] = 23539, - [SMALL_STATE(703)] = 23612, - [SMALL_STATE(704)] = 23673, - [SMALL_STATE(705)] = 23734, - [SMALL_STATE(706)] = 23804, - [SMALL_STATE(707)] = 23864, - [SMALL_STATE(708)] = 23944, - [SMALL_STATE(709)] = 24024, - [SMALL_STATE(710)] = 24084, - [SMALL_STATE(711)] = 24164, - [SMALL_STATE(712)] = 24234, - [SMALL_STATE(713)] = 24314, - [SMALL_STATE(714)] = 24384, - [SMALL_STATE(715)] = 24454, - [SMALL_STATE(716)] = 24524, - [SMALL_STATE(717)] = 24584, - [SMALL_STATE(718)] = 24654, - [SMALL_STATE(719)] = 24713, - [SMALL_STATE(720)] = 24774, - [SMALL_STATE(721)] = 24835, - [SMALL_STATE(722)] = 24902, - [SMALL_STATE(723)] = 24961, - [SMALL_STATE(724)] = 25022, - [SMALL_STATE(725)] = 25081, - [SMALL_STATE(726)] = 25142, - [SMALL_STATE(727)] = 25201, - [SMALL_STATE(728)] = 25262, - [SMALL_STATE(729)] = 25329, - [SMALL_STATE(730)] = 25390, - [SMALL_STATE(731)] = 25457, - [SMALL_STATE(732)] = 25518, - [SMALL_STATE(733)] = 25581, - [SMALL_STATE(734)] = 25650, - [SMALL_STATE(735)] = 25711, - [SMALL_STATE(736)] = 25772, - [SMALL_STATE(737)] = 25831, - [SMALL_STATE(738)] = 25898, - [SMALL_STATE(739)] = 25956, - [SMALL_STATE(740)] = 26014, - [SMALL_STATE(741)] = 26072, - [SMALL_STATE(742)] = 26130, - [SMALL_STATE(743)] = 26188, - [SMALL_STATE(744)] = 26246, - [SMALL_STATE(745)] = 26304, - [SMALL_STATE(746)] = 26362, - [SMALL_STATE(747)] = 26420, - [SMALL_STATE(748)] = 26486, - [SMALL_STATE(749)] = 26544, - [SMALL_STATE(750)] = 26602, - [SMALL_STATE(751)] = 26660, - [SMALL_STATE(752)] = 26718, - [SMALL_STATE(753)] = 26776, - [SMALL_STATE(754)] = 26838, - [SMALL_STATE(755)] = 26900, - [SMALL_STATE(756)] = 26958, - [SMALL_STATE(757)] = 27022, - [SMALL_STATE(758)] = 27084, - [SMALL_STATE(759)] = 27146, - [SMALL_STATE(760)] = 27204, - [SMALL_STATE(761)] = 27262, - [SMALL_STATE(762)] = 27320, - [SMALL_STATE(763)] = 27382, - [SMALL_STATE(764)] = 27440, - [SMALL_STATE(765)] = 27498, - [SMALL_STATE(766)] = 27556, - [SMALL_STATE(767)] = 27614, - [SMALL_STATE(768)] = 27672, - [SMALL_STATE(769)] = 27730, - [SMALL_STATE(770)] = 27788, - [SMALL_STATE(771)] = 27846, - [SMALL_STATE(772)] = 27904, - [SMALL_STATE(773)] = 27962, - [SMALL_STATE(774)] = 28020, - [SMALL_STATE(775)] = 28078, - [SMALL_STATE(776)] = 28136, - [SMALL_STATE(777)] = 28194, - [SMALL_STATE(778)] = 28258, - [SMALL_STATE(779)] = 28316, - [SMALL_STATE(780)] = 28378, - [SMALL_STATE(781)] = 28436, - [SMALL_STATE(782)] = 28498, - [SMALL_STATE(783)] = 28569, - [SMALL_STATE(784)] = 28626, - [SMALL_STATE(785)] = 28705, - [SMALL_STATE(786)] = 28778, - [SMALL_STATE(787)] = 28855, - [SMALL_STATE(788)] = 28934, - [SMALL_STATE(789)] = 29015, - [SMALL_STATE(790)] = 29098, - [SMALL_STATE(791)] = 29183, - [SMALL_STATE(792)] = 29270, - [SMALL_STATE(793)] = 29339, - [SMALL_STATE(794)] = 29396, - [SMALL_STATE(795)] = 29487, - [SMALL_STATE(796)] = 29578, - [SMALL_STATE(797)] = 29635, - [SMALL_STATE(798)] = 29692, - [SMALL_STATE(799)] = 29749, - [SMALL_STATE(800)] = 29810, - [SMALL_STATE(801)] = 29889, - [SMALL_STATE(802)] = 29980, - [SMALL_STATE(803)] = 30059, - [SMALL_STATE(804)] = 30116, - [SMALL_STATE(805)] = 30173, - [SMALL_STATE(806)] = 30230, - [SMALL_STATE(807)] = 30287, - [SMALL_STATE(808)] = 30344, - [SMALL_STATE(809)] = 30401, - [SMALL_STATE(810)] = 30458, - [SMALL_STATE(811)] = 30515, - [SMALL_STATE(812)] = 30572, - [SMALL_STATE(813)] = 30629, - [SMALL_STATE(814)] = 30686, - [SMALL_STATE(815)] = 30743, - [SMALL_STATE(816)] = 30800, - [SMALL_STATE(817)] = 30865, - [SMALL_STATE(818)] = 30944, - [SMALL_STATE(819)] = 31004, - [SMALL_STATE(820)] = 31074, - [SMALL_STATE(821)] = 31130, - [SMALL_STATE(822)] = 31186, - [SMALL_STATE(823)] = 31253, - [SMALL_STATE(824)] = 31314, - [SMALL_STATE(825)] = 31375, - [SMALL_STATE(826)] = 31429, - [SMALL_STATE(827)] = 31483, - [SMALL_STATE(828)] = 31536, - [SMALL_STATE(829)] = 31599, - [SMALL_STATE(830)] = 31652, - [SMALL_STATE(831)] = 31715, - [SMALL_STATE(832)] = 31768, - [SMALL_STATE(833)] = 31821, - [SMALL_STATE(834)] = 31874, - [SMALL_STATE(835)] = 31927, - [SMALL_STATE(836)] = 31980, - [SMALL_STATE(837)] = 32033, - [SMALL_STATE(838)] = 32086, - [SMALL_STATE(839)] = 32149, - [SMALL_STATE(840)] = 32202, - [SMALL_STATE(841)] = 32255, - [SMALL_STATE(842)] = 32312, - [SMALL_STATE(843)] = 32365, - [SMALL_STATE(844)] = 32418, - [SMALL_STATE(845)] = 32471, - [SMALL_STATE(846)] = 32524, - [SMALL_STATE(847)] = 32577, - [SMALL_STATE(848)] = 32630, - [SMALL_STATE(849)] = 32687, - [SMALL_STATE(850)] = 32744, - [SMALL_STATE(851)] = 32797, - [SMALL_STATE(852)] = 32858, - [SMALL_STATE(853)] = 32911, - [SMALL_STATE(854)] = 32964, - [SMALL_STATE(855)] = 33017, - [SMALL_STATE(856)] = 33070, - [SMALL_STATE(857)] = 33131, - [SMALL_STATE(858)] = 33184, - [SMALL_STATE(859)] = 33237, - [SMALL_STATE(860)] = 33290, - [SMALL_STATE(861)] = 33343, - [SMALL_STATE(862)] = 33406, - [SMALL_STATE(863)] = 33463, - [SMALL_STATE(864)] = 33516, - [SMALL_STATE(865)] = 33569, - [SMALL_STATE(866)] = 33632, - [SMALL_STATE(867)] = 33685, - [SMALL_STATE(868)] = 33738, - [SMALL_STATE(869)] = 33791, - [SMALL_STATE(870)] = 33844, - [SMALL_STATE(871)] = 33907, - [SMALL_STATE(872)] = 33960, - [SMALL_STATE(873)] = 34013, - [SMALL_STATE(874)] = 34074, - [SMALL_STATE(875)] = 34127, - [SMALL_STATE(876)] = 34180, - [SMALL_STATE(877)] = 34266, - [SMALL_STATE(878)] = 34332, - [SMALL_STATE(879)] = 34400, - [SMALL_STATE(880)] = 34472, - [SMALL_STATE(881)] = 34546, - [SMALL_STATE(882)] = 34632, - [SMALL_STATE(883)] = 34708, - [SMALL_STATE(884)] = 34786, - [SMALL_STATE(885)] = 34866, - [SMALL_STATE(886)] = 34926, - [SMALL_STATE(887)] = 35008, - [SMALL_STATE(888)] = 35072, - [SMALL_STATE(889)] = 35158, - [SMALL_STATE(890)] = 35209, - [SMALL_STATE(891)] = 35264, - [SMALL_STATE(892)] = 35327, - [SMALL_STATE(893)] = 35413, - [SMALL_STATE(894)] = 35499, - [SMALL_STATE(895)] = 35557, - [SMALL_STATE(896)] = 35617, - [SMALL_STATE(897)] = 35665, - [SMALL_STATE(898)] = 35713, - [SMALL_STATE(899)] = 35761, - [SMALL_STATE(900)] = 35811, - [SMALL_STATE(901)] = 35859, - [SMALL_STATE(902)] = 35907, - [SMALL_STATE(903)] = 35955, - [SMALL_STATE(904)] = 36003, - [SMALL_STATE(905)] = 36051, - [SMALL_STATE(906)] = 36101, - [SMALL_STATE(907)] = 36151, - [SMALL_STATE(908)] = 36199, - [SMALL_STATE(909)] = 36247, - [SMALL_STATE(910)] = 36295, - [SMALL_STATE(911)] = 36343, - [SMALL_STATE(912)] = 36393, - [SMALL_STATE(913)] = 36441, - [SMALL_STATE(914)] = 36516, - [SMALL_STATE(915)] = 36589, - [SMALL_STATE(916)] = 36660, - [SMALL_STATE(917)] = 36719, - [SMALL_STATE(918)] = 36778, - [SMALL_STATE(919)] = 36837, - [SMALL_STATE(920)] = 36920, - [SMALL_STATE(921)] = 36979, - [SMALL_STATE(922)] = 37048, - [SMALL_STATE(923)] = 37113, - [SMALL_STATE(924)] = 37176, - [SMALL_STATE(925)] = 37259, - [SMALL_STATE(926)] = 37316, - [SMALL_STATE(927)] = 37377, - [SMALL_STATE(928)] = 37436, - [SMALL_STATE(929)] = 37515, - [SMALL_STATE(930)] = 37598, - [SMALL_STATE(931)] = 37675, - [SMALL_STATE(932)] = 37755, - [SMALL_STATE(933)] = 37819, - [SMALL_STATE(934)] = 37893, - [SMALL_STATE(935)] = 37969, - [SMALL_STATE(936)] = 38043, - [SMALL_STATE(937)] = 38123, - [SMALL_STATE(938)] = 38199, - [SMALL_STATE(939)] = 38245, - [SMALL_STATE(940)] = 38317, - [SMALL_STATE(941)] = 38393, - [SMALL_STATE(942)] = 38463, - [SMALL_STATE(943)] = 38509, - [SMALL_STATE(944)] = 38559, - [SMALL_STATE(945)] = 38635, - [SMALL_STATE(946)] = 38703, - [SMALL_STATE(947)] = 38749, - [SMALL_STATE(948)] = 38829, - [SMALL_STATE(949)] = 38875, - [SMALL_STATE(950)] = 38937, - [SMALL_STATE(951)] = 39013, - [SMALL_STATE(952)] = 39073, - [SMALL_STATE(953)] = 39124, - [SMALL_STATE(954)] = 39168, - [SMALL_STATE(955)] = 39212, - [SMALL_STATE(956)] = 39256, - [SMALL_STATE(957)] = 39300, - [SMALL_STATE(958)] = 39344, - [SMALL_STATE(959)] = 39388, - [SMALL_STATE(960)] = 39432, - [SMALL_STATE(961)] = 39476, - [SMALL_STATE(962)] = 39520, - [SMALL_STATE(963)] = 39564, - [SMALL_STATE(964)] = 39608, - [SMALL_STATE(965)] = 39652, - [SMALL_STATE(966)] = 39696, - [SMALL_STATE(967)] = 39740, - [SMALL_STATE(968)] = 39817, - [SMALL_STATE(969)] = 39887, - [SMALL_STATE(970)] = 39941, - [SMALL_STATE(971)] = 40013, - [SMALL_STATE(972)] = 40085, - [SMALL_STATE(973)] = 40155, - [SMALL_STATE(974)] = 40211, - [SMALL_STATE(975)] = 40284, - [SMALL_STATE(976)] = 40349, - [SMALL_STATE(977)] = 40416, - [SMALL_STATE(978)] = 40493, - [SMALL_STATE(979)] = 40570, - [SMALL_STATE(980)] = 40637, - [SMALL_STATE(981)] = 40704, - [SMALL_STATE(982)] = 40771, - [SMALL_STATE(983)] = 40826, - [SMALL_STATE(984)] = 40903, - [SMALL_STATE(985)] = 40970, - [SMALL_STATE(986)] = 41029, - [SMALL_STATE(987)] = 41100, - [SMALL_STATE(988)] = 41177, - [SMALL_STATE(989)] = 41244, - [SMALL_STATE(990)] = 41311, - [SMALL_STATE(991)] = 41380, - [SMALL_STATE(992)] = 41437, - [SMALL_STATE(993)] = 41504, - [SMALL_STATE(994)] = 41567, - [SMALL_STATE(995)] = 41634, - [SMALL_STATE(996)] = 41682, - [SMALL_STATE(997)] = 41730, - [SMALL_STATE(998)] = 41778, - [SMALL_STATE(999)] = 41826, - [SMALL_STATE(1000)] = 41889, - [SMALL_STATE(1001)] = 41952, - [SMALL_STATE(1002)] = 42015, - [SMALL_STATE(1003)] = 42078, - [SMALL_STATE(1004)] = 42141, - [SMALL_STATE(1005)] = 42204, - [SMALL_STATE(1006)] = 42267, - [SMALL_STATE(1007)] = 42330, - [SMALL_STATE(1008)] = 42393, - [SMALL_STATE(1009)] = 42456, - [SMALL_STATE(1010)] = 42519, - [SMALL_STATE(1011)] = 42582, - [SMALL_STATE(1012)] = 42645, - [SMALL_STATE(1013)] = 42691, - [SMALL_STATE(1014)] = 42751, - [SMALL_STATE(1015)] = 42825, - [SMALL_STATE(1016)] = 42885, - [SMALL_STATE(1017)] = 42945, - [SMALL_STATE(1018)] = 43005, - [SMALL_STATE(1019)] = 43065, - [SMALL_STATE(1020)] = 43125, - [SMALL_STATE(1021)] = 43162, - [SMALL_STATE(1022)] = 43237, - [SMALL_STATE(1023)] = 43312, - [SMALL_STATE(1024)] = 43387, - [SMALL_STATE(1025)] = 43424, - [SMALL_STATE(1026)] = 43499, - [SMALL_STATE(1027)] = 43574, - [SMALL_STATE(1028)] = 43649, - [SMALL_STATE(1029)] = 43721, - [SMALL_STATE(1030)] = 43781, - [SMALL_STATE(1031)] = 43851, - [SMALL_STATE(1032)] = 43923, - [SMALL_STATE(1033)] = 43989, - [SMALL_STATE(1034)] = 44061, - [SMALL_STATE(1035)] = 44127, - [SMALL_STATE(1036)] = 44199, - [SMALL_STATE(1037)] = 44271, - [SMALL_STATE(1038)] = 44341, - [SMALL_STATE(1039)] = 44403, - [SMALL_STATE(1040)] = 44475, - [SMALL_STATE(1041)] = 44547, - [SMALL_STATE(1042)] = 44617, - [SMALL_STATE(1043)] = 44689, - [SMALL_STATE(1044)] = 44761, - [SMALL_STATE(1045)] = 44825, - [SMALL_STATE(1046)] = 44897, - [SMALL_STATE(1047)] = 44969, - [SMALL_STATE(1048)] = 45041, - [SMALL_STATE(1049)] = 45113, - [SMALL_STATE(1050)] = 45185, - [SMALL_STATE(1051)] = 45257, - [SMALL_STATE(1052)] = 45327, - [SMALL_STATE(1053)] = 45399, - [SMALL_STATE(1054)] = 45467, - [SMALL_STATE(1055)] = 45539, - [SMALL_STATE(1056)] = 45595, - [SMALL_STATE(1057)] = 45665, - [SMALL_STATE(1058)] = 45737, - [SMALL_STATE(1059)] = 45809, - [SMALL_STATE(1060)] = 45881, - [SMALL_STATE(1061)] = 45953, - [SMALL_STATE(1062)] = 46025, - [SMALL_STATE(1063)] = 46097, - [SMALL_STATE(1064)] = 46169, - [SMALL_STATE(1065)] = 46223, - [SMALL_STATE(1066)] = 46297, - [SMALL_STATE(1067)] = 46369, - [SMALL_STATE(1068)] = 46441, - [SMALL_STATE(1069)] = 46513, - [SMALL_STATE(1070)] = 46583, - [SMALL_STATE(1071)] = 46635, - [SMALL_STATE(1072)] = 46705, - [SMALL_STATE(1073)] = 46775, - [SMALL_STATE(1074)] = 46847, - [SMALL_STATE(1075)] = 46919, - [SMALL_STATE(1076)] = 46988, - [SMALL_STATE(1077)] = 47057, - [SMALL_STATE(1078)] = 47126, - [SMALL_STATE(1079)] = 47195, - [SMALL_STATE(1080)] = 47264, - [SMALL_STATE(1081)] = 47333, - [SMALL_STATE(1082)] = 47402, - [SMALL_STATE(1083)] = 47471, - [SMALL_STATE(1084)] = 47540, - [SMALL_STATE(1085)] = 47609, - [SMALL_STATE(1086)] = 47678, - [SMALL_STATE(1087)] = 47747, - [SMALL_STATE(1088)] = 47816, - [SMALL_STATE(1089)] = 47885, - [SMALL_STATE(1090)] = 47954, - [SMALL_STATE(1091)] = 48023, - [SMALL_STATE(1092)] = 48092, - [SMALL_STATE(1093)] = 48161, - [SMALL_STATE(1094)] = 48230, - [SMALL_STATE(1095)] = 48299, - [SMALL_STATE(1096)] = 48368, - [SMALL_STATE(1097)] = 48437, - [SMALL_STATE(1098)] = 48491, - [SMALL_STATE(1099)] = 48545, - [SMALL_STATE(1100)] = 48611, - [SMALL_STATE(1101)] = 48647, - [SMALL_STATE(1102)] = 48701, - [SMALL_STATE(1103)] = 48755, - [SMALL_STATE(1104)] = 48809, - [SMALL_STATE(1105)] = 48863, - [SMALL_STATE(1106)] = 48914, - [SMALL_STATE(1107)] = 48965, - [SMALL_STATE(1108)] = 49012, - [SMALL_STATE(1109)] = 49063, - [SMALL_STATE(1110)] = 49114, - [SMALL_STATE(1111)] = 49165, - [SMALL_STATE(1112)] = 49216, - [SMALL_STATE(1113)] = 49256, - [SMALL_STATE(1114)] = 49294, - [SMALL_STATE(1115)] = 49333, - [SMALL_STATE(1116)] = 49372, - [SMALL_STATE(1117)] = 49411, - [SMALL_STATE(1118)] = 49450, - [SMALL_STATE(1119)] = 49499, - [SMALL_STATE(1120)] = 49543, - [SMALL_STATE(1121)] = 49597, - [SMALL_STATE(1122)] = 49651, - [SMALL_STATE(1123)] = 49701, - [SMALL_STATE(1124)] = 49755, - [SMALL_STATE(1125)] = 49809, - [SMALL_STATE(1126)] = 49843, - [SMALL_STATE(1127)] = 49876, - [SMALL_STATE(1128)] = 49927, - [SMALL_STATE(1129)] = 49960, - [SMALL_STATE(1130)] = 50003, - [SMALL_STATE(1131)] = 50054, - [SMALL_STATE(1132)] = 50087, - [SMALL_STATE(1133)] = 50120, - [SMALL_STATE(1134)] = 50153, - [SMALL_STATE(1135)] = 50204, - [SMALL_STATE(1136)] = 50237, - [SMALL_STATE(1137)] = 50288, - [SMALL_STATE(1138)] = 50335, - [SMALL_STATE(1139)] = 50372, - [SMALL_STATE(1140)] = 50411, - [SMALL_STATE(1141)] = 50454, - [SMALL_STATE(1142)] = 50505, - [SMALL_STATE(1143)] = 50556, - [SMALL_STATE(1144)] = 50607, - [SMALL_STATE(1145)] = 50662, - [SMALL_STATE(1146)] = 50713, - [SMALL_STATE(1147)] = 50756, - [SMALL_STATE(1148)] = 50811, - [SMALL_STATE(1149)] = 50862, - [SMALL_STATE(1150)] = 50895, - [SMALL_STATE(1151)] = 50934, - [SMALL_STATE(1152)] = 50967, - [SMALL_STATE(1153)] = 51000, - [SMALL_STATE(1154)] = 51055, - [SMALL_STATE(1155)] = 51106, - [SMALL_STATE(1156)] = 51141, - [SMALL_STATE(1157)] = 51192, - [SMALL_STATE(1158)] = 51243, - [SMALL_STATE(1159)] = 51294, - [SMALL_STATE(1160)] = 51333, - [SMALL_STATE(1161)] = 51384, - [SMALL_STATE(1162)] = 51423, - [SMALL_STATE(1163)] = 51451, - [SMALL_STATE(1164)] = 51491, - [SMALL_STATE(1165)] = 51533, - [SMALL_STATE(1166)] = 51573, - [SMALL_STATE(1167)] = 51609, - [SMALL_STATE(1168)] = 51643, - [SMALL_STATE(1169)] = 51683, - [SMALL_STATE(1170)] = 51723, - [SMALL_STATE(1171)] = 51769, - [SMALL_STATE(1172)] = 51809, - [SMALL_STATE(1173)] = 51849, - [SMALL_STATE(1174)] = 51889, - [SMALL_STATE(1175)] = 51929, - [SMALL_STATE(1176)] = 51975, - [SMALL_STATE(1177)] = 52023, - [SMALL_STATE(1178)] = 52063, - [SMALL_STATE(1179)] = 52107, - [SMALL_STATE(1180)] = 52147, - [SMALL_STATE(1181)] = 52179, - [SMALL_STATE(1182)] = 52219, - [SMALL_STATE(1183)] = 52259, - [SMALL_STATE(1184)] = 52309, - [SMALL_STATE(1185)] = 52349, - [SMALL_STATE(1186)] = 52377, - [SMALL_STATE(1187)] = 52405, - [SMALL_STATE(1188)] = 52445, - [SMALL_STATE(1189)] = 52473, - [SMALL_STATE(1190)] = 52513, - [SMALL_STATE(1191)] = 52541, - [SMALL_STATE(1192)] = 52581, - [SMALL_STATE(1193)] = 52621, - [SMALL_STATE(1194)] = 52661, - [SMALL_STATE(1195)] = 52701, - [SMALL_STATE(1196)] = 52741, - [SMALL_STATE(1197)] = 52781, - [SMALL_STATE(1198)] = 52809, - [SMALL_STATE(1199)] = 52849, - [SMALL_STATE(1200)] = 52889, - [SMALL_STATE(1201)] = 52929, - [SMALL_STATE(1202)] = 52961, - [SMALL_STATE(1203)] = 53001, - [SMALL_STATE(1204)] = 53041, - [SMALL_STATE(1205)] = 53081, - [SMALL_STATE(1206)] = 53121, - [SMALL_STATE(1207)] = 53161, - [SMALL_STATE(1208)] = 53201, - [SMALL_STATE(1209)] = 53241, - [SMALL_STATE(1210)] = 53281, - [SMALL_STATE(1211)] = 53321, - [SMALL_STATE(1212)] = 53369, - [SMALL_STATE(1213)] = 53409, - [SMALL_STATE(1214)] = 53449, - [SMALL_STATE(1215)] = 53489, - [SMALL_STATE(1216)] = 53529, - [SMALL_STATE(1217)] = 53569, - [SMALL_STATE(1218)] = 53609, - [SMALL_STATE(1219)] = 53649, - [SMALL_STATE(1220)] = 53686, - [SMALL_STATE(1221)] = 53727, - [SMALL_STATE(1222)] = 53772, - [SMALL_STATE(1223)] = 53817, - [SMALL_STATE(1224)] = 53862, - [SMALL_STATE(1225)] = 53889, - [SMALL_STATE(1226)] = 53934, - [SMALL_STATE(1227)] = 53965, - [SMALL_STATE(1228)] = 53992, - [SMALL_STATE(1229)] = 54037, - [SMALL_STATE(1230)] = 54082, - [SMALL_STATE(1231)] = 54109, - [SMALL_STATE(1232)] = 54136, - [SMALL_STATE(1233)] = 54185, - [SMALL_STATE(1234)] = 54230, - [SMALL_STATE(1235)] = 54261, - [SMALL_STATE(1236)] = 54294, - [SMALL_STATE(1237)] = 54333, - [SMALL_STATE(1238)] = 54368, - [SMALL_STATE(1239)] = 54413, - [SMALL_STATE(1240)] = 54456, - [SMALL_STATE(1241)] = 54483, - [SMALL_STATE(1242)] = 54526, - [SMALL_STATE(1243)] = 54553, - [SMALL_STATE(1244)] = 54596, - [SMALL_STATE(1245)] = 54641, - [SMALL_STATE(1246)] = 54686, - [SMALL_STATE(1247)] = 54713, - [SMALL_STATE(1248)] = 54740, - [SMALL_STATE(1249)] = 54769, - [SMALL_STATE(1250)] = 54812, - [SMALL_STATE(1251)] = 54855, - [SMALL_STATE(1252)] = 54900, - [SMALL_STATE(1253)] = 54945, - [SMALL_STATE(1254)] = 54972, - [SMALL_STATE(1255)] = 54999, - [SMALL_STATE(1256)] = 55044, - [SMALL_STATE(1257)] = 55089, - [SMALL_STATE(1258)] = 55138, - [SMALL_STATE(1259)] = 55165, - [SMALL_STATE(1260)] = 55192, - [SMALL_STATE(1261)] = 55219, - [SMALL_STATE(1262)] = 55264, - [SMALL_STATE(1263)] = 55304, - [SMALL_STATE(1264)] = 55344, - [SMALL_STATE(1265)] = 55388, - [SMALL_STATE(1266)] = 55428, - [SMALL_STATE(1267)] = 55468, - [SMALL_STATE(1268)] = 55508, - [SMALL_STATE(1269)] = 55548, - [SMALL_STATE(1270)] = 55590, - [SMALL_STATE(1271)] = 55623, - [SMALL_STATE(1272)] = 55656, - [SMALL_STATE(1273)] = 55687, - [SMALL_STATE(1274)] = 55720, - [SMALL_STATE(1275)] = 55761, - [SMALL_STATE(1276)] = 55802, - [SMALL_STATE(1277)] = 55843, - [SMALL_STATE(1278)] = 55884, - [SMALL_STATE(1279)] = 55925, - [SMALL_STATE(1280)] = 55966, - [SMALL_STATE(1281)] = 55999, - [SMALL_STATE(1282)] = 56036, - [SMALL_STATE(1283)] = 56077, - [SMALL_STATE(1284)] = 56118, - [SMALL_STATE(1285)] = 56156, - [SMALL_STATE(1286)] = 56188, - [SMALL_STATE(1287)] = 56220, - [SMALL_STATE(1288)] = 56252, - [SMALL_STATE(1289)] = 56280, - [SMALL_STATE(1290)] = 56312, - [SMALL_STATE(1291)] = 56350, - [SMALL_STATE(1292)] = 56386, - [SMALL_STATE(1293)] = 56425, - [SMALL_STATE(1294)] = 56464, - [SMALL_STATE(1295)] = 56503, - [SMALL_STATE(1296)] = 56542, - [SMALL_STATE(1297)] = 56573, - [SMALL_STATE(1298)] = 56600, - [SMALL_STATE(1299)] = 56622, - [SMALL_STATE(1300)] = 56644, - [SMALL_STATE(1301)] = 56666, - [SMALL_STATE(1302)] = 56688, - [SMALL_STATE(1303)] = 56710, - [SMALL_STATE(1304)] = 56732, - [SMALL_STATE(1305)] = 56754, - [SMALL_STATE(1306)] = 56776, - [SMALL_STATE(1307)] = 56798, - [SMALL_STATE(1308)] = 56819, - [SMALL_STATE(1309)] = 56848, - [SMALL_STATE(1310)] = 56881, - [SMALL_STATE(1311)] = 56902, - [SMALL_STATE(1312)] = 56935, - [SMALL_STATE(1313)] = 56972, - [SMALL_STATE(1314)] = 56993, - [SMALL_STATE(1315)] = 57030, - [SMALL_STATE(1316)] = 57067, - [SMALL_STATE(1317)] = 57094, - [SMALL_STATE(1318)] = 57115, - [SMALL_STATE(1319)] = 57152, - [SMALL_STATE(1320)] = 57173, - [SMALL_STATE(1321)] = 57194, - [SMALL_STATE(1322)] = 57215, - [SMALL_STATE(1323)] = 57236, - [SMALL_STATE(1324)] = 57263, - [SMALL_STATE(1325)] = 57300, - [SMALL_STATE(1326)] = 57321, - [SMALL_STATE(1327)] = 57358, - [SMALL_STATE(1328)] = 57387, - [SMALL_STATE(1329)] = 57424, - [SMALL_STATE(1330)] = 57461, - [SMALL_STATE(1331)] = 57488, - [SMALL_STATE(1332)] = 57517, - [SMALL_STATE(1333)] = 57552, - [SMALL_STATE(1334)] = 57581, - [SMALL_STATE(1335)] = 57618, - [SMALL_STATE(1336)] = 57639, - [SMALL_STATE(1337)] = 57676, - [SMALL_STATE(1338)] = 57713, - [SMALL_STATE(1339)] = 57737, - [SMALL_STATE(1340)] = 57768, - [SMALL_STATE(1341)] = 57799, - [SMALL_STATE(1342)] = 57828, - [SMALL_STATE(1343)] = 57857, - [SMALL_STATE(1344)] = 57886, - [SMALL_STATE(1345)] = 57915, - [SMALL_STATE(1346)] = 57946, - [SMALL_STATE(1347)] = 57975, - [SMALL_STATE(1348)] = 58004, - [SMALL_STATE(1349)] = 58035, - [SMALL_STATE(1350)] = 58064, - [SMALL_STATE(1351)] = 58095, - [SMALL_STATE(1352)] = 58124, - [SMALL_STATE(1353)] = 58153, - [SMALL_STATE(1354)] = 58184, - [SMALL_STATE(1355)] = 58213, - [SMALL_STATE(1356)] = 58244, - [SMALL_STATE(1357)] = 58273, - [SMALL_STATE(1358)] = 58302, - [SMALL_STATE(1359)] = 58333, - [SMALL_STATE(1360)] = 58362, - [SMALL_STATE(1361)] = 58391, - [SMALL_STATE(1362)] = 58416, - [SMALL_STATE(1363)] = 58440, - [SMALL_STATE(1364)] = 58464, - [SMALL_STATE(1365)] = 58488, - [SMALL_STATE(1366)] = 58506, - [SMALL_STATE(1367)] = 58538, - [SMALL_STATE(1368)] = 58558, - [SMALL_STATE(1369)] = 58578, - [SMALL_STATE(1370)] = 58596, - [SMALL_STATE(1371)] = 58616, - [SMALL_STATE(1372)] = 58634, - [SMALL_STATE(1373)] = 58652, - [SMALL_STATE(1374)] = 58676, - [SMALL_STATE(1375)] = 58700, - [SMALL_STATE(1376)] = 58724, - [SMALL_STATE(1377)] = 58748, - [SMALL_STATE(1378)] = 58766, - [SMALL_STATE(1379)] = 58790, - [SMALL_STATE(1380)] = 58808, - [SMALL_STATE(1381)] = 58832, - [SMALL_STATE(1382)] = 58852, - [SMALL_STATE(1383)] = 58876, - [SMALL_STATE(1384)] = 58900, - [SMALL_STATE(1385)] = 58924, - [SMALL_STATE(1386)] = 58956, - [SMALL_STATE(1387)] = 58980, - [SMALL_STATE(1388)] = 58998, - [SMALL_STATE(1389)] = 59030, - [SMALL_STATE(1390)] = 59050, - [SMALL_STATE(1391)] = 59082, - [SMALL_STATE(1392)] = 59106, - [SMALL_STATE(1393)] = 59130, - [SMALL_STATE(1394)] = 59154, - [SMALL_STATE(1395)] = 59178, - [SMALL_STATE(1396)] = 59202, - [SMALL_STATE(1397)] = 59222, - [SMALL_STATE(1398)] = 59251, - [SMALL_STATE(1399)] = 59276, - [SMALL_STATE(1400)] = 59305, - [SMALL_STATE(1401)] = 59334, - [SMALL_STATE(1402)] = 59353, - [SMALL_STATE(1403)] = 59376, - [SMALL_STATE(1404)] = 59397, - [SMALL_STATE(1405)] = 59426, - [SMALL_STATE(1406)] = 59455, - [SMALL_STATE(1407)] = 59478, - [SMALL_STATE(1408)] = 59507, - [SMALL_STATE(1409)] = 59528, - [SMALL_STATE(1410)] = 59551, - [SMALL_STATE(1411)] = 59572, - [SMALL_STATE(1412)] = 59593, - [SMALL_STATE(1413)] = 59614, - [SMALL_STATE(1414)] = 59643, - [SMALL_STATE(1415)] = 59658, - [SMALL_STATE(1416)] = 59679, - [SMALL_STATE(1417)] = 59708, - [SMALL_STATE(1418)] = 59729, - [SMALL_STATE(1419)] = 59749, - [SMALL_STATE(1420)] = 59775, - [SMALL_STATE(1421)] = 59799, - [SMALL_STATE(1422)] = 59825, - [SMALL_STATE(1423)] = 59851, - [SMALL_STATE(1424)] = 59873, - [SMALL_STATE(1425)] = 59893, - [SMALL_STATE(1426)] = 59919, - [SMALL_STATE(1427)] = 59945, - [SMALL_STATE(1428)] = 59971, - [SMALL_STATE(1429)] = 59997, - [SMALL_STATE(1430)] = 60015, - [SMALL_STATE(1431)] = 60041, - [SMALL_STATE(1432)] = 60067, - [SMALL_STATE(1433)] = 60087, - [SMALL_STATE(1434)] = 60113, - [SMALL_STATE(1435)] = 60139, - [SMALL_STATE(1436)] = 60165, - [SMALL_STATE(1437)] = 60188, - [SMALL_STATE(1438)] = 60211, - [SMALL_STATE(1439)] = 60234, - [SMALL_STATE(1440)] = 60251, - [SMALL_STATE(1441)] = 60274, - [SMALL_STATE(1442)] = 60293, - [SMALL_STATE(1443)] = 60312, - [SMALL_STATE(1444)] = 60335, - [SMALL_STATE(1445)] = 60358, - [SMALL_STATE(1446)] = 60381, - [SMALL_STATE(1447)] = 60397, - [SMALL_STATE(1448)] = 60411, - [SMALL_STATE(1449)] = 60425, - [SMALL_STATE(1450)] = 60445, - [SMALL_STATE(1451)] = 60459, - [SMALL_STATE(1452)] = 60479, - [SMALL_STATE(1453)] = 60493, - [SMALL_STATE(1454)] = 60509, - [SMALL_STATE(1455)] = 60529, - [SMALL_STATE(1456)] = 60549, - [SMALL_STATE(1457)] = 60563, - [SMALL_STATE(1458)] = 60577, - [SMALL_STATE(1459)] = 60597, - [SMALL_STATE(1460)] = 60611, - [SMALL_STATE(1461)] = 60631, - [SMALL_STATE(1462)] = 60645, - [SMALL_STATE(1463)] = 60663, - [SMALL_STATE(1464)] = 60677, - [SMALL_STATE(1465)] = 60697, - [SMALL_STATE(1466)] = 60711, - [SMALL_STATE(1467)] = 60729, - [SMALL_STATE(1468)] = 60749, - [SMALL_STATE(1469)] = 60765, - [SMALL_STATE(1470)] = 60779, - [SMALL_STATE(1471)] = 60797, - [SMALL_STATE(1472)] = 60811, - [SMALL_STATE(1473)] = 60831, - [SMALL_STATE(1474)] = 60849, - [SMALL_STATE(1475)] = 60863, - [SMALL_STATE(1476)] = 60883, - [SMALL_STATE(1477)] = 60901, - [SMALL_STATE(1478)] = 60915, - [SMALL_STATE(1479)] = 60929, - [SMALL_STATE(1480)] = 60947, - [SMALL_STATE(1481)] = 60965, - [SMALL_STATE(1482)] = 60985, - [SMALL_STATE(1483)] = 61005, - [SMALL_STATE(1484)] = 61025, - [SMALL_STATE(1485)] = 61036, - [SMALL_STATE(1486)] = 61047, - [SMALL_STATE(1487)] = 61066, - [SMALL_STATE(1488)] = 61077, - [SMALL_STATE(1489)] = 61096, - [SMALL_STATE(1490)] = 61107, - [SMALL_STATE(1491)] = 61122, - [SMALL_STATE(1492)] = 61141, - [SMALL_STATE(1493)] = 61152, - [SMALL_STATE(1494)] = 61163, - [SMALL_STATE(1495)] = 61180, - [SMALL_STATE(1496)] = 61199, - [SMALL_STATE(1497)] = 61210, - [SMALL_STATE(1498)] = 61229, - [SMALL_STATE(1499)] = 61248, - [SMALL_STATE(1500)] = 61267, - [SMALL_STATE(1501)] = 61286, - [SMALL_STATE(1502)] = 61305, - [SMALL_STATE(1503)] = 61316, - [SMALL_STATE(1504)] = 61333, - [SMALL_STATE(1505)] = 61344, - [SMALL_STATE(1506)] = 61355, - [SMALL_STATE(1507)] = 61366, - [SMALL_STATE(1508)] = 61381, - [SMALL_STATE(1509)] = 61392, - [SMALL_STATE(1510)] = 61403, - [SMALL_STATE(1511)] = 61422, - [SMALL_STATE(1512)] = 61436, - [SMALL_STATE(1513)] = 61452, - [SMALL_STATE(1514)] = 61468, - [SMALL_STATE(1515)] = 61478, - [SMALL_STATE(1516)] = 61494, - [SMALL_STATE(1517)] = 61508, - [SMALL_STATE(1518)] = 61522, - [SMALL_STATE(1519)] = 61536, - [SMALL_STATE(1520)] = 61550, - [SMALL_STATE(1521)] = 61564, - [SMALL_STATE(1522)] = 61580, - [SMALL_STATE(1523)] = 61594, - [SMALL_STATE(1524)] = 61608, - [SMALL_STATE(1525)] = 61622, - [SMALL_STATE(1526)] = 61638, - [SMALL_STATE(1527)] = 61654, - [SMALL_STATE(1528)] = 61670, - [SMALL_STATE(1529)] = 61684, - [SMALL_STATE(1530)] = 61698, - [SMALL_STATE(1531)] = 61712, - [SMALL_STATE(1532)] = 61726, - [SMALL_STATE(1533)] = 61742, - [SMALL_STATE(1534)] = 61758, - [SMALL_STATE(1535)] = 61772, - [SMALL_STATE(1536)] = 61786, - [SMALL_STATE(1537)] = 61800, - [SMALL_STATE(1538)] = 61814, - [SMALL_STATE(1539)] = 61828, - [SMALL_STATE(1540)] = 61842, - [SMALL_STATE(1541)] = 61856, - [SMALL_STATE(1542)] = 61866, - [SMALL_STATE(1543)] = 61882, - [SMALL_STATE(1544)] = 61898, - [SMALL_STATE(1545)] = 61914, - [SMALL_STATE(1546)] = 61928, - [SMALL_STATE(1547)] = 61941, - [SMALL_STATE(1548)] = 61954, - [SMALL_STATE(1549)] = 61967, - [SMALL_STATE(1550)] = 61980, - [SMALL_STATE(1551)] = 61993, - [SMALL_STATE(1552)] = 62006, - [SMALL_STATE(1553)] = 62019, - [SMALL_STATE(1554)] = 62032, - [SMALL_STATE(1555)] = 62045, - [SMALL_STATE(1556)] = 62058, - [SMALL_STATE(1557)] = 62071, - [SMALL_STATE(1558)] = 62084, - [SMALL_STATE(1559)] = 62093, - [SMALL_STATE(1560)] = 62106, - [SMALL_STATE(1561)] = 62119, - [SMALL_STATE(1562)] = 62132, - [SMALL_STATE(1563)] = 62145, - [SMALL_STATE(1564)] = 62158, - [SMALL_STATE(1565)] = 62171, - [SMALL_STATE(1566)] = 62182, - [SMALL_STATE(1567)] = 62195, - [SMALL_STATE(1568)] = 62206, - [SMALL_STATE(1569)] = 62219, - [SMALL_STATE(1570)] = 62232, - [SMALL_STATE(1571)] = 62245, - [SMALL_STATE(1572)] = 62258, - [SMALL_STATE(1573)] = 62271, - [SMALL_STATE(1574)] = 62284, - [SMALL_STATE(1575)] = 62297, - [SMALL_STATE(1576)] = 62310, - [SMALL_STATE(1577)] = 62323, - [SMALL_STATE(1578)] = 62336, - [SMALL_STATE(1579)] = 62349, - [SMALL_STATE(1580)] = 62362, - [SMALL_STATE(1581)] = 62373, - [SMALL_STATE(1582)] = 62384, - [SMALL_STATE(1583)] = 62393, - [SMALL_STATE(1584)] = 62406, - [SMALL_STATE(1585)] = 62417, - [SMALL_STATE(1586)] = 62430, - [SMALL_STATE(1587)] = 62443, - [SMALL_STATE(1588)] = 62456, - [SMALL_STATE(1589)] = 62469, - [SMALL_STATE(1590)] = 62482, - [SMALL_STATE(1591)] = 62495, - [SMALL_STATE(1592)] = 62508, - [SMALL_STATE(1593)] = 62521, - [SMALL_STATE(1594)] = 62534, - [SMALL_STATE(1595)] = 62547, - [SMALL_STATE(1596)] = 62560, - [SMALL_STATE(1597)] = 62573, - [SMALL_STATE(1598)] = 62586, - [SMALL_STATE(1599)] = 62599, - [SMALL_STATE(1600)] = 62612, - [SMALL_STATE(1601)] = 62625, - [SMALL_STATE(1602)] = 62638, - [SMALL_STATE(1603)] = 62651, - [SMALL_STATE(1604)] = 62664, - [SMALL_STATE(1605)] = 62677, - [SMALL_STATE(1606)] = 62690, - [SMALL_STATE(1607)] = 62703, - [SMALL_STATE(1608)] = 62714, - [SMALL_STATE(1609)] = 62727, - [SMALL_STATE(1610)] = 62740, - [SMALL_STATE(1611)] = 62753, - [SMALL_STATE(1612)] = 62766, - [SMALL_STATE(1613)] = 62779, - [SMALL_STATE(1614)] = 62792, - [SMALL_STATE(1615)] = 62805, - [SMALL_STATE(1616)] = 62818, - [SMALL_STATE(1617)] = 62831, - [SMALL_STATE(1618)] = 62844, - [SMALL_STATE(1619)] = 62857, - [SMALL_STATE(1620)] = 62870, - [SMALL_STATE(1621)] = 62879, - [SMALL_STATE(1622)] = 62892, - [SMALL_STATE(1623)] = 62905, - [SMALL_STATE(1624)] = 62918, - [SMALL_STATE(1625)] = 62931, - [SMALL_STATE(1626)] = 62944, - [SMALL_STATE(1627)] = 62953, - [SMALL_STATE(1628)] = 62966, - [SMALL_STATE(1629)] = 62979, - [SMALL_STATE(1630)] = 62988, - [SMALL_STATE(1631)] = 63001, - [SMALL_STATE(1632)] = 63014, - [SMALL_STATE(1633)] = 63027, - [SMALL_STATE(1634)] = 63040, - [SMALL_STATE(1635)] = 63053, - [SMALL_STATE(1636)] = 63066, - [SMALL_STATE(1637)] = 63079, - [SMALL_STATE(1638)] = 63092, - [SMALL_STATE(1639)] = 63105, - [SMALL_STATE(1640)] = 63118, - [SMALL_STATE(1641)] = 63127, - [SMALL_STATE(1642)] = 63140, - [SMALL_STATE(1643)] = 63153, - [SMALL_STATE(1644)] = 63166, - [SMALL_STATE(1645)] = 63179, - [SMALL_STATE(1646)] = 63192, - [SMALL_STATE(1647)] = 63201, - [SMALL_STATE(1648)] = 63210, - [SMALL_STATE(1649)] = 63221, - [SMALL_STATE(1650)] = 63234, - [SMALL_STATE(1651)] = 63247, - [SMALL_STATE(1652)] = 63260, - [SMALL_STATE(1653)] = 63273, - [SMALL_STATE(1654)] = 63282, - [SMALL_STATE(1655)] = 63291, - [SMALL_STATE(1656)] = 63304, - [SMALL_STATE(1657)] = 63317, - [SMALL_STATE(1658)] = 63330, - [SMALL_STATE(1659)] = 63343, - [SMALL_STATE(1660)] = 63356, - [SMALL_STATE(1661)] = 63369, - [SMALL_STATE(1662)] = 63382, - [SMALL_STATE(1663)] = 63395, - [SMALL_STATE(1664)] = 63408, - [SMALL_STATE(1665)] = 63419, - [SMALL_STATE(1666)] = 63432, - [SMALL_STATE(1667)] = 63445, - [SMALL_STATE(1668)] = 63458, - [SMALL_STATE(1669)] = 63471, - [SMALL_STATE(1670)] = 63480, - [SMALL_STATE(1671)] = 63493, - [SMALL_STATE(1672)] = 63506, - [SMALL_STATE(1673)] = 63519, - [SMALL_STATE(1674)] = 63532, - [SMALL_STATE(1675)] = 63545, - [SMALL_STATE(1676)] = 63558, - [SMALL_STATE(1677)] = 63571, - [SMALL_STATE(1678)] = 63584, - [SMALL_STATE(1679)] = 63597, - [SMALL_STATE(1680)] = 63610, - [SMALL_STATE(1681)] = 63623, - [SMALL_STATE(1682)] = 63636, - [SMALL_STATE(1683)] = 63649, - [SMALL_STATE(1684)] = 63662, - [SMALL_STATE(1685)] = 63672, - [SMALL_STATE(1686)] = 63682, - [SMALL_STATE(1687)] = 63692, - [SMALL_STATE(1688)] = 63700, - [SMALL_STATE(1689)] = 63708, - [SMALL_STATE(1690)] = 63718, - [SMALL_STATE(1691)] = 63726, - [SMALL_STATE(1692)] = 63736, - [SMALL_STATE(1693)] = 63744, - [SMALL_STATE(1694)] = 63754, - [SMALL_STATE(1695)] = 63764, - [SMALL_STATE(1696)] = 63772, - [SMALL_STATE(1697)] = 63782, - [SMALL_STATE(1698)] = 63792, - [SMALL_STATE(1699)] = 63802, - [SMALL_STATE(1700)] = 63812, - [SMALL_STATE(1701)] = 63822, - [SMALL_STATE(1702)] = 63832, - [SMALL_STATE(1703)] = 63842, - [SMALL_STATE(1704)] = 63852, - [SMALL_STATE(1705)] = 63862, - [SMALL_STATE(1706)] = 63872, - [SMALL_STATE(1707)] = 63882, - [SMALL_STATE(1708)] = 63890, - [SMALL_STATE(1709)] = 63898, - [SMALL_STATE(1710)] = 63906, - [SMALL_STATE(1711)] = 63916, - [SMALL_STATE(1712)] = 63926, - [SMALL_STATE(1713)] = 63936, - [SMALL_STATE(1714)] = 63946, - [SMALL_STATE(1715)] = 63956, - [SMALL_STATE(1716)] = 63966, - [SMALL_STATE(1717)] = 63976, - [SMALL_STATE(1718)] = 63986, - [SMALL_STATE(1719)] = 63996, - [SMALL_STATE(1720)] = 64004, - [SMALL_STATE(1721)] = 64014, - [SMALL_STATE(1722)] = 64024, - [SMALL_STATE(1723)] = 64034, - [SMALL_STATE(1724)] = 64042, - [SMALL_STATE(1725)] = 64052, - [SMALL_STATE(1726)] = 64062, - [SMALL_STATE(1727)] = 64072, - [SMALL_STATE(1728)] = 64082, - [SMALL_STATE(1729)] = 64092, - [SMALL_STATE(1730)] = 64100, - [SMALL_STATE(1731)] = 64110, - [SMALL_STATE(1732)] = 64118, - [SMALL_STATE(1733)] = 64128, - [SMALL_STATE(1734)] = 64136, - [SMALL_STATE(1735)] = 64146, - [SMALL_STATE(1736)] = 64156, - [SMALL_STATE(1737)] = 64164, - [SMALL_STATE(1738)] = 64174, - [SMALL_STATE(1739)] = 64182, - [SMALL_STATE(1740)] = 64190, - [SMALL_STATE(1741)] = 64200, - [SMALL_STATE(1742)] = 64208, - [SMALL_STATE(1743)] = 64218, - [SMALL_STATE(1744)] = 64228, - [SMALL_STATE(1745)] = 64238, - [SMALL_STATE(1746)] = 64246, - [SMALL_STATE(1747)] = 64256, - [SMALL_STATE(1748)] = 64266, - [SMALL_STATE(1749)] = 64276, - [SMALL_STATE(1750)] = 64286, - [SMALL_STATE(1751)] = 64296, - [SMALL_STATE(1752)] = 64306, - [SMALL_STATE(1753)] = 64316, - [SMALL_STATE(1754)] = 64326, - [SMALL_STATE(1755)] = 64336, - [SMALL_STATE(1756)] = 64346, - [SMALL_STATE(1757)] = 64356, - [SMALL_STATE(1758)] = 64366, - [SMALL_STATE(1759)] = 64376, - [SMALL_STATE(1760)] = 64386, - [SMALL_STATE(1761)] = 64394, - [SMALL_STATE(1762)] = 64404, - [SMALL_STATE(1763)] = 64414, - [SMALL_STATE(1764)] = 64424, - [SMALL_STATE(1765)] = 64434, - [SMALL_STATE(1766)] = 64444, - [SMALL_STATE(1767)] = 64454, - [SMALL_STATE(1768)] = 64464, - [SMALL_STATE(1769)] = 64474, - [SMALL_STATE(1770)] = 64484, - [SMALL_STATE(1771)] = 64494, - [SMALL_STATE(1772)] = 64504, - [SMALL_STATE(1773)] = 64514, - [SMALL_STATE(1774)] = 64524, - [SMALL_STATE(1775)] = 64534, - [SMALL_STATE(1776)] = 64544, - [SMALL_STATE(1777)] = 64554, - [SMALL_STATE(1778)] = 64564, - [SMALL_STATE(1779)] = 64571, - [SMALL_STATE(1780)] = 64578, - [SMALL_STATE(1781)] = 64585, - [SMALL_STATE(1782)] = 64592, - [SMALL_STATE(1783)] = 64599, - [SMALL_STATE(1784)] = 64606, - [SMALL_STATE(1785)] = 64613, - [SMALL_STATE(1786)] = 64620, - [SMALL_STATE(1787)] = 64627, - [SMALL_STATE(1788)] = 64634, - [SMALL_STATE(1789)] = 64641, - [SMALL_STATE(1790)] = 64648, - [SMALL_STATE(1791)] = 64655, - [SMALL_STATE(1792)] = 64662, - [SMALL_STATE(1793)] = 64669, - [SMALL_STATE(1794)] = 64676, - [SMALL_STATE(1795)] = 64683, - [SMALL_STATE(1796)] = 64690, - [SMALL_STATE(1797)] = 64697, - [SMALL_STATE(1798)] = 64704, - [SMALL_STATE(1799)] = 64711, - [SMALL_STATE(1800)] = 64718, - [SMALL_STATE(1801)] = 64725, - [SMALL_STATE(1802)] = 64732, - [SMALL_STATE(1803)] = 64739, - [SMALL_STATE(1804)] = 64746, - [SMALL_STATE(1805)] = 64753, - [SMALL_STATE(1806)] = 64760, - [SMALL_STATE(1807)] = 64767, - [SMALL_STATE(1808)] = 64774, - [SMALL_STATE(1809)] = 64781, - [SMALL_STATE(1810)] = 64788, - [SMALL_STATE(1811)] = 64795, - [SMALL_STATE(1812)] = 64802, - [SMALL_STATE(1813)] = 64809, - [SMALL_STATE(1814)] = 64816, - [SMALL_STATE(1815)] = 64823, - [SMALL_STATE(1816)] = 64830, - [SMALL_STATE(1817)] = 64837, - [SMALL_STATE(1818)] = 64844, - [SMALL_STATE(1819)] = 64851, - [SMALL_STATE(1820)] = 64858, - [SMALL_STATE(1821)] = 64865, - [SMALL_STATE(1822)] = 64872, - [SMALL_STATE(1823)] = 64879, - [SMALL_STATE(1824)] = 64886, - [SMALL_STATE(1825)] = 64893, - [SMALL_STATE(1826)] = 64900, - [SMALL_STATE(1827)] = 64907, - [SMALL_STATE(1828)] = 64914, - [SMALL_STATE(1829)] = 64921, - [SMALL_STATE(1830)] = 64928, - [SMALL_STATE(1831)] = 64935, - [SMALL_STATE(1832)] = 64942, - [SMALL_STATE(1833)] = 64949, - [SMALL_STATE(1834)] = 64956, - [SMALL_STATE(1835)] = 64963, - [SMALL_STATE(1836)] = 64970, - [SMALL_STATE(1837)] = 64977, - [SMALL_STATE(1838)] = 64984, - [SMALL_STATE(1839)] = 64991, - [SMALL_STATE(1840)] = 64998, - [SMALL_STATE(1841)] = 65005, - [SMALL_STATE(1842)] = 65012, - [SMALL_STATE(1843)] = 65019, - [SMALL_STATE(1844)] = 65026, - [SMALL_STATE(1845)] = 65033, - [SMALL_STATE(1846)] = 65040, - [SMALL_STATE(1847)] = 65047, - [SMALL_STATE(1848)] = 65054, - [SMALL_STATE(1849)] = 65061, - [SMALL_STATE(1850)] = 65068, - [SMALL_STATE(1851)] = 65075, - [SMALL_STATE(1852)] = 65082, - [SMALL_STATE(1853)] = 65089, - [SMALL_STATE(1854)] = 65096, - [SMALL_STATE(1855)] = 65103, - [SMALL_STATE(1856)] = 65110, - [SMALL_STATE(1857)] = 65117, - [SMALL_STATE(1858)] = 65124, - [SMALL_STATE(1859)] = 65131, - [SMALL_STATE(1860)] = 65138, - [SMALL_STATE(1861)] = 65145, - [SMALL_STATE(1862)] = 65152, - [SMALL_STATE(1863)] = 65159, - [SMALL_STATE(1864)] = 65166, - [SMALL_STATE(1865)] = 65173, - [SMALL_STATE(1866)] = 65180, - [SMALL_STATE(1867)] = 65187, - [SMALL_STATE(1868)] = 65194, - [SMALL_STATE(1869)] = 65201, - [SMALL_STATE(1870)] = 65208, - [SMALL_STATE(1871)] = 65215, - [SMALL_STATE(1872)] = 65222, - [SMALL_STATE(1873)] = 65229, - [SMALL_STATE(1874)] = 65236, - [SMALL_STATE(1875)] = 65243, - [SMALL_STATE(1876)] = 65250, - [SMALL_STATE(1877)] = 65257, - [SMALL_STATE(1878)] = 65264, - [SMALL_STATE(1879)] = 65271, - [SMALL_STATE(1880)] = 65278, - [SMALL_STATE(1881)] = 65285, - [SMALL_STATE(1882)] = 65292, - [SMALL_STATE(1883)] = 65299, - [SMALL_STATE(1884)] = 65306, - [SMALL_STATE(1885)] = 65313, - [SMALL_STATE(1886)] = 65320, - [SMALL_STATE(1887)] = 65327, - [SMALL_STATE(1888)] = 65334, - [SMALL_STATE(1889)] = 65341, - [SMALL_STATE(1890)] = 65348, - [SMALL_STATE(1891)] = 65355, - [SMALL_STATE(1892)] = 65362, - [SMALL_STATE(1893)] = 65369, - [SMALL_STATE(1894)] = 65376, - [SMALL_STATE(1895)] = 65383, - [SMALL_STATE(1896)] = 65390, - [SMALL_STATE(1897)] = 65397, - [SMALL_STATE(1898)] = 65404, - [SMALL_STATE(1899)] = 65411, - [SMALL_STATE(1900)] = 65418, - [SMALL_STATE(1901)] = 65425, - [SMALL_STATE(1902)] = 65432, - [SMALL_STATE(1903)] = 65439, - [SMALL_STATE(1904)] = 65446, - [SMALL_STATE(1905)] = 65453, - [SMALL_STATE(1906)] = 65460, - [SMALL_STATE(1907)] = 65467, - [SMALL_STATE(1908)] = 65474, - [SMALL_STATE(1909)] = 65481, - [SMALL_STATE(1910)] = 65488, - [SMALL_STATE(1911)] = 65495, - [SMALL_STATE(1912)] = 65502, - [SMALL_STATE(1913)] = 65509, - [SMALL_STATE(1914)] = 65516, - [SMALL_STATE(1915)] = 65523, - [SMALL_STATE(1916)] = 65530, - [SMALL_STATE(1917)] = 65537, - [SMALL_STATE(1918)] = 65544, - [SMALL_STATE(1919)] = 65551, - [SMALL_STATE(1920)] = 65558, - [SMALL_STATE(1921)] = 65565, - [SMALL_STATE(1922)] = 65572, - [SMALL_STATE(1923)] = 65579, - [SMALL_STATE(1924)] = 65586, - [SMALL_STATE(1925)] = 65593, - [SMALL_STATE(1926)] = 65600, - [SMALL_STATE(1927)] = 65607, - [SMALL_STATE(1928)] = 65614, - [SMALL_STATE(1929)] = 65621, - [SMALL_STATE(1930)] = 65628, - [SMALL_STATE(1931)] = 65635, - [SMALL_STATE(1932)] = 65642, - [SMALL_STATE(1933)] = 65649, - [SMALL_STATE(1934)] = 65656, - [SMALL_STATE(1935)] = 65663, - [SMALL_STATE(1936)] = 65670, - [SMALL_STATE(1937)] = 65677, - [SMALL_STATE(1938)] = 65684, - [SMALL_STATE(1939)] = 65691, - [SMALL_STATE(1940)] = 65698, - [SMALL_STATE(1941)] = 65705, - [SMALL_STATE(1942)] = 65712, - [SMALL_STATE(1943)] = 65719, - [SMALL_STATE(1944)] = 65726, - [SMALL_STATE(1945)] = 65733, - [SMALL_STATE(1946)] = 65740, - [SMALL_STATE(1947)] = 65747, - [SMALL_STATE(1948)] = 65754, - [SMALL_STATE(1949)] = 65761, - [SMALL_STATE(1950)] = 65768, - [SMALL_STATE(1951)] = 65775, - [SMALL_STATE(1952)] = 65782, - [SMALL_STATE(1953)] = 65789, - [SMALL_STATE(1954)] = 65796, - [SMALL_STATE(1955)] = 65803, - [SMALL_STATE(1956)] = 65810, - [SMALL_STATE(1957)] = 65817, - [SMALL_STATE(1958)] = 65824, - [SMALL_STATE(1959)] = 65831, - [SMALL_STATE(1960)] = 65838, - [SMALL_STATE(1961)] = 65845, - [SMALL_STATE(1962)] = 65852, - [SMALL_STATE(1963)] = 65859, - [SMALL_STATE(1964)] = 65866, - [SMALL_STATE(1965)] = 65873, - [SMALL_STATE(1966)] = 65880, - [SMALL_STATE(1967)] = 65887, - [SMALL_STATE(1968)] = 65894, - [SMALL_STATE(1969)] = 65901, - [SMALL_STATE(1970)] = 65908, - [SMALL_STATE(1971)] = 65915, - [SMALL_STATE(1972)] = 65922, - [SMALL_STATE(1973)] = 65929, - [SMALL_STATE(1974)] = 65936, - [SMALL_STATE(1975)] = 65943, - [SMALL_STATE(1976)] = 65950, - [SMALL_STATE(1977)] = 65957, - [SMALL_STATE(1978)] = 65964, - [SMALL_STATE(1979)] = 65971, - [SMALL_STATE(1980)] = 65978, - [SMALL_STATE(1981)] = 65985, - [SMALL_STATE(1982)] = 65992, - [SMALL_STATE(1983)] = 65999, - [SMALL_STATE(1984)] = 66006, - [SMALL_STATE(1985)] = 66013, - [SMALL_STATE(1986)] = 66020, - [SMALL_STATE(1987)] = 66027, - [SMALL_STATE(1988)] = 66034, - [SMALL_STATE(1989)] = 66041, - [SMALL_STATE(1990)] = 66048, - [SMALL_STATE(1991)] = 66055, - [SMALL_STATE(1992)] = 66062, - [SMALL_STATE(1993)] = 66069, - [SMALL_STATE(1994)] = 66076, - [SMALL_STATE(1995)] = 66083, - [SMALL_STATE(1996)] = 66090, - [SMALL_STATE(1997)] = 66097, - [SMALL_STATE(1998)] = 66104, - [SMALL_STATE(1999)] = 66111, - [SMALL_STATE(2000)] = 66118, - [SMALL_STATE(2001)] = 66125, - [SMALL_STATE(2002)] = 66132, - [SMALL_STATE(2003)] = 66139, - [SMALL_STATE(2004)] = 66146, - [SMALL_STATE(2005)] = 66153, - [SMALL_STATE(2006)] = 66160, - [SMALL_STATE(2007)] = 66167, - [SMALL_STATE(2008)] = 66174, - [SMALL_STATE(2009)] = 66181, - [SMALL_STATE(2010)] = 66188, - [SMALL_STATE(2011)] = 66195, - [SMALL_STATE(2012)] = 66202, - [SMALL_STATE(2013)] = 66209, - [SMALL_STATE(2014)] = 66216, - [SMALL_STATE(2015)] = 66223, - [SMALL_STATE(2016)] = 66230, - [SMALL_STATE(2017)] = 66237, - [SMALL_STATE(2018)] = 66244, - [SMALL_STATE(2019)] = 66251, - [SMALL_STATE(2020)] = 66258, - [SMALL_STATE(2021)] = 66265, - [SMALL_STATE(2022)] = 66272, - [SMALL_STATE(2023)] = 66279, - [SMALL_STATE(2024)] = 66286, - [SMALL_STATE(2025)] = 66293, - [SMALL_STATE(2026)] = 66300, - [SMALL_STATE(2027)] = 66307, - [SMALL_STATE(2028)] = 66314, - [SMALL_STATE(2029)] = 66321, - [SMALL_STATE(2030)] = 66328, - [SMALL_STATE(2031)] = 66335, - [SMALL_STATE(2032)] = 66342, - [SMALL_STATE(2033)] = 66349, - [SMALL_STATE(2034)] = 66356, - [SMALL_STATE(2035)] = 66363, - [SMALL_STATE(2036)] = 66370, - [SMALL_STATE(2037)] = 66377, - [SMALL_STATE(2038)] = 66384, - [SMALL_STATE(2039)] = 66391, - [SMALL_STATE(2040)] = 66398, - [SMALL_STATE(2041)] = 66405, - [SMALL_STATE(2042)] = 66412, - [SMALL_STATE(2043)] = 66419, - [SMALL_STATE(2044)] = 66426, - [SMALL_STATE(2045)] = 66433, - [SMALL_STATE(2046)] = 66440, - [SMALL_STATE(2047)] = 66447, - [SMALL_STATE(2048)] = 66454, - [SMALL_STATE(2049)] = 66461, - [SMALL_STATE(2050)] = 66468, - [SMALL_STATE(2051)] = 66475, - [SMALL_STATE(2052)] = 66482, - [SMALL_STATE(2053)] = 66489, - [SMALL_STATE(2054)] = 66496, - [SMALL_STATE(2055)] = 66503, - [SMALL_STATE(2056)] = 66510, - [SMALL_STATE(2057)] = 66517, - [SMALL_STATE(2058)] = 66524, - [SMALL_STATE(2059)] = 66531, - [SMALL_STATE(2060)] = 66538, - [SMALL_STATE(2061)] = 66545, - [SMALL_STATE(2062)] = 66552, - [SMALL_STATE(2063)] = 66559, - [SMALL_STATE(2064)] = 66566, - [SMALL_STATE(2065)] = 66573, + [SMALL_STATE(523)] = 0, + [SMALL_STATE(524)] = 75, + [SMALL_STATE(525)] = 166, + [SMALL_STATE(526)] = 236, + [SMALL_STATE(527)] = 350, + [SMALL_STATE(528)] = 464, + [SMALL_STATE(529)] = 534, + [SMALL_STATE(530)] = 603, + [SMALL_STATE(531)] = 672, + [SMALL_STATE(532)] = 741, + [SMALL_STATE(533)] = 810, + [SMALL_STATE(534)] = 879, + [SMALL_STATE(535)] = 948, + [SMALL_STATE(536)] = 1059, + [SMALL_STATE(537)] = 1128, + [SMALL_STATE(538)] = 1197, + [SMALL_STATE(539)] = 1266, + [SMALL_STATE(540)] = 1335, + [SMALL_STATE(541)] = 1404, + [SMALL_STATE(542)] = 1473, + [SMALL_STATE(543)] = 1542, + [SMALL_STATE(544)] = 1611, + [SMALL_STATE(545)] = 1719, + [SMALL_STATE(546)] = 1805, + [SMALL_STATE(547)] = 1895, + [SMALL_STATE(548)] = 2007, + [SMALL_STATE(549)] = 2117, + [SMALL_STATE(550)] = 2225, + [SMALL_STATE(551)] = 2335, + [SMALL_STATE(552)] = 2445, + [SMALL_STATE(553)] = 2555, + [SMALL_STATE(554)] = 2665, + [SMALL_STATE(555)] = 2775, + [SMALL_STATE(556)] = 2883, + [SMALL_STATE(557)] = 2993, + [SMALL_STATE(558)] = 3103, + [SMALL_STATE(559)] = 3213, + [SMALL_STATE(560)] = 3323, + [SMALL_STATE(561)] = 3431, + [SMALL_STATE(562)] = 3541, + [SMALL_STATE(563)] = 3651, + [SMALL_STATE(564)] = 3759, + [SMALL_STATE(565)] = 3867, + [SMALL_STATE(566)] = 3975, + [SMALL_STATE(567)] = 4083, + [SMALL_STATE(568)] = 4193, + [SMALL_STATE(569)] = 4301, + [SMALL_STATE(570)] = 4411, + [SMALL_STATE(571)] = 4519, + [SMALL_STATE(572)] = 4629, + [SMALL_STATE(573)] = 4737, + [SMALL_STATE(574)] = 4845, + [SMALL_STATE(575)] = 4955, + [SMALL_STATE(576)] = 5063, + [SMALL_STATE(577)] = 5175, + [SMALL_STATE(578)] = 5283, + [SMALL_STATE(579)] = 5393, + [SMALL_STATE(580)] = 5503, + [SMALL_STATE(581)] = 5613, + [SMALL_STATE(582)] = 5723, + [SMALL_STATE(583)] = 5831, + [SMALL_STATE(584)] = 5941, + [SMALL_STATE(585)] = 6051, + [SMALL_STATE(586)] = 6161, + [SMALL_STATE(587)] = 6271, + [SMALL_STATE(588)] = 6381, + [SMALL_STATE(589)] = 6489, + [SMALL_STATE(590)] = 6599, + [SMALL_STATE(591)] = 6709, + [SMALL_STATE(592)] = 6817, + [SMALL_STATE(593)] = 6925, + [SMALL_STATE(594)] = 7033, + [SMALL_STATE(595)] = 7143, + [SMALL_STATE(596)] = 7251, + [SMALL_STATE(597)] = 7359, + [SMALL_STATE(598)] = 7469, + [SMALL_STATE(599)] = 7579, + [SMALL_STATE(600)] = 7689, + [SMALL_STATE(601)] = 7797, + [SMALL_STATE(602)] = 7905, + [SMALL_STATE(603)] = 8015, + [SMALL_STATE(604)] = 8125, + [SMALL_STATE(605)] = 8233, + [SMALL_STATE(606)] = 8343, + [SMALL_STATE(607)] = 8453, + [SMALL_STATE(608)] = 8561, + [SMALL_STATE(609)] = 8669, + [SMALL_STATE(610)] = 8777, + [SMALL_STATE(611)] = 8885, + [SMALL_STATE(612)] = 8994, + [SMALL_STATE(613)] = 9099, + [SMALL_STATE(614)] = 9206, + [SMALL_STATE(615)] = 9311, + [SMALL_STATE(616)] = 9418, + [SMALL_STATE(617)] = 9523, + [SMALL_STATE(618)] = 9628, + [SMALL_STATE(619)] = 9733, + [SMALL_STATE(620)] = 9838, + [SMALL_STATE(621)] = 9945, + [SMALL_STATE(622)] = 10050, + [SMALL_STATE(623)] = 10157, + [SMALL_STATE(624)] = 10262, + [SMALL_STATE(625)] = 10367, + [SMALL_STATE(626)] = 10472, + [SMALL_STATE(627)] = 10577, + [SMALL_STATE(628)] = 10684, + [SMALL_STATE(629)] = 10789, + [SMALL_STATE(630)] = 10896, + [SMALL_STATE(631)] = 11001, + [SMALL_STATE(632)] = 11103, + [SMALL_STATE(633)] = 11205, + [SMALL_STATE(634)] = 11307, + [SMALL_STATE(635)] = 11409, + [SMALL_STATE(636)] = 11511, + [SMALL_STATE(637)] = 11613, + [SMALL_STATE(638)] = 11715, + [SMALL_STATE(639)] = 11781, + [SMALL_STATE(640)] = 11883, + [SMALL_STATE(641)] = 11985, + [SMALL_STATE(642)] = 12087, + [SMALL_STATE(643)] = 12189, + [SMALL_STATE(644)] = 12291, + [SMALL_STATE(645)] = 12393, + [SMALL_STATE(646)] = 12495, + [SMALL_STATE(647)] = 12597, + [SMALL_STATE(648)] = 12699, + [SMALL_STATE(649)] = 12801, + [SMALL_STATE(650)] = 12903, + [SMALL_STATE(651)] = 13005, + [SMALL_STATE(652)] = 13107, + [SMALL_STATE(653)] = 13209, + [SMALL_STATE(654)] = 13311, + [SMALL_STATE(655)] = 13413, + [SMALL_STATE(656)] = 13515, + [SMALL_STATE(657)] = 13617, + [SMALL_STATE(658)] = 13719, + [SMALL_STATE(659)] = 13821, + [SMALL_STATE(660)] = 13923, + [SMALL_STATE(661)] = 14025, + [SMALL_STATE(662)] = 14127, + [SMALL_STATE(663)] = 14193, + [SMALL_STATE(664)] = 14295, + [SMALL_STATE(665)] = 14397, + [SMALL_STATE(666)] = 14499, + [SMALL_STATE(667)] = 14601, + [SMALL_STATE(668)] = 14703, + [SMALL_STATE(669)] = 14805, + [SMALL_STATE(670)] = 14907, + [SMALL_STATE(671)] = 15009, + [SMALL_STATE(672)] = 15081, + [SMALL_STATE(673)] = 15183, + [SMALL_STATE(674)] = 15285, + [SMALL_STATE(675)] = 15387, + [SMALL_STATE(676)] = 15489, + [SMALL_STATE(677)] = 15591, + [SMALL_STATE(678)] = 15693, + [SMALL_STATE(679)] = 15795, + [SMALL_STATE(680)] = 15897, + [SMALL_STATE(681)] = 15999, + [SMALL_STATE(682)] = 16101, + [SMALL_STATE(683)] = 16203, + [SMALL_STATE(684)] = 16305, + [SMALL_STATE(685)] = 16407, + [SMALL_STATE(686)] = 16509, + [SMALL_STATE(687)] = 16611, + [SMALL_STATE(688)] = 16713, + [SMALL_STATE(689)] = 16815, + [SMALL_STATE(690)] = 16917, + [SMALL_STATE(691)] = 17019, + [SMALL_STATE(692)] = 17121, + [SMALL_STATE(693)] = 17223, + [SMALL_STATE(694)] = 17289, + [SMALL_STATE(695)] = 17391, + [SMALL_STATE(696)] = 17493, + [SMALL_STATE(697)] = 17595, + [SMALL_STATE(698)] = 17697, + [SMALL_STATE(699)] = 17799, + [SMALL_STATE(700)] = 17901, + [SMALL_STATE(701)] = 18003, + [SMALL_STATE(702)] = 18105, + [SMALL_STATE(703)] = 18207, + [SMALL_STATE(704)] = 18309, + [SMALL_STATE(705)] = 18411, + [SMALL_STATE(706)] = 18513, + [SMALL_STATE(707)] = 18615, + [SMALL_STATE(708)] = 18717, + [SMALL_STATE(709)] = 18819, + [SMALL_STATE(710)] = 18921, + [SMALL_STATE(711)] = 19023, + [SMALL_STATE(712)] = 19089, + [SMALL_STATE(713)] = 19191, + [SMALL_STATE(714)] = 19293, + [SMALL_STATE(715)] = 19395, + [SMALL_STATE(716)] = 19497, + [SMALL_STATE(717)] = 19599, + [SMALL_STATE(718)] = 19701, + [SMALL_STATE(719)] = 19803, + [SMALL_STATE(720)] = 19905, + [SMALL_STATE(721)] = 20007, + [SMALL_STATE(722)] = 20109, + [SMALL_STATE(723)] = 20211, + [SMALL_STATE(724)] = 20313, + [SMALL_STATE(725)] = 20415, + [SMALL_STATE(726)] = 20517, + [SMALL_STATE(727)] = 20619, + [SMALL_STATE(728)] = 20721, + [SMALL_STATE(729)] = 20823, + [SMALL_STATE(730)] = 20925, + [SMALL_STATE(731)] = 21027, + [SMALL_STATE(732)] = 21129, + [SMALL_STATE(733)] = 21231, + [SMALL_STATE(734)] = 21333, + [SMALL_STATE(735)] = 21435, + [SMALL_STATE(736)] = 21537, + [SMALL_STATE(737)] = 21639, + [SMALL_STATE(738)] = 21741, + [SMALL_STATE(739)] = 21843, + [SMALL_STATE(740)] = 21945, + [SMALL_STATE(741)] = 22047, + [SMALL_STATE(742)] = 22149, + [SMALL_STATE(743)] = 22251, + [SMALL_STATE(744)] = 22353, + [SMALL_STATE(745)] = 22455, + [SMALL_STATE(746)] = 22557, + [SMALL_STATE(747)] = 22659, + [SMALL_STATE(748)] = 22761, + [SMALL_STATE(749)] = 22863, + [SMALL_STATE(750)] = 22965, + [SMALL_STATE(751)] = 23067, + [SMALL_STATE(752)] = 23146, + [SMALL_STATE(753)] = 23211, + [SMALL_STATE(754)] = 23276, + [SMALL_STATE(755)] = 23341, + [SMALL_STATE(756)] = 23406, + [SMALL_STATE(757)] = 23471, + [SMALL_STATE(758)] = 23536, + [SMALL_STATE(759)] = 23601, + [SMALL_STATE(760)] = 23666, + [SMALL_STATE(761)] = 23731, + [SMALL_STATE(762)] = 23796, + [SMALL_STATE(763)] = 23861, + [SMALL_STATE(764)] = 23940, + [SMALL_STATE(765)] = 24005, + [SMALL_STATE(766)] = 24070, + [SMALL_STATE(767)] = 24149, + [SMALL_STATE(768)] = 24214, + [SMALL_STATE(769)] = 24279, + [SMALL_STATE(770)] = 24344, + [SMALL_STATE(771)] = 24409, + [SMALL_STATE(772)] = 24483, + [SMALL_STATE(773)] = 24583, + [SMALL_STATE(774)] = 24683, + [SMALL_STATE(775)] = 24765, + [SMALL_STATE(776)] = 24829, + [SMALL_STATE(777)] = 24893, + [SMALL_STATE(778)] = 24993, + [SMALL_STATE(779)] = 25093, + [SMALL_STATE(780)] = 25157, + [SMALL_STATE(781)] = 25221, + [SMALL_STATE(782)] = 25295, + [SMALL_STATE(783)] = 25369, + [SMALL_STATE(784)] = 25443, + [SMALL_STATE(785)] = 25543, + [SMALL_STATE(786)] = 25643, + [SMALL_STATE(787)] = 25743, + [SMALL_STATE(788)] = 25819, + [SMALL_STATE(789)] = 25919, + [SMALL_STATE(790)] = 25991, + [SMALL_STATE(791)] = 26091, + [SMALL_STATE(792)] = 26155, + [SMALL_STATE(793)] = 26219, + [SMALL_STATE(794)] = 26295, + [SMALL_STATE(795)] = 26395, + [SMALL_STATE(796)] = 26459, + [SMALL_STATE(797)] = 26523, + [SMALL_STATE(798)] = 26587, + [SMALL_STATE(799)] = 26687, + [SMALL_STATE(800)] = 26751, + [SMALL_STATE(801)] = 26833, + [SMALL_STATE(802)] = 26907, + [SMALL_STATE(803)] = 27007, + [SMALL_STATE(804)] = 27080, + [SMALL_STATE(805)] = 27153, + [SMALL_STATE(806)] = 27250, + [SMALL_STATE(807)] = 27313, + [SMALL_STATE(808)] = 27396, + [SMALL_STATE(809)] = 27469, + [SMALL_STATE(810)] = 27552, + [SMALL_STATE(811)] = 27635, + [SMALL_STATE(812)] = 27706, + [SMALL_STATE(813)] = 27779, + [SMALL_STATE(814)] = 27842, + [SMALL_STATE(815)] = 27915, + [SMALL_STATE(816)] = 27978, + [SMALL_STATE(817)] = 28061, + [SMALL_STATE(818)] = 28134, + [SMALL_STATE(819)] = 28198, + [SMALL_STATE(820)] = 28264, + [SMALL_STATE(821)] = 28328, + [SMALL_STATE(822)] = 28390, + [SMALL_STATE(823)] = 28460, + [SMALL_STATE(824)] = 28524, + [SMALL_STATE(825)] = 28588, + [SMALL_STATE(826)] = 28658, + [SMALL_STATE(827)] = 28728, + [SMALL_STATE(828)] = 28792, + [SMALL_STATE(829)] = 28856, + [SMALL_STATE(830)] = 28926, + [SMALL_STATE(831)] = 28990, + [SMALL_STATE(832)] = 29052, + [SMALL_STATE(833)] = 29116, + [SMALL_STATE(834)] = 29180, + [SMALL_STATE(835)] = 29241, + [SMALL_STATE(836)] = 29302, + [SMALL_STATE(837)] = 29363, + [SMALL_STATE(838)] = 29424, + [SMALL_STATE(839)] = 29489, + [SMALL_STATE(840)] = 29554, + [SMALL_STATE(841)] = 29615, + [SMALL_STATE(842)] = 29676, + [SMALL_STATE(843)] = 29737, + [SMALL_STATE(844)] = 29798, + [SMALL_STATE(845)] = 29859, + [SMALL_STATE(846)] = 29920, + [SMALL_STATE(847)] = 29981, + [SMALL_STATE(848)] = 30042, + [SMALL_STATE(849)] = 30103, + [SMALL_STATE(850)] = 30164, + [SMALL_STATE(851)] = 30225, + [SMALL_STATE(852)] = 30286, + [SMALL_STATE(853)] = 30351, + [SMALL_STATE(854)] = 30412, + [SMALL_STATE(855)] = 30473, + [SMALL_STATE(856)] = 30534, + [SMALL_STATE(857)] = 30595, + [SMALL_STATE(858)] = 30656, + [SMALL_STATE(859)] = 30717, + [SMALL_STATE(860)] = 30778, + [SMALL_STATE(861)] = 30839, + [SMALL_STATE(862)] = 30900, + [SMALL_STATE(863)] = 30961, + [SMALL_STATE(864)] = 31022, + [SMALL_STATE(865)] = 31083, + [SMALL_STATE(866)] = 31144, + [SMALL_STATE(867)] = 31205, + [SMALL_STATE(868)] = 31266, + [SMALL_STATE(869)] = 31327, + [SMALL_STATE(870)] = 31388, + [SMALL_STATE(871)] = 31455, + [SMALL_STATE(872)] = 31516, + [SMALL_STATE(873)] = 31577, + [SMALL_STATE(874)] = 31638, + [SMALL_STATE(875)] = 31703, + [SMALL_STATE(876)] = 31764, + [SMALL_STATE(877)] = 31825, + [SMALL_STATE(878)] = 31886, + [SMALL_STATE(879)] = 31947, + [SMALL_STATE(880)] = 32012, + [SMALL_STATE(881)] = 32073, + [SMALL_STATE(882)] = 32134, + [SMALL_STATE(883)] = 32199, + [SMALL_STATE(884)] = 32266, + [SMALL_STATE(885)] = 32327, + [SMALL_STATE(886)] = 32392, + [SMALL_STATE(887)] = 32453, + [SMALL_STATE(888)] = 32514, + [SMALL_STATE(889)] = 32575, + [SMALL_STATE(890)] = 32636, + [SMALL_STATE(891)] = 32705, + [SMALL_STATE(892)] = 32766, + [SMALL_STATE(893)] = 32827, + [SMALL_STATE(894)] = 32888, + [SMALL_STATE(895)] = 32949, + [SMALL_STATE(896)] = 33010, + [SMALL_STATE(897)] = 33092, + [SMALL_STATE(898)] = 33152, + [SMALL_STATE(899)] = 33212, + [SMALL_STATE(900)] = 33294, + [SMALL_STATE(901)] = 33354, + [SMALL_STATE(902)] = 33436, + [SMALL_STATE(903)] = 33518, + [SMALL_STATE(904)] = 33577, + [SMALL_STATE(905)] = 33636, + [SMALL_STATE(906)] = 33709, + [SMALL_STATE(907)] = 33778, + [SMALL_STATE(908)] = 33837, + [SMALL_STATE(909)] = 33907, + [SMALL_STATE(910)] = 33989, + [SMALL_STATE(911)] = 34081, + [SMALL_STATE(912)] = 34161, + [SMALL_STATE(913)] = 34239, + [SMALL_STATE(914)] = 34331, + [SMALL_STATE(915)] = 34423, + [SMALL_STATE(916)] = 34497, + [SMALL_STATE(917)] = 34567, + [SMALL_STATE(918)] = 34653, + [SMALL_STATE(919)] = 34741, + [SMALL_STATE(920)] = 34813, + [SMALL_STATE(921)] = 34897, + [SMALL_STATE(922)] = 34954, + [SMALL_STATE(923)] = 35011, + [SMALL_STATE(924)] = 35068, + [SMALL_STATE(925)] = 35125, + [SMALL_STATE(926)] = 35182, + [SMALL_STATE(927)] = 35239, + [SMALL_STATE(928)] = 35296, + [SMALL_STATE(929)] = 35353, + [SMALL_STATE(930)] = 35418, + [SMALL_STATE(931)] = 35475, + [SMALL_STATE(932)] = 35532, + [SMALL_STATE(933)] = 35589, + [SMALL_STATE(934)] = 35646, + [SMALL_STATE(935)] = 35703, + [SMALL_STATE(936)] = 35760, + [SMALL_STATE(937)] = 35817, + [SMALL_STATE(938)] = 35874, + [SMALL_STATE(939)] = 35931, + [SMALL_STATE(940)] = 35988, + [SMALL_STATE(941)] = 36049, + [SMALL_STATE(942)] = 36106, + [SMALL_STATE(943)] = 36163, + [SMALL_STATE(944)] = 36220, + [SMALL_STATE(945)] = 36281, + [SMALL_STATE(946)] = 36338, + [SMALL_STATE(947)] = 36395, + [SMALL_STATE(948)] = 36452, + [SMALL_STATE(949)] = 36509, + [SMALL_STATE(950)] = 36566, + [SMALL_STATE(951)] = 36623, + [SMALL_STATE(952)] = 36680, + [SMALL_STATE(953)] = 36737, + [SMALL_STATE(954)] = 36794, + [SMALL_STATE(955)] = 36851, + [SMALL_STATE(956)] = 36908, + [SMALL_STATE(957)] = 36965, + [SMALL_STATE(958)] = 37022, + [SMALL_STATE(959)] = 37079, + [SMALL_STATE(960)] = 37136, + [SMALL_STATE(961)] = 37200, + [SMALL_STATE(962)] = 37262, + [SMALL_STATE(963)] = 37318, + [SMALL_STATE(964)] = 37380, + [SMALL_STATE(965)] = 37444, + [SMALL_STATE(966)] = 37500, + [SMALL_STATE(967)] = 37564, + [SMALL_STATE(968)] = 37619, + [SMALL_STATE(969)] = 37674, + [SMALL_STATE(970)] = 37732, + [SMALL_STATE(971)] = 37790, + [SMALL_STATE(972)] = 37848, + [SMALL_STATE(973)] = 37906, + [SMALL_STATE(974)] = 37960, + [SMALL_STATE(975)] = 38021, + [SMALL_STATE(976)] = 38084, + [SMALL_STATE(977)] = 38147, + [SMALL_STATE(978)] = 38210, + [SMALL_STATE(979)] = 38273, + [SMALL_STATE(980)] = 38336, + [SMALL_STATE(981)] = 38397, + [SMALL_STATE(982)] = 38460, + [SMALL_STATE(983)] = 38546, + [SMALL_STATE(984)] = 38632, + [SMALL_STATE(985)] = 38698, + [SMALL_STATE(986)] = 38766, + [SMALL_STATE(987)] = 38838, + [SMALL_STATE(988)] = 38890, + [SMALL_STATE(989)] = 38976, + [SMALL_STATE(990)] = 39054, + [SMALL_STATE(991)] = 39134, + [SMALL_STATE(992)] = 39210, + [SMALL_STATE(993)] = 39270, + [SMALL_STATE(994)] = 39344, + [SMALL_STATE(995)] = 39408, + [SMALL_STATE(996)] = 39472, + [SMALL_STATE(997)] = 39554, + [SMALL_STATE(998)] = 39609, + [SMALL_STATE(999)] = 39670, + [SMALL_STATE(1000)] = 39729, + [SMALL_STATE(1001)] = 39815, + [SMALL_STATE(1002)] = 39875, + [SMALL_STATE(1003)] = 39961, + [SMALL_STATE(1004)] = 40010, + [SMALL_STATE(1005)] = 40059, + [SMALL_STATE(1006)] = 40110, + [SMALL_STATE(1007)] = 40159, + [SMALL_STATE(1008)] = 40208, + [SMALL_STATE(1009)] = 40257, + [SMALL_STATE(1010)] = 40306, + [SMALL_STATE(1011)] = 40355, + [SMALL_STATE(1012)] = 40406, + [SMALL_STATE(1013)] = 40455, + [SMALL_STATE(1014)] = 40504, + [SMALL_STATE(1015)] = 40553, + [SMALL_STATE(1016)] = 40602, + [SMALL_STATE(1017)] = 40651, + [SMALL_STATE(1018)] = 40702, + [SMALL_STATE(1019)] = 40753, + [SMALL_STATE(1020)] = 40802, + [SMALL_STATE(1021)] = 40851, + [SMALL_STATE(1022)] = 40900, + [SMALL_STATE(1023)] = 40949, + [SMALL_STATE(1024)] = 40998, + [SMALL_STATE(1025)] = 41047, + [SMALL_STATE(1026)] = 41096, + [SMALL_STATE(1027)] = 41145, + [SMALL_STATE(1028)] = 41194, + [SMALL_STATE(1029)] = 41277, + [SMALL_STATE(1030)] = 41354, + [SMALL_STATE(1031)] = 41413, + [SMALL_STATE(1032)] = 41494, + [SMALL_STATE(1033)] = 41575, + [SMALL_STATE(1034)] = 41650, + [SMALL_STATE(1035)] = 41721, + [SMALL_STATE(1036)] = 41798, + [SMALL_STATE(1037)] = 41877, + [SMALL_STATE(1038)] = 41936, + [SMALL_STATE(1039)] = 42009, + [SMALL_STATE(1040)] = 42084, + [SMALL_STATE(1041)] = 42145, + [SMALL_STATE(1042)] = 42216, + [SMALL_STATE(1043)] = 42289, + [SMALL_STATE(1044)] = 42364, + [SMALL_STATE(1045)] = 42433, + [SMALL_STATE(1046)] = 42502, + [SMALL_STATE(1047)] = 42565, + [SMALL_STATE(1048)] = 42630, + [SMALL_STATE(1049)] = 42713, + [SMALL_STATE(1050)] = 42770, + [SMALL_STATE(1051)] = 42829, + [SMALL_STATE(1052)] = 42894, + [SMALL_STATE(1053)] = 42957, + [SMALL_STATE(1054)] = 43018, + [SMALL_STATE(1055)] = 43101, + [SMALL_STATE(1056)] = 43182, + [SMALL_STATE(1057)] = 43241, + [SMALL_STATE(1058)] = 43300, + [SMALL_STATE(1059)] = 43376, + [SMALL_STATE(1060)] = 43422, + [SMALL_STATE(1061)] = 43498, + [SMALL_STATE(1062)] = 43574, + [SMALL_STATE(1063)] = 43650, + [SMALL_STATE(1064)] = 43696, + [SMALL_STATE(1065)] = 43742, + [SMALL_STATE(1066)] = 43788, + [SMALL_STATE(1067)] = 43838, + [SMALL_STATE(1068)] = 43883, + [SMALL_STATE(1069)] = 43928, + [SMALL_STATE(1070)] = 43979, + [SMALL_STATE(1071)] = 44024, + [SMALL_STATE(1072)] = 44069, + [SMALL_STATE(1073)] = 44113, + [SMALL_STATE(1074)] = 44157, + [SMALL_STATE(1075)] = 44201, + [SMALL_STATE(1076)] = 44245, + [SMALL_STATE(1077)] = 44289, + [SMALL_STATE(1078)] = 44333, + [SMALL_STATE(1079)] = 44377, + [SMALL_STATE(1080)] = 44421, + [SMALL_STATE(1081)] = 44465, + [SMALL_STATE(1082)] = 44509, + [SMALL_STATE(1083)] = 44553, + [SMALL_STATE(1084)] = 44597, + [SMALL_STATE(1085)] = 44641, + [SMALL_STATE(1086)] = 44685, + [SMALL_STATE(1087)] = 44763, + [SMALL_STATE(1088)] = 44807, + [SMALL_STATE(1089)] = 44851, + [SMALL_STATE(1090)] = 44895, + [SMALL_STATE(1091)] = 44939, + [SMALL_STATE(1092)] = 44996, + [SMALL_STATE(1093)] = 45051, + [SMALL_STATE(1094)] = 45121, + [SMALL_STATE(1095)] = 45191, + [SMALL_STATE(1096)] = 45263, + [SMALL_STATE(1097)] = 45335, + [SMALL_STATE(1098)] = 45402, + [SMALL_STATE(1099)] = 45465, + [SMALL_STATE(1100)] = 45542, + [SMALL_STATE(1101)] = 45609, + [SMALL_STATE(1102)] = 45676, + [SMALL_STATE(1103)] = 45725, + [SMALL_STATE(1104)] = 45802, + [SMALL_STATE(1105)] = 45859, + [SMALL_STATE(1106)] = 45918, + [SMALL_STATE(1107)] = 45967, + [SMALL_STATE(1108)] = 46044, + [SMALL_STATE(1109)] = 46121, + [SMALL_STATE(1110)] = 46188, + [SMALL_STATE(1111)] = 46255, + [SMALL_STATE(1112)] = 46320, + [SMALL_STATE(1113)] = 46387, + [SMALL_STATE(1114)] = 46456, + [SMALL_STATE(1115)] = 46527, + [SMALL_STATE(1116)] = 46600, + [SMALL_STATE(1117)] = 46649, + [SMALL_STATE(1118)] = 46704, + [SMALL_STATE(1119)] = 46771, + [SMALL_STATE(1120)] = 46838, + [SMALL_STATE(1121)] = 46905, + [SMALL_STATE(1122)] = 46953, + [SMALL_STATE(1123)] = 47016, + [SMALL_STATE(1124)] = 47079, + [SMALL_STATE(1125)] = 47142, + [SMALL_STATE(1126)] = 47205, + [SMALL_STATE(1127)] = 47268, + [SMALL_STATE(1128)] = 47331, + [SMALL_STATE(1129)] = 47394, + [SMALL_STATE(1130)] = 47457, + [SMALL_STATE(1131)] = 47520, + [SMALL_STATE(1132)] = 47583, + [SMALL_STATE(1133)] = 47646, + [SMALL_STATE(1134)] = 47709, + [SMALL_STATE(1135)] = 47772, + [SMALL_STATE(1136)] = 47832, + [SMALL_STATE(1137)] = 47892, + [SMALL_STATE(1138)] = 47952, + [SMALL_STATE(1139)] = 48026, + [SMALL_STATE(1140)] = 48086, + [SMALL_STATE(1141)] = 48146, + [SMALL_STATE(1142)] = 48192, + [SMALL_STATE(1143)] = 48252, + [SMALL_STATE(1144)] = 48327, + [SMALL_STATE(1145)] = 48402, + [SMALL_STATE(1146)] = 48439, + [SMALL_STATE(1147)] = 48514, + [SMALL_STATE(1148)] = 48589, + [SMALL_STATE(1149)] = 48664, + [SMALL_STATE(1150)] = 48701, + [SMALL_STATE(1151)] = 48776, + [SMALL_STATE(1152)] = 48842, + [SMALL_STATE(1153)] = 48904, + [SMALL_STATE(1154)] = 48976, + [SMALL_STATE(1155)] = 49048, + [SMALL_STATE(1156)] = 49120, + [SMALL_STATE(1157)] = 49192, + [SMALL_STATE(1158)] = 49264, + [SMALL_STATE(1159)] = 49334, + [SMALL_STATE(1160)] = 49406, + [SMALL_STATE(1161)] = 49478, + [SMALL_STATE(1162)] = 49550, + [SMALL_STATE(1163)] = 49620, + [SMALL_STATE(1164)] = 49692, + [SMALL_STATE(1165)] = 49746, + [SMALL_STATE(1166)] = 49802, + [SMALL_STATE(1167)] = 49862, + [SMALL_STATE(1168)] = 49934, + [SMALL_STATE(1169)] = 49998, + [SMALL_STATE(1170)] = 50070, + [SMALL_STATE(1171)] = 50136, + [SMALL_STATE(1172)] = 50208, + [SMALL_STATE(1173)] = 50276, + [SMALL_STATE(1174)] = 50348, + [SMALL_STATE(1175)] = 50400, + [SMALL_STATE(1176)] = 50472, + [SMALL_STATE(1177)] = 50544, + [SMALL_STATE(1178)] = 50616, + [SMALL_STATE(1179)] = 50688, + [SMALL_STATE(1180)] = 50760, + [SMALL_STATE(1181)] = 50830, + [SMALL_STATE(1182)] = 50902, + [SMALL_STATE(1183)] = 50972, + [SMALL_STATE(1184)] = 51042, + [SMALL_STATE(1185)] = 51112, + [SMALL_STATE(1186)] = 51184, + [SMALL_STATE(1187)] = 51256, + [SMALL_STATE(1188)] = 51328, + [SMALL_STATE(1189)] = 51398, + [SMALL_STATE(1190)] = 51470, + [SMALL_STATE(1191)] = 51542, + [SMALL_STATE(1192)] = 51614, + [SMALL_STATE(1193)] = 51686, + [SMALL_STATE(1194)] = 51758, + [SMALL_STATE(1195)] = 51828, + [SMALL_STATE(1196)] = 51900, + [SMALL_STATE(1197)] = 51972, + [SMALL_STATE(1198)] = 52046, + [SMALL_STATE(1199)] = 52115, + [SMALL_STATE(1200)] = 52184, + [SMALL_STATE(1201)] = 52253, + [SMALL_STATE(1202)] = 52322, + [SMALL_STATE(1203)] = 52391, + [SMALL_STATE(1204)] = 52460, + [SMALL_STATE(1205)] = 52529, + [SMALL_STATE(1206)] = 52598, + [SMALL_STATE(1207)] = 52667, + [SMALL_STATE(1208)] = 52736, + [SMALL_STATE(1209)] = 52805, + [SMALL_STATE(1210)] = 52874, + [SMALL_STATE(1211)] = 52943, + [SMALL_STATE(1212)] = 53012, + [SMALL_STATE(1213)] = 53081, + [SMALL_STATE(1214)] = 53150, + [SMALL_STATE(1215)] = 53219, + [SMALL_STATE(1216)] = 53288, + [SMALL_STATE(1217)] = 53357, + [SMALL_STATE(1218)] = 53426, + [SMALL_STATE(1219)] = 53495, + [SMALL_STATE(1220)] = 53564, + [SMALL_STATE(1221)] = 53618, + [SMALL_STATE(1222)] = 53666, + [SMALL_STATE(1223)] = 53720, + [SMALL_STATE(1224)] = 53756, + [SMALL_STATE(1225)] = 53810, + [SMALL_STATE(1226)] = 53876, + [SMALL_STATE(1227)] = 53930, + [SMALL_STATE(1228)] = 53986, + [SMALL_STATE(1229)] = 54040, + [SMALL_STATE(1230)] = 54094, + [SMALL_STATE(1231)] = 54145, + [SMALL_STATE(1232)] = 54206, + [SMALL_STATE(1233)] = 54257, + [SMALL_STATE(1234)] = 54308, + [SMALL_STATE(1235)] = 54369, + [SMALL_STATE(1236)] = 54430, + [SMALL_STATE(1237)] = 54481, + [SMALL_STATE(1238)] = 54532, + [SMALL_STATE(1239)] = 54593, + [SMALL_STATE(1240)] = 54644, + [SMALL_STATE(1241)] = 54702, + [SMALL_STATE(1242)] = 54760, + [SMALL_STATE(1243)] = 54818, + [SMALL_STATE(1244)] = 54856, + [SMALL_STATE(1245)] = 54914, + [SMALL_STATE(1246)] = 54972, + [SMALL_STATE(1247)] = 55012, + [SMALL_STATE(1248)] = 55070, + [SMALL_STATE(1249)] = 55128, + [SMALL_STATE(1250)] = 55186, + [SMALL_STATE(1251)] = 55244, + [SMALL_STATE(1252)] = 55302, + [SMALL_STATE(1253)] = 55360, + [SMALL_STATE(1254)] = 55399, + [SMALL_STATE(1255)] = 55438, + [SMALL_STATE(1256)] = 55483, + [SMALL_STATE(1257)] = 55522, + [SMALL_STATE(1258)] = 55573, + [SMALL_STATE(1259)] = 55612, + [SMALL_STATE(1260)] = 55652, + [SMALL_STATE(1261)] = 55702, + [SMALL_STATE(1262)] = 55754, + [SMALL_STATE(1263)] = 55794, + [SMALL_STATE(1264)] = 55834, + [SMALL_STATE(1265)] = 55886, + [SMALL_STATE(1266)] = 55936, + [SMALL_STATE(1267)] = 55984, + [SMALL_STATE(1268)] = 56034, + [SMALL_STATE(1269)] = 56086, + [SMALL_STATE(1270)] = 56136, + [SMALL_STATE(1271)] = 56170, + [SMALL_STATE(1272)] = 56210, + [SMALL_STATE(1273)] = 56243, + [SMALL_STATE(1274)] = 56276, + [SMALL_STATE(1275)] = 56323, + [SMALL_STATE(1276)] = 56366, + [SMALL_STATE(1277)] = 56421, + [SMALL_STATE(1278)] = 56476, + [SMALL_STATE(1279)] = 56519, + [SMALL_STATE(1280)] = 56552, + [SMALL_STATE(1281)] = 56599, + [SMALL_STATE(1282)] = 56654, + [SMALL_STATE(1283)] = 56705, + [SMALL_STATE(1284)] = 56752, + [SMALL_STATE(1285)] = 56787, + [SMALL_STATE(1286)] = 56834, + [SMALL_STATE(1287)] = 56881, + [SMALL_STATE(1288)] = 56918, + [SMALL_STATE(1289)] = 56951, + [SMALL_STATE(1290)] = 56984, + [SMALL_STATE(1291)] = 57017, + [SMALL_STATE(1292)] = 57060, + [SMALL_STATE(1293)] = 57093, + [SMALL_STATE(1294)] = 57126, + [SMALL_STATE(1295)] = 57173, + [SMALL_STATE(1296)] = 57206, + [SMALL_STATE(1297)] = 57239, + [SMALL_STATE(1298)] = 57279, + [SMALL_STATE(1299)] = 57319, + [SMALL_STATE(1300)] = 57359, + [SMALL_STATE(1301)] = 57399, + [SMALL_STATE(1302)] = 57439, + [SMALL_STATE(1303)] = 57479, + [SMALL_STATE(1304)] = 57519, + [SMALL_STATE(1305)] = 57559, + [SMALL_STATE(1306)] = 57599, + [SMALL_STATE(1307)] = 57639, + [SMALL_STATE(1308)] = 57667, + [SMALL_STATE(1309)] = 57695, + [SMALL_STATE(1310)] = 57735, + [SMALL_STATE(1311)] = 57775, + [SMALL_STATE(1312)] = 57815, + [SMALL_STATE(1313)] = 57855, + [SMALL_STATE(1314)] = 57901, + [SMALL_STATE(1315)] = 57941, + [SMALL_STATE(1316)] = 57981, + [SMALL_STATE(1317)] = 58021, + [SMALL_STATE(1318)] = 58061, + [SMALL_STATE(1319)] = 58101, + [SMALL_STATE(1320)] = 58147, + [SMALL_STATE(1321)] = 58187, + [SMALL_STATE(1322)] = 58227, + [SMALL_STATE(1323)] = 58267, + [SMALL_STATE(1324)] = 58307, + [SMALL_STATE(1325)] = 58347, + [SMALL_STATE(1326)] = 58387, + [SMALL_STATE(1327)] = 58427, + [SMALL_STATE(1328)] = 58467, + [SMALL_STATE(1329)] = 58495, + [SMALL_STATE(1330)] = 58527, + [SMALL_STATE(1331)] = 58567, + [SMALL_STATE(1332)] = 58595, + [SMALL_STATE(1333)] = 58635, + [SMALL_STATE(1334)] = 58675, + [SMALL_STATE(1335)] = 58707, + [SMALL_STATE(1336)] = 58747, + [SMALL_STATE(1337)] = 58795, + [SMALL_STATE(1338)] = 58835, + [SMALL_STATE(1339)] = 58885, + [SMALL_STATE(1340)] = 58925, + [SMALL_STATE(1341)] = 58965, + [SMALL_STATE(1342)] = 58993, + [SMALL_STATE(1343)] = 59033, + [SMALL_STATE(1344)] = 59081, + [SMALL_STATE(1345)] = 59121, + [SMALL_STATE(1346)] = 59155, + [SMALL_STATE(1347)] = 59195, + [SMALL_STATE(1348)] = 59235, + [SMALL_STATE(1349)] = 59275, + [SMALL_STATE(1350)] = 59311, + [SMALL_STATE(1351)] = 59351, + [SMALL_STATE(1352)] = 59393, + [SMALL_STATE(1353)] = 59437, + [SMALL_STATE(1354)] = 59465, + [SMALL_STATE(1355)] = 59498, + [SMALL_STATE(1356)] = 59525, + [SMALL_STATE(1357)] = 59566, + [SMALL_STATE(1358)] = 59593, + [SMALL_STATE(1359)] = 59632, + [SMALL_STATE(1360)] = 59659, + [SMALL_STATE(1361)] = 59686, + [SMALL_STATE(1362)] = 59729, + [SMALL_STATE(1363)] = 59774, + [SMALL_STATE(1364)] = 59819, + [SMALL_STATE(1365)] = 59868, + [SMALL_STATE(1366)] = 59905, + [SMALL_STATE(1367)] = 59932, + [SMALL_STATE(1368)] = 59977, + [SMALL_STATE(1369)] = 60004, + [SMALL_STATE(1370)] = 60033, + [SMALL_STATE(1371)] = 60060, + [SMALL_STATE(1372)] = 60095, + [SMALL_STATE(1373)] = 60126, + [SMALL_STATE(1374)] = 60171, + [SMALL_STATE(1375)] = 60216, + [SMALL_STATE(1376)] = 60243, + [SMALL_STATE(1377)] = 60288, + [SMALL_STATE(1378)] = 60333, + [SMALL_STATE(1379)] = 60378, + [SMALL_STATE(1380)] = 60405, + [SMALL_STATE(1381)] = 60432, + [SMALL_STATE(1382)] = 60477, + [SMALL_STATE(1383)] = 60522, + [SMALL_STATE(1384)] = 60567, + [SMALL_STATE(1385)] = 60612, + [SMALL_STATE(1386)] = 60657, + [SMALL_STATE(1387)] = 60700, + [SMALL_STATE(1388)] = 60745, + [SMALL_STATE(1389)] = 60790, + [SMALL_STATE(1390)] = 60839, + [SMALL_STATE(1391)] = 60884, + [SMALL_STATE(1392)] = 60928, + [SMALL_STATE(1393)] = 60962, + [SMALL_STATE(1394)] = 60996, + [SMALL_STATE(1395)] = 61034, + [SMALL_STATE(1396)] = 61066, + [SMALL_STATE(1397)] = 61100, + [SMALL_STATE(1398)] = 61134, + [SMALL_STATE(1399)] = 61178, + [SMALL_STATE(1400)] = 61211, + [SMALL_STATE(1401)] = 61252, + [SMALL_STATE(1402)] = 61293, + [SMALL_STATE(1403)] = 61334, + [SMALL_STATE(1404)] = 61367, + [SMALL_STATE(1405)] = 61404, + [SMALL_STATE(1406)] = 61445, + [SMALL_STATE(1407)] = 61486, + [SMALL_STATE(1408)] = 61527, + [SMALL_STATE(1409)] = 61568, + [SMALL_STATE(1410)] = 61597, + [SMALL_STATE(1411)] = 61630, + [SMALL_STATE(1412)] = 61671, + [SMALL_STATE(1413)] = 61704, + [SMALL_STATE(1414)] = 61748, + [SMALL_STATE(1415)] = 61792, + [SMALL_STATE(1416)] = 61836, + [SMALL_STATE(1417)] = 61880, + [SMALL_STATE(1418)] = 61924, + [SMALL_STATE(1419)] = 61952, + [SMALL_STATE(1420)] = 61996, + [SMALL_STATE(1421)] = 62034, + [SMALL_STATE(1422)] = 62072, + [SMALL_STATE(1423)] = 62116, + [SMALL_STATE(1424)] = 62160, + [SMALL_STATE(1425)] = 62204, + [SMALL_STATE(1426)] = 62236, + [SMALL_STATE(1427)] = 62280, + [SMALL_STATE(1428)] = 62318, + [SMALL_STATE(1429)] = 62362, + [SMALL_STATE(1430)] = 62385, + [SMALL_STATE(1431)] = 62408, + [SMALL_STATE(1432)] = 62431, + [SMALL_STATE(1433)] = 62454, + [SMALL_STATE(1434)] = 62493, + [SMALL_STATE(1435)] = 62532, + [SMALL_STATE(1436)] = 62571, + [SMALL_STATE(1437)] = 62594, + [SMALL_STATE(1438)] = 62617, + [SMALL_STATE(1439)] = 62640, + [SMALL_STATE(1440)] = 62663, + [SMALL_STATE(1441)] = 62686, + [SMALL_STATE(1442)] = 62709, + [SMALL_STATE(1443)] = 62748, + [SMALL_STATE(1444)] = 62770, + [SMALL_STATE(1445)] = 62792, + [SMALL_STATE(1446)] = 62828, + [SMALL_STATE(1447)] = 62856, + [SMALL_STATE(1448)] = 62878, + [SMALL_STATE(1449)] = 62900, + [SMALL_STATE(1450)] = 62922, + [SMALL_STATE(1451)] = 62958, + [SMALL_STATE(1452)] = 62980, + [SMALL_STATE(1453)] = 63002, + [SMALL_STATE(1454)] = 63038, + [SMALL_STATE(1455)] = 63060, + [SMALL_STATE(1456)] = 63088, + [SMALL_STATE(1457)] = 63116, + [SMALL_STATE(1458)] = 63152, + [SMALL_STATE(1459)] = 63174, + [SMALL_STATE(1460)] = 63210, + [SMALL_STATE(1461)] = 63232, + [SMALL_STATE(1462)] = 63268, + [SMALL_STATE(1463)] = 63304, + [SMALL_STATE(1464)] = 63326, + [SMALL_STATE(1465)] = 63355, + [SMALL_STATE(1466)] = 63384, + [SMALL_STATE(1467)] = 63421, + [SMALL_STATE(1468)] = 63458, + [SMALL_STATE(1469)] = 63495, + [SMALL_STATE(1470)] = 63532, + [SMALL_STATE(1471)] = 63569, + [SMALL_STATE(1472)] = 63602, + [SMALL_STATE(1473)] = 63639, + [SMALL_STATE(1474)] = 63668, + [SMALL_STATE(1475)] = 63705, + [SMALL_STATE(1476)] = 63742, + [SMALL_STATE(1477)] = 63771, + [SMALL_STATE(1478)] = 63808, + [SMALL_STATE(1479)] = 63845, + [SMALL_STATE(1480)] = 63882, + [SMALL_STATE(1481)] = 63919, + [SMALL_STATE(1482)] = 63956, + [SMALL_STATE(1483)] = 63993, + [SMALL_STATE(1484)] = 64030, + [SMALL_STATE(1485)] = 64067, + [SMALL_STATE(1486)] = 64104, + [SMALL_STATE(1487)] = 64141, + [SMALL_STATE(1488)] = 64178, + [SMALL_STATE(1489)] = 64215, + [SMALL_STATE(1490)] = 64252, + [SMALL_STATE(1491)] = 64289, + [SMALL_STATE(1492)] = 64322, + [SMALL_STATE(1493)] = 64346, + [SMALL_STATE(1494)] = 64378, + [SMALL_STATE(1495)] = 64410, + [SMALL_STATE(1496)] = 64442, + [SMALL_STATE(1497)] = 64474, + [SMALL_STATE(1498)] = 64506, + [SMALL_STATE(1499)] = 64538, + [SMALL_STATE(1500)] = 64570, + [SMALL_STATE(1501)] = 64602, + [SMALL_STATE(1502)] = 64634, + [SMALL_STATE(1503)] = 64665, + [SMALL_STATE(1504)] = 64694, + [SMALL_STATE(1505)] = 64723, + [SMALL_STATE(1506)] = 64752, + [SMALL_STATE(1507)] = 64783, + [SMALL_STATE(1508)] = 64812, + [SMALL_STATE(1509)] = 64837, + [SMALL_STATE(1510)] = 64866, + [SMALL_STATE(1511)] = 64897, + [SMALL_STATE(1512)] = 64922, + [SMALL_STATE(1513)] = 64951, + [SMALL_STATE(1514)] = 64980, + [SMALL_STATE(1515)] = 65009, + [SMALL_STATE(1516)] = 65040, + [SMALL_STATE(1517)] = 65065, + [SMALL_STATE(1518)] = 65090, + [SMALL_STATE(1519)] = 65115, + [SMALL_STATE(1520)] = 65144, + [SMALL_STATE(1521)] = 65169, + [SMALL_STATE(1522)] = 65198, + [SMALL_STATE(1523)] = 65229, + [SMALL_STATE(1524)] = 65254, + [SMALL_STATE(1525)] = 65283, + [SMALL_STATE(1526)] = 65308, + [SMALL_STATE(1527)] = 65337, + [SMALL_STATE(1528)] = 65362, + [SMALL_STATE(1529)] = 65383, + [SMALL_STATE(1530)] = 65408, + [SMALL_STATE(1531)] = 65437, + [SMALL_STATE(1532)] = 65462, + [SMALL_STATE(1533)] = 65483, + [SMALL_STATE(1534)] = 65512, + [SMALL_STATE(1535)] = 65543, + [SMALL_STATE(1536)] = 65568, + [SMALL_STATE(1537)] = 65597, + [SMALL_STATE(1538)] = 65622, + [SMALL_STATE(1539)] = 65651, + [SMALL_STATE(1540)] = 65682, + [SMALL_STATE(1541)] = 65711, + [SMALL_STATE(1542)] = 65740, + [SMALL_STATE(1543)] = 65765, + [SMALL_STATE(1544)] = 65790, + [SMALL_STATE(1545)] = 65811, + [SMALL_STATE(1546)] = 65842, + [SMALL_STATE(1547)] = 65863, + [SMALL_STATE(1548)] = 65884, + [SMALL_STATE(1549)] = 65905, + [SMALL_STATE(1550)] = 65934, + [SMALL_STATE(1551)] = 65959, + [SMALL_STATE(1552)] = 65988, + [SMALL_STATE(1553)] = 66013, + [SMALL_STATE(1554)] = 66037, + [SMALL_STATE(1555)] = 66055, + [SMALL_STATE(1556)] = 66087, + [SMALL_STATE(1557)] = 66119, + [SMALL_STATE(1558)] = 66143, + [SMALL_STATE(1559)] = 66161, + [SMALL_STATE(1560)] = 66179, + [SMALL_STATE(1561)] = 66197, + [SMALL_STATE(1562)] = 66229, + [SMALL_STATE(1563)] = 66253, + [SMALL_STATE(1564)] = 66269, + [SMALL_STATE(1565)] = 66293, + [SMALL_STATE(1566)] = 66311, + [SMALL_STATE(1567)] = 66335, + [SMALL_STATE(1568)] = 66353, + [SMALL_STATE(1569)] = 66385, + [SMALL_STATE(1570)] = 66403, + [SMALL_STATE(1571)] = 66421, + [SMALL_STATE(1572)] = 66442, + [SMALL_STATE(1573)] = 66463, + [SMALL_STATE(1574)] = 66484, + [SMALL_STATE(1575)] = 66505, + [SMALL_STATE(1576)] = 66526, + [SMALL_STATE(1577)] = 66555, + [SMALL_STATE(1578)] = 66576, + [SMALL_STATE(1579)] = 66605, + [SMALL_STATE(1580)] = 66634, + [SMALL_STATE(1581)] = 66663, + [SMALL_STATE(1582)] = 66682, + [SMALL_STATE(1583)] = 66711, + [SMALL_STATE(1584)] = 66736, + [SMALL_STATE(1585)] = 66757, + [SMALL_STATE(1586)] = 66786, + [SMALL_STATE(1587)] = 66815, + [SMALL_STATE(1588)] = 66840, + [SMALL_STATE(1589)] = 66869, + [SMALL_STATE(1590)] = 66895, + [SMALL_STATE(1591)] = 66915, + [SMALL_STATE(1592)] = 66941, + [SMALL_STATE(1593)] = 66967, + [SMALL_STATE(1594)] = 66993, + [SMALL_STATE(1595)] = 67017, + [SMALL_STATE(1596)] = 67043, + [SMALL_STATE(1597)] = 67069, + [SMALL_STATE(1598)] = 67095, + [SMALL_STATE(1599)] = 67115, + [SMALL_STATE(1600)] = 67141, + [SMALL_STATE(1601)] = 67167, + [SMALL_STATE(1602)] = 67193, + [SMALL_STATE(1603)] = 67219, + [SMALL_STATE(1604)] = 67245, + [SMALL_STATE(1605)] = 67271, + [SMALL_STATE(1606)] = 67289, + [SMALL_STATE(1607)] = 67315, + [SMALL_STATE(1608)] = 67341, + [SMALL_STATE(1609)] = 67367, + [SMALL_STATE(1610)] = 67393, + [SMALL_STATE(1611)] = 67419, + [SMALL_STATE(1612)] = 67445, + [SMALL_STATE(1613)] = 67471, + [SMALL_STATE(1614)] = 67497, + [SMALL_STATE(1615)] = 67517, + [SMALL_STATE(1616)] = 67539, + [SMALL_STATE(1617)] = 67565, + [SMALL_STATE(1618)] = 67591, + [SMALL_STATE(1619)] = 67617, + [SMALL_STATE(1620)] = 67643, + [SMALL_STATE(1621)] = 67669, + [SMALL_STATE(1622)] = 67695, + [SMALL_STATE(1623)] = 67721, + [SMALL_STATE(1624)] = 67740, + [SMALL_STATE(1625)] = 67763, + [SMALL_STATE(1626)] = 67786, + [SMALL_STATE(1627)] = 67809, + [SMALL_STATE(1628)] = 67828, + [SMALL_STATE(1629)] = 67851, + [SMALL_STATE(1630)] = 67868, + [SMALL_STATE(1631)] = 67891, + [SMALL_STATE(1632)] = 67914, + [SMALL_STATE(1633)] = 67937, + [SMALL_STATE(1634)] = 67960, + [SMALL_STATE(1635)] = 67983, + [SMALL_STATE(1636)] = 68006, + [SMALL_STATE(1637)] = 68029, + [SMALL_STATE(1638)] = 68049, + [SMALL_STATE(1639)] = 68067, + [SMALL_STATE(1640)] = 68081, + [SMALL_STATE(1641)] = 68097, + [SMALL_STATE(1642)] = 68113, + [SMALL_STATE(1643)] = 68133, + [SMALL_STATE(1644)] = 68153, + [SMALL_STATE(1645)] = 68167, + [SMALL_STATE(1646)] = 68187, + [SMALL_STATE(1647)] = 68207, + [SMALL_STATE(1648)] = 68227, + [SMALL_STATE(1649)] = 68241, + [SMALL_STATE(1650)] = 68259, + [SMALL_STATE(1651)] = 68273, + [SMALL_STATE(1652)] = 68287, + [SMALL_STATE(1653)] = 68307, + [SMALL_STATE(1654)] = 68327, + [SMALL_STATE(1655)] = 68347, + [SMALL_STATE(1656)] = 68367, + [SMALL_STATE(1657)] = 68381, + [SMALL_STATE(1658)] = 68399, + [SMALL_STATE(1659)] = 68417, + [SMALL_STATE(1660)] = 68437, + [SMALL_STATE(1661)] = 68457, + [SMALL_STATE(1662)] = 68477, + [SMALL_STATE(1663)] = 68497, + [SMALL_STATE(1664)] = 68517, + [SMALL_STATE(1665)] = 68537, + [SMALL_STATE(1666)] = 68551, + [SMALL_STATE(1667)] = 68571, + [SMALL_STATE(1668)] = 68591, + [SMALL_STATE(1669)] = 68611, + [SMALL_STATE(1670)] = 68625, + [SMALL_STATE(1671)] = 68639, + [SMALL_STATE(1672)] = 68659, + [SMALL_STATE(1673)] = 68677, + [SMALL_STATE(1674)] = 68697, + [SMALL_STATE(1675)] = 68711, + [SMALL_STATE(1676)] = 68727, + [SMALL_STATE(1677)] = 68741, + [SMALL_STATE(1678)] = 68755, + [SMALL_STATE(1679)] = 68775, + [SMALL_STATE(1680)] = 68795, + [SMALL_STATE(1681)] = 68809, + [SMALL_STATE(1682)] = 68829, + [SMALL_STATE(1683)] = 68847, + [SMALL_STATE(1684)] = 68865, + [SMALL_STATE(1685)] = 68879, + [SMALL_STATE(1686)] = 68899, + [SMALL_STATE(1687)] = 68913, + [SMALL_STATE(1688)] = 68933, + [SMALL_STATE(1689)] = 68953, + [SMALL_STATE(1690)] = 68973, + [SMALL_STATE(1691)] = 68984, + [SMALL_STATE(1692)] = 68995, + [SMALL_STATE(1693)] = 69014, + [SMALL_STATE(1694)] = 69025, + [SMALL_STATE(1695)] = 69040, + [SMALL_STATE(1696)] = 69055, + [SMALL_STATE(1697)] = 69074, + [SMALL_STATE(1698)] = 69085, + [SMALL_STATE(1699)] = 69104, + [SMALL_STATE(1700)] = 69115, + [SMALL_STATE(1701)] = 69134, + [SMALL_STATE(1702)] = 69149, + [SMALL_STATE(1703)] = 69160, + [SMALL_STATE(1704)] = 69179, + [SMALL_STATE(1705)] = 69190, + [SMALL_STATE(1706)] = 69209, + [SMALL_STATE(1707)] = 69220, + [SMALL_STATE(1708)] = 69239, + [SMALL_STATE(1709)] = 69250, + [SMALL_STATE(1710)] = 69261, + [SMALL_STATE(1711)] = 69272, + [SMALL_STATE(1712)] = 69291, + [SMALL_STATE(1713)] = 69308, + [SMALL_STATE(1714)] = 69327, + [SMALL_STATE(1715)] = 69346, + [SMALL_STATE(1716)] = 69357, + [SMALL_STATE(1717)] = 69368, + [SMALL_STATE(1718)] = 69379, + [SMALL_STATE(1719)] = 69396, + [SMALL_STATE(1720)] = 69412, + [SMALL_STATE(1721)] = 69426, + [SMALL_STATE(1722)] = 69440, + [SMALL_STATE(1723)] = 69456, + [SMALL_STATE(1724)] = 69470, + [SMALL_STATE(1725)] = 69484, + [SMALL_STATE(1726)] = 69498, + [SMALL_STATE(1727)] = 69514, + [SMALL_STATE(1728)] = 69530, + [SMALL_STATE(1729)] = 69544, + [SMALL_STATE(1730)] = 69558, + [SMALL_STATE(1731)] = 69572, + [SMALL_STATE(1732)] = 69588, + [SMALL_STATE(1733)] = 69604, + [SMALL_STATE(1734)] = 69620, + [SMALL_STATE(1735)] = 69634, + [SMALL_STATE(1736)] = 69650, + [SMALL_STATE(1737)] = 69664, + [SMALL_STATE(1738)] = 69674, + [SMALL_STATE(1739)] = 69690, + [SMALL_STATE(1740)] = 69700, + [SMALL_STATE(1741)] = 69714, + [SMALL_STATE(1742)] = 69728, + [SMALL_STATE(1743)] = 69742, + [SMALL_STATE(1744)] = 69758, + [SMALL_STATE(1745)] = 69772, + [SMALL_STATE(1746)] = 69786, + [SMALL_STATE(1747)] = 69802, + [SMALL_STATE(1748)] = 69816, + [SMALL_STATE(1749)] = 69830, + [SMALL_STATE(1750)] = 69846, + [SMALL_STATE(1751)] = 69860, + [SMALL_STATE(1752)] = 69876, + [SMALL_STATE(1753)] = 69892, + [SMALL_STATE(1754)] = 69906, + [SMALL_STATE(1755)] = 69920, + [SMALL_STATE(1756)] = 69934, + [SMALL_STATE(1757)] = 69947, + [SMALL_STATE(1758)] = 69960, + [SMALL_STATE(1759)] = 69973, + [SMALL_STATE(1760)] = 69986, + [SMALL_STATE(1761)] = 69999, + [SMALL_STATE(1762)] = 70012, + [SMALL_STATE(1763)] = 70025, + [SMALL_STATE(1764)] = 70038, + [SMALL_STATE(1765)] = 70051, + [SMALL_STATE(1766)] = 70064, + [SMALL_STATE(1767)] = 70077, + [SMALL_STATE(1768)] = 70090, + [SMALL_STATE(1769)] = 70103, + [SMALL_STATE(1770)] = 70116, + [SMALL_STATE(1771)] = 70129, + [SMALL_STATE(1772)] = 70142, + [SMALL_STATE(1773)] = 70155, + [SMALL_STATE(1774)] = 70168, + [SMALL_STATE(1775)] = 70181, + [SMALL_STATE(1776)] = 70194, + [SMALL_STATE(1777)] = 70207, + [SMALL_STATE(1778)] = 70220, + [SMALL_STATE(1779)] = 70233, + [SMALL_STATE(1780)] = 70242, + [SMALL_STATE(1781)] = 70255, + [SMALL_STATE(1782)] = 70268, + [SMALL_STATE(1783)] = 70277, + [SMALL_STATE(1784)] = 70290, + [SMALL_STATE(1785)] = 70303, + [SMALL_STATE(1786)] = 70316, + [SMALL_STATE(1787)] = 70329, + [SMALL_STATE(1788)] = 70342, + [SMALL_STATE(1789)] = 70353, + [SMALL_STATE(1790)] = 70366, + [SMALL_STATE(1791)] = 70379, + [SMALL_STATE(1792)] = 70388, + [SMALL_STATE(1793)] = 70401, + [SMALL_STATE(1794)] = 70410, + [SMALL_STATE(1795)] = 70423, + [SMALL_STATE(1796)] = 70436, + [SMALL_STATE(1797)] = 70449, + [SMALL_STATE(1798)] = 70462, + [SMALL_STATE(1799)] = 70475, + [SMALL_STATE(1800)] = 70488, + [SMALL_STATE(1801)] = 70501, + [SMALL_STATE(1802)] = 70512, + [SMALL_STATE(1803)] = 70525, + [SMALL_STATE(1804)] = 70538, + [SMALL_STATE(1805)] = 70551, + [SMALL_STATE(1806)] = 70564, + [SMALL_STATE(1807)] = 70577, + [SMALL_STATE(1808)] = 70586, + [SMALL_STATE(1809)] = 70599, + [SMALL_STATE(1810)] = 70612, + [SMALL_STATE(1811)] = 70625, + [SMALL_STATE(1812)] = 70634, + [SMALL_STATE(1813)] = 70643, + [SMALL_STATE(1814)] = 70656, + [SMALL_STATE(1815)] = 70669, + [SMALL_STATE(1816)] = 70682, + [SMALL_STATE(1817)] = 70695, + [SMALL_STATE(1818)] = 70708, + [SMALL_STATE(1819)] = 70721, + [SMALL_STATE(1820)] = 70734, + [SMALL_STATE(1821)] = 70747, + [SMALL_STATE(1822)] = 70760, + [SMALL_STATE(1823)] = 70773, + [SMALL_STATE(1824)] = 70782, + [SMALL_STATE(1825)] = 70795, + [SMALL_STATE(1826)] = 70808, + [SMALL_STATE(1827)] = 70821, + [SMALL_STATE(1828)] = 70834, + [SMALL_STATE(1829)] = 70847, + [SMALL_STATE(1830)] = 70860, + [SMALL_STATE(1831)] = 70873, + [SMALL_STATE(1832)] = 70884, + [SMALL_STATE(1833)] = 70897, + [SMALL_STATE(1834)] = 70910, + [SMALL_STATE(1835)] = 70923, + [SMALL_STATE(1836)] = 70936, + [SMALL_STATE(1837)] = 70949, + [SMALL_STATE(1838)] = 70962, + [SMALL_STATE(1839)] = 70975, + [SMALL_STATE(1840)] = 70988, + [SMALL_STATE(1841)] = 71001, + [SMALL_STATE(1842)] = 71014, + [SMALL_STATE(1843)] = 71027, + [SMALL_STATE(1844)] = 71040, + [SMALL_STATE(1845)] = 71053, + [SMALL_STATE(1846)] = 71064, + [SMALL_STATE(1847)] = 71077, + [SMALL_STATE(1848)] = 71090, + [SMALL_STATE(1849)] = 71099, + [SMALL_STATE(1850)] = 71112, + [SMALL_STATE(1851)] = 71125, + [SMALL_STATE(1852)] = 71138, + [SMALL_STATE(1853)] = 71151, + [SMALL_STATE(1854)] = 71164, + [SMALL_STATE(1855)] = 71177, + [SMALL_STATE(1856)] = 71190, + [SMALL_STATE(1857)] = 71203, + [SMALL_STATE(1858)] = 71216, + [SMALL_STATE(1859)] = 71229, + [SMALL_STATE(1860)] = 71240, + [SMALL_STATE(1861)] = 71253, + [SMALL_STATE(1862)] = 71266, + [SMALL_STATE(1863)] = 71279, + [SMALL_STATE(1864)] = 71292, + [SMALL_STATE(1865)] = 71305, + [SMALL_STATE(1866)] = 71318, + [SMALL_STATE(1867)] = 71327, + [SMALL_STATE(1868)] = 71340, + [SMALL_STATE(1869)] = 71353, + [SMALL_STATE(1870)] = 71366, + [SMALL_STATE(1871)] = 71379, + [SMALL_STATE(1872)] = 71392, + [SMALL_STATE(1873)] = 71405, + [SMALL_STATE(1874)] = 71418, + [SMALL_STATE(1875)] = 71431, + [SMALL_STATE(1876)] = 71444, + [SMALL_STATE(1877)] = 71457, + [SMALL_STATE(1878)] = 71470, + [SMALL_STATE(1879)] = 71483, + [SMALL_STATE(1880)] = 71496, + [SMALL_STATE(1881)] = 71509, + [SMALL_STATE(1882)] = 71522, + [SMALL_STATE(1883)] = 71535, + [SMALL_STATE(1884)] = 71544, + [SMALL_STATE(1885)] = 71557, + [SMALL_STATE(1886)] = 71570, + [SMALL_STATE(1887)] = 71583, + [SMALL_STATE(1888)] = 71596, + [SMALL_STATE(1889)] = 71609, + [SMALL_STATE(1890)] = 71622, + [SMALL_STATE(1891)] = 71635, + [SMALL_STATE(1892)] = 71648, + [SMALL_STATE(1893)] = 71661, + [SMALL_STATE(1894)] = 71674, + [SMALL_STATE(1895)] = 71687, + [SMALL_STATE(1896)] = 71700, + [SMALL_STATE(1897)] = 71713, + [SMALL_STATE(1898)] = 71726, + [SMALL_STATE(1899)] = 71739, + [SMALL_STATE(1900)] = 71752, + [SMALL_STATE(1901)] = 71765, + [SMALL_STATE(1902)] = 71778, + [SMALL_STATE(1903)] = 71789, + [SMALL_STATE(1904)] = 71802, + [SMALL_STATE(1905)] = 71815, + [SMALL_STATE(1906)] = 71828, + [SMALL_STATE(1907)] = 71841, + [SMALL_STATE(1908)] = 71854, + [SMALL_STATE(1909)] = 71867, + [SMALL_STATE(1910)] = 71880, + [SMALL_STATE(1911)] = 71893, + [SMALL_STATE(1912)] = 71906, + [SMALL_STATE(1913)] = 71919, + [SMALL_STATE(1914)] = 71932, + [SMALL_STATE(1915)] = 71945, + [SMALL_STATE(1916)] = 71958, + [SMALL_STATE(1917)] = 71971, + [SMALL_STATE(1918)] = 71984, + [SMALL_STATE(1919)] = 71997, + [SMALL_STATE(1920)] = 72010, + [SMALL_STATE(1921)] = 72023, + [SMALL_STATE(1922)] = 72036, + [SMALL_STATE(1923)] = 72049, + [SMALL_STATE(1924)] = 72062, + [SMALL_STATE(1925)] = 72073, + [SMALL_STATE(1926)] = 72086, + [SMALL_STATE(1927)] = 72097, + [SMALL_STATE(1928)] = 72110, + [SMALL_STATE(1929)] = 72123, + [SMALL_STATE(1930)] = 72136, + [SMALL_STATE(1931)] = 72149, + [SMALL_STATE(1932)] = 72162, + [SMALL_STATE(1933)] = 72175, + [SMALL_STATE(1934)] = 72188, + [SMALL_STATE(1935)] = 72198, + [SMALL_STATE(1936)] = 72208, + [SMALL_STATE(1937)] = 72218, + [SMALL_STATE(1938)] = 72228, + [SMALL_STATE(1939)] = 72238, + [SMALL_STATE(1940)] = 72248, + [SMALL_STATE(1941)] = 72258, + [SMALL_STATE(1942)] = 72268, + [SMALL_STATE(1943)] = 72278, + [SMALL_STATE(1944)] = 72288, + [SMALL_STATE(1945)] = 72298, + [SMALL_STATE(1946)] = 72308, + [SMALL_STATE(1947)] = 72318, + [SMALL_STATE(1948)] = 72328, + [SMALL_STATE(1949)] = 72338, + [SMALL_STATE(1950)] = 72348, + [SMALL_STATE(1951)] = 72358, + [SMALL_STATE(1952)] = 72368, + [SMALL_STATE(1953)] = 72378, + [SMALL_STATE(1954)] = 72388, + [SMALL_STATE(1955)] = 72396, + [SMALL_STATE(1956)] = 72406, + [SMALL_STATE(1957)] = 72416, + [SMALL_STATE(1958)] = 72424, + [SMALL_STATE(1959)] = 72432, + [SMALL_STATE(1960)] = 72440, + [SMALL_STATE(1961)] = 72450, + [SMALL_STATE(1962)] = 72458, + [SMALL_STATE(1963)] = 72468, + [SMALL_STATE(1964)] = 72478, + [SMALL_STATE(1965)] = 72486, + [SMALL_STATE(1966)] = 72496, + [SMALL_STATE(1967)] = 72506, + [SMALL_STATE(1968)] = 72516, + [SMALL_STATE(1969)] = 72526, + [SMALL_STATE(1970)] = 72536, + [SMALL_STATE(1971)] = 72546, + [SMALL_STATE(1972)] = 72556, + [SMALL_STATE(1973)] = 72566, + [SMALL_STATE(1974)] = 72576, + [SMALL_STATE(1975)] = 72586, + [SMALL_STATE(1976)] = 72596, + [SMALL_STATE(1977)] = 72606, + [SMALL_STATE(1978)] = 72616, + [SMALL_STATE(1979)] = 72626, + [SMALL_STATE(1980)] = 72636, + [SMALL_STATE(1981)] = 72644, + [SMALL_STATE(1982)] = 72652, + [SMALL_STATE(1983)] = 72660, + [SMALL_STATE(1984)] = 72670, + [SMALL_STATE(1985)] = 72680, + [SMALL_STATE(1986)] = 72690, + [SMALL_STATE(1987)] = 72698, + [SMALL_STATE(1988)] = 72708, + [SMALL_STATE(1989)] = 72718, + [SMALL_STATE(1990)] = 72726, + [SMALL_STATE(1991)] = 72736, + [SMALL_STATE(1992)] = 72746, + [SMALL_STATE(1993)] = 72756, + [SMALL_STATE(1994)] = 72764, + [SMALL_STATE(1995)] = 72774, + [SMALL_STATE(1996)] = 72784, + [SMALL_STATE(1997)] = 72794, + [SMALL_STATE(1998)] = 72804, + [SMALL_STATE(1999)] = 72812, + [SMALL_STATE(2000)] = 72822, + [SMALL_STATE(2001)] = 72832, + [SMALL_STATE(2002)] = 72842, + [SMALL_STATE(2003)] = 72852, + [SMALL_STATE(2004)] = 72860, + [SMALL_STATE(2005)] = 72870, + [SMALL_STATE(2006)] = 72880, + [SMALL_STATE(2007)] = 72888, + [SMALL_STATE(2008)] = 72898, + [SMALL_STATE(2009)] = 72908, + [SMALL_STATE(2010)] = 72918, + [SMALL_STATE(2011)] = 72928, + [SMALL_STATE(2012)] = 72936, + [SMALL_STATE(2013)] = 72946, + [SMALL_STATE(2014)] = 72956, + [SMALL_STATE(2015)] = 72964, + [SMALL_STATE(2016)] = 72974, + [SMALL_STATE(2017)] = 72984, + [SMALL_STATE(2018)] = 72994, + [SMALL_STATE(2019)] = 73004, + [SMALL_STATE(2020)] = 73014, + [SMALL_STATE(2021)] = 73024, + [SMALL_STATE(2022)] = 73032, + [SMALL_STATE(2023)] = 73042, + [SMALL_STATE(2024)] = 73052, + [SMALL_STATE(2025)] = 73062, + [SMALL_STATE(2026)] = 73072, + [SMALL_STATE(2027)] = 73080, + [SMALL_STATE(2028)] = 73090, + [SMALL_STATE(2029)] = 73098, + [SMALL_STATE(2030)] = 73105, + [SMALL_STATE(2031)] = 73112, + [SMALL_STATE(2032)] = 73119, + [SMALL_STATE(2033)] = 73126, + [SMALL_STATE(2034)] = 73133, + [SMALL_STATE(2035)] = 73140, + [SMALL_STATE(2036)] = 73147, + [SMALL_STATE(2037)] = 73154, + [SMALL_STATE(2038)] = 73161, + [SMALL_STATE(2039)] = 73168, + [SMALL_STATE(2040)] = 73175, + [SMALL_STATE(2041)] = 73182, + [SMALL_STATE(2042)] = 73189, + [SMALL_STATE(2043)] = 73196, + [SMALL_STATE(2044)] = 73203, + [SMALL_STATE(2045)] = 73210, + [SMALL_STATE(2046)] = 73217, + [SMALL_STATE(2047)] = 73224, + [SMALL_STATE(2048)] = 73231, + [SMALL_STATE(2049)] = 73238, + [SMALL_STATE(2050)] = 73245, + [SMALL_STATE(2051)] = 73252, + [SMALL_STATE(2052)] = 73259, + [SMALL_STATE(2053)] = 73266, + [SMALL_STATE(2054)] = 73273, + [SMALL_STATE(2055)] = 73280, + [SMALL_STATE(2056)] = 73287, + [SMALL_STATE(2057)] = 73294, + [SMALL_STATE(2058)] = 73301, + [SMALL_STATE(2059)] = 73308, + [SMALL_STATE(2060)] = 73315, + [SMALL_STATE(2061)] = 73322, + [SMALL_STATE(2062)] = 73329, + [SMALL_STATE(2063)] = 73336, + [SMALL_STATE(2064)] = 73343, + [SMALL_STATE(2065)] = 73350, + [SMALL_STATE(2066)] = 73357, + [SMALL_STATE(2067)] = 73364, + [SMALL_STATE(2068)] = 73371, + [SMALL_STATE(2069)] = 73378, + [SMALL_STATE(2070)] = 73385, + [SMALL_STATE(2071)] = 73392, + [SMALL_STATE(2072)] = 73399, + [SMALL_STATE(2073)] = 73406, + [SMALL_STATE(2074)] = 73413, + [SMALL_STATE(2075)] = 73420, + [SMALL_STATE(2076)] = 73427, + [SMALL_STATE(2077)] = 73434, + [SMALL_STATE(2078)] = 73441, + [SMALL_STATE(2079)] = 73448, + [SMALL_STATE(2080)] = 73455, + [SMALL_STATE(2081)] = 73462, + [SMALL_STATE(2082)] = 73469, + [SMALL_STATE(2083)] = 73476, + [SMALL_STATE(2084)] = 73483, + [SMALL_STATE(2085)] = 73490, + [SMALL_STATE(2086)] = 73497, + [SMALL_STATE(2087)] = 73504, + [SMALL_STATE(2088)] = 73511, + [SMALL_STATE(2089)] = 73518, + [SMALL_STATE(2090)] = 73525, + [SMALL_STATE(2091)] = 73532, + [SMALL_STATE(2092)] = 73539, + [SMALL_STATE(2093)] = 73546, + [SMALL_STATE(2094)] = 73553, + [SMALL_STATE(2095)] = 73560, + [SMALL_STATE(2096)] = 73567, + [SMALL_STATE(2097)] = 73574, + [SMALL_STATE(2098)] = 73581, + [SMALL_STATE(2099)] = 73588, + [SMALL_STATE(2100)] = 73595, + [SMALL_STATE(2101)] = 73602, + [SMALL_STATE(2102)] = 73609, + [SMALL_STATE(2103)] = 73616, + [SMALL_STATE(2104)] = 73623, + [SMALL_STATE(2105)] = 73630, + [SMALL_STATE(2106)] = 73637, + [SMALL_STATE(2107)] = 73644, + [SMALL_STATE(2108)] = 73651, + [SMALL_STATE(2109)] = 73658, + [SMALL_STATE(2110)] = 73665, + [SMALL_STATE(2111)] = 73672, + [SMALL_STATE(2112)] = 73679, + [SMALL_STATE(2113)] = 73686, + [SMALL_STATE(2114)] = 73693, + [SMALL_STATE(2115)] = 73700, + [SMALL_STATE(2116)] = 73707, + [SMALL_STATE(2117)] = 73714, + [SMALL_STATE(2118)] = 73721, + [SMALL_STATE(2119)] = 73728, + [SMALL_STATE(2120)] = 73735, + [SMALL_STATE(2121)] = 73742, + [SMALL_STATE(2122)] = 73749, + [SMALL_STATE(2123)] = 73756, + [SMALL_STATE(2124)] = 73763, + [SMALL_STATE(2125)] = 73770, + [SMALL_STATE(2126)] = 73777, + [SMALL_STATE(2127)] = 73784, + [SMALL_STATE(2128)] = 73791, + [SMALL_STATE(2129)] = 73798, + [SMALL_STATE(2130)] = 73805, + [SMALL_STATE(2131)] = 73812, + [SMALL_STATE(2132)] = 73819, + [SMALL_STATE(2133)] = 73826, + [SMALL_STATE(2134)] = 73833, + [SMALL_STATE(2135)] = 73840, + [SMALL_STATE(2136)] = 73847, + [SMALL_STATE(2137)] = 73854, + [SMALL_STATE(2138)] = 73861, + [SMALL_STATE(2139)] = 73868, + [SMALL_STATE(2140)] = 73875, + [SMALL_STATE(2141)] = 73882, + [SMALL_STATE(2142)] = 73889, + [SMALL_STATE(2143)] = 73896, + [SMALL_STATE(2144)] = 73903, + [SMALL_STATE(2145)] = 73910, + [SMALL_STATE(2146)] = 73917, + [SMALL_STATE(2147)] = 73924, + [SMALL_STATE(2148)] = 73931, + [SMALL_STATE(2149)] = 73938, + [SMALL_STATE(2150)] = 73945, + [SMALL_STATE(2151)] = 73952, + [SMALL_STATE(2152)] = 73959, + [SMALL_STATE(2153)] = 73966, + [SMALL_STATE(2154)] = 73973, + [SMALL_STATE(2155)] = 73980, + [SMALL_STATE(2156)] = 73987, + [SMALL_STATE(2157)] = 73994, + [SMALL_STATE(2158)] = 74001, + [SMALL_STATE(2159)] = 74008, + [SMALL_STATE(2160)] = 74015, + [SMALL_STATE(2161)] = 74022, + [SMALL_STATE(2162)] = 74029, + [SMALL_STATE(2163)] = 74036, + [SMALL_STATE(2164)] = 74043, + [SMALL_STATE(2165)] = 74050, + [SMALL_STATE(2166)] = 74057, + [SMALL_STATE(2167)] = 74064, + [SMALL_STATE(2168)] = 74071, + [SMALL_STATE(2169)] = 74078, + [SMALL_STATE(2170)] = 74085, + [SMALL_STATE(2171)] = 74092, + [SMALL_STATE(2172)] = 74099, + [SMALL_STATE(2173)] = 74106, + [SMALL_STATE(2174)] = 74113, + [SMALL_STATE(2175)] = 74120, + [SMALL_STATE(2176)] = 74127, + [SMALL_STATE(2177)] = 74134, + [SMALL_STATE(2178)] = 74141, + [SMALL_STATE(2179)] = 74148, + [SMALL_STATE(2180)] = 74155, + [SMALL_STATE(2181)] = 74162, + [SMALL_STATE(2182)] = 74169, + [SMALL_STATE(2183)] = 74176, + [SMALL_STATE(2184)] = 74183, + [SMALL_STATE(2185)] = 74190, + [SMALL_STATE(2186)] = 74197, + [SMALL_STATE(2187)] = 74204, + [SMALL_STATE(2188)] = 74211, + [SMALL_STATE(2189)] = 74218, + [SMALL_STATE(2190)] = 74225, + [SMALL_STATE(2191)] = 74232, + [SMALL_STATE(2192)] = 74239, + [SMALL_STATE(2193)] = 74246, + [SMALL_STATE(2194)] = 74253, + [SMALL_STATE(2195)] = 74260, + [SMALL_STATE(2196)] = 74267, + [SMALL_STATE(2197)] = 74274, + [SMALL_STATE(2198)] = 74281, + [SMALL_STATE(2199)] = 74288, + [SMALL_STATE(2200)] = 74295, + [SMALL_STATE(2201)] = 74302, + [SMALL_STATE(2202)] = 74309, + [SMALL_STATE(2203)] = 74316, + [SMALL_STATE(2204)] = 74323, + [SMALL_STATE(2205)] = 74330, + [SMALL_STATE(2206)] = 74337, + [SMALL_STATE(2207)] = 74344, + [SMALL_STATE(2208)] = 74351, + [SMALL_STATE(2209)] = 74358, + [SMALL_STATE(2210)] = 74365, + [SMALL_STATE(2211)] = 74372, + [SMALL_STATE(2212)] = 74379, + [SMALL_STATE(2213)] = 74386, + [SMALL_STATE(2214)] = 74393, + [SMALL_STATE(2215)] = 74400, + [SMALL_STATE(2216)] = 74407, + [SMALL_STATE(2217)] = 74414, + [SMALL_STATE(2218)] = 74421, + [SMALL_STATE(2219)] = 74428, + [SMALL_STATE(2220)] = 74435, + [SMALL_STATE(2221)] = 74442, + [SMALL_STATE(2222)] = 74449, + [SMALL_STATE(2223)] = 74456, + [SMALL_STATE(2224)] = 74463, + [SMALL_STATE(2225)] = 74470, + [SMALL_STATE(2226)] = 74477, + [SMALL_STATE(2227)] = 74484, + [SMALL_STATE(2228)] = 74491, + [SMALL_STATE(2229)] = 74498, + [SMALL_STATE(2230)] = 74505, + [SMALL_STATE(2231)] = 74512, + [SMALL_STATE(2232)] = 74519, + [SMALL_STATE(2233)] = 74526, + [SMALL_STATE(2234)] = 74533, + [SMALL_STATE(2235)] = 74540, + [SMALL_STATE(2236)] = 74547, + [SMALL_STATE(2237)] = 74554, + [SMALL_STATE(2238)] = 74561, + [SMALL_STATE(2239)] = 74568, + [SMALL_STATE(2240)] = 74575, + [SMALL_STATE(2241)] = 74582, + [SMALL_STATE(2242)] = 74589, + [SMALL_STATE(2243)] = 74596, + [SMALL_STATE(2244)] = 74603, + [SMALL_STATE(2245)] = 74610, + [SMALL_STATE(2246)] = 74617, + [SMALL_STATE(2247)] = 74624, + [SMALL_STATE(2248)] = 74631, + [SMALL_STATE(2249)] = 74638, + [SMALL_STATE(2250)] = 74645, + [SMALL_STATE(2251)] = 74652, + [SMALL_STATE(2252)] = 74659, + [SMALL_STATE(2253)] = 74666, + [SMALL_STATE(2254)] = 74673, + [SMALL_STATE(2255)] = 74680, + [SMALL_STATE(2256)] = 74687, + [SMALL_STATE(2257)] = 74694, + [SMALL_STATE(2258)] = 74701, + [SMALL_STATE(2259)] = 74708, + [SMALL_STATE(2260)] = 74715, + [SMALL_STATE(2261)] = 74722, + [SMALL_STATE(2262)] = 74729, + [SMALL_STATE(2263)] = 74736, + [SMALL_STATE(2264)] = 74743, + [SMALL_STATE(2265)] = 74750, + [SMALL_STATE(2266)] = 74757, + [SMALL_STATE(2267)] = 74764, + [SMALL_STATE(2268)] = 74771, + [SMALL_STATE(2269)] = 74778, + [SMALL_STATE(2270)] = 74785, + [SMALL_STATE(2271)] = 74792, + [SMALL_STATE(2272)] = 74799, + [SMALL_STATE(2273)] = 74806, + [SMALL_STATE(2274)] = 74813, + [SMALL_STATE(2275)] = 74820, + [SMALL_STATE(2276)] = 74827, + [SMALL_STATE(2277)] = 74834, + [SMALL_STATE(2278)] = 74841, + [SMALL_STATE(2279)] = 74848, + [SMALL_STATE(2280)] = 74855, + [SMALL_STATE(2281)] = 74862, + [SMALL_STATE(2282)] = 74869, + [SMALL_STATE(2283)] = 74876, + [SMALL_STATE(2284)] = 74883, + [SMALL_STATE(2285)] = 74890, + [SMALL_STATE(2286)] = 74897, + [SMALL_STATE(2287)] = 74904, + [SMALL_STATE(2288)] = 74911, + [SMALL_STATE(2289)] = 74918, + [SMALL_STATE(2290)] = 74925, + [SMALL_STATE(2291)] = 74932, + [SMALL_STATE(2292)] = 74939, + [SMALL_STATE(2293)] = 74946, + [SMALL_STATE(2294)] = 74953, + [SMALL_STATE(2295)] = 74960, + [SMALL_STATE(2296)] = 74967, + [SMALL_STATE(2297)] = 74974, + [SMALL_STATE(2298)] = 74981, + [SMALL_STATE(2299)] = 74988, + [SMALL_STATE(2300)] = 74995, + [SMALL_STATE(2301)] = 75002, + [SMALL_STATE(2302)] = 75009, + [SMALL_STATE(2303)] = 75016, + [SMALL_STATE(2304)] = 75023, + [SMALL_STATE(2305)] = 75030, + [SMALL_STATE(2306)] = 75037, + [SMALL_STATE(2307)] = 75044, + [SMALL_STATE(2308)] = 75051, + [SMALL_STATE(2309)] = 75058, + [SMALL_STATE(2310)] = 75065, + [SMALL_STATE(2311)] = 75072, + [SMALL_STATE(2312)] = 75079, + [SMALL_STATE(2313)] = 75086, + [SMALL_STATE(2314)] = 75093, + [SMALL_STATE(2315)] = 75100, + [SMALL_STATE(2316)] = 75107, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -117919,2413 +134089,2509 @@ static const TSParseActionEntry ts_parse_actions[] = { [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), [5] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_translation_unit, 0, 0, 0), - [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(410), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1411), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2065), - [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1216), - [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2059), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1550), - [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(581), - [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(899), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1008), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(848), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2048), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2045), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(597), - [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2037), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(889), - [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(747), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(709), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(703), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2035), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(779), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1564), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1332), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1491), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1698), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1699), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(625), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2015), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1701), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(368), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2003), - [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(467), - [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1997), - [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1994), - [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1978), - [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(536), - [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1977), - [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1969), - [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1964), - [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1446), - [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), - [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), - [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), - [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1100), - [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(667), - [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(400), - [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1415), - [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1962), - [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1208), - [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(298), - [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1963), - [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(32), - [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1200), - [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1849), - [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1634), - [127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(906), - [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1000), - [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(862), - [135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1756), - [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1726), - [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(621), - [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1834), - [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1754), - [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(344), - [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2060), - [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(495), - [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1793), - [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1785), - [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1971), - [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1718), - [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1927), - [163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(663), - [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(326), - [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(136), - [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(134), - [173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef, 2, 0, 17), - [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(285), - [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(287), - [179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(277), - [181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(303), - [183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(321), - [185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(283), - [187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(256), - [189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif, 3, 0, 40), - [191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(304), - [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(142), - [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(317), + [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(457), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1575), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2316), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1325), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2313), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1767), + [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(712), + [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1005), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1131), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(970), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2310), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2309), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(532), + [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2307), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(987), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(973), + [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(890), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(813), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(799), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2306), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(874), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1771), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1459), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1692), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2024), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2023), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(673), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2297), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2022), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(433), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2294), + [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(595), + [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2293), + [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2292), + [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2290), + [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(640), + [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2287), + [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2285), + [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2284), + [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1640), + [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), + [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), + [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), + [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1223), + [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(764), + [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(451), + [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1571), + [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2191), + [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1314), + [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(127), + [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2192), + [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(30), + [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1330), + [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2124), + [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1802), + [129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1017), + [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1133), + [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(972), + [137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1939), + [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1970), + [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(714), + [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2085), + [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1935), + [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(422), + [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2311), + [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(577), + [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2252), + [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2250), + [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2200), + [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1974), + [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2236), + [165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(758), + [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(371), + [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(403), + [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), + [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(396), + [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(143), + [179] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef, 2, 0, 17), + [181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(325), + [183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(315), + [185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(327), + [187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif, 4, 0, 40), + [189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(292), + [191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(334), + [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(333), + [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(347), [197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef, 3, 0, 17), - [199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(313), - [201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(124), - [203] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif, 4, 0, 40), - [205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(400), - [208] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1415), - [211] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1962), - [214] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1208), - [217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), - [219] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1963), - [222] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1634), - [225] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(386), - [228] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(581), - [231] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(581), - [234] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(584), - [237] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(91), - [240] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(906), - [243] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1000), - [246] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(862), - [249] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2048), - [252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2045), - [255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(597), - [258] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1696), - [261] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2037), - [264] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(889), - [267] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(28), - [270] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(747), - [273] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(709), - [276] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(703), - [279] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2035), - [282] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(779), - [285] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1564), - [288] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1332), - [291] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1491), - [294] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1756), - [297] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1726), - [300] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(621), - [303] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1834), - [306] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1754), - [309] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(344), - [312] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2060), - [315] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(495), - [318] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1793), - [321] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1785), - [324] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1971), - [327] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1718), - [330] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1927), - [333] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(617), - [336] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(536), - [339] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1977), - [342] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1969), - [345] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1964), - [348] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1446), - [351] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(663), - [354] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1567), - [357] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1513), - [360] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(663), - [363] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(667), - [366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(407), - [368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1412), - [370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1881), - [372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1179), - [374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1882), - [376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1628), - [378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(905), - [382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1001), - [384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(841), - [386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1685), - [392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1755), - [394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(576), - [396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2007), - [398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1773), - [400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(349), - [402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2025), - [404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(483), - [406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1813), - [408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1815), - [410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1890), - [412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1767), - [414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1830), - [416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [418] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(408), - [421] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1403), - [424] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2013), - [427] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1217), - [430] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1993), - [433] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1614), - [436] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(172), - [439] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(911), - [442] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1009), - [445] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(849), - [448] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(24), - [451] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1727), - [454] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1710), - [457] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(624), - [460] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1837), - [463] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1725), - [466] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(351), - [469] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2063), - [472] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(499), - [475] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1824), - [478] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1921), - [481] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1998), - [484] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1706), - [487] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1790), - [490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(408), - [504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1403), - [506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2013), - [508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1217), - [510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else, 1, 0, 0), - [512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1993), - [514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1614), - [516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(911), - [520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1009), - [522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(849), - [524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1727), - [528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1710), - [530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(624), - [532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1837), - [534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1725), - [536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(351), - [538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2063), - [540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(499), - [542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1824), - [544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1921), - [546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1998), - [548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1706), - [550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1790), - [552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [564] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(407), - [567] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1412), - [570] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1881), - [573] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1179), - [576] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1882), - [579] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1628), - [582] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(199), - [585] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(905), - [588] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1001), - [591] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(841), - [594] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(38), - [597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), - [599] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1685), - [602] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1755), - [605] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(576), - [608] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2007), - [611] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1773), - [614] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(349), - [617] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2025), - [620] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(483), - [623] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1813), - [626] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1815), - [629] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1890), - [632] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1767), - [635] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1830), - [638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else, 2, 0, 0), - [640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), - [646] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(410), - [649] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1411), - [652] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2065), - [655] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1216), - [658] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2059), - [661] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1550), - [664] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(386), - [667] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(581), - [670] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(581), - [673] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(584), - [676] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(899), - [679] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1008), - [682] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(848), - [685] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2048), - [688] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2045), - [691] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(597), - [694] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1696), - [697] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2037), - [700] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(889), - [703] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(34), - [706] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(747), - [709] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(709), - [712] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(703), - [715] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2035), - [718] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(779), - [721] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1564), - [724] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1332), - [727] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1491), - [730] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1698), - [733] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1699), - [736] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(625), - [739] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2015), - [742] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1701), - [745] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(368), - [748] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2003), - [751] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(467), - [754] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1997), - [757] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1994), - [760] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1978), - [763] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(617), - [766] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(536), - [769] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1977), - [772] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1969), - [775] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1964), - [778] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1446), - [781] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1100), - [784] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1567), - [787] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1513), - [790] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1100), - [793] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(667), - [796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_translation_unit, 1, 0, 0), - [798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(403), - [800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 4, 0, 9), - [802] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(403), - [805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), - [807] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(386), - [810] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(581), - [813] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(581), - [816] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(584), - [819] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(91), - [822] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(906), - [825] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1000), - [828] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(709), - [831] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2048), - [834] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2045), - [837] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(597), - [840] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1696), - [843] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2037), - [846] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(28), - [849] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(747), - [852] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(703), - [855] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2035), - [858] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(779), - [861] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1564), - [864] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1332), - [867] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1491), - [870] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1756), - [873] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1726), - [876] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1754), - [879] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(344), - [882] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2060), - [885] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(495), - [888] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1793), - [891] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1785), - [894] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1971), - [897] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1718), - [900] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1927), - [903] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(617), - [906] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(536), - [909] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1977), - [912] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1969), - [915] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1964), - [918] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1446), - [921] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(663), - [924] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1567), - [927] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1513), - [930] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(663), - [933] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(667), - [936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 3, 0, 0), - [938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 3, 0, 9), - [940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 2, 0, 0), - [942] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(406), - [945] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(172), - [948] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(911), - [951] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1009), - [954] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(24), - [957] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1727), - [960] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1710), - [963] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1725), - [966] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(351), - [969] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2063), - [972] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(499), - [975] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1824), - [978] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1921), - [981] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1998), - [984] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1706), - [987] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1790), - [990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(406), - [992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 3, 0, 0), - [994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(402), - [996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1750), - [1000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1847), - [1002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(401), - [1004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 3, 0, 9), - [1006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 4, 0, 9), - [1008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 2, 0, 0), - [1010] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(401), - [1013] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(199), - [1016] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(905), - [1019] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1001), - [1022] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(38), - [1025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), - [1027] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1685), - [1030] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1755), - [1033] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1773), - [1036] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(349), - [1039] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2025), - [1042] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(483), - [1045] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1813), - [1048] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1815), - [1051] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1890), - [1054] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1767), - [1057] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1830), - [1060] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(402), - [1063] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(238), - [1066] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(899), - [1069] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1008), - [1072] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(34), - [1075] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1698), - [1078] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1699), - [1081] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1701), - [1084] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(368), - [1087] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2003), - [1090] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(467), - [1093] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1997), - [1096] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1994), - [1099] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1978), - [1102] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1750), - [1105] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1847), - [1108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(399), - [1110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1775), - [1112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1772), - [1114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2044), - [1116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1697), - [1118] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(399), - [1121] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1775), - [1124] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1772), - [1127] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2044), - [1130] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1697), - [1133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(409), - [1135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [1137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), - [1139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, 0, 27), - [1141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 27), - [1143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(380), - [1145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_seh_try_statement, 3, 0, 8), - [1147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_seh_try_statement, 3, 0, 8), - [1149] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_goto_statement, 3, 0, 29), - [1151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_goto_statement, 3, 0, 29), - [1153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 3, 0, 0), - [1155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 3, 0, 0), - [1157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 6, 0, 111), - [1159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 6, 0, 111), - [1161] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_seh_except_clause, 3, 0, 100), - [1163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_seh_except_clause, 3, 0, 100), - [1165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 6, 0, 76), - [1167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 6, 0, 76), - [1169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 5, 0, 91), - [1171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 5, 0, 91), - [1173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 5, 0, 90), - [1175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 5, 0, 90), - [1177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 3, 0, 31), - [1179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 3, 0, 31), - [1181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 4, 0, 64), - [1183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 4, 0, 64), - [1185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 3, 0, 35), - [1187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 3, 0, 35), - [1189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_seh_finally_clause, 2, 0, 8), - [1191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_seh_finally_clause, 2, 0, 8), - [1193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 1, 0, 0), - [1195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), - [1197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 2, 0, 0), - [1199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 2, 0, 0), - [1201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 1, 0, 0), - [1203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 1, 0, 0), - [1205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2, 0, 0), - [1207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2, 0, 0), - [1209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2, 0, 0), - [1211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2, 0, 0), - [1213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2, 0, 0), - [1215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2, 0, 0), - [1217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2, 0, 0), - [1219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2, 0, 0), - [1221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_statement, 2, 0, 0), - [1223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_statement, 2, 0, 0), - [1225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5, 0, 76), - [1227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5, 0, 76), - [1229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5, 0, 47), - [1231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5, 0, 47), - [1233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, 0, 81), - [1235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, 0, 81), - [1237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 4, 0, 47), - [1239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 4, 0, 47), - [1241] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 5, 0, 85), - [1243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 5, 0, 85), - [1245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 4, 0, 62), - [1247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 4, 0, 62), - [1249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_seh_leave_statement, 2, 0, 0), - [1251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_seh_leave_statement, 2, 0, 0), - [1253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2, 0, 0), - [1255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2, 0, 0), - [1257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 3, 0, 28), - [1259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 3, 0, 28), - [1261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 55), - [1263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 55), - [1265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, 0, 28), - [1267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, 0, 28), - [1269] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3, 0, 0), - [1271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3, 0, 0), - [1273] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_function_def, 4, 0, 38), - [1275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_function_def, 4, 0, 38), - [1277] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_function_definition, 4, 0, 66), - [1279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_function_definition, 4, 0, 66), - [1281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 3, 0, 0), - [1283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3, 0, 0), - [1285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__block_item, 1, 0, 2), - [1287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_item, 1, 0, 2), - [1289] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__block_item, 1, 0, 0), REDUCE(sym_statement, 1, 0, 0), - [1292] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__block_item, 1, 0, 0), REDUCE(sym_statement, 1, 0, 0), - [1295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 5, 0, 94), - [1297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 5, 0, 94), - [1299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call, 2, 0, 4), - [1301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call, 2, 0, 4), - [1303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__empty_declaration, 2, 0, 0), - [1305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__empty_declaration, 2, 0, 0), - [1307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_include, 3, 0, 16), - [1309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_include, 3, 0, 16), - [1311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_def, 3, 0, 17), - [1313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_def, 3, 0, 17), - [1315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 3, 0, 17), - [1317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 3, 0, 17), - [1319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call, 3, 0, 18), - [1321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call, 3, 0, 18), - [1323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_linkage_specification, 3, 0, 23), - [1325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_linkage_specification, 3, 0, 23), - [1327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 5, 0, 73), - [1329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 5, 0, 73), - [1331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 4, 0, 61), - [1333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 4, 0, 61), - [1335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_function_definition, 5, 0, 95), - [1337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_function_definition, 5, 0, 95), - [1339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 3, 0, 33), - [1341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 3, 0, 33), - [1343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_function_definition, 3, 0, 36), - [1345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_function_definition, 3, 0, 36), - [1347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 4, 0, 67), - [1349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 4, 0, 67), - [1351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_def, 4, 0, 39), - [1353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_def, 4, 0, 39), - [1355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 4, 0, 40), - [1357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 4, 0, 40), - [1359] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 4, 0, 41), - [1361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 4, 0, 41), - [1363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 4, 0, 17), - [1365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 4, 0, 17), - [1367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 2, 0, 0), - [1369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2, 0, 0), - [1371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 6, 0, 97), - [1373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 6, 0, 97), - [1375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_function_definition, 4, 0, 68), - [1377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_function_definition, 4, 0, 68), - [1379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_function_def, 5, 0, 71), - [1381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_function_def, 5, 0, 71), - [1383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 5, 0, 72), - [1385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 5, 0, 72), - [1387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 5, 0, 40), - [1389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 5, 0, 40), - [1391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(345), - [1393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(354), - [1395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(364), - [1397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(460), - [1399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sizeof_expression, 4, 0, 57), - [1401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(605), - [1403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), - [1405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof_expression, 4, 0, 57), - [1407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [1409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(591), - [1411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__top_level_expression_statement, 2, 0, 0), - [1413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__top_level_expression_statement, 2, 0, 0), - [1415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__top_level_item, 1, 0, 2), - [1417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__top_level_item, 1, 0, 2), - [1419] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__top_level_item, 1, 0, 0), REDUCE(sym__top_level_statement, 1, 0, 0), - [1422] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__top_level_item, 1, 0, 0), REDUCE(sym__top_level_statement, 1, 0, 0), - [1425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(600), - [1427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), - [1429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(594), - [1431] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(828), - [1434] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(386), - [1437] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(581), - [1440] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(581), - [1443] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(584), - [1446] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(238), - [1449] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1758), - [1452] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(34), - [1455] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1698), - [1458] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1699), - [1461] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(625), - [1464] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2015), - [1467] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1701), - [1470] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(368), - [1473] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2003), - [1476] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(467), - [1479] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1997), - [1482] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1994), - [1485] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1978), - [1488] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1750), - [1491] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1847), - [1494] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(617), - [1497] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(536), - [1500] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1977), - [1503] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1969), - [1506] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1964), - [1509] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1446), - [1512] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(663), - [1515] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1567), - [1518] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1513), - [1521] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(663), - [1524] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(667), - [1527] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(870), - [1530] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(199), - [1533] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1775), - [1536] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(615), - [1539] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1800), - [1542] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1772), - [1545] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2044), - [1548] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1697), - [1551] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1830), - [1554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(870), - [1556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), - [1558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(615), - [1560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1800), - [1562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(865), - [1564] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(865), - [1567] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(172), - [1570] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(24), - [1573] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1727), - [1576] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1710), - [1579] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(624), - [1582] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1837), - [1585] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1725), - [1588] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(351), - [1591] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2063), - [1594] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(499), - [1597] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1824), - [1600] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1921), - [1603] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1998), - [1606] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1706), - [1609] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1790), - [1612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(828), - [1614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(861), - [1616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(830), - [1618] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(861), - [1621] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(91), - [1624] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(28), - [1627] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1756), - [1630] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1726), - [1633] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(621), - [1636] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1834), - [1639] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1754), - [1642] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(344), - [1645] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2060), - [1648] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(495), - [1651] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1793), - [1654] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1785), - [1657] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1971), - [1660] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1718), - [1663] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1927), - [1666] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(830), - [1669] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(38), - [1672] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1685), - [1675] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1755), - [1678] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(576), - [1681] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2007), - [1684] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1773), - [1687] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(349), - [1690] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2025), - [1693] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(483), - [1696] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1813), - [1699] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1815), - [1702] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1890), - [1705] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1767), - [1708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_declaration, 4, 0, 0), - [1710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_declaration, 4, 0, 0), - [1712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_declaration, 3, 0, 0), - [1714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_declaration, 3, 0, 0), - [1716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(592), - [1718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), - [1720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(604), - [1722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(698), - [1724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(488), - [1726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1112), - [1728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1627), - [1730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(367), - [1732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_specifier, 1, 0, 1), - [1734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), - [1736] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 1), REDUCE(sym_expression, 1, 0, 0), SHIFT(999), - [1740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), - [1742] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_specifier, 1, 0, 1), REDUCE(sym_expression, 1, 0, 0), - [1745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 1), - [1747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(781), - [1749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(561), - [1751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [1753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [1755] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 1), REDUCE(sym_expression, 1, 0, 0), - [1758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [1760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [1762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [1764] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declaration_modifiers, 1, 0, 0), REDUCE(aux_sym_attributed_declarator_repeat1, 1, 0, 0), - [1767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 1, 0, 0), - [1769] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 1, 0, 0), - [1771] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_modifiers, 1, 0, 0), - [1773] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__declaration_modifiers, 1, 0, 0), REDUCE(aux_sym_attributed_declarator_repeat1, 1, 0, 0), - [1776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [1778] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 1), SHIFT(322), - [1781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(655), - [1783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [1785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(639), - [1787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(895), - [1789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), - [1791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), - [1793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [1795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), - [1797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1720), - [1799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(437), - [1801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(885), - [1803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(640), - [1805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [1807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(654), - [1809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(777), - [1811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2017), - [1813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1207), - [1815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(807), - [1817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1928), - [1819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(442), - [1821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1214), - [1823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1889), - [1825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1601), - [1827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(829), - [1829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef_in_field_declaration_list, 2, 0, 17), - [1831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(844), - [1833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(832), - [1835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(867), - [1837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(875), - [1839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(796), - [1841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(868), - [1843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(810), - [1845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(804), - [1847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef_in_field_declaration_list, 3, 0, 17), - [1849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(857), - [1851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 3, 0, 40), - [1853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(852), - [1855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4, 0, 40), - [1857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), - [1859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), - [1861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [1863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [1865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [1867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(821), - [1869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(733), - [1871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), - [1873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2024), - [1875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [1877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [1879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(438), - [1881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), - [1883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [1885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), - [1887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [1889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), - [1891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [1893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(433), - [1895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), - [1897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [1899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), - [1901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [1903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(436), - [1905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), - [1907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [1909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), - [1911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [1913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(434), - [1915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), - [1917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [1919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(431), - [1921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), - [1923] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(777), - [1926] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2017), - [1929] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1207), - [1932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), - [1934] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1928), - [1937] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1601), - [1940] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(703), - [1943] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(709), - [1946] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2048), - [1949] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2045), - [1952] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(597), - [1955] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1728), - [1958] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2037), - [1961] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(747), - [1964] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2035), - [1967] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(779), - [1970] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1564), - [1973] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1332), - [1976] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1491), - [1979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2018), - [1981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1210), - [1983] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_field_declaration_list, 1, 0, 0), - [1985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1982), - [1987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1589), - [1989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1992), - [1991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1213), - [1993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1868), - [1995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1644), - [1997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), - [1999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [2001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_field_declaration_list, 2, 0, 0), - [2003] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2018), - [2006] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1210), - [2009] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1982), - [2012] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1589), - [2015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(838), - [2017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1966), - [2019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), - [2021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), - [2023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1941), - [2025] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1992), - [2028] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1213), - [2031] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1868), - [2034] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1644), - [2037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), - [2039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [2041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [2043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [2045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [2047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [2049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [2051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(458), - [2053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenated_string, 2, 0, 0), - [2055] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenated_string, 2, 0, 0), - [2057] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(457), - [2060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), - [2062] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), - [2064] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1513), - [2067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(457), - [2069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenated_string, 3, 0, 0), - [2071] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenated_string, 3, 0, 0), - [2073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [2075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(601), - [2077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), - [2079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(555), - [2081] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3, 0, 0), - [2083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3, 0, 0), - [2085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(549), - [2087] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 2, 0, 0), - [2089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 2, 0, 0), - [2091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, 0, 84), - [2093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [2095] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 6, 0, 109), - [2097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 6, 0, 109), - [2099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, 0, 56), - [2101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 8, 0, 124), - [2103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 8, 0, 124), - [2105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 4, 0, 105), - [2107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [2109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), - [2111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [2113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), - [2115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [2117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [2119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 8, 0, 125), - [2121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 8, 0, 125), - [2123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 9, 0, 129), - [2125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 9, 0, 129), - [2127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), - [2129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), - [2131] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(703), - [2134] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(709), - [2137] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(2048), - [2140] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(2045), - [2143] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(597), - [2146] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(1728), - [2149] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(2037), - [2152] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(2035), - [2155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [2157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [2159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [2161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, 0, 40), - [2163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [2165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), - [2167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [2169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 5, 0, 87), - [2171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 5, 0, 87), - [2173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 7, 0, 120), - [2175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 7, 0, 120), - [2177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), - [2179] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 5, 0, 88), - [2181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 5, 0, 88), - [2183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(816), - [2185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [2187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), - [2189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 7, 0, 119), - [2191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 7, 0, 119), - [2193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 4, 0, 58), - [2195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 4, 0, 58), - [2197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [2199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [2201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [2203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 2, 0, 56), - [2205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [2207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 2, 0, 0), - [2209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 6, 0, 108), - [2211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 6, 0, 108), - [2213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [2215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), - [2217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), - [2219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), - [2221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(891), - [2223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [2225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), - [2227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), - [2229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), - [2231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), - [2233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), - [2235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), - [2237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), - [2239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), - [2241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), - [2243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [2245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(894), - [2247] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(777), - [2250] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(703), - [2253] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(709), - [2256] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(2048), - [2259] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(2045), - [2262] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(597), - [2265] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(1728), - [2268] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(2037), - [2271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), - [2273] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(747), - [2276] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(2035), - [2279] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(779), - [2282] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(1564), - [2285] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(1332), - [2288] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(1491), - [2291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [2293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [2295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_specifier, 1, 0, 0), - [2297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_specifier, 1, 0, 0), - [2299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [2301] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_specifier, 4, 0, 0), - [2303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_specifier, 4, 0, 0), - [2305] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_specifier, 5, 0, 0), - [2307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_specifier, 5, 0, 0), - [2309] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_specifier, 3, 0, 0), - [2311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_specifier, 3, 0, 0), - [2313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), - [2315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [2317] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), - [2319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), - [2321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(456), - [2323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__string, 1, 0, 0), - [2325] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__string, 1, 0, 0), - [2327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 12), - [2329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, 0, 12), - [2331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_literal_expression, 4, 0, 45), - [2333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_literal_expression, 4, 0, 45), - [2335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_alignof_expression, 4, 0, 57), - [2337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alignof_expression, 4, 0, 57), - [2339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 3, 0, 0), - [2341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 3, 0, 0), - [2343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 4, 0, 69), - [2345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 4, 0, 69), - [2347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_offsetof_expression, 6, 0, 106), - [2349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_offsetof_expression, 6, 0, 106), - [2351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null, 1, 0, 0), - [2353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null, 1, 0, 0), - [2355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, 0, 13), - [2357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, 0, 13), - [2359] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, 0, 37), - [2361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, 0, 37), - [2363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_expression, 9, 0, 0), - [2365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_expression, 9, 0, 0), - [2367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_char_literal, 3, 0, 0), - [2369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_char_literal, 3, 0, 0), - [2371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 2, 0, 0), - [2373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 2, 0, 0), - [2375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 5, 0, 0), - [2377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 5, 0, 0), - [2379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_expression, 8, 0, 0), - [2381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_expression, 8, 0, 0), - [2383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 4, 0, 0), - [2385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 4, 0, 0), - [2387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3, 0, 0), - [2389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3, 0, 0), - [2391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 5), - [2393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, 0, 5), - [2395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [2397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [2399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), - [2401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 30), - [2403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, 0, 30), - [2405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [2407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_expression, 4, 0, 45), - [2409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_expression, 4, 0, 45), - [2411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_expression, 2, 0, 5), - [2413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_expression, 2, 0, 5), - [2415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof_expression, 2, 0, 9), - [2417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sizeof_expression, 2, 0, 9), - [2419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4, 0, 0), - [2421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4, 0, 0), - [2423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 5), - [2425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, 0, 5), - [2427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 5, 0, 0), - [2429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 5, 0, 0), - [2431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2, 0, 0), - [2433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2, 0, 0), - [2435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, 0, 53), - [2437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, 0, 53), - [2439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [2441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1880), - [2443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, 0, 25), - [2445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, 0, 25), - [2447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2057), - [2449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 2, 0, 7), - [2451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 2, 0, 7), - [2453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1867), - [2455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_alignas_qualifier, 4, 0, 0), - [2457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alignas_qualifier, 4, 0, 0), - [2459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 2, 0, 7), - [2461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 2, 0, 7), - [2463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, 0, 25), - [2465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, 0, 25), - [2467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), - [2469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), - [2471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_declspec_modifier, 4, 0, 0), - [2473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_declspec_modifier, 4, 0, 0), - [2475] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, 0, 54), - [2477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, 0, 54), - [2479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1910), - [2481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 3, 0, 14), - [2483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 3, 0, 14), - [2485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 2, 0, 3), - [2487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 2, 0, 3), - [2489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_storage_class_specifier, 1, 0, 0), - [2491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_storage_class_specifier, 1, 0, 0), - [2493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 1, 0, 3), - [2495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 1, 0, 3), - [2497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, 0, 26), - [2499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, 0, 26), - [2501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2046), - [2503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 2, 0, 14), - [2505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 2, 0, 14), - [2507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 2, 0, 8), - [2509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 2, 0, 8), - [2511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1866), - [2513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, 0, 24), - [2515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, 0, 24), - [2517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2061), - [2519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 5, 0, 80), - [2521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 5, 0, 80), - [2523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1981), - [2525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, 0, 52), - [2527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, 0, 52), - [2529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1778), - [2531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 2, 0, 0), - [2533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 2, 0, 0), - [2535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, 0, 25), - [2537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, 0, 25), - [2539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1859), - [2541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, 0, 24), - [2543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, 0, 24), - [2545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1841), - [2547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 2, 0, 8), - [2549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 2, 0, 8), - [2551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, 0, 26), - [2553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, 0, 26), - [2555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2036), - [2557] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 3, 0, 0), - [2559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 3, 0, 0), - [2561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 5, 0, 54), - [2563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 5, 0, 54), - [2565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1975), - [2567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, 0, 7), - [2569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, 0, 7), - [2571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2064), - [2573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, 0, 52), - [2575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, 0, 52), - [2577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 5, 0, 53), - [2579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 5, 0, 53), - [2581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1985), - [2583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, 0, 26), - [2585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, 0, 26), - [2587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 5, 0, 52), - [2589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 5, 0, 52), - [2591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1988), - [2593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), - [2595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), - [2597] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(732), - [2600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_array_declarator_repeat1, 2, 0, 0), - [2602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_declarator_repeat1, 2, 0, 0), - [2604] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(821), - [2607] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(733), - [2610] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(2024), - [2613] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 6, 0, 80), - [2615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 6, 0, 80), - [2617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1899), - [2619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, 0, 8), - [2621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, 0, 8), - [2623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2042), - [2625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, 0, 24), - [2627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, 0, 24), - [2629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 9, 0, 54), - [2631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 9, 0, 54), - [2633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 6, 0, 8), - [2635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 6, 0, 8), - [2637] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 2, 0, 0), - [2639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 2, 0, 0), - [2641] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, 0, 7), - [2643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, 0, 7), - [2645] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 6, 0, 7), - [2647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 6, 0, 7), - [2649] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, 0, 8), - [2651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, 0, 8), - [2653] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, 0, 7), - [2655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, 0, 7), - [2657] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, 0, 8), - [2659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, 0, 8), - [2661] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_specifier, 1, 0, 0), - [2663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 0), - [2665] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(757), - [2668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), - [2670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), - [2672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(756), - [2674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(758), - [2676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 6, 0, 78), - [2678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 6, 0, 78), - [2680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 5, 0, 52), - [2682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 5, 0, 52), - [2684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 7, 0, 7), - [2686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 7, 0, 7), - [2688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 7, 0, 24), - [2690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 7, 0, 24), - [2692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 7, 0, 25), - [2694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 7, 0, 25), - [2696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, 0, 14), - [2698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 3, 0, 14), - [2700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(732), - [2702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, -1, 15), - [2704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 3, -1, 15), - [2706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 7, 0, 26), - [2708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 7, 0, 26), - [2710] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), - [2713] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), - [2716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, -1, 15), - [2718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, -1, 15), - [2720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(754), - [2722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 14), - [2724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, 0, 14), - [2726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(753), - [2728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 3, 0, 0), - [2730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 3, 0, 0), - [2732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 7, 0, 8), - [2734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 7, 0, 8), - [2736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, 0, 24), - [2738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, 0, 24), - [2740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 3), - [2742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, 0, 3), - [2744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, 0, 24), - [2746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, 0, 24), - [2748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, 0, 25), - [2750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, 0, 25), - [2752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, 0, 26), - [2754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, 0, 26), - [2756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 8, 0, 24), - [2758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 8, 0, 24), - [2760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_type_specifier, 4, -1, 59), - [2762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_type_specifier, 4, -1, 59), - [2764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 8, 0, 25), - [2766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 8, 0, 25), - [2768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 8, 0, 52), - [2770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 8, 0, 52), - [2772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 8, 0, 53), - [2774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 8, 0, 53), - [2776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 8, 0, 54), - [2778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 8, 0, 54), - [2780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 8, 0, 26), - [2782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 8, 0, 26), - [2784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 9, 0, 52), - [2786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 9, 0, 52), - [2788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 9, 0, 53), - [2790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 9, 0, 53), - [2792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 9, 0, 80), - [2794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 9, 0, 80), - [2796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 10, 0, 80), - [2798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 10, 0, 80), - [2800] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 1), SHIFT(999), - [2803] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 5, 0, 50), - [2805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 5, 0, 50), - [2807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(762), - [2809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 4, 0, 0), - [2811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 4, 0, 0), - [2813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, -1, 10), - [2815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, -1, 10), - [2817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(650), - [2819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(649), - [2821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, 0, 41), - [2823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, 0, 41), - [2825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [2827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(641), - [2829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(642), - [2831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), - [2833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), - [2835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(644), - [2837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(645), - [2839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(646), - [2841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), - [2843] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 2, 0, 42), - [2845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 2, 0, 42), - [2847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, 0, 30), - [2849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [2851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, 0, 30), - [2853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [2855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 4, 0, 70), - [2857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 4, 0, 70), - [2859] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, 0, 17), - [2861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, 0, 17), - [2863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, 0, 42), - [2865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, 0, 42), - [2867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, 0, 79), - [2869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, 0, 79), - [2871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [2873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 5, 0, 96), - [2875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 5, 0, 96), - [2877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [2879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, 0, 40), - [2881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, 0, 40), - [2883] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, 0, 17), - [2885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, 0, 17), - [2887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 4, 0, 79), - [2889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, 0, 79), - [2891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, 0, 72), - [2893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, 0, 72), - [2895] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, 0, 40), - [2897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, 0, 40), - [2899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, 0, 73), - [2901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, 0, 73), - [2903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 6, 0, 97), - [2905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 6, 0, 97), - [2907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(587), - [2909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), - [2911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [2913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 2, 0, 7), - [2915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 2, 0, 7), - [2917] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 2, 0, 7), SHIFT(2048), - [2920] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 2, 0, 7), SHIFT(2045), - [2923] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 2, 0, 7), SHIFT(597), - [2926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), - [2928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), - [2930] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, 0, 50), - [2932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, 0, 50), - [2934] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 4, 0, 50), SHIFT(2048), - [2937] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 4, 0, 50), SHIFT(2045), - [2940] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 4, 0, 50), SHIFT(597), - [2943] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_parameter_list, 2, 0, 0), REDUCE(sym__old_style_parameter_list, 2, 0, 0), - [2946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 2, 0, 0), - [2948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_parameter_list, 2, 0, 0), - [2950] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameter_list, 2, 0, 0), REDUCE(sym__old_style_parameter_list, 2, 0, 0), - [2953] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 2, 0, 0), - [2955] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_parameter_list, 3, 0, 0), REDUCE(sym__old_style_parameter_list, 3, 0, 0), - [2958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 3, 0, 0), - [2960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_parameter_list, 3, 0, 0), - [2962] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameter_list, 3, 0, 0), REDUCE(sym__old_style_parameter_list, 3, 0, 0), - [2965] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 3, 0, 0), - [2967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [2969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), - [2971] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 5, 0, 78), - [2973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 5, 0, 78), - [2975] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 5, 0, 78), SHIFT(2048), - [2978] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 5, 0, 78), SHIFT(2045), - [2981] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 5, 0, 78), SHIFT(597), - [2984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 2, 0, 8), - [2986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 2, 0, 8), - [2988] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 2, 0, 8), SHIFT(2048), - [2991] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 2, 0, 8), SHIFT(2045), - [2994] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 2, 0, 8), SHIFT(597), - [2997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, 0, 24), - [2999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, 0, 24), - [3001] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 3, 0, 24), SHIFT(2048), - [3004] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 3, 0, 24), SHIFT(2045), - [3007] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 3, 0, 24), SHIFT(597), - [3010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(589), - [3012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(607), - [3014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), - [3016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [3018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(611), - [3020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(616), - [3022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(619), - [3024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), - [3026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(631), - [3028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), - [3030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(551), - [3032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [3034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(567), - [3036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), - [3038] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_call_modifier, 1, 0, 0), - [3040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_call_modifier, 1, 0, 0), - [3042] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 1), SHIFT(1660), - [3045] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 1), SHIFT(904), - [3048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1387), - [3050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 2, 1, 0), - [3052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1024), - [3054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1020), - [3056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [3058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 1, 1, 0), - [3060] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 1), REDUCE(aux_sym__old_style_parameter_list_repeat1, 2, 0, 0), - [3063] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__declarator, 1, 0, 0), REDUCE(sym_type_specifier, 1, 0, 1), - [3066] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__declarator, 1, 0, 0), REDUCE(sym_type_specifier, 1, 0, 1), SHIFT(999), - [3070] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declarator, 1, 0, 0), REDUCE(sym_type_specifier, 1, 0, 1), - [3073] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_function_declarator, 2, 0, 34), - [3075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_function_declarator, 2, 0, 34), - [3077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1004), - [3079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_parameter_list, 3, 0, 0), - [3081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1006), - [3083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1005), - [3085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1007), - [3087] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_parameter_list, 4, 0, 0), - [3089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_parameter_list, 4, 0, 0), - [3091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [3093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(541), - [3095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(590), - [3097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(547), - [3099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(557), - [3101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), - [3103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(568), - [3105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), - [3107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(573), - [3109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2002), - [3111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [3113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [3115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(546), - [3117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [3119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(620), - [3121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), - [3123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(622), - [3125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), - [3127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), - [3129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(628), - [3131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), - [3133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(630), - [3135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), - [3137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(633), - [3139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [3141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [3143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [3145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1310), - [3147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), - [3149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), - [3151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1313), - [3153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1322), - [3155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [3157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 4, 0, 0), - [3159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 4, 0, 0), - [3161] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call_expression, 2, 0, 13), - [3163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call_expression, 2, 0, 13), - [3165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 3, 0, 0), - [3167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 3, 0, 0), - [3169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 2, 0, 0), - [3171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 2, 0, 0), - [3173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bitfield_clause, 2, 0, 0), - [3175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 3, 1, 0), - [3177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), - [3179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), - [3181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), - [3183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2035), - [3185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), - [3187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(583), - [3189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [3191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(582), - [3193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), - [3195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(577), - [3197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [3199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(572), - [3201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), - [3203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(570), - [3205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [3207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), - [3209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1298), - [3211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), - [3213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), - [3215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), - [3217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [3219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), - [3221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), - [3223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator, 3, 0, 77), - [3225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator, 3, 0, 77), - [3227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), - [3229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), - [3231] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(1024), - [3234] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(1020), - [3237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1155), - [3239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1138), - [3241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1135), - [3243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1637), - [3245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), - [3247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), - [3249] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(703), - [3252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(2035), - [3255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [3257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comma_expression, 3, 0, 44), - [3259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_unaligned_ptr_modifier, 1, 0, 0), - [3261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_unaligned_ptr_modifier, 1, 0, 0), - [3263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [3265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), - [3267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [3269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [3271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), - [3273] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_pointer_modifier, 1, 0, 0), - [3275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_pointer_modifier, 1, 0, 0), - [3277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), - [3279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), - [3281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), - [3283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), - [3285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 4, 0, 103), - [3287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(566), - [3289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), - [3291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(565), - [3293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(556), - [3295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [3297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [3299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_init_declarator, 3, 0, 63), - [3301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [3303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [3305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(550), - [3307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), - [3309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [3311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(553), - [3313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, 0, 83), - [3315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), - [3317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_pair, 3, 0, 114), - [3319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), - [3321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [3323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [3325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), - [3327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_pair, 3, 0, 115), - [3329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 5, 0, 116), - [3331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [3333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), - [3335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), - [3337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 4, 0, 104), - [3339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [3341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), - [3343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), - [3345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 4, 0, 0), - [3347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 4, 0, 102), - [3349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2, 0, 0), - [3351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [3353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [3355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [3357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [3359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [3361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [3363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), - [3365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), - [3367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), - [3369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), - [3371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, 0, 82), - [3373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), - [3375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 3, 0, 0), - [3377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [3379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [3381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), - [3383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), - [3385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [3387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [3389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), - [3391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), - [3393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [3395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), - [3397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [3399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [3401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [3403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [3405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 1, 0, 3), - [3407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, 0, 14), - [3409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, 0, 14), - [3411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, 0, 3), - [3413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2048), - [3415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2045), - [3417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [3419] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_enum_specifier, 2, 0, 7), SHIFT(1949), - [3422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(757), - [3424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1113), - [3426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_type, 3, 0, 14), - [3428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_type, 3, 0, 14), - [3430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_type, 1, 0, 3), - [3432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_type, 1, 0, 3), - [3434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_type, 2, 0, 14), - [3436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_type, 2, 0, 14), - [3438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_type, 2, 0, 3), - [3440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_type, 2, 0, 3), - [3442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1226), - [3444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator, 2, 0, 34), - [3446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator, 2, 0, 34), - [3448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1401), - [3450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declaration_declarator, 2, 0, 34), - [3452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__preproc_expression, 1, 0, 0), - [3454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), - [3456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__preproc_expression, 1, 0, 0), - [3458] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 14), SHIFT(1151), - [3461] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, -1, 15), SHIFT(1152), - [3464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1125), - [3466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), - [3468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), - [3470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1769), - [3472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), - [3474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1181), - [3476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), - [3478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), - [3480] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT(732), - [3484] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, -1, 10), SHIFT(732), - [3487] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 3), SHIFT(732), - [3490] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_specifier, 1, 0, 0), SHIFT(1133), - [3493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declaration_declarator, 3, 0, 34), - [3495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator, 3, 0, 34), - [3497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator, 3, 0, 34), - [3499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_declaration_declarator, 3, 0, 34), - [3501] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(1128), - [3504] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(1131), - [3507] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(1126), - [3510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), - [3512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), - [3514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), - [3516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), - [3518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), - [3520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), - [3522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), - [3524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), - [3526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1192), - [3528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), - [3530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), - [3532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1196), - [3534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), - [3536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1163), - [3538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), - [3540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1205), - [3542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), - [3544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), - [3546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), - [3548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), - [3550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), - [3552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1140), - [3554] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), - [3556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator, 4, 0, 34), - [3558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator, 4, 0, 34), - [3560] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, 0, 14), SHIFT(732), - [3563] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, -1, 15), SHIFT(732), - [3566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), - [3568] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_specifier, 1, 0, 1), SHIFT(1132), - [3571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), - [3573] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(1226), - [3576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_declarator_repeat1, 2, 0, 0), - [3578] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(2048), - [3581] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(2045), - [3584] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(597), - [3587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_declarator_repeat1, 2, 0, 0), - [3589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_binary_expression, 3, 0, 30), - [3591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_binary_expression, 3, 0, 30), - [3593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), - [3595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1149), - [3597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), - [3599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1732), - [3601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), - [3603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1184), - [3605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), - [3607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), - [3609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), - [3611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), - [3613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), - [3615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), - [3617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), - [3619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), - [3621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), - [3623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), - [3625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), - [3627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_argument_list_repeat1, 2, 0, 0), - [3629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), - [3631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_parenthesized_expression, 3, 0, 0), - [3633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_parenthesized_expression, 3, 0, 0), - [3635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), - [3637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_defined, 2, 0, 0), - [3639] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_defined, 2, 0, 0), - [3641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), - [3643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_unary_expression, 2, 0, 5), - [3645] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_unary_expression, 2, 0, 5), - [3647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), - [3649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), - [3651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), - [3653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), - [3655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), - [3657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), - [3659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_defined, 4, 0, 0), - [3661] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_defined, 4, 0, 0), - [3663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), - [3665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), - [3667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), - [3669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), - [3671] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(1696), - [3674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), - [3676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), - [3678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), - [3680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), - [3682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), - [3684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), - [3686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), - [3688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), - [3690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), - [3692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), - [3694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 1, 0, 42), - [3696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), - [3698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), - [3700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), - [3702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), - [3704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), - [3706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), - [3708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), - [3710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1171), - [3712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1218), - [3714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1177), - [3716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1193), - [3718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1198), - [3720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1172), - [3722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1174), - [3724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), - [3726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1189), - [3728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1182), - [3730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1168), - [3732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [3734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), - [3736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), - [3738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_declarator_repeat1, 1, 0, 0), - [3740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_declarator_repeat1, 1, 0, 0), - [3742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [3744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [3746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 4, 0, 0), - [3748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 4, 0, 0), - [3750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), - [3752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [3754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [3756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [3758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), - [3760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [3762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), - [3764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [3766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), - [3768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [3770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), - [3772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [3774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declaration_declarator, 1, 0, 22), - [3776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(435), - [3778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), - [3780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 2, 1, 32), - [3782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 4, 1, 89), - [3784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 1, 0, 0), - [3786] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 1, 0, 0), REDUCE(aux_sym_function_declarator_repeat1, 1, 0, 0), - [3789] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 1, 0, 0), - [3791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 3, 1, 60), - [3793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 5, 1, 110), - [3795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__field_declaration_declarator_repeat1, 2, 0, 32), - [3797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 2, 1, 32), - [3799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(432), - [3801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 4, 1, 89), - [3803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 3, 1, 60), - [3805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_field_declarator, 2, 0, 0), - [3807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_field_declarator, 2, 0, 0), - [3809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 5, 1, 110), - [3811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), - [3813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_declarators, 1, 0, 22), - [3815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), - [3817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), - [3819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), - [3821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1203), - [3823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), - [3825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list, 3, 0, 40), - [3827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), - [3829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list, 2, 0, 17), - [3831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__type_definition_declarators_repeat1, 2, 0, 32), - [3833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_type_declarator, 2, 0, 0), - [3835] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_type_declarator, 2, 0, 0), - [3837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declarator, 1, 0, 51), - [3839] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__field_declarator, 1, 0, 51), - [3841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 4, 0, 92), - [3843] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 4, 0, 92), - [3845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 4, 0, 22), - [3847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 4, 0, 22), - [3849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_field_declarator, 3, -10, 0), - [3851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_field_declarator, 3, -10, 0), - [3853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 5, 0, 112), - [3855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 5, 0, 112), - [3857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 3, 0, 22), - [3859] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 3, 0, 22), - [3861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_field_declarator, 4, -10, 0), - [3863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_field_declarator, 4, -10, 0), - [3865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_field_declarator, 2, 0, 34), - [3867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_field_declarator, 2, 0, 34), - [3869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declarator, 1, 0, 0), - [3871] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__field_declarator, 1, 0, 0), - [3873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type_declarator, 2, 0, 34), - [3875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type_declarator, 2, 0, 34), - [3877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 4, 1, 89), - [3879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(439), - [3881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), - [3883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1199), - [3885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2051), - [3887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), - [3889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1, 0, 1), - [3891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1, 0, 1), - [3893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), - [3895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1, 0, 21), - [3897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1, 0, 21), - [3899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 4, 0, 22), - [3901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 4, 0, 22), - [3903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 4, 0, 92), - [3905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 4, 0, 92), - [3907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type_declarator, 3, -10, 0), - [3909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type_declarator, 3, -10, 0), - [3911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type_declarator, 4, -10, 0), - [3913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type_declarator, 4, -10, 0), - [3915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1, 0, 0), - [3917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1, 0, 0), - [3919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), - [3921] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(2048), - [3924] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(2045), - [3927] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(597), - [3930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 3, 0, 22), - [3932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 3, 0, 22), - [3934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 5, 1, 110), - [3936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declaration_declarator, 4, 0, 34), - [3938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 2, 1, 32), - [3940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(699), - [3942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 3, 1, 60), - [3944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 5, 0, 112), - [3946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 5, 0, 112), - [3948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_declarator, 2, 0, 0), - [3950] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_declarator, 2, 0, 0), - [3952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), - [3954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1187), - [3956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), - [3958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), - [3960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), - [3962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), - [3964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1215), - [3966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2011), - [3968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list_no_comma, 2, 0, 17), - [3970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), - [3972] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enumerator_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1580), - [3975] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enumerator_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1212), - [3978] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enumerator_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1900), - [3981] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enumerator_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1550), - [3984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enumerator_list_repeat1, 2, 0, 0), - [3986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), - [3988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list_no_comma, 3, 0, 17), - [3990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list, 4, 0, 40), - [3992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list_no_comma, 4, 0, 40), - [3994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list, 3, 0, 17), - [3996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list_no_comma, 3, 0, 40), - [3998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), - [4000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), - [4002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1459), - [4004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_clobber_list, 1, 0, 0), - [4006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [4008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [4010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand_list, 1, 0, 0), - [4012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), - [4014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_declarator, 4, -10, 0), - [4016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_declarator, 4, -10, 0), - [4018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [4020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [4022] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_definition_declarators_repeat1, 2, 0, 65), SHIFT_REPEAT(1284), - [4025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__type_definition_declarators_repeat1, 2, 0, 65), - [4027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declaration_declarator, 2, 0, 48), - [4029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 5, 0, 112), - [4031] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 5, 0, 112), - [4033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declaration_declarator, 3, 0, 101), - [4035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_declarator, 3, -10, 0), - [4037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_declarator, 3, -10, 0), - [4039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 4, 0, 22), - [4041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 4, 0, 22), - [4043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand_list, 1, 0, 0), - [4045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), - [4047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [4049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [4051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [4053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 4, 0, 92), - [4055] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 4, 0, 92), - [4057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [4059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 3, 0, 22), - [4061] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 3, 0, 22), - [4063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [4065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declaration_declarator, 2, 0, 22), - [4067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [4069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [4071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [4073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [4075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declarator, 1, 0, 0), - [4077] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declarator, 1, 0, 0), - [4079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_declarators, 2, 0, 48), - [4081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [4083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [4085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [4087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [4089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [4091] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__field_declaration_declarator_repeat1, 2, 0, 65), SHIFT_REPEAT(1346), - [4094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__field_declaration_declarator_repeat1, 2, 0, 65), - [4096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_declarator, 1, 0, 0), - [4098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), - [4100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1642), - [4102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), - [4104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), - [4106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [4108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [4110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1573), - [4112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), - [4114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1619), - [4116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), - [4118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__field_declaration_declarator_repeat1, 3, 0, 32), - [4120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1650), - [4122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), - [4124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 2, 0, 35), - [4126] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1580), - [4129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_repeat1, 2, 0, 0), - [4131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_repeat1, 2, 0, 0), - [4133] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 2, 0, 0), SHIFT_REPEAT(1429), - [4136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 2, 0, 0), - [4138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 2, 0, 0), - [4140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator, 1, 0, 6), - [4142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator, 1, 0, 6), - [4144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [4146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), - [4148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), - [4150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), - [4152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 1, 0, 0), - [4154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), - [4156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 1, 0, 0), - [4158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [4160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), - [4162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2, 0, 0), SHIFT_REPEAT(612), - [4165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2, 0, 0), - [4167] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2, 0, 0), SHIFT_REPEAT(1941), - [4170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), - [4172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), - [4174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), - [4176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), - [4178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), - [4180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enumerator_list_repeat1, 2, 0, 0), - [4182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 3, 0, 17), - [4184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 3, 0, 17), - [4186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), - [4188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), - [4190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), - [4192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 5, 0, 73), - [4194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 5, 0, 73), - [4196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), - [4198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_expression_repeat1, 2, 0, 0), - [4200] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1514), - [4203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [4205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), - [4207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 4, 0, 17), - [4209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 4, 0, 17), - [4211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [4213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [4215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list, 5, 0, 40), - [4217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_enumerator_list, 5, 0, 40), - [4219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, 0, 46), - [4221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [4223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list, 5, 0, 72), - [4225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_enumerator_list, 5, 0, 72), - [4227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [4229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list, 4, 0, 40), - [4231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_enumerator_list, 4, 0, 40), - [4233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 2, 1, 32), - [4235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [4237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), - [4239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, 0, 19), - [4241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [4243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, 0, 43), - [4245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 4, 0, 41), - [4247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 4, 0, 41), - [4249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 4, 1, 89), - [4251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list, 6, 0, 97), - [4253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_enumerator_list, 6, 0, 97), - [4255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 4, 0, 75), - [4257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 3, 1, 60), - [4259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [4261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), - [4263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [4265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3, 0, 74), - [4267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3, 0, 22), - [4269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [4271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), - [4273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1581), - [4275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, 0, 98), - [4277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [4279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, 0, 92), - [4281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 3, 0, 93), - [4283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(701), - [4285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, 0, 22), - [4287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_parenthesized_declarator, 3, 0, 0), - [4289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), - [4291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 2, 0, 0), - [4293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(696), - [4295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enumerator_list, 1, 0, 0), - [4297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), - [4299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [4301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), - [4303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_parenthesized_declarator, 4, 0, 0), - [4305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, 0, 6), - [4307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), - [4309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__abstract_declarator, 1, 0, 0), - [4311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 5, 0, 112), - [4313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_function_declarator, 2, 0, 34), - [4315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, 0, 32), - [4317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3, 0, 0), - [4319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_function_declarator, 1, 0, 20), - [4321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [4323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1230), - [4325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1539), - [4327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enumerator_list, 2, 0, 0), - [4329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(464), - [4331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), - [4333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1532), - [4335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_qualifier, 1, 0, 0), - [4337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), - [4339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enumerator_list_no_comma, 1, 0, 0), - [4341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), - [4343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), - [4345] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_output_operand_list_repeat1, 2, 0, 117), SHIFT_REPEAT(1418), - [4348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_output_operand_list_repeat1, 2, 0, 117), - [4350] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_clobber_list_repeat1, 2, 0, 127), SHIFT_REPEAT(1417), - [4353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_clobber_list_repeat1, 2, 0, 127), - [4355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enumerator_list_no_comma, 2, 0, 0), - [4357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(825), - [4359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), - [4361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1543), - [4363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), - [4365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand_list, 3, 0, 107), - [4367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), - [4369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), - [4371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), - [4373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand_list, 3, 0, 107), - [4375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(826), - [4377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), - [4379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1521), - [4381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1940), - [4383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1901), - [4385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), - [4387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1526), - [4389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, 0, 49), - [4391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), - [4393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_clobber_list, 2, 0, 118), - [4395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_clobber_list, 3, 0, 122), - [4397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), - [4399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), - [4401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(462), - [4403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), - [4405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), - [4407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1185), - [4409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), - [4411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), - [4413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(672), - [4415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand_list, 2, 0, 86), - [4417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_char_literal_repeat1, 2, 0, 0), - [4419] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_char_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1539), - [4422] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_input_operand_list_repeat1, 2, 0, 117), SHIFT_REPEAT(1432), - [4425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_input_operand_list_repeat1, 2, 0, 117), - [4427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_declarator, 1, 0, 11), - [4429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), - [4431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), - [4433] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1543), - [4436] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1543), - [4439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [4441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [4443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand_list, 2, 0, 86), - [4445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [4447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [4449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), - [4451] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(463), - [4454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [4456] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1173), - [4459] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_params_repeat1, 2, 0, 0), SHIFT_REPEAT(1719), - [4462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_params_repeat1, 2, 0, 0), - [4464] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2, 0, 0), SHIFT_REPEAT(596), - [4467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2, 0, 0), - [4469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [4471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [4473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [4475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_designator, 2, 0, 99), - [4477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [4479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [4481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), - [4483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [4485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), - [4487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [4489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), - [4491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), - [4493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), - [4495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1535), - [4497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), - [4499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), - [4501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1537), - [4503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [4505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [4507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [4509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [4511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), - [4513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [4515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [4517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1146), - [4519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), - [4521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), - [4523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), - [4525] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__old_style_parameter_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1660), - [4528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__old_style_parameter_list_repeat1, 2, 0, 0), - [4530] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2, 0, 0), SHIFT_REPEAT(451), - [4533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [4535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_arg, 1, 0, 0), - [4537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1607), - [4539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_output_operand_list_repeat1, 2, 0, 86), - [4541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [4543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1511), - [4545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), - [4547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), - [4549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [4551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [4553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), - [4555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [4557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [4559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [4561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [4563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [4565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [4567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [4569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), - [4571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), - [4573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [4575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [4577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), - [4579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), - [4581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), - [4583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), - [4585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), - [4587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), - [4589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_arg, 2, 0, 0), - [4591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1664), - [4593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), - [4595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), - [4597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [4599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [4601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), - [4603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), - [4605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [4607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), - [4609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), - [4611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), - [4613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), - [4615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [4617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_designator, 3, 0, 0), - [4619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [4621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), - [4623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), - [4625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), - [4627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), - [4629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [4631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand, 4, 0, 121), - [4633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), - [4635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [4637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_input_operand_list_repeat1, 2, 0, 86), - [4639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [4641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), - [4643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_goto_list, 2, 0, 123), - [4645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [4647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [4649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [4651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [4653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), - [4655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), - [4657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), - [4659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [4661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_range_designator, 5, 0, 126), - [4663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), - [4665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [4667] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1010), - [4670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 2, 0, 0), - [4672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), - [4674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [4676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand, 4, 0, 121), - [4678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_clobber_list_repeat1, 2, 0, 118), - [4680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), - [4682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), - [4684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_goto_list, 3, 0, 128), - [4686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [4688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), - [4690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), - [4692] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_goto_list_repeat1, 2, 0, 130), SHIFT_REPEAT(1858), - [4695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_goto_list_repeat1, 2, 0, 130), - [4697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand, 7, 0, 131), - [4699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand, 7, 0, 131), - [4701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [4703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), - [4705] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(1996), - [4708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_specifier_repeat1, 2, 0, 0), - [4710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [4712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [4714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), - [4716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [4718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), - [4720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), - [4722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), - [4724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_arg_repeat1, 2, 0, 0), - [4726] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_arg_repeat1, 2, 0, 0), SHIFT_REPEAT(1664), - [4729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2056), - [4731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), - [4733] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, 0, 65), SHIFT_REPEAT(1154), - [4736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, 0, 65), - [4738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [4740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [4742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [4744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [4746] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(1689), - [4749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_declaration_repeat1, 2, 0, 0), - [4751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [4753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [4755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [4757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), - [4759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [4761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [4763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [4765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [4767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), - [4769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), - [4771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_params, 4, 0, 0), - [4773] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 4, 0, 0), - [4775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, 0, 6), - [4777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [4779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), - [4781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_params, 3, 0, 0), - [4783] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 3, 0, 0), - [4785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 1, 0, 0), - [4787] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2, 0, 0), REDUCE(aux_sym__old_style_parameter_list_repeat1, 2, 0, 0), - [4790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), - [4792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), - [4794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 4, 0, 113), - [4796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 4, 0, 49), - [4798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), - [4800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), - [4802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_params, 2, 0, 0), - [4804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 2, 0, 0), - [4806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), - [4808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_goto_list_repeat1, 2, 0, 123), - [4810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), - [4812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_goto_list, 1, 0, 0), - [4814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), - [4816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), - [4818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), - [4820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), - [4822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), - [4824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), - [4826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), - [4828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [4830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), - [4832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [4834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), - [4836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 5, 0, 97), - [4838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), - [4840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [4842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [4844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list_no_comma, 5, 0, 97), - [4846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [4848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list, 5, 0, 97), - [4850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [4852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [4854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), - [4856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), - [4858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [4860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), - [4862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), - [4864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [4866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_based_modifier, 2, 0, 0), - [4868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), - [4870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), - [4872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [4874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), - [4876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), - [4878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [4880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), - [4882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [4884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), - [4886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [4888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), - [4890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [4892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [4894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_field_declaration_list, 4, 0, 73), - [4896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4, 0, 72), - [4898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list_no_comma, 4, 0, 73), - [4900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [4902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [4904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), - [4906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list, 4, 0, 73), - [4908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [4910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [4912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list_no_comma, 4, 0, 72), - [4914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list, 4, 0, 72), - [4916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [4918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [4920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [4922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [4924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list_no_comma, 6, 0, 97), - [4926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [4928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), - [4930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), - [4932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [4934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [4936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [4938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [4940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [4942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [4944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [4946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [4948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [4950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [4952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), - [4954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), - [4956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), - [4958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [4960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [4962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), - [4964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), - [4966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), - [4968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), - [4970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), - [4972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), - [4974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), - [4976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [4978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), - [4980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), - [4982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), - [4984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), - [4986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), - [4988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [4990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), - [4992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), - [4994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [4996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2043), - [4998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), - [5000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [5002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [5004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), - [5006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [5008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [5010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), - [5012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), - [5014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), - [5016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), - [5018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), - [5020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [5022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), - [5024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), - [5026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), - [5028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2026), - [5030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), - [5032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [5034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), - [5036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), - [5038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), - [5040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), - [5042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), - [5044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), - [5046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), - [5048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_field_declaration_list, 3, 0, 41), - [5050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), - [5052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list_no_comma, 5, 0, 73), - [5054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list_no_comma, 3, 0, 41), - [5056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list, 3, 0, 41), - [5058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [5060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), - [5062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list_no_comma, 5, 0, 40), - [5064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [5066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [5068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2062), - [5070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [5072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list_no_comma, 5, 0, 72), - [5074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), - [5076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [5078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [5080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [5082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [5084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [5086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), - [5088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [5090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [5092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [5094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [5096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 5, 0, 97), - [5098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), - [5100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), - [5102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [5104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [5106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [5108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), - [5110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [5112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), - [5114] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [5116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), - [5118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), - [5120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [5122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), - [5124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [5126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), - [5128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), - [5130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [5132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [5134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), - [5136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef, 3, 0, 41), - [5138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), - [5140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [5142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), - [5144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), - [5146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), - [5148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), - [5150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), - [5152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [5154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), - [5156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [5158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [5160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [5162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), - [5164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [5166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), - [5168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [5170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [5172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), - [5174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), - [5176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [5178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [5180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), - [5182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [5184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), - [5186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), - [5188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), - [5190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), - [5192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), - [5194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [5196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), - [5198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), - [5200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), - [5202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [5204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), - [5206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), - [5208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1980), - [5210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), - [5212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list_no_comma, 4, 0, 17), - [5214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), - [5216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [5218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), - [5220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), - [5222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), - [5224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), - [5226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), - [5228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), - [5230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [5232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [5234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list_no_comma, 4, 0, 41), - [5236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [5238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), - [5240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), - [5242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [5244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [5246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), - [5248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), - [5250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [5252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), - [5254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), - [5256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [5258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), - [5260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [5262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), - [5264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), - [5266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [5268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), - [5270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), - [5272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), - [5274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), - [5276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef, 4, 0, 73), - [5278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 4, 0, 72), - [5280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), - [5282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [5284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [5286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [5288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), - [5290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), - [5292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [5294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [5296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [5298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), - [5300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), - [5302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [5304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), - [5306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), + [199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(393), + [201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif, 3, 0, 40), + [203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(136), + [205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(340), + [207] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(451), + [210] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1571), + [213] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2191), + [216] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1314), + [219] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), + [221] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2192), + [224] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1802), + [227] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(465), + [230] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(712), + [233] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(712), + [236] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(716), + [239] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(96), + [242] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1017), + [245] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1133), + [248] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(972), + [251] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2310), + [254] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2309), + [257] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(532), + [260] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2025), + [263] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2307), + [266] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(987), + [269] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(973), + [272] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(24), + [275] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(890), + [278] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(813), + [281] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(799), + [284] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2306), + [287] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(874), + [290] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1771), + [293] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1459), + [296] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1692), + [299] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1939), + [302] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1970), + [305] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(714), + [308] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2085), + [311] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1935), + [314] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(422), + [317] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2311), + [320] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(577), + [323] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2252), + [326] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2250), + [329] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2200), + [332] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1974), + [335] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2236), + [338] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(641), + [341] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(640), + [344] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2287), + [347] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2285), + [350] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2284), + [353] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1640), + [356] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(758), + [359] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1788), + [362] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1749), + [365] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(758), + [368] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(764), + [371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(452), + [373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1573), + [375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2102), + [377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1324), + [379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2103), + [381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1918), + [383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1018), + [387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1122), + [389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(969), + [391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1934), + [397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1937), + [399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(699), + [401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2208), + [403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1936), + [405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(430), + [407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2270), + [409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(575), + [411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2125), + [413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2127), + [415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2111), + [417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1994), + [419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2211), + [421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(455), + [435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1584), + [437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2258), + [439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1312), + [441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else, 1, 0, 0), + [443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2230), + [445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1821), + [447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1011), + [451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1127), + [453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(971), + [455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1969), + [459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1995), + [461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(665), + [463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2042), + [465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1971), + [467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(446), + [469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2314), + [471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(600), + [473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2082), + [475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2081), + [477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2235), + [479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1999), + [481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2069), + [483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else, 2, 0, 0), + [485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [495] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(455), + [498] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1584), + [501] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2258), + [504] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1312), + [507] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2230), + [510] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1821), + [513] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(203), + [516] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1011), + [519] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1127), + [522] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(971), + [525] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(35), + [528] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1969), + [531] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1995), + [534] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(665), + [537] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2042), + [540] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1971), + [543] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(446), + [546] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2314), + [549] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(600), + [552] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2082), + [555] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2081), + [558] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2235), + [561] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1999), + [564] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2069), + [567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [571] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(452), + [574] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1573), + [577] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2102), + [580] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1324), + [583] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2103), + [586] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1918), + [589] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(168), + [592] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1018), + [595] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1122), + [598] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(969), + [601] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(34), + [604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), + [606] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1934), + [609] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1937), + [612] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(699), + [615] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2208), + [618] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1936), + [621] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(430), + [624] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2270), + [627] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(575), + [630] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2125), + [633] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2127), + [636] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2111), + [639] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1994), + [642] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2211), + [645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), + [651] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(457), + [654] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1575), + [657] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2316), + [660] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1325), + [663] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2313), + [666] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1767), + [669] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(465), + [672] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(712), + [675] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(712), + [678] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(716), + [681] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1005), + [684] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1131), + [687] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(970), + [690] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2310), + [693] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2309), + [696] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(532), + [699] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2025), + [702] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2307), + [705] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(987), + [708] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(973), + [711] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(27), + [714] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(890), + [717] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(813), + [720] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(799), + [723] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2306), + [726] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(874), + [729] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1771), + [732] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1459), + [735] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1692), + [738] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2024), + [741] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2023), + [744] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(673), + [747] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2297), + [750] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2022), + [753] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(433), + [756] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2294), + [759] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(595), + [762] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2293), + [765] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2292), + [768] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2290), + [771] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(641), + [774] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(640), + [777] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2287), + [780] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2285), + [783] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2284), + [786] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1640), + [789] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1223), + [792] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1788), + [795] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1749), + [798] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1223), + [801] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(764), + [804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_translation_unit, 1, 0, 0), + [806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(448), + [808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 3, 0, 0), + [810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 3, 0, 9), + [812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 2, 0, 0), + [814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 4, 0, 9), + [816] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(448), + [819] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), + [821] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(465), + [824] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(712), + [827] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(712), + [830] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(716), + [833] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(96), + [836] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1017), + [839] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1133), + [842] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(813), + [845] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2310), + [848] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2309), + [851] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(532), + [854] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2025), + [857] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2307), + [860] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(24), + [863] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(890), + [866] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(799), + [869] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2306), + [872] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(874), + [875] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1771), + [878] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1459), + [881] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1692), + [884] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1939), + [887] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1970), + [890] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1935), + [893] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(422), + [896] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2311), + [899] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(577), + [902] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2252), + [905] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2250), + [908] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2200), + [911] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1974), + [914] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2236), + [917] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(641), + [920] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(640), + [923] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2287), + [926] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2285), + [929] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2284), + [932] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1640), + [935] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(758), + [938] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1788), + [941] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1749), + [944] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(758), + [947] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(764), + [950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(454), + [952] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(447), + [955] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(168), + [958] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1018), + [961] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1122), + [964] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(34), + [967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), + [969] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1934), + [972] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1937), + [975] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1936), + [978] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(430), + [981] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2270), + [984] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(575), + [987] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2125), + [990] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2127), + [993] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2111), + [996] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1994), + [999] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2211), + [1002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 3, 0, 0), + [1004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(453), + [1006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [1008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1941), + [1010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2157), + [1012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 3, 0, 9), + [1014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 2, 0, 0), + [1016] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(453), + [1019] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(178), + [1022] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1005), + [1025] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1131), + [1028] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(27), + [1031] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2024), + [1034] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2023), + [1037] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2022), + [1040] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(433), + [1043] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2294), + [1046] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(595), + [1049] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2293), + [1052] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2292), + [1055] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2290), + [1058] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1941), + [1061] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2157), + [1064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(447), + [1066] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(454), + [1069] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(203), + [1072] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1011), + [1075] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1127), + [1078] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(35), + [1081] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1969), + [1084] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1995), + [1087] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1971), + [1090] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(446), + [1093] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2314), + [1096] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(600), + [1099] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2082), + [1102] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2081), + [1105] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2235), + [1108] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1999), + [1111] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2069), + [1114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 4, 0, 9), + [1116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(456), + [1118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2008), + [1120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2007), + [1122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2291), + [1124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2020), + [1126] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(456), + [1129] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2008), + [1132] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2007), + [1135] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2291), + [1138] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2020), + [1141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(459), + [1143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), + [1145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), + [1147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, 0, 27), + [1149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 27), + [1151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(423), + [1153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 6, 0, 113), + [1155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 6, 0, 113), + [1157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 1, 0, 0), + [1159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 1, 0, 0), + [1161] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 5, 0, 91), + [1163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 5, 0, 91), + [1165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 5, 0, 90), + [1167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 5, 0, 90), + [1169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 5, 0, 85), + [1171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 5, 0, 85), + [1173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, 0, 81), + [1175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, 0, 81), + [1177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2, 0, 0), + [1179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2, 0, 0), + [1181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_seh_finally_clause, 2, 0, 8), + [1183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_seh_finally_clause, 2, 0, 8), + [1185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5, 0, 47), + [1187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5, 0, 47), + [1189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5, 0, 76), + [1191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5, 0, 76), + [1193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 4, 0, 64), + [1195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 4, 0, 64), + [1197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 4, 0, 62), + [1199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 4, 0, 62), + [1201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 3, 0, 0), + [1203] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 3, 0, 0), + [1205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 55), + [1207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 55), + [1209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_seh_try_statement, 3, 0, 8), + [1211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_seh_try_statement, 3, 0, 8), + [1213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 4, 0, 47), + [1215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 4, 0, 47), + [1217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 1, 0, 0), + [1219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), + [1221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 2, 0, 0), + [1223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 2, 0, 0), + [1225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 3, 0, 35), + [1227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 3, 0, 35), + [1229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2, 0, 0), + [1231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2, 0, 0), + [1233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 3, 0, 31), + [1235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 3, 0, 31), + [1237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_goto_statement, 3, 0, 29), + [1239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_goto_statement, 3, 0, 29), + [1241] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 6, 0, 76), + [1243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 6, 0, 76), + [1245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2, 0, 0), + [1247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2, 0, 0), + [1249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_seh_except_clause, 3, 0, 102), + [1251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_seh_except_clause, 3, 0, 102), + [1253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 6, 0, 114), + [1255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 6, 0, 114), + [1257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2, 0, 0), + [1259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2, 0, 0), + [1261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 3, 0, 28), + [1263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 3, 0, 28), + [1265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_statement, 2, 0, 0), + [1267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_statement, 2, 0, 0), + [1269] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, 0, 28), + [1271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, 0, 28), + [1273] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 7, 0, 126), + [1275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 7, 0, 126), + [1277] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3, 0, 0), + [1279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3, 0, 0), + [1281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_seh_leave_statement, 2, 0, 0), + [1283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_seh_leave_statement, 2, 0, 0), + [1285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2, 0, 0), + [1287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2, 0, 0), + [1289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_function_definition, 5, 0, 95), + [1291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_function_definition, 5, 0, 95), + [1293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_function_definition, 6, 0, 118), + [1295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_function_definition, 6, 0, 118), + [1297] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__empty_declaration, 2, 0, 0), + [1299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__empty_declaration, 2, 0, 0), + [1301] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_include, 3, 0, 16), + [1303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_include, 3, 0, 16), + [1305] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_def, 3, 0, 17), + [1307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_def, 3, 0, 17), + [1309] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 3, 0, 17), + [1311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 3, 0, 17), + [1313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call, 3, 0, 18), + [1315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call, 3, 0, 18), + [1317] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_linkage_specification, 3, 0, 23), + [1319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_linkage_specification, 3, 0, 23), + [1321] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 4, 0, 68), + [1323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 4, 0, 68), + [1325] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_function_definition, 4, 0, 67), + [1327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_function_definition, 4, 0, 67), + [1329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 6, 0, 117), + [1331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 6, 0, 117), + [1333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_function_def, 5, 0, 71), + [1335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_function_def, 5, 0, 71), + [1337] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 3, 0, 33), + [1339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 3, 0, 33), + [1341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 5, 0, 72), + [1343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 5, 0, 72), + [1345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 5, 0, 40), + [1347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 5, 0, 40), + [1349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 5, 0, 73), + [1351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 5, 0, 73), + [1353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_function_definition, 5, 0, 97), + [1355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_function_definition, 5, 0, 97), + [1357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_function_definition, 3, 0, 36), + [1359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_function_definition, 3, 0, 36), + [1361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 6, 0, 99), + [1363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 6, 0, 99), + [1365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_function_def, 4, 0, 38), + [1367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_function_def, 4, 0, 38), + [1369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_def, 4, 0, 39), + [1371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_def, 4, 0, 39), + [1373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 4, 0, 40), + [1375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 4, 0, 40), + [1377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 4, 0, 41), + [1379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 4, 0, 41), + [1381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 4, 0, 17), + [1383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 4, 0, 17), + [1385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 3, 0, 0), + [1387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3, 0, 0), + [1389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 2, 0, 0), + [1391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2, 0, 0), + [1393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call, 2, 0, 4), + [1395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call, 2, 0, 4), + [1397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__block_item, 1, 0, 2), + [1399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_item, 1, 0, 2), + [1401] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__block_item, 1, 0, 0), REDUCE(sym_statement, 1, 0, 0), + [1404] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__block_item, 1, 0, 0), REDUCE(sym_statement, 1, 0, 0), + [1407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 4, 0, 61), + [1409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 4, 0, 61), + [1411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 5, 0, 96), + [1413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 5, 0, 96), + [1415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 5, 0, 92), + [1417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 5, 0, 92), + [1419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_function_definition, 4, 0, 66), + [1421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_function_definition, 4, 0, 66), + [1423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(412), + [1425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(416), + [1427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(440), + [1429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(523), + [1431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sizeof_expression, 4, 0, 57), + [1433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(697), + [1435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [1437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof_expression, 4, 0, 57), + [1439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [1441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(685), + [1443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__top_level_expression_statement, 2, 0, 0), + [1445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__top_level_expression_statement, 2, 0, 0), + [1447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__top_level_item, 1, 0, 2), + [1449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__top_level_item, 1, 0, 2), + [1451] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__top_level_item, 1, 0, 0), REDUCE(sym__top_level_statement, 1, 0, 0), + [1454] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__top_level_item, 1, 0, 0), REDUCE(sym__top_level_statement, 1, 0, 0), + [1457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(719), + [1459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [1461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(741), + [1463] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(978), + [1466] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(465), + [1469] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(712), + [1472] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(712), + [1475] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(716), + [1478] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(168), + [1481] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1940), + [1484] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(27), + [1487] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2008), + [1490] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2023), + [1493] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(706), + [1496] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2261), + [1499] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2007), + [1502] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(433), + [1505] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2291), + [1508] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(595), + [1511] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2293), + [1514] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2292), + [1517] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2290), + [1520] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2020), + [1523] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2211), + [1526] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(641), + [1529] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(640), + [1532] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2287), + [1535] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2285), + [1538] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2284), + [1541] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1640), + [1544] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(758), + [1547] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1788), + [1550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1749), + [1553] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(758), + [1556] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(764), + [1559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(981), + [1561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1940), + [1563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(976), + [1565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(979), + [1567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(978), + [1569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(706), + [1571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2261), + [1573] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(975), + [1576] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(96), + [1579] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(24), + [1582] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1939), + [1585] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1970), + [1588] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(714), + [1591] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2085), + [1594] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1935), + [1597] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(422), + [1600] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2311), + [1603] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(577), + [1606] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2252), + [1609] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2250), + [1612] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2200), + [1615] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1974), + [1618] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2236), + [1621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(975), + [1623] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(976), + [1626] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(34), + [1629] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1934), + [1632] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1937), + [1635] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(699), + [1638] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2208), + [1641] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1936), + [1644] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(430), + [1647] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2270), + [1650] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(575), + [1653] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2125), + [1656] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2127), + [1659] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2111), + [1662] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1994), + [1665] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(979), + [1668] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(203), + [1671] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(35), + [1674] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1969), + [1677] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1995), + [1680] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(665), + [1683] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2042), + [1686] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1971), + [1689] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(446), + [1692] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2314), + [1695] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(600), + [1698] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2082), + [1701] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2081), + [1704] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2235), + [1707] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1999), + [1710] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2069), + [1713] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_declaration, 3, 0, 0), + [1715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_declaration, 3, 0, 0), + [1717] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(981), + [1720] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(178), + [1723] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2024), + [1726] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(673), + [1729] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2297), + [1732] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2022), + [1735] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2294), + [1738] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1941), + [1741] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2157), + [1744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_declaration, 4, 0, 0), + [1746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_declaration, 4, 0, 0), + [1748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_specifier, 1, 0, 1), + [1750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), + [1752] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 1), REDUCE(sym_expression, 1, 0, 0), SHIFT(1132), + [1756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), + [1758] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_specifier, 1, 0, 1), REDUCE(sym_expression, 1, 0, 0), + [1761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 1), + [1763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(885), + [1765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(651), + [1767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [1769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [1771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [1773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(811), + [1775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(728), + [1777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [1779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(666), + [1781] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 1), REDUCE(sym_expression, 1, 0, 0), + [1784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [1786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [1788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), + [1790] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 1), SHIFT(387), + [1793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(445), + [1795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(546), + [1797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1246), + [1799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1927), + [1801] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declaration_modifiers, 1, 0, 0), REDUCE(aux_sym_attributed_declarator_repeat1, 1, 0, 0), + [1804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 1, 0, 0), + [1806] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 1, 0, 0), + [1808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_modifiers, 1, 0, 0), + [1810] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__declaration_modifiers, 1, 0, 0), REDUCE(aux_sym_attributed_declarator_repeat1, 1, 0, 0), + [1813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1001), + [1815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2262), + [1817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1315), + [1819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(931), + [1821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2151), + [1823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(497), + [1825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1344), + [1827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2107), + [1829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1862), + [1831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), + [1833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), + [1835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1965), + [1837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(935), + [1839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(850), + [1841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(945), + [1843] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4, 0, 40), + [1845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(938), + [1847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(952), + [1849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef_in_field_declaration_list, 2, 0, 17), + [1851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(926), + [1853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(948), + [1855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 3, 0, 40), + [1857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef_in_field_declaration_list, 3, 0, 17), + [1859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(843), + [1861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(886), + [1863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(859), + [1865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(949), + [1867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(998), + [1869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1981), + [1871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), + [1873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [1875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), + [1877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(507), + [1879] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1001), + [1882] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2262), + [1885] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1315), + [1888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), + [1890] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2151), + [1893] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1862), + [1896] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1286), + [1899] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1100), + [1902] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(799), + [1905] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(813), + [1908] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2310), + [1911] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2309), + [1914] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(532), + [1917] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1968), + [1920] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2307), + [1923] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1965), + [1926] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(890), + [1929] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2306), + [1932] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(874), + [1935] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1771), + [1938] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1459), + [1941] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1692), + [1944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(717), + [1946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), + [1948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(725), + [1950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2263), + [1952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1297), + [1954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_field_declaration_list, 2, 0, 0), + [1956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2213), + [1958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1920), + [1960] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2263), + [1963] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1297), + [1966] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2213), + [1969] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1920), + [1972] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2229), + [1975] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1342), + [1978] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2068), + [1981] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1892), + [1984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), + [1986] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_field_declaration_list, 1, 0, 0), + [1988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2229), + [1990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1342), + [1992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2068), + [1994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1892), + [1996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [1998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), + [2000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(992), + [2002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(636), + [2004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [2006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(695), + [2008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(870), + [2010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [2012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), + [2014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [2016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [2018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [2020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(965), + [2022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(511), + [2024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), + [2026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2269), + [2028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [2030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [2032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(505), + [2034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), + [2036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), + [2038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(906), + [2040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), + [2042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), + [2044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), + [2046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), + [2048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), + [2050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), + [2052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(504), + [2054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), + [2056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [2058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(510), + [2060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), + [2062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [2064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(506), + [2066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), + [2068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [2070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), + [2072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [2074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), + [2076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(977), + [2078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), + [2080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [2082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [2084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2194), + [2086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [2088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [2090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [2092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [2094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [2096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [2098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(521), + [2100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenated_string, 2, 0, 0), + [2102] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenated_string, 2, 0, 0), + [2104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(522), + [2106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenated_string, 3, 0, 0), + [2108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenated_string, 3, 0, 0), + [2110] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(522), + [2113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), + [2115] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), + [2117] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1749), + [2120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), + [2122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), + [2124] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(799), + [2127] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(813), + [2130] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(2310), + [2133] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(2309), + [2136] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(532), + [2139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(1968), + [2142] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(2307), + [2145] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(2306), + [2148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3, 0, 0), + [2150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3, 0, 0), + [2152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [2154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(645), + [2156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), + [2158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(708), + [2160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 2, 0, 0), + [2162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 2, 0, 0), + [2164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_specifier, 4, 0, 0), + [2166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_specifier, 4, 0, 0), + [2168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_specifier, 3, 0, 0), + [2170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_specifier, 3, 0, 0), + [2172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_specifier, 5, 0, 0), + [2174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_specifier, 5, 0, 0), + [2176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_specifier, 1, 0, 0), + [2178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_specifier, 1, 0, 0), + [2180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 5, 0, 87), + [2182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 5, 0, 87), + [2184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 5, 0, 88), + [2186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 5, 0, 88), + [2188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(668), + [2190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 8, 0, 131), + [2192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 8, 0, 131), + [2194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 6, 0, 110), + [2196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 6, 0, 110), + [2198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 6, 0, 111), + [2200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 6, 0, 111), + [2202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 8, 0, 132), + [2204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 8, 0, 132), + [2206] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 9, 0, 136), + [2208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 9, 0, 136), + [2210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 4, 0, 58), + [2212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 4, 0, 58), + [2214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 7, 0, 124), + [2216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 7, 0, 124), + [2218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 7, 0, 125), + [2220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 7, 0, 125), + [2222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [2224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1334), + [2226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_invocation, 2, 0, 34), + [2228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator, 2, 0, 34), + [2230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_invocation, 2, 0, 34), + [2232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator, 2, 0, 34), + [2234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [2236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(994), + [2238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), + [2240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [2242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [2244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [2246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), + [2248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), + [2250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [2252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 2, 0, 0), + [2254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 2, 0, 56), + [2256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [2258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [2260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 4, 0, 107), + [2262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [2264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), + [2266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [2268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), + [2270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [2272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(929), + [2274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [2276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [2278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [2280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [2282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [2284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [2286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [2288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [2290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [2292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), + [2294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), + [2296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, 0, 56), + [2298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, 0, 84), + [2300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, 0, 40), + [2302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(999), + [2304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), + [2306] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(870), + [2309] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(799), + [2312] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(813), + [2315] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(2310), + [2318] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(2309), + [2321] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(532), + [2324] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(1968), + [2327] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(2307), + [2330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), + [2332] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(890), + [2335] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(2306), + [2338] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(874), + [2341] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(1771), + [2344] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(1459), + [2347] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(1692), + [2350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), + [2352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), + [2354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), + [2356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), + [2358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), + [2360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), + [2362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), + [2364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), + [2366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), + [2368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 3, 0, 0), + [2370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 3, 0, 0), + [2372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [2374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [2376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [2378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [2380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(520), + [2382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__string, 1, 0, 0), + [2384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__string, 1, 0, 0), + [2386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [2388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 2, 0, 0), + [2390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 2, 0, 0), + [2392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [2394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 4, 0, 0), + [2396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 4, 0, 0), + [2398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [2400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [2402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 2, 0, 7), + [2404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 2, 0, 7), + [2406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [2408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2074), + [2410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_expression, 8, 0, 0), + [2412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_expression, 8, 0, 0), + [2414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 5, 0, 0), + [2416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 5, 0, 0), + [2418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 2, 0, 0), + [2420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 2, 0, 0), + [2422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 4, 0, 69), + [2424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 4, 0, 69), + [2426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, 0, 37), + [2428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, 0, 37), + [2430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_char_literal, 3, 0, 0), + [2432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_char_literal, 3, 0, 0), + [2434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 3, 0, 0), + [2436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 3, 0, 0), + [2438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_literal_expression, 4, 0, 45), + [2440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_literal_expression, 4, 0, 45), + [2442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 4, 0, 0), + [2444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 4, 0, 0), + [2446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, 0, 53), + [2448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, 0, 53), + [2450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2075), + [2452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null, 1, 0, 0), + [2454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null, 1, 0, 0), + [2456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, 0, 13), + [2458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, 0, 13), + [2460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, 0, 25), + [2462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, 0, 25), + [2464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2282), + [2466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_alignof_expression, 4, 0, 57), + [2468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alignof_expression, 4, 0, 57), + [2470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 12), + [2472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, 0, 12), + [2474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_offsetof_expression, 6, 0, 108), + [2476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_offsetof_expression, 6, 0, 108), + [2478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_expression, 9, 0, 0), + [2480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_expression, 9, 0, 0), + [2482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_expression, 4, 0, 45), + [2484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_expression, 4, 0, 45), + [2486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [2488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [2490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), + [2492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2160), + [2494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_alignas_qualifier, 4, 0, 0), + [2496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alignas_qualifier, 4, 0, 0), + [2498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 5, 0, 0), + [2500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 5, 0, 0), + [2502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_expression, 2, 0, 5), + [2504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_expression, 2, 0, 5), + [2506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof_expression, 2, 0, 9), + [2508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sizeof_expression, 2, 0, 9), + [2510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 5), + [2512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, 0, 5), + [2514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, 0, 25), + [2516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, 0, 25), + [2518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 5), + [2520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, 0, 5), + [2522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_declspec_modifier, 4, 0, 0), + [2524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_declspec_modifier, 4, 0, 0), + [2526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3, 0, 0), + [2528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3, 0, 0), + [2530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 2, 0, 7), + [2532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 2, 0, 7), + [2534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2, 0, 0), + [2536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2, 0, 0), + [2538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4, 0, 0), + [2540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4, 0, 0), + [2542] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), + [2544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), + [2546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 30), + [2548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, 0, 30), + [2550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, 0, 52), + [2552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, 0, 52), + [2554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2090), + [2556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, 0, 26), + [2558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, 0, 26), + [2560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2283), + [2562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 1, 0, 3), + [2564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 1, 0, 3), + [2566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 2, 0, 8), + [2568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 2, 0, 8), + [2570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2078), + [2572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 3, 0, 14), + [2574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 3, 0, 14), + [2576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 2, 0, 3), + [2578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 2, 0, 3), + [2580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, 0, 54), + [2582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, 0, 54), + [2584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2070), + [2586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_storage_class_specifier, 1, 0, 0), + [2588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_storage_class_specifier, 1, 0, 0), + [2590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 5, 0, 80), + [2592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 5, 0, 80), + [2594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2132), + [2596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 2, 0, 14), + [2598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 2, 0, 14), + [2600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, 0, 24), + [2602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, 0, 24), + [2604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2279), + [2606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 5, 0, 52), + [2608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 5, 0, 52), + [2610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2129), + [2612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), + [2614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), + [2616] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(819), + [2619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, 0, 24), + [2621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, 0, 24), + [2623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2092), + [2625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 3, 0, 0), + [2627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 3, 0, 0), + [2629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, 0, 52), + [2631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, 0, 52), + [2633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 5, 0, 53), + [2635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 5, 0, 53), + [2637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2131), + [2639] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 5, 0, 54), + [2641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 5, 0, 54), + [2643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2134), + [2645] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, 0, 26), + [2647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, 0, 26), + [2649] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, 0, 24), + [2651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, 0, 24), + [2653] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 6, 0, 80), + [2655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 6, 0, 80), + [2657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2204), + [2659] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, 0, 8), + [2661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, 0, 8), + [2663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2289), + [2665] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 2, 0, 8), + [2667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 2, 0, 8), + [2669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, 0, 7), + [2671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, 0, 7), + [2673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2275), + [2675] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 2, 0, 0), + [2677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 2, 0, 0), + [2679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, 0, 26), + [2681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, 0, 26), + [2683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2065), + [2685] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, 0, 25), + [2687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, 0, 25), + [2689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2091), + [2691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 7, 0, 7), + [2693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 7, 0, 7), + [2695] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 7, 0, 24), + [2697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 7, 0, 24), + [2699] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, 0, 24), + [2701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, 0, 24), + [2703] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, 0, 8), + [2705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, 0, 8), + [2707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, 0, 14), + [2709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 3, 0, 14), + [2711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(819), + [2713] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 3), + [2715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, 0, 3), + [2717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, 0, 25), + [2719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, 0, 25), + [2721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, 0, 7), + [2723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, 0, 7), + [2725] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 5, 0, 52), + [2727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 5, 0, 52), + [2729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, 0, 17), + [2731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, 0, 17), + [2733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 8, 0, 26), + [2735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 8, 0, 26), + [2737] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 9, 0, 80), + [2739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 9, 0, 80), + [2741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 9, 0, 53), + [2743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 9, 0, 53), + [2745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 2, 0, 0), + [2747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 2, 0, 0), + [2749] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 8, 0, 54), + [2751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 8, 0, 54), + [2753] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, 0, 17), + [2755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, 0, 17), + [2757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, -1, 15), + [2759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 3, -1, 15), + [2761] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 8, 0, 53), + [2763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 8, 0, 53), + [2765] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 8, 0, 52), + [2767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 8, 0, 52), + [2769] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, 0, 8), + [2771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, 0, 8), + [2773] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, 0, 7), + [2775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, 0, 7), + [2777] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 9, 0, 52), + [2779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 9, 0, 52), + [2781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 8, 0, 25), + [2783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 8, 0, 25), + [2785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, 0, 40), + [2787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, 0, 40), + [2789] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 8, 0, 24), + [2791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 8, 0, 24), + [2793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, 0, 42), + [2795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, 0, 42), + [2797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, 0, 26), + [2799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, 0, 26), + [2801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 2, 0, 42), + [2803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 2, 0, 42), + [2805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, 0, 79), + [2807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, 0, 79), + [2809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, 0, 24), + [2811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, 0, 24), + [2813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 4, 0, 0), + [2815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 4, 0, 0), + [2817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 7, 0, 25), + [2819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 7, 0, 25), + [2821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 5, 0, 50), + [2823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 5, 0, 50), + [2825] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 1), SHIFT(1132), + [2828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 6, 0, 8), + [2830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 6, 0, 8), + [2832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 6, 0, 99), + [2834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 6, 0, 99), + [2836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_specifier, 1, 0, 0), + [2838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 0), + [2840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(839), + [2842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 6, 0, 7), + [2844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 6, 0, 7), + [2846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 6, 0, 78), + [2848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 6, 0, 78), + [2850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 3, 0, 0), + [2852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 3, 0, 0), + [2854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 9, 0, 54), + [2856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 9, 0, 54), + [2858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 14), + [2860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, 0, 14), + [2862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(838), + [2864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, 0, 73), + [2866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, 0, 73), + [2868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, -1, 15), + [2870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, -1, 15), + [2872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(852), + [2874] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), + [2877] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), + [2880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_type_specifier, 4, -1, 59), + [2882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_type_specifier, 4, -1, 59), + [2884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, -1, 10), + [2886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, -1, 10), + [2888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, 0, 40), + [2890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, 0, 40), + [2892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, 0, 41), + [2894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, 0, 41), + [2896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, 0, 72), + [2898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, 0, 72), + [2900] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(882), + [2903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), + [2905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), + [2907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(883), + [2909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(879), + [2911] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 7, 0, 8), + [2913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 7, 0, 8), + [2915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 7, 0, 26), + [2917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 7, 0, 26), + [2919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 4, 0, 79), + [2921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, 0, 79), + [2923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 10, 0, 80), + [2925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 10, 0, 80), + [2927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [2929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [2931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [2933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [2935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 2, 0, 7), + [2937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 2, 0, 7), + [2939] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 2, 0, 7), SHIFT(2310), + [2942] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 2, 0, 7), SHIFT(2309), + [2945] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 2, 0, 7), SHIFT(532), + [2948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), + [2950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2066), + [2952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_array_declarator_repeat1, 2, 0, 0), + [2954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_declarator_repeat1, 2, 0, 0), + [2956] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(965), + [2959] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(906), + [2962] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(2269), + [2965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(679), + [2967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(704), + [2969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(746), + [2971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [2973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(724), + [2975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [2977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(686), + [2979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 4, 0, 70), + [2981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [2983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), + [2985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(749), + [2987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(747), + [2989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 4, 0, 70), + [2991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [2993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, 0, 30), + [2995] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, 0, 30), + [2997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 5, 0, 98), + [2999] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 5, 0, 98), + [3001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, 0, 50), + [3003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, 0, 50), + [3005] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 4, 0, 50), SHIFT(2310), + [3008] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 4, 0, 50), SHIFT(2309), + [3011] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 4, 0, 50), SHIFT(532), + [3014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(669), + [3016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [3018] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 2, 0, 8), + [3020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 2, 0, 8), + [3022] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 2, 0, 8), SHIFT(2310), + [3025] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 2, 0, 8), SHIFT(2309), + [3028] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 2, 0, 8), SHIFT(532), + [3031] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_parameter_list, 3, 0, 0), REDUCE(sym__old_style_parameter_list, 3, 0, 0), + [3034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_parameter_list, 3, 0, 0), + [3036] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameter_list, 3, 0, 0), REDUCE(sym__old_style_parameter_list, 3, 0, 0), + [3039] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_parameter_list, 2, 0, 0), REDUCE(sym__old_style_parameter_list, 2, 0, 0), + [3042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_parameter_list, 2, 0, 0), + [3044] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameter_list, 2, 0, 0), REDUCE(sym__old_style_parameter_list, 2, 0, 0), + [3047] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, 0, 24), + [3049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, 0, 24), + [3051] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 3, 0, 24), SHIFT(2310), + [3054] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 3, 0, 24), SHIFT(2309), + [3057] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 3, 0, 24), SHIFT(532), + [3060] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 5, 0, 78), + [3062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 5, 0, 78), + [3064] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 5, 0, 78), SHIFT(2310), + [3067] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 5, 0, 78), SHIFT(2309), + [3070] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 5, 0, 78), SHIFT(532), + [3073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), + [3075] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_call_modifier, 1, 0, 0), + [3077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_call_modifier, 1, 0, 0), + [3079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_parameter_list, 2, 0, 0), + [3081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [3083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_parameter_list, 3, 0, 0), + [3085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(675), + [3087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(709), + [3089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [3091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), + [3093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(635), + [3095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(744), + [3097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(639), + [3099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [3101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(646), + [3103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [3105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(670), + [3107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [3109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_modifier, 1, 0, 0), + [3111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_modifier, 1, 0, 0), + [3113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(740), + [3115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), + [3117] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 1), SHIFT(1786), + [3120] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 1), SHIFT(1012), + [3123] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__declarator, 1, 0, 0), REDUCE(sym_type_specifier, 1, 0, 1), + [3126] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__declarator, 1, 0, 0), REDUCE(sym_type_specifier, 1, 0, 1), SHIFT(1132), + [3130] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declarator, 1, 0, 0), REDUCE(sym_type_specifier, 1, 0, 1), + [3133] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 1), REDUCE(aux_sym__old_style_parameter_list_repeat1, 2, 0, 0), + [3136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1569), + [3138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 2, 1, 0), + [3140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1149), + [3142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1145), + [3144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [3146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declarator, 1, 0, 0), + [3148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 1, 1, 0), + [3150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1129), + [3152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_parameter_list, 4, 0, 0), + [3154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_parameter_list, 4, 0, 0), + [3156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1125), + [3158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1134), + [3160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1130), + [3162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_function_declarator, 2, 0, 34), + [3164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_function_declarator, 2, 0, 34), + [3166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [3168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(663), + [3170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(715), + [3172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [3174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [3176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(644), + [3178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(631), + [3180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(637), + [3182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [3184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(632), + [3186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [3188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(742), + [3190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [3192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2160), + [3194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(677), + [3196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), + [3198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(678), + [3200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [3202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(687), + [3204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [3206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(692), + [3208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [3210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(700), + [3212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [3214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [3216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [3218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [3220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1444), + [3222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), + [3224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), + [3226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1447), + [3228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1443), + [3230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call_expression, 2, 0, 13), + [3232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call_expression, 2, 0, 13), + [3234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 4, 0, 0), + [3236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 4, 0, 0), + [3238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [3240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 3, 0, 0), + [3242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 3, 0, 0), + [3244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 2, 0, 0), + [3246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 2, 0, 0), + [3248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bitfield_clause, 2, 0, 0), + [3250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2198), + [3252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 3, 1, 0), + [3254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [3256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), + [3258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), + [3260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2306), + [3262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1439), + [3264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), + [3266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), + [3268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(661), + [3270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [3272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(660), + [3274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(650), + [3276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [3278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [3280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [3282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [3284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(657), + [3286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [3288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(654), + [3290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [3292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [3294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator, 3, 0, 77), + [3296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator, 3, 0, 77), + [3298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), + [3300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), + [3302] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(1149), + [3305] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(1145), + [3308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1284), + [3310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1287), + [3312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1273), + [3314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1805), + [3316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), + [3318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comma_expression, 3, 0, 44), + [3320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), + [3322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), + [3324] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(799), + [3327] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(2306), + [3330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), + [3332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [3334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [3336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), + [3338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_unaligned_ptr_modifier, 1, 0, 0), + [3340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_unaligned_ptr_modifier, 1, 0, 0), + [3342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [3344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [3346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [3348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [3350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_pointer_modifier, 1, 0, 0), + [3352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_pointer_modifier, 1, 0, 0), + [3354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), + [3356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(739), + [3358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [3360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(738), + [3362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), + [3364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(732), + [3366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [3368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(729), + [3370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), + [3372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), + [3374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 5, 0, 121), + [3376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), + [3378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [3380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [3382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [3384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 4, 0, 0), + [3386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [3388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [3390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), + [3392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(735), + [3394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [3396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_init_declarator, 3, 0, 63), + [3398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [3400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [3402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [3404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [3406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [3408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [3410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [3412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [3414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [3416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_pair, 3, 0, 120), + [3418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), + [3420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2, 0, 0), + [3422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_pair, 3, 0, 119), + [3424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 3, 0, 0), + [3426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 4, 0, 106), + [3428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 4, 0, 105), + [3430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 4, 0, 104), + [3432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [3434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, 0, 82), + [3436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, 0, 83), + [3438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), + [3440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [3442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), + [3444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [3446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [3448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), + [3450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), + [3452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [3454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [3456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [3458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [3460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [3462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), + [3464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), + [3466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), + [3468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), + [3470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [3472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [3474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), + [3476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 1, 0, 3), + [3478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2310), + [3480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2309), + [3482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [3484] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_enum_specifier, 2, 0, 7), SHIFT(2198), + [3487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, 0, 14), + [3489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, 0, 3), + [3491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, 0, 14), + [3493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1581), + [3495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(882), + [3497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1243), + [3499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_type, 2, 0, 3), + [3501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_type, 2, 0, 3), + [3503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_type, 2, 0, 14), + [3505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_type, 2, 0, 14), + [3507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_type, 1, 0, 3), + [3509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_type, 1, 0, 3), + [3511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declaration_declarator, 2, 0, 34), + [3513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_type, 3, 0, 14), + [3515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_type, 3, 0, 14), + [3517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator, 3, 0, 34), + [3519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator, 3, 0, 34), + [3521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), + [3523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator, 4, 0, 34), + [3525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator, 4, 0, 34), + [3527] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(1334), + [3530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_declarator_repeat1, 2, 0, 0), + [3532] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(2310), + [3535] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(2309), + [3538] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(532), + [3541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_declarator_repeat1, 2, 0, 0), + [3543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), + [3545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declaration_declarator, 3, 0, 34), + [3547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_declaration_declarator, 3, 0, 34), + [3549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), + [3551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__preproc_expression, 1, 0, 0), + [3553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), + [3555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__preproc_expression, 1, 0, 0), + [3557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), + [3559] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(2025), + [3562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), + [3564] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_specifier, 1, 0, 0), SHIFT(1295), + [3567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1270), + [3569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2167), + [3571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), + [3573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1947), + [3575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), + [3577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1347), + [3579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), + [3581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), + [3583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), + [3585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2218), + [3587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), + [3589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), + [3591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1305), + [3593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), + [3595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), + [3597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1302), + [3599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), + [3601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1300), + [3603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), + [3605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1337), + [3607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), + [3609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), + [3611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), + [3613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), + [3615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), + [3617] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT(819), + [3621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), + [3623] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_specifier, 1, 0, 1), SHIFT(1292), + [3626] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(1296), + [3629] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(1279), + [3632] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(1293), + [3635] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, -1, 15), SHIFT(819), + [3638] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, 0, 14), SHIFT(819), + [3641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1291), + [3643] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), + [3645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), + [3647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), + [3649] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, -1, 10), SHIFT(819), + [3652] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 14), SHIFT(1289), + [3655] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 3), SHIFT(819), + [3658] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, -1, 15), SHIFT(1288), + [3661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1290), + [3663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), + [3665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2018), + [3667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), + [3669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1321), + [3671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), + [3673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), + [3675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), + [3677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), + [3679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), + [3681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), + [3683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), + [3685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), + [3687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), + [3689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), + [3691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), + [3693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_unary_expression, 2, 0, 5), + [3695] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_unary_expression, 2, 0, 5), + [3697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_defined, 2, 0, 0), + [3699] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_defined, 2, 0, 0), + [3701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), + [3703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), + [3705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), + [3707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), + [3709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_binary_expression, 3, 0, 30), + [3711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_binary_expression, 3, 0, 30), + [3713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), + [3715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), + [3717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), + [3719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), + [3721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), + [3723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), + [3725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), + [3727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), + [3729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), + [3731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), + [3733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), + [3735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), + [3737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), + [3739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_parenthesized_expression, 3, 0, 0), + [3741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_parenthesized_expression, 3, 0, 0), + [3743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), + [3745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), + [3747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), + [3749] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_declarator_repeat1, 1, 0, 0), + [3751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_declarator_repeat1, 1, 0, 0), + [3753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), + [3755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), + [3757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_argument_list_repeat1, 2, 0, 0), + [3759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), + [3761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), + [3763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_defined, 4, 0, 0), + [3765] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_defined, 4, 0, 0), + [3767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), + [3769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 1, 0, 42), + [3771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), + [3773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), + [3775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), + [3777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), + [3779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1327), + [3781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1322), + [3783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1298), + [3785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1316), + [3787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1317), + [3789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1318), + [3791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1323), + [3793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1311), + [3795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [3797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1309), + [3799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1310), + [3801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [3803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), + [3805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [3807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), + [3809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [3811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), + [3813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [3815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [3817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), + [3819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [3821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [3823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), + [3825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), + [3827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declaration_declarator, 1, 0, 22), + [3829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(503), + [3831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [3833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), + [3835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), + [3837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), + [3839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [3841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 4, 1, 89), + [3843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 3, 1, 60), + [3845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__field_declaration_declarator_repeat1, 2, 0, 32), + [3847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 1, 0, 0), + [3849] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 1, 0, 0), REDUCE(aux_sym_function_declarator_repeat1, 1, 0, 0), + [3852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 1, 0, 0), + [3854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 2, 1, 32), + [3856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 5, 1, 112), + [3858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 4, 1, 89), + [3860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(508), + [3862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 3, 1, 60), + [3864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), + [3866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_declarators, 1, 0, 22), + [3868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_field_declarator, 2, 0, 0), + [3870] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_field_declarator, 2, 0, 0), + [3872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 5, 1, 112), + [3874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 2, 1, 32), + [3876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_type_declarator, 2, 0, 0), + [3878] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_type_declarator, 2, 0, 0), + [3880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__type_definition_declarators_repeat1, 2, 0, 32), + [3882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_field_declarator, 4, -10, 0), + [3884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_field_declarator, 4, -10, 0), + [3886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_field_declarator, 2, 0, 34), + [3888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_field_declarator, 2, 0, 34), + [3890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 5, 0, 115), + [3892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 5, 0, 115), + [3894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 3, 0, 22), + [3896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 3, 0, 22), + [3898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), + [3900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), + [3902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), + [3904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1348), + [3906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2058), + [3908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list, 3, 0, 40), + [3910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list, 2, 0, 17), + [3912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_field_declarator, 3, -10, 0), + [3914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_field_declarator, 3, -10, 0), + [3916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_field_declarator, 5, -10, 0), + [3918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_field_declarator, 5, -10, 0), + [3920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declarator, 1, 0, 0), + [3922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__field_declarator, 1, 0, 0), + [3924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declarator, 1, 0, 51), + [3926] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__field_declarator, 1, 0, 51), + [3928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 4, 0, 93), + [3930] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 4, 0, 93), + [3932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 4, 0, 22), + [3934] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 4, 0, 22), + [3936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), + [3938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1, 0, 0), + [3940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1, 0, 0), + [3942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1, 0, 1), + [3944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1, 0, 1), + [3946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1, 0, 21), + [3948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1, 0, 21), + [3950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type_declarator, 4, -10, 0), + [3952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type_declarator, 4, -10, 0), + [3954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type_declarator, 3, -10, 0), + [3956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type_declarator, 3, -10, 0), + [3958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type_declarator, 2, 0, 34), + [3960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type_declarator, 2, 0, 34), + [3962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type_declarator, 5, -10, 0), + [3964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type_declarator, 5, -10, 0), + [3966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 5, 0, 115), + [3968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 5, 0, 115), + [3970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), + [3972] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(2310), + [3975] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(2309), + [3978] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(532), + [3981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declaration_declarator, 4, 0, 34), + [3983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 3, 0, 22), + [3985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 3, 0, 22), + [3987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(751), + [3989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 4, 0, 22), + [3991] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 4, 0, 22), + [3993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 4, 0, 93), + [3995] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 4, 0, 93), + [3997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 2, 1, 32), + [3999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(509), + [4001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 3, 1, 60), + [4003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1831), + [4005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1340), + [4007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2033), + [4009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [4011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 4, 1, 89), + [4013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 5, 1, 112), + [4015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), + [4017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_declarator, 2, 0, 0), + [4019] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_declarator, 2, 0, 0), + [4021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), + [4023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list, 3, 0, 17), + [4025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), + [4027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1335), + [4029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2101), + [4031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2175), + [4033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), + [4035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1333), + [4037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), + [4039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), + [4041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1639), + [4043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_clobber_list, 1, 0, 0), + [4045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), + [4047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [4049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2113), + [4051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list_no_comma, 3, 0, 40), + [4053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [4055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [4057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [4059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [4061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list_no_comma, 4, 0, 40), + [4063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list, 4, 0, 40), + [4065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [4067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [4069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [4071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declaration_declarator, 2, 0, 22), + [4073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [4075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [4077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declaration_declarator, 2, 0, 48), + [4079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), + [4081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [4083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list_no_comma, 2, 0, 17), + [4085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [4087] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enumerator_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1831), + [4090] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enumerator_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1346), + [4093] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enumerator_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2130), + [4096] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enumerator_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1767), + [4099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enumerator_list_repeat1, 2, 0, 0), + [4101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), + [4103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [4105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [4107] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__field_declaration_declarator_repeat1, 2, 0, 65), SHIFT_REPEAT(1503), + [4110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__field_declaration_declarator_repeat1, 2, 0, 65), + [4112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_declarators, 2, 0, 48), + [4114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declaration_declarator, 3, 0, 103), + [4116] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_definition_declarators_repeat1, 2, 0, 65), SHIFT_REPEAT(1420), + [4119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__type_definition_declarators_repeat1, 2, 0, 65), + [4121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [4123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list_no_comma, 3, 0, 17), + [4125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [4127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [4129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_declarator, 3, -10, 0), + [4131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_declarator, 3, -10, 0), + [4133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [4135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), + [4137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand_list, 1, 0, 0), + [4139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2149), + [4141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_declarator, 5, -10, 0), + [4143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_declarator, 5, -10, 0), + [4145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_declarator, 4, -10, 0), + [4147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_declarator, 4, -10, 0), + [4149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 5, 0, 115), + [4151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 5, 0, 115), + [4153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [4155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__field_declaration_declarator_repeat1, 3, 0, 32), + [4157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand_list, 1, 0, 0), + [4159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2044), + [4161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 4, 0, 93), + [4163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 4, 0, 93), + [4165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [4167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 4, 0, 22), + [4169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 4, 0, 22), + [4171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declarator, 1, 0, 0), + [4173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 3, 0, 22), + [4175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 3, 0, 22), + [4177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1818), + [4179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), + [4181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2246), + [4183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1912), + [4185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), + [4187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1790), + [4189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2277), + [4191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_declarator, 1, 0, 0), + [4193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1872), + [4195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2076), + [4197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 2, 0, 35), + [4199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator, 1, 0, 6), + [4201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator, 1, 0, 6), + [4203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [4205] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 2, 0, 0), SHIFT_REPEAT(1605), + [4208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 2, 0, 0), + [4210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 2, 0, 0), + [4212] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1831), + [4215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_repeat1, 2, 0, 0), + [4217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_repeat1, 2, 0, 0), + [4219] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2, 0, 0), SHIFT_REPEAT(649), + [4222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2, 0, 0), + [4224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2, 0, 0), SHIFT_REPEAT(2194), + [4227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), + [4229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), + [4231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), + [4233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [4235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2194), + [4237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), + [4239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 1, 0, 0), + [4241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), + [4243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 1, 0, 0), + [4245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), + [4247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), + [4249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), + [4251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), + [4253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [4255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), + [4257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), + [4259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [4261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), + [4263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 2, 1, 32), + [4265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [4267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), + [4269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), + [4271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_expression_repeat1, 2, 0, 0), + [4273] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1737), + [4276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [4278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), + [4280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enumerator_list_repeat1, 2, 0, 0), + [4282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [4284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), + [4286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [4288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list, 6, 0, 99), + [4290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_enumerator_list, 6, 0, 99), + [4292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 4, 0, 75), + [4294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list, 5, 0, 72), + [4296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_enumerator_list, 5, 0, 72), + [4298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list, 5, 0, 40), + [4300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_enumerator_list, 5, 0, 40), + [4302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), + [4304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [4306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), + [4308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [4310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 3, 1, 60), + [4312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, 0, 19), + [4314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [4316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [4318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), + [4320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), + [4322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 5, 0, 73), + [4324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 5, 0, 73), + [4326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [4328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), + [4330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [4332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list, 4, 0, 40), + [4334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_enumerator_list, 4, 0, 40), + [4336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 3, 0, 17), + [4338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 3, 0, 17), + [4340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [4342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 4, 1, 89), + [4344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [4346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), + [4348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 4, 0, 17), + [4350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 4, 0, 17), + [4352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [4354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [4356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 4, 0, 41), + [4358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 4, 0, 41), + [4360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [4362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, 0, 46), + [4364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, 0, 43), + [4366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), + [4368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [4370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [4372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [4374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_function_declarator, 2, 0, 34), + [4376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_function_declarator, 1, 0, 20), + [4378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(793), + [4380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 2, 0, 0), + [4382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, 0, 32), + [4384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 4, 0, 116), + [4386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [4388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), + [4390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1801), + [4392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_parenthesized_declarator, 5, 0, 0), + [4394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [4396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 5, 0, 115), + [4398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [4400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 3, 0, 94), + [4402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3, 0, 22), + [4404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [4406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3, 0, 0), + [4408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [4410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, 0, 22), + [4412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(766), + [4414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3, 0, 74), + [4416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_parenthesized_declarator, 4, 0, 0), + [4418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, 0, 93), + [4420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), + [4422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, 0, 6), + [4424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2031), + [4426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), + [4428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enumerator_list, 1, 0, 0), + [4430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_parenthesized_declarator, 3, 0, 0), + [4432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, 0, 100), + [4434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__abstract_declarator, 1, 0, 0), + [4436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), + [4438] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_clobber_list_repeat1, 2, 0, 134), SHIFT_REPEAT(1577), + [4441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_clobber_list_repeat1, 2, 0, 134), + [4443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), + [4445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), + [4447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), + [4449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), + [4451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), + [4453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, 0, 49), + [4455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), + [4457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), + [4459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [4461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), + [4463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), + [4465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(757), + [4467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1744), + [4469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enumerator_list_no_comma, 1, 0, 0), + [4471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), + [4473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_clobber_list, 3, 0, 129), + [4475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(967), + [4477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), + [4479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1743), + [4481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(525), + [4483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), + [4485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1735), + [4487] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_input_operand_list_repeat1, 2, 0, 122), SHIFT_REPEAT(1590), + [4490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_input_operand_list_repeat1, 2, 0, 122), + [4492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), + [4494] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1735), + [4497] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1735), + [4500] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_output_operand_list_repeat1, 2, 0, 122), SHIFT_REPEAT(1598), + [4503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_output_operand_list_repeat1, 2, 0, 122), + [4505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_qualifier, 1, 0, 0), + [4507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), + [4509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_declarator, 1, 0, 11), + [4511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enumerator_list_no_comma, 2, 0, 0), + [4513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_clobber_list, 2, 0, 123), + [4515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), + [4517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2013), + [4519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(968), + [4521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_char_literal_repeat1, 2, 0, 0), + [4523] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_char_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1744), + [4526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1353), + [4528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2188), + [4530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), + [4532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand_list, 3, 0, 109), + [4534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), + [4536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand_list, 3, 0, 109), + [4538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(528), + [4540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), + [4542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1733), + [4544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1355), + [4546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2303), + [4548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), + [4550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1746), + [4552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enumerator_list, 2, 0, 0), + [4554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand_list, 2, 0, 86), + [4556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand_list, 2, 0, 86), + [4558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), + [4560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), + [4562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2267), + [4564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [4566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [4568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [4570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [4572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [4574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [4576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [4578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [4580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [4582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), + [4584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [4586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), + [4588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [4590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [4592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), + [4594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), + [4596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), + [4598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [4600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [4602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [4604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [4606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [4608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), + [4610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), + [4612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [4614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), + [4616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand, 7, 0, 138), + [4618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), + [4620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [4622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand, 7, 0, 138), + [4624] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_goto_list_repeat1, 2, 0, 137), SHIFT_REPEAT(2281), + [4627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_goto_list_repeat1, 2, 0, 137), + [4629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), + [4631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), + [4633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), + [4635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2281), + [4637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_goto_list, 3, 0, 135), + [4639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1728), + [4641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [4643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [4645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1275), + [4647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_clobber_list_repeat1, 2, 0, 123), + [4649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), + [4651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand, 4, 0, 128), + [4653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), + [4655] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1126), + [4658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 2, 0, 0), + [4660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [4662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), + [4664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [4666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [4668] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(2010), + [4671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_declaration_repeat1, 2, 0, 0), + [4673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), + [4675] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_arg, 1, 0, 0), + [4677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1924), + [4679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [4681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [4683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), + [4685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), + [4687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), + [4689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_range_designator, 5, 0, 133), + [4691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), + [4693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [4695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), + [4697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_goto_list, 2, 0, 130), + [4699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_input_operand_list_repeat1, 2, 0, 86), + [4701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand, 4, 0, 128), + [4703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), + [4705] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1339), + [4708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), + [4710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [4712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [4714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [4716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), + [4718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), + [4720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [4722] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_params_repeat1, 2, 0, 0), SHIFT_REPEAT(1986), + [4725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_params_repeat1, 2, 0, 0), + [4727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [4729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), + [4731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [4733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [4735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), + [4737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), + [4739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), + [4741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [4743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [4745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [4747] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, 0, 65), SHIFT_REPEAT(1240), + [4750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, 0, 65), + [4752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [4754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), + [4756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), + [4758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), + [4760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2038), + [4762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), + [4764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), + [4766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [4768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), + [4770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_arg_repeat1, 2, 0, 0), + [4772] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_arg_repeat1, 2, 0, 0), SHIFT_REPEAT(1845), + [4775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), + [4777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1997), + [4779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [4781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_output_operand_list_repeat1, 2, 0, 86), + [4783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), + [4785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), + [4787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [4789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), + [4791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [4793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [4795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [4797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), + [4799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), + [4801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), + [4803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1745), + [4805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), + [4807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), + [4809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [4811] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2, 0, 0), SHIFT_REPEAT(629), + [4814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2, 0, 0), + [4816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [4818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [4820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_designator, 2, 0, 101), + [4822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [4824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [4826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [4828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [4830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [4832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [4834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [4836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [4838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), + [4840] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2, 0, 0), SHIFT_REPEAT(518), + [4843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [4845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [4847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [4849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983), + [4851] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(535), + [4854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_designator, 3, 0, 0), + [4856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [4858] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(2267), + [4861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_specifier_repeat1, 2, 0, 0), + [4863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [4865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [4867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [4869] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__old_style_parameter_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1786), + [4872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__old_style_parameter_list_repeat1, 2, 0, 0), + [4874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), + [4876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [4878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [4880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [4882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [4884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [4886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [4888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [4890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [4892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [4894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [4896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), + [4898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), + [4900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [4902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [4904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [4906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [4908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [4910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [4912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [4914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [4916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [4918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [4920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [4922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [4924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [4926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [4928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), + [4930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [4932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), + [4934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), + [4936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), + [4938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [4940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [4942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_arg, 2, 0, 0), + [4944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1845), + [4946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [4948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1750), + [4950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), + [4952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [4954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [4956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [4958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [4960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [4962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [4964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), + [4966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [4968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), + [4970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), + [4972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2146), + [4974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 4, 0, 49), + [4976] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2, 0, 0), REDUCE(aux_sym__old_style_parameter_list_repeat1, 2, 0, 0), + [4979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_params, 2, 0, 0), + [4981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 2, 0, 0), + [4983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 1, 0, 0), + [4985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_params, 3, 0, 0), + [4987] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 3, 0, 0), + [4989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), + [4991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), + [4993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), + [4995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_goto_list, 1, 0, 0), + [4997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 5, 0, 127), + [4999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [5001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), + [5003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_params, 4, 0, 0), + [5005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 4, 0, 0), + [5007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, 0, 6), + [5009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [5011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), + [5013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2141), + [5015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_goto_list_repeat1, 2, 0, 130), + [5017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), + [5019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list_no_comma, 5, 0, 72), + [5021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), + [5023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), + [5025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [5027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [5029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [5031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), + [5033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [5035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2148), + [5037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [5039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), + [5041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2142), + [5043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [5045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [5047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), + [5049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [5051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [5053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [5055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 4, 0, 72), + [5057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef, 4, 0, 73), + [5059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [5061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), + [5063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [5065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), + [5067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [5069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [5071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), + [5073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), + [5075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [5077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [5079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), + [5081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [5083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [5085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), + [5087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2019), + [5089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), + [5091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [5093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), + [5095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), + [5097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [5099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [5101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [5103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [5105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [5107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), + [5109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [5111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), + [5113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2300), + [5115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1944), + [5117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), + [5119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), + [5121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [5123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [5125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [5127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list_no_comma, 4, 0, 41), + [5129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), + [5131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_based_modifier, 2, 0, 0), + [5133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), + [5135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), + [5137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), + [5139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1698), + [5141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [5143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1963), + [5145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), + [5147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), + [5149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [5151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), + [5153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), + [5155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2190), + [5157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [5159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list_no_comma, 4, 0, 17), + [5161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), + [5163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2180), + [5165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), + [5167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [5169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [5171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [5173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [5175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [5177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [5179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [5181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [5183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [5185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [5187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [5189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1967), + [5191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), + [5193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), + [5195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), + [5197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), + [5199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [5201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [5203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [5205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2176), + [5207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), + [5209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [5211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), + [5213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2233), + [5215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2216), + [5217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2217), + [5219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [5221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [5223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [5225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [5227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [5229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), + [5231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), + [5233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [5235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [5237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [5239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [5241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [5243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [5245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 5, 0, 99), + [5247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [5249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [5251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), + [5253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [5255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), + [5257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), + [5259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list_no_comma, 5, 0, 40), + [5261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), + [5263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2223), + [5265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list, 3, 0, 41), + [5267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list_no_comma, 3, 0, 41), + [5269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list_no_comma, 5, 0, 73), + [5271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [5273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_field_declaration_list, 3, 0, 41), + [5275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [5277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [5279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), + [5281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [5283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [5285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), + [5287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), + [5289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [5291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), + [5293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [5295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [5297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), + [5299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [5301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2220), + [5303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [5305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [5307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [5309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), + [5311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef, 3, 0, 41), + [5313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [5315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [5317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), + [5319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [5321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [5323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [5325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [5327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [5329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [5331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), + [5333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), + [5335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [5337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [5339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list_no_comma, 6, 0, 99), + [5341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [5343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list, 4, 0, 72), + [5345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list_no_comma, 4, 0, 72), + [5347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list, 4, 0, 73), + [5349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list_no_comma, 4, 0, 73), + [5351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), + [5353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [5355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), + [5357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), + [5359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4, 0, 72), + [5361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2062), + [5363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [5365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_field_declaration_list, 4, 0, 73), + [5367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), + [5369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [5371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [5373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [5375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), + [5377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [5379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [5381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [5383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2268), + [5385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [5387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [5389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [5391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [5393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [5395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list, 5, 0, 99), + [5397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list_no_comma, 5, 0, 99), + [5399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 5, 0, 99), + [5401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [5403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), + [5405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [5407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [5409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), + [5411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), + [5413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), + [5415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [5417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [5419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), + [5421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2286), + [5423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [5425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [5427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [5429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [5431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), + [5433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), + [5435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), + [5437] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [5439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1948), + [5441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), + [5443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), + [5445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), + [5447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), + [5449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), + [5451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), + [5453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), + [5455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), + [5457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1984), + [5459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2183), + [5461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [5463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [5465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [5467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [5469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), + [5471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [5473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [5475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), + [5477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [5479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), + [5481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [5483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), + [5485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [5487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2231), + [5489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [5491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), + [5493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2000), + [5495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [5497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), + [5499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [5501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [5503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), }; #ifdef __cplusplus